@lingxiteam/theme-utils 0.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. package/README.md +83 -0
  2. package/dist/config/Button.d.ts +101 -0
  3. package/dist/config/Button.js +265 -0
  4. package/dist/config/Card.d.ts +137 -0
  5. package/dist/config/Card.js +149 -0
  6. package/dist/config/Cascader.d.ts +179 -0
  7. package/dist/config/Cascader.js +208 -0
  8. package/dist/config/Checkbox.d.ts +161 -0
  9. package/dist/config/Checkbox.js +161 -0
  10. package/dist/config/CheckboxGroup.d.ts +176 -0
  11. package/dist/config/CheckboxGroup.js +184 -0
  12. package/dist/config/Collapse.d.ts +170 -0
  13. package/dist/config/Collapse.js +308 -0
  14. package/dist/config/Container.d.ts +268 -0
  15. package/dist/config/Container.js +288 -0
  16. package/dist/config/DatePicker.d.ts +163 -0
  17. package/dist/config/DatePicker.js +163 -0
  18. package/dist/config/Description.d.ts +97 -0
  19. package/dist/config/Description.js +117 -0
  20. package/dist/config/Divider.d.ts +61 -0
  21. package/dist/config/Divider.js +61 -0
  22. package/dist/config/Form.d.ts +2700 -0
  23. package/dist/config/Form.js +1214 -0
  24. package/dist/config/Icon.d.ts +51 -0
  25. package/dist/config/Icon.js +51 -0
  26. package/dist/config/Input.d.ts +150 -0
  27. package/dist/config/Input.js +150 -0
  28. package/dist/config/InputNumber.d.ts +145 -0
  29. package/dist/config/InputNumber.js +145 -0
  30. package/dist/config/Link.d.ts +123 -0
  31. package/dist/config/Link.js +115 -0
  32. package/dist/config/MultipleSelect.d.ts +158 -0
  33. package/dist/config/MultipleSelect.js +166 -0
  34. package/dist/config/Radio.d.ts +171 -0
  35. package/dist/config/Radio.js +179 -0
  36. package/dist/config/RangePicker.d.ts +165 -0
  37. package/dist/config/RangePicker.js +165 -0
  38. package/dist/config/Select.d.ts +173 -0
  39. package/dist/config/Select.js +181 -0
  40. package/dist/config/StdUpload.d.ts +204 -0
  41. package/dist/config/StdUpload.js +208 -0
  42. package/dist/config/Switch.d.ts +137 -0
  43. package/dist/config/Switch.js +137 -0
  44. package/dist/config/Table.d.ts +398 -0
  45. package/dist/config/Table.js +527 -0
  46. package/dist/config/Tabs.d.ts +170 -0
  47. package/dist/config/Tabs.js +229 -0
  48. package/dist/config/Tag.d.ts +114 -0
  49. package/dist/config/Tag.js +314 -0
  50. package/dist/config/Text.d.ts +30 -0
  51. package/dist/config/Text.js +30 -0
  52. package/dist/config/TextArea.d.ts +142 -0
  53. package/dist/config/TextArea.js +142 -0
  54. package/dist/config/TimePicker.d.ts +164 -0
  55. package/dist/config/TimePicker.js +164 -0
  56. package/dist/config/Tree.d.ts +131 -0
  57. package/dist/config/Tree.js +175 -0
  58. package/dist/config/TreeSelect.d.ts +180 -0
  59. package/dist/config/TreeSelect.js +196 -0
  60. package/dist/css.d.ts +6 -0
  61. package/dist/css.js +121 -0
  62. package/dist/demo.d.ts +5 -0
  63. package/dist/demo.js +79 -0
  64. package/dist/h5config/Accordion.d.ts +338 -0
  65. package/dist/h5config/Accordion.js +445 -0
  66. package/dist/h5config/Button.d.ts +134 -0
  67. package/dist/h5config/Button.js +245 -0
  68. package/dist/h5config/Card.d.ts +268 -0
  69. package/dist/h5config/Card.js +425 -0
  70. package/dist/h5config/DAddressPicker.d.ts +196 -0
  71. package/dist/h5config/DAddressPicker.js +226 -0
  72. package/dist/h5config/DCheckbox.d.ts +203 -0
  73. package/dist/h5config/DCheckbox.js +237 -0
  74. package/dist/h5config/DForm.d.ts +1607 -0
  75. package/dist/h5config/DForm.js +897 -0
  76. package/dist/h5config/DMultiplePicker.d.ts +197 -0
  77. package/dist/h5config/DMultiplePicker.js +231 -0
  78. package/dist/h5config/DformDate.d.ts +199 -0
  79. package/dist/h5config/DformDate.js +229 -0
  80. package/dist/h5config/DformFile.d.ts +186 -0
  81. package/dist/h5config/DformFile.js +198 -0
  82. package/dist/h5config/DformImagePicker.d.ts +138 -0
  83. package/dist/h5config/DformImagePicker.js +150 -0
  84. package/dist/h5config/DformInput.d.ts +188 -0
  85. package/dist/h5config/DformInput.js +218 -0
  86. package/dist/h5config/DformInputNumber.d.ts +173 -0
  87. package/dist/h5config/DformInputNumber.js +203 -0
  88. package/dist/h5config/DformPicker.d.ts +198 -0
  89. package/dist/h5config/DformPicker.js +232 -0
  90. package/dist/h5config/DformRadio.d.ts +203 -0
  91. package/dist/h5config/DformRadio.js +237 -0
  92. package/dist/h5config/DformRangePicker.d.ts +199 -0
  93. package/dist/h5config/DformRangePicker.js +229 -0
  94. package/dist/h5config/DformSelect.d.ts +208 -0
  95. package/dist/h5config/DformSelect.js +260 -0
  96. package/dist/h5config/DformSwitch.d.ts +146 -0
  97. package/dist/h5config/DformSwitch.js +158 -0
  98. package/dist/h5config/DformTextArea.d.ts +184 -0
  99. package/dist/h5config/DformTextArea.js +214 -0
  100. package/dist/h5config/Divider.d.ts +53 -0
  101. package/dist/h5config/Divider.js +90 -0
  102. package/dist/h5config/FilterItems.d.ts +142 -0
  103. package/dist/h5config/FilterItems.js +181 -0
  104. package/dist/h5config/Grid.d.ts +117 -0
  105. package/dist/h5config/Grid.js +154 -0
  106. package/dist/h5config/Icon.d.ts +54 -0
  107. package/dist/h5config/Icon.js +54 -0
  108. package/dist/h5config/Link.d.ts +47 -0
  109. package/dist/h5config/Link.js +47 -0
  110. package/dist/h5config/LoadMore.d.ts +527 -0
  111. package/dist/h5config/LoadMore.js +940 -0
  112. package/dist/h5config/NoticeBarPlus.d.ts +104 -0
  113. package/dist/h5config/NoticeBarPlus.js +129 -0
  114. package/dist/h5config/SearchView.d.ts +128 -0
  115. package/dist/h5config/SearchView.js +163 -0
  116. package/dist/h5config/StaticTabs.d.ts +133 -0
  117. package/dist/h5config/StaticTabs.js +173 -0
  118. package/dist/h5config/Table.d.ts +182 -0
  119. package/dist/h5config/Table.js +566 -0
  120. package/dist/index.d.ts +4 -0
  121. package/dist/index.js +4 -0
  122. package/dist/lx-mobile.d.ts +9 -0
  123. package/dist/lx-mobile.js +153 -0
  124. package/dist/lx.d.ts +6 -0
  125. package/dist/lx.js +112 -0
  126. package/dist/utils.d.ts +12 -0
  127. package/dist/utils.js +65 -0
  128. package/package.json +38 -0
@@ -0,0 +1,161 @@
1
+ export var Checkbox = {
2
+ type: 'Checkbox',
3
+ variable: {
4
+ labelTextColor: {
5
+ type: 'color',
6
+ label: '标签文本颜色',
7
+ groupsName: '文字',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'Form'
11
+ },
12
+ labelLineHeight: {
13
+ type: 'px',
14
+ label: '标签文本行高',
15
+ groupsName: '文字',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'Form'
19
+ },
20
+ labelFontSize: {
21
+ type: 'px',
22
+ label: '标签文本尺寸',
23
+ groupsName: '文字',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Form'
27
+ },
28
+ textColor: {
29
+ type: 'color',
30
+ label: '文本颜色',
31
+ groupsName: '文字',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Form'
35
+ },
36
+ fontSize: {
37
+ type: 'px',
38
+ label: '文本尺寸',
39
+ groupsName: '文字',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Form'
43
+ },
44
+ radioSize: {
45
+ type: 'px',
46
+ label: '图标尺寸',
47
+ groupsName: '文字'
48
+ },
49
+ radioBorderColor: {
50
+ type: 'color',
51
+ label: '默认边框颜色',
52
+ groupsName: '边框'
53
+ },
54
+ radioBgColor: {
55
+ type: 'color',
56
+ label: '默认背景颜色',
57
+ groupsName: '边框'
58
+ },
59
+ radioSeBorderColor: {
60
+ type: 'color',
61
+ label: '选中边框颜色',
62
+ groupsName: '边框'
63
+ },
64
+ radioSeBgColor: {
65
+ type: 'color',
66
+ label: '选中背景颜色',
67
+ groupsName: '边框'
68
+ }
69
+ },
70
+ groupsName: '数据录入',
71
+ icon: 'icon-ico-comp-checkbox',
72
+ title: '复选框',
73
+ defaultValue: [{
74
+ radioSize: '16px',
75
+ radioBorderColor: '#e5e5e5',
76
+ radioBgColor: '#fff',
77
+ radioSeBorderColor: '#47e',
78
+ radioSeBgColor: '#47e'
79
+ }],
80
+ tpl: ".pcfactory-checkbox-inner{\n width: radioSize;\n height: radioSize;\n border-color: radioBorderColor;\n background: radioBgColor;\n }\n .pcfactory-checkbox-checked .pcfactory-checkbox-inner{\n border-color: radioSeBorderColor;\n background: radioSeBgColor;\n }\n .pcfactory-checkbox-input:focus+.pcfactory-checkbox-inner{\n border-color: radioSeBorderColor;\n }\n .pcfactory-checkbox-wrapper:hover .pcfactory-checkbox{\n border-color: radioSeBorderColor;\n}\n.pcfactory-checkbox:hover .pcfactory-checkbox-inner {\n border-color: radioSeBorderColor;\n }\n .pcfactory-form-item input[type=checkbox], .pcfactory-form-item input[type=radio]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-checkbox-indeterminate .pcfactory-checkbox-inner:after{\n background: radioSeBgColor;\n width: calc(0.47* radioSize);\n height: calc(0.47* radioSize);\n }\n .pcfactory-checkbox-checked .pcfactory-checkbox-inner:after{\n width: calc(0.35* radioSize);\n height: calc(0.57* radioSize);\n }",
81
+ components: [{
82
+ id: 'Form_180373',
83
+ label: '表单',
84
+ compName: 'Form',
85
+ type: 'Form',
86
+ compType: 0,
87
+ compLib: 'comm',
88
+ props: {
89
+ name: '表单',
90
+ colSpan: 12,
91
+ labelCol: 8,
92
+ wrapperCol: 16,
93
+ layout: 'vertical',
94
+ colon: true,
95
+ labelAlign: 'right',
96
+ basicStatus: 1,
97
+ colSpace: 16,
98
+ rowSpace: 16,
99
+ formCode: 'Code_Form_180373'
100
+ },
101
+ style: {
102
+ padding: '0px 0px 0px 0px'
103
+ },
104
+ isContainer: true,
105
+ isBusiObjContainer: true,
106
+ cmdgroup: ['basic'],
107
+ platform: 'pc',
108
+ icon: 'Form',
109
+ description: '',
110
+ image: '',
111
+ groupsName: '容器',
112
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
113
+ setEvents: [],
114
+ isLabelDropBoxChild: false,
115
+ components: [{
116
+ id: 'Checkbox_7458648',
117
+ label: '复选框',
118
+ compName: 'Checkbox',
119
+ type: 'Checkbox',
120
+ compType: 2,
121
+ compLib: 'comm',
122
+ props: {
123
+ name: '复选框',
124
+ basicStatus: 1,
125
+ titleTip: 'notext',
126
+ tipSize: 'default',
127
+ tipWidth: '240px',
128
+ tipHeight: 'auto',
129
+ text: '',
130
+ selfSpan: '',
131
+ labelCol: 8,
132
+ wrapperCol: 16,
133
+ formItemIndex: 5,
134
+ fieldName: 'ads',
135
+ extendProps: [{
136
+ key: 'ere',
137
+ value: 'fefds'
138
+ }]
139
+ },
140
+ style: {},
141
+ isContainer: false,
142
+ isBusiObjContainer: false,
143
+ cmdgroup: ['basic'],
144
+ platform: 'pc',
145
+ fieldProps: {
146
+ trigger: 'onChange',
147
+ valuePropName: 'checked'
148
+ },
149
+ icon: 'Checkbox',
150
+ description: '',
151
+ image: '',
152
+ groupsName: '数据录入',
153
+ isInlineBlock: true,
154
+ setEvents: [],
155
+ isLabelDropBoxChild: false,
156
+ components: [],
157
+ path: ['998509', 'Form_180373']
158
+ }],
159
+ path: ['998509']
160
+ }]
161
+ };
@@ -0,0 +1,176 @@
1
+ export declare const CheckboxGroup: {
2
+ type: string;
3
+ variable: {
4
+ labelTextColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ labelLineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelFontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ textColor: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ fontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ radioSize: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ };
49
+ radioBorderColor: {
50
+ type: string;
51
+ label: string;
52
+ groupsName: string;
53
+ };
54
+ radioBgColor: {
55
+ type: string;
56
+ label: string;
57
+ groupsName: string;
58
+ };
59
+ radioSeBorderColor: {
60
+ type: string;
61
+ label: string;
62
+ groupsName: string;
63
+ };
64
+ radioSeBgColor: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ };
69
+ };
70
+ groupsName: string;
71
+ icon: string;
72
+ title: string;
73
+ defaultValue: {
74
+ radioSize: string;
75
+ radioBorderColor: string;
76
+ radioBgColor: string;
77
+ radioSeBorderColor: string;
78
+ radioSeBgColor: string;
79
+ }[];
80
+ tpl: string;
81
+ components: {
82
+ id: string;
83
+ label: string;
84
+ compName: string;
85
+ type: string;
86
+ compType: number;
87
+ compLib: string;
88
+ props: {
89
+ name: string;
90
+ colSpan: number;
91
+ labelCol: number;
92
+ wrapperCol: number;
93
+ layout: string;
94
+ colon: boolean;
95
+ labelAlign: string;
96
+ basicStatus: number;
97
+ colSpace: number;
98
+ rowSpace: number;
99
+ formCode: string;
100
+ };
101
+ style: {
102
+ padding: string;
103
+ };
104
+ isContainer: boolean;
105
+ isBusiObjContainer: boolean;
106
+ cmdgroup: string[];
107
+ platform: string;
108
+ icon: string;
109
+ description: string;
110
+ image: string;
111
+ groupsName: string;
112
+ engineApi: string[];
113
+ setEvents: never[];
114
+ isLabelDropBoxChild: boolean;
115
+ components: {
116
+ id: string;
117
+ label: string;
118
+ compName: string;
119
+ type: string;
120
+ compType: number;
121
+ compLib: string;
122
+ props: {
123
+ name: string;
124
+ basicStatus: number;
125
+ titleTip: string;
126
+ tipSize: string;
127
+ tipWidth: string;
128
+ tipHeight: string;
129
+ checkAllText: string;
130
+ selfSpan: string;
131
+ labelCol: number;
132
+ wrapperCol: number;
133
+ formItemIndex: number;
134
+ fieldName: string;
135
+ tipPlacement: string;
136
+ tipIcon: {
137
+ theme: string;
138
+ type: string;
139
+ };
140
+ tipLocation: string;
141
+ checkedAll: boolean;
142
+ staticData: {
143
+ data: {
144
+ id: string;
145
+ label: string;
146
+ value: string;
147
+ }[];
148
+ type: string;
149
+ };
150
+ options: {
151
+ id: string;
152
+ label: string;
153
+ value: string;
154
+ }[];
155
+ };
156
+ style: {};
157
+ isContainer: boolean;
158
+ isBusiObjContainer: boolean;
159
+ cmdgroup: string[];
160
+ platform: string;
161
+ fieldProps: {
162
+ trigger: string;
163
+ valuePropName: string;
164
+ };
165
+ icon: string;
166
+ description: string;
167
+ image: string;
168
+ groupsName: string;
169
+ setEvents: never[];
170
+ isLabelDropBoxChild: boolean;
171
+ components: never[];
172
+ path: string[];
173
+ }[];
174
+ path: string[];
175
+ }[];
176
+ };
@@ -0,0 +1,184 @@
1
+ export var CheckboxGroup = {
2
+ type: 'CheckboxGroup',
3
+ variable: {
4
+ labelTextColor: {
5
+ type: 'color',
6
+ label: '标签文本颜色',
7
+ groupsName: '文字',
8
+ desc: '继承自表单,此处不可编辑',
9
+ canEdit: false,
10
+ extendsKey: 'Form'
11
+ },
12
+ labelLineHeight: {
13
+ type: 'px',
14
+ label: '标签文本行高',
15
+ groupsName: '文字',
16
+ desc: '继承自表单,此处不可编辑',
17
+ canEdit: false,
18
+ extendsKey: 'Form'
19
+ },
20
+ labelFontSize: {
21
+ type: 'px',
22
+ label: '标签文本尺寸',
23
+ groupsName: '文字',
24
+ desc: '继承自表单,此处不可编辑',
25
+ canEdit: false,
26
+ extendsKey: 'Form'
27
+ },
28
+ textColor: {
29
+ type: 'color',
30
+ label: '文本颜色',
31
+ groupsName: '文字',
32
+ desc: '继承自表单,此处不可编辑',
33
+ canEdit: false,
34
+ extendsKey: 'Form'
35
+ },
36
+ fontSize: {
37
+ type: 'px',
38
+ label: '文本尺寸',
39
+ groupsName: '文字',
40
+ desc: '继承自表单,此处不可编辑',
41
+ canEdit: false,
42
+ extendsKey: 'Form'
43
+ },
44
+ radioSize: {
45
+ type: 'px',
46
+ label: '图标尺寸',
47
+ groupsName: '文字'
48
+ },
49
+ radioBorderColor: {
50
+ type: 'color',
51
+ label: '默认边框颜色',
52
+ groupsName: '边框'
53
+ },
54
+ radioBgColor: {
55
+ type: 'color',
56
+ label: '默认背景颜色',
57
+ groupsName: '边框'
58
+ },
59
+ radioSeBorderColor: {
60
+ type: 'color',
61
+ label: '选中边框颜色',
62
+ groupsName: '边框'
63
+ },
64
+ radioSeBgColor: {
65
+ type: 'color',
66
+ label: '选中背景颜色',
67
+ groupsName: '边框'
68
+ }
69
+ },
70
+ groupsName: '数据录入',
71
+ icon: 'icon-ico-comp-checkbox',
72
+ title: '复选组',
73
+ defaultValue: [{
74
+ radioSize: '16px',
75
+ radioBorderColor: '#e5e5e5',
76
+ radioBgColor: '#fff',
77
+ radioSeBorderColor: '#47e',
78
+ radioSeBgColor: '#47e'
79
+ }],
80
+ tpl: ".pcfactory-checkbox-inner{\n width: radioSize;\n height: radioSize;\n border-color: radioBorderColor;\n background: radioBgColor;\n }\n .pcfactory-checkbox-checked .pcfactory-checkbox-inner{\n border-color: radioSeBorderColor;\n background: radioSeBgColor;\n }\n .pcfactory-checkbox-input:focus+.pcfactory-checkbox-inner{\n border-color: radioSeBorderColor;\n }\n .pcfactory-checkbox-wrapper:hover .pcfactory-checkbox{\n border-color: radioSeBorderColor;\n}\n .pcfactory-checkbox:hover .pcfactory-checkbox-inner {\n border-color: radioSeBorderColor;\n }\n .pcfactory-form-item input[type=checkbox]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-form-item input[type=radio]{\n width: radioSize;\n height: radioSize;\n }\n .pcfactory-checkbox-indeterminate .pcfactory-checkbox-inner:after{\n background: radioSeBgColor;\n width: calc(0.47* radioSize);\n height: calc(0.47* radioSize);\n }\n .pcfactory-checkbox-checked .pcfactory-checkbox-inner:after{\n width: calc(0.35* radioSize);\n height: calc(0.57* radioSize);\n }",
81
+ components: [{
82
+ id: 'Form_180373',
83
+ label: '表单',
84
+ compName: 'Form',
85
+ type: 'Form',
86
+ compType: 0,
87
+ compLib: 'comm',
88
+ props: {
89
+ name: '表单',
90
+ colSpan: 12,
91
+ labelCol: 8,
92
+ wrapperCol: 16,
93
+ layout: 'vertical',
94
+ colon: true,
95
+ labelAlign: 'right',
96
+ basicStatus: 1,
97
+ colSpace: 16,
98
+ rowSpace: 16,
99
+ formCode: 'Code_Form_180373'
100
+ },
101
+ style: {
102
+ padding: '0px 0px 0px 0px'
103
+ },
104
+ isContainer: true,
105
+ isBusiObjContainer: true,
106
+ cmdgroup: ['basic'],
107
+ platform: 'pc',
108
+ icon: 'Form',
109
+ description: '',
110
+ image: '',
111
+ groupsName: '容器',
112
+ engineApi: ['service.downloadFileByFileCode', 'getVisible', 'stateListener'],
113
+ setEvents: [],
114
+ isLabelDropBoxChild: false,
115
+ components: [{
116
+ id: 'CheckboxGroup_095205',
117
+ label: '复选组',
118
+ compName: 'CheckboxGroup',
119
+ type: 'CheckboxGroup',
120
+ compType: 2,
121
+ compLib: 'comm',
122
+ props: {
123
+ name: '复选组',
124
+ basicStatus: 1,
125
+ titleTip: 'notext',
126
+ tipSize: 'default',
127
+ tipWidth: '240px',
128
+ tipHeight: 'auto',
129
+ checkAllText: '全部',
130
+ selfSpan: '',
131
+ labelCol: 8,
132
+ wrapperCol: 16,
133
+ formItemIndex: 4,
134
+ fieldName: 'savcrd',
135
+ tipPlacement: 'top',
136
+ tipIcon: {
137
+ theme: 'outlined',
138
+ type: 'question-circle'
139
+ },
140
+ tipLocation: 'after',
141
+ checkedAll: true,
142
+ staticData: {
143
+ data: [{
144
+ id: '149486',
145
+ label: '属性名',
146
+ value: 'dsf'
147
+ }, {
148
+ id: '0516294',
149
+ label: '属性名22',
150
+ value: 'sdds'
151
+ }],
152
+ type: 'custom'
153
+ },
154
+ options: [{
155
+ id: '149486',
156
+ label: '属性名',
157
+ value: 'dsf'
158
+ }, {
159
+ id: '0516294',
160
+ label: '属性名22',
161
+ value: 'sdds'
162
+ }]
163
+ },
164
+ style: {},
165
+ isContainer: false,
166
+ isBusiObjContainer: false,
167
+ cmdgroup: ['basic'],
168
+ platform: 'pc',
169
+ fieldProps: {
170
+ trigger: 'onChange',
171
+ valuePropName: 'value'
172
+ },
173
+ icon: 'CheckboxGroup',
174
+ description: '',
175
+ image: '',
176
+ groupsName: '数据录入',
177
+ setEvents: [],
178
+ isLabelDropBoxChild: false,
179
+ components: [],
180
+ path: ['998509', 'Form_180373']
181
+ }],
182
+ path: ['998509']
183
+ }]
184
+ };
@@ -0,0 +1,170 @@
1
+ export declare const Collapse: {
2
+ type: string;
3
+ variable: {
4
+ textColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ canEdit: boolean;
9
+ extendsKey: string;
10
+ desc: string;
11
+ };
12
+ lineHeight: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ canEdit: boolean;
17
+ extendsKey: string;
18
+ desc: string;
19
+ };
20
+ fontSize: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ canEdit: boolean;
25
+ extendsKey: string;
26
+ desc: string;
27
+ };
28
+ fontWeight: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ canEdit: boolean;
33
+ extendsKey: string;
34
+ desc: string;
35
+ options: {
36
+ title: string;
37
+ value: string;
38
+ }[];
39
+ };
40
+ titleColor: {
41
+ type: string;
42
+ label: string;
43
+ groupsName: string;
44
+ };
45
+ tagSize: {
46
+ type: string;
47
+ label: string;
48
+ groupsName: string;
49
+ };
50
+ tagMargin: {
51
+ type: string;
52
+ label: string;
53
+ groupsName: string;
54
+ };
55
+ arrowColor: {
56
+ type: string;
57
+ label: string;
58
+ groupsName: string;
59
+ };
60
+ arrowSize: {
61
+ type: string;
62
+ label: string;
63
+ groupsName: string;
64
+ };
65
+ borderColor: {
66
+ type: string;
67
+ label: string;
68
+ groupsName: string;
69
+ };
70
+ borderRadius: {
71
+ type: string;
72
+ label: string;
73
+ groupsName: string;
74
+ };
75
+ lineColor: {
76
+ type: string;
77
+ label: string;
78
+ groupsName: string;
79
+ };
80
+ bodyColor: {
81
+ type: string;
82
+ label: string;
83
+ groupsName: string;
84
+ };
85
+ };
86
+ groupsName: string;
87
+ icon: string;
88
+ title: string;
89
+ defaultValue: {
90
+ titleColor: string;
91
+ tagSize: string;
92
+ tagMargin: string;
93
+ arrowColor: string;
94
+ arrowSize: string;
95
+ borderColor: string;
96
+ lineColor: string;
97
+ borderRadius: string;
98
+ bodyColor: string;
99
+ }[];
100
+ tpl: string;
101
+ components: {
102
+ id: string;
103
+ label: string;
104
+ compName: string;
105
+ type: string;
106
+ compType: number;
107
+ compLib: string;
108
+ props: {
109
+ name: string;
110
+ basicStatus: number;
111
+ defaultActiveKey: string[];
112
+ expandIconPosition: string;
113
+ size: string;
114
+ bordered: boolean;
115
+ hasIcon: boolean;
116
+ cardIconType: string;
117
+ collapseType: string;
118
+ prefixIcon: {
119
+ prefixIconTheme: string;
120
+ prefixIconType: string;
121
+ };
122
+ };
123
+ style: {
124
+ width: string;
125
+ margin: string;
126
+ padding: string;
127
+ };
128
+ isContainer: boolean;
129
+ isBusiObjContainer: boolean;
130
+ cmdgroup: string[];
131
+ platform: string;
132
+ icon: string;
133
+ description: string;
134
+ image: string;
135
+ groupsName: string;
136
+ setEvents: never[];
137
+ isLabelDropBoxChild: boolean;
138
+ components: {
139
+ id: string;
140
+ label: string;
141
+ compName: string;
142
+ type: string;
143
+ compType: number;
144
+ compLib: string;
145
+ props: {
146
+ name: string;
147
+ basicStatus: number;
148
+ header: string;
149
+ key: string;
150
+ };
151
+ style: {
152
+ minHeight: number;
153
+ };
154
+ isContainer: boolean;
155
+ isBusiObjContainer: boolean;
156
+ cmdgroup: string[];
157
+ platform: string;
158
+ icon: string;
159
+ description: string;
160
+ image: string;
161
+ groupsName: string;
162
+ engineApi: string[];
163
+ setEvents: never[];
164
+ isLabelDropBoxChild: boolean;
165
+ components: never[];
166
+ path: string[];
167
+ }[];
168
+ path: string[];
169
+ }[];
170
+ };