12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- "use strict";
- var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
- var props = {
- props: {
- type: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.type
- },
- show: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.show
- },
- text: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.text
- },
- prefixIcon: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.prefixIcon
- },
- suffixIcon: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.suffixIcon
- },
- mode: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.mode
- },
- href: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.href
- },
- format: {
- type: [String, Function],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.format
- },
- call: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.call
- },
- openType: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.openType
- },
- bold: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.bold
- },
- block: {
- type: Boolean,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.block
- },
- lines: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.lines
- },
- color: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.color
- },
- size: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.size
- },
- iconStyle: {
- type: [Object, String],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.iconStyle
- },
- decoration: {
- tepe: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.decoration
- },
- margin: {
- type: [Object, String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.margin
- },
- lineHeight: {
- type: [String, Number],
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.lineHeight
- },
- align: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.align
- },
- wordWrap: {
- type: String,
- default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.wordWrap
- }
- }
- };
- exports.props = props;
|