@lingxiteam/theme-utils 0.5.3 → 0.5.4

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,535 @@
1
+ export var Card = {
2
+ type: 'Card',
3
+ hasPrefixClass: true,
4
+ variable: {
5
+ backgroundColor: {
6
+ type: 'color',
7
+ label: '头部填充颜色',
8
+ groupsName: '背景'
9
+ },
10
+ bodyBgColor: {
11
+ type: 'color',
12
+ label: '内容填充颜色',
13
+ groupsName: '背景'
14
+ },
15
+ footBgColor: {
16
+ type: 'color',
17
+ label: '底部填充颜色',
18
+ groupsName: '背景'
19
+ },
20
+ textColor: {
21
+ type: 'color',
22
+ label: '标题颜色',
23
+ followTheme: '@color-text-base',
24
+ groupsName: '标题'
25
+ },
26
+ fontSize: {
27
+ type: 'px',
28
+ label: '标题尺寸',
29
+ groupsName: '标题'
30
+ // TODO: 单位是 * @hd 有异常
31
+ // followTheme: '@font-size-heading',
32
+ },
33
+
34
+ lineHeight: {
35
+ type: 'px',
36
+ label: '标题行高',
37
+ groupsName: '标题',
38
+ options: [{
39
+ label: 'px',
40
+ value: 'px'
41
+ }, {
42
+ label: '%',
43
+ value: '%'
44
+ }]
45
+ },
46
+ fontWeight: {
47
+ type: 'select',
48
+ label: '标题字重',
49
+ groupsName: '标题',
50
+ options: [{
51
+ title: '100',
52
+ value: '100'
53
+ }, {
54
+ title: '200',
55
+ value: '200'
56
+ }, {
57
+ title: '300',
58
+ value: '300'
59
+ }, {
60
+ title: '400',
61
+ value: '400'
62
+ }, {
63
+ title: '500',
64
+ value: '500'
65
+ }, {
66
+ title: '600',
67
+ value: '600'
68
+ }, {
69
+ title: '700',
70
+ value: '700'
71
+ }]
72
+ },
73
+ borderRadius: {
74
+ type: 'px',
75
+ label: '圆角',
76
+ groupsName: '边框'
77
+ },
78
+ borderColor: {
79
+ type: 'color',
80
+ label: '颜色',
81
+ groupsName: '边框',
82
+ followTheme: '@border-color-base'
83
+ },
84
+ titleColor: {
85
+ type: 'color',
86
+ label: '装饰符颜色',
87
+ groupsName: '其他',
88
+ followTheme: '@brand-primary'
89
+ },
90
+ tagSize: {
91
+ type: 'px',
92
+ label: '装饰符尺寸',
93
+ groupsName: '其他'
94
+ },
95
+ tagMargin: {
96
+ type: 'marginInput',
97
+ label: '符号符外边距',
98
+ groupsName: '其他'
99
+ },
100
+ arrowColor: {
101
+ type: 'color',
102
+ label: '后缀图标颜色',
103
+ groupsName: '其他'
104
+ },
105
+ arrowSize: {
106
+ type: 'px',
107
+ label: '后缀图标尺寸',
108
+ groupsName: '其他'
109
+ },
110
+ lineColor: {
111
+ type: 'color',
112
+ label: '头部分割线颜色',
113
+ groupsName: '其他',
114
+ followTheme: '@border-color-base'
115
+ },
116
+ bodyLineColor: {
117
+ type: 'color',
118
+ label: '内容分割线颜色',
119
+ groupsName: '其他',
120
+ followTheme: '@border-color-base'
121
+ }
122
+ },
123
+ groupsName: '容器',
124
+ icon: 'icon-ico-comp-app-CardPlus',
125
+ title: '卡片',
126
+ defaultValue: [{
127
+ textColor: 'rgb(28, 36, 46)',
128
+ lineHeight: '100%',
129
+ fontSize: '16px',
130
+ fontWeight: '400',
131
+ backgroundColor: '#fff',
132
+ titleColor: '#47e',
133
+ lineColor: '#f0f0f0',
134
+ tagSize: '16px',
135
+ tagMargin: '0 4px 0 0',
136
+ arrowColor: 'rgba(28, 36, 46, 0.55)',
137
+ arrowSize: '12px',
138
+ bodyBgColor: '#fff',
139
+ bodyLineColor: '#f0f0f0',
140
+ footBgColor: '#fff',
141
+ borderColor: 'rgba(0,0,0,0)',
142
+ borderRadius: '4px'
143
+ }],
144
+ followThemes: {
145
+ '@brand-primary': ['titleColor'],
146
+ // '@font-size-heading': ['fontSize'],
147
+ '@color-text-base': [],
148
+ '@border-color-base': ['lineColor', 'bodyLineColor']
149
+ },
150
+ tpl: ".lcdp-h5-card {\n border-radius: borderRadius;\n border: 1PX solid borderColor;\n\n .adm-card-header:not(:last-child){\n border-color: lineColor !important;\n }\n .adm-card-header{\n border-color: lineColor !important;\n background: backgroundColor;\n }\n .adm-card-body{\n background: bodyBgColor;\n }\n\n .adm-card-header-title .lcdp-h5-card-title{\n color: textColor;\n font-weight: fontWeight;\n font-size: fontSize;\n line-height: lineHeight;\n }\n\n .lcdp-h5-card-hStyle{\n background: titleColor;\n margin: tagMargin;\n position: static;\n width: tagSize;\n }\n .lcdp-h5-card-vStyle{\n height: tagSize;\n background: titleColor;\n margin: tagMargin;\n }\n .lcdp-h5-card-icon{\n width: tagSize;\n height: tagSize;\n margin: tagMargin;\n margin-top: -1px;\n display: grid;\n }\n .lcdp-h5-card-icon svg{\n color: titleColor;\n width: tagSize;\n height: tagSize;\n }\n .lcdp-h5-card-extra-icon{\n width: arrowSize;\n height: arrowSize;\n }\n .lcdp-h5-card-extra-icon svg{\n color: arrowColor;\n width: arrowSize;\n height: arrowSize;\n }\n .lcdp-card-footer-draw-box-border{\n border-color: bodyLineColor;\n background: footBgColor;\n }\n }\n \n ",
151
+ components: [{
152
+ id: 'Card_194419',
153
+ label: '卡片',
154
+ compName: 'Card',
155
+ type: 'Card',
156
+ compType: 0,
157
+ compLib: 'antd-mobile',
158
+ props: {
159
+ name: '卡片',
160
+ showHeader: true,
161
+ postfixIcon: {
162
+ type: 'right',
163
+ theme: 'outlined',
164
+ fontAddress: '',
165
+ isIconFont: false,
166
+ iconFileInfo: {}
167
+ },
168
+ postfixIconPosition: 'after',
169
+ showContent: true,
170
+ showFooter: true,
171
+ status: '1',
172
+ cardType: '1',
173
+ title: '卡片标题',
174
+ headerType: 'none',
175
+ postFixFontSize: 16,
176
+ iconPosition: 'after',
177
+ $$ISNEW: true
178
+ },
179
+ style: {
180
+ padding: '12px',
181
+ margin: '0px 0px 0px 0px',
182
+ width: '100%',
183
+ height: 'auto'
184
+ },
185
+ isContainer: true,
186
+ isBusiObjContainer: false,
187
+ cmdgroup: ['basic'],
188
+ platform: 'h5',
189
+ description: '',
190
+ image: '',
191
+ groupsName: '容器',
192
+ icon: 'Card',
193
+ setEvents: [],
194
+ isLabelDropBoxChild: false,
195
+ components: [{
196
+ id: 'CardBody_177647',
197
+ label: '卡片Body',
198
+ compName: 'CardBody',
199
+ type: 'CardBody',
200
+ compType: 0,
201
+ compLib: '@/components',
202
+ props: {
203
+ name: '卡片Body'
204
+ },
205
+ style: {},
206
+ isContainer: true,
207
+ isBusiObjContainer: false,
208
+ cmdgroup: ['basic'],
209
+ description: '',
210
+ image: '',
211
+ groupsName: '容器',
212
+ platform: 'h5',
213
+ icon: 'View',
214
+ deprecated: true,
215
+ setEvents: [],
216
+ isLabelDropBoxChild: false,
217
+ components: [],
218
+ path: ['0037538', 'View_0037538_1', 'Card_194419']
219
+ }, {
220
+ id: 'CardFooter_6657425',
221
+ label: '卡片Footer',
222
+ compName: 'CardFooter',
223
+ type: 'CardFooter',
224
+ compType: 1,
225
+ compLib: '@/components',
226
+ props: {
227
+ name: '卡片Footer'
228
+ },
229
+ style: {},
230
+ isContainer: true,
231
+ isBusiObjContainer: false,
232
+ cmdgroup: ['basic'],
233
+ description: '',
234
+ image: '',
235
+ groupsName: '容器',
236
+ platform: 'h5',
237
+ icon: 'View',
238
+ deprecated: true,
239
+ setEvents: [],
240
+ isLabelDropBoxChild: false,
241
+ components: [],
242
+ path: ['0037538', 'View_0037538_1', 'Card_194419']
243
+ }],
244
+ path: ['0037538', 'View_0037538_1']
245
+ }, {
246
+ id: 'Card_544701',
247
+ label: '卡片',
248
+ compName: 'Card',
249
+ type: 'Card',
250
+ compType: 0,
251
+ compLib: 'antd-mobile',
252
+ props: {
253
+ name: '卡片',
254
+ showHeader: true,
255
+ postfixIcon: {
256
+ type: 'right',
257
+ theme: 'outlined',
258
+ fontAddress: '',
259
+ isIconFont: false,
260
+ iconFileInfo: {}
261
+ },
262
+ postfixIconPosition: 'after',
263
+ showContent: true,
264
+ showFooter: true,
265
+ status: '1',
266
+ cardType: '1',
267
+ title: '卡片标题',
268
+ headerType: 'vStyle',
269
+ postFixFontSize: 16,
270
+ iconPosition: 'after',
271
+ $$ISNEW: true
272
+ },
273
+ style: {
274
+ padding: '12px',
275
+ margin: '0px 0px 0px 0px',
276
+ width: '100%',
277
+ height: 'auto'
278
+ },
279
+ isContainer: true,
280
+ isBusiObjContainer: false,
281
+ cmdgroup: ['basic'],
282
+ platform: 'h5',
283
+ description: '',
284
+ image: '',
285
+ groupsName: '容器',
286
+ icon: 'Card',
287
+ setEvents: [],
288
+ isLabelDropBoxChild: false,
289
+ components: [{
290
+ id: 'CardBody_4369334',
291
+ label: '卡片Body',
292
+ compName: 'CardBody',
293
+ type: 'CardBody',
294
+ compType: 0,
295
+ compLib: '@/components',
296
+ props: {
297
+ name: '卡片Body'
298
+ },
299
+ style: {},
300
+ isContainer: true,
301
+ isBusiObjContainer: false,
302
+ cmdgroup: ['basic'],
303
+ description: '',
304
+ image: '',
305
+ groupsName: '容器',
306
+ platform: 'h5',
307
+ icon: 'View',
308
+ deprecated: true,
309
+ setEvents: [],
310
+ isLabelDropBoxChild: false,
311
+ components: [],
312
+ path: ['0037538', 'View_0037538_1', 'Card_544701']
313
+ }, {
314
+ id: 'CardFooter_23558',
315
+ label: '卡片Footer',
316
+ compName: 'CardFooter',
317
+ type: 'CardFooter',
318
+ compType: 1,
319
+ compLib: '@/components',
320
+ props: {
321
+ name: '卡片Footer'
322
+ },
323
+ style: {},
324
+ isContainer: true,
325
+ isBusiObjContainer: false,
326
+ cmdgroup: ['basic'],
327
+ description: '',
328
+ image: '',
329
+ groupsName: '容器',
330
+ platform: 'h5',
331
+ icon: 'View',
332
+ deprecated: true,
333
+ setEvents: [],
334
+ isLabelDropBoxChild: false,
335
+ components: [],
336
+ path: ['0037538', 'View_0037538_1', 'Card_544701']
337
+ }],
338
+ path: ['0037538', 'View_0037538_1']
339
+ }, {
340
+ id: 'Card_025029',
341
+ label: '卡片',
342
+ compName: 'Card',
343
+ type: 'Card',
344
+ compType: 0,
345
+ compLib: 'antd-mobile',
346
+ props: {
347
+ name: '卡片',
348
+ showHeader: true,
349
+ postfixIcon: {
350
+ type: 'right',
351
+ theme: 'outlined',
352
+ fontAddress: '',
353
+ isIconFont: false,
354
+ iconFileInfo: {}
355
+ },
356
+ postfixIconPosition: 'after',
357
+ showContent: true,
358
+ showFooter: true,
359
+ status: '1',
360
+ cardType: '1',
361
+ title: '卡片标题',
362
+ headerType: 'hStyle',
363
+ postFixFontSize: 16,
364
+ iconPosition: 'after',
365
+ $$ISNEW: true
366
+ },
367
+ style: {
368
+ padding: '12px',
369
+ margin: '0px 0px 0px 0px',
370
+ width: '100%',
371
+ height: 'auto'
372
+ },
373
+ isContainer: true,
374
+ isBusiObjContainer: false,
375
+ cmdgroup: ['basic'],
376
+ platform: 'h5',
377
+ description: '',
378
+ image: '',
379
+ groupsName: '容器',
380
+ icon: 'Card',
381
+ setEvents: [],
382
+ isLabelDropBoxChild: false,
383
+ components: [{
384
+ id: 'CardBody_804802',
385
+ label: '卡片Body',
386
+ compName: 'CardBody',
387
+ type: 'CardBody',
388
+ compType: 0,
389
+ compLib: '@/components',
390
+ props: {
391
+ name: '卡片Body'
392
+ },
393
+ style: {},
394
+ isContainer: true,
395
+ isBusiObjContainer: false,
396
+ cmdgroup: ['basic'],
397
+ description: '',
398
+ image: '',
399
+ groupsName: '容器',
400
+ platform: 'h5',
401
+ icon: 'View',
402
+ deprecated: true,
403
+ setEvents: [],
404
+ isLabelDropBoxChild: false,
405
+ components: [],
406
+ path: ['0037538', 'View_0037538_1', 'Card_025029']
407
+ }, {
408
+ id: 'CardFooter_6257803',
409
+ label: '卡片Footer',
410
+ compName: 'CardFooter',
411
+ type: 'CardFooter',
412
+ compType: 1,
413
+ compLib: '@/components',
414
+ props: {
415
+ name: '卡片Footer'
416
+ },
417
+ style: {},
418
+ isContainer: true,
419
+ isBusiObjContainer: false,
420
+ cmdgroup: ['basic'],
421
+ description: '',
422
+ image: '',
423
+ groupsName: '容器',
424
+ platform: 'h5',
425
+ icon: 'View',
426
+ deprecated: true,
427
+ setEvents: [],
428
+ isLabelDropBoxChild: false,
429
+ components: [],
430
+ path: ['0037538', 'View_0037538_1', 'Card_025029']
431
+ }],
432
+ path: ['0037538', 'View_0037538_1']
433
+ }, {
434
+ id: 'Card_858901',
435
+ label: '卡片',
436
+ compName: 'Card',
437
+ type: 'Card',
438
+ compType: 0,
439
+ compLib: 'antd-mobile',
440
+ props: {
441
+ name: '卡片',
442
+ showHeader: true,
443
+ postfixIcon: {
444
+ type: 'right',
445
+ theme: 'outlined',
446
+ fontAddress: '',
447
+ isIconFont: false,
448
+ iconFileInfo: {}
449
+ },
450
+ postfixIconPosition: 'after',
451
+ showContent: true,
452
+ showFooter: true,
453
+ status: '1',
454
+ cardType: '1',
455
+ title: '卡片标题',
456
+ headerType: 'icon',
457
+ postFixFontSize: 16,
458
+ iconPosition: 'after',
459
+ $$ISNEW: true,
460
+ headerIcon: {
461
+ type: 'info-circle',
462
+ theme: 'outlined',
463
+ fontAddress: '',
464
+ isIconFont: false,
465
+ iconFileInfo: {}
466
+ }
467
+ },
468
+ style: {
469
+ padding: '12px',
470
+ margin: '0px 0px 0px 0px',
471
+ width: '100%',
472
+ height: 'auto'
473
+ },
474
+ isContainer: true,
475
+ isBusiObjContainer: false,
476
+ cmdgroup: ['basic'],
477
+ platform: 'h5',
478
+ description: '',
479
+ image: '',
480
+ groupsName: '容器',
481
+ icon: 'Card',
482
+ setEvents: [],
483
+ isLabelDropBoxChild: false,
484
+ components: [{
485
+ id: 'CardBody_0578157',
486
+ label: '卡片Body',
487
+ compName: 'CardBody',
488
+ type: 'CardBody',
489
+ compType: 0,
490
+ compLib: '@/components',
491
+ props: {
492
+ name: '卡片Body'
493
+ },
494
+ style: {},
495
+ isContainer: true,
496
+ isBusiObjContainer: false,
497
+ cmdgroup: ['basic'],
498
+ description: '',
499
+ image: '',
500
+ groupsName: '容器',
501
+ platform: 'h5',
502
+ icon: 'View',
503
+ deprecated: true,
504
+ setEvents: [],
505
+ isLabelDropBoxChild: false,
506
+ components: [],
507
+ path: ['0037538', 'View_0037538_1', 'Card_858901']
508
+ }, {
509
+ id: 'CardFooter_76607',
510
+ label: '卡片Footer',
511
+ compName: 'CardFooter',
512
+ type: 'CardFooter',
513
+ compType: 1,
514
+ compLib: '@/components',
515
+ props: {
516
+ name: '卡片Footer'
517
+ },
518
+ style: {},
519
+ isContainer: true,
520
+ isBusiObjContainer: false,
521
+ cmdgroup: ['basic'],
522
+ description: '',
523
+ image: '',
524
+ groupsName: '容器',
525
+ platform: 'h5',
526
+ icon: 'View',
527
+ deprecated: true,
528
+ setEvents: [],
529
+ isLabelDropBoxChild: false,
530
+ components: [],
531
+ path: ['0037538', 'View_0037538_1', 'Card_858901']
532
+ }],
533
+ path: ['0037538', 'View_0037538_1']
534
+ }]
535
+ };
@@ -0,0 +1,188 @@
1
+ export declare const DAddressPicker: {
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
+ labelFontSize: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelLineHeight: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ labelFontWeight: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ options: {
33
+ title: string;
34
+ value: string;
35
+ }[];
36
+ desc: string;
37
+ canEdit: boolean;
38
+ extendsKey: string;
39
+ };
40
+ textColor: {
41
+ type: string;
42
+ label: string;
43
+ groupsName: string;
44
+ desc: string;
45
+ canEdit: boolean;
46
+ extendsKey: string;
47
+ };
48
+ fontSize: {
49
+ type: string;
50
+ label: string;
51
+ groupsName: string;
52
+ desc: string;
53
+ canEdit: boolean;
54
+ extendsKey: string;
55
+ };
56
+ lineHeight: {
57
+ type: string;
58
+ label: string;
59
+ groupsName: string;
60
+ desc: string;
61
+ canEdit: boolean;
62
+ extendsKey: string;
63
+ };
64
+ fontWeight: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ options: {
69
+ title: string;
70
+ value: string;
71
+ }[];
72
+ desc: string;
73
+ canEdit: boolean;
74
+ extendsKey: string;
75
+ };
76
+ headTextAlign: {
77
+ type: string;
78
+ label: string;
79
+ groupsName: string;
80
+ desc: string;
81
+ canEdit: boolean;
82
+ extendsKey: string;
83
+ options: {
84
+ title: string;
85
+ value: string;
86
+ }[];
87
+ };
88
+ iconColor: {
89
+ type: string;
90
+ label: string;
91
+ groupsName: string;
92
+ desc: string;
93
+ canEdit: boolean;
94
+ extendsKey: string;
95
+ };
96
+ iconSize: {
97
+ type: string;
98
+ label: string;
99
+ groupsName: string;
100
+ desc: string;
101
+ canEdit: boolean;
102
+ extendsKey: string;
103
+ };
104
+ };
105
+ groupsName: string;
106
+ icon: string;
107
+ title: string;
108
+ defaultValue: {}[];
109
+ tpl: string;
110
+ components: {
111
+ id: string;
112
+ label: string;
113
+ compName: string;
114
+ type: string;
115
+ compType: number;
116
+ compLib: string;
117
+ props: {
118
+ name: string;
119
+ formCode: string;
120
+ autoLineFeed: boolean;
121
+ failScroll: boolean;
122
+ errorFlag: boolean;
123
+ hiddenBorder: string;
124
+ itemHasStar: boolean;
125
+ };
126
+ style: {
127
+ width: string;
128
+ };
129
+ isContainer: boolean;
130
+ isBusiObjContainer: boolean;
131
+ cmdgroup: string[];
132
+ platform: string;
133
+ setEvents: never[];
134
+ description: string;
135
+ image: string;
136
+ groupsName: string;
137
+ icon: string;
138
+ isLabelDropBoxChild: boolean;
139
+ components: {
140
+ id: string;
141
+ label: string;
142
+ compName: string;
143
+ type: string;
144
+ compType: number;
145
+ compLib: string;
146
+ props: {
147
+ name: string;
148
+ placeholder: string;
149
+ status: string;
150
+ positionType: string;
151
+ titleIcon: string;
152
+ postfix: string;
153
+ postfixIconPosition: string;
154
+ title: string;
155
+ dformType: string;
156
+ placeholderList: string[];
157
+ alias: {
158
+ label: string;
159
+ };
160
+ icon: {
161
+ isIconFont: boolean;
162
+ theme: string;
163
+ type: string;
164
+ };
165
+ fieldProps: string;
166
+ };
167
+ style: {};
168
+ isContainer: boolean;
169
+ isBusiObjContainer: boolean;
170
+ cmdgroup: string[];
171
+ platform: string;
172
+ fieldProps: {
173
+ trigger: string;
174
+ valuePropName: string;
175
+ };
176
+ engineApi: string[];
177
+ setEvents: never[];
178
+ description: string;
179
+ image: string;
180
+ groupsName: string;
181
+ isAppChildForm: boolean;
182
+ isLabelDropBoxChild: boolean;
183
+ components: never[];
184
+ path: string[];
185
+ }[];
186
+ path: string[];
187
+ }[];
188
+ };