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