@lingxiteam/theme-utils 0.3.13 → 0.3.14
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/Form.d.ts +313 -65
- package/dist/config/Form.js +53 -2
- package/package.json +1 -1
package/dist/config/Form.d.ts
CHANGED
|
@@ -157,15 +157,18 @@ export declare const Form: {
|
|
|
157
157
|
step?: undefined;
|
|
158
158
|
min?: undefined;
|
|
159
159
|
formatting?: undefined;
|
|
160
|
+
tipLocation?: undefined;
|
|
161
|
+
tipPlacement?: undefined;
|
|
162
|
+
addonAfter?: undefined;
|
|
163
|
+
addonBefore?: undefined;
|
|
164
|
+
precision?: undefined;
|
|
160
165
|
radioType?: undefined;
|
|
161
166
|
optionMarginRight?: undefined;
|
|
162
167
|
staticData?: undefined;
|
|
163
168
|
options?: undefined;
|
|
164
169
|
checkAllText?: undefined;
|
|
165
170
|
selfSpan?: undefined;
|
|
166
|
-
tipPlacement?: undefined;
|
|
167
171
|
tipIcon?: undefined;
|
|
168
|
-
tipLocation?: undefined;
|
|
169
172
|
checkedAll?: undefined;
|
|
170
173
|
text?: undefined;
|
|
171
174
|
extendProps?: undefined;
|
|
@@ -232,7 +235,9 @@ export declare const Form: {
|
|
|
232
235
|
type?: undefined;
|
|
233
236
|
postfixStyle?: undefined;
|
|
234
237
|
};
|
|
235
|
-
style: {
|
|
238
|
+
style: {
|
|
239
|
+
flex?: undefined;
|
|
240
|
+
};
|
|
236
241
|
isContainer: boolean;
|
|
237
242
|
isBusiObjContainer: boolean;
|
|
238
243
|
cmdgroup: string[];
|
|
@@ -251,6 +256,7 @@ export declare const Form: {
|
|
|
251
256
|
isLabelDropBoxChild: boolean;
|
|
252
257
|
components: never[];
|
|
253
258
|
path: string[];
|
|
259
|
+
hasValue?: undefined;
|
|
254
260
|
isInlineBlock?: undefined;
|
|
255
261
|
} | {
|
|
256
262
|
id: string;
|
|
@@ -271,6 +277,7 @@ export declare const Form: {
|
|
|
271
277
|
tipWidth: string;
|
|
272
278
|
tipHeight: string;
|
|
273
279
|
required: boolean;
|
|
280
|
+
placeholder: string;
|
|
274
281
|
min: number;
|
|
275
282
|
formatting: string;
|
|
276
283
|
formItemIndex: number;
|
|
@@ -279,18 +286,20 @@ export declare const Form: {
|
|
|
279
286
|
prefixIconPosition?: undefined;
|
|
280
287
|
postfix?: undefined;
|
|
281
288
|
postfixIconPosition?: undefined;
|
|
282
|
-
placeholder?: undefined;
|
|
283
289
|
allowClear?: undefined;
|
|
284
290
|
dataMask?: undefined;
|
|
291
|
+
tipLocation?: undefined;
|
|
292
|
+
tipPlacement?: undefined;
|
|
293
|
+
addonAfter?: undefined;
|
|
294
|
+
addonBefore?: undefined;
|
|
295
|
+
precision?: undefined;
|
|
285
296
|
radioType?: undefined;
|
|
286
297
|
optionMarginRight?: undefined;
|
|
287
298
|
staticData?: undefined;
|
|
288
299
|
options?: undefined;
|
|
289
300
|
checkAllText?: undefined;
|
|
290
301
|
selfSpan?: undefined;
|
|
291
|
-
tipPlacement?: undefined;
|
|
292
302
|
tipIcon?: undefined;
|
|
293
|
-
tipLocation?: undefined;
|
|
294
303
|
checkedAll?: undefined;
|
|
295
304
|
text?: undefined;
|
|
296
305
|
extendProps?: undefined;
|
|
@@ -357,7 +366,9 @@ export declare const Form: {
|
|
|
357
366
|
type?: undefined;
|
|
358
367
|
postfixStyle?: undefined;
|
|
359
368
|
};
|
|
360
|
-
style: {
|
|
369
|
+
style: {
|
|
370
|
+
flex?: undefined;
|
|
371
|
+
};
|
|
361
372
|
isContainer: boolean;
|
|
362
373
|
isBusiObjContainer: boolean;
|
|
363
374
|
cmdgroup: string[];
|
|
@@ -376,6 +387,135 @@ export declare const Form: {
|
|
|
376
387
|
components: never[];
|
|
377
388
|
path: string[];
|
|
378
389
|
alias?: undefined;
|
|
390
|
+
hasValue?: undefined;
|
|
391
|
+
isInlineBlock?: undefined;
|
|
392
|
+
} | {
|
|
393
|
+
id: string;
|
|
394
|
+
label: string;
|
|
395
|
+
compName: string;
|
|
396
|
+
type: string;
|
|
397
|
+
compType: number;
|
|
398
|
+
compLib: string;
|
|
399
|
+
props: {
|
|
400
|
+
name: string;
|
|
401
|
+
basicStatus: number;
|
|
402
|
+
size: string;
|
|
403
|
+
labelCol: number;
|
|
404
|
+
wrapperCol: number;
|
|
405
|
+
step: number;
|
|
406
|
+
titleTip: string;
|
|
407
|
+
tipSize: string;
|
|
408
|
+
tipWidth: string;
|
|
409
|
+
tipHeight: string;
|
|
410
|
+
formItemIndex: number;
|
|
411
|
+
fieldName: string;
|
|
412
|
+
tipLocation: string;
|
|
413
|
+
tipPlacement: string;
|
|
414
|
+
addonAfter: string;
|
|
415
|
+
addonBefore: string;
|
|
416
|
+
precision: number;
|
|
417
|
+
placeholder: string;
|
|
418
|
+
tipContent: string;
|
|
419
|
+
prefixIconPosition?: undefined;
|
|
420
|
+
postfix?: undefined;
|
|
421
|
+
postfixIconPosition?: undefined;
|
|
422
|
+
required?: undefined;
|
|
423
|
+
allowClear?: undefined;
|
|
424
|
+
dataMask?: undefined;
|
|
425
|
+
min?: undefined;
|
|
426
|
+
formatting?: undefined;
|
|
427
|
+
radioType?: undefined;
|
|
428
|
+
optionMarginRight?: undefined;
|
|
429
|
+
staticData?: undefined;
|
|
430
|
+
options?: undefined;
|
|
431
|
+
checkAllText?: undefined;
|
|
432
|
+
selfSpan?: undefined;
|
|
433
|
+
tipIcon?: undefined;
|
|
434
|
+
checkedAll?: undefined;
|
|
435
|
+
text?: undefined;
|
|
436
|
+
extendProps?: undefined;
|
|
437
|
+
filter?: undefined;
|
|
438
|
+
mode?: undefined;
|
|
439
|
+
classification?: undefined;
|
|
440
|
+
defaultValue?: undefined;
|
|
441
|
+
treeDefaultExpandAll?: undefined;
|
|
442
|
+
showSearch?: undefined;
|
|
443
|
+
treeNodeFilterProp?: undefined;
|
|
444
|
+
treeData?: undefined;
|
|
445
|
+
multiple?: undefined;
|
|
446
|
+
expandTrigger?: undefined;
|
|
447
|
+
popupPlacement?: undefined;
|
|
448
|
+
popoverStyle?: undefined;
|
|
449
|
+
range?: undefined;
|
|
450
|
+
included?: undefined;
|
|
451
|
+
direction?: undefined;
|
|
452
|
+
showInput?: undefined;
|
|
453
|
+
showLabel?: undefined;
|
|
454
|
+
labelPlacement?: undefined;
|
|
455
|
+
max?: undefined;
|
|
456
|
+
count?: undefined;
|
|
457
|
+
value?: undefined;
|
|
458
|
+
tooltips?: undefined;
|
|
459
|
+
switchStyle?: undefined;
|
|
460
|
+
checkedChildren?: undefined;
|
|
461
|
+
unCheckedChildren?: undefined;
|
|
462
|
+
checkedChildrenIcon?: undefined;
|
|
463
|
+
unCheckedChildrenIcon?: undefined;
|
|
464
|
+
defaultChecked?: undefined;
|
|
465
|
+
uploadStyle?: undefined;
|
|
466
|
+
listType?: undefined;
|
|
467
|
+
viewMode?: undefined;
|
|
468
|
+
fileNameEncode?: undefined;
|
|
469
|
+
isWatermark?: undefined;
|
|
470
|
+
optionalFile?: undefined;
|
|
471
|
+
fileName?: undefined;
|
|
472
|
+
numberLimit?: undefined;
|
|
473
|
+
singleFileMaxSize?: undefined;
|
|
474
|
+
uploadText?: undefined;
|
|
475
|
+
uploadTimeout?: undefined;
|
|
476
|
+
deleteIcon?: undefined;
|
|
477
|
+
downloadIcon?: undefined;
|
|
478
|
+
previewIcon?: undefined;
|
|
479
|
+
modalWidth?: undefined;
|
|
480
|
+
modalHeight?: undefined;
|
|
481
|
+
timeMode?: undefined;
|
|
482
|
+
separator?: undefined;
|
|
483
|
+
format?: undefined;
|
|
484
|
+
pickerType?: undefined;
|
|
485
|
+
limitRange?: undefined;
|
|
486
|
+
startTime?: undefined;
|
|
487
|
+
endTime?: undefined;
|
|
488
|
+
customTip?: undefined;
|
|
489
|
+
placeholderText?: undefined;
|
|
490
|
+
displayStyle?: undefined;
|
|
491
|
+
countdownTime?: undefined;
|
|
492
|
+
random?: undefined;
|
|
493
|
+
digit?: undefined;
|
|
494
|
+
postfixIcon?: undefined;
|
|
495
|
+
isIconFont?: undefined;
|
|
496
|
+
theme?: undefined;
|
|
497
|
+
type?: undefined;
|
|
498
|
+
postfixStyle?: undefined;
|
|
499
|
+
};
|
|
500
|
+
style: {
|
|
501
|
+
flex: string;
|
|
502
|
+
};
|
|
503
|
+
isContainer: boolean;
|
|
504
|
+
isBusiObjContainer: boolean;
|
|
505
|
+
cmdgroup: string[];
|
|
506
|
+
platform: string;
|
|
507
|
+
icon: string;
|
|
508
|
+
description: string;
|
|
509
|
+
image: string;
|
|
510
|
+
groupsName: string;
|
|
511
|
+
setEvents: never[];
|
|
512
|
+
isLabelDropBoxChild: boolean;
|
|
513
|
+
hasValue: boolean;
|
|
514
|
+
components: never[];
|
|
515
|
+
path: string[];
|
|
516
|
+
fieldProps?: undefined;
|
|
517
|
+
engineApi?: undefined;
|
|
518
|
+
alias?: undefined;
|
|
379
519
|
isInlineBlock?: undefined;
|
|
380
520
|
} | {
|
|
381
521
|
id: string;
|
|
@@ -393,6 +533,7 @@ export declare const Form: {
|
|
|
393
533
|
tipSize: string;
|
|
394
534
|
tipWidth: string;
|
|
395
535
|
tipHeight: string;
|
|
536
|
+
placeholder: string;
|
|
396
537
|
required: boolean;
|
|
397
538
|
allowClear: boolean;
|
|
398
539
|
formItemIndex: number;
|
|
@@ -402,20 +543,22 @@ export declare const Form: {
|
|
|
402
543
|
prefixIconPosition?: undefined;
|
|
403
544
|
postfix?: undefined;
|
|
404
545
|
postfixIconPosition?: undefined;
|
|
405
|
-
placeholder?: undefined;
|
|
406
546
|
dataMask?: undefined;
|
|
407
547
|
step?: undefined;
|
|
408
548
|
min?: undefined;
|
|
409
549
|
formatting?: undefined;
|
|
550
|
+
tipLocation?: undefined;
|
|
551
|
+
tipPlacement?: undefined;
|
|
552
|
+
addonAfter?: undefined;
|
|
553
|
+
addonBefore?: undefined;
|
|
554
|
+
precision?: undefined;
|
|
410
555
|
radioType?: undefined;
|
|
411
556
|
optionMarginRight?: undefined;
|
|
412
557
|
staticData?: undefined;
|
|
413
558
|
options?: undefined;
|
|
414
559
|
checkAllText?: undefined;
|
|
415
560
|
selfSpan?: undefined;
|
|
416
|
-
tipPlacement?: undefined;
|
|
417
561
|
tipIcon?: undefined;
|
|
418
|
-
tipLocation?: undefined;
|
|
419
562
|
checkedAll?: undefined;
|
|
420
563
|
text?: undefined;
|
|
421
564
|
extendProps?: undefined;
|
|
@@ -482,7 +625,9 @@ export declare const Form: {
|
|
|
482
625
|
type?: undefined;
|
|
483
626
|
postfixStyle?: undefined;
|
|
484
627
|
};
|
|
485
|
-
style: {
|
|
628
|
+
style: {
|
|
629
|
+
flex?: undefined;
|
|
630
|
+
};
|
|
486
631
|
isContainer: boolean;
|
|
487
632
|
isBusiObjContainer: boolean;
|
|
488
633
|
cmdgroup: string[];
|
|
@@ -498,6 +643,7 @@ export declare const Form: {
|
|
|
498
643
|
fieldProps?: undefined;
|
|
499
644
|
engineApi?: undefined;
|
|
500
645
|
alias?: undefined;
|
|
646
|
+
hasValue?: undefined;
|
|
501
647
|
isInlineBlock?: undefined;
|
|
502
648
|
} | {
|
|
503
649
|
id: string;
|
|
@@ -517,6 +663,7 @@ export declare const Form: {
|
|
|
517
663
|
tipSize: string;
|
|
518
664
|
tipWidth: string;
|
|
519
665
|
tipHeight: string;
|
|
666
|
+
placeholder: string;
|
|
520
667
|
required: boolean;
|
|
521
668
|
formItemIndex: number;
|
|
522
669
|
fieldName: string;
|
|
@@ -538,17 +685,19 @@ export declare const Form: {
|
|
|
538
685
|
prefixIconPosition?: undefined;
|
|
539
686
|
postfix?: undefined;
|
|
540
687
|
postfixIconPosition?: undefined;
|
|
541
|
-
placeholder?: undefined;
|
|
542
688
|
allowClear?: undefined;
|
|
543
689
|
dataMask?: undefined;
|
|
544
690
|
step?: undefined;
|
|
545
691
|
min?: undefined;
|
|
546
692
|
formatting?: undefined;
|
|
693
|
+
tipLocation?: undefined;
|
|
694
|
+
tipPlacement?: undefined;
|
|
695
|
+
addonAfter?: undefined;
|
|
696
|
+
addonBefore?: undefined;
|
|
697
|
+
precision?: undefined;
|
|
547
698
|
checkAllText?: undefined;
|
|
548
699
|
selfSpan?: undefined;
|
|
549
|
-
tipPlacement?: undefined;
|
|
550
700
|
tipIcon?: undefined;
|
|
551
|
-
tipLocation?: undefined;
|
|
552
701
|
checkedAll?: undefined;
|
|
553
702
|
text?: undefined;
|
|
554
703
|
extendProps?: undefined;
|
|
@@ -615,7 +764,9 @@ export declare const Form: {
|
|
|
615
764
|
type?: undefined;
|
|
616
765
|
postfixStyle?: undefined;
|
|
617
766
|
};
|
|
618
|
-
style: {
|
|
767
|
+
style: {
|
|
768
|
+
flex?: undefined;
|
|
769
|
+
};
|
|
619
770
|
isContainer: boolean;
|
|
620
771
|
isBusiObjContainer: boolean;
|
|
621
772
|
cmdgroup: string[];
|
|
@@ -635,6 +786,7 @@ export declare const Form: {
|
|
|
635
786
|
path: string[];
|
|
636
787
|
engineApi?: undefined;
|
|
637
788
|
alias?: undefined;
|
|
789
|
+
hasValue?: undefined;
|
|
638
790
|
} | {
|
|
639
791
|
id: string;
|
|
640
792
|
label: string;
|
|
@@ -654,6 +806,7 @@ export declare const Form: {
|
|
|
654
806
|
labelCol: number;
|
|
655
807
|
wrapperCol: number;
|
|
656
808
|
formItemIndex: number;
|
|
809
|
+
placeholder: string;
|
|
657
810
|
fieldName: string;
|
|
658
811
|
tipPlacement: string;
|
|
659
812
|
tipIcon: {
|
|
@@ -681,12 +834,14 @@ export declare const Form: {
|
|
|
681
834
|
postfix?: undefined;
|
|
682
835
|
postfixIconPosition?: undefined;
|
|
683
836
|
required?: undefined;
|
|
684
|
-
placeholder?: undefined;
|
|
685
837
|
allowClear?: undefined;
|
|
686
838
|
dataMask?: undefined;
|
|
687
839
|
step?: undefined;
|
|
688
840
|
min?: undefined;
|
|
689
841
|
formatting?: undefined;
|
|
842
|
+
addonAfter?: undefined;
|
|
843
|
+
addonBefore?: undefined;
|
|
844
|
+
precision?: undefined;
|
|
690
845
|
radioType?: undefined;
|
|
691
846
|
optionMarginRight?: undefined;
|
|
692
847
|
text?: undefined;
|
|
@@ -754,7 +909,9 @@ export declare const Form: {
|
|
|
754
909
|
type?: undefined;
|
|
755
910
|
postfixStyle?: undefined;
|
|
756
911
|
};
|
|
757
|
-
style: {
|
|
912
|
+
style: {
|
|
913
|
+
flex?: undefined;
|
|
914
|
+
};
|
|
758
915
|
isContainer: boolean;
|
|
759
916
|
isBusiObjContainer: boolean;
|
|
760
917
|
cmdgroup: string[];
|
|
@@ -773,6 +930,7 @@ export declare const Form: {
|
|
|
773
930
|
path: string[];
|
|
774
931
|
engineApi?: undefined;
|
|
775
932
|
alias?: undefined;
|
|
933
|
+
hasValue?: undefined;
|
|
776
934
|
isInlineBlock?: undefined;
|
|
777
935
|
} | {
|
|
778
936
|
id: string;
|
|
@@ -793,6 +951,7 @@ export declare const Form: {
|
|
|
793
951
|
labelCol: number;
|
|
794
952
|
wrapperCol: number;
|
|
795
953
|
formItemIndex: number;
|
|
954
|
+
placeholder: string;
|
|
796
955
|
fieldName: string;
|
|
797
956
|
extendProps: {
|
|
798
957
|
key: string;
|
|
@@ -804,20 +963,22 @@ export declare const Form: {
|
|
|
804
963
|
postfix?: undefined;
|
|
805
964
|
postfixIconPosition?: undefined;
|
|
806
965
|
required?: undefined;
|
|
807
|
-
placeholder?: undefined;
|
|
808
966
|
allowClear?: undefined;
|
|
809
967
|
dataMask?: undefined;
|
|
810
968
|
step?: undefined;
|
|
811
969
|
min?: undefined;
|
|
812
970
|
formatting?: undefined;
|
|
971
|
+
tipLocation?: undefined;
|
|
972
|
+
tipPlacement?: undefined;
|
|
973
|
+
addonAfter?: undefined;
|
|
974
|
+
addonBefore?: undefined;
|
|
975
|
+
precision?: undefined;
|
|
813
976
|
radioType?: undefined;
|
|
814
977
|
optionMarginRight?: undefined;
|
|
815
978
|
staticData?: undefined;
|
|
816
979
|
options?: undefined;
|
|
817
980
|
checkAllText?: undefined;
|
|
818
|
-
tipPlacement?: undefined;
|
|
819
981
|
tipIcon?: undefined;
|
|
820
|
-
tipLocation?: undefined;
|
|
821
982
|
checkedAll?: undefined;
|
|
822
983
|
filter?: undefined;
|
|
823
984
|
mode?: undefined;
|
|
@@ -882,7 +1043,9 @@ export declare const Form: {
|
|
|
882
1043
|
type?: undefined;
|
|
883
1044
|
postfixStyle?: undefined;
|
|
884
1045
|
};
|
|
885
|
-
style: {
|
|
1046
|
+
style: {
|
|
1047
|
+
flex?: undefined;
|
|
1048
|
+
};
|
|
886
1049
|
isContainer: boolean;
|
|
887
1050
|
isBusiObjContainer: boolean;
|
|
888
1051
|
cmdgroup: string[];
|
|
@@ -902,6 +1065,7 @@ export declare const Form: {
|
|
|
902
1065
|
path: string[];
|
|
903
1066
|
engineApi?: undefined;
|
|
904
1067
|
alias?: undefined;
|
|
1068
|
+
hasValue?: undefined;
|
|
905
1069
|
} | {
|
|
906
1070
|
id: string;
|
|
907
1071
|
label: string;
|
|
@@ -947,13 +1111,16 @@ export declare const Form: {
|
|
|
947
1111
|
step?: undefined;
|
|
948
1112
|
min?: undefined;
|
|
949
1113
|
formatting?: undefined;
|
|
1114
|
+
tipLocation?: undefined;
|
|
1115
|
+
tipPlacement?: undefined;
|
|
1116
|
+
addonAfter?: undefined;
|
|
1117
|
+
addonBefore?: undefined;
|
|
1118
|
+
precision?: undefined;
|
|
950
1119
|
radioType?: undefined;
|
|
951
1120
|
optionMarginRight?: undefined;
|
|
952
1121
|
checkAllText?: undefined;
|
|
953
1122
|
selfSpan?: undefined;
|
|
954
|
-
tipPlacement?: undefined;
|
|
955
1123
|
tipIcon?: undefined;
|
|
956
|
-
tipLocation?: undefined;
|
|
957
1124
|
checkedAll?: undefined;
|
|
958
1125
|
text?: undefined;
|
|
959
1126
|
extendProps?: undefined;
|
|
@@ -1018,7 +1185,9 @@ export declare const Form: {
|
|
|
1018
1185
|
type?: undefined;
|
|
1019
1186
|
postfixStyle?: undefined;
|
|
1020
1187
|
};
|
|
1021
|
-
style: {
|
|
1188
|
+
style: {
|
|
1189
|
+
flex?: undefined;
|
|
1190
|
+
};
|
|
1022
1191
|
isContainer: boolean;
|
|
1023
1192
|
isBusiObjContainer: boolean;
|
|
1024
1193
|
cmdgroup: string[];
|
|
@@ -1037,6 +1206,7 @@ export declare const Form: {
|
|
|
1037
1206
|
components: never[];
|
|
1038
1207
|
path: string[];
|
|
1039
1208
|
alias?: undefined;
|
|
1209
|
+
hasValue?: undefined;
|
|
1040
1210
|
isInlineBlock?: undefined;
|
|
1041
1211
|
} | {
|
|
1042
1212
|
id: string;
|
|
@@ -1084,13 +1254,16 @@ export declare const Form: {
|
|
|
1084
1254
|
step?: undefined;
|
|
1085
1255
|
min?: undefined;
|
|
1086
1256
|
formatting?: undefined;
|
|
1257
|
+
tipLocation?: undefined;
|
|
1258
|
+
tipPlacement?: undefined;
|
|
1259
|
+
addonAfter?: undefined;
|
|
1260
|
+
addonBefore?: undefined;
|
|
1261
|
+
precision?: undefined;
|
|
1087
1262
|
radioType?: undefined;
|
|
1088
1263
|
optionMarginRight?: undefined;
|
|
1089
1264
|
checkAllText?: undefined;
|
|
1090
1265
|
selfSpan?: undefined;
|
|
1091
|
-
tipPlacement?: undefined;
|
|
1092
1266
|
tipIcon?: undefined;
|
|
1093
|
-
tipLocation?: undefined;
|
|
1094
1267
|
checkedAll?: undefined;
|
|
1095
1268
|
text?: undefined;
|
|
1096
1269
|
extendProps?: undefined;
|
|
@@ -1154,7 +1327,9 @@ export declare const Form: {
|
|
|
1154
1327
|
type?: undefined;
|
|
1155
1328
|
postfixStyle?: undefined;
|
|
1156
1329
|
};
|
|
1157
|
-
style: {
|
|
1330
|
+
style: {
|
|
1331
|
+
flex?: undefined;
|
|
1332
|
+
};
|
|
1158
1333
|
isContainer: boolean;
|
|
1159
1334
|
isBusiObjContainer: boolean;
|
|
1160
1335
|
cmdgroup: string[];
|
|
@@ -1173,6 +1348,7 @@ export declare const Form: {
|
|
|
1173
1348
|
components: never[];
|
|
1174
1349
|
path: string[];
|
|
1175
1350
|
alias?: undefined;
|
|
1351
|
+
hasValue?: undefined;
|
|
1176
1352
|
isInlineBlock?: undefined;
|
|
1177
1353
|
} | {
|
|
1178
1354
|
id: string;
|
|
@@ -1189,6 +1365,7 @@ export declare const Form: {
|
|
|
1189
1365
|
tipSize: string;
|
|
1190
1366
|
tipWidth: string;
|
|
1191
1367
|
tipHeight: string;
|
|
1368
|
+
placeholder: string;
|
|
1192
1369
|
selfSpan: string;
|
|
1193
1370
|
labelCol: number;
|
|
1194
1371
|
wrapperCol: number;
|
|
@@ -1224,19 +1401,21 @@ export declare const Form: {
|
|
|
1224
1401
|
postfix?: undefined;
|
|
1225
1402
|
postfixIconPosition?: undefined;
|
|
1226
1403
|
required?: undefined;
|
|
1227
|
-
placeholder?: undefined;
|
|
1228
1404
|
dataMask?: undefined;
|
|
1229
1405
|
step?: undefined;
|
|
1230
1406
|
min?: undefined;
|
|
1231
1407
|
formatting?: undefined;
|
|
1408
|
+
tipLocation?: undefined;
|
|
1409
|
+
tipPlacement?: undefined;
|
|
1410
|
+
addonAfter?: undefined;
|
|
1411
|
+
addonBefore?: undefined;
|
|
1412
|
+
precision?: undefined;
|
|
1232
1413
|
radioType?: undefined;
|
|
1233
1414
|
optionMarginRight?: undefined;
|
|
1234
1415
|
staticData?: undefined;
|
|
1235
1416
|
options?: undefined;
|
|
1236
1417
|
checkAllText?: undefined;
|
|
1237
|
-
tipPlacement?: undefined;
|
|
1238
1418
|
tipIcon?: undefined;
|
|
1239
|
-
tipLocation?: undefined;
|
|
1240
1419
|
checkedAll?: undefined;
|
|
1241
1420
|
text?: undefined;
|
|
1242
1421
|
extendProps?: undefined;
|
|
@@ -1298,7 +1477,9 @@ export declare const Form: {
|
|
|
1298
1477
|
type?: undefined;
|
|
1299
1478
|
postfixStyle?: undefined;
|
|
1300
1479
|
};
|
|
1301
|
-
style: {
|
|
1480
|
+
style: {
|
|
1481
|
+
flex?: undefined;
|
|
1482
|
+
};
|
|
1302
1483
|
isContainer: boolean;
|
|
1303
1484
|
isBusiObjContainer: boolean;
|
|
1304
1485
|
cmdgroup: string[];
|
|
@@ -1317,6 +1498,7 @@ export declare const Form: {
|
|
|
1317
1498
|
components: never[];
|
|
1318
1499
|
path: string[];
|
|
1319
1500
|
alias?: undefined;
|
|
1501
|
+
hasValue?: undefined;
|
|
1320
1502
|
isInlineBlock?: undefined;
|
|
1321
1503
|
} | {
|
|
1322
1504
|
id: string;
|
|
@@ -1335,6 +1517,7 @@ export declare const Form: {
|
|
|
1335
1517
|
tipHeight: string;
|
|
1336
1518
|
selfSpan: string;
|
|
1337
1519
|
labelCol: number;
|
|
1520
|
+
placeholder: string;
|
|
1338
1521
|
wrapperCol: number;
|
|
1339
1522
|
size: string;
|
|
1340
1523
|
expandTrigger: string;
|
|
@@ -1368,18 +1551,20 @@ export declare const Form: {
|
|
|
1368
1551
|
postfix?: undefined;
|
|
1369
1552
|
postfixIconPosition?: undefined;
|
|
1370
1553
|
required?: undefined;
|
|
1371
|
-
placeholder?: undefined;
|
|
1372
1554
|
dataMask?: undefined;
|
|
1373
1555
|
step?: undefined;
|
|
1374
1556
|
min?: undefined;
|
|
1375
1557
|
formatting?: undefined;
|
|
1558
|
+
tipLocation?: undefined;
|
|
1559
|
+
tipPlacement?: undefined;
|
|
1560
|
+
addonAfter?: undefined;
|
|
1561
|
+
addonBefore?: undefined;
|
|
1562
|
+
precision?: undefined;
|
|
1376
1563
|
radioType?: undefined;
|
|
1377
1564
|
optionMarginRight?: undefined;
|
|
1378
1565
|
staticData?: undefined;
|
|
1379
1566
|
checkAllText?: undefined;
|
|
1380
|
-
tipPlacement?: undefined;
|
|
1381
1567
|
tipIcon?: undefined;
|
|
1382
|
-
tipLocation?: undefined;
|
|
1383
1568
|
checkedAll?: undefined;
|
|
1384
1569
|
text?: undefined;
|
|
1385
1570
|
extendProps?: undefined;
|
|
@@ -1441,7 +1626,9 @@ export declare const Form: {
|
|
|
1441
1626
|
type?: undefined;
|
|
1442
1627
|
postfixStyle?: undefined;
|
|
1443
1628
|
};
|
|
1444
|
-
style: {
|
|
1629
|
+
style: {
|
|
1630
|
+
flex?: undefined;
|
|
1631
|
+
};
|
|
1445
1632
|
isContainer: boolean;
|
|
1446
1633
|
isBusiObjContainer: boolean;
|
|
1447
1634
|
cmdgroup: string[];
|
|
@@ -1460,6 +1647,7 @@ export declare const Form: {
|
|
|
1460
1647
|
path: string[];
|
|
1461
1648
|
engineApi?: undefined;
|
|
1462
1649
|
alias?: undefined;
|
|
1650
|
+
hasValue?: undefined;
|
|
1463
1651
|
isInlineBlock?: undefined;
|
|
1464
1652
|
} | {
|
|
1465
1653
|
id: string;
|
|
@@ -1499,15 +1687,18 @@ export declare const Form: {
|
|
|
1499
1687
|
allowClear?: undefined;
|
|
1500
1688
|
dataMask?: undefined;
|
|
1501
1689
|
formatting?: undefined;
|
|
1690
|
+
tipLocation?: undefined;
|
|
1691
|
+
tipPlacement?: undefined;
|
|
1692
|
+
addonAfter?: undefined;
|
|
1693
|
+
addonBefore?: undefined;
|
|
1694
|
+
precision?: undefined;
|
|
1502
1695
|
radioType?: undefined;
|
|
1503
1696
|
optionMarginRight?: undefined;
|
|
1504
1697
|
staticData?: undefined;
|
|
1505
1698
|
options?: undefined;
|
|
1506
1699
|
checkAllText?: undefined;
|
|
1507
1700
|
selfSpan?: undefined;
|
|
1508
|
-
tipPlacement?: undefined;
|
|
1509
1701
|
tipIcon?: undefined;
|
|
1510
|
-
tipLocation?: undefined;
|
|
1511
1702
|
checkedAll?: undefined;
|
|
1512
1703
|
text?: undefined;
|
|
1513
1704
|
extendProps?: undefined;
|
|
@@ -1566,7 +1757,9 @@ export declare const Form: {
|
|
|
1566
1757
|
type?: undefined;
|
|
1567
1758
|
postfixStyle?: undefined;
|
|
1568
1759
|
};
|
|
1569
|
-
style: {
|
|
1760
|
+
style: {
|
|
1761
|
+
flex?: undefined;
|
|
1762
|
+
};
|
|
1570
1763
|
isContainer: boolean;
|
|
1571
1764
|
isBusiObjContainer: boolean;
|
|
1572
1765
|
cmdgroup: string[];
|
|
@@ -1585,6 +1778,7 @@ export declare const Form: {
|
|
|
1585
1778
|
path: string[];
|
|
1586
1779
|
engineApi?: undefined;
|
|
1587
1780
|
alias?: undefined;
|
|
1781
|
+
hasValue?: undefined;
|
|
1588
1782
|
isInlineBlock?: undefined;
|
|
1589
1783
|
} | {
|
|
1590
1784
|
id: string;
|
|
@@ -1619,15 +1813,18 @@ export declare const Form: {
|
|
|
1619
1813
|
step?: undefined;
|
|
1620
1814
|
min?: undefined;
|
|
1621
1815
|
formatting?: undefined;
|
|
1816
|
+
tipLocation?: undefined;
|
|
1817
|
+
tipPlacement?: undefined;
|
|
1818
|
+
addonAfter?: undefined;
|
|
1819
|
+
addonBefore?: undefined;
|
|
1820
|
+
precision?: undefined;
|
|
1622
1821
|
radioType?: undefined;
|
|
1623
1822
|
optionMarginRight?: undefined;
|
|
1624
1823
|
staticData?: undefined;
|
|
1625
1824
|
options?: undefined;
|
|
1626
1825
|
checkAllText?: undefined;
|
|
1627
1826
|
selfSpan?: undefined;
|
|
1628
|
-
tipPlacement?: undefined;
|
|
1629
1827
|
tipIcon?: undefined;
|
|
1630
|
-
tipLocation?: undefined;
|
|
1631
1828
|
checkedAll?: undefined;
|
|
1632
1829
|
text?: undefined;
|
|
1633
1830
|
extendProps?: undefined;
|
|
@@ -1691,7 +1888,9 @@ export declare const Form: {
|
|
|
1691
1888
|
type?: undefined;
|
|
1692
1889
|
postfixStyle?: undefined;
|
|
1693
1890
|
};
|
|
1694
|
-
style: {
|
|
1891
|
+
style: {
|
|
1892
|
+
flex?: undefined;
|
|
1893
|
+
};
|
|
1695
1894
|
isContainer: boolean;
|
|
1696
1895
|
isBusiObjContainer: boolean;
|
|
1697
1896
|
cmdgroup: string[];
|
|
@@ -1721,6 +1920,7 @@ export declare const Form: {
|
|
|
1721
1920
|
path: string[];
|
|
1722
1921
|
engineApi?: undefined;
|
|
1723
1922
|
alias?: undefined;
|
|
1923
|
+
hasValue?: undefined;
|
|
1724
1924
|
isInlineBlock?: undefined;
|
|
1725
1925
|
} | {
|
|
1726
1926
|
id: string;
|
|
@@ -1766,15 +1966,18 @@ export declare const Form: {
|
|
|
1766
1966
|
step?: undefined;
|
|
1767
1967
|
min?: undefined;
|
|
1768
1968
|
formatting?: undefined;
|
|
1969
|
+
tipLocation?: undefined;
|
|
1970
|
+
tipPlacement?: undefined;
|
|
1971
|
+
addonAfter?: undefined;
|
|
1972
|
+
addonBefore?: undefined;
|
|
1973
|
+
precision?: undefined;
|
|
1769
1974
|
radioType?: undefined;
|
|
1770
1975
|
optionMarginRight?: undefined;
|
|
1771
1976
|
staticData?: undefined;
|
|
1772
1977
|
options?: undefined;
|
|
1773
1978
|
checkAllText?: undefined;
|
|
1774
1979
|
selfSpan?: undefined;
|
|
1775
|
-
tipPlacement?: undefined;
|
|
1776
1980
|
tipIcon?: undefined;
|
|
1777
|
-
tipLocation?: undefined;
|
|
1778
1981
|
checkedAll?: undefined;
|
|
1779
1982
|
text?: undefined;
|
|
1780
1983
|
extendProps?: undefined;
|
|
@@ -1835,7 +2038,9 @@ export declare const Form: {
|
|
|
1835
2038
|
type?: undefined;
|
|
1836
2039
|
postfixStyle?: undefined;
|
|
1837
2040
|
};
|
|
1838
|
-
style: {
|
|
2041
|
+
style: {
|
|
2042
|
+
flex?: undefined;
|
|
2043
|
+
};
|
|
1839
2044
|
isContainer: boolean;
|
|
1840
2045
|
isBusiObjContainer: boolean;
|
|
1841
2046
|
cmdgroup: string[];
|
|
@@ -1855,6 +2060,7 @@ export declare const Form: {
|
|
|
1855
2060
|
path: string[];
|
|
1856
2061
|
engineApi?: undefined;
|
|
1857
2062
|
alias?: undefined;
|
|
2063
|
+
hasValue?: undefined;
|
|
1858
2064
|
} | {
|
|
1859
2065
|
id: string;
|
|
1860
2066
|
label: string;
|
|
@@ -1928,14 +2134,17 @@ export declare const Form: {
|
|
|
1928
2134
|
step?: undefined;
|
|
1929
2135
|
min?: undefined;
|
|
1930
2136
|
formatting?: undefined;
|
|
2137
|
+
tipLocation?: undefined;
|
|
2138
|
+
tipPlacement?: undefined;
|
|
2139
|
+
addonAfter?: undefined;
|
|
2140
|
+
addonBefore?: undefined;
|
|
2141
|
+
precision?: undefined;
|
|
1931
2142
|
radioType?: undefined;
|
|
1932
2143
|
optionMarginRight?: undefined;
|
|
1933
2144
|
staticData?: undefined;
|
|
1934
2145
|
options?: undefined;
|
|
1935
2146
|
checkAllText?: undefined;
|
|
1936
|
-
tipPlacement?: undefined;
|
|
1937
2147
|
tipIcon?: undefined;
|
|
1938
|
-
tipLocation?: undefined;
|
|
1939
2148
|
checkedAll?: undefined;
|
|
1940
2149
|
text?: undefined;
|
|
1941
2150
|
extendProps?: undefined;
|
|
@@ -1985,7 +2194,9 @@ export declare const Form: {
|
|
|
1985
2194
|
type?: undefined;
|
|
1986
2195
|
postfixStyle?: undefined;
|
|
1987
2196
|
};
|
|
1988
|
-
style: {
|
|
2197
|
+
style: {
|
|
2198
|
+
flex?: undefined;
|
|
2199
|
+
};
|
|
1989
2200
|
isContainer: boolean;
|
|
1990
2201
|
isBusiObjContainer: boolean;
|
|
1991
2202
|
cmdgroup: string[];
|
|
@@ -2001,6 +2212,7 @@ export declare const Form: {
|
|
|
2001
2212
|
path: string[];
|
|
2002
2213
|
fieldProps?: undefined;
|
|
2003
2214
|
alias?: undefined;
|
|
2215
|
+
hasValue?: undefined;
|
|
2004
2216
|
isInlineBlock?: undefined;
|
|
2005
2217
|
} | {
|
|
2006
2218
|
id: string;
|
|
@@ -2036,15 +2248,18 @@ export declare const Form: {
|
|
|
2036
2248
|
step?: undefined;
|
|
2037
2249
|
min?: undefined;
|
|
2038
2250
|
formatting?: undefined;
|
|
2251
|
+
tipLocation?: undefined;
|
|
2252
|
+
tipPlacement?: undefined;
|
|
2253
|
+
addonAfter?: undefined;
|
|
2254
|
+
addonBefore?: undefined;
|
|
2255
|
+
precision?: undefined;
|
|
2039
2256
|
radioType?: undefined;
|
|
2040
2257
|
optionMarginRight?: undefined;
|
|
2041
2258
|
staticData?: undefined;
|
|
2042
2259
|
options?: undefined;
|
|
2043
2260
|
checkAllText?: undefined;
|
|
2044
2261
|
selfSpan?: undefined;
|
|
2045
|
-
tipPlacement?: undefined;
|
|
2046
2262
|
tipIcon?: undefined;
|
|
2047
|
-
tipLocation?: undefined;
|
|
2048
2263
|
checkedAll?: undefined;
|
|
2049
2264
|
text?: undefined;
|
|
2050
2265
|
extendProps?: undefined;
|
|
@@ -2107,7 +2322,9 @@ export declare const Form: {
|
|
|
2107
2322
|
type?: undefined;
|
|
2108
2323
|
postfixStyle?: undefined;
|
|
2109
2324
|
};
|
|
2110
|
-
style: {
|
|
2325
|
+
style: {
|
|
2326
|
+
flex?: undefined;
|
|
2327
|
+
};
|
|
2111
2328
|
isContainer: boolean;
|
|
2112
2329
|
isBusiObjContainer: boolean;
|
|
2113
2330
|
cmdgroup: string[];
|
|
@@ -2126,6 +2343,7 @@ export declare const Form: {
|
|
|
2126
2343
|
path: string[];
|
|
2127
2344
|
engineApi?: undefined;
|
|
2128
2345
|
alias?: undefined;
|
|
2346
|
+
hasValue?: undefined;
|
|
2129
2347
|
isInlineBlock?: undefined;
|
|
2130
2348
|
} | {
|
|
2131
2349
|
id: string;
|
|
@@ -2164,15 +2382,18 @@ export declare const Form: {
|
|
|
2164
2382
|
step?: undefined;
|
|
2165
2383
|
min?: undefined;
|
|
2166
2384
|
formatting?: undefined;
|
|
2385
|
+
tipLocation?: undefined;
|
|
2386
|
+
tipPlacement?: undefined;
|
|
2387
|
+
addonAfter?: undefined;
|
|
2388
|
+
addonBefore?: undefined;
|
|
2389
|
+
precision?: undefined;
|
|
2167
2390
|
radioType?: undefined;
|
|
2168
2391
|
optionMarginRight?: undefined;
|
|
2169
2392
|
staticData?: undefined;
|
|
2170
2393
|
options?: undefined;
|
|
2171
2394
|
checkAllText?: undefined;
|
|
2172
2395
|
selfSpan?: undefined;
|
|
2173
|
-
tipPlacement?: undefined;
|
|
2174
2396
|
tipIcon?: undefined;
|
|
2175
|
-
tipLocation?: undefined;
|
|
2176
2397
|
checkedAll?: undefined;
|
|
2177
2398
|
text?: undefined;
|
|
2178
2399
|
extendProps?: undefined;
|
|
@@ -2232,7 +2453,9 @@ export declare const Form: {
|
|
|
2232
2453
|
type?: undefined;
|
|
2233
2454
|
postfixStyle?: undefined;
|
|
2234
2455
|
};
|
|
2235
|
-
style: {
|
|
2456
|
+
style: {
|
|
2457
|
+
flex?: undefined;
|
|
2458
|
+
};
|
|
2236
2459
|
isContainer: boolean;
|
|
2237
2460
|
isBusiObjContainer: boolean;
|
|
2238
2461
|
cmdgroup: string[];
|
|
@@ -2251,6 +2474,7 @@ export declare const Form: {
|
|
|
2251
2474
|
path: string[];
|
|
2252
2475
|
engineApi?: undefined;
|
|
2253
2476
|
alias?: undefined;
|
|
2477
|
+
hasValue?: undefined;
|
|
2254
2478
|
isInlineBlock?: undefined;
|
|
2255
2479
|
} | {
|
|
2256
2480
|
id: string;
|
|
@@ -2290,14 +2514,17 @@ export declare const Form: {
|
|
|
2290
2514
|
step?: undefined;
|
|
2291
2515
|
min?: undefined;
|
|
2292
2516
|
formatting?: undefined;
|
|
2517
|
+
tipLocation?: undefined;
|
|
2518
|
+
tipPlacement?: undefined;
|
|
2519
|
+
addonAfter?: undefined;
|
|
2520
|
+
addonBefore?: undefined;
|
|
2521
|
+
precision?: undefined;
|
|
2293
2522
|
radioType?: undefined;
|
|
2294
2523
|
optionMarginRight?: undefined;
|
|
2295
2524
|
staticData?: undefined;
|
|
2296
2525
|
options?: undefined;
|
|
2297
2526
|
checkAllText?: undefined;
|
|
2298
|
-
tipPlacement?: undefined;
|
|
2299
2527
|
tipIcon?: undefined;
|
|
2300
|
-
tipLocation?: undefined;
|
|
2301
2528
|
checkedAll?: undefined;
|
|
2302
2529
|
text?: undefined;
|
|
2303
2530
|
extendProps?: undefined;
|
|
@@ -2357,7 +2584,9 @@ export declare const Form: {
|
|
|
2357
2584
|
type?: undefined;
|
|
2358
2585
|
postfixStyle?: undefined;
|
|
2359
2586
|
};
|
|
2360
|
-
style: {
|
|
2587
|
+
style: {
|
|
2588
|
+
flex?: undefined;
|
|
2589
|
+
};
|
|
2361
2590
|
isContainer: boolean;
|
|
2362
2591
|
isBusiObjContainer: boolean;
|
|
2363
2592
|
cmdgroup: string[];
|
|
@@ -2376,6 +2605,7 @@ export declare const Form: {
|
|
|
2376
2605
|
path: string[];
|
|
2377
2606
|
engineApi?: undefined;
|
|
2378
2607
|
alias?: undefined;
|
|
2608
|
+
hasValue?: undefined;
|
|
2379
2609
|
isInlineBlock?: undefined;
|
|
2380
2610
|
} | {
|
|
2381
2611
|
id: string;
|
|
@@ -2407,15 +2637,18 @@ export declare const Form: {
|
|
|
2407
2637
|
step?: undefined;
|
|
2408
2638
|
min?: undefined;
|
|
2409
2639
|
formatting?: undefined;
|
|
2640
|
+
tipLocation?: undefined;
|
|
2641
|
+
tipPlacement?: undefined;
|
|
2642
|
+
addonAfter?: undefined;
|
|
2643
|
+
addonBefore?: undefined;
|
|
2644
|
+
precision?: undefined;
|
|
2410
2645
|
radioType?: undefined;
|
|
2411
2646
|
optionMarginRight?: undefined;
|
|
2412
2647
|
staticData?: undefined;
|
|
2413
2648
|
options?: undefined;
|
|
2414
2649
|
checkAllText?: undefined;
|
|
2415
2650
|
selfSpan?: undefined;
|
|
2416
|
-
tipPlacement?: undefined;
|
|
2417
2651
|
tipIcon?: undefined;
|
|
2418
|
-
tipLocation?: undefined;
|
|
2419
2652
|
checkedAll?: undefined;
|
|
2420
2653
|
text?: undefined;
|
|
2421
2654
|
extendProps?: undefined;
|
|
@@ -2482,7 +2715,9 @@ export declare const Form: {
|
|
|
2482
2715
|
type?: undefined;
|
|
2483
2716
|
postfixStyle?: undefined;
|
|
2484
2717
|
};
|
|
2485
|
-
style: {
|
|
2718
|
+
style: {
|
|
2719
|
+
flex?: undefined;
|
|
2720
|
+
};
|
|
2486
2721
|
isContainer: boolean;
|
|
2487
2722
|
isBusiObjContainer: boolean;
|
|
2488
2723
|
cmdgroup: string[];
|
|
@@ -2501,6 +2736,7 @@ export declare const Form: {
|
|
|
2501
2736
|
path: string[];
|
|
2502
2737
|
engineApi?: undefined;
|
|
2503
2738
|
alias?: undefined;
|
|
2739
|
+
hasValue?: undefined;
|
|
2504
2740
|
isInlineBlock?: undefined;
|
|
2505
2741
|
} | {
|
|
2506
2742
|
id: string;
|
|
@@ -2537,15 +2773,18 @@ export declare const Form: {
|
|
|
2537
2773
|
step?: undefined;
|
|
2538
2774
|
min?: undefined;
|
|
2539
2775
|
formatting?: undefined;
|
|
2776
|
+
tipLocation?: undefined;
|
|
2777
|
+
tipPlacement?: undefined;
|
|
2778
|
+
addonAfter?: undefined;
|
|
2779
|
+
addonBefore?: undefined;
|
|
2780
|
+
precision?: undefined;
|
|
2540
2781
|
radioType?: undefined;
|
|
2541
2782
|
optionMarginRight?: undefined;
|
|
2542
2783
|
staticData?: undefined;
|
|
2543
2784
|
options?: undefined;
|
|
2544
2785
|
checkAllText?: undefined;
|
|
2545
2786
|
selfSpan?: undefined;
|
|
2546
|
-
tipPlacement?: undefined;
|
|
2547
2787
|
tipIcon?: undefined;
|
|
2548
|
-
tipLocation?: undefined;
|
|
2549
2788
|
checkedAll?: undefined;
|
|
2550
2789
|
text?: undefined;
|
|
2551
2790
|
extendProps?: undefined;
|
|
@@ -2607,7 +2846,9 @@ export declare const Form: {
|
|
|
2607
2846
|
type?: undefined;
|
|
2608
2847
|
postfixStyle?: undefined;
|
|
2609
2848
|
};
|
|
2610
|
-
style: {
|
|
2849
|
+
style: {
|
|
2850
|
+
flex?: undefined;
|
|
2851
|
+
};
|
|
2611
2852
|
isContainer: boolean;
|
|
2612
2853
|
isBusiObjContainer: boolean;
|
|
2613
2854
|
cmdgroup: string[];
|
|
@@ -2637,6 +2878,7 @@ export declare const Form: {
|
|
|
2637
2878
|
components: never[];
|
|
2638
2879
|
path: string[];
|
|
2639
2880
|
alias?: undefined;
|
|
2881
|
+
hasValue?: undefined;
|
|
2640
2882
|
isInlineBlock?: undefined;
|
|
2641
2883
|
} | {
|
|
2642
2884
|
id: string;
|
|
@@ -2678,15 +2920,18 @@ export declare const Form: {
|
|
|
2678
2920
|
step?: undefined;
|
|
2679
2921
|
min?: undefined;
|
|
2680
2922
|
formatting?: undefined;
|
|
2923
|
+
tipLocation?: undefined;
|
|
2924
|
+
tipPlacement?: undefined;
|
|
2925
|
+
addonAfter?: undefined;
|
|
2926
|
+
addonBefore?: undefined;
|
|
2927
|
+
precision?: undefined;
|
|
2681
2928
|
radioType?: undefined;
|
|
2682
2929
|
optionMarginRight?: undefined;
|
|
2683
2930
|
staticData?: undefined;
|
|
2684
2931
|
options?: undefined;
|
|
2685
2932
|
checkAllText?: undefined;
|
|
2686
2933
|
selfSpan?: undefined;
|
|
2687
|
-
tipPlacement?: undefined;
|
|
2688
2934
|
tipIcon?: undefined;
|
|
2689
|
-
tipLocation?: undefined;
|
|
2690
2935
|
checkedAll?: undefined;
|
|
2691
2936
|
text?: undefined;
|
|
2692
2937
|
extendProps?: undefined;
|
|
@@ -2747,7 +2992,9 @@ export declare const Form: {
|
|
|
2747
2992
|
random?: undefined;
|
|
2748
2993
|
digit?: undefined;
|
|
2749
2994
|
};
|
|
2750
|
-
style: {
|
|
2995
|
+
style: {
|
|
2996
|
+
flex?: undefined;
|
|
2997
|
+
};
|
|
2751
2998
|
isContainer: boolean;
|
|
2752
2999
|
isBusiObjContainer: boolean;
|
|
2753
3000
|
cmdgroup: string[];
|
|
@@ -2763,6 +3010,7 @@ export declare const Form: {
|
|
|
2763
3010
|
fieldProps?: undefined;
|
|
2764
3011
|
engineApi?: undefined;
|
|
2765
3012
|
alias?: undefined;
|
|
3013
|
+
hasValue?: undefined;
|
|
2766
3014
|
isInlineBlock?: undefined;
|
|
2767
3015
|
})[];
|
|
2768
3016
|
path: string[];
|
package/dist/config/Form.js
CHANGED
|
@@ -108,8 +108,8 @@ export var Form = {
|
|
|
108
108
|
// 单选组、复选组无边框
|
|
109
109
|
// 下拉单选与下拉复选样式一致
|
|
110
110
|
// 滑动输入条没有边框样式
|
|
111
|
-
itemCustomTpl: ".pcFactory-from-component{\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n line-height: 2;\n overflow: hidden;\n }\n .modalSelect .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n padding-left: 8px;\n border-color: itemBorderColor;\n height: calc(fontSize * 2 + 4px);\n min-height: 32px;\n line-height: 2;\n color: textColor;\n font-size: fontSize;\n }\n .modalSelect .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n }\n .ued-input-wrap .pcfactory-input-wrapper.pcfactory-input-group .pcfactory-input-group-addon{\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 2px);\n }\n .ued-input-wrap.postfixGreyStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixBlueStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixWhiteStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixNoBorderStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.nonePostfixStyle .pcfactory-input-group-addon:last-child{\n border-top-right-radius: itemBorderRadius;\n border-bottom-right-radius: itemBorderRadius;\n border-color: itemBorderColor;\n }\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number .pcfactory-input-number-input{\n line-height: fontSize;\n }\n .verificationCodePC-inputContent{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .verificationCodePC-inputContent .normalArea{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus, .pcfactory-input-affix-wrapper-focused {\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus .pcfactory-input ued-textarea-wrap{\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:hover {\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:focus, .pcfactory-input-number-focused{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select:not(.pcfactory-select-disabled):hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select-focused .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-picker:hover, .pcfactory-picker-focused{\n border-color: itemHoverBorderColor !important;\n }\n .ued-select-wrap:hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input:hover{\n border-color: itemHoverBorderColor !important;\n }\n .ued-textarea-wrap:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:focus, .verificationCodePC-titleTop:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:hover, .verificationCodePC-titleTop:hover{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC .pcfactory-input{\n box-shadow: none !important;\n border-style: none !important;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input-affix-wrapper.pcfactory-input-affix-wrapper-textarea-with-clear-btn{\n min-height: calc(fontSize * 4 + 2px);\n }\n .pcfactory-input-affix-wrapper-textarea-with-clear-btn .pcfactory-input-clear-icon{\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n overflow: hidden;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-button-wrapper {\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n height:auto;\n min-height: 32px;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select.ued-select-wrap{\n color: textColor;\n font-size: fontSize;\n overflow: hidden;\n }\n .pcfactory-select.ued-select-wrap .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-datePicker-wrap.pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n }\n .pcfactory-picker-input>input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-open .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-item, .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-placeholder{\n
|
|
112
|
-
tpl: ".ued-legacy-form-wrap{\n background-color: backgroundColor;\n .pcFactory-from-component{\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n line-height: 2;\n overflow: hidden;\n }\n .modalSelect .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n padding-left: 8px;\n border-color: itemBorderColor;\n height: calc(fontSize * 2 + 4px);\n min-height: 32px;\n line-height: 2;\n color: textColor;\n font-size: fontSize;\n }\n .modalSelect .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n }\n .ued-input-wrap .pcfactory-input-wrapper.pcfactory-input-group .pcfactory-input-group-addon{\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 2px);\n }\n .ued-input-wrap.postfixGreyStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixBlueStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixWhiteStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixNoBorderStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.nonePostfixStyle .pcfactory-input-group-addon:last-child{\n border-top-right-radius: itemBorderRadius;\n border-bottom-right-radius: itemBorderRadius;\n border-color: itemBorderColor;\n }\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number .pcfactory-input-number-input{\n line-height: fontSize;\n }\n .verificationCodePC-inputContent{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .verificationCodePC-inputContent .normalArea{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus, .pcfactory-input-affix-wrapper-focused {\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus .pcfactory-input ued-textarea-wrap{\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:hover {\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:focus, .pcfactory-input-number-focused{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select:not(.pcfactory-select-disabled):hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select-focused .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-picker:hover, .pcfactory-picker-focused{\n border-color: itemHoverBorderColor !important;\n }\n .ued-select-wrap:hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input:hover{\n border-color: itemHoverBorderColor !important;\n }\n .ued-textarea-wrap:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:focus, .verificationCodePC-titleTop:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:hover, .verificationCodePC-titleTop:hover{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC .pcfactory-input{\n box-shadow: none !important;\n border-style: none !important;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input-affix-wrapper.pcfactory-input-affix-wrapper-textarea-with-clear-btn{\n min-height: calc(fontSize * 4 + 2px);\n }\n .pcfactory-input-affix-wrapper-textarea-with-clear-btn .pcfactory-input-clear-icon{\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n overflow: hidden;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-button-wrapper {\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n height:auto;\n min-height: 32px;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select.ued-select-wrap{\n color: textColor;\n font-size: fontSize;\n overflow: hidden;\n }\n .pcfactory-select.ued-select-wrap .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-datePicker-wrap.pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n }\n .pcfactory-picker-input>input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-open .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-item, .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-placeholder{\n color: textColor;\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 4px);\n }\n .pcfactory-select-multiple .ued-select-checked-tag{\n color: textColor;\n font-size: fontSize;\n min-height: 24px;\n height: auto;\n padding: 4px 8px 4px 8px;\n line-height: 1.5715;\n }\n .pcfactory-select-single:not(.pcfactory-select-customize-input) .pcfactory-select-selector::after{\n line-height: fontSize;\n }\n span.pcfactory-radio+*{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-selector{\n height: auto;\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-wrap .pcfactory-select-selector {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n \n .pcfactory-checkbox+span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n height: auto;\n }\n .ued-cascader-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker-input > input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button>span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-item, .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n font-size: fontSize;\n }\n .pcfactory-select-multiple .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n }\n .ued-rateContainer .pcfactory-rate{\n font-size: fontSize;\n }\n .ued-rateContainer-rateText{\n color: textColor;\n font-size: fontSize;\n }\n }\n }\n \n ",
|
|
111
|
+
itemCustomTpl: ".pcFactory-from-component{\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n line-height: 2;\n overflow: hidden;\n }\n .modalSelect .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n padding-left: 8px;\n border-color: itemBorderColor;\n height: calc(fontSize * 2 + 4px);\n min-height: 32px;\n line-height: 2;\n color: textColor;\n font-size: fontSize;\n }\n .modalSelect .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n }\n .ued-input-wrap .pcfactory-input-wrapper.pcfactory-input-group .pcfactory-input-group-addon{\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 2px);\n }\n .ued-input-wrap.postfixGreyStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixBlueStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixWhiteStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixNoBorderStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.nonePostfixStyle .pcfactory-input-group-addon:last-child{\n border-top-right-radius: itemBorderRadius;\n border-bottom-right-radius: itemBorderRadius;\n border-color: itemBorderColor;\n }\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number .pcfactory-input-number-input{\n line-height: fontSize;\n }\n .verificationCodePC-inputContent{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .verificationCodePC-inputContent .normalArea{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number-group-wrapper .pcfactory-input-number-wrapper.pcfactory-input-number-group:focus{\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number-group-wrapper .pcfactory-input-number-wrapper.pcfactory-input-number-group:hover{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus, .pcfactory-input-affix-wrapper-focused {\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus .pcfactory-input ued-textarea-wrap{\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:hover {\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:focus, .pcfactory-input-number-focused{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select:not(.pcfactory-select-disabled):hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select-focused .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-picker:hover, .pcfactory-picker-focused{\n border-color: itemHoverBorderColor !important;\n }\n .ued-select-wrap:hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input:hover{\n border-color: itemHoverBorderColor !important;\n }\n .ued-textarea-wrap:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:focus, .verificationCodePC-titleTop:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:hover, .verificationCodePC-titleTop:hover{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC .pcfactory-input{\n box-shadow: none !important;\n border-style: none !important;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input-affix-wrapper.pcfactory-input-affix-wrapper-textarea-with-clear-btn{\n min-height: calc(fontSize * 4 + 2px);\n }\n .pcfactory-input-affix-wrapper-textarea-with-clear-btn .pcfactory-input-clear-icon{\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number-group-wrapper .pcfactory-input-number-wrapper.pcfactory-input-number-group .pcfactory-input-number.ued-inputNumber-wrap{\n color: textColor;\n border: none !import;\n box-shadow: none;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n overflow: hidden;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-button-wrapper {\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n height:auto;\n min-height: 32px;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select.ued-select-wrap{\n color: textColor;\n font-size: fontSize;\n overflow: hidden;\n }\n .pcfactory-select.ued-select-wrap .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-datePicker-wrap.pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n }\n .pcfactory-picker-input>input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-open .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-item, .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 4px);\n }\n .pcfactory-select-multiple .ued-select-checked-tag{\n color: textColor;\n font-size: fontSize;\n min-height: 24px;\n height: auto;\n padding: 4px 8px 4px 8px;\n line-height: 1.5715;\n }\n .pcfactory-select-single:not(.pcfactory-select-customize-input) .pcfactory-select-selector::after{\n line-height: fontSize;\n }\n span.pcfactory-radio+*{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-selector{\n height: auto;\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-wrap .pcfactory-select-selector {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n \n .pcfactory-checkbox+span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n height: auto;\n }\n .ued-cascader-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker-input > input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button>span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-item, .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n font-size: fontSize;\n }\n .pcfactory-select-multiple .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n }\n .ued-rateContainer .pcfactory-rate{\n font-size: fontSize;\n }\n .ued-rateContainer-rateText{\n color: textColor;\n font-size: fontSize;\n }\n }",
|
|
112
|
+
tpl: ".ued-legacy-form-wrap{\n background-color: backgroundColor;\n .pcFactory-from-component{\n .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: auto;\n min-height: 32px;\n line-height: 2;\n overflow: hidden;\n }\n .modalSelect .pcfactory-select:not(.pcfactory-select-customize-input) .pcfactory-select-selector{\n border-top-right-radius: 0;\n border-bottom-right-radius: 0;\n padding-left: 8px;\n border-color: itemBorderColor;\n height: calc(fontSize * 2 + 4px);\n min-height: 32px;\n line-height: 2;\n color: textColor;\n font-size: fontSize;\n }\n .modalSelect .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n }\n .ued-input-wrap .pcfactory-input-wrapper.pcfactory-input-group .pcfactory-input-group-addon{\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 2px);\n }\n .ued-input-wrap.postfixGreyStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixBlueStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixWhiteStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.postfixNoBorderStyle .pcfactory-input-group-addon:last-child, .ued-input-wrap.nonePostfixStyle .pcfactory-input-group-addon:last-child{\n border-top-right-radius: itemBorderRadius;\n border-bottom-right-radius: itemBorderRadius;\n border-color: itemBorderColor;\n }\n .verificationCodePC, .verificationCodePC-titleTop{\n border: 1px solid itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number .pcfactory-input-number-input{\n line-height: fontSize;\n }\n .verificationCodePC-inputContent{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .verificationCodePC-inputContent .normalArea{\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-form-item-label>label{\n color: labelTextColor;\n line-height: labelLineHeight;\n font-size: labelFontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number-group-wrapper .pcfactory-input-number-wrapper.pcfactory-input-number-group:focus{\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number-group-wrapper .pcfactory-input-number-wrapper.pcfactory-input-number-group:hover{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:not(.pcfactory-input-affix-wrapper-disabled):hover{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus, .pcfactory-input-affix-wrapper-focused {\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input-affix-wrapper:focus .pcfactory-input ued-textarea-wrap{\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:hover {\n border-color: itemHoverBorderColor !important;\n }\n .ued-inputNumber-wrap.pcfactory-input-number:focus, .pcfactory-input-number-focused{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select:not(.pcfactory-select-disabled):hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-select-focused .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-picker:hover, .pcfactory-picker-focused{\n border-color: itemHoverBorderColor !important;\n }\n .ued-select-wrap:hover .pcfactory-select-selector{\n border-color: itemHoverBorderColor !important;\n }\n .pcfactory-input:hover{\n border-color: itemHoverBorderColor !important;\n }\n .ued-textarea-wrap:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:focus, .verificationCodePC-titleTop:focus{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC:hover, .verificationCodePC-titleTop:hover{\n border-color: itemHoverBorderColor !important;\n }\n .verificationCodePC .pcfactory-input{\n box-shadow: none !important;\n border-style: none !important;\n }\n .pcfactory-input-affix-wrapper {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input-affix-wrapper.pcfactory-input-affix-wrapper-textarea-with-clear-btn{\n min-height: calc(fontSize * 4 + 2px);\n }\n .pcfactory-input-affix-wrapper-textarea-with-clear-btn .pcfactory-input-clear-icon{\n font-size: fontSize;\n }\n .ued-inputNumber-wrap.pcfactory-input-number-group-wrapper .pcfactory-input-number-wrapper.pcfactory-input-number-group .pcfactory-input-number.ued-inputNumber-wrap{\n color: textColor;\n border: none !import;\n box-shadow: none;\n }\n .ued-inputNumber-wrap.pcfactory-input-number{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n overflow: hidden;\n height: calc(fontSize * 2 + 2px);\n min-height: 32px;\n }\n .pcfactory-input{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-radio-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-radio-button-wrapper {\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n height:auto;\n min-height: 32px;\n }\n .pcfactory-checkbox-wrapper{\n color: textColor;\n font-size: fontSize;\n line-height: 2;\n }\n .pcfactory-select.ued-select-wrap{\n color: textColor;\n font-size: fontSize;\n overflow: hidden;\n }\n .pcfactory-select.ued-select-wrap .pcfactory-select-selector{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-datePicker-wrap.pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n color: textColor;\n }\n .pcfactory-picker-input>input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-open .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-item, .pcfactory-select-single.pcfactory-select-show-arrow .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n line-height: calc(fontSize * 2 + 4px);\n }\n .pcfactory-select-multiple .ued-select-checked-tag{\n color: textColor;\n font-size: fontSize;\n min-height: 24px;\n height: auto;\n padding: 4px 8px 4px 8px;\n line-height: 1.5715;\n }\n .pcfactory-select-single:not(.pcfactory-select-customize-input) .pcfactory-select-selector::after{\n line-height: fontSize;\n }\n span.pcfactory-radio+*{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-select-selector{\n height: auto;\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .ued-select-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .ued-select-wrap .pcfactory-select-selector {\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n \n .pcfactory-checkbox+span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n height: auto;\n }\n .ued-cascader-wrap .pcfactory-select-selection-item{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker-input > input{\n color: textColor;\n font-size: fontSize;\n }\n .pcfactory-picker{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button>span{\n color: textColor;\n font-size: fontSize;\n }\n .ued-stdupload-wrap .pcfactory-upload.pcfactory-upload-select.pcfactory-upload-select-text button{\n border-color: itemBorderColor;\n border-radius: itemBorderRadius;\n }\n .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-item, .pcfactory-select-single .pcfactory-select-selector .pcfactory-select-selection-placeholder{\n line-height: calc(fontSize * 2 + 4px);\n font-size: fontSize;\n }\n .pcfactory-select-multiple .pcfactory-select-selection-placeholder{\n font-size: fontSize;\n }\n .ued-rateContainer .pcfactory-rate{\n font-size: fontSize;\n }\n .ued-rateContainer-rateText{\n color: textColor;\n font-size: fontSize;\n }\n }\n }\n \n ",
|
|
113
113
|
components: [{
|
|
114
114
|
id: 'Form_180373',
|
|
115
115
|
label: '表单',
|
|
@@ -210,6 +210,7 @@ export var Form = {
|
|
|
210
210
|
tipWidth: '240px',
|
|
211
211
|
tipHeight: 'auto',
|
|
212
212
|
required: false,
|
|
213
|
+
placeholder: '只能输数字',
|
|
213
214
|
min: 0,
|
|
214
215
|
formatting: '',
|
|
215
216
|
formItemIndex: 1,
|
|
@@ -233,6 +234,50 @@ export var Form = {
|
|
|
233
234
|
isLabelDropBoxChild: false,
|
|
234
235
|
components: [],
|
|
235
236
|
path: ['998509', 'Form_180373']
|
|
237
|
+
}, {
|
|
238
|
+
id: 'InputNumber_166489',
|
|
239
|
+
label: '数字输入框',
|
|
240
|
+
compName: 'InputNumber',
|
|
241
|
+
type: 'InputNumber',
|
|
242
|
+
compType: 2,
|
|
243
|
+
compLib: 'comm',
|
|
244
|
+
props: {
|
|
245
|
+
name: '数字输入框',
|
|
246
|
+
basicStatus: 1,
|
|
247
|
+
size: 'large',
|
|
248
|
+
labelCol: 8,
|
|
249
|
+
wrapperCol: 16,
|
|
250
|
+
step: 1,
|
|
251
|
+
titleTip: 'text',
|
|
252
|
+
tipSize: 'custom',
|
|
253
|
+
tipWidth: '240px',
|
|
254
|
+
tipHeight: 'auto',
|
|
255
|
+
formItemIndex: 0,
|
|
256
|
+
fieldName: 'id',
|
|
257
|
+
tipLocation: 'before',
|
|
258
|
+
tipPlacement: 'bottom',
|
|
259
|
+
addonAfter: 'cm',
|
|
260
|
+
addonBefore: 'www',
|
|
261
|
+
precision: 2,
|
|
262
|
+
placeholder: '只能输数字',
|
|
263
|
+
tipContent: '牛牛牛牛牛'
|
|
264
|
+
},
|
|
265
|
+
style: {
|
|
266
|
+
flex: ''
|
|
267
|
+
},
|
|
268
|
+
isContainer: false,
|
|
269
|
+
isBusiObjContainer: false,
|
|
270
|
+
cmdgroup: ['basic'],
|
|
271
|
+
platform: 'pc',
|
|
272
|
+
icon: 'InputNumber',
|
|
273
|
+
description: '',
|
|
274
|
+
image: '',
|
|
275
|
+
groupsName: '数据录入',
|
|
276
|
+
setEvents: [],
|
|
277
|
+
isLabelDropBoxChild: false,
|
|
278
|
+
hasValue: true,
|
|
279
|
+
components: [],
|
|
280
|
+
path: ['3446976', 'View_3446976_1', 'Form_709261']
|
|
236
281
|
}, {
|
|
237
282
|
id: 'Password_218584',
|
|
238
283
|
label: '密码框',
|
|
@@ -249,6 +294,7 @@ export var Form = {
|
|
|
249
294
|
tipSize: 'default',
|
|
250
295
|
tipWidth: '240px',
|
|
251
296
|
tipHeight: 'auto',
|
|
297
|
+
placeholder: '请输入密码',
|
|
252
298
|
required: false,
|
|
253
299
|
allowClear: true,
|
|
254
300
|
formItemIndex: 2,
|
|
@@ -285,6 +331,7 @@ export var Form = {
|
|
|
285
331
|
tipSize: 'default',
|
|
286
332
|
tipWidth: '240px',
|
|
287
333
|
tipHeight: 'auto',
|
|
334
|
+
placeholder: '请选择',
|
|
288
335
|
required: false,
|
|
289
336
|
formItemIndex: 3,
|
|
290
337
|
fieldName: 'dsgc',
|
|
@@ -347,6 +394,7 @@ export var Form = {
|
|
|
347
394
|
labelCol: 8,
|
|
348
395
|
wrapperCol: 16,
|
|
349
396
|
formItemIndex: 4,
|
|
397
|
+
placeholder: '请选择',
|
|
350
398
|
fieldName: 'savcrd',
|
|
351
399
|
tipPlacement: 'top',
|
|
352
400
|
tipIcon: {
|
|
@@ -413,6 +461,7 @@ export var Form = {
|
|
|
413
461
|
labelCol: 8,
|
|
414
462
|
wrapperCol: 16,
|
|
415
463
|
formItemIndex: 5,
|
|
464
|
+
placeholder: '请选择',
|
|
416
465
|
fieldName: 'ads',
|
|
417
466
|
extendProps: [{
|
|
418
467
|
key: 'ere',
|
|
@@ -580,6 +629,7 @@ export var Form = {
|
|
|
580
629
|
tipSize: 'default',
|
|
581
630
|
tipWidth: '240px',
|
|
582
631
|
tipHeight: 'auto',
|
|
632
|
+
placeholder: '请选择',
|
|
583
633
|
selfSpan: '',
|
|
584
634
|
labelCol: 8,
|
|
585
635
|
wrapperCol: 16,
|
|
@@ -662,6 +712,7 @@ export var Form = {
|
|
|
662
712
|
tipHeight: 'auto',
|
|
663
713
|
selfSpan: '',
|
|
664
714
|
labelCol: 8,
|
|
715
|
+
placeholder: '请选择',
|
|
665
716
|
wrapperCol: 16,
|
|
666
717
|
size: 'default',
|
|
667
718
|
expandTrigger: 'click',
|