@lingxiteam/theme-utils 0.5.3 → 0.5.5

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 (127) hide show
  1. package/dist/config/Button.d.ts +113 -0
  2. package/dist/config/Button.js +277 -0
  3. package/dist/config/Card.d.ts +144 -0
  4. package/dist/config/Card.js +162 -0
  5. package/dist/config/Cascader.d.ts +196 -0
  6. package/dist/config/Cascader.js +225 -0
  7. package/dist/config/Checkbox.d.ts +162 -0
  8. package/dist/config/Checkbox.js +178 -0
  9. package/dist/config/CheckboxGroup.d.ts +184 -0
  10. package/dist/config/CheckboxGroup.js +192 -0
  11. package/dist/config/Collapse.d.ts +186 -0
  12. package/dist/config/Collapse.js +330 -0
  13. package/dist/config/Container.d.ts +275 -0
  14. package/dist/config/Container.js +301 -0
  15. package/dist/config/DatePicker.d.ts +179 -0
  16. package/dist/config/DatePicker.js +179 -0
  17. package/dist/config/Description.d.ts +106 -0
  18. package/dist/config/Description.js +126 -0
  19. package/dist/config/Divider.d.ts +61 -0
  20. package/dist/config/Divider.js +61 -0
  21. package/dist/config/Form.d.ts +3071 -0
  22. package/dist/config/Form.js +1358 -0
  23. package/dist/config/Icon.d.ts +55 -0
  24. package/dist/config/Icon.js +55 -0
  25. package/dist/config/Input.d.ts +159 -0
  26. package/dist/config/Input.js +159 -0
  27. package/dist/config/InputNumber.d.ts +154 -0
  28. package/dist/config/InputNumber.js +154 -0
  29. package/dist/config/Link.d.ts +128 -0
  30. package/dist/config/Link.js +120 -0
  31. package/dist/config/MultipleSelect.d.ts +167 -0
  32. package/dist/config/MultipleSelect.js +175 -0
  33. package/dist/config/Radio.d.ts +239 -0
  34. package/dist/config/Radio.js +261 -0
  35. package/dist/config/RangePicker.d.ts +182 -0
  36. package/dist/config/RangePicker.js +182 -0
  37. package/dist/config/Select.d.ts +190 -0
  38. package/dist/config/Select.js +198 -0
  39. package/dist/config/StdUpload.d.ts +197 -0
  40. package/dist/config/StdUpload.js +211 -0
  41. package/dist/config/Switch.d.ts +141 -0
  42. package/dist/config/Switch.js +151 -0
  43. package/dist/config/Table.d.ts +482 -0
  44. package/dist/config/Table.js +560 -0
  45. package/dist/config/Tabs.d.ts +230 -0
  46. package/dist/config/Tabs.js +970 -0
  47. package/dist/config/Tag.d.ts +173 -0
  48. package/dist/config/Tag.js +548 -0
  49. package/dist/config/Text.d.ts +34 -0
  50. package/dist/config/Text.js +34 -0
  51. package/dist/config/TextArea.d.ts +151 -0
  52. package/dist/config/TextArea.js +151 -0
  53. package/dist/config/TimePicker.d.ts +180 -0
  54. package/dist/config/TimePicker.js +180 -0
  55. package/dist/config/Tree.d.ts +151 -0
  56. package/dist/config/Tree.js +195 -0
  57. package/dist/config/TreeSelect.d.ts +197 -0
  58. package/dist/config/TreeSelect.js +213 -0
  59. package/dist/css.d.ts +6 -0
  60. package/dist/css.js +126 -0
  61. package/dist/demo.d.ts +5 -0
  62. package/dist/demo.js +79 -0
  63. package/dist/h5config/Accordion.d.ts +410 -0
  64. package/dist/h5config/Accordion.js +548 -0
  65. package/dist/h5config/Button.d.ts +142 -0
  66. package/dist/h5config/Button.js +253 -0
  67. package/dist/h5config/Card.d.ts +275 -0
  68. package/dist/h5config/Card.js +535 -0
  69. package/dist/h5config/DAddressPicker.d.ts +188 -0
  70. package/dist/h5config/DAddressPicker.js +230 -0
  71. package/dist/h5config/DCheckbox.d.ts +202 -0
  72. package/dist/h5config/DCheckbox.js +248 -0
  73. package/dist/h5config/DForm.d.ts +1597 -0
  74. package/dist/h5config/DForm.js +932 -0
  75. package/dist/h5config/DMultiplePicker.d.ts +189 -0
  76. package/dist/h5config/DMultiplePicker.js +235 -0
  77. package/dist/h5config/DformDate.d.ts +191 -0
  78. package/dist/h5config/DformDate.js +233 -0
  79. package/dist/h5config/DformFile.d.ts +277 -0
  80. package/dist/h5config/DformFile.js +292 -0
  81. package/dist/h5config/DformImagePicker.d.ts +138 -0
  82. package/dist/h5config/DformImagePicker.js +156 -0
  83. package/dist/h5config/DformInput.d.ts +189 -0
  84. package/dist/h5config/DformInput.js +231 -0
  85. package/dist/h5config/DformInputNumber.d.ts +173 -0
  86. package/dist/h5config/DformInputNumber.js +215 -0
  87. package/dist/h5config/DformPicker.d.ts +190 -0
  88. package/dist/h5config/DformPicker.js +236 -0
  89. package/dist/h5config/DformRadio.d.ts +210 -0
  90. package/dist/h5config/DformRadio.js +256 -0
  91. package/dist/h5config/DformRangePicker.d.ts +195 -0
  92. package/dist/h5config/DformRangePicker.js +237 -0
  93. package/dist/h5config/DformSelect.d.ts +198 -0
  94. package/dist/h5config/DformSelect.js +262 -0
  95. package/dist/h5config/DformSwitch.d.ts +145 -0
  96. package/dist/h5config/DformSwitch.js +163 -0
  97. package/dist/h5config/DformTextArea.d.ts +184 -0
  98. package/dist/h5config/DformTextArea.js +226 -0
  99. package/dist/h5config/Divider.d.ts +53 -0
  100. package/dist/h5config/Divider.js +90 -0
  101. package/dist/h5config/FilterItems.d.ts +154 -0
  102. package/dist/h5config/FilterItems.js +204 -0
  103. package/dist/h5config/Grid.d.ts +235 -0
  104. package/dist/h5config/Grid.js +278 -0
  105. package/dist/h5config/Icon.d.ts +54 -0
  106. package/dist/h5config/Icon.js +54 -0
  107. package/dist/h5config/Link.d.ts +51 -0
  108. package/dist/h5config/Link.js +51 -0
  109. package/dist/h5config/LoadMore.d.ts +527 -0
  110. package/dist/h5config/LoadMore.js +940 -0
  111. package/dist/h5config/NoticeBarPlus.d.ts +111 -0
  112. package/dist/h5config/NoticeBarPlus.js +141 -0
  113. package/dist/h5config/SearchView.d.ts +135 -0
  114. package/dist/h5config/SearchView.js +177 -0
  115. package/dist/h5config/StaticTabs.d.ts +121 -0
  116. package/dist/h5config/StaticTabs.js +180 -0
  117. package/dist/h5config/Table.d.ts +197 -0
  118. package/dist/h5config/Table.js +589 -0
  119. package/dist/index.d.ts +4 -0
  120. package/dist/index.js +4 -0
  121. package/dist/lx-mobile.d.ts +23 -0
  122. package/dist/lx-mobile.js +174 -0
  123. package/dist/lx.d.ts +24 -0
  124. package/dist/lx.js +139 -0
  125. package/dist/utils.d.ts +12 -0
  126. package/dist/utils.js +67 -0
  127. package/package.json +1 -1
@@ -0,0 +1,548 @@
1
+ export var Accordion = {
2
+ type: 'Accordion',
3
+ variable: {
4
+ backgroundColor: {
5
+ type: 'color',
6
+ label: '头部填充颜色',
7
+ groupsName: '背景'
8
+ },
9
+ bodyBgColor: {
10
+ type: 'color',
11
+ label: '内容填充颜色',
12
+ groupsName: '背景'
13
+ },
14
+ textColor: {
15
+ type: 'color',
16
+ label: '标题颜色',
17
+ groupsName: '标题',
18
+ followTheme: '@color-text-base'
19
+ },
20
+ fontSize: {
21
+ type: 'px',
22
+ label: '标题尺寸',
23
+ groupsName: '标题'
24
+ },
25
+ lineHeight: {
26
+ type: 'px',
27
+ label: '标题行高',
28
+ groupsName: '标题'
29
+ },
30
+ fontWeight: {
31
+ type: 'select',
32
+ label: '标题字重',
33
+ groupsName: '标题',
34
+ options: [{
35
+ title: '100',
36
+ value: '100'
37
+ }, {
38
+ title: '200',
39
+ value: '200'
40
+ }, {
41
+ title: '300',
42
+ value: '300'
43
+ }, {
44
+ title: '400',
45
+ value: '400'
46
+ }, {
47
+ title: '500',
48
+ value: '500'
49
+ }, {
50
+ title: '600',
51
+ value: '600'
52
+ }, {
53
+ title: '700',
54
+ value: '700'
55
+ }]
56
+ },
57
+ borderRadius: {
58
+ type: 'px',
59
+ label: '圆角',
60
+ groupsName: '边框'
61
+ },
62
+ borderColor: {
63
+ type: 'color',
64
+ label: '颜色',
65
+ groupsName: '边框',
66
+ followTheme: '@border-color-base'
67
+ },
68
+ titleColor: {
69
+ type: 'color',
70
+ label: '装饰符颜色',
71
+ groupsName: '其他',
72
+ followTheme: '@brand-primary'
73
+ },
74
+ // lineColor: {
75
+ // type: 'color',
76
+ // label: '分割线颜色',
77
+ // groupsName: '边框',
78
+ // },
79
+ tagSize: {
80
+ type: 'px',
81
+ label: '装饰符标尺寸',
82
+ groupsName: '其他'
83
+ },
84
+ tagMargin: {
85
+ type: 'marginInput',
86
+ label: '装饰符外边距',
87
+ groupsName: '其他'
88
+ },
89
+ arrowColor: {
90
+ type: 'color',
91
+ label: '后缀图标颜色',
92
+ groupsName: '其他',
93
+ followTheme: '@border-color-base'
94
+ },
95
+ arrowSize: {
96
+ type: 'px',
97
+ label: '后缀图标尺寸',
98
+ groupsName: '其他'
99
+ }
100
+ },
101
+ hasPrefixClass: true,
102
+ groupsName: '容器',
103
+ icon: 'icon-ico-comp-app-Accordion',
104
+ title: '折叠面板',
105
+ defaultValue: [{
106
+ textColor: 'rgb(28, 36, 46)',
107
+ lineHeight: '25px',
108
+ fontSize: '17px',
109
+ fontWeight: '400',
110
+ backgroundColor: '#fff',
111
+ titleColor: '#47e',
112
+ // lineColor: '#f0f0f0',
113
+ tagSize: '16px',
114
+ tagMargin: '0 0 0 8px',
115
+ arrowColor: '#cccccc',
116
+ arrowSize: '19px',
117
+ bodyBgColor: '#fff',
118
+ borderColor: '#fff',
119
+ borderRadius: '4px'
120
+ }],
121
+ followThemes: {
122
+ '@brand-primary': ['titleColor'],
123
+ '@color-text-base': [],
124
+ '@border-color-base': []
125
+ },
126
+ tpl: ".lcdp-accordion {\n .lcdp-accordion-header{\n color: textColor;\n font-weight: fontWeight;\n font-size: fontSize;\n line-height: lineHeight;\n background: backgroundColor;\n > div {\n margin: tagMargin !important;\n }\n }\n .lcdp-accordion-header-icon-left{\n background: titleColor;\n }\n .lcdp-accordion-header-default-icon{\n height: tagSize;\n background: titleColor;\n margin-right: -4px;\n }\n .adm-collapse-arrow svg{\n color: arrowColor;\n width: arrowSize;\n height: arrowSize;\n }\n .adm-list-item-content-main{\n background: bodyBgColor;\n }\n .adm-collapse{\n border-radius: borderRadius;\n border-color: borderColor !important;\n }\n }\n ",
127
+ components: [{
128
+ id: 'Accordion_960849',
129
+ label: '折叠面板',
130
+ compName: 'Accordion',
131
+ type: 'Accordion',
132
+ compType: 0,
133
+ compLib: '@/components',
134
+ props: {
135
+ name: '折叠面板',
136
+ visible: 1,
137
+ bordered: true,
138
+ accordion: true,
139
+ data: [],
140
+ cardIconType: 'middle',
141
+ defaultActiveKey: ['1']
142
+ },
143
+ style: {},
144
+ isContainer: true,
145
+ isBusiObjContainer: false,
146
+ cmdgroup: ['basic'],
147
+ platform: 'h5',
148
+ description: '',
149
+ image: '',
150
+ groupsName: '容器',
151
+ icon: 'Accordion',
152
+ setEvents: [],
153
+ isLabelDropBoxChild: false,
154
+ components: [{
155
+ id: 'AccordionPanel_530736',
156
+ label: '折叠子面板',
157
+ compName: 'AccordionPanel',
158
+ type: 'AccordionPanel',
159
+ compType: 0,
160
+ compLib: '@/components',
161
+ props: {
162
+ name: '折叠子面板',
163
+ visible: true,
164
+ header: '显示边框',
165
+ key: '1'
166
+ },
167
+ style: {},
168
+ isContainer: true,
169
+ isBusiObjContainer: false,
170
+ cmdgroup: ['basic'],
171
+ platform: 'h5',
172
+ engineApi: ['downloadFileByFileCode'],
173
+ description: '',
174
+ image: '',
175
+ groupsName: '容器',
176
+ icon: 'Accordion',
177
+ setEvents: [],
178
+ isLabelDropBoxChild: false,
179
+ components: [{
180
+ id: 'Text_108729',
181
+ label: '文本',
182
+ compName: 'Text',
183
+ type: 'Text',
184
+ compType: 1,
185
+ compLib: 'antd-mobile',
186
+ props: {
187
+ name: '内容文本'
188
+ },
189
+ style: {
190
+ padding: '11px'
191
+ },
192
+ isContainer: false,
193
+ isBusiObjContainer: false,
194
+ cmdgroup: ['basic'],
195
+ platform: 'h5',
196
+ fieldProps: {
197
+ trigger: 'onChange',
198
+ valuePropName: 'children'
199
+ },
200
+ isInlineBlock: true,
201
+ setEvents: [],
202
+ icon: 'Text',
203
+ description: '',
204
+ image: '',
205
+ groupsName: '基础',
206
+ transform: {
207
+ value: 'children'
208
+ },
209
+ isLabelDropBoxChild: false,
210
+ components: [],
211
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_530736']
212
+ }],
213
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
214
+ }, {
215
+ id: 'AccordionPanel_9734406',
216
+ label: '折叠子面板',
217
+ compName: 'AccordionPanel',
218
+ type: 'AccordionPanel',
219
+ compType: 0,
220
+ compLib: '@/components',
221
+ props: {
222
+ name: '折叠子面板',
223
+ visible: true,
224
+ header: '标题2',
225
+ key: '2'
226
+ },
227
+ style: {},
228
+ isContainer: true,
229
+ isBusiObjContainer: false,
230
+ cmdgroup: ['basic'],
231
+ platform: 'h5',
232
+ engineApi: ['downloadFileByFileCode'],
233
+ description: '',
234
+ image: '',
235
+ groupsName: '容器',
236
+ icon: 'Accordion',
237
+ setEvents: [],
238
+ isLabelDropBoxChild: false,
239
+ components: [{
240
+ id: 'Text_337264',
241
+ label: '文本',
242
+ compName: 'Text',
243
+ type: 'Text',
244
+ compType: 1,
245
+ compLib: 'antd-mobile',
246
+ props: {
247
+ name: '内容文本'
248
+ },
249
+ style: {
250
+ padding: '11px'
251
+ },
252
+ isContainer: false,
253
+ isBusiObjContainer: false,
254
+ cmdgroup: ['basic'],
255
+ platform: 'h5',
256
+ fieldProps: {
257
+ trigger: 'onChange',
258
+ valuePropName: 'children'
259
+ },
260
+ isInlineBlock: true,
261
+ setEvents: [],
262
+ icon: 'Text',
263
+ description: '',
264
+ image: '',
265
+ groupsName: '基础',
266
+ transform: {
267
+ value: 'children'
268
+ },
269
+ isLabelDropBoxChild: false,
270
+ components: [],
271
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_9734406']
272
+ }],
273
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
274
+ }],
275
+ path: ['769713', 'View_769713_1']
276
+ }, {
277
+ id: 'View_519882',
278
+ label: '普通容器',
279
+ compName: 'View',
280
+ type: 'View',
281
+ compType: 0,
282
+ compLib: 'custom',
283
+ props: {
284
+ name: '普通容器1',
285
+ basicStatus: 1
286
+ },
287
+ style: {
288
+ textAlign: 'left',
289
+ display: 'block',
290
+ flexDirection: 'column',
291
+ padding: '0px 0px 0px 0px',
292
+ width: '100%',
293
+ backgroundColor: '#FFFFFF',
294
+ height: '50px'
295
+ },
296
+ isContainer: true,
297
+ isBusiObjContainer: false,
298
+ cmdgroup: ['basic'],
299
+ platform: 'pc',
300
+ icon: 'View',
301
+ description: '',
302
+ image: '',
303
+ groupsName: '布局',
304
+ engineApi: ['service.downloadFileByFileCode'],
305
+ setEvents: [],
306
+ isLabelDropBoxChild: false,
307
+ components: [],
308
+ path: ['998509']
309
+ }, {
310
+ id: 'Accordion_960849',
311
+ label: '折叠面板',
312
+ compName: 'Accordion',
313
+ type: 'Accordion',
314
+ compType: 0,
315
+ compLib: '@/components',
316
+ props: {
317
+ name: '折叠面板',
318
+ visible: 1,
319
+ bordered: false,
320
+ accordion: true,
321
+ data: [],
322
+ cardIconType: 'middle',
323
+ defaultActiveKey: ['1']
324
+ },
325
+ style: {},
326
+ isContainer: true,
327
+ isBusiObjContainer: false,
328
+ cmdgroup: ['basic'],
329
+ platform: 'h5',
330
+ description: '',
331
+ image: '',
332
+ groupsName: '容器',
333
+ icon: 'Accordion',
334
+ setEvents: [],
335
+ isLabelDropBoxChild: false,
336
+ components: [{
337
+ id: 'AccordionPanel_530736',
338
+ label: '折叠子面板',
339
+ compName: 'AccordionPanel',
340
+ type: 'AccordionPanel',
341
+ compType: 0,
342
+ compLib: '@/components',
343
+ props: {
344
+ name: '折叠子面板',
345
+ visible: true,
346
+ header: '标题1',
347
+ key: '1'
348
+ },
349
+ style: {},
350
+ isContainer: true,
351
+ isBusiObjContainer: false,
352
+ cmdgroup: ['basic'],
353
+ platform: 'h5',
354
+ engineApi: ['downloadFileByFileCode'],
355
+ description: '',
356
+ image: '',
357
+ groupsName: '容器',
358
+ icon: 'Accordion',
359
+ setEvents: [],
360
+ isLabelDropBoxChild: false,
361
+ components: [{
362
+ id: 'Text_108729',
363
+ label: '文本',
364
+ compName: 'Text',
365
+ type: 'Text',
366
+ compType: 1,
367
+ compLib: 'antd-mobile',
368
+ props: {
369
+ name: '内容文本'
370
+ },
371
+ style: {
372
+ padding: '11px',
373
+ textAlign: 'left',
374
+ lineHeight: '24px',
375
+ fontSize: 14,
376
+ border: '0px'
377
+ },
378
+ isContainer: false,
379
+ isBusiObjContainer: false,
380
+ cmdgroup: ['basic'],
381
+ platform: 'h5',
382
+ fieldProps: {
383
+ trigger: 'onChange',
384
+ valuePropName: 'children'
385
+ },
386
+ isInlineBlock: true,
387
+ setEvents: [],
388
+ icon: 'Text',
389
+ description: '',
390
+ image: '',
391
+ groupsName: '基础',
392
+ transform: {
393
+ value: 'children'
394
+ },
395
+ isLabelDropBoxChild: false,
396
+ components: [],
397
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_530736']
398
+ }],
399
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
400
+ }, {
401
+ id: 'AccordionPanel_9734406',
402
+ label: '折叠子面板',
403
+ compName: 'AccordionPanel',
404
+ type: 'AccordionPanel',
405
+ compType: 0,
406
+ compLib: '@/components',
407
+ props: {
408
+ name: '折叠子面板',
409
+ visible: true,
410
+ header: '标题2',
411
+ key: '2'
412
+ },
413
+ style: {},
414
+ isContainer: true,
415
+ isBusiObjContainer: false,
416
+ cmdgroup: ['basic'],
417
+ platform: 'h5',
418
+ engineApi: ['downloadFileByFileCode'],
419
+ description: '',
420
+ image: '',
421
+ groupsName: '容器',
422
+ icon: 'Accordion',
423
+ setEvents: [],
424
+ isLabelDropBoxChild: false,
425
+ components: [{
426
+ id: 'Text_337264',
427
+ label: '文本',
428
+ compName: 'Text',
429
+ type: 'Text',
430
+ compType: 1,
431
+ compLib: 'antd-mobile',
432
+ props: {
433
+ name: '内容文本'
434
+ },
435
+ style: {
436
+ padding: '11px',
437
+ textAlign: 'left',
438
+ lineHeight: '24px',
439
+ fontSize: 14,
440
+ border: '0px'
441
+ },
442
+ isContainer: false,
443
+ isBusiObjContainer: false,
444
+ cmdgroup: ['basic'],
445
+ platform: 'h5',
446
+ fieldProps: {
447
+ trigger: 'onChange',
448
+ valuePropName: 'children'
449
+ },
450
+ isInlineBlock: true,
451
+ setEvents: [],
452
+ icon: 'Text',
453
+ description: '',
454
+ image: '',
455
+ groupsName: '基础',
456
+ transform: {
457
+ value: 'children'
458
+ },
459
+ isLabelDropBoxChild: false,
460
+ components: [],
461
+ path: ['769713', 'View_769713_1', 'Accordion_960849', 'AccordionPanel_9734406']
462
+ }],
463
+ path: ['769713', 'View_769713_1', 'Accordion_960849']
464
+ }],
465
+ path: ['769713', 'View_769713_1']
466
+ }, {
467
+ id: 'Accordion_666603',
468
+ label: '折叠面板',
469
+ compName: 'Accordion',
470
+ type: 'Accordion',
471
+ compType: 0,
472
+ compLib: '@/components',
473
+ props: {
474
+ name: '折叠面板',
475
+ visible: 1,
476
+ bordered: true,
477
+ accordion: true,
478
+ data: [],
479
+ cardIconType: 'left',
480
+ defaultActiveKey: ['1']
481
+ },
482
+ style: {},
483
+ isContainer: true,
484
+ isBusiObjContainer: false,
485
+ cmdgroup: ['basic'],
486
+ platform: 'h5',
487
+ description: '',
488
+ image: '',
489
+ groupsName: '容器',
490
+ icon: 'Accordion',
491
+ setEvents: [],
492
+ isLabelDropBoxChild: false,
493
+ components: [{
494
+ id: 'AccordionPanel_245519',
495
+ label: '折叠子面板',
496
+ compName: 'AccordionPanel',
497
+ type: 'AccordionPanel',
498
+ compType: 0,
499
+ compLib: '@/components',
500
+ props: {
501
+ name: '折叠子面板',
502
+ visible: true,
503
+ header: '标题1',
504
+ key: '1'
505
+ },
506
+ style: {},
507
+ isContainer: true,
508
+ isBusiObjContainer: false,
509
+ cmdgroup: ['basic'],
510
+ platform: 'h5',
511
+ description: '',
512
+ image: '',
513
+ groupsName: '容器',
514
+ icon: 'Accordion',
515
+ setEvents: [],
516
+ isLabelDropBoxChild: false,
517
+ components: [],
518
+ path: ['181337953', 'View_181337953_1', 'Accordion_666603']
519
+ }, {
520
+ id: 'AccordionPanel_0992',
521
+ label: '折叠子面板',
522
+ compName: 'AccordionPanel',
523
+ type: 'AccordionPanel',
524
+ compType: 0,
525
+ compLib: '@/components',
526
+ props: {
527
+ name: '折叠子面板',
528
+ visible: true,
529
+ header: '标题2',
530
+ key: '2'
531
+ },
532
+ style: {},
533
+ isContainer: true,
534
+ isBusiObjContainer: false,
535
+ cmdgroup: ['basic'],
536
+ platform: 'h5',
537
+ description: '',
538
+ image: '',
539
+ groupsName: '容器',
540
+ icon: 'Accordion',
541
+ setEvents: [],
542
+ isLabelDropBoxChild: false,
543
+ components: [],
544
+ path: ['181337953', 'View_181337953_1', 'Accordion_666603']
545
+ }],
546
+ path: ['181337953', 'View_181337953_1']
547
+ }]
548
+ };
@@ -0,0 +1,142 @@
1
+ export declare const Button: {
2
+ type: string;
3
+ variable: {
4
+ backgroundColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ followTheme: string;
9
+ };
10
+ textColor: {
11
+ type: string;
12
+ label: string;
13
+ groupsName: string;
14
+ followTheme: string;
15
+ };
16
+ fontSize: {
17
+ type: string;
18
+ label: string;
19
+ groupsName: string;
20
+ };
21
+ lineHeight: {
22
+ type: string;
23
+ label: string;
24
+ groupsName: string;
25
+ };
26
+ paddingValue: {
27
+ type: string;
28
+ label: string;
29
+ groupsName: string;
30
+ };
31
+ marginValue: {
32
+ type: string;
33
+ label: string;
34
+ groupsName: string;
35
+ };
36
+ borderRadius: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ };
41
+ borderColor: {
42
+ type: string;
43
+ label: string;
44
+ groupsName: string;
45
+ followTheme: string;
46
+ };
47
+ };
48
+ groupsName: string;
49
+ icon: string;
50
+ title: string;
51
+ defaultValue: {
52
+ textColor: string;
53
+ lineHeight: string;
54
+ fontSize: string;
55
+ backgroundColor: string;
56
+ borderColor: string;
57
+ borderRadius: string;
58
+ paddingValue: string;
59
+ marginValue: string;
60
+ }[];
61
+ followThemes: {
62
+ '@brand-primary': string[];
63
+ '@border-color-base': string[];
64
+ '@color-text-base': never[];
65
+ };
66
+ tpl: string;
67
+ components: ({
68
+ id: string;
69
+ label: string;
70
+ compName: string;
71
+ type: string;
72
+ compType: number;
73
+ compLib: string;
74
+ props: {
75
+ name: string;
76
+ btnIcon: string;
77
+ type: string;
78
+ size: string;
79
+ loading: boolean;
80
+ mImagePostion: string;
81
+ shape: string;
82
+ status: string;
83
+ children: string;
84
+ };
85
+ style: {
86
+ textAlign: string;
87
+ };
88
+ isContainer: boolean;
89
+ isBusiObjContainer: boolean;
90
+ cmdgroup: string[];
91
+ platform: string;
92
+ description: string;
93
+ image: string;
94
+ groupsName: string;
95
+ transform: {
96
+ value: string;
97
+ };
98
+ engineApi: string[];
99
+ icon: string;
100
+ setEvents: never[];
101
+ isLabelDropBoxChild: boolean;
102
+ components: never[];
103
+ path: string[];
104
+ } | {
105
+ id: string;
106
+ label: string;
107
+ compName: string;
108
+ type: string;
109
+ compType: number;
110
+ compLib: string;
111
+ props: {
112
+ name: string;
113
+ btnIcon: boolean;
114
+ type: string;
115
+ size: string;
116
+ loading: boolean;
117
+ mImagePostion: string;
118
+ shape: string;
119
+ status: string;
120
+ children: string;
121
+ };
122
+ style: {
123
+ textAlign: string;
124
+ };
125
+ isContainer: boolean;
126
+ isBusiObjContainer: boolean;
127
+ cmdgroup: string[];
128
+ platform: string;
129
+ description: string;
130
+ image: string;
131
+ groupsName: string;
132
+ transform: {
133
+ value: string;
134
+ };
135
+ engineApi: string[];
136
+ icon: string;
137
+ setEvents: never[];
138
+ isLabelDropBoxChild: boolean;
139
+ components: never[];
140
+ path: string[];
141
+ })[];
142
+ };