@lingxiteam/theme-utils 0.2.6 → 0.2.9
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.
- package/dist/config/Button.d.ts +6 -0
- package/dist/config/Button.js +8 -2
- package/dist/config/Card.d.ts +0 -1
- package/dist/config/Card.js +0 -1
- package/dist/config/Checkbox.d.ts +5 -0
- package/dist/config/Checkbox.js +7 -2
- package/dist/config/CheckboxGroup.d.ts +5 -0
- package/dist/config/CheckboxGroup.js +7 -2
- package/dist/config/Collapse.d.ts +4 -0
- package/dist/config/Collapse.js +6 -2
- package/dist/config/DatePicker.d.ts +4 -0
- package/dist/config/DatePicker.js +5 -1
- package/dist/config/Form.d.ts +23 -372
- package/dist/config/Form.js +75 -63
- package/dist/config/Icon.d.ts +4 -0
- package/dist/config/Icon.js +5 -1
- package/dist/config/Link.d.ts +6 -0
- package/dist/config/Link.js +8 -2
- package/dist/config/MultipleSelect.js +3 -3
- package/dist/config/Radio.d.ts +4 -0
- package/dist/config/Radio.js +5 -1
- package/dist/config/RangePicker.d.ts +4 -0
- package/dist/config/RangePicker.js +5 -1
- package/dist/config/StdUpload.d.ts +5 -16
- package/dist/config/StdUpload.js +7 -18
- package/dist/config/Switch.d.ts +4 -0
- package/dist/config/Switch.js +5 -1
- package/dist/config/Table.d.ts +6 -0
- package/dist/config/Table.js +8 -2
- package/dist/config/Tabs.d.ts +4 -0
- package/dist/config/Tabs.js +5 -1
- package/dist/config/Text.d.ts +4 -0
- package/dist/config/Text.js +5 -1
- package/dist/config/TimePicker.d.ts +4 -0
- package/dist/config/TimePicker.js +5 -1
- package/dist/config/Tree.d.ts +7 -0
- package/dist/config/Tree.js +10 -3
- package/dist/h5config/Accordion.d.ts +4 -0
- package/dist/h5config/Accordion.js +5 -1
- package/dist/h5config/Card.d.ts +4 -0
- package/dist/h5config/Card.js +5 -1
- package/dist/h5config/DMultiplePicker.js +4 -4
- package/dist/h5config/FilterItems.d.ts +4 -0
- package/dist/h5config/FilterItems.js +5 -1
- package/dist/h5config/SearchView.d.ts +4 -0
- package/dist/h5config/SearchView.js +5 -1
- package/package.json +1 -1
package/dist/config/Form.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export declare const Form: {
|
|
|
24
24
|
label: string;
|
|
25
25
|
groupsName: string;
|
|
26
26
|
desc: string;
|
|
27
|
+
followTheme: string;
|
|
27
28
|
};
|
|
28
29
|
textColor: {
|
|
29
30
|
type: string;
|
|
@@ -36,6 +37,7 @@ export declare const Form: {
|
|
|
36
37
|
label: string;
|
|
37
38
|
groupsName: string;
|
|
38
39
|
desc: string;
|
|
40
|
+
followTheme: string;
|
|
39
41
|
};
|
|
40
42
|
itemBorderColor: {
|
|
41
43
|
type: string;
|
|
@@ -63,6 +65,9 @@ export declare const Form: {
|
|
|
63
65
|
itemBorderColor: string;
|
|
64
66
|
itemBorderRadius: string;
|
|
65
67
|
}[];
|
|
68
|
+
followThemes: {
|
|
69
|
+
'@font-size-base': string[];
|
|
70
|
+
};
|
|
66
71
|
itemCustomTpl: string;
|
|
67
72
|
tpl: string;
|
|
68
73
|
components: ({
|
|
@@ -199,20 +204,8 @@ export declare const Form: {
|
|
|
199
204
|
startTime?: undefined;
|
|
200
205
|
endTime?: undefined;
|
|
201
206
|
customTip?: undefined;
|
|
202
|
-
placeholderText?: undefined;
|
|
203
|
-
displayStyle?: undefined;
|
|
204
|
-
countdownTime?: undefined;
|
|
205
|
-
random?: undefined;
|
|
206
|
-
digit?: undefined;
|
|
207
|
-
};
|
|
208
|
-
style: {
|
|
209
|
-
borderSetting?: undefined;
|
|
210
|
-
border?: undefined;
|
|
211
|
-
borderRadius?: undefined;
|
|
212
|
-
fontSize?: undefined;
|
|
213
|
-
color?: undefined;
|
|
214
|
-
backgroundColor?: undefined;
|
|
215
207
|
};
|
|
208
|
+
style: {};
|
|
216
209
|
isContainer: boolean;
|
|
217
210
|
isBusiObjContainer: boolean;
|
|
218
211
|
cmdgroup: string[];
|
|
@@ -326,20 +319,8 @@ export declare const Form: {
|
|
|
326
319
|
startTime?: undefined;
|
|
327
320
|
endTime?: undefined;
|
|
328
321
|
customTip?: undefined;
|
|
329
|
-
placeholderText?: undefined;
|
|
330
|
-
displayStyle?: undefined;
|
|
331
|
-
countdownTime?: undefined;
|
|
332
|
-
random?: undefined;
|
|
333
|
-
digit?: undefined;
|
|
334
|
-
};
|
|
335
|
-
style: {
|
|
336
|
-
borderSetting?: undefined;
|
|
337
|
-
border?: undefined;
|
|
338
|
-
borderRadius?: undefined;
|
|
339
|
-
fontSize?: undefined;
|
|
340
|
-
color?: undefined;
|
|
341
|
-
backgroundColor?: undefined;
|
|
342
322
|
};
|
|
323
|
+
style: {};
|
|
343
324
|
isContainer: boolean;
|
|
344
325
|
isBusiObjContainer: boolean;
|
|
345
326
|
cmdgroup: string[];
|
|
@@ -453,20 +434,8 @@ export declare const Form: {
|
|
|
453
434
|
startTime?: undefined;
|
|
454
435
|
endTime?: undefined;
|
|
455
436
|
customTip?: undefined;
|
|
456
|
-
placeholderText?: undefined;
|
|
457
|
-
displayStyle?: undefined;
|
|
458
|
-
countdownTime?: undefined;
|
|
459
|
-
random?: undefined;
|
|
460
|
-
digit?: undefined;
|
|
461
|
-
};
|
|
462
|
-
style: {
|
|
463
|
-
borderSetting?: undefined;
|
|
464
|
-
border?: undefined;
|
|
465
|
-
borderRadius?: undefined;
|
|
466
|
-
fontSize?: undefined;
|
|
467
|
-
color?: undefined;
|
|
468
|
-
backgroundColor?: undefined;
|
|
469
437
|
};
|
|
438
|
+
style: {};
|
|
470
439
|
isContainer: boolean;
|
|
471
440
|
isBusiObjContainer: boolean;
|
|
472
441
|
cmdgroup: string[];
|
|
@@ -588,20 +557,8 @@ export declare const Form: {
|
|
|
588
557
|
startTime?: undefined;
|
|
589
558
|
endTime?: undefined;
|
|
590
559
|
customTip?: undefined;
|
|
591
|
-
placeholderText?: undefined;
|
|
592
|
-
displayStyle?: undefined;
|
|
593
|
-
countdownTime?: undefined;
|
|
594
|
-
random?: undefined;
|
|
595
|
-
digit?: undefined;
|
|
596
|
-
};
|
|
597
|
-
style: {
|
|
598
|
-
borderSetting?: undefined;
|
|
599
|
-
border?: undefined;
|
|
600
|
-
borderRadius?: undefined;
|
|
601
|
-
fontSize?: undefined;
|
|
602
|
-
color?: undefined;
|
|
603
|
-
backgroundColor?: undefined;
|
|
604
560
|
};
|
|
561
|
+
style: {};
|
|
605
562
|
isContainer: boolean;
|
|
606
563
|
isBusiObjContainer: boolean;
|
|
607
564
|
cmdgroup: string[];
|
|
@@ -729,20 +686,8 @@ export declare const Form: {
|
|
|
729
686
|
startTime?: undefined;
|
|
730
687
|
endTime?: undefined;
|
|
731
688
|
customTip?: undefined;
|
|
732
|
-
placeholderText?: undefined;
|
|
733
|
-
displayStyle?: undefined;
|
|
734
|
-
countdownTime?: undefined;
|
|
735
|
-
random?: undefined;
|
|
736
|
-
digit?: undefined;
|
|
737
|
-
};
|
|
738
|
-
style: {
|
|
739
|
-
borderSetting?: undefined;
|
|
740
|
-
border?: undefined;
|
|
741
|
-
borderRadius?: undefined;
|
|
742
|
-
fontSize?: undefined;
|
|
743
|
-
color?: undefined;
|
|
744
|
-
backgroundColor?: undefined;
|
|
745
689
|
};
|
|
690
|
+
style: {};
|
|
746
691
|
isContainer: boolean;
|
|
747
692
|
isBusiObjContainer: boolean;
|
|
748
693
|
cmdgroup: string[];
|
|
@@ -859,20 +804,8 @@ export declare const Form: {
|
|
|
859
804
|
startTime?: undefined;
|
|
860
805
|
endTime?: undefined;
|
|
861
806
|
customTip?: undefined;
|
|
862
|
-
placeholderText?: undefined;
|
|
863
|
-
displayStyle?: undefined;
|
|
864
|
-
countdownTime?: undefined;
|
|
865
|
-
random?: undefined;
|
|
866
|
-
digit?: undefined;
|
|
867
|
-
};
|
|
868
|
-
style: {
|
|
869
|
-
borderSetting?: undefined;
|
|
870
|
-
border?: undefined;
|
|
871
|
-
borderRadius?: undefined;
|
|
872
|
-
fontSize?: undefined;
|
|
873
|
-
color?: undefined;
|
|
874
|
-
backgroundColor?: undefined;
|
|
875
807
|
};
|
|
808
|
+
style: {};
|
|
876
809
|
isContainer: boolean;
|
|
877
810
|
isBusiObjContainer: boolean;
|
|
878
811
|
cmdgroup: string[];
|
|
@@ -997,20 +930,8 @@ export declare const Form: {
|
|
|
997
930
|
startTime?: undefined;
|
|
998
931
|
endTime?: undefined;
|
|
999
932
|
customTip?: undefined;
|
|
1000
|
-
placeholderText?: undefined;
|
|
1001
|
-
displayStyle?: undefined;
|
|
1002
|
-
countdownTime?: undefined;
|
|
1003
|
-
random?: undefined;
|
|
1004
|
-
digit?: undefined;
|
|
1005
|
-
};
|
|
1006
|
-
style: {
|
|
1007
|
-
borderSetting?: undefined;
|
|
1008
|
-
border?: undefined;
|
|
1009
|
-
borderRadius?: undefined;
|
|
1010
|
-
fontSize?: undefined;
|
|
1011
|
-
color?: undefined;
|
|
1012
|
-
backgroundColor?: undefined;
|
|
1013
933
|
};
|
|
934
|
+
style: {};
|
|
1014
935
|
isContainer: boolean;
|
|
1015
936
|
isBusiObjContainer: boolean;
|
|
1016
937
|
cmdgroup: string[];
|
|
@@ -1135,20 +1056,8 @@ export declare const Form: {
|
|
|
1135
1056
|
startTime?: undefined;
|
|
1136
1057
|
endTime?: undefined;
|
|
1137
1058
|
customTip?: undefined;
|
|
1138
|
-
placeholderText?: undefined;
|
|
1139
|
-
displayStyle?: undefined;
|
|
1140
|
-
countdownTime?: undefined;
|
|
1141
|
-
random?: undefined;
|
|
1142
|
-
digit?: undefined;
|
|
1143
|
-
};
|
|
1144
|
-
style: {
|
|
1145
|
-
borderSetting?: undefined;
|
|
1146
|
-
border?: undefined;
|
|
1147
|
-
borderRadius?: undefined;
|
|
1148
|
-
fontSize?: undefined;
|
|
1149
|
-
color?: undefined;
|
|
1150
|
-
backgroundColor?: undefined;
|
|
1151
1059
|
};
|
|
1060
|
+
style: {};
|
|
1152
1061
|
isContainer: boolean;
|
|
1153
1062
|
isBusiObjContainer: boolean;
|
|
1154
1063
|
cmdgroup: string[];
|
|
@@ -1281,20 +1190,8 @@ export declare const Form: {
|
|
|
1281
1190
|
startTime?: undefined;
|
|
1282
1191
|
endTime?: undefined;
|
|
1283
1192
|
customTip?: undefined;
|
|
1284
|
-
placeholderText?: undefined;
|
|
1285
|
-
displayStyle?: undefined;
|
|
1286
|
-
countdownTime?: undefined;
|
|
1287
|
-
random?: undefined;
|
|
1288
|
-
digit?: undefined;
|
|
1289
|
-
};
|
|
1290
|
-
style: {
|
|
1291
|
-
borderSetting?: undefined;
|
|
1292
|
-
border?: undefined;
|
|
1293
|
-
borderRadius?: undefined;
|
|
1294
|
-
fontSize?: undefined;
|
|
1295
|
-
color?: undefined;
|
|
1296
|
-
backgroundColor?: undefined;
|
|
1297
1193
|
};
|
|
1194
|
+
style: {};
|
|
1298
1195
|
isContainer: boolean;
|
|
1299
1196
|
isBusiObjContainer: boolean;
|
|
1300
1197
|
cmdgroup: string[];
|
|
@@ -1426,20 +1323,8 @@ export declare const Form: {
|
|
|
1426
1323
|
startTime?: undefined;
|
|
1427
1324
|
endTime?: undefined;
|
|
1428
1325
|
customTip?: undefined;
|
|
1429
|
-
placeholderText?: undefined;
|
|
1430
|
-
displayStyle?: undefined;
|
|
1431
|
-
countdownTime?: undefined;
|
|
1432
|
-
random?: undefined;
|
|
1433
|
-
digit?: undefined;
|
|
1434
|
-
};
|
|
1435
|
-
style: {
|
|
1436
|
-
borderSetting?: undefined;
|
|
1437
|
-
border?: undefined;
|
|
1438
|
-
borderRadius?: undefined;
|
|
1439
|
-
fontSize?: undefined;
|
|
1440
|
-
color?: undefined;
|
|
1441
|
-
backgroundColor?: undefined;
|
|
1442
1326
|
};
|
|
1327
|
+
style: {};
|
|
1443
1328
|
isContainer: boolean;
|
|
1444
1329
|
isBusiObjContainer: boolean;
|
|
1445
1330
|
cmdgroup: string[];
|
|
@@ -1553,20 +1438,8 @@ export declare const Form: {
|
|
|
1553
1438
|
startTime?: undefined;
|
|
1554
1439
|
endTime?: undefined;
|
|
1555
1440
|
customTip?: undefined;
|
|
1556
|
-
placeholderText?: undefined;
|
|
1557
|
-
displayStyle?: undefined;
|
|
1558
|
-
countdownTime?: undefined;
|
|
1559
|
-
random?: undefined;
|
|
1560
|
-
digit?: undefined;
|
|
1561
|
-
};
|
|
1562
|
-
style: {
|
|
1563
|
-
borderSetting?: undefined;
|
|
1564
|
-
border?: undefined;
|
|
1565
|
-
borderRadius?: undefined;
|
|
1566
|
-
fontSize?: undefined;
|
|
1567
|
-
color?: undefined;
|
|
1568
|
-
backgroundColor?: undefined;
|
|
1569
1441
|
};
|
|
1442
|
+
style: {};
|
|
1570
1443
|
isContainer: boolean;
|
|
1571
1444
|
isBusiObjContainer: boolean;
|
|
1572
1445
|
cmdgroup: string[];
|
|
@@ -1680,20 +1553,8 @@ export declare const Form: {
|
|
|
1680
1553
|
startTime?: undefined;
|
|
1681
1554
|
endTime?: undefined;
|
|
1682
1555
|
customTip?: undefined;
|
|
1683
|
-
placeholderText?: undefined;
|
|
1684
|
-
displayStyle?: undefined;
|
|
1685
|
-
countdownTime?: undefined;
|
|
1686
|
-
random?: undefined;
|
|
1687
|
-
digit?: undefined;
|
|
1688
|
-
};
|
|
1689
|
-
style: {
|
|
1690
|
-
borderSetting?: undefined;
|
|
1691
|
-
border?: undefined;
|
|
1692
|
-
borderRadius?: undefined;
|
|
1693
|
-
fontSize?: undefined;
|
|
1694
|
-
color?: undefined;
|
|
1695
|
-
backgroundColor?: undefined;
|
|
1696
1556
|
};
|
|
1557
|
+
style: {};
|
|
1697
1558
|
isContainer: boolean;
|
|
1698
1559
|
isBusiObjContainer: boolean;
|
|
1699
1560
|
cmdgroup: string[];
|
|
@@ -1826,20 +1687,8 @@ export declare const Form: {
|
|
|
1826
1687
|
startTime?: undefined;
|
|
1827
1688
|
endTime?: undefined;
|
|
1828
1689
|
customTip?: undefined;
|
|
1829
|
-
placeholderText?: undefined;
|
|
1830
|
-
displayStyle?: undefined;
|
|
1831
|
-
countdownTime?: undefined;
|
|
1832
|
-
random?: undefined;
|
|
1833
|
-
digit?: undefined;
|
|
1834
|
-
};
|
|
1835
|
-
style: {
|
|
1836
|
-
borderSetting?: undefined;
|
|
1837
|
-
border?: undefined;
|
|
1838
|
-
borderRadius?: undefined;
|
|
1839
|
-
fontSize?: undefined;
|
|
1840
|
-
color?: undefined;
|
|
1841
|
-
backgroundColor?: undefined;
|
|
1842
1690
|
};
|
|
1691
|
+
style: {};
|
|
1843
1692
|
isContainer: boolean;
|
|
1844
1693
|
isBusiObjContainer: boolean;
|
|
1845
1694
|
cmdgroup: string[];
|
|
@@ -1978,20 +1827,8 @@ export declare const Form: {
|
|
|
1978
1827
|
startTime?: undefined;
|
|
1979
1828
|
endTime?: undefined;
|
|
1980
1829
|
customTip?: undefined;
|
|
1981
|
-
placeholderText?: undefined;
|
|
1982
|
-
displayStyle?: undefined;
|
|
1983
|
-
countdownTime?: undefined;
|
|
1984
|
-
random?: undefined;
|
|
1985
|
-
digit?: undefined;
|
|
1986
|
-
};
|
|
1987
|
-
style: {
|
|
1988
|
-
borderSetting?: undefined;
|
|
1989
|
-
border?: undefined;
|
|
1990
|
-
borderRadius?: undefined;
|
|
1991
|
-
fontSize?: undefined;
|
|
1992
|
-
color?: undefined;
|
|
1993
|
-
backgroundColor?: undefined;
|
|
1994
1830
|
};
|
|
1831
|
+
style: {};
|
|
1995
1832
|
isContainer: boolean;
|
|
1996
1833
|
isBusiObjContainer: boolean;
|
|
1997
1834
|
cmdgroup: string[];
|
|
@@ -2102,20 +1939,8 @@ export declare const Form: {
|
|
|
2102
1939
|
startTime?: undefined;
|
|
2103
1940
|
endTime?: undefined;
|
|
2104
1941
|
customTip?: undefined;
|
|
2105
|
-
placeholderText?: undefined;
|
|
2106
|
-
displayStyle?: undefined;
|
|
2107
|
-
countdownTime?: undefined;
|
|
2108
|
-
random?: undefined;
|
|
2109
|
-
digit?: undefined;
|
|
2110
|
-
};
|
|
2111
|
-
style: {
|
|
2112
|
-
borderSetting?: undefined;
|
|
2113
|
-
border?: undefined;
|
|
2114
|
-
borderRadius?: undefined;
|
|
2115
|
-
fontSize?: undefined;
|
|
2116
|
-
color?: undefined;
|
|
2117
|
-
backgroundColor?: undefined;
|
|
2118
1942
|
};
|
|
1943
|
+
style: {};
|
|
2119
1944
|
isContainer: boolean;
|
|
2120
1945
|
isBusiObjContainer: boolean;
|
|
2121
1946
|
cmdgroup: string[];
|
|
@@ -2229,20 +2054,8 @@ export declare const Form: {
|
|
|
2229
2054
|
modalWidth?: undefined;
|
|
2230
2055
|
modalHeight?: undefined;
|
|
2231
2056
|
separator?: undefined;
|
|
2232
|
-
placeholderText?: undefined;
|
|
2233
|
-
displayStyle?: undefined;
|
|
2234
|
-
countdownTime?: undefined;
|
|
2235
|
-
random?: undefined;
|
|
2236
|
-
digit?: undefined;
|
|
2237
|
-
};
|
|
2238
|
-
style: {
|
|
2239
|
-
borderSetting?: undefined;
|
|
2240
|
-
border?: undefined;
|
|
2241
|
-
borderRadius?: undefined;
|
|
2242
|
-
fontSize?: undefined;
|
|
2243
|
-
color?: undefined;
|
|
2244
|
-
backgroundColor?: undefined;
|
|
2245
2057
|
};
|
|
2058
|
+
style: {};
|
|
2246
2059
|
isContainer: boolean;
|
|
2247
2060
|
isBusiObjContainer: boolean;
|
|
2248
2061
|
cmdgroup: string[];
|
|
@@ -2356,20 +2169,8 @@ export declare const Form: {
|
|
|
2356
2169
|
modalWidth?: undefined;
|
|
2357
2170
|
modalHeight?: undefined;
|
|
2358
2171
|
separator?: undefined;
|
|
2359
|
-
placeholderText?: undefined;
|
|
2360
|
-
displayStyle?: undefined;
|
|
2361
|
-
countdownTime?: undefined;
|
|
2362
|
-
random?: undefined;
|
|
2363
|
-
digit?: undefined;
|
|
2364
|
-
};
|
|
2365
|
-
style: {
|
|
2366
|
-
borderSetting?: undefined;
|
|
2367
|
-
border?: undefined;
|
|
2368
|
-
borderRadius?: undefined;
|
|
2369
|
-
fontSize?: undefined;
|
|
2370
|
-
color?: undefined;
|
|
2371
|
-
backgroundColor?: undefined;
|
|
2372
2172
|
};
|
|
2173
|
+
style: {};
|
|
2373
2174
|
isContainer: boolean;
|
|
2374
2175
|
isBusiObjContainer: boolean;
|
|
2375
2176
|
cmdgroup: string[];
|
|
@@ -2483,20 +2284,8 @@ export declare const Form: {
|
|
|
2483
2284
|
startTime?: undefined;
|
|
2484
2285
|
endTime?: undefined;
|
|
2485
2286
|
customTip?: undefined;
|
|
2486
|
-
placeholderText?: undefined;
|
|
2487
|
-
displayStyle?: undefined;
|
|
2488
|
-
countdownTime?: undefined;
|
|
2489
|
-
random?: undefined;
|
|
2490
|
-
digit?: undefined;
|
|
2491
|
-
};
|
|
2492
|
-
style: {
|
|
2493
|
-
borderSetting?: undefined;
|
|
2494
|
-
border?: undefined;
|
|
2495
|
-
borderRadius?: undefined;
|
|
2496
|
-
fontSize?: undefined;
|
|
2497
|
-
color?: undefined;
|
|
2498
|
-
backgroundColor?: undefined;
|
|
2499
2287
|
};
|
|
2288
|
+
style: {};
|
|
2500
2289
|
isContainer: boolean;
|
|
2501
2290
|
isBusiObjContainer: boolean;
|
|
2502
2291
|
cmdgroup: string[];
|
|
@@ -2516,144 +2305,6 @@ export declare const Form: {
|
|
|
2516
2305
|
engineApi?: undefined;
|
|
2517
2306
|
alias?: undefined;
|
|
2518
2307
|
isInlineBlock?: undefined;
|
|
2519
|
-
} | {
|
|
2520
|
-
id: string;
|
|
2521
|
-
label: string;
|
|
2522
|
-
compName: string;
|
|
2523
|
-
type: string;
|
|
2524
|
-
compType: number;
|
|
2525
|
-
compLib: string;
|
|
2526
|
-
props: {
|
|
2527
|
-
name: string;
|
|
2528
|
-
placeholderText: string;
|
|
2529
|
-
displayStyle: string;
|
|
2530
|
-
countdownTime: number;
|
|
2531
|
-
random: boolean;
|
|
2532
|
-
digit: number;
|
|
2533
|
-
formItemIndex: number;
|
|
2534
|
-
labelCol: number;
|
|
2535
|
-
wrapperCol: number;
|
|
2536
|
-
fieldName: string;
|
|
2537
|
-
basicStatus?: undefined;
|
|
2538
|
-
size?: undefined;
|
|
2539
|
-
titleTip?: undefined;
|
|
2540
|
-
tipContent?: undefined;
|
|
2541
|
-
tipSize?: undefined;
|
|
2542
|
-
tipWidth?: undefined;
|
|
2543
|
-
tipHeight?: undefined;
|
|
2544
|
-
prefixIconPosition?: undefined;
|
|
2545
|
-
postfix?: undefined;
|
|
2546
|
-
postfixIconPosition?: undefined;
|
|
2547
|
-
required?: undefined;
|
|
2548
|
-
placeholder?: undefined;
|
|
2549
|
-
allowClear?: undefined;
|
|
2550
|
-
dataMask?: undefined;
|
|
2551
|
-
step?: undefined;
|
|
2552
|
-
min?: undefined;
|
|
2553
|
-
formatting?: undefined;
|
|
2554
|
-
radioType?: undefined;
|
|
2555
|
-
optionMarginRight?: undefined;
|
|
2556
|
-
staticData?: undefined;
|
|
2557
|
-
options?: undefined;
|
|
2558
|
-
checkAllText?: undefined;
|
|
2559
|
-
selfSpan?: undefined;
|
|
2560
|
-
tipPlacement?: undefined;
|
|
2561
|
-
tipIcon?: undefined;
|
|
2562
|
-
tipLocation?: undefined;
|
|
2563
|
-
checkedAll?: undefined;
|
|
2564
|
-
text?: undefined;
|
|
2565
|
-
extendProps?: undefined;
|
|
2566
|
-
filter?: undefined;
|
|
2567
|
-
mode?: undefined;
|
|
2568
|
-
classification?: undefined;
|
|
2569
|
-
defaultValue?: undefined;
|
|
2570
|
-
treeDefaultExpandAll?: undefined;
|
|
2571
|
-
showSearch?: undefined;
|
|
2572
|
-
treeNodeFilterProp?: undefined;
|
|
2573
|
-
treeData?: undefined;
|
|
2574
|
-
multiple?: undefined;
|
|
2575
|
-
expandTrigger?: undefined;
|
|
2576
|
-
popupPlacement?: undefined;
|
|
2577
|
-
popoverStyle?: undefined;
|
|
2578
|
-
range?: undefined;
|
|
2579
|
-
included?: undefined;
|
|
2580
|
-
direction?: undefined;
|
|
2581
|
-
showInput?: undefined;
|
|
2582
|
-
showLabel?: undefined;
|
|
2583
|
-
labelPlacement?: undefined;
|
|
2584
|
-
max?: undefined;
|
|
2585
|
-
count?: undefined;
|
|
2586
|
-
value?: undefined;
|
|
2587
|
-
tooltips?: undefined;
|
|
2588
|
-
switchStyle?: undefined;
|
|
2589
|
-
checkedChildren?: undefined;
|
|
2590
|
-
unCheckedChildren?: undefined;
|
|
2591
|
-
checkedChildrenIcon?: undefined;
|
|
2592
|
-
unCheckedChildrenIcon?: undefined;
|
|
2593
|
-
defaultChecked?: undefined;
|
|
2594
|
-
uploadStyle?: undefined;
|
|
2595
|
-
listType?: undefined;
|
|
2596
|
-
viewMode?: undefined;
|
|
2597
|
-
fileNameEncode?: undefined;
|
|
2598
|
-
isWatermark?: undefined;
|
|
2599
|
-
optionalFile?: undefined;
|
|
2600
|
-
fileName?: undefined;
|
|
2601
|
-
numberLimit?: undefined;
|
|
2602
|
-
singleFileMaxSize?: undefined;
|
|
2603
|
-
uploadText?: undefined;
|
|
2604
|
-
uploadTimeout?: undefined;
|
|
2605
|
-
deleteIcon?: undefined;
|
|
2606
|
-
downloadIcon?: undefined;
|
|
2607
|
-
previewIcon?: undefined;
|
|
2608
|
-
modalWidth?: undefined;
|
|
2609
|
-
modalHeight?: undefined;
|
|
2610
|
-
timeMode?: undefined;
|
|
2611
|
-
separator?: undefined;
|
|
2612
|
-
format?: undefined;
|
|
2613
|
-
pickerType?: undefined;
|
|
2614
|
-
limitRange?: undefined;
|
|
2615
|
-
startTime?: undefined;
|
|
2616
|
-
endTime?: undefined;
|
|
2617
|
-
customTip?: undefined;
|
|
2618
|
-
};
|
|
2619
|
-
style: {
|
|
2620
|
-
borderSetting: string;
|
|
2621
|
-
border: string;
|
|
2622
|
-
borderRadius: string;
|
|
2623
|
-
fontSize: string;
|
|
2624
|
-
color: string;
|
|
2625
|
-
backgroundColor: string;
|
|
2626
|
-
};
|
|
2627
|
-
isContainer: boolean;
|
|
2628
|
-
isBusiObjContainer: boolean;
|
|
2629
|
-
cmdgroup: string[];
|
|
2630
|
-
platform: string;
|
|
2631
|
-
fieldProps: {
|
|
2632
|
-
trigger: string;
|
|
2633
|
-
valuePropName: string;
|
|
2634
|
-
};
|
|
2635
|
-
icon: string;
|
|
2636
|
-
description: string;
|
|
2637
|
-
image: string;
|
|
2638
|
-
groupsName: string;
|
|
2639
|
-
engineApi: string[];
|
|
2640
|
-
setEvents: {
|
|
2641
|
-
dataName: string;
|
|
2642
|
-
value: string;
|
|
2643
|
-
params: {
|
|
2644
|
-
title: string;
|
|
2645
|
-
name: string;
|
|
2646
|
-
value: string;
|
|
2647
|
-
}[];
|
|
2648
|
-
path: never[];
|
|
2649
|
-
dataId: string;
|
|
2650
|
-
children: never[];
|
|
2651
|
-
}[];
|
|
2652
|
-
isLabelDropBoxChild: boolean;
|
|
2653
|
-
components: never[];
|
|
2654
|
-
path: string[];
|
|
2655
|
-
alias?: undefined;
|
|
2656
|
-
isInlineBlock?: undefined;
|
|
2657
2308
|
})[];
|
|
2658
2309
|
path: string[];
|
|
2659
2310
|
} | {
|