@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,445 @@
1
+ export var Accordion = {
2
+ type: 'Accordion',
3
+ variable: {
4
+ textColor: {
5
+ type: 'color',
6
+ label: '标题文本颜色',
7
+ groupsName: '标题'
8
+ },
9
+ lineHeight: {
10
+ type: 'px',
11
+ label: '标题文本行高',
12
+ groupsName: '标题'
13
+ },
14
+ fontSize: {
15
+ type: 'px',
16
+ label: '标题文本尺寸',
17
+ groupsName: '标题'
18
+ },
19
+ fontWeight: {
20
+ type: 'select',
21
+ label: '标题文本字重',
22
+ groupsName: '标题',
23
+ options: [{
24
+ title: '100',
25
+ value: '100'
26
+ }, {
27
+ title: '200',
28
+ value: '200'
29
+ }, {
30
+ title: '300',
31
+ value: '300'
32
+ }, {
33
+ title: '400',
34
+ value: '400'
35
+ }, {
36
+ title: '500',
37
+ value: '500'
38
+ }]
39
+ },
40
+ backgroundColor: {
41
+ type: 'color',
42
+ label: '头部背景颜色',
43
+ groupsName: '背景颜色'
44
+ },
45
+ titleColor: {
46
+ type: 'color',
47
+ label: '装饰条颜色',
48
+ groupsName: '标题'
49
+ },
50
+ lineColor: {
51
+ type: 'color',
52
+ label: '分割线颜色',
53
+ groupsName: '边框'
54
+ },
55
+ tagSize: {
56
+ type: 'px',
57
+ label: '标题装饰图标尺寸',
58
+ groupsName: '标题'
59
+ },
60
+ tagMargin: {
61
+ type: 'px',
62
+ label: '符号右外边距',
63
+ groupsName: '标题'
64
+ },
65
+ arrowColor: {
66
+ type: 'color',
67
+ label: '后缀图标颜色',
68
+ groupsName: '标题'
69
+ },
70
+ arrowSize: {
71
+ type: 'px',
72
+ label: '后缀图标尺寸',
73
+ groupsName: '标题'
74
+ },
75
+ bodyBgColor: {
76
+ type: 'color',
77
+ label: '内容背景颜色',
78
+ groupsName: '背景颜色'
79
+ },
80
+ borderColor: {
81
+ type: 'color',
82
+ label: '边框颜色',
83
+ groupsName: '边框'
84
+ },
85
+ borderRadius: {
86
+ type: 'px',
87
+ label: '边框圆角',
88
+ groupsName: '边框'
89
+ }
90
+ },
91
+ groupsName: '容器',
92
+ icon: 'icon-ico-comp-app-Accordion',
93
+ title: '折叠面板',
94
+ defaultValue: [{
95
+ textColor: 'rgb(28, 36, 46)',
96
+ lineHeight: '100%',
97
+ fontSize: '16px',
98
+ fontWeight: '400',
99
+ backgroundColor: '#fff',
100
+ titleColor: '#47e',
101
+ lineColor: '#f0f0f0',
102
+ tagSize: '16px',
103
+ tagMargin: '6px',
104
+ arrowColor: '#cccccc',
105
+ arrowSize: '19px',
106
+ bodyBgColor: '#fff',
107
+ borderColor: '#DDD',
108
+ borderRadius: '4px'
109
+ }],
110
+ tpl: "\n .lcdp-accordion .lcdp-accordion-header{\n color: textColor;\n font-weight: fontWeight;\n font-size: fontSize;\n line-height: lineHeight;\n background: backgroundColor;\n }\n .lcdp-accordion-header-default-icon{\n height: tagSize;\n background: titleColor;\n margin-right: tagMargin;\n }\n .adm-list-item-content{\n border-color: lineColor;\n }\n\n .lcdp-accordion .adm-collapse-arrow svg{\n color: arrowColor;\n width: arrowSize;\n height: arrowSize;\n }\n .lcdp-accordion .adm-list-item-content-main{\n background: bodyBgColor;\n }\n .lcdp-accordion{\n .adm-collapse{\n border-radius: borderRadius;\n border-color: borderColor !important;\n }\n }",
111
+ components: [{
112
+ id: 'Accordion_960849',
113
+ label: '折叠面板',
114
+ compName: 'Accordion',
115
+ type: 'Accordion',
116
+ compType: 0,
117
+ compLib: '@/components',
118
+ props: {
119
+ name: '折叠面板',
120
+ visible: 1,
121
+ bordered: true,
122
+ accordion: true,
123
+ data: [],
124
+ cardIconType: 'middle',
125
+ defaultActiveKey: ['1']
126
+ },
127
+ style: {},
128
+ isContainer: true,
129
+ isBusiObjContainer: false,
130
+ cmdgroup: ['basic'],
131
+ platform: 'h5',
132
+ description: '',
133
+ image: '',
134
+ groupsName: '容器',
135
+ icon: 'Accordion',
136
+ setEvents: [],
137
+ isLabelDropBoxChild: false,
138
+ components: [{
139
+ id: 'AccordionPanel_530736',
140
+ label: '折叠子面板',
141
+ compName: 'AccordionPanel',
142
+ type: 'AccordionPanel',
143
+ compType: 0,
144
+ compLib: '@/components',
145
+ props: {
146
+ name: '折叠子面板',
147
+ visible: true,
148
+ header: '显示边框',
149
+ key: '1'
150
+ },
151
+ style: {},
152
+ isContainer: true,
153
+ isBusiObjContainer: false,
154
+ cmdgroup: ['basic'],
155
+ platform: 'h5',
156
+ engineApi: ['downloadFileByFileCode'],
157
+ description: '',
158
+ image: '',
159
+ groupsName: '容器',
160
+ icon: 'Accordion',
161
+ setEvents: [],
162
+ isLabelDropBoxChild: false,
163
+ components: [{
164
+ id: 'Text_108729',
165
+ label: '文本',
166
+ compName: 'Text',
167
+ type: 'Text',
168
+ compType: 1,
169
+ compLib: 'antd-mobile',
170
+ props: {
171
+ name: '内容文本'
172
+ },
173
+ style: {},
174
+ isContainer: false,
175
+ isBusiObjContainer: false,
176
+ cmdgroup: ['basic'],
177
+ platform: 'h5',
178
+ fieldProps: {
179
+ trigger: 'onChange',
180
+ valuePropName: 'children'
181
+ },
182
+ isInlineBlock: true,
183
+ setEvents: [],
184
+ icon: 'Text',
185
+ description: '',
186
+ image: '',
187
+ groupsName: '基础',
188
+ transform: {
189
+ value: 'children'
190
+ },
191
+ isLabelDropBoxChild: false,
192
+ components: [],
193
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_530736']
194
+ }],
195
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
196
+ }, {
197
+ id: 'AccordionPanel_9734406',
198
+ label: '折叠子面板',
199
+ compName: 'AccordionPanel',
200
+ type: 'AccordionPanel',
201
+ compType: 0,
202
+ compLib: '@/components',
203
+ props: {
204
+ name: '折叠子面板',
205
+ visible: true,
206
+ header: '标题2',
207
+ key: '2'
208
+ },
209
+ style: {},
210
+ isContainer: true,
211
+ isBusiObjContainer: false,
212
+ cmdgroup: ['basic'],
213
+ platform: 'h5',
214
+ engineApi: ['downloadFileByFileCode'],
215
+ description: '',
216
+ image: '',
217
+ groupsName: '容器',
218
+ icon: 'Accordion',
219
+ setEvents: [],
220
+ isLabelDropBoxChild: false,
221
+ components: [{
222
+ id: 'Text_337264',
223
+ label: '文本',
224
+ compName: 'Text',
225
+ type: 'Text',
226
+ compType: 1,
227
+ compLib: 'antd-mobile',
228
+ props: {
229
+ name: '内容文本'
230
+ },
231
+ style: {},
232
+ isContainer: false,
233
+ isBusiObjContainer: false,
234
+ cmdgroup: ['basic'],
235
+ platform: 'h5',
236
+ fieldProps: {
237
+ trigger: 'onChange',
238
+ valuePropName: 'children'
239
+ },
240
+ isInlineBlock: true,
241
+ setEvents: [],
242
+ icon: 'Text',
243
+ description: '',
244
+ image: '',
245
+ groupsName: '基础',
246
+ transform: {
247
+ value: 'children'
248
+ },
249
+ isLabelDropBoxChild: false,
250
+ components: [],
251
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_9734406']
252
+ }],
253
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
254
+ }],
255
+ path: ['769713', 'View_769713_1']
256
+ }, {
257
+ id: 'View_519882',
258
+ label: '普通容器',
259
+ compName: 'View',
260
+ type: 'View',
261
+ compType: 0,
262
+ compLib: 'custom',
263
+ props: {
264
+ name: '普通容器1',
265
+ basicStatus: 1
266
+ },
267
+ style: {
268
+ textAlign: 'left',
269
+ display: 'block',
270
+ flexDirection: 'column',
271
+ padding: '0px 0px 0px 0px',
272
+ width: '100%',
273
+ backgroundColor: '#FFFFFF',
274
+ height: '50px'
275
+ },
276
+ isContainer: true,
277
+ isBusiObjContainer: false,
278
+ cmdgroup: ['basic'],
279
+ platform: 'pc',
280
+ icon: 'View',
281
+ description: '',
282
+ image: '',
283
+ groupsName: '布局',
284
+ engineApi: ['service.downloadFileByFileCode'],
285
+ setEvents: [],
286
+ isLabelDropBoxChild: false,
287
+ components: [],
288
+ path: ['998509']
289
+ }, {
290
+ id: 'Accordion_960849',
291
+ label: '折叠面板',
292
+ compName: 'Accordion',
293
+ type: 'Accordion',
294
+ compType: 0,
295
+ compLib: '@/components',
296
+ props: {
297
+ name: '折叠面板',
298
+ visible: 1,
299
+ bordered: false,
300
+ accordion: true,
301
+ data: [],
302
+ cardIconType: 'middle',
303
+ defaultActiveKey: ['1']
304
+ },
305
+ style: {},
306
+ isContainer: true,
307
+ isBusiObjContainer: false,
308
+ cmdgroup: ['basic'],
309
+ platform: 'h5',
310
+ description: '',
311
+ image: '',
312
+ groupsName: '容器',
313
+ icon: 'Accordion',
314
+ setEvents: [],
315
+ isLabelDropBoxChild: false,
316
+ components: [{
317
+ id: 'AccordionPanel_530736',
318
+ label: '折叠子面板',
319
+ compName: 'AccordionPanel',
320
+ type: 'AccordionPanel',
321
+ compType: 0,
322
+ compLib: '@/components',
323
+ props: {
324
+ name: '折叠子面板',
325
+ visible: true,
326
+ header: '标题1',
327
+ key: '1'
328
+ },
329
+ style: {},
330
+ isContainer: true,
331
+ isBusiObjContainer: false,
332
+ cmdgroup: ['basic'],
333
+ platform: 'h5',
334
+ engineApi: ['downloadFileByFileCode'],
335
+ description: '',
336
+ image: '',
337
+ groupsName: '容器',
338
+ icon: 'Accordion',
339
+ setEvents: [],
340
+ isLabelDropBoxChild: false,
341
+ components: [{
342
+ id: 'Text_108729',
343
+ label: '文本',
344
+ compName: 'Text',
345
+ type: 'Text',
346
+ compType: 1,
347
+ compLib: 'antd-mobile',
348
+ props: {
349
+ name: '内容文本'
350
+ },
351
+ style: {
352
+ textAlign: 'left',
353
+ lineHeight: '24px',
354
+ fontSize: 14,
355
+ border: '0px'
356
+ },
357
+ isContainer: false,
358
+ isBusiObjContainer: false,
359
+ cmdgroup: ['basic'],
360
+ platform: 'h5',
361
+ fieldProps: {
362
+ trigger: 'onChange',
363
+ valuePropName: 'children'
364
+ },
365
+ isInlineBlock: true,
366
+ setEvents: [],
367
+ icon: 'Text',
368
+ description: '',
369
+ image: '',
370
+ groupsName: '基础',
371
+ transform: {
372
+ value: 'children'
373
+ },
374
+ isLabelDropBoxChild: false,
375
+ components: [],
376
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_530736']
377
+ }],
378
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
379
+ }, {
380
+ id: 'AccordionPanel_9734406',
381
+ label: '折叠子面板',
382
+ compName: 'AccordionPanel',
383
+ type: 'AccordionPanel',
384
+ compType: 0,
385
+ compLib: '@/components',
386
+ props: {
387
+ name: '折叠子面板',
388
+ visible: true,
389
+ header: '标题2',
390
+ key: '2'
391
+ },
392
+ style: {},
393
+ isContainer: true,
394
+ isBusiObjContainer: false,
395
+ cmdgroup: ['basic'],
396
+ platform: 'h5',
397
+ engineApi: ['downloadFileByFileCode'],
398
+ description: '',
399
+ image: '',
400
+ groupsName: '容器',
401
+ icon: 'Accordion',
402
+ setEvents: [],
403
+ isLabelDropBoxChild: false,
404
+ components: [{
405
+ id: 'Text_337264',
406
+ label: '文本',
407
+ compName: 'Text',
408
+ type: 'Text',
409
+ compType: 1,
410
+ compLib: 'antd-mobile',
411
+ props: {
412
+ name: '内容文本'
413
+ },
414
+ style: {
415
+ textAlign: 'left',
416
+ lineHeight: '24px',
417
+ fontSize: 14,
418
+ border: '0px'
419
+ },
420
+ isContainer: false,
421
+ isBusiObjContainer: false,
422
+ cmdgroup: ['basic'],
423
+ platform: 'h5',
424
+ fieldProps: {
425
+ trigger: 'onChange',
426
+ valuePropName: 'children'
427
+ },
428
+ isInlineBlock: true,
429
+ setEvents: [],
430
+ icon: 'Text',
431
+ description: '',
432
+ image: '',
433
+ groupsName: '基础',
434
+ transform: {
435
+ value: 'children'
436
+ },
437
+ isLabelDropBoxChild: false,
438
+ components: [],
439
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_9734406']
440
+ }],
441
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
442
+ }],
443
+ path: ['769713', 'View_769713_1']
444
+ }]
445
+ };
@@ -0,0 +1,134 @@
1
+ export declare const Button: {
2
+ type: string;
3
+ variable: {
4
+ textColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ };
9
+ lineHeight: {
10
+ type: string;
11
+ label: string;
12
+ groupsName: string;
13
+ };
14
+ fontSize: {
15
+ type: string;
16
+ label: string;
17
+ groupsName: string;
18
+ };
19
+ backgroundColor: {
20
+ type: string;
21
+ label: string;
22
+ groupsName: string;
23
+ };
24
+ borderColor: {
25
+ type: string;
26
+ label: string;
27
+ groupsName: string;
28
+ };
29
+ borderRadius: {
30
+ type: string;
31
+ label: string;
32
+ groupsName: string;
33
+ };
34
+ paddingValue: {
35
+ type: string;
36
+ label: string;
37
+ groupsName: string;
38
+ };
39
+ marginValue: {
40
+ type: string;
41
+ label: string;
42
+ groupsName: string;
43
+ };
44
+ };
45
+ groupsName: string;
46
+ icon: string;
47
+ title: string;
48
+ defaultValue: {
49
+ textColor: string;
50
+ lineHeight: string;
51
+ fontSize: string;
52
+ backgroundColor: string;
53
+ borderColor: string;
54
+ borderRadius: string;
55
+ paddingValue: string;
56
+ marginValue: string;
57
+ }[];
58
+ tpl: string;
59
+ components: ({
60
+ id: string;
61
+ label: string;
62
+ compName: string;
63
+ type: string;
64
+ compType: number;
65
+ compLib: string;
66
+ props: {
67
+ name: string;
68
+ btnIcon: string;
69
+ type: string;
70
+ size: string;
71
+ loading: boolean;
72
+ mImagePostion: string;
73
+ shape: string;
74
+ status: string;
75
+ children: string;
76
+ };
77
+ style: {
78
+ textAlign: string;
79
+ };
80
+ isContainer: boolean;
81
+ isBusiObjContainer: boolean;
82
+ cmdgroup: string[];
83
+ platform: string;
84
+ description: string;
85
+ image: string;
86
+ groupsName: string;
87
+ transform: {
88
+ value: string;
89
+ };
90
+ engineApi: string[];
91
+ icon: string;
92
+ setEvents: never[];
93
+ isLabelDropBoxChild: boolean;
94
+ components: never[];
95
+ path: string[];
96
+ } | {
97
+ id: string;
98
+ label: string;
99
+ compName: string;
100
+ type: string;
101
+ compType: number;
102
+ compLib: string;
103
+ props: {
104
+ name: string;
105
+ btnIcon: boolean;
106
+ type: string;
107
+ size: string;
108
+ loading: boolean;
109
+ mImagePostion: string;
110
+ shape: string;
111
+ status: string;
112
+ children: string;
113
+ };
114
+ style: {
115
+ textAlign: string;
116
+ };
117
+ isContainer: boolean;
118
+ isBusiObjContainer: boolean;
119
+ cmdgroup: string[];
120
+ platform: string;
121
+ description: string;
122
+ image: string;
123
+ groupsName: string;
124
+ transform: {
125
+ value: string;
126
+ };
127
+ engineApi: string[];
128
+ icon: string;
129
+ setEvents: never[];
130
+ isLabelDropBoxChild: boolean;
131
+ components: never[];
132
+ path: string[];
133
+ })[];
134
+ };