@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,1597 @@
1
+ export declare const DForm: {
2
+ type: string;
3
+ hasPrefixClass: boolean;
4
+ variable: {
5
+ backgroundColor: {
6
+ type: string;
7
+ label: string;
8
+ groupsName: string;
9
+ };
10
+ labelTextColor: {
11
+ type: string;
12
+ label: string;
13
+ groupsName: string;
14
+ desc: string;
15
+ followTheme: string;
16
+ };
17
+ labelFontSize: {
18
+ type: string;
19
+ label: string;
20
+ groupsName: string;
21
+ desc: string;
22
+ };
23
+ labelLineHeight: {
24
+ type: string;
25
+ label: string;
26
+ groupsName: string;
27
+ desc: string;
28
+ options: {
29
+ label: string;
30
+ value: string;
31
+ }[];
32
+ };
33
+ labelFontWeight: {
34
+ type: string;
35
+ label: string;
36
+ groupsName: string;
37
+ options: {
38
+ title: string;
39
+ value: string;
40
+ }[];
41
+ desc: string;
42
+ };
43
+ textColor: {
44
+ type: string;
45
+ label: string;
46
+ groupsName: string;
47
+ desc: string;
48
+ followTheme: string;
49
+ };
50
+ fontSize: {
51
+ type: string;
52
+ label: string;
53
+ groupsName: string;
54
+ desc: string;
55
+ };
56
+ lineHeight: {
57
+ type: string;
58
+ label: string;
59
+ groupsName: string;
60
+ desc: string;
61
+ options: {
62
+ label: string;
63
+ value: string;
64
+ }[];
65
+ };
66
+ fontWeight: {
67
+ type: string;
68
+ label: string;
69
+ groupsName: string;
70
+ options: {
71
+ title: string;
72
+ value: string;
73
+ }[];
74
+ desc: string;
75
+ };
76
+ headTextAlign: {
77
+ type: string;
78
+ label: string;
79
+ groupsName: string;
80
+ desc: string;
81
+ options: {
82
+ title: string;
83
+ value: string;
84
+ }[];
85
+ };
86
+ paddingValue: {
87
+ type: string;
88
+ label: string;
89
+ groupsName: string;
90
+ desc: string;
91
+ };
92
+ iconColor: {
93
+ type: string;
94
+ label: string;
95
+ groupsName: string;
96
+ desc: string;
97
+ followTheme: string;
98
+ };
99
+ iconSize: {
100
+ type: string;
101
+ label: string;
102
+ groupsName: string;
103
+ desc: string;
104
+ };
105
+ };
106
+ groupsName: string;
107
+ icon: string;
108
+ title: string;
109
+ defaultValue: {
110
+ backgroundColor: string;
111
+ labelTextColor: string;
112
+ labelLineHeight: string;
113
+ labelFontSize: string;
114
+ labelFontWeight: string;
115
+ textColor: string;
116
+ fontSize: string;
117
+ lineHeight: string;
118
+ fontWeight: string;
119
+ paddingValue: string;
120
+ headTextAlign: string;
121
+ iconColor: string;
122
+ iconSize: string;
123
+ }[];
124
+ followThemes: {
125
+ '@color-text-base': never[];
126
+ '@border-color-base': never[];
127
+ };
128
+ tpl: string;
129
+ itemCustomTpl: string;
130
+ components: {
131
+ id: string;
132
+ label: string;
133
+ compName: string;
134
+ type: string;
135
+ compType: number;
136
+ compLib: string;
137
+ props: {
138
+ name: string;
139
+ formCode: string;
140
+ autoLineFeed: boolean;
141
+ failScroll: boolean;
142
+ errorFlag: boolean;
143
+ hiddenBorder: string;
144
+ itemHasStar: boolean;
145
+ };
146
+ style: {
147
+ width: string;
148
+ };
149
+ isContainer: boolean;
150
+ isBusiObjContainer: boolean;
151
+ cmdgroup: string[];
152
+ platform: string;
153
+ setEvents: never[];
154
+ description: string;
155
+ image: string;
156
+ groupsName: string;
157
+ icon: string;
158
+ isLabelDropBoxChild: boolean;
159
+ components: ({
160
+ id: string;
161
+ label: string;
162
+ compName: string;
163
+ type: string;
164
+ compType: number;
165
+ compLib: string;
166
+ props: {
167
+ name: string;
168
+ rows: number;
169
+ dformType: string;
170
+ title: string;
171
+ placeholder: string;
172
+ positionType: string;
173
+ status: string;
174
+ fieldProps: string;
175
+ titleIcon?: undefined;
176
+ itemType?: undefined;
177
+ chunk?: undefined;
178
+ canSelectAll?: undefined;
179
+ options?: undefined;
180
+ length?: undefined;
181
+ limitSize?: undefined;
182
+ isFilespreview?: undefined;
183
+ selectable?: undefined;
184
+ disableDelete?: undefined;
185
+ uploadType?: undefined;
186
+ maxLength?: undefined;
187
+ capture?: undefined;
188
+ hasTitleIcon?: undefined;
189
+ listStyle?: undefined;
190
+ isWatermark?: undefined;
191
+ filesDownloaded?: undefined;
192
+ alias?: undefined;
193
+ deleteBtn?: undefined;
194
+ downloadBtn?: undefined;
195
+ previewBtn?: undefined;
196
+ numberLimit?: undefined;
197
+ singleFileMaxSize?: undefined;
198
+ btnIcon?: undefined;
199
+ uploadStyle?: undefined;
200
+ uploadBtnStyle?: undefined;
201
+ showBtnIcon?: undefined;
202
+ iconPosition?: undefined;
203
+ btnText?: undefined;
204
+ postfix?: undefined;
205
+ postfixIconPosition?: undefined;
206
+ data?: undefined;
207
+ icon?: undefined;
208
+ openText?: undefined;
209
+ closeText?: undefined;
210
+ openIcon?: undefined;
211
+ closeIcon?: undefined;
212
+ defaultValue?: undefined;
213
+ switchType?: undefined;
214
+ separatorStr?: undefined;
215
+ selectType?: undefined;
216
+ optionsLayout?: undefined;
217
+ formatter?: undefined;
218
+ modeType?: undefined;
219
+ chooseType?: undefined;
220
+ replaceName?: undefined;
221
+ placeholderList?: undefined;
222
+ valueType?: undefined;
223
+ filter?: undefined;
224
+ clear?: undefined;
225
+ inputType?: undefined;
226
+ formatting?: undefined;
227
+ radioType?: undefined;
228
+ radioPosition?: undefined;
229
+ selectedType?: undefined;
230
+ };
231
+ style: {
232
+ inputContent: string;
233
+ lineHeight?: undefined;
234
+ inputBorderRadius?: undefined;
235
+ };
236
+ isContainer: boolean;
237
+ isBusiObjContainer: boolean;
238
+ cmdgroup: string[];
239
+ platform: string;
240
+ setEvents: never[];
241
+ description: string;
242
+ image: string;
243
+ groupsName: string;
244
+ fieldProps: {
245
+ trigger: string;
246
+ valuePropName: string;
247
+ };
248
+ engineApi: string[];
249
+ isAppChildForm: boolean;
250
+ isLabelDropBoxChild: boolean;
251
+ components: never[];
252
+ path: string[];
253
+ icon?: undefined;
254
+ } | {
255
+ id: string;
256
+ label: string;
257
+ compName: string;
258
+ type: string;
259
+ compType: number;
260
+ compLib: string;
261
+ props: {
262
+ name: string;
263
+ positionType: string;
264
+ titleIcon: string;
265
+ itemType: string;
266
+ chunk: number;
267
+ canSelectAll: boolean;
268
+ title: string;
269
+ dformType: string;
270
+ status: string;
271
+ options: {
272
+ label: string;
273
+ value: string;
274
+ id: string;
275
+ }[];
276
+ fieldProps: string;
277
+ rows?: undefined;
278
+ placeholder?: undefined;
279
+ length?: undefined;
280
+ limitSize?: undefined;
281
+ isFilespreview?: undefined;
282
+ selectable?: undefined;
283
+ disableDelete?: undefined;
284
+ uploadType?: undefined;
285
+ maxLength?: undefined;
286
+ capture?: undefined;
287
+ hasTitleIcon?: undefined;
288
+ listStyle?: undefined;
289
+ isWatermark?: undefined;
290
+ filesDownloaded?: undefined;
291
+ alias?: undefined;
292
+ deleteBtn?: undefined;
293
+ downloadBtn?: undefined;
294
+ previewBtn?: undefined;
295
+ numberLimit?: undefined;
296
+ singleFileMaxSize?: undefined;
297
+ btnIcon?: undefined;
298
+ uploadStyle?: undefined;
299
+ uploadBtnStyle?: undefined;
300
+ showBtnIcon?: undefined;
301
+ iconPosition?: undefined;
302
+ btnText?: undefined;
303
+ postfix?: undefined;
304
+ postfixIconPosition?: undefined;
305
+ data?: undefined;
306
+ icon?: undefined;
307
+ openText?: undefined;
308
+ closeText?: undefined;
309
+ openIcon?: undefined;
310
+ closeIcon?: undefined;
311
+ defaultValue?: undefined;
312
+ switchType?: undefined;
313
+ separatorStr?: undefined;
314
+ selectType?: undefined;
315
+ optionsLayout?: undefined;
316
+ formatter?: undefined;
317
+ modeType?: undefined;
318
+ chooseType?: undefined;
319
+ replaceName?: undefined;
320
+ placeholderList?: undefined;
321
+ valueType?: undefined;
322
+ filter?: undefined;
323
+ clear?: undefined;
324
+ inputType?: undefined;
325
+ formatting?: undefined;
326
+ radioType?: undefined;
327
+ radioPosition?: undefined;
328
+ selectedType?: undefined;
329
+ };
330
+ style: {
331
+ lineHeight: string;
332
+ inputContent?: undefined;
333
+ inputBorderRadius?: undefined;
334
+ };
335
+ isContainer: boolean;
336
+ isBusiObjContainer: boolean;
337
+ cmdgroup: string[];
338
+ platform: string;
339
+ fieldProps: {
340
+ trigger: string;
341
+ valuePropName: string;
342
+ };
343
+ engineApi: string[];
344
+ setEvents: never[];
345
+ description: string;
346
+ image: string;
347
+ groupsName: string;
348
+ isAppChildForm: boolean;
349
+ isLabelDropBoxChild: boolean;
350
+ components: never[];
351
+ path: string[];
352
+ icon?: undefined;
353
+ } | {
354
+ id: string;
355
+ label: string;
356
+ compName: string;
357
+ type: string;
358
+ compType: number;
359
+ compLib: string;
360
+ props: {
361
+ name: string;
362
+ length: number;
363
+ limitSize: string;
364
+ isFilespreview: boolean;
365
+ selectable: boolean;
366
+ disableDelete: boolean;
367
+ titleIcon: string;
368
+ uploadType: string;
369
+ dformType: string;
370
+ title: string;
371
+ maxLength: number;
372
+ status: string;
373
+ capture: string;
374
+ fieldProps: string;
375
+ rows?: undefined;
376
+ placeholder?: undefined;
377
+ positionType?: undefined;
378
+ itemType?: undefined;
379
+ chunk?: undefined;
380
+ canSelectAll?: undefined;
381
+ options?: undefined;
382
+ hasTitleIcon?: undefined;
383
+ listStyle?: undefined;
384
+ isWatermark?: undefined;
385
+ filesDownloaded?: undefined;
386
+ alias?: undefined;
387
+ deleteBtn?: undefined;
388
+ downloadBtn?: undefined;
389
+ previewBtn?: undefined;
390
+ numberLimit?: undefined;
391
+ singleFileMaxSize?: undefined;
392
+ btnIcon?: undefined;
393
+ uploadStyle?: undefined;
394
+ uploadBtnStyle?: undefined;
395
+ showBtnIcon?: undefined;
396
+ iconPosition?: undefined;
397
+ btnText?: undefined;
398
+ postfix?: undefined;
399
+ postfixIconPosition?: undefined;
400
+ data?: undefined;
401
+ icon?: undefined;
402
+ openText?: undefined;
403
+ closeText?: undefined;
404
+ openIcon?: undefined;
405
+ closeIcon?: undefined;
406
+ defaultValue?: undefined;
407
+ switchType?: undefined;
408
+ separatorStr?: undefined;
409
+ selectType?: undefined;
410
+ optionsLayout?: undefined;
411
+ formatter?: undefined;
412
+ modeType?: undefined;
413
+ chooseType?: undefined;
414
+ replaceName?: undefined;
415
+ placeholderList?: undefined;
416
+ valueType?: undefined;
417
+ filter?: undefined;
418
+ clear?: undefined;
419
+ inputType?: undefined;
420
+ formatting?: undefined;
421
+ radioType?: undefined;
422
+ radioPosition?: undefined;
423
+ selectedType?: undefined;
424
+ };
425
+ style: {
426
+ inputContent?: undefined;
427
+ lineHeight?: undefined;
428
+ inputBorderRadius?: undefined;
429
+ };
430
+ isContainer: boolean;
431
+ isBusiObjContainer: boolean;
432
+ cmdgroup: string[];
433
+ platform: string;
434
+ setEvents: never[];
435
+ description: string;
436
+ image: string;
437
+ groupsName: string;
438
+ fieldProps: {
439
+ trigger: string;
440
+ valuePropName: string;
441
+ };
442
+ engineApi: string[];
443
+ isAppChildForm: boolean;
444
+ isLabelDropBoxChild: boolean;
445
+ components: never[];
446
+ path: string[];
447
+ icon?: undefined;
448
+ } | {
449
+ id: string;
450
+ label: string;
451
+ compName: string;
452
+ type: string;
453
+ compType: number;
454
+ compLib: string;
455
+ props: {
456
+ name: string;
457
+ hasTitleIcon: string;
458
+ listStyle: string;
459
+ isWatermark: boolean;
460
+ dformType: string;
461
+ title: string;
462
+ placeholder: string;
463
+ positionType: string;
464
+ status: string;
465
+ filesDownloaded: boolean;
466
+ alias: {
467
+ title: string;
468
+ id: string;
469
+ label?: undefined;
470
+ };
471
+ deleteBtn: {
472
+ btnText: string;
473
+ checked: boolean;
474
+ icon: {
475
+ type: string;
476
+ theme: string;
477
+ fontAddress: string;
478
+ isIconFont: boolean;
479
+ iconFileInfo: {};
480
+ };
481
+ };
482
+ downloadBtn: {
483
+ btnText: string;
484
+ checked: boolean;
485
+ icon: {
486
+ type: string;
487
+ theme: string;
488
+ fontAddress: string;
489
+ isIconFont: boolean;
490
+ iconFileInfo: {};
491
+ };
492
+ };
493
+ previewBtn: {
494
+ btnText: string;
495
+ checked: boolean;
496
+ icon: {
497
+ type: string;
498
+ theme: string;
499
+ fontAddress: string;
500
+ isIconFont: boolean;
501
+ iconFileInfo: {};
502
+ };
503
+ };
504
+ numberLimit: number;
505
+ singleFileMaxSize: string;
506
+ btnIcon: {
507
+ type: string;
508
+ theme: string;
509
+ fontAddress: string;
510
+ isIconFont: boolean;
511
+ iconFileInfo: {};
512
+ };
513
+ uploadStyle: string;
514
+ uploadBtnStyle: string;
515
+ showBtnIcon: boolean;
516
+ iconPosition: string;
517
+ btnText: string;
518
+ fieldProps: string;
519
+ rows?: undefined;
520
+ titleIcon?: undefined;
521
+ itemType?: undefined;
522
+ chunk?: undefined;
523
+ canSelectAll?: undefined;
524
+ options?: undefined;
525
+ length?: undefined;
526
+ limitSize?: undefined;
527
+ isFilespreview?: undefined;
528
+ selectable?: undefined;
529
+ disableDelete?: undefined;
530
+ uploadType?: undefined;
531
+ maxLength?: undefined;
532
+ capture?: undefined;
533
+ postfix?: undefined;
534
+ postfixIconPosition?: undefined;
535
+ data?: undefined;
536
+ icon?: undefined;
537
+ openText?: undefined;
538
+ closeText?: undefined;
539
+ openIcon?: undefined;
540
+ closeIcon?: undefined;
541
+ defaultValue?: undefined;
542
+ switchType?: undefined;
543
+ separatorStr?: undefined;
544
+ selectType?: undefined;
545
+ optionsLayout?: undefined;
546
+ formatter?: undefined;
547
+ modeType?: undefined;
548
+ chooseType?: undefined;
549
+ replaceName?: undefined;
550
+ placeholderList?: undefined;
551
+ valueType?: undefined;
552
+ filter?: undefined;
553
+ clear?: undefined;
554
+ inputType?: undefined;
555
+ formatting?: undefined;
556
+ radioType?: undefined;
557
+ radioPosition?: undefined;
558
+ selectedType?: undefined;
559
+ };
560
+ style: {
561
+ inputContent?: undefined;
562
+ lineHeight?: undefined;
563
+ inputBorderRadius?: undefined;
564
+ };
565
+ isContainer: boolean;
566
+ isBusiObjContainer: boolean;
567
+ cmdgroup: string[];
568
+ platform: string;
569
+ fieldProps: {
570
+ trigger: string;
571
+ valuePropName: string;
572
+ };
573
+ engineApi: string[];
574
+ setEvents: never[];
575
+ description: string;
576
+ image: string;
577
+ groupsName: string;
578
+ isAppChildForm: boolean;
579
+ isLabelDropBoxChild: boolean;
580
+ components: never[];
581
+ path: string[];
582
+ icon?: undefined;
583
+ } | {
584
+ id: string;
585
+ label: string;
586
+ compName: string;
587
+ type: string;
588
+ compType: number;
589
+ compLib: string;
590
+ props: {
591
+ name: string;
592
+ titleIcon: string;
593
+ postfix: string;
594
+ postfixIconPosition: string;
595
+ dformType: string;
596
+ data: never[];
597
+ title: string;
598
+ placeholder: string;
599
+ positionType: string;
600
+ status: string;
601
+ icon: {
602
+ isIconFont: boolean;
603
+ theme: string;
604
+ type: string;
605
+ };
606
+ fieldProps: string;
607
+ options: {
608
+ label: string;
609
+ key: string;
610
+ $$isParent: boolean;
611
+ title: string;
612
+ children: {
613
+ label: string;
614
+ key: string;
615
+ title: string;
616
+ value: string;
617
+ }[];
618
+ value: string;
619
+ }[];
620
+ rows?: undefined;
621
+ itemType?: undefined;
622
+ chunk?: undefined;
623
+ canSelectAll?: undefined;
624
+ length?: undefined;
625
+ limitSize?: undefined;
626
+ isFilespreview?: undefined;
627
+ selectable?: undefined;
628
+ disableDelete?: undefined;
629
+ uploadType?: undefined;
630
+ maxLength?: undefined;
631
+ capture?: undefined;
632
+ hasTitleIcon?: undefined;
633
+ listStyle?: undefined;
634
+ isWatermark?: undefined;
635
+ filesDownloaded?: undefined;
636
+ alias?: undefined;
637
+ deleteBtn?: undefined;
638
+ downloadBtn?: undefined;
639
+ previewBtn?: undefined;
640
+ numberLimit?: undefined;
641
+ singleFileMaxSize?: undefined;
642
+ btnIcon?: undefined;
643
+ uploadStyle?: undefined;
644
+ uploadBtnStyle?: undefined;
645
+ showBtnIcon?: undefined;
646
+ iconPosition?: undefined;
647
+ btnText?: undefined;
648
+ openText?: undefined;
649
+ closeText?: undefined;
650
+ openIcon?: undefined;
651
+ closeIcon?: undefined;
652
+ defaultValue?: undefined;
653
+ switchType?: undefined;
654
+ separatorStr?: undefined;
655
+ selectType?: undefined;
656
+ optionsLayout?: undefined;
657
+ formatter?: undefined;
658
+ modeType?: undefined;
659
+ chooseType?: undefined;
660
+ replaceName?: undefined;
661
+ placeholderList?: undefined;
662
+ valueType?: undefined;
663
+ filter?: undefined;
664
+ clear?: undefined;
665
+ inputType?: undefined;
666
+ formatting?: undefined;
667
+ radioType?: undefined;
668
+ radioPosition?: undefined;
669
+ selectedType?: undefined;
670
+ };
671
+ style: {
672
+ inputContent?: undefined;
673
+ lineHeight?: undefined;
674
+ inputBorderRadius?: undefined;
675
+ };
676
+ isContainer: boolean;
677
+ isBusiObjContainer: boolean;
678
+ cmdgroup: string[];
679
+ platform: string;
680
+ engineApi: string[];
681
+ setEvents: never[];
682
+ description: string;
683
+ image: string;
684
+ groupsName: string;
685
+ fieldProps: {
686
+ trigger: string;
687
+ valuePropName: string;
688
+ };
689
+ isAppChildForm: boolean;
690
+ isLabelDropBoxChild: boolean;
691
+ components: never[];
692
+ path: string[];
693
+ icon?: undefined;
694
+ } | {
695
+ id: string;
696
+ label: string;
697
+ compName: string;
698
+ type: string;
699
+ compType: number;
700
+ compLib: string;
701
+ props: {
702
+ name: string;
703
+ openText: string;
704
+ closeText: string;
705
+ openIcon: {
706
+ isIconFont: boolean;
707
+ theme: string;
708
+ type: string;
709
+ };
710
+ closeIcon: {
711
+ isIconFont: boolean;
712
+ theme: string;
713
+ type: string;
714
+ };
715
+ dformType: string;
716
+ title: string;
717
+ placeholder: string;
718
+ defaultValue: boolean;
719
+ status: string;
720
+ switchType: string;
721
+ fieldProps: string;
722
+ rows?: undefined;
723
+ positionType?: undefined;
724
+ titleIcon?: undefined;
725
+ itemType?: undefined;
726
+ chunk?: undefined;
727
+ canSelectAll?: undefined;
728
+ options?: undefined;
729
+ length?: undefined;
730
+ limitSize?: undefined;
731
+ isFilespreview?: undefined;
732
+ selectable?: undefined;
733
+ disableDelete?: undefined;
734
+ uploadType?: undefined;
735
+ maxLength?: undefined;
736
+ capture?: undefined;
737
+ hasTitleIcon?: undefined;
738
+ listStyle?: undefined;
739
+ isWatermark?: undefined;
740
+ filesDownloaded?: undefined;
741
+ alias?: undefined;
742
+ deleteBtn?: undefined;
743
+ downloadBtn?: undefined;
744
+ previewBtn?: undefined;
745
+ numberLimit?: undefined;
746
+ singleFileMaxSize?: undefined;
747
+ btnIcon?: undefined;
748
+ uploadStyle?: undefined;
749
+ uploadBtnStyle?: undefined;
750
+ showBtnIcon?: undefined;
751
+ iconPosition?: undefined;
752
+ btnText?: undefined;
753
+ postfix?: undefined;
754
+ postfixIconPosition?: undefined;
755
+ data?: undefined;
756
+ icon?: undefined;
757
+ separatorStr?: undefined;
758
+ selectType?: undefined;
759
+ optionsLayout?: undefined;
760
+ formatter?: undefined;
761
+ modeType?: undefined;
762
+ chooseType?: undefined;
763
+ replaceName?: undefined;
764
+ placeholderList?: undefined;
765
+ valueType?: undefined;
766
+ filter?: undefined;
767
+ clear?: undefined;
768
+ inputType?: undefined;
769
+ formatting?: undefined;
770
+ radioType?: undefined;
771
+ radioPosition?: undefined;
772
+ selectedType?: undefined;
773
+ };
774
+ style: {
775
+ inputContent?: undefined;
776
+ lineHeight?: undefined;
777
+ inputBorderRadius?: undefined;
778
+ };
779
+ isContainer: boolean;
780
+ isBusiObjContainer: boolean;
781
+ cmdgroup: string[];
782
+ platform: string;
783
+ fieldProps: {
784
+ trigger: string;
785
+ valuePropName: string;
786
+ };
787
+ engineApi: string[];
788
+ setEvents: never[];
789
+ description: string;
790
+ image: string;
791
+ groupsName: string;
792
+ isAppChildForm: boolean;
793
+ isLabelDropBoxChild: boolean;
794
+ components: never[];
795
+ path: string[];
796
+ icon?: undefined;
797
+ } | {
798
+ id: string;
799
+ label: string;
800
+ compName: string;
801
+ type: string;
802
+ compType: number;
803
+ compLib: string;
804
+ props: {
805
+ name: string;
806
+ separatorStr: string;
807
+ positionType: string;
808
+ hasTitleIcon: string;
809
+ postfix: string;
810
+ postfixIconPosition: string;
811
+ title: string;
812
+ dformType: string;
813
+ status: string;
814
+ selectType: string;
815
+ optionsLayout: string;
816
+ formatter: string;
817
+ modeType: string;
818
+ icon: {
819
+ isIconFont: boolean;
820
+ theme: string;
821
+ type: string;
822
+ };
823
+ fieldProps: string;
824
+ rows?: undefined;
825
+ placeholder?: undefined;
826
+ titleIcon?: undefined;
827
+ itemType?: undefined;
828
+ chunk?: undefined;
829
+ canSelectAll?: undefined;
830
+ options?: undefined;
831
+ length?: undefined;
832
+ limitSize?: undefined;
833
+ isFilespreview?: undefined;
834
+ selectable?: undefined;
835
+ disableDelete?: undefined;
836
+ uploadType?: undefined;
837
+ maxLength?: undefined;
838
+ capture?: undefined;
839
+ listStyle?: undefined;
840
+ isWatermark?: undefined;
841
+ filesDownloaded?: undefined;
842
+ alias?: undefined;
843
+ deleteBtn?: undefined;
844
+ downloadBtn?: undefined;
845
+ previewBtn?: undefined;
846
+ numberLimit?: undefined;
847
+ singleFileMaxSize?: undefined;
848
+ btnIcon?: undefined;
849
+ uploadStyle?: undefined;
850
+ uploadBtnStyle?: undefined;
851
+ showBtnIcon?: undefined;
852
+ iconPosition?: undefined;
853
+ btnText?: undefined;
854
+ data?: undefined;
855
+ openText?: undefined;
856
+ closeText?: undefined;
857
+ openIcon?: undefined;
858
+ closeIcon?: undefined;
859
+ defaultValue?: undefined;
860
+ switchType?: undefined;
861
+ chooseType?: undefined;
862
+ replaceName?: undefined;
863
+ placeholderList?: undefined;
864
+ valueType?: undefined;
865
+ filter?: undefined;
866
+ clear?: undefined;
867
+ inputType?: undefined;
868
+ formatting?: undefined;
869
+ radioType?: undefined;
870
+ radioPosition?: undefined;
871
+ selectedType?: undefined;
872
+ };
873
+ style: {
874
+ inputContent: string;
875
+ lineHeight?: undefined;
876
+ inputBorderRadius?: undefined;
877
+ };
878
+ isContainer: boolean;
879
+ isBusiObjContainer: boolean;
880
+ cmdgroup: string[];
881
+ platform: string;
882
+ setEvents: never[];
883
+ description: string;
884
+ image: string;
885
+ groupsName: string;
886
+ isAppChildForm: boolean;
887
+ isLabelDropBoxChild: boolean;
888
+ components: never[];
889
+ path: string[];
890
+ fieldProps?: undefined;
891
+ engineApi?: undefined;
892
+ icon?: undefined;
893
+ } | {
894
+ id: string;
895
+ label: string;
896
+ compName: string;
897
+ type: string;
898
+ compType: number;
899
+ compLib: string;
900
+ props: {
901
+ name: string;
902
+ titleIcon: string;
903
+ postfix: string;
904
+ postfixIconPosition: string;
905
+ title: string;
906
+ dformType: string;
907
+ positionType: string;
908
+ status: string;
909
+ modeType: string;
910
+ chooseType: string;
911
+ replaceName: {
912
+ 年: string;
913
+ 月: string;
914
+ 日: string;
915
+ };
916
+ icon: {
917
+ isIconFont: boolean;
918
+ theme: string;
919
+ type: string;
920
+ };
921
+ formatter: string;
922
+ fieldProps: string;
923
+ rows?: undefined;
924
+ placeholder?: undefined;
925
+ itemType?: undefined;
926
+ chunk?: undefined;
927
+ canSelectAll?: undefined;
928
+ options?: undefined;
929
+ length?: undefined;
930
+ limitSize?: undefined;
931
+ isFilespreview?: undefined;
932
+ selectable?: undefined;
933
+ disableDelete?: undefined;
934
+ uploadType?: undefined;
935
+ maxLength?: undefined;
936
+ capture?: undefined;
937
+ hasTitleIcon?: undefined;
938
+ listStyle?: undefined;
939
+ isWatermark?: undefined;
940
+ filesDownloaded?: undefined;
941
+ alias?: undefined;
942
+ deleteBtn?: undefined;
943
+ downloadBtn?: undefined;
944
+ previewBtn?: undefined;
945
+ numberLimit?: undefined;
946
+ singleFileMaxSize?: undefined;
947
+ btnIcon?: undefined;
948
+ uploadStyle?: undefined;
949
+ uploadBtnStyle?: undefined;
950
+ showBtnIcon?: undefined;
951
+ iconPosition?: undefined;
952
+ btnText?: undefined;
953
+ data?: undefined;
954
+ openText?: undefined;
955
+ closeText?: undefined;
956
+ openIcon?: undefined;
957
+ closeIcon?: undefined;
958
+ defaultValue?: undefined;
959
+ switchType?: undefined;
960
+ separatorStr?: undefined;
961
+ selectType?: undefined;
962
+ optionsLayout?: undefined;
963
+ placeholderList?: undefined;
964
+ valueType?: undefined;
965
+ filter?: undefined;
966
+ clear?: undefined;
967
+ inputType?: undefined;
968
+ formatting?: undefined;
969
+ radioType?: undefined;
970
+ radioPosition?: undefined;
971
+ selectedType?: undefined;
972
+ };
973
+ style: {
974
+ inputContent?: undefined;
975
+ lineHeight?: undefined;
976
+ inputBorderRadius?: undefined;
977
+ };
978
+ isContainer: boolean;
979
+ isBusiObjContainer: boolean;
980
+ cmdgroup: string[];
981
+ platform: string;
982
+ fieldProps: {
983
+ trigger: string;
984
+ valuePropName: string;
985
+ };
986
+ engineApi: string[];
987
+ setEvents: never[];
988
+ description: string;
989
+ image: string;
990
+ groupsName: string;
991
+ isAppChildForm: boolean;
992
+ isLabelDropBoxChild: boolean;
993
+ components: never[];
994
+ path: string[];
995
+ icon?: undefined;
996
+ } | {
997
+ id: string;
998
+ label: string;
999
+ compName: string;
1000
+ type: string;
1001
+ compType: number;
1002
+ compLib: string;
1003
+ props: {
1004
+ name: string;
1005
+ placeholder: string;
1006
+ status: string;
1007
+ positionType: string;
1008
+ titleIcon: string;
1009
+ postfix: string;
1010
+ postfixIconPosition: string;
1011
+ title: string;
1012
+ dformType: string;
1013
+ placeholderList: string[];
1014
+ alias: {
1015
+ label: string;
1016
+ title?: undefined;
1017
+ id?: undefined;
1018
+ };
1019
+ icon: {
1020
+ isIconFont: boolean;
1021
+ theme: string;
1022
+ type: string;
1023
+ };
1024
+ fieldProps: string;
1025
+ rows?: undefined;
1026
+ itemType?: undefined;
1027
+ chunk?: undefined;
1028
+ canSelectAll?: undefined;
1029
+ options?: undefined;
1030
+ length?: undefined;
1031
+ limitSize?: undefined;
1032
+ isFilespreview?: undefined;
1033
+ selectable?: undefined;
1034
+ disableDelete?: undefined;
1035
+ uploadType?: undefined;
1036
+ maxLength?: undefined;
1037
+ capture?: undefined;
1038
+ hasTitleIcon?: undefined;
1039
+ listStyle?: undefined;
1040
+ isWatermark?: undefined;
1041
+ filesDownloaded?: undefined;
1042
+ deleteBtn?: undefined;
1043
+ downloadBtn?: undefined;
1044
+ previewBtn?: undefined;
1045
+ numberLimit?: undefined;
1046
+ singleFileMaxSize?: undefined;
1047
+ btnIcon?: undefined;
1048
+ uploadStyle?: undefined;
1049
+ uploadBtnStyle?: undefined;
1050
+ showBtnIcon?: undefined;
1051
+ iconPosition?: undefined;
1052
+ btnText?: undefined;
1053
+ data?: undefined;
1054
+ openText?: undefined;
1055
+ closeText?: undefined;
1056
+ openIcon?: undefined;
1057
+ closeIcon?: undefined;
1058
+ defaultValue?: undefined;
1059
+ switchType?: undefined;
1060
+ separatorStr?: undefined;
1061
+ selectType?: undefined;
1062
+ optionsLayout?: undefined;
1063
+ formatter?: undefined;
1064
+ modeType?: undefined;
1065
+ chooseType?: undefined;
1066
+ replaceName?: undefined;
1067
+ valueType?: undefined;
1068
+ filter?: undefined;
1069
+ clear?: undefined;
1070
+ inputType?: undefined;
1071
+ formatting?: undefined;
1072
+ radioType?: undefined;
1073
+ radioPosition?: undefined;
1074
+ selectedType?: undefined;
1075
+ };
1076
+ style: {
1077
+ inputContent?: undefined;
1078
+ lineHeight?: undefined;
1079
+ inputBorderRadius?: undefined;
1080
+ };
1081
+ isContainer: boolean;
1082
+ isBusiObjContainer: boolean;
1083
+ cmdgroup: string[];
1084
+ platform: string;
1085
+ fieldProps: {
1086
+ trigger: string;
1087
+ valuePropName: string;
1088
+ };
1089
+ engineApi: string[];
1090
+ setEvents: never[];
1091
+ description: string;
1092
+ image: string;
1093
+ groupsName: string;
1094
+ isAppChildForm: boolean;
1095
+ isLabelDropBoxChild: boolean;
1096
+ components: never[];
1097
+ path: string[];
1098
+ icon?: undefined;
1099
+ } | {
1100
+ id: string;
1101
+ label: string;
1102
+ compName: string;
1103
+ type: string;
1104
+ compType: number;
1105
+ compLib: string;
1106
+ props: {
1107
+ name: string;
1108
+ valueType: string;
1109
+ titleIcon: string;
1110
+ postfix: string;
1111
+ postfixIconPosition: string;
1112
+ title: string;
1113
+ dformType: string;
1114
+ positionType: string;
1115
+ status: string;
1116
+ options: {
1117
+ label: string;
1118
+ value: string;
1119
+ id: string;
1120
+ }[];
1121
+ icon: {
1122
+ isIconFont: boolean;
1123
+ theme: string;
1124
+ type: string;
1125
+ };
1126
+ fieldProps: string;
1127
+ rows?: undefined;
1128
+ placeholder?: undefined;
1129
+ itemType?: undefined;
1130
+ chunk?: undefined;
1131
+ canSelectAll?: undefined;
1132
+ length?: undefined;
1133
+ limitSize?: undefined;
1134
+ isFilespreview?: undefined;
1135
+ selectable?: undefined;
1136
+ disableDelete?: undefined;
1137
+ uploadType?: undefined;
1138
+ maxLength?: undefined;
1139
+ capture?: undefined;
1140
+ hasTitleIcon?: undefined;
1141
+ listStyle?: undefined;
1142
+ isWatermark?: undefined;
1143
+ filesDownloaded?: undefined;
1144
+ alias?: undefined;
1145
+ deleteBtn?: undefined;
1146
+ downloadBtn?: undefined;
1147
+ previewBtn?: undefined;
1148
+ numberLimit?: undefined;
1149
+ singleFileMaxSize?: undefined;
1150
+ btnIcon?: undefined;
1151
+ uploadStyle?: undefined;
1152
+ uploadBtnStyle?: undefined;
1153
+ showBtnIcon?: undefined;
1154
+ iconPosition?: undefined;
1155
+ btnText?: undefined;
1156
+ data?: undefined;
1157
+ openText?: undefined;
1158
+ closeText?: undefined;
1159
+ openIcon?: undefined;
1160
+ closeIcon?: undefined;
1161
+ defaultValue?: undefined;
1162
+ switchType?: undefined;
1163
+ separatorStr?: undefined;
1164
+ selectType?: undefined;
1165
+ optionsLayout?: undefined;
1166
+ formatter?: undefined;
1167
+ modeType?: undefined;
1168
+ chooseType?: undefined;
1169
+ replaceName?: undefined;
1170
+ placeholderList?: undefined;
1171
+ filter?: undefined;
1172
+ clear?: undefined;
1173
+ inputType?: undefined;
1174
+ formatting?: undefined;
1175
+ radioType?: undefined;
1176
+ radioPosition?: undefined;
1177
+ selectedType?: undefined;
1178
+ };
1179
+ style: {
1180
+ inputContent?: undefined;
1181
+ lineHeight?: undefined;
1182
+ inputBorderRadius?: undefined;
1183
+ };
1184
+ isContainer: boolean;
1185
+ isBusiObjContainer: boolean;
1186
+ cmdgroup: string[];
1187
+ platform: string;
1188
+ fieldProps: {
1189
+ trigger: string;
1190
+ valuePropName: string;
1191
+ };
1192
+ engineApi: string[];
1193
+ setEvents: never[];
1194
+ description: string;
1195
+ image: string;
1196
+ groupsName: string;
1197
+ isAppChildForm: boolean;
1198
+ isLabelDropBoxChild: boolean;
1199
+ components: never[];
1200
+ path: string[];
1201
+ icon?: undefined;
1202
+ } | {
1203
+ id: string;
1204
+ label: string;
1205
+ compName: string;
1206
+ type: string;
1207
+ compType: number;
1208
+ compLib: string;
1209
+ props: {
1210
+ name: string;
1211
+ titleIcon: string;
1212
+ postfix: string;
1213
+ postfixIconPosition: string;
1214
+ filter: string;
1215
+ title: string;
1216
+ dformType: string;
1217
+ positionType: string;
1218
+ status: string;
1219
+ options: {
1220
+ label: string;
1221
+ value: string;
1222
+ id: string;
1223
+ }[];
1224
+ placeholder: string;
1225
+ icon: {
1226
+ isIconFont: boolean;
1227
+ theme: string;
1228
+ type: string;
1229
+ };
1230
+ fieldProps: string;
1231
+ rows?: undefined;
1232
+ itemType?: undefined;
1233
+ chunk?: undefined;
1234
+ canSelectAll?: undefined;
1235
+ length?: undefined;
1236
+ limitSize?: undefined;
1237
+ isFilespreview?: undefined;
1238
+ selectable?: undefined;
1239
+ disableDelete?: undefined;
1240
+ uploadType?: undefined;
1241
+ maxLength?: undefined;
1242
+ capture?: undefined;
1243
+ hasTitleIcon?: undefined;
1244
+ listStyle?: undefined;
1245
+ isWatermark?: undefined;
1246
+ filesDownloaded?: undefined;
1247
+ alias?: undefined;
1248
+ deleteBtn?: undefined;
1249
+ downloadBtn?: undefined;
1250
+ previewBtn?: undefined;
1251
+ numberLimit?: undefined;
1252
+ singleFileMaxSize?: undefined;
1253
+ btnIcon?: undefined;
1254
+ uploadStyle?: undefined;
1255
+ uploadBtnStyle?: undefined;
1256
+ showBtnIcon?: undefined;
1257
+ iconPosition?: undefined;
1258
+ btnText?: undefined;
1259
+ data?: undefined;
1260
+ openText?: undefined;
1261
+ closeText?: undefined;
1262
+ openIcon?: undefined;
1263
+ closeIcon?: undefined;
1264
+ defaultValue?: undefined;
1265
+ switchType?: undefined;
1266
+ separatorStr?: undefined;
1267
+ selectType?: undefined;
1268
+ optionsLayout?: undefined;
1269
+ formatter?: undefined;
1270
+ modeType?: undefined;
1271
+ chooseType?: undefined;
1272
+ replaceName?: undefined;
1273
+ placeholderList?: undefined;
1274
+ valueType?: undefined;
1275
+ clear?: undefined;
1276
+ inputType?: undefined;
1277
+ formatting?: undefined;
1278
+ radioType?: undefined;
1279
+ radioPosition?: undefined;
1280
+ selectedType?: undefined;
1281
+ };
1282
+ style: {
1283
+ inputContent?: undefined;
1284
+ lineHeight?: undefined;
1285
+ inputBorderRadius?: undefined;
1286
+ };
1287
+ isContainer: boolean;
1288
+ isBusiObjContainer: boolean;
1289
+ cmdgroup: string[];
1290
+ platform: string;
1291
+ fieldProps: {
1292
+ trigger: string;
1293
+ valuePropName: string;
1294
+ };
1295
+ engineApi: string[];
1296
+ setEvents: never[];
1297
+ description: string;
1298
+ image: string;
1299
+ groupsName: string;
1300
+ isAppChildForm: boolean;
1301
+ isLabelDropBoxChild: boolean;
1302
+ components: never[];
1303
+ path: string[];
1304
+ icon?: undefined;
1305
+ } | {
1306
+ id: string;
1307
+ label: string;
1308
+ compName: string;
1309
+ type: string;
1310
+ compType: number;
1311
+ compLib: string;
1312
+ props: {
1313
+ name: string;
1314
+ positionType: string;
1315
+ titleIcon: string;
1316
+ dformType: string;
1317
+ title: string;
1318
+ placeholder: string;
1319
+ clear: boolean;
1320
+ status: string;
1321
+ inputType: string;
1322
+ formatting: string;
1323
+ fieldProps: string;
1324
+ rows?: undefined;
1325
+ itemType?: undefined;
1326
+ chunk?: undefined;
1327
+ canSelectAll?: undefined;
1328
+ options?: undefined;
1329
+ length?: undefined;
1330
+ limitSize?: undefined;
1331
+ isFilespreview?: undefined;
1332
+ selectable?: undefined;
1333
+ disableDelete?: undefined;
1334
+ uploadType?: undefined;
1335
+ maxLength?: undefined;
1336
+ capture?: undefined;
1337
+ hasTitleIcon?: undefined;
1338
+ listStyle?: undefined;
1339
+ isWatermark?: undefined;
1340
+ filesDownloaded?: undefined;
1341
+ alias?: undefined;
1342
+ deleteBtn?: undefined;
1343
+ downloadBtn?: undefined;
1344
+ previewBtn?: undefined;
1345
+ numberLimit?: undefined;
1346
+ singleFileMaxSize?: undefined;
1347
+ btnIcon?: undefined;
1348
+ uploadStyle?: undefined;
1349
+ uploadBtnStyle?: undefined;
1350
+ showBtnIcon?: undefined;
1351
+ iconPosition?: undefined;
1352
+ btnText?: undefined;
1353
+ postfix?: undefined;
1354
+ postfixIconPosition?: undefined;
1355
+ data?: undefined;
1356
+ icon?: undefined;
1357
+ openText?: undefined;
1358
+ closeText?: undefined;
1359
+ openIcon?: undefined;
1360
+ closeIcon?: undefined;
1361
+ defaultValue?: undefined;
1362
+ switchType?: undefined;
1363
+ separatorStr?: undefined;
1364
+ selectType?: undefined;
1365
+ optionsLayout?: undefined;
1366
+ formatter?: undefined;
1367
+ modeType?: undefined;
1368
+ chooseType?: undefined;
1369
+ replaceName?: undefined;
1370
+ placeholderList?: undefined;
1371
+ valueType?: undefined;
1372
+ filter?: undefined;
1373
+ radioType?: undefined;
1374
+ radioPosition?: undefined;
1375
+ selectedType?: undefined;
1376
+ };
1377
+ style: {
1378
+ inputContent?: undefined;
1379
+ lineHeight?: undefined;
1380
+ inputBorderRadius?: undefined;
1381
+ };
1382
+ isContainer: boolean;
1383
+ isBusiObjContainer: boolean;
1384
+ cmdgroup: string[];
1385
+ platform: string;
1386
+ icon: string;
1387
+ setEvents: never[];
1388
+ fieldProps: {
1389
+ trigger: string;
1390
+ valuePropName: string;
1391
+ };
1392
+ engineApi: string[];
1393
+ description: string;
1394
+ image: string;
1395
+ groupsName: string;
1396
+ isAppChildForm: boolean;
1397
+ isLabelDropBoxChild: boolean;
1398
+ components: never[];
1399
+ path: string[];
1400
+ } | {
1401
+ id: string;
1402
+ label: string;
1403
+ compName: string;
1404
+ type: string;
1405
+ compType: number;
1406
+ compLib: string;
1407
+ props: {
1408
+ name: string;
1409
+ positionType: string;
1410
+ titleIcon: string;
1411
+ radioType: string;
1412
+ radioPosition: string;
1413
+ selectedType: string;
1414
+ chunk: number;
1415
+ title: string;
1416
+ defaultValue: string;
1417
+ dformType: string;
1418
+ status: string;
1419
+ options: {
1420
+ id: string;
1421
+ label: string;
1422
+ value: string;
1423
+ }[];
1424
+ fieldProps: string;
1425
+ rows?: undefined;
1426
+ placeholder?: undefined;
1427
+ itemType?: undefined;
1428
+ canSelectAll?: undefined;
1429
+ length?: undefined;
1430
+ limitSize?: undefined;
1431
+ isFilespreview?: undefined;
1432
+ selectable?: undefined;
1433
+ disableDelete?: undefined;
1434
+ uploadType?: undefined;
1435
+ maxLength?: undefined;
1436
+ capture?: undefined;
1437
+ hasTitleIcon?: undefined;
1438
+ listStyle?: undefined;
1439
+ isWatermark?: undefined;
1440
+ filesDownloaded?: undefined;
1441
+ alias?: undefined;
1442
+ deleteBtn?: undefined;
1443
+ downloadBtn?: undefined;
1444
+ previewBtn?: undefined;
1445
+ numberLimit?: undefined;
1446
+ singleFileMaxSize?: undefined;
1447
+ btnIcon?: undefined;
1448
+ uploadStyle?: undefined;
1449
+ uploadBtnStyle?: undefined;
1450
+ showBtnIcon?: undefined;
1451
+ iconPosition?: undefined;
1452
+ btnText?: undefined;
1453
+ postfix?: undefined;
1454
+ postfixIconPosition?: undefined;
1455
+ data?: undefined;
1456
+ icon?: undefined;
1457
+ openText?: undefined;
1458
+ closeText?: undefined;
1459
+ openIcon?: undefined;
1460
+ closeIcon?: undefined;
1461
+ switchType?: undefined;
1462
+ separatorStr?: undefined;
1463
+ selectType?: undefined;
1464
+ optionsLayout?: undefined;
1465
+ formatter?: undefined;
1466
+ modeType?: undefined;
1467
+ chooseType?: undefined;
1468
+ replaceName?: undefined;
1469
+ placeholderList?: undefined;
1470
+ valueType?: undefined;
1471
+ filter?: undefined;
1472
+ clear?: undefined;
1473
+ inputType?: undefined;
1474
+ formatting?: undefined;
1475
+ };
1476
+ style: {
1477
+ inputContent?: undefined;
1478
+ lineHeight?: undefined;
1479
+ inputBorderRadius?: undefined;
1480
+ };
1481
+ isContainer: boolean;
1482
+ isBusiObjContainer: boolean;
1483
+ cmdgroup: string[];
1484
+ platform: string;
1485
+ fieldProps: {
1486
+ trigger: string;
1487
+ valuePropName: string;
1488
+ };
1489
+ engineApi: string[];
1490
+ setEvents: never[];
1491
+ description: string;
1492
+ image: string;
1493
+ groupsName: string;
1494
+ isAppChildForm: boolean;
1495
+ isLabelDropBoxChild: boolean;
1496
+ components: never[];
1497
+ path: string[];
1498
+ icon?: undefined;
1499
+ } | {
1500
+ id: string;
1501
+ label: string;
1502
+ compName: string;
1503
+ type: string;
1504
+ compType: number;
1505
+ compLib: string;
1506
+ props: {
1507
+ name: string;
1508
+ postfix: string;
1509
+ postfixIconPosition: string;
1510
+ dformType: string;
1511
+ title: string;
1512
+ placeholder: string;
1513
+ clear: boolean;
1514
+ positionType: string;
1515
+ status: string;
1516
+ inputType: string;
1517
+ fieldProps: string;
1518
+ rows?: undefined;
1519
+ titleIcon?: undefined;
1520
+ itemType?: undefined;
1521
+ chunk?: undefined;
1522
+ canSelectAll?: undefined;
1523
+ options?: undefined;
1524
+ length?: undefined;
1525
+ limitSize?: undefined;
1526
+ isFilespreview?: undefined;
1527
+ selectable?: undefined;
1528
+ disableDelete?: undefined;
1529
+ uploadType?: undefined;
1530
+ maxLength?: undefined;
1531
+ capture?: undefined;
1532
+ hasTitleIcon?: undefined;
1533
+ listStyle?: undefined;
1534
+ isWatermark?: undefined;
1535
+ filesDownloaded?: undefined;
1536
+ alias?: undefined;
1537
+ deleteBtn?: undefined;
1538
+ downloadBtn?: undefined;
1539
+ previewBtn?: undefined;
1540
+ numberLimit?: undefined;
1541
+ singleFileMaxSize?: undefined;
1542
+ btnIcon?: undefined;
1543
+ uploadStyle?: undefined;
1544
+ uploadBtnStyle?: undefined;
1545
+ showBtnIcon?: undefined;
1546
+ iconPosition?: undefined;
1547
+ btnText?: undefined;
1548
+ data?: undefined;
1549
+ icon?: undefined;
1550
+ openText?: undefined;
1551
+ closeText?: undefined;
1552
+ openIcon?: undefined;
1553
+ closeIcon?: undefined;
1554
+ defaultValue?: undefined;
1555
+ switchType?: undefined;
1556
+ separatorStr?: undefined;
1557
+ selectType?: undefined;
1558
+ optionsLayout?: undefined;
1559
+ formatter?: undefined;
1560
+ modeType?: undefined;
1561
+ chooseType?: undefined;
1562
+ replaceName?: undefined;
1563
+ placeholderList?: undefined;
1564
+ valueType?: undefined;
1565
+ filter?: undefined;
1566
+ formatting?: undefined;
1567
+ radioType?: undefined;
1568
+ radioPosition?: undefined;
1569
+ selectedType?: undefined;
1570
+ };
1571
+ style: {
1572
+ inputContent: string;
1573
+ inputBorderRadius: string;
1574
+ lineHeight?: undefined;
1575
+ };
1576
+ isContainer: boolean;
1577
+ isBusiObjContainer: boolean;
1578
+ cmdgroup: string[];
1579
+ platform: string;
1580
+ setEvents: never[];
1581
+ description: string;
1582
+ image: string;
1583
+ groupsName: string;
1584
+ isAppChildForm: boolean;
1585
+ fieldProps: {
1586
+ trigger: string;
1587
+ valuePropName: string;
1588
+ };
1589
+ engineApi: string[];
1590
+ isLabelDropBoxChild: boolean;
1591
+ components: never[];
1592
+ path: string[];
1593
+ icon?: undefined;
1594
+ })[];
1595
+ path: string[];
1596
+ }[];
1597
+ };