props.js 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. "use strict";
  2. var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
  3. var props = {
  4. props: {
  5. type: {
  6. type: String,
  7. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.type
  8. },
  9. show: {
  10. type: Boolean,
  11. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.show
  12. },
  13. text: {
  14. type: [String, Number],
  15. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.text
  16. },
  17. prefixIcon: {
  18. type: String,
  19. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.prefixIcon
  20. },
  21. suffixIcon: {
  22. type: String,
  23. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.suffixIcon
  24. },
  25. mode: {
  26. type: String,
  27. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.mode
  28. },
  29. href: {
  30. type: String,
  31. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.href
  32. },
  33. format: {
  34. type: [String, Function],
  35. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.format
  36. },
  37. call: {
  38. type: Boolean,
  39. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.call
  40. },
  41. openType: {
  42. type: String,
  43. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.openType
  44. },
  45. bold: {
  46. type: Boolean,
  47. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.bold
  48. },
  49. block: {
  50. type: Boolean,
  51. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.block
  52. },
  53. lines: {
  54. type: [String, Number],
  55. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.lines
  56. },
  57. color: {
  58. type: String,
  59. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.color
  60. },
  61. size: {
  62. type: [String, Number],
  63. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.size
  64. },
  65. iconStyle: {
  66. type: [Object, String],
  67. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.iconStyle
  68. },
  69. decoration: {
  70. tepe: String,
  71. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.decoration
  72. },
  73. margin: {
  74. type: [Object, String, Number],
  75. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.margin
  76. },
  77. lineHeight: {
  78. type: [String, Number],
  79. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.lineHeight
  80. },
  81. align: {
  82. type: String,
  83. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.align
  84. },
  85. wordWrap: {
  86. type: String,
  87. default: () => uni_modules_uviewPlus_libs_config_props.defProps.text.wordWrap
  88. }
  89. }
  90. };
  91. exports.props = props;