@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,425 @@
1
+ export var Card = {
2
+ type: 'Card',
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
+ bodyLineColor: {
81
+ type: 'color',
82
+ label: '内容分割线颜色',
83
+ groupsName: '边框'
84
+ },
85
+ footBgColor: {
86
+ type: 'color',
87
+ label: '底部背景颜色',
88
+ groupsName: '背景颜色'
89
+ },
90
+ borderColor: {
91
+ type: 'color',
92
+ label: '边框颜色',
93
+ groupsName: '边框'
94
+ },
95
+ borderRadius: {
96
+ type: 'px',
97
+ label: '边框圆角',
98
+ groupsName: '边框'
99
+ }
100
+ },
101
+ groupsName: '容器',
102
+ icon: 'icon-ico-comp-app-CardPlus',
103
+ title: '卡片',
104
+ defaultValue: [{
105
+ textColor: 'rgb(28, 36, 46)',
106
+ lineHeight: '100%',
107
+ fontSize: '16px',
108
+ fontWeight: '400',
109
+ backgroundColor: '#fff',
110
+ titleColor: '#47e',
111
+ lineColor: '#f0f0f0',
112
+ tagSize: '16px',
113
+ tagMargin: '4px',
114
+ arrowColor: 'rgba(28, 36, 46, 0.55)',
115
+ arrowSize: '12px',
116
+ bodyBgColor: '#fff',
117
+ bodyLineColor: '#f0f0f0',
118
+ footBgColor: '#fff',
119
+ borderColor: 'rgba(0,0,0,0)',
120
+ borderRadius: '4px'
121
+ }],
122
+ tpl: ".lcdp-h5-card-title{\n color: textColor;\n font-weight: fontWeight;\n font-size: fontSize;\n line-height: lineHeight;\n }\n .lcdp-h5-card-hStyle{\n background: titleColor;\n margin-right: tagMargin;\n position: static;\n width: tagSize;\n }\n .lcdp-h5-card-vStyle{\n height: tagSize;\n background: titleColor;\n margin-right: tagMargin;\n }\n .lcdp-h5-card-icon{\n width: tagSize;\n height: tagSize;\n }\n .lcdp-h5-card-icon svg{\n color: titleColor;\n width: tagSize;\n height: tagSize;\n }\n .lcdp-h5-card-icon{\n margin-right: tagMargin;\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-h5-card .adm-card-header:not(:last-child){\n border-color: lineColor !important;\n }\n .lcdp-h5-card .adm-card-header{\n border-color: lineColor !important;\n background: backgroundColor !important;\n }\n .lcdp-h5-card .adm-card-body{\n background: bodyBgColor;\n }\n .lcdp-card-footer-draw-box-border{\n border-color: bodyLineColor;\n background: footBgColor;\n }\n .lcdp-h5-card {\n border-radius: borderRadius;\n border: 1PX solid borderColor;\n }\n ",
123
+ components: [{
124
+ id: 'Card_4143673',
125
+ label: '卡片',
126
+ compName: 'Card',
127
+ type: 'Card',
128
+ compType: 0,
129
+ compLib: 'antd-mobile',
130
+ props: {
131
+ name: '卡片',
132
+ showHeader: true,
133
+ postfixIcon: {
134
+ type: 'right',
135
+ theme: 'outlined',
136
+ fontAddress: '',
137
+ isIconFont: false,
138
+ iconFileInfo: {}
139
+ },
140
+ iconColor: 'rgba(28, 36, 46, 0.55)',
141
+ postfixIconPosition: 'after',
142
+ postFixColor: 'rgba(28, 36, 46, 0.55)',
143
+ postFixFontSize: 16,
144
+ showContent: true,
145
+ showFooter: true,
146
+ status: '1',
147
+ cardType: '1',
148
+ title: '卡片标题',
149
+ headerType: 'vStyle',
150
+ headerBackground: '#ffffff',
151
+ iconPosition: 'after',
152
+ $$ISNEW: true
153
+ },
154
+ style: {
155
+ padding: '12px',
156
+ margin: '0px 0px 0px 0px',
157
+ width: '100%',
158
+ height: 'auto'
159
+ },
160
+ isContainer: true,
161
+ isBusiObjContainer: false,
162
+ cmdgroup: ['basic'],
163
+ platform: 'h5',
164
+ description: '',
165
+ image: '',
166
+ groupsName: '容器',
167
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
168
+ icon: 'Card',
169
+ setEvents: [],
170
+ isLabelDropBoxChild: false,
171
+ components: [{
172
+ id: 'CardBody_543055',
173
+ label: '卡片Body',
174
+ compName: 'CardBody',
175
+ type: 'CardBody',
176
+ compType: 0,
177
+ compLib: '@/components',
178
+ props: {
179
+ name: '卡片Body'
180
+ },
181
+ style: {},
182
+ isContainer: true,
183
+ isBusiObjContainer: false,
184
+ cmdgroup: ['basic'],
185
+ description: '',
186
+ image: '',
187
+ groupsName: '容器',
188
+ platform: 'h5',
189
+ icon: 'View',
190
+ deprecated: true,
191
+ setEvents: [],
192
+ isLabelDropBoxChild: false,
193
+ components: [],
194
+ path: ['769713', 'View_769713_1', 'Card_4143673']
195
+ }, {
196
+ id: 'CardFooter_8630507',
197
+ label: '卡片Footer',
198
+ compName: 'CardFooter',
199
+ type: 'CardFooter',
200
+ compType: 1,
201
+ compLib: '@/components',
202
+ props: {
203
+ name: '卡片Footer'
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: ['769713', 'View_769713_1', 'Card_4143673']
219
+ }],
220
+ path: ['769713', 'View_769713_1']
221
+ }, {
222
+ id: 'Card_4143673',
223
+ label: '卡片',
224
+ compName: 'Card',
225
+ type: 'Card',
226
+ compType: 0,
227
+ compLib: 'antd-mobile',
228
+ props: {
229
+ name: '卡片',
230
+ showHeader: true,
231
+ postfixIcon: {
232
+ type: 'right',
233
+ theme: 'outlined',
234
+ fontAddress: '',
235
+ isIconFont: false,
236
+ iconFileInfo: {}
237
+ },
238
+ iconColor: 'rgba(28, 36, 46, 0.55)',
239
+ postfixIconPosition: 'after',
240
+ postFixColor: 'rgba(28, 36, 46, 0.55)',
241
+ postFixFontSize: 16,
242
+ showContent: true,
243
+ showFooter: true,
244
+ status: '1',
245
+ cardType: '1',
246
+ title: '卡片标题',
247
+ headerType: 'hStyle',
248
+ headerBackground: '#ffffff',
249
+ iconPosition: 'after',
250
+ $$ISNEW: true
251
+ },
252
+ style: {
253
+ padding: '12px',
254
+ margin: '0px 0px 0px 0px',
255
+ width: '100%',
256
+ height: 'auto'
257
+ },
258
+ isContainer: true,
259
+ isBusiObjContainer: false,
260
+ cmdgroup: ['basic'],
261
+ platform: 'h5',
262
+ description: '',
263
+ image: '',
264
+ groupsName: '容器',
265
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
266
+ icon: 'Card',
267
+ setEvents: [],
268
+ isLabelDropBoxChild: false,
269
+ components: [{
270
+ id: 'CardBody_543055',
271
+ label: '卡片Body',
272
+ compName: 'CardBody',
273
+ type: 'CardBody',
274
+ compType: 0,
275
+ compLib: '@/components',
276
+ props: {
277
+ name: '卡片Body'
278
+ },
279
+ style: {},
280
+ isContainer: true,
281
+ isBusiObjContainer: false,
282
+ cmdgroup: ['basic'],
283
+ description: '',
284
+ image: '',
285
+ groupsName: '容器',
286
+ platform: 'h5',
287
+ icon: 'View',
288
+ deprecated: true,
289
+ setEvents: [],
290
+ isLabelDropBoxChild: false,
291
+ components: [],
292
+ path: ['769713', 'View_769713_1', 'Card_4143673']
293
+ }, {
294
+ id: 'CardFooter_8630507',
295
+ label: '卡片Footer',
296
+ compName: 'CardFooter',
297
+ type: 'CardFooter',
298
+ compType: 1,
299
+ compLib: '@/components',
300
+ props: {
301
+ name: '卡片Footer'
302
+ },
303
+ style: {},
304
+ isContainer: true,
305
+ isBusiObjContainer: false,
306
+ cmdgroup: ['basic'],
307
+ description: '',
308
+ image: '',
309
+ groupsName: '容器',
310
+ platform: 'h5',
311
+ icon: 'View',
312
+ deprecated: true,
313
+ setEvents: [],
314
+ isLabelDropBoxChild: false,
315
+ components: [],
316
+ path: ['769713', 'View_769713_1', 'Card_4143673']
317
+ }],
318
+ path: ['769713', 'View_769713_1']
319
+ }, {
320
+ id: 'Card_4143673',
321
+ label: '卡片',
322
+ compName: 'Card',
323
+ type: 'Card',
324
+ compType: 0,
325
+ compLib: 'antd-mobile',
326
+ props: {
327
+ name: '卡片',
328
+ showHeader: true,
329
+ postfixIcon: {
330
+ type: 'right',
331
+ theme: 'outlined',
332
+ fontAddress: '',
333
+ isIconFont: false,
334
+ iconFileInfo: {}
335
+ },
336
+ iconColor: 'rgba(28, 36, 46, 0.55)',
337
+ postfixIconPosition: 'after',
338
+ postFixColor: 'rgba(28, 36, 46, 0.55)',
339
+ postFixFontSize: 16,
340
+ showContent: true,
341
+ showFooter: true,
342
+ status: '1',
343
+ cardType: '1',
344
+ title: '卡片标题',
345
+ headerType: 'icon',
346
+ headerBackground: '#ffffff',
347
+ iconPosition: 'after',
348
+ $$ISNEW: true,
349
+ headerIcon: {
350
+ type: 'info-circle',
351
+ theme: 'outlined',
352
+ fontAddress: '',
353
+ isIconFont: false,
354
+ iconFileInfo: {}
355
+ }
356
+ },
357
+ style: {
358
+ padding: '12px',
359
+ margin: '0px 0px 0px 0px',
360
+ width: '100%',
361
+ height: 'auto'
362
+ },
363
+ isContainer: true,
364
+ isBusiObjContainer: false,
365
+ cmdgroup: ['basic'],
366
+ platform: 'h5',
367
+ description: '',
368
+ image: '',
369
+ groupsName: '容器',
370
+ engineApi: ['downloadFileByFileCode', 'getMaterialFile'],
371
+ icon: 'Card',
372
+ setEvents: [],
373
+ isLabelDropBoxChild: false,
374
+ components: [{
375
+ id: 'CardBody_543055',
376
+ label: '卡片Body',
377
+ compName: 'CardBody',
378
+ type: 'CardBody',
379
+ compType: 0,
380
+ compLib: '@/components',
381
+ props: {
382
+ name: '卡片Body'
383
+ },
384
+ style: {},
385
+ isContainer: true,
386
+ isBusiObjContainer: false,
387
+ cmdgroup: ['basic'],
388
+ description: '',
389
+ image: '',
390
+ groupsName: '容器',
391
+ platform: 'h5',
392
+ icon: 'View',
393
+ deprecated: true,
394
+ setEvents: [],
395
+ isLabelDropBoxChild: false,
396
+ components: [],
397
+ path: ['769713', 'View_769713_1', 'Card_4143673']
398
+ }, {
399
+ id: 'CardFooter_8630507',
400
+ label: '卡片Footer',
401
+ compName: 'CardFooter',
402
+ type: 'CardFooter',
403
+ compType: 1,
404
+ compLib: '@/components',
405
+ props: {
406
+ name: '卡片Footer'
407
+ },
408
+ style: {},
409
+ isContainer: true,
410
+ isBusiObjContainer: false,
411
+ cmdgroup: ['basic'],
412
+ description: '',
413
+ image: '',
414
+ groupsName: '容器',
415
+ platform: 'h5',
416
+ icon: 'View',
417
+ deprecated: true,
418
+ setEvents: [],
419
+ isLabelDropBoxChild: false,
420
+ components: [],
421
+ path: ['769713', 'View_769713_1', 'Card_4143673']
422
+ }],
423
+ path: ['769713', 'View_769713_1']
424
+ }]
425
+ };
@@ -0,0 +1,196 @@
1
+ export declare const DAddressPicker: {
2
+ type: string;
3
+ variable: {
4
+ iconColor: {
5
+ type: string;
6
+ label: string;
7
+ groupsName: string;
8
+ desc: string;
9
+ canEdit: boolean;
10
+ extendsKey: string;
11
+ };
12
+ iconSize: {
13
+ type: string;
14
+ label: string;
15
+ groupsName: string;
16
+ desc: string;
17
+ canEdit: boolean;
18
+ extendsKey: string;
19
+ };
20
+ labelTextColor: {
21
+ type: string;
22
+ label: string;
23
+ groupsName: string;
24
+ desc: string;
25
+ canEdit: boolean;
26
+ extendsKey: string;
27
+ };
28
+ labelLineHeight: {
29
+ type: string;
30
+ label: string;
31
+ groupsName: string;
32
+ desc: string;
33
+ canEdit: boolean;
34
+ extendsKey: string;
35
+ };
36
+ labelFontSize: {
37
+ type: string;
38
+ label: string;
39
+ groupsName: string;
40
+ desc: string;
41
+ canEdit: boolean;
42
+ extendsKey: string;
43
+ };
44
+ labelFontWeight: {
45
+ type: string;
46
+ label: string;
47
+ groupsName: string;
48
+ options: {
49
+ title: string;
50
+ value: string;
51
+ }[];
52
+ desc: string;
53
+ canEdit: boolean;
54
+ extendsKey: string;
55
+ };
56
+ textColor: {
57
+ type: string;
58
+ label: string;
59
+ groupsName: string;
60
+ desc: string;
61
+ canEdit: boolean;
62
+ extendsKey: string;
63
+ };
64
+ fontSize: {
65
+ type: string;
66
+ label: string;
67
+ groupsName: string;
68
+ desc: string;
69
+ canEdit: boolean;
70
+ extendsKey: string;
71
+ };
72
+ lineHeight: {
73
+ type: string;
74
+ label: string;
75
+ groupsName: string;
76
+ desc: string;
77
+ canEdit: boolean;
78
+ extendsKey: string;
79
+ };
80
+ fontWeight: {
81
+ type: string;
82
+ label: string;
83
+ groupsName: string;
84
+ options: {
85
+ title: string;
86
+ value: string;
87
+ }[];
88
+ desc: string;
89
+ canEdit: boolean;
90
+ extendsKey: string;
91
+ };
92
+ paddingValue: {
93
+ type: string;
94
+ label: string;
95
+ groupsName: string;
96
+ desc: string;
97
+ canEdit: boolean;
98
+ extendsKey: string;
99
+ };
100
+ headTextAlign: {
101
+ type: string;
102
+ label: string;
103
+ groupsName: string;
104
+ desc: string;
105
+ canEdit: boolean;
106
+ extendsKey: string;
107
+ options: {
108
+ title: string;
109
+ value: string;
110
+ }[];
111
+ };
112
+ };
113
+ groupsName: string;
114
+ icon: string;
115
+ title: string;
116
+ defaultValue: {}[];
117
+ tpl: string;
118
+ components: {
119
+ id: string;
120
+ label: string;
121
+ compName: string;
122
+ type: string;
123
+ compType: number;
124
+ compLib: string;
125
+ props: {
126
+ name: string;
127
+ formCode: string;
128
+ autoLineFeed: boolean;
129
+ failScroll: boolean;
130
+ errorFlag: boolean;
131
+ hiddenBorder: string;
132
+ itemHasStar: boolean;
133
+ };
134
+ style: {
135
+ width: string;
136
+ };
137
+ isContainer: boolean;
138
+ isBusiObjContainer: boolean;
139
+ cmdgroup: string[];
140
+ platform: string;
141
+ setEvents: never[];
142
+ description: string;
143
+ image: string;
144
+ groupsName: string;
145
+ icon: string;
146
+ isLabelDropBoxChild: boolean;
147
+ components: {
148
+ id: string;
149
+ label: string;
150
+ compName: string;
151
+ type: string;
152
+ compType: number;
153
+ compLib: string;
154
+ props: {
155
+ name: string;
156
+ placeholder: string;
157
+ status: string;
158
+ positionType: string;
159
+ titleIcon: string;
160
+ postfix: string;
161
+ postfixIconPosition: string;
162
+ title: string;
163
+ dformType: string;
164
+ placeholderList: string[];
165
+ alias: {
166
+ label: string;
167
+ };
168
+ icon: {
169
+ isIconFont: boolean;
170
+ theme: string;
171
+ type: string;
172
+ };
173
+ fieldProps: string;
174
+ };
175
+ style: {};
176
+ isContainer: boolean;
177
+ isBusiObjContainer: boolean;
178
+ cmdgroup: string[];
179
+ platform: string;
180
+ fieldProps: {
181
+ trigger: string;
182
+ valuePropName: string;
183
+ };
184
+ engineApi: string[];
185
+ setEvents: never[];
186
+ description: string;
187
+ image: string;
188
+ groupsName: string;
189
+ isAppChildForm: boolean;
190
+ isLabelDropBoxChild: boolean;
191
+ components: never[];
192
+ path: string[];
193
+ }[];
194
+ path: string[];
195
+ }[];
196
+ };