props.js 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. "use strict";
  2. var uni_modules_uviewPlus_libs_config_props = require("../../libs/config/props.js");
  3. var props = {
  4. props: {
  5. name: {
  6. type: String,
  7. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.name
  8. },
  9. color: {
  10. type: String,
  11. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.color
  12. },
  13. size: {
  14. type: [String, Number],
  15. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.size
  16. },
  17. bold: {
  18. type: Boolean,
  19. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.bold
  20. },
  21. index: {
  22. type: [String, Number],
  23. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.index
  24. },
  25. hoverClass: {
  26. type: String,
  27. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.hoverClass
  28. },
  29. customPrefix: {
  30. type: String,
  31. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.customPrefix
  32. },
  33. label: {
  34. type: [String, Number],
  35. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.label
  36. },
  37. labelPos: {
  38. type: String,
  39. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.labelPos
  40. },
  41. labelSize: {
  42. type: [String, Number],
  43. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.labelSize
  44. },
  45. labelColor: {
  46. type: String,
  47. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.labelColor
  48. },
  49. space: {
  50. type: [String, Number],
  51. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.space
  52. },
  53. imgMode: {
  54. type: String,
  55. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.imgMode
  56. },
  57. width: {
  58. type: [String, Number],
  59. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.width
  60. },
  61. height: {
  62. type: [String, Number],
  63. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.height
  64. },
  65. top: {
  66. type: [String, Number],
  67. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.top
  68. },
  69. stop: {
  70. type: Boolean,
  71. default: () => uni_modules_uviewPlus_libs_config_props.defProps.icon.stop
  72. }
  73. }
  74. };
  75. exports.props = props;