@blueking/chat-x 0.0.1-beta.9 → 0.0.2
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/components/ai-buttons/file-upload-btn/file-upload-btn.vue.d.ts +1 -0
- package/dist/components/ai-buttons/tool-btn/tool-btn.vue.d.ts +3 -0
- package/dist/components/ai-selection/ai-selection.vue.d.ts +2 -0
- package/dist/components/chat-content/reference-content/reference-content.vue.d.ts +1 -0
- package/dist/components/chat-input/ai-slash-input/ai-slash-input.vue.d.ts +9 -13
- package/dist/components/chat-input/chat-input.vue.d.ts +8 -8
- package/dist/components/chat-input/input-attachment/input-attachment.vue.d.ts +1 -0
- package/dist/components/chat-message/loading-message/loading-message.vue.d.ts +11 -1
- package/dist/components/chat-message/message-container/message-container.vue.d.ts +324 -0
- package/dist/components/chat-message/message-render/message-render.vue.d.ts +1 -1
- package/dist/components/chat-message/user-message/user-message.vue.d.ts +1 -1
- package/dist/components/markdown-token/code-content/code-content.vue.d.ts +1 -0
- package/dist/components/message-tools/delete-tool/delete-tool.vue.d.ts +19 -0
- package/dist/components/message-tools/message-tools.vue.d.ts +2 -1
- package/dist/composables/use-container-scroll.d.ts +4 -0
- package/dist/composables/use-observer-visible-list.d.ts +2 -2
- package/dist/index.css +1 -1
- package/dist/index.js +604 -416
- package/dist/index.js.map +1 -1
- package/dist/lang/lang.d.ts +5 -1
- package/dist/types/shortcut.d.ts +1 -0
- package/package.json +3 -2
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { type Message, type UserMessage, MessageRole, MessageStatus } from '../../../ag-ui/types';
|
|
2
2
|
import { MessageToolsStatus } from '../../../types/tool';
|
|
3
|
+
import { type MessageToolsProps } from '../../message-tools/message-tools.vue';
|
|
3
4
|
import type { IToolBtn, TagSchema } from '../../../types';
|
|
4
5
|
/**
|
|
5
6
|
* Agent 工具操作回调类型
|
|
@@ -26,6 +27,7 @@ type __VLS_Props = {
|
|
|
26
27
|
messages: Message[];
|
|
27
28
|
messageStatus?: MessageStatus;
|
|
28
29
|
messageToolsStatus?: MessageToolsStatus;
|
|
30
|
+
messageToolsTippyOptions?: MessageToolsProps['tippyOptions'];
|
|
29
31
|
onAgentAction?: AgentActionCallback;
|
|
30
32
|
onAgentFeedback?: AgentFeedbackCallback;
|
|
31
33
|
onUserAction?: UserActionCallback;
|
|
@@ -90,6 +92,7 @@ declare var __VLS_9: {
|
|
|
90
92
|
rows?: number | undefined;
|
|
91
93
|
}[];
|
|
92
94
|
shortcut?: {
|
|
95
|
+
alias?: string | undefined;
|
|
93
96
|
components?: ({
|
|
94
97
|
props: {
|
|
95
98
|
readonly [x: string]: unknown;
|
|
@@ -136,6 +139,7 @@ declare var __VLS_9: {
|
|
|
136
139
|
maxlength?: number | undefined;
|
|
137
140
|
rules?: unknown[] | undefined;
|
|
138
141
|
errorDisplayType?: string | undefined;
|
|
142
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
139
143
|
} | undefined;
|
|
140
144
|
type: "checkboxGroup";
|
|
141
145
|
} | {
|
|
@@ -165,6 +169,7 @@ declare var __VLS_9: {
|
|
|
165
169
|
maxlength?: number | undefined;
|
|
166
170
|
rules?: unknown[] | undefined;
|
|
167
171
|
errorDisplayType?: string | undefined;
|
|
172
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
168
173
|
} | undefined;
|
|
169
174
|
props?: {
|
|
170
175
|
readonly [x: string]: unknown;
|
|
@@ -193,6 +198,7 @@ declare var __VLS_9: {
|
|
|
193
198
|
withValidate?: boolean | undefined;
|
|
194
199
|
overMaxLengthLimit?: boolean | undefined;
|
|
195
200
|
showOverflowTooltips?: boolean | undefined;
|
|
201
|
+
tooltipsOptions?: {} | undefined;
|
|
196
202
|
autosize?: boolean | {
|
|
197
203
|
minRows?: number | undefined;
|
|
198
204
|
maxRows?: number | undefined;
|
|
@@ -227,6 +233,7 @@ declare var __VLS_9: {
|
|
|
227
233
|
maxlength?: number | undefined;
|
|
228
234
|
rules?: unknown[] | undefined;
|
|
229
235
|
errorDisplayType?: string | undefined;
|
|
236
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
230
237
|
} | undefined;
|
|
231
238
|
props?: {
|
|
232
239
|
readonly [x: string]: unknown;
|
|
@@ -255,6 +262,7 @@ declare var __VLS_9: {
|
|
|
255
262
|
withValidate?: boolean | undefined;
|
|
256
263
|
overMaxLengthLimit?: boolean | undefined;
|
|
257
264
|
showOverflowTooltips?: boolean | undefined;
|
|
265
|
+
tooltipsOptions?: {} | undefined;
|
|
258
266
|
autosize?: boolean | {
|
|
259
267
|
minRows?: number | undefined;
|
|
260
268
|
maxRows?: number | undefined;
|
|
@@ -305,6 +313,7 @@ declare var __VLS_9: {
|
|
|
305
313
|
maxlength?: number | undefined;
|
|
306
314
|
rules?: unknown[] | undefined;
|
|
307
315
|
errorDisplayType?: string | undefined;
|
|
316
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
308
317
|
} | undefined;
|
|
309
318
|
type: "radioGroup";
|
|
310
319
|
} | {
|
|
@@ -355,6 +364,7 @@ declare var __VLS_9: {
|
|
|
355
364
|
keepSearchValue?: boolean | undefined;
|
|
356
365
|
searchWithPinyin?: boolean | undefined;
|
|
357
366
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
367
|
+
inputTooltipsOptions?: {} | undefined;
|
|
358
368
|
options: {
|
|
359
369
|
readonly [x: string]: unknown;
|
|
360
370
|
disabled?: boolean | undefined;
|
|
@@ -387,6 +397,7 @@ declare var __VLS_9: {
|
|
|
387
397
|
maxlength?: number | undefined;
|
|
388
398
|
rules?: unknown[] | undefined;
|
|
389
399
|
errorDisplayType?: string | undefined;
|
|
400
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
390
401
|
} | undefined;
|
|
391
402
|
type: "select";
|
|
392
403
|
} | {
|
|
@@ -416,6 +427,7 @@ declare var __VLS_9: {
|
|
|
416
427
|
maxlength?: number | undefined;
|
|
417
428
|
rules?: unknown[] | undefined;
|
|
418
429
|
errorDisplayType?: string | undefined;
|
|
430
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
419
431
|
} | undefined;
|
|
420
432
|
props?: {
|
|
421
433
|
readonly [x: string]: unknown;
|
|
@@ -462,6 +474,7 @@ declare var __VLS_9: {
|
|
|
462
474
|
maxlength?: number | undefined;
|
|
463
475
|
rules?: unknown[] | undefined;
|
|
464
476
|
errorDisplayType?: string | undefined;
|
|
477
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
465
478
|
} | undefined;
|
|
466
479
|
props?: {
|
|
467
480
|
readonly [x: string]: unknown;
|
|
@@ -490,6 +503,7 @@ declare var __VLS_9: {
|
|
|
490
503
|
withValidate?: boolean | undefined;
|
|
491
504
|
overMaxLengthLimit?: boolean | undefined;
|
|
492
505
|
showOverflowTooltips?: boolean | undefined;
|
|
506
|
+
tooltipsOptions?: {} | undefined;
|
|
493
507
|
autosize?: boolean | {
|
|
494
508
|
minRows?: number | undefined;
|
|
495
509
|
maxRows?: number | undefined;
|
|
@@ -524,6 +538,7 @@ declare var __VLS_9: {
|
|
|
524
538
|
maxlength?: number | undefined;
|
|
525
539
|
rules?: unknown[] | undefined;
|
|
526
540
|
errorDisplayType?: string | undefined;
|
|
541
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
527
542
|
} | undefined;
|
|
528
543
|
props?: {
|
|
529
544
|
readonly [x: string]: unknown;
|
|
@@ -552,6 +567,7 @@ declare var __VLS_9: {
|
|
|
552
567
|
withValidate?: boolean | undefined;
|
|
553
568
|
overMaxLengthLimit?: boolean | undefined;
|
|
554
569
|
showOverflowTooltips?: boolean | undefined;
|
|
570
|
+
tooltipsOptions?: {} | undefined;
|
|
555
571
|
autosize?: boolean | {
|
|
556
572
|
minRows?: number | undefined;
|
|
557
573
|
maxRows?: number | undefined;
|
|
@@ -621,6 +637,7 @@ declare var __VLS_9: {
|
|
|
621
637
|
rows?: number | undefined;
|
|
622
638
|
}[];
|
|
623
639
|
shortcut?: {
|
|
640
|
+
alias?: string | undefined;
|
|
624
641
|
components?: ({
|
|
625
642
|
props: {
|
|
626
643
|
readonly [x: string]: unknown;
|
|
@@ -667,6 +684,7 @@ declare var __VLS_9: {
|
|
|
667
684
|
maxlength?: number | undefined;
|
|
668
685
|
rules?: unknown[] | undefined;
|
|
669
686
|
errorDisplayType?: string | undefined;
|
|
687
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
670
688
|
} | undefined;
|
|
671
689
|
type: "checkboxGroup";
|
|
672
690
|
} | {
|
|
@@ -696,6 +714,7 @@ declare var __VLS_9: {
|
|
|
696
714
|
maxlength?: number | undefined;
|
|
697
715
|
rules?: unknown[] | undefined;
|
|
698
716
|
errorDisplayType?: string | undefined;
|
|
717
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
699
718
|
} | undefined;
|
|
700
719
|
props?: {
|
|
701
720
|
readonly [x: string]: unknown;
|
|
@@ -724,6 +743,7 @@ declare var __VLS_9: {
|
|
|
724
743
|
withValidate?: boolean | undefined;
|
|
725
744
|
overMaxLengthLimit?: boolean | undefined;
|
|
726
745
|
showOverflowTooltips?: boolean | undefined;
|
|
746
|
+
tooltipsOptions?: {} | undefined;
|
|
727
747
|
autosize?: boolean | {
|
|
728
748
|
minRows?: number | undefined;
|
|
729
749
|
maxRows?: number | undefined;
|
|
@@ -758,6 +778,7 @@ declare var __VLS_9: {
|
|
|
758
778
|
maxlength?: number | undefined;
|
|
759
779
|
rules?: unknown[] | undefined;
|
|
760
780
|
errorDisplayType?: string | undefined;
|
|
781
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
761
782
|
} | undefined;
|
|
762
783
|
props?: {
|
|
763
784
|
readonly [x: string]: unknown;
|
|
@@ -786,6 +807,7 @@ declare var __VLS_9: {
|
|
|
786
807
|
withValidate?: boolean | undefined;
|
|
787
808
|
overMaxLengthLimit?: boolean | undefined;
|
|
788
809
|
showOverflowTooltips?: boolean | undefined;
|
|
810
|
+
tooltipsOptions?: {} | undefined;
|
|
789
811
|
autosize?: boolean | {
|
|
790
812
|
minRows?: number | undefined;
|
|
791
813
|
maxRows?: number | undefined;
|
|
@@ -836,6 +858,7 @@ declare var __VLS_9: {
|
|
|
836
858
|
maxlength?: number | undefined;
|
|
837
859
|
rules?: unknown[] | undefined;
|
|
838
860
|
errorDisplayType?: string | undefined;
|
|
861
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
839
862
|
} | undefined;
|
|
840
863
|
type: "radioGroup";
|
|
841
864
|
} | {
|
|
@@ -886,6 +909,7 @@ declare var __VLS_9: {
|
|
|
886
909
|
keepSearchValue?: boolean | undefined;
|
|
887
910
|
searchWithPinyin?: boolean | undefined;
|
|
888
911
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
912
|
+
inputTooltipsOptions?: {} | undefined;
|
|
889
913
|
options: {
|
|
890
914
|
readonly [x: string]: unknown;
|
|
891
915
|
disabled?: boolean | undefined;
|
|
@@ -918,6 +942,7 @@ declare var __VLS_9: {
|
|
|
918
942
|
maxlength?: number | undefined;
|
|
919
943
|
rules?: unknown[] | undefined;
|
|
920
944
|
errorDisplayType?: string | undefined;
|
|
945
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
921
946
|
} | undefined;
|
|
922
947
|
type: "select";
|
|
923
948
|
} | {
|
|
@@ -947,6 +972,7 @@ declare var __VLS_9: {
|
|
|
947
972
|
maxlength?: number | undefined;
|
|
948
973
|
rules?: unknown[] | undefined;
|
|
949
974
|
errorDisplayType?: string | undefined;
|
|
975
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
950
976
|
} | undefined;
|
|
951
977
|
props?: {
|
|
952
978
|
readonly [x: string]: unknown;
|
|
@@ -993,6 +1019,7 @@ declare var __VLS_9: {
|
|
|
993
1019
|
maxlength?: number | undefined;
|
|
994
1020
|
rules?: unknown[] | undefined;
|
|
995
1021
|
errorDisplayType?: string | undefined;
|
|
1022
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
996
1023
|
} | undefined;
|
|
997
1024
|
props?: {
|
|
998
1025
|
readonly [x: string]: unknown;
|
|
@@ -1021,6 +1048,7 @@ declare var __VLS_9: {
|
|
|
1021
1048
|
withValidate?: boolean | undefined;
|
|
1022
1049
|
overMaxLengthLimit?: boolean | undefined;
|
|
1023
1050
|
showOverflowTooltips?: boolean | undefined;
|
|
1051
|
+
tooltipsOptions?: {} | undefined;
|
|
1024
1052
|
autosize?: boolean | {
|
|
1025
1053
|
minRows?: number | undefined;
|
|
1026
1054
|
maxRows?: number | undefined;
|
|
@@ -1055,6 +1083,7 @@ declare var __VLS_9: {
|
|
|
1055
1083
|
maxlength?: number | undefined;
|
|
1056
1084
|
rules?: unknown[] | undefined;
|
|
1057
1085
|
errorDisplayType?: string | undefined;
|
|
1086
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1058
1087
|
} | undefined;
|
|
1059
1088
|
props?: {
|
|
1060
1089
|
readonly [x: string]: unknown;
|
|
@@ -1083,6 +1112,7 @@ declare var __VLS_9: {
|
|
|
1083
1112
|
withValidate?: boolean | undefined;
|
|
1084
1113
|
overMaxLengthLimit?: boolean | undefined;
|
|
1085
1114
|
showOverflowTooltips?: boolean | undefined;
|
|
1115
|
+
tooltipsOptions?: {} | undefined;
|
|
1086
1116
|
autosize?: boolean | {
|
|
1087
1117
|
minRows?: number | undefined;
|
|
1088
1118
|
maxRows?: number | undefined;
|
|
@@ -1142,6 +1172,7 @@ declare var __VLS_9: {
|
|
|
1142
1172
|
rows?: number | undefined;
|
|
1143
1173
|
}[];
|
|
1144
1174
|
shortcut?: {
|
|
1175
|
+
alias?: string | undefined;
|
|
1145
1176
|
components?: ({
|
|
1146
1177
|
props: {
|
|
1147
1178
|
readonly [x: string]: unknown;
|
|
@@ -1188,6 +1219,7 @@ declare var __VLS_9: {
|
|
|
1188
1219
|
maxlength?: number | undefined;
|
|
1189
1220
|
rules?: unknown[] | undefined;
|
|
1190
1221
|
errorDisplayType?: string | undefined;
|
|
1222
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1191
1223
|
} | undefined;
|
|
1192
1224
|
type: "checkboxGroup";
|
|
1193
1225
|
} | {
|
|
@@ -1217,6 +1249,7 @@ declare var __VLS_9: {
|
|
|
1217
1249
|
maxlength?: number | undefined;
|
|
1218
1250
|
rules?: unknown[] | undefined;
|
|
1219
1251
|
errorDisplayType?: string | undefined;
|
|
1252
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1220
1253
|
} | undefined;
|
|
1221
1254
|
props?: {
|
|
1222
1255
|
readonly [x: string]: unknown;
|
|
@@ -1245,6 +1278,7 @@ declare var __VLS_9: {
|
|
|
1245
1278
|
withValidate?: boolean | undefined;
|
|
1246
1279
|
overMaxLengthLimit?: boolean | undefined;
|
|
1247
1280
|
showOverflowTooltips?: boolean | undefined;
|
|
1281
|
+
tooltipsOptions?: {} | undefined;
|
|
1248
1282
|
autosize?: boolean | {
|
|
1249
1283
|
minRows?: number | undefined;
|
|
1250
1284
|
maxRows?: number | undefined;
|
|
@@ -1279,6 +1313,7 @@ declare var __VLS_9: {
|
|
|
1279
1313
|
maxlength?: number | undefined;
|
|
1280
1314
|
rules?: unknown[] | undefined;
|
|
1281
1315
|
errorDisplayType?: string | undefined;
|
|
1316
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1282
1317
|
} | undefined;
|
|
1283
1318
|
props?: {
|
|
1284
1319
|
readonly [x: string]: unknown;
|
|
@@ -1307,6 +1342,7 @@ declare var __VLS_9: {
|
|
|
1307
1342
|
withValidate?: boolean | undefined;
|
|
1308
1343
|
overMaxLengthLimit?: boolean | undefined;
|
|
1309
1344
|
showOverflowTooltips?: boolean | undefined;
|
|
1345
|
+
tooltipsOptions?: {} | undefined;
|
|
1310
1346
|
autosize?: boolean | {
|
|
1311
1347
|
minRows?: number | undefined;
|
|
1312
1348
|
maxRows?: number | undefined;
|
|
@@ -1357,6 +1393,7 @@ declare var __VLS_9: {
|
|
|
1357
1393
|
maxlength?: number | undefined;
|
|
1358
1394
|
rules?: unknown[] | undefined;
|
|
1359
1395
|
errorDisplayType?: string | undefined;
|
|
1396
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1360
1397
|
} | undefined;
|
|
1361
1398
|
type: "radioGroup";
|
|
1362
1399
|
} | {
|
|
@@ -1407,6 +1444,7 @@ declare var __VLS_9: {
|
|
|
1407
1444
|
keepSearchValue?: boolean | undefined;
|
|
1408
1445
|
searchWithPinyin?: boolean | undefined;
|
|
1409
1446
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
1447
|
+
inputTooltipsOptions?: {} | undefined;
|
|
1410
1448
|
options: {
|
|
1411
1449
|
readonly [x: string]: unknown;
|
|
1412
1450
|
disabled?: boolean | undefined;
|
|
@@ -1439,6 +1477,7 @@ declare var __VLS_9: {
|
|
|
1439
1477
|
maxlength?: number | undefined;
|
|
1440
1478
|
rules?: unknown[] | undefined;
|
|
1441
1479
|
errorDisplayType?: string | undefined;
|
|
1480
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1442
1481
|
} | undefined;
|
|
1443
1482
|
type: "select";
|
|
1444
1483
|
} | {
|
|
@@ -1468,6 +1507,7 @@ declare var __VLS_9: {
|
|
|
1468
1507
|
maxlength?: number | undefined;
|
|
1469
1508
|
rules?: unknown[] | undefined;
|
|
1470
1509
|
errorDisplayType?: string | undefined;
|
|
1510
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1471
1511
|
} | undefined;
|
|
1472
1512
|
props?: {
|
|
1473
1513
|
readonly [x: string]: unknown;
|
|
@@ -1514,6 +1554,7 @@ declare var __VLS_9: {
|
|
|
1514
1554
|
maxlength?: number | undefined;
|
|
1515
1555
|
rules?: unknown[] | undefined;
|
|
1516
1556
|
errorDisplayType?: string | undefined;
|
|
1557
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1517
1558
|
} | undefined;
|
|
1518
1559
|
props?: {
|
|
1519
1560
|
readonly [x: string]: unknown;
|
|
@@ -1542,6 +1583,7 @@ declare var __VLS_9: {
|
|
|
1542
1583
|
withValidate?: boolean | undefined;
|
|
1543
1584
|
overMaxLengthLimit?: boolean | undefined;
|
|
1544
1585
|
showOverflowTooltips?: boolean | undefined;
|
|
1586
|
+
tooltipsOptions?: {} | undefined;
|
|
1545
1587
|
autosize?: boolean | {
|
|
1546
1588
|
minRows?: number | undefined;
|
|
1547
1589
|
maxRows?: number | undefined;
|
|
@@ -1576,6 +1618,7 @@ declare var __VLS_9: {
|
|
|
1576
1618
|
maxlength?: number | undefined;
|
|
1577
1619
|
rules?: unknown[] | undefined;
|
|
1578
1620
|
errorDisplayType?: string | undefined;
|
|
1621
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1579
1622
|
} | undefined;
|
|
1580
1623
|
props?: {
|
|
1581
1624
|
readonly [x: string]: unknown;
|
|
@@ -1604,6 +1647,7 @@ declare var __VLS_9: {
|
|
|
1604
1647
|
withValidate?: boolean | undefined;
|
|
1605
1648
|
overMaxLengthLimit?: boolean | undefined;
|
|
1606
1649
|
showOverflowTooltips?: boolean | undefined;
|
|
1650
|
+
tooltipsOptions?: {} | undefined;
|
|
1607
1651
|
autosize?: boolean | {
|
|
1608
1652
|
minRows?: number | undefined;
|
|
1609
1653
|
maxRows?: number | undefined;
|
|
@@ -1661,6 +1705,7 @@ declare var __VLS_9: {
|
|
|
1661
1705
|
rows?: number | undefined;
|
|
1662
1706
|
}[];
|
|
1663
1707
|
shortcut?: {
|
|
1708
|
+
alias?: string | undefined;
|
|
1664
1709
|
components?: ({
|
|
1665
1710
|
props: {
|
|
1666
1711
|
readonly [x: string]: unknown;
|
|
@@ -1707,6 +1752,7 @@ declare var __VLS_9: {
|
|
|
1707
1752
|
maxlength?: number | undefined;
|
|
1708
1753
|
rules?: unknown[] | undefined;
|
|
1709
1754
|
errorDisplayType?: string | undefined;
|
|
1755
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1710
1756
|
} | undefined;
|
|
1711
1757
|
type: "checkboxGroup";
|
|
1712
1758
|
} | {
|
|
@@ -1736,6 +1782,7 @@ declare var __VLS_9: {
|
|
|
1736
1782
|
maxlength?: number | undefined;
|
|
1737
1783
|
rules?: unknown[] | undefined;
|
|
1738
1784
|
errorDisplayType?: string | undefined;
|
|
1785
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1739
1786
|
} | undefined;
|
|
1740
1787
|
props?: {
|
|
1741
1788
|
readonly [x: string]: unknown;
|
|
@@ -1764,6 +1811,7 @@ declare var __VLS_9: {
|
|
|
1764
1811
|
withValidate?: boolean | undefined;
|
|
1765
1812
|
overMaxLengthLimit?: boolean | undefined;
|
|
1766
1813
|
showOverflowTooltips?: boolean | undefined;
|
|
1814
|
+
tooltipsOptions?: {} | undefined;
|
|
1767
1815
|
autosize?: boolean | {
|
|
1768
1816
|
minRows?: number | undefined;
|
|
1769
1817
|
maxRows?: number | undefined;
|
|
@@ -1798,6 +1846,7 @@ declare var __VLS_9: {
|
|
|
1798
1846
|
maxlength?: number | undefined;
|
|
1799
1847
|
rules?: unknown[] | undefined;
|
|
1800
1848
|
errorDisplayType?: string | undefined;
|
|
1849
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1801
1850
|
} | undefined;
|
|
1802
1851
|
props?: {
|
|
1803
1852
|
readonly [x: string]: unknown;
|
|
@@ -1826,6 +1875,7 @@ declare var __VLS_9: {
|
|
|
1826
1875
|
withValidate?: boolean | undefined;
|
|
1827
1876
|
overMaxLengthLimit?: boolean | undefined;
|
|
1828
1877
|
showOverflowTooltips?: boolean | undefined;
|
|
1878
|
+
tooltipsOptions?: {} | undefined;
|
|
1829
1879
|
autosize?: boolean | {
|
|
1830
1880
|
minRows?: number | undefined;
|
|
1831
1881
|
maxRows?: number | undefined;
|
|
@@ -1876,6 +1926,7 @@ declare var __VLS_9: {
|
|
|
1876
1926
|
maxlength?: number | undefined;
|
|
1877
1927
|
rules?: unknown[] | undefined;
|
|
1878
1928
|
errorDisplayType?: string | undefined;
|
|
1929
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1879
1930
|
} | undefined;
|
|
1880
1931
|
type: "radioGroup";
|
|
1881
1932
|
} | {
|
|
@@ -1926,6 +1977,7 @@ declare var __VLS_9: {
|
|
|
1926
1977
|
keepSearchValue?: boolean | undefined;
|
|
1927
1978
|
searchWithPinyin?: boolean | undefined;
|
|
1928
1979
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
1980
|
+
inputTooltipsOptions?: {} | undefined;
|
|
1929
1981
|
options: {
|
|
1930
1982
|
readonly [x: string]: unknown;
|
|
1931
1983
|
disabled?: boolean | undefined;
|
|
@@ -1958,6 +2010,7 @@ declare var __VLS_9: {
|
|
|
1958
2010
|
maxlength?: number | undefined;
|
|
1959
2011
|
rules?: unknown[] | undefined;
|
|
1960
2012
|
errorDisplayType?: string | undefined;
|
|
2013
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1961
2014
|
} | undefined;
|
|
1962
2015
|
type: "select";
|
|
1963
2016
|
} | {
|
|
@@ -1987,6 +2040,7 @@ declare var __VLS_9: {
|
|
|
1987
2040
|
maxlength?: number | undefined;
|
|
1988
2041
|
rules?: unknown[] | undefined;
|
|
1989
2042
|
errorDisplayType?: string | undefined;
|
|
2043
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
1990
2044
|
} | undefined;
|
|
1991
2045
|
props?: {
|
|
1992
2046
|
readonly [x: string]: unknown;
|
|
@@ -2033,6 +2087,7 @@ declare var __VLS_9: {
|
|
|
2033
2087
|
maxlength?: number | undefined;
|
|
2034
2088
|
rules?: unknown[] | undefined;
|
|
2035
2089
|
errorDisplayType?: string | undefined;
|
|
2090
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2036
2091
|
} | undefined;
|
|
2037
2092
|
props?: {
|
|
2038
2093
|
readonly [x: string]: unknown;
|
|
@@ -2061,6 +2116,7 @@ declare var __VLS_9: {
|
|
|
2061
2116
|
withValidate?: boolean | undefined;
|
|
2062
2117
|
overMaxLengthLimit?: boolean | undefined;
|
|
2063
2118
|
showOverflowTooltips?: boolean | undefined;
|
|
2119
|
+
tooltipsOptions?: {} | undefined;
|
|
2064
2120
|
autosize?: boolean | {
|
|
2065
2121
|
minRows?: number | undefined;
|
|
2066
2122
|
maxRows?: number | undefined;
|
|
@@ -2095,6 +2151,7 @@ declare var __VLS_9: {
|
|
|
2095
2151
|
maxlength?: number | undefined;
|
|
2096
2152
|
rules?: unknown[] | undefined;
|
|
2097
2153
|
errorDisplayType?: string | undefined;
|
|
2154
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2098
2155
|
} | undefined;
|
|
2099
2156
|
props?: {
|
|
2100
2157
|
readonly [x: string]: unknown;
|
|
@@ -2123,6 +2180,7 @@ declare var __VLS_9: {
|
|
|
2123
2180
|
withValidate?: boolean | undefined;
|
|
2124
2181
|
overMaxLengthLimit?: boolean | undefined;
|
|
2125
2182
|
showOverflowTooltips?: boolean | undefined;
|
|
2183
|
+
tooltipsOptions?: {} | undefined;
|
|
2126
2184
|
autosize?: boolean | {
|
|
2127
2185
|
minRows?: number | undefined;
|
|
2128
2186
|
maxRows?: number | undefined;
|
|
@@ -2180,6 +2238,7 @@ declare var __VLS_9: {
|
|
|
2180
2238
|
rows?: number | undefined;
|
|
2181
2239
|
}[];
|
|
2182
2240
|
shortcut?: {
|
|
2241
|
+
alias?: string | undefined;
|
|
2183
2242
|
components?: ({
|
|
2184
2243
|
props: {
|
|
2185
2244
|
readonly [x: string]: unknown;
|
|
@@ -2226,6 +2285,7 @@ declare var __VLS_9: {
|
|
|
2226
2285
|
maxlength?: number | undefined;
|
|
2227
2286
|
rules?: unknown[] | undefined;
|
|
2228
2287
|
errorDisplayType?: string | undefined;
|
|
2288
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2229
2289
|
} | undefined;
|
|
2230
2290
|
type: "checkboxGroup";
|
|
2231
2291
|
} | {
|
|
@@ -2255,6 +2315,7 @@ declare var __VLS_9: {
|
|
|
2255
2315
|
maxlength?: number | undefined;
|
|
2256
2316
|
rules?: unknown[] | undefined;
|
|
2257
2317
|
errorDisplayType?: string | undefined;
|
|
2318
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2258
2319
|
} | undefined;
|
|
2259
2320
|
props?: {
|
|
2260
2321
|
readonly [x: string]: unknown;
|
|
@@ -2283,6 +2344,7 @@ declare var __VLS_9: {
|
|
|
2283
2344
|
withValidate?: boolean | undefined;
|
|
2284
2345
|
overMaxLengthLimit?: boolean | undefined;
|
|
2285
2346
|
showOverflowTooltips?: boolean | undefined;
|
|
2347
|
+
tooltipsOptions?: {} | undefined;
|
|
2286
2348
|
autosize?: boolean | {
|
|
2287
2349
|
minRows?: number | undefined;
|
|
2288
2350
|
maxRows?: number | undefined;
|
|
@@ -2317,6 +2379,7 @@ declare var __VLS_9: {
|
|
|
2317
2379
|
maxlength?: number | undefined;
|
|
2318
2380
|
rules?: unknown[] | undefined;
|
|
2319
2381
|
errorDisplayType?: string | undefined;
|
|
2382
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2320
2383
|
} | undefined;
|
|
2321
2384
|
props?: {
|
|
2322
2385
|
readonly [x: string]: unknown;
|
|
@@ -2345,6 +2408,7 @@ declare var __VLS_9: {
|
|
|
2345
2408
|
withValidate?: boolean | undefined;
|
|
2346
2409
|
overMaxLengthLimit?: boolean | undefined;
|
|
2347
2410
|
showOverflowTooltips?: boolean | undefined;
|
|
2411
|
+
tooltipsOptions?: {} | undefined;
|
|
2348
2412
|
autosize?: boolean | {
|
|
2349
2413
|
minRows?: number | undefined;
|
|
2350
2414
|
maxRows?: number | undefined;
|
|
@@ -2395,6 +2459,7 @@ declare var __VLS_9: {
|
|
|
2395
2459
|
maxlength?: number | undefined;
|
|
2396
2460
|
rules?: unknown[] | undefined;
|
|
2397
2461
|
errorDisplayType?: string | undefined;
|
|
2462
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2398
2463
|
} | undefined;
|
|
2399
2464
|
type: "radioGroup";
|
|
2400
2465
|
} | {
|
|
@@ -2445,6 +2510,7 @@ declare var __VLS_9: {
|
|
|
2445
2510
|
keepSearchValue?: boolean | undefined;
|
|
2446
2511
|
searchWithPinyin?: boolean | undefined;
|
|
2447
2512
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
2513
|
+
inputTooltipsOptions?: {} | undefined;
|
|
2448
2514
|
options: {
|
|
2449
2515
|
readonly [x: string]: unknown;
|
|
2450
2516
|
disabled?: boolean | undefined;
|
|
@@ -2477,6 +2543,7 @@ declare var __VLS_9: {
|
|
|
2477
2543
|
maxlength?: number | undefined;
|
|
2478
2544
|
rules?: unknown[] | undefined;
|
|
2479
2545
|
errorDisplayType?: string | undefined;
|
|
2546
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2480
2547
|
} | undefined;
|
|
2481
2548
|
type: "select";
|
|
2482
2549
|
} | {
|
|
@@ -2506,6 +2573,7 @@ declare var __VLS_9: {
|
|
|
2506
2573
|
maxlength?: number | undefined;
|
|
2507
2574
|
rules?: unknown[] | undefined;
|
|
2508
2575
|
errorDisplayType?: string | undefined;
|
|
2576
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2509
2577
|
} | undefined;
|
|
2510
2578
|
props?: {
|
|
2511
2579
|
readonly [x: string]: unknown;
|
|
@@ -2552,6 +2620,7 @@ declare var __VLS_9: {
|
|
|
2552
2620
|
maxlength?: number | undefined;
|
|
2553
2621
|
rules?: unknown[] | undefined;
|
|
2554
2622
|
errorDisplayType?: string | undefined;
|
|
2623
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2555
2624
|
} | undefined;
|
|
2556
2625
|
props?: {
|
|
2557
2626
|
readonly [x: string]: unknown;
|
|
@@ -2580,6 +2649,7 @@ declare var __VLS_9: {
|
|
|
2580
2649
|
withValidate?: boolean | undefined;
|
|
2581
2650
|
overMaxLengthLimit?: boolean | undefined;
|
|
2582
2651
|
showOverflowTooltips?: boolean | undefined;
|
|
2652
|
+
tooltipsOptions?: {} | undefined;
|
|
2583
2653
|
autosize?: boolean | {
|
|
2584
2654
|
minRows?: number | undefined;
|
|
2585
2655
|
maxRows?: number | undefined;
|
|
@@ -2614,6 +2684,7 @@ declare var __VLS_9: {
|
|
|
2614
2684
|
maxlength?: number | undefined;
|
|
2615
2685
|
rules?: unknown[] | undefined;
|
|
2616
2686
|
errorDisplayType?: string | undefined;
|
|
2687
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2617
2688
|
} | undefined;
|
|
2618
2689
|
props?: {
|
|
2619
2690
|
readonly [x: string]: unknown;
|
|
@@ -2642,6 +2713,7 @@ declare var __VLS_9: {
|
|
|
2642
2713
|
withValidate?: boolean | undefined;
|
|
2643
2714
|
overMaxLengthLimit?: boolean | undefined;
|
|
2644
2715
|
showOverflowTooltips?: boolean | undefined;
|
|
2716
|
+
tooltipsOptions?: {} | undefined;
|
|
2645
2717
|
autosize?: boolean | {
|
|
2646
2718
|
minRows?: number | undefined;
|
|
2647
2719
|
maxRows?: number | undefined;
|
|
@@ -2699,6 +2771,7 @@ declare var __VLS_9: {
|
|
|
2699
2771
|
rows?: number | undefined;
|
|
2700
2772
|
}[];
|
|
2701
2773
|
shortcut?: {
|
|
2774
|
+
alias?: string | undefined;
|
|
2702
2775
|
components?: ({
|
|
2703
2776
|
props: {
|
|
2704
2777
|
readonly [x: string]: unknown;
|
|
@@ -2745,6 +2818,7 @@ declare var __VLS_9: {
|
|
|
2745
2818
|
maxlength?: number | undefined;
|
|
2746
2819
|
rules?: unknown[] | undefined;
|
|
2747
2820
|
errorDisplayType?: string | undefined;
|
|
2821
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2748
2822
|
} | undefined;
|
|
2749
2823
|
type: "checkboxGroup";
|
|
2750
2824
|
} | {
|
|
@@ -2774,6 +2848,7 @@ declare var __VLS_9: {
|
|
|
2774
2848
|
maxlength?: number | undefined;
|
|
2775
2849
|
rules?: unknown[] | undefined;
|
|
2776
2850
|
errorDisplayType?: string | undefined;
|
|
2851
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2777
2852
|
} | undefined;
|
|
2778
2853
|
props?: {
|
|
2779
2854
|
readonly [x: string]: unknown;
|
|
@@ -2802,6 +2877,7 @@ declare var __VLS_9: {
|
|
|
2802
2877
|
withValidate?: boolean | undefined;
|
|
2803
2878
|
overMaxLengthLimit?: boolean | undefined;
|
|
2804
2879
|
showOverflowTooltips?: boolean | undefined;
|
|
2880
|
+
tooltipsOptions?: {} | undefined;
|
|
2805
2881
|
autosize?: boolean | {
|
|
2806
2882
|
minRows?: number | undefined;
|
|
2807
2883
|
maxRows?: number | undefined;
|
|
@@ -2836,6 +2912,7 @@ declare var __VLS_9: {
|
|
|
2836
2912
|
maxlength?: number | undefined;
|
|
2837
2913
|
rules?: unknown[] | undefined;
|
|
2838
2914
|
errorDisplayType?: string | undefined;
|
|
2915
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2839
2916
|
} | undefined;
|
|
2840
2917
|
props?: {
|
|
2841
2918
|
readonly [x: string]: unknown;
|
|
@@ -2864,6 +2941,7 @@ declare var __VLS_9: {
|
|
|
2864
2941
|
withValidate?: boolean | undefined;
|
|
2865
2942
|
overMaxLengthLimit?: boolean | undefined;
|
|
2866
2943
|
showOverflowTooltips?: boolean | undefined;
|
|
2944
|
+
tooltipsOptions?: {} | undefined;
|
|
2867
2945
|
autosize?: boolean | {
|
|
2868
2946
|
minRows?: number | undefined;
|
|
2869
2947
|
maxRows?: number | undefined;
|
|
@@ -2914,6 +2992,7 @@ declare var __VLS_9: {
|
|
|
2914
2992
|
maxlength?: number | undefined;
|
|
2915
2993
|
rules?: unknown[] | undefined;
|
|
2916
2994
|
errorDisplayType?: string | undefined;
|
|
2995
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2917
2996
|
} | undefined;
|
|
2918
2997
|
type: "radioGroup";
|
|
2919
2998
|
} | {
|
|
@@ -2964,6 +3043,7 @@ declare var __VLS_9: {
|
|
|
2964
3043
|
keepSearchValue?: boolean | undefined;
|
|
2965
3044
|
searchWithPinyin?: boolean | undefined;
|
|
2966
3045
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
3046
|
+
inputTooltipsOptions?: {} | undefined;
|
|
2967
3047
|
options: {
|
|
2968
3048
|
readonly [x: string]: unknown;
|
|
2969
3049
|
disabled?: boolean | undefined;
|
|
@@ -2996,6 +3076,7 @@ declare var __VLS_9: {
|
|
|
2996
3076
|
maxlength?: number | undefined;
|
|
2997
3077
|
rules?: unknown[] | undefined;
|
|
2998
3078
|
errorDisplayType?: string | undefined;
|
|
3079
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
2999
3080
|
} | undefined;
|
|
3000
3081
|
type: "select";
|
|
3001
3082
|
} | {
|
|
@@ -3025,6 +3106,7 @@ declare var __VLS_9: {
|
|
|
3025
3106
|
maxlength?: number | undefined;
|
|
3026
3107
|
rules?: unknown[] | undefined;
|
|
3027
3108
|
errorDisplayType?: string | undefined;
|
|
3109
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3028
3110
|
} | undefined;
|
|
3029
3111
|
props?: {
|
|
3030
3112
|
readonly [x: string]: unknown;
|
|
@@ -3071,6 +3153,7 @@ declare var __VLS_9: {
|
|
|
3071
3153
|
maxlength?: number | undefined;
|
|
3072
3154
|
rules?: unknown[] | undefined;
|
|
3073
3155
|
errorDisplayType?: string | undefined;
|
|
3156
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3074
3157
|
} | undefined;
|
|
3075
3158
|
props?: {
|
|
3076
3159
|
readonly [x: string]: unknown;
|
|
@@ -3099,6 +3182,7 @@ declare var __VLS_9: {
|
|
|
3099
3182
|
withValidate?: boolean | undefined;
|
|
3100
3183
|
overMaxLengthLimit?: boolean | undefined;
|
|
3101
3184
|
showOverflowTooltips?: boolean | undefined;
|
|
3185
|
+
tooltipsOptions?: {} | undefined;
|
|
3102
3186
|
autosize?: boolean | {
|
|
3103
3187
|
minRows?: number | undefined;
|
|
3104
3188
|
maxRows?: number | undefined;
|
|
@@ -3133,6 +3217,7 @@ declare var __VLS_9: {
|
|
|
3133
3217
|
maxlength?: number | undefined;
|
|
3134
3218
|
rules?: unknown[] | undefined;
|
|
3135
3219
|
errorDisplayType?: string | undefined;
|
|
3220
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3136
3221
|
} | undefined;
|
|
3137
3222
|
props?: {
|
|
3138
3223
|
readonly [x: string]: unknown;
|
|
@@ -3161,6 +3246,7 @@ declare var __VLS_9: {
|
|
|
3161
3246
|
withValidate?: boolean | undefined;
|
|
3162
3247
|
overMaxLengthLimit?: boolean | undefined;
|
|
3163
3248
|
showOverflowTooltips?: boolean | undefined;
|
|
3249
|
+
tooltipsOptions?: {} | undefined;
|
|
3164
3250
|
autosize?: boolean | {
|
|
3165
3251
|
minRows?: number | undefined;
|
|
3166
3252
|
maxRows?: number | undefined;
|
|
@@ -3218,6 +3304,7 @@ declare var __VLS_9: {
|
|
|
3218
3304
|
rows?: number | undefined;
|
|
3219
3305
|
}[];
|
|
3220
3306
|
shortcut?: {
|
|
3307
|
+
alias?: string | undefined;
|
|
3221
3308
|
components?: ({
|
|
3222
3309
|
props: {
|
|
3223
3310
|
readonly [x: string]: unknown;
|
|
@@ -3264,6 +3351,7 @@ declare var __VLS_9: {
|
|
|
3264
3351
|
maxlength?: number | undefined;
|
|
3265
3352
|
rules?: unknown[] | undefined;
|
|
3266
3353
|
errorDisplayType?: string | undefined;
|
|
3354
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3267
3355
|
} | undefined;
|
|
3268
3356
|
type: "checkboxGroup";
|
|
3269
3357
|
} | {
|
|
@@ -3293,6 +3381,7 @@ declare var __VLS_9: {
|
|
|
3293
3381
|
maxlength?: number | undefined;
|
|
3294
3382
|
rules?: unknown[] | undefined;
|
|
3295
3383
|
errorDisplayType?: string | undefined;
|
|
3384
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3296
3385
|
} | undefined;
|
|
3297
3386
|
props?: {
|
|
3298
3387
|
readonly [x: string]: unknown;
|
|
@@ -3321,6 +3410,7 @@ declare var __VLS_9: {
|
|
|
3321
3410
|
withValidate?: boolean | undefined;
|
|
3322
3411
|
overMaxLengthLimit?: boolean | undefined;
|
|
3323
3412
|
showOverflowTooltips?: boolean | undefined;
|
|
3413
|
+
tooltipsOptions?: {} | undefined;
|
|
3324
3414
|
autosize?: boolean | {
|
|
3325
3415
|
minRows?: number | undefined;
|
|
3326
3416
|
maxRows?: number | undefined;
|
|
@@ -3355,6 +3445,7 @@ declare var __VLS_9: {
|
|
|
3355
3445
|
maxlength?: number | undefined;
|
|
3356
3446
|
rules?: unknown[] | undefined;
|
|
3357
3447
|
errorDisplayType?: string | undefined;
|
|
3448
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3358
3449
|
} | undefined;
|
|
3359
3450
|
props?: {
|
|
3360
3451
|
readonly [x: string]: unknown;
|
|
@@ -3383,6 +3474,7 @@ declare var __VLS_9: {
|
|
|
3383
3474
|
withValidate?: boolean | undefined;
|
|
3384
3475
|
overMaxLengthLimit?: boolean | undefined;
|
|
3385
3476
|
showOverflowTooltips?: boolean | undefined;
|
|
3477
|
+
tooltipsOptions?: {} | undefined;
|
|
3386
3478
|
autosize?: boolean | {
|
|
3387
3479
|
minRows?: number | undefined;
|
|
3388
3480
|
maxRows?: number | undefined;
|
|
@@ -3433,6 +3525,7 @@ declare var __VLS_9: {
|
|
|
3433
3525
|
maxlength?: number | undefined;
|
|
3434
3526
|
rules?: unknown[] | undefined;
|
|
3435
3527
|
errorDisplayType?: string | undefined;
|
|
3528
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3436
3529
|
} | undefined;
|
|
3437
3530
|
type: "radioGroup";
|
|
3438
3531
|
} | {
|
|
@@ -3483,6 +3576,7 @@ declare var __VLS_9: {
|
|
|
3483
3576
|
keepSearchValue?: boolean | undefined;
|
|
3484
3577
|
searchWithPinyin?: boolean | undefined;
|
|
3485
3578
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
3579
|
+
inputTooltipsOptions?: {} | undefined;
|
|
3486
3580
|
options: {
|
|
3487
3581
|
readonly [x: string]: unknown;
|
|
3488
3582
|
disabled?: boolean | undefined;
|
|
@@ -3515,6 +3609,7 @@ declare var __VLS_9: {
|
|
|
3515
3609
|
maxlength?: number | undefined;
|
|
3516
3610
|
rules?: unknown[] | undefined;
|
|
3517
3611
|
errorDisplayType?: string | undefined;
|
|
3612
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3518
3613
|
} | undefined;
|
|
3519
3614
|
type: "select";
|
|
3520
3615
|
} | {
|
|
@@ -3544,6 +3639,7 @@ declare var __VLS_9: {
|
|
|
3544
3639
|
maxlength?: number | undefined;
|
|
3545
3640
|
rules?: unknown[] | undefined;
|
|
3546
3641
|
errorDisplayType?: string | undefined;
|
|
3642
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3547
3643
|
} | undefined;
|
|
3548
3644
|
props?: {
|
|
3549
3645
|
readonly [x: string]: unknown;
|
|
@@ -3590,6 +3686,7 @@ declare var __VLS_9: {
|
|
|
3590
3686
|
maxlength?: number | undefined;
|
|
3591
3687
|
rules?: unknown[] | undefined;
|
|
3592
3688
|
errorDisplayType?: string | undefined;
|
|
3689
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3593
3690
|
} | undefined;
|
|
3594
3691
|
props?: {
|
|
3595
3692
|
readonly [x: string]: unknown;
|
|
@@ -3618,6 +3715,7 @@ declare var __VLS_9: {
|
|
|
3618
3715
|
withValidate?: boolean | undefined;
|
|
3619
3716
|
overMaxLengthLimit?: boolean | undefined;
|
|
3620
3717
|
showOverflowTooltips?: boolean | undefined;
|
|
3718
|
+
tooltipsOptions?: {} | undefined;
|
|
3621
3719
|
autosize?: boolean | {
|
|
3622
3720
|
minRows?: number | undefined;
|
|
3623
3721
|
maxRows?: number | undefined;
|
|
@@ -3652,6 +3750,7 @@ declare var __VLS_9: {
|
|
|
3652
3750
|
maxlength?: number | undefined;
|
|
3653
3751
|
rules?: unknown[] | undefined;
|
|
3654
3752
|
errorDisplayType?: string | undefined;
|
|
3753
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3655
3754
|
} | undefined;
|
|
3656
3755
|
props?: {
|
|
3657
3756
|
readonly [x: string]: unknown;
|
|
@@ -3680,6 +3779,7 @@ declare var __VLS_9: {
|
|
|
3680
3779
|
withValidate?: boolean | undefined;
|
|
3681
3780
|
overMaxLengthLimit?: boolean | undefined;
|
|
3682
3781
|
showOverflowTooltips?: boolean | undefined;
|
|
3782
|
+
tooltipsOptions?: {} | undefined;
|
|
3683
3783
|
autosize?: boolean | {
|
|
3684
3784
|
minRows?: number | undefined;
|
|
3685
3785
|
maxRows?: number | undefined;
|
|
@@ -3737,6 +3837,7 @@ declare var __VLS_9: {
|
|
|
3737
3837
|
rows?: number | undefined;
|
|
3738
3838
|
}[];
|
|
3739
3839
|
shortcut?: {
|
|
3840
|
+
alias?: string | undefined;
|
|
3740
3841
|
components?: ({
|
|
3741
3842
|
props: {
|
|
3742
3843
|
readonly [x: string]: unknown;
|
|
@@ -3783,6 +3884,7 @@ declare var __VLS_9: {
|
|
|
3783
3884
|
maxlength?: number | undefined;
|
|
3784
3885
|
rules?: unknown[] | undefined;
|
|
3785
3886
|
errorDisplayType?: string | undefined;
|
|
3887
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3786
3888
|
} | undefined;
|
|
3787
3889
|
type: "checkboxGroup";
|
|
3788
3890
|
} | {
|
|
@@ -3812,6 +3914,7 @@ declare var __VLS_9: {
|
|
|
3812
3914
|
maxlength?: number | undefined;
|
|
3813
3915
|
rules?: unknown[] | undefined;
|
|
3814
3916
|
errorDisplayType?: string | undefined;
|
|
3917
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3815
3918
|
} | undefined;
|
|
3816
3919
|
props?: {
|
|
3817
3920
|
readonly [x: string]: unknown;
|
|
@@ -3840,6 +3943,7 @@ declare var __VLS_9: {
|
|
|
3840
3943
|
withValidate?: boolean | undefined;
|
|
3841
3944
|
overMaxLengthLimit?: boolean | undefined;
|
|
3842
3945
|
showOverflowTooltips?: boolean | undefined;
|
|
3946
|
+
tooltipsOptions?: {} | undefined;
|
|
3843
3947
|
autosize?: boolean | {
|
|
3844
3948
|
minRows?: number | undefined;
|
|
3845
3949
|
maxRows?: number | undefined;
|
|
@@ -3874,6 +3978,7 @@ declare var __VLS_9: {
|
|
|
3874
3978
|
maxlength?: number | undefined;
|
|
3875
3979
|
rules?: unknown[] | undefined;
|
|
3876
3980
|
errorDisplayType?: string | undefined;
|
|
3981
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3877
3982
|
} | undefined;
|
|
3878
3983
|
props?: {
|
|
3879
3984
|
readonly [x: string]: unknown;
|
|
@@ -3902,6 +4007,7 @@ declare var __VLS_9: {
|
|
|
3902
4007
|
withValidate?: boolean | undefined;
|
|
3903
4008
|
overMaxLengthLimit?: boolean | undefined;
|
|
3904
4009
|
showOverflowTooltips?: boolean | undefined;
|
|
4010
|
+
tooltipsOptions?: {} | undefined;
|
|
3905
4011
|
autosize?: boolean | {
|
|
3906
4012
|
minRows?: number | undefined;
|
|
3907
4013
|
maxRows?: number | undefined;
|
|
@@ -3952,6 +4058,7 @@ declare var __VLS_9: {
|
|
|
3952
4058
|
maxlength?: number | undefined;
|
|
3953
4059
|
rules?: unknown[] | undefined;
|
|
3954
4060
|
errorDisplayType?: string | undefined;
|
|
4061
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
3955
4062
|
} | undefined;
|
|
3956
4063
|
type: "radioGroup";
|
|
3957
4064
|
} | {
|
|
@@ -4002,6 +4109,7 @@ declare var __VLS_9: {
|
|
|
4002
4109
|
keepSearchValue?: boolean | undefined;
|
|
4003
4110
|
searchWithPinyin?: boolean | undefined;
|
|
4004
4111
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
4112
|
+
inputTooltipsOptions?: {} | undefined;
|
|
4005
4113
|
options: {
|
|
4006
4114
|
readonly [x: string]: unknown;
|
|
4007
4115
|
disabled?: boolean | undefined;
|
|
@@ -4034,6 +4142,7 @@ declare var __VLS_9: {
|
|
|
4034
4142
|
maxlength?: number | undefined;
|
|
4035
4143
|
rules?: unknown[] | undefined;
|
|
4036
4144
|
errorDisplayType?: string | undefined;
|
|
4145
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4037
4146
|
} | undefined;
|
|
4038
4147
|
type: "select";
|
|
4039
4148
|
} | {
|
|
@@ -4063,6 +4172,7 @@ declare var __VLS_9: {
|
|
|
4063
4172
|
maxlength?: number | undefined;
|
|
4064
4173
|
rules?: unknown[] | undefined;
|
|
4065
4174
|
errorDisplayType?: string | undefined;
|
|
4175
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4066
4176
|
} | undefined;
|
|
4067
4177
|
props?: {
|
|
4068
4178
|
readonly [x: string]: unknown;
|
|
@@ -4109,6 +4219,7 @@ declare var __VLS_9: {
|
|
|
4109
4219
|
maxlength?: number | undefined;
|
|
4110
4220
|
rules?: unknown[] | undefined;
|
|
4111
4221
|
errorDisplayType?: string | undefined;
|
|
4222
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4112
4223
|
} | undefined;
|
|
4113
4224
|
props?: {
|
|
4114
4225
|
readonly [x: string]: unknown;
|
|
@@ -4137,6 +4248,7 @@ declare var __VLS_9: {
|
|
|
4137
4248
|
withValidate?: boolean | undefined;
|
|
4138
4249
|
overMaxLengthLimit?: boolean | undefined;
|
|
4139
4250
|
showOverflowTooltips?: boolean | undefined;
|
|
4251
|
+
tooltipsOptions?: {} | undefined;
|
|
4140
4252
|
autosize?: boolean | {
|
|
4141
4253
|
minRows?: number | undefined;
|
|
4142
4254
|
maxRows?: number | undefined;
|
|
@@ -4171,6 +4283,7 @@ declare var __VLS_9: {
|
|
|
4171
4283
|
maxlength?: number | undefined;
|
|
4172
4284
|
rules?: unknown[] | undefined;
|
|
4173
4285
|
errorDisplayType?: string | undefined;
|
|
4286
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4174
4287
|
} | undefined;
|
|
4175
4288
|
props?: {
|
|
4176
4289
|
readonly [x: string]: unknown;
|
|
@@ -4199,6 +4312,7 @@ declare var __VLS_9: {
|
|
|
4199
4312
|
withValidate?: boolean | undefined;
|
|
4200
4313
|
overMaxLengthLimit?: boolean | undefined;
|
|
4201
4314
|
showOverflowTooltips?: boolean | undefined;
|
|
4315
|
+
tooltipsOptions?: {} | undefined;
|
|
4202
4316
|
autosize?: boolean | {
|
|
4203
4317
|
minRows?: number | undefined;
|
|
4204
4318
|
maxRows?: number | undefined;
|
|
@@ -4256,6 +4370,7 @@ declare var __VLS_9: {
|
|
|
4256
4370
|
rows?: number | undefined;
|
|
4257
4371
|
}[];
|
|
4258
4372
|
shortcut?: {
|
|
4373
|
+
alias?: string | undefined;
|
|
4259
4374
|
components?: ({
|
|
4260
4375
|
props: {
|
|
4261
4376
|
readonly [x: string]: unknown;
|
|
@@ -4302,6 +4417,7 @@ declare var __VLS_9: {
|
|
|
4302
4417
|
maxlength?: number | undefined;
|
|
4303
4418
|
rules?: unknown[] | undefined;
|
|
4304
4419
|
errorDisplayType?: string | undefined;
|
|
4420
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4305
4421
|
} | undefined;
|
|
4306
4422
|
type: "checkboxGroup";
|
|
4307
4423
|
} | {
|
|
@@ -4331,6 +4447,7 @@ declare var __VLS_9: {
|
|
|
4331
4447
|
maxlength?: number | undefined;
|
|
4332
4448
|
rules?: unknown[] | undefined;
|
|
4333
4449
|
errorDisplayType?: string | undefined;
|
|
4450
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4334
4451
|
} | undefined;
|
|
4335
4452
|
props?: {
|
|
4336
4453
|
readonly [x: string]: unknown;
|
|
@@ -4359,6 +4476,7 @@ declare var __VLS_9: {
|
|
|
4359
4476
|
withValidate?: boolean | undefined;
|
|
4360
4477
|
overMaxLengthLimit?: boolean | undefined;
|
|
4361
4478
|
showOverflowTooltips?: boolean | undefined;
|
|
4479
|
+
tooltipsOptions?: {} | undefined;
|
|
4362
4480
|
autosize?: boolean | {
|
|
4363
4481
|
minRows?: number | undefined;
|
|
4364
4482
|
maxRows?: number | undefined;
|
|
@@ -4393,6 +4511,7 @@ declare var __VLS_9: {
|
|
|
4393
4511
|
maxlength?: number | undefined;
|
|
4394
4512
|
rules?: unknown[] | undefined;
|
|
4395
4513
|
errorDisplayType?: string | undefined;
|
|
4514
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4396
4515
|
} | undefined;
|
|
4397
4516
|
props?: {
|
|
4398
4517
|
readonly [x: string]: unknown;
|
|
@@ -4421,6 +4540,7 @@ declare var __VLS_9: {
|
|
|
4421
4540
|
withValidate?: boolean | undefined;
|
|
4422
4541
|
overMaxLengthLimit?: boolean | undefined;
|
|
4423
4542
|
showOverflowTooltips?: boolean | undefined;
|
|
4543
|
+
tooltipsOptions?: {} | undefined;
|
|
4424
4544
|
autosize?: boolean | {
|
|
4425
4545
|
minRows?: number | undefined;
|
|
4426
4546
|
maxRows?: number | undefined;
|
|
@@ -4471,6 +4591,7 @@ declare var __VLS_9: {
|
|
|
4471
4591
|
maxlength?: number | undefined;
|
|
4472
4592
|
rules?: unknown[] | undefined;
|
|
4473
4593
|
errorDisplayType?: string | undefined;
|
|
4594
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4474
4595
|
} | undefined;
|
|
4475
4596
|
type: "radioGroup";
|
|
4476
4597
|
} | {
|
|
@@ -4521,6 +4642,7 @@ declare var __VLS_9: {
|
|
|
4521
4642
|
keepSearchValue?: boolean | undefined;
|
|
4522
4643
|
searchWithPinyin?: boolean | undefined;
|
|
4523
4644
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
4645
|
+
inputTooltipsOptions?: {} | undefined;
|
|
4524
4646
|
options: {
|
|
4525
4647
|
readonly [x: string]: unknown;
|
|
4526
4648
|
disabled?: boolean | undefined;
|
|
@@ -4553,6 +4675,7 @@ declare var __VLS_9: {
|
|
|
4553
4675
|
maxlength?: number | undefined;
|
|
4554
4676
|
rules?: unknown[] | undefined;
|
|
4555
4677
|
errorDisplayType?: string | undefined;
|
|
4678
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4556
4679
|
} | undefined;
|
|
4557
4680
|
type: "select";
|
|
4558
4681
|
} | {
|
|
@@ -4582,6 +4705,7 @@ declare var __VLS_9: {
|
|
|
4582
4705
|
maxlength?: number | undefined;
|
|
4583
4706
|
rules?: unknown[] | undefined;
|
|
4584
4707
|
errorDisplayType?: string | undefined;
|
|
4708
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4585
4709
|
} | undefined;
|
|
4586
4710
|
props?: {
|
|
4587
4711
|
readonly [x: string]: unknown;
|
|
@@ -4628,6 +4752,7 @@ declare var __VLS_9: {
|
|
|
4628
4752
|
maxlength?: number | undefined;
|
|
4629
4753
|
rules?: unknown[] | undefined;
|
|
4630
4754
|
errorDisplayType?: string | undefined;
|
|
4755
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4631
4756
|
} | undefined;
|
|
4632
4757
|
props?: {
|
|
4633
4758
|
readonly [x: string]: unknown;
|
|
@@ -4656,6 +4781,7 @@ declare var __VLS_9: {
|
|
|
4656
4781
|
withValidate?: boolean | undefined;
|
|
4657
4782
|
overMaxLengthLimit?: boolean | undefined;
|
|
4658
4783
|
showOverflowTooltips?: boolean | undefined;
|
|
4784
|
+
tooltipsOptions?: {} | undefined;
|
|
4659
4785
|
autosize?: boolean | {
|
|
4660
4786
|
minRows?: number | undefined;
|
|
4661
4787
|
maxRows?: number | undefined;
|
|
@@ -4690,6 +4816,7 @@ declare var __VLS_9: {
|
|
|
4690
4816
|
maxlength?: number | undefined;
|
|
4691
4817
|
rules?: unknown[] | undefined;
|
|
4692
4818
|
errorDisplayType?: string | undefined;
|
|
4819
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4693
4820
|
} | undefined;
|
|
4694
4821
|
props?: {
|
|
4695
4822
|
readonly [x: string]: unknown;
|
|
@@ -4718,6 +4845,7 @@ declare var __VLS_9: {
|
|
|
4718
4845
|
withValidate?: boolean | undefined;
|
|
4719
4846
|
overMaxLengthLimit?: boolean | undefined;
|
|
4720
4847
|
showOverflowTooltips?: boolean | undefined;
|
|
4848
|
+
tooltipsOptions?: {} | undefined;
|
|
4721
4849
|
autosize?: boolean | {
|
|
4722
4850
|
minRows?: number | undefined;
|
|
4723
4851
|
maxRows?: number | undefined;
|
|
@@ -4775,6 +4903,7 @@ declare var __VLS_9: {
|
|
|
4775
4903
|
rows?: number | undefined;
|
|
4776
4904
|
}[];
|
|
4777
4905
|
shortcut?: {
|
|
4906
|
+
alias?: string | undefined;
|
|
4778
4907
|
components?: ({
|
|
4779
4908
|
props: {
|
|
4780
4909
|
readonly [x: string]: unknown;
|
|
@@ -4821,6 +4950,7 @@ declare var __VLS_9: {
|
|
|
4821
4950
|
maxlength?: number | undefined;
|
|
4822
4951
|
rules?: unknown[] | undefined;
|
|
4823
4952
|
errorDisplayType?: string | undefined;
|
|
4953
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4824
4954
|
} | undefined;
|
|
4825
4955
|
type: "checkboxGroup";
|
|
4826
4956
|
} | {
|
|
@@ -4850,6 +4980,7 @@ declare var __VLS_9: {
|
|
|
4850
4980
|
maxlength?: number | undefined;
|
|
4851
4981
|
rules?: unknown[] | undefined;
|
|
4852
4982
|
errorDisplayType?: string | undefined;
|
|
4983
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4853
4984
|
} | undefined;
|
|
4854
4985
|
props?: {
|
|
4855
4986
|
readonly [x: string]: unknown;
|
|
@@ -4878,6 +5009,7 @@ declare var __VLS_9: {
|
|
|
4878
5009
|
withValidate?: boolean | undefined;
|
|
4879
5010
|
overMaxLengthLimit?: boolean | undefined;
|
|
4880
5011
|
showOverflowTooltips?: boolean | undefined;
|
|
5012
|
+
tooltipsOptions?: {} | undefined;
|
|
4881
5013
|
autosize?: boolean | {
|
|
4882
5014
|
minRows?: number | undefined;
|
|
4883
5015
|
maxRows?: number | undefined;
|
|
@@ -4912,6 +5044,7 @@ declare var __VLS_9: {
|
|
|
4912
5044
|
maxlength?: number | undefined;
|
|
4913
5045
|
rules?: unknown[] | undefined;
|
|
4914
5046
|
errorDisplayType?: string | undefined;
|
|
5047
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4915
5048
|
} | undefined;
|
|
4916
5049
|
props?: {
|
|
4917
5050
|
readonly [x: string]: unknown;
|
|
@@ -4940,6 +5073,7 @@ declare var __VLS_9: {
|
|
|
4940
5073
|
withValidate?: boolean | undefined;
|
|
4941
5074
|
overMaxLengthLimit?: boolean | undefined;
|
|
4942
5075
|
showOverflowTooltips?: boolean | undefined;
|
|
5076
|
+
tooltipsOptions?: {} | undefined;
|
|
4943
5077
|
autosize?: boolean | {
|
|
4944
5078
|
minRows?: number | undefined;
|
|
4945
5079
|
maxRows?: number | undefined;
|
|
@@ -4990,6 +5124,7 @@ declare var __VLS_9: {
|
|
|
4990
5124
|
maxlength?: number | undefined;
|
|
4991
5125
|
rules?: unknown[] | undefined;
|
|
4992
5126
|
errorDisplayType?: string | undefined;
|
|
5127
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
4993
5128
|
} | undefined;
|
|
4994
5129
|
type: "radioGroup";
|
|
4995
5130
|
} | {
|
|
@@ -5040,6 +5175,7 @@ declare var __VLS_9: {
|
|
|
5040
5175
|
keepSearchValue?: boolean | undefined;
|
|
5041
5176
|
searchWithPinyin?: boolean | undefined;
|
|
5042
5177
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
5178
|
+
inputTooltipsOptions?: {} | undefined;
|
|
5043
5179
|
options: {
|
|
5044
5180
|
readonly [x: string]: unknown;
|
|
5045
5181
|
disabled?: boolean | undefined;
|
|
@@ -5072,6 +5208,7 @@ declare var __VLS_9: {
|
|
|
5072
5208
|
maxlength?: number | undefined;
|
|
5073
5209
|
rules?: unknown[] | undefined;
|
|
5074
5210
|
errorDisplayType?: string | undefined;
|
|
5211
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5075
5212
|
} | undefined;
|
|
5076
5213
|
type: "select";
|
|
5077
5214
|
} | {
|
|
@@ -5101,6 +5238,7 @@ declare var __VLS_9: {
|
|
|
5101
5238
|
maxlength?: number | undefined;
|
|
5102
5239
|
rules?: unknown[] | undefined;
|
|
5103
5240
|
errorDisplayType?: string | undefined;
|
|
5241
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5104
5242
|
} | undefined;
|
|
5105
5243
|
props?: {
|
|
5106
5244
|
readonly [x: string]: unknown;
|
|
@@ -5147,6 +5285,7 @@ declare var __VLS_9: {
|
|
|
5147
5285
|
maxlength?: number | undefined;
|
|
5148
5286
|
rules?: unknown[] | undefined;
|
|
5149
5287
|
errorDisplayType?: string | undefined;
|
|
5288
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5150
5289
|
} | undefined;
|
|
5151
5290
|
props?: {
|
|
5152
5291
|
readonly [x: string]: unknown;
|
|
@@ -5175,6 +5314,7 @@ declare var __VLS_9: {
|
|
|
5175
5314
|
withValidate?: boolean | undefined;
|
|
5176
5315
|
overMaxLengthLimit?: boolean | undefined;
|
|
5177
5316
|
showOverflowTooltips?: boolean | undefined;
|
|
5317
|
+
tooltipsOptions?: {} | undefined;
|
|
5178
5318
|
autosize?: boolean | {
|
|
5179
5319
|
minRows?: number | undefined;
|
|
5180
5320
|
maxRows?: number | undefined;
|
|
@@ -5209,6 +5349,7 @@ declare var __VLS_9: {
|
|
|
5209
5349
|
maxlength?: number | undefined;
|
|
5210
5350
|
rules?: unknown[] | undefined;
|
|
5211
5351
|
errorDisplayType?: string | undefined;
|
|
5352
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5212
5353
|
} | undefined;
|
|
5213
5354
|
props?: {
|
|
5214
5355
|
readonly [x: string]: unknown;
|
|
@@ -5237,6 +5378,7 @@ declare var __VLS_9: {
|
|
|
5237
5378
|
withValidate?: boolean | undefined;
|
|
5238
5379
|
overMaxLengthLimit?: boolean | undefined;
|
|
5239
5380
|
showOverflowTooltips?: boolean | undefined;
|
|
5381
|
+
tooltipsOptions?: {} | undefined;
|
|
5240
5382
|
autosize?: boolean | {
|
|
5241
5383
|
minRows?: number | undefined;
|
|
5242
5384
|
maxRows?: number | undefined;
|
|
@@ -5294,6 +5436,7 @@ declare var __VLS_9: {
|
|
|
5294
5436
|
rows?: number | undefined;
|
|
5295
5437
|
}[];
|
|
5296
5438
|
shortcut?: {
|
|
5439
|
+
alias?: string | undefined;
|
|
5297
5440
|
components?: ({
|
|
5298
5441
|
props: {
|
|
5299
5442
|
readonly [x: string]: unknown;
|
|
@@ -5340,6 +5483,7 @@ declare var __VLS_9: {
|
|
|
5340
5483
|
maxlength?: number | undefined;
|
|
5341
5484
|
rules?: unknown[] | undefined;
|
|
5342
5485
|
errorDisplayType?: string | undefined;
|
|
5486
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5343
5487
|
} | undefined;
|
|
5344
5488
|
type: "checkboxGroup";
|
|
5345
5489
|
} | {
|
|
@@ -5369,6 +5513,7 @@ declare var __VLS_9: {
|
|
|
5369
5513
|
maxlength?: number | undefined;
|
|
5370
5514
|
rules?: unknown[] | undefined;
|
|
5371
5515
|
errorDisplayType?: string | undefined;
|
|
5516
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5372
5517
|
} | undefined;
|
|
5373
5518
|
props?: {
|
|
5374
5519
|
readonly [x: string]: unknown;
|
|
@@ -5397,6 +5542,7 @@ declare var __VLS_9: {
|
|
|
5397
5542
|
withValidate?: boolean | undefined;
|
|
5398
5543
|
overMaxLengthLimit?: boolean | undefined;
|
|
5399
5544
|
showOverflowTooltips?: boolean | undefined;
|
|
5545
|
+
tooltipsOptions?: {} | undefined;
|
|
5400
5546
|
autosize?: boolean | {
|
|
5401
5547
|
minRows?: number | undefined;
|
|
5402
5548
|
maxRows?: number | undefined;
|
|
@@ -5431,6 +5577,7 @@ declare var __VLS_9: {
|
|
|
5431
5577
|
maxlength?: number | undefined;
|
|
5432
5578
|
rules?: unknown[] | undefined;
|
|
5433
5579
|
errorDisplayType?: string | undefined;
|
|
5580
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5434
5581
|
} | undefined;
|
|
5435
5582
|
props?: {
|
|
5436
5583
|
readonly [x: string]: unknown;
|
|
@@ -5459,6 +5606,7 @@ declare var __VLS_9: {
|
|
|
5459
5606
|
withValidate?: boolean | undefined;
|
|
5460
5607
|
overMaxLengthLimit?: boolean | undefined;
|
|
5461
5608
|
showOverflowTooltips?: boolean | undefined;
|
|
5609
|
+
tooltipsOptions?: {} | undefined;
|
|
5462
5610
|
autosize?: boolean | {
|
|
5463
5611
|
minRows?: number | undefined;
|
|
5464
5612
|
maxRows?: number | undefined;
|
|
@@ -5509,6 +5657,7 @@ declare var __VLS_9: {
|
|
|
5509
5657
|
maxlength?: number | undefined;
|
|
5510
5658
|
rules?: unknown[] | undefined;
|
|
5511
5659
|
errorDisplayType?: string | undefined;
|
|
5660
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5512
5661
|
} | undefined;
|
|
5513
5662
|
type: "radioGroup";
|
|
5514
5663
|
} | {
|
|
@@ -5559,6 +5708,7 @@ declare var __VLS_9: {
|
|
|
5559
5708
|
keepSearchValue?: boolean | undefined;
|
|
5560
5709
|
searchWithPinyin?: boolean | undefined;
|
|
5561
5710
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
5711
|
+
inputTooltipsOptions?: {} | undefined;
|
|
5562
5712
|
options: {
|
|
5563
5713
|
readonly [x: string]: unknown;
|
|
5564
5714
|
disabled?: boolean | undefined;
|
|
@@ -5591,6 +5741,7 @@ declare var __VLS_9: {
|
|
|
5591
5741
|
maxlength?: number | undefined;
|
|
5592
5742
|
rules?: unknown[] | undefined;
|
|
5593
5743
|
errorDisplayType?: string | undefined;
|
|
5744
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5594
5745
|
} | undefined;
|
|
5595
5746
|
type: "select";
|
|
5596
5747
|
} | {
|
|
@@ -5620,6 +5771,7 @@ declare var __VLS_9: {
|
|
|
5620
5771
|
maxlength?: number | undefined;
|
|
5621
5772
|
rules?: unknown[] | undefined;
|
|
5622
5773
|
errorDisplayType?: string | undefined;
|
|
5774
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5623
5775
|
} | undefined;
|
|
5624
5776
|
props?: {
|
|
5625
5777
|
readonly [x: string]: unknown;
|
|
@@ -5666,6 +5818,7 @@ declare var __VLS_9: {
|
|
|
5666
5818
|
maxlength?: number | undefined;
|
|
5667
5819
|
rules?: unknown[] | undefined;
|
|
5668
5820
|
errorDisplayType?: string | undefined;
|
|
5821
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5669
5822
|
} | undefined;
|
|
5670
5823
|
props?: {
|
|
5671
5824
|
readonly [x: string]: unknown;
|
|
@@ -5694,6 +5847,7 @@ declare var __VLS_9: {
|
|
|
5694
5847
|
withValidate?: boolean | undefined;
|
|
5695
5848
|
overMaxLengthLimit?: boolean | undefined;
|
|
5696
5849
|
showOverflowTooltips?: boolean | undefined;
|
|
5850
|
+
tooltipsOptions?: {} | undefined;
|
|
5697
5851
|
autosize?: boolean | {
|
|
5698
5852
|
minRows?: number | undefined;
|
|
5699
5853
|
maxRows?: number | undefined;
|
|
@@ -5728,6 +5882,7 @@ declare var __VLS_9: {
|
|
|
5728
5882
|
maxlength?: number | undefined;
|
|
5729
5883
|
rules?: unknown[] | undefined;
|
|
5730
5884
|
errorDisplayType?: string | undefined;
|
|
5885
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5731
5886
|
} | undefined;
|
|
5732
5887
|
props?: {
|
|
5733
5888
|
readonly [x: string]: unknown;
|
|
@@ -5756,6 +5911,7 @@ declare var __VLS_9: {
|
|
|
5756
5911
|
withValidate?: boolean | undefined;
|
|
5757
5912
|
overMaxLengthLimit?: boolean | undefined;
|
|
5758
5913
|
showOverflowTooltips?: boolean | undefined;
|
|
5914
|
+
tooltipsOptions?: {} | undefined;
|
|
5759
5915
|
autosize?: boolean | {
|
|
5760
5916
|
minRows?: number | undefined;
|
|
5761
5917
|
maxRows?: number | undefined;
|
|
@@ -5813,6 +5969,7 @@ declare var __VLS_9: {
|
|
|
5813
5969
|
rows?: number | undefined;
|
|
5814
5970
|
}[];
|
|
5815
5971
|
shortcut?: {
|
|
5972
|
+
alias?: string | undefined;
|
|
5816
5973
|
components?: ({
|
|
5817
5974
|
props: {
|
|
5818
5975
|
readonly [x: string]: unknown;
|
|
@@ -5859,6 +6016,7 @@ declare var __VLS_9: {
|
|
|
5859
6016
|
maxlength?: number | undefined;
|
|
5860
6017
|
rules?: unknown[] | undefined;
|
|
5861
6018
|
errorDisplayType?: string | undefined;
|
|
6019
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5862
6020
|
} | undefined;
|
|
5863
6021
|
type: "checkboxGroup";
|
|
5864
6022
|
} | {
|
|
@@ -5888,6 +6046,7 @@ declare var __VLS_9: {
|
|
|
5888
6046
|
maxlength?: number | undefined;
|
|
5889
6047
|
rules?: unknown[] | undefined;
|
|
5890
6048
|
errorDisplayType?: string | undefined;
|
|
6049
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5891
6050
|
} | undefined;
|
|
5892
6051
|
props?: {
|
|
5893
6052
|
readonly [x: string]: unknown;
|
|
@@ -5916,6 +6075,7 @@ declare var __VLS_9: {
|
|
|
5916
6075
|
withValidate?: boolean | undefined;
|
|
5917
6076
|
overMaxLengthLimit?: boolean | undefined;
|
|
5918
6077
|
showOverflowTooltips?: boolean | undefined;
|
|
6078
|
+
tooltipsOptions?: {} | undefined;
|
|
5919
6079
|
autosize?: boolean | {
|
|
5920
6080
|
minRows?: number | undefined;
|
|
5921
6081
|
maxRows?: number | undefined;
|
|
@@ -5950,6 +6110,7 @@ declare var __VLS_9: {
|
|
|
5950
6110
|
maxlength?: number | undefined;
|
|
5951
6111
|
rules?: unknown[] | undefined;
|
|
5952
6112
|
errorDisplayType?: string | undefined;
|
|
6113
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
5953
6114
|
} | undefined;
|
|
5954
6115
|
props?: {
|
|
5955
6116
|
readonly [x: string]: unknown;
|
|
@@ -5978,6 +6139,7 @@ declare var __VLS_9: {
|
|
|
5978
6139
|
withValidate?: boolean | undefined;
|
|
5979
6140
|
overMaxLengthLimit?: boolean | undefined;
|
|
5980
6141
|
showOverflowTooltips?: boolean | undefined;
|
|
6142
|
+
tooltipsOptions?: {} | undefined;
|
|
5981
6143
|
autosize?: boolean | {
|
|
5982
6144
|
minRows?: number | undefined;
|
|
5983
6145
|
maxRows?: number | undefined;
|
|
@@ -6028,6 +6190,7 @@ declare var __VLS_9: {
|
|
|
6028
6190
|
maxlength?: number | undefined;
|
|
6029
6191
|
rules?: unknown[] | undefined;
|
|
6030
6192
|
errorDisplayType?: string | undefined;
|
|
6193
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6031
6194
|
} | undefined;
|
|
6032
6195
|
type: "radioGroup";
|
|
6033
6196
|
} | {
|
|
@@ -6078,6 +6241,7 @@ declare var __VLS_9: {
|
|
|
6078
6241
|
keepSearchValue?: boolean | undefined;
|
|
6079
6242
|
searchWithPinyin?: boolean | undefined;
|
|
6080
6243
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
6244
|
+
inputTooltipsOptions?: {} | undefined;
|
|
6081
6245
|
options: {
|
|
6082
6246
|
readonly [x: string]: unknown;
|
|
6083
6247
|
disabled?: boolean | undefined;
|
|
@@ -6110,6 +6274,7 @@ declare var __VLS_9: {
|
|
|
6110
6274
|
maxlength?: number | undefined;
|
|
6111
6275
|
rules?: unknown[] | undefined;
|
|
6112
6276
|
errorDisplayType?: string | undefined;
|
|
6277
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6113
6278
|
} | undefined;
|
|
6114
6279
|
type: "select";
|
|
6115
6280
|
} | {
|
|
@@ -6139,6 +6304,7 @@ declare var __VLS_9: {
|
|
|
6139
6304
|
maxlength?: number | undefined;
|
|
6140
6305
|
rules?: unknown[] | undefined;
|
|
6141
6306
|
errorDisplayType?: string | undefined;
|
|
6307
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6142
6308
|
} | undefined;
|
|
6143
6309
|
props?: {
|
|
6144
6310
|
readonly [x: string]: unknown;
|
|
@@ -6185,6 +6351,7 @@ declare var __VLS_9: {
|
|
|
6185
6351
|
maxlength?: number | undefined;
|
|
6186
6352
|
rules?: unknown[] | undefined;
|
|
6187
6353
|
errorDisplayType?: string | undefined;
|
|
6354
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6188
6355
|
} | undefined;
|
|
6189
6356
|
props?: {
|
|
6190
6357
|
readonly [x: string]: unknown;
|
|
@@ -6213,6 +6380,7 @@ declare var __VLS_9: {
|
|
|
6213
6380
|
withValidate?: boolean | undefined;
|
|
6214
6381
|
overMaxLengthLimit?: boolean | undefined;
|
|
6215
6382
|
showOverflowTooltips?: boolean | undefined;
|
|
6383
|
+
tooltipsOptions?: {} | undefined;
|
|
6216
6384
|
autosize?: boolean | {
|
|
6217
6385
|
minRows?: number | undefined;
|
|
6218
6386
|
maxRows?: number | undefined;
|
|
@@ -6247,6 +6415,7 @@ declare var __VLS_9: {
|
|
|
6247
6415
|
maxlength?: number | undefined;
|
|
6248
6416
|
rules?: unknown[] | undefined;
|
|
6249
6417
|
errorDisplayType?: string | undefined;
|
|
6418
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6250
6419
|
} | undefined;
|
|
6251
6420
|
props?: {
|
|
6252
6421
|
readonly [x: string]: unknown;
|
|
@@ -6275,6 +6444,7 @@ declare var __VLS_9: {
|
|
|
6275
6444
|
withValidate?: boolean | undefined;
|
|
6276
6445
|
overMaxLengthLimit?: boolean | undefined;
|
|
6277
6446
|
showOverflowTooltips?: boolean | undefined;
|
|
6447
|
+
tooltipsOptions?: {} | undefined;
|
|
6278
6448
|
autosize?: boolean | {
|
|
6279
6449
|
minRows?: number | undefined;
|
|
6280
6450
|
maxRows?: number | undefined;
|
|
@@ -6332,6 +6502,7 @@ declare var __VLS_9: {
|
|
|
6332
6502
|
rows?: number | undefined;
|
|
6333
6503
|
}[];
|
|
6334
6504
|
shortcut?: {
|
|
6505
|
+
alias?: string | undefined;
|
|
6335
6506
|
components?: ({
|
|
6336
6507
|
props: {
|
|
6337
6508
|
readonly [x: string]: unknown;
|
|
@@ -6378,6 +6549,7 @@ declare var __VLS_9: {
|
|
|
6378
6549
|
maxlength?: number | undefined;
|
|
6379
6550
|
rules?: unknown[] | undefined;
|
|
6380
6551
|
errorDisplayType?: string | undefined;
|
|
6552
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6381
6553
|
} | undefined;
|
|
6382
6554
|
type: "checkboxGroup";
|
|
6383
6555
|
} | {
|
|
@@ -6407,6 +6579,7 @@ declare var __VLS_9: {
|
|
|
6407
6579
|
maxlength?: number | undefined;
|
|
6408
6580
|
rules?: unknown[] | undefined;
|
|
6409
6581
|
errorDisplayType?: string | undefined;
|
|
6582
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6410
6583
|
} | undefined;
|
|
6411
6584
|
props?: {
|
|
6412
6585
|
readonly [x: string]: unknown;
|
|
@@ -6435,6 +6608,7 @@ declare var __VLS_9: {
|
|
|
6435
6608
|
withValidate?: boolean | undefined;
|
|
6436
6609
|
overMaxLengthLimit?: boolean | undefined;
|
|
6437
6610
|
showOverflowTooltips?: boolean | undefined;
|
|
6611
|
+
tooltipsOptions?: {} | undefined;
|
|
6438
6612
|
autosize?: boolean | {
|
|
6439
6613
|
minRows?: number | undefined;
|
|
6440
6614
|
maxRows?: number | undefined;
|
|
@@ -6469,6 +6643,7 @@ declare var __VLS_9: {
|
|
|
6469
6643
|
maxlength?: number | undefined;
|
|
6470
6644
|
rules?: unknown[] | undefined;
|
|
6471
6645
|
errorDisplayType?: string | undefined;
|
|
6646
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6472
6647
|
} | undefined;
|
|
6473
6648
|
props?: {
|
|
6474
6649
|
readonly [x: string]: unknown;
|
|
@@ -6497,6 +6672,7 @@ declare var __VLS_9: {
|
|
|
6497
6672
|
withValidate?: boolean | undefined;
|
|
6498
6673
|
overMaxLengthLimit?: boolean | undefined;
|
|
6499
6674
|
showOverflowTooltips?: boolean | undefined;
|
|
6675
|
+
tooltipsOptions?: {} | undefined;
|
|
6500
6676
|
autosize?: boolean | {
|
|
6501
6677
|
minRows?: number | undefined;
|
|
6502
6678
|
maxRows?: number | undefined;
|
|
@@ -6547,6 +6723,7 @@ declare var __VLS_9: {
|
|
|
6547
6723
|
maxlength?: number | undefined;
|
|
6548
6724
|
rules?: unknown[] | undefined;
|
|
6549
6725
|
errorDisplayType?: string | undefined;
|
|
6726
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6550
6727
|
} | undefined;
|
|
6551
6728
|
type: "radioGroup";
|
|
6552
6729
|
} | {
|
|
@@ -6597,6 +6774,7 @@ declare var __VLS_9: {
|
|
|
6597
6774
|
keepSearchValue?: boolean | undefined;
|
|
6598
6775
|
searchWithPinyin?: boolean | undefined;
|
|
6599
6776
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
6777
|
+
inputTooltipsOptions?: {} | undefined;
|
|
6600
6778
|
options: {
|
|
6601
6779
|
readonly [x: string]: unknown;
|
|
6602
6780
|
disabled?: boolean | undefined;
|
|
@@ -6629,6 +6807,7 @@ declare var __VLS_9: {
|
|
|
6629
6807
|
maxlength?: number | undefined;
|
|
6630
6808
|
rules?: unknown[] | undefined;
|
|
6631
6809
|
errorDisplayType?: string | undefined;
|
|
6810
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6632
6811
|
} | undefined;
|
|
6633
6812
|
type: "select";
|
|
6634
6813
|
} | {
|
|
@@ -6658,6 +6837,7 @@ declare var __VLS_9: {
|
|
|
6658
6837
|
maxlength?: number | undefined;
|
|
6659
6838
|
rules?: unknown[] | undefined;
|
|
6660
6839
|
errorDisplayType?: string | undefined;
|
|
6840
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6661
6841
|
} | undefined;
|
|
6662
6842
|
props?: {
|
|
6663
6843
|
readonly [x: string]: unknown;
|
|
@@ -6704,6 +6884,7 @@ declare var __VLS_9: {
|
|
|
6704
6884
|
maxlength?: number | undefined;
|
|
6705
6885
|
rules?: unknown[] | undefined;
|
|
6706
6886
|
errorDisplayType?: string | undefined;
|
|
6887
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6707
6888
|
} | undefined;
|
|
6708
6889
|
props?: {
|
|
6709
6890
|
readonly [x: string]: unknown;
|
|
@@ -6732,6 +6913,7 @@ declare var __VLS_9: {
|
|
|
6732
6913
|
withValidate?: boolean | undefined;
|
|
6733
6914
|
overMaxLengthLimit?: boolean | undefined;
|
|
6734
6915
|
showOverflowTooltips?: boolean | undefined;
|
|
6916
|
+
tooltipsOptions?: {} | undefined;
|
|
6735
6917
|
autosize?: boolean | {
|
|
6736
6918
|
minRows?: number | undefined;
|
|
6737
6919
|
maxRows?: number | undefined;
|
|
@@ -6766,6 +6948,7 @@ declare var __VLS_9: {
|
|
|
6766
6948
|
maxlength?: number | undefined;
|
|
6767
6949
|
rules?: unknown[] | undefined;
|
|
6768
6950
|
errorDisplayType?: string | undefined;
|
|
6951
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6769
6952
|
} | undefined;
|
|
6770
6953
|
props?: {
|
|
6771
6954
|
readonly [x: string]: unknown;
|
|
@@ -6794,6 +6977,7 @@ declare var __VLS_9: {
|
|
|
6794
6977
|
withValidate?: boolean | undefined;
|
|
6795
6978
|
overMaxLengthLimit?: boolean | undefined;
|
|
6796
6979
|
showOverflowTooltips?: boolean | undefined;
|
|
6980
|
+
tooltipsOptions?: {} | undefined;
|
|
6797
6981
|
autosize?: boolean | {
|
|
6798
6982
|
minRows?: number | undefined;
|
|
6799
6983
|
maxRows?: number | undefined;
|
|
@@ -6851,6 +7035,7 @@ declare var __VLS_9: {
|
|
|
6851
7035
|
rows?: number | undefined;
|
|
6852
7036
|
}[];
|
|
6853
7037
|
shortcut?: {
|
|
7038
|
+
alias?: string | undefined;
|
|
6854
7039
|
components?: ({
|
|
6855
7040
|
props: {
|
|
6856
7041
|
readonly [x: string]: unknown;
|
|
@@ -6897,6 +7082,7 @@ declare var __VLS_9: {
|
|
|
6897
7082
|
maxlength?: number | undefined;
|
|
6898
7083
|
rules?: unknown[] | undefined;
|
|
6899
7084
|
errorDisplayType?: string | undefined;
|
|
7085
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6900
7086
|
} | undefined;
|
|
6901
7087
|
type: "checkboxGroup";
|
|
6902
7088
|
} | {
|
|
@@ -6926,6 +7112,7 @@ declare var __VLS_9: {
|
|
|
6926
7112
|
maxlength?: number | undefined;
|
|
6927
7113
|
rules?: unknown[] | undefined;
|
|
6928
7114
|
errorDisplayType?: string | undefined;
|
|
7115
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6929
7116
|
} | undefined;
|
|
6930
7117
|
props?: {
|
|
6931
7118
|
readonly [x: string]: unknown;
|
|
@@ -6954,6 +7141,7 @@ declare var __VLS_9: {
|
|
|
6954
7141
|
withValidate?: boolean | undefined;
|
|
6955
7142
|
overMaxLengthLimit?: boolean | undefined;
|
|
6956
7143
|
showOverflowTooltips?: boolean | undefined;
|
|
7144
|
+
tooltipsOptions?: {} | undefined;
|
|
6957
7145
|
autosize?: boolean | {
|
|
6958
7146
|
minRows?: number | undefined;
|
|
6959
7147
|
maxRows?: number | undefined;
|
|
@@ -6988,6 +7176,7 @@ declare var __VLS_9: {
|
|
|
6988
7176
|
maxlength?: number | undefined;
|
|
6989
7177
|
rules?: unknown[] | undefined;
|
|
6990
7178
|
errorDisplayType?: string | undefined;
|
|
7179
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
6991
7180
|
} | undefined;
|
|
6992
7181
|
props?: {
|
|
6993
7182
|
readonly [x: string]: unknown;
|
|
@@ -7016,6 +7205,7 @@ declare var __VLS_9: {
|
|
|
7016
7205
|
withValidate?: boolean | undefined;
|
|
7017
7206
|
overMaxLengthLimit?: boolean | undefined;
|
|
7018
7207
|
showOverflowTooltips?: boolean | undefined;
|
|
7208
|
+
tooltipsOptions?: {} | undefined;
|
|
7019
7209
|
autosize?: boolean | {
|
|
7020
7210
|
minRows?: number | undefined;
|
|
7021
7211
|
maxRows?: number | undefined;
|
|
@@ -7066,6 +7256,7 @@ declare var __VLS_9: {
|
|
|
7066
7256
|
maxlength?: number | undefined;
|
|
7067
7257
|
rules?: unknown[] | undefined;
|
|
7068
7258
|
errorDisplayType?: string | undefined;
|
|
7259
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7069
7260
|
} | undefined;
|
|
7070
7261
|
type: "radioGroup";
|
|
7071
7262
|
} | {
|
|
@@ -7116,6 +7307,7 @@ declare var __VLS_9: {
|
|
|
7116
7307
|
keepSearchValue?: boolean | undefined;
|
|
7117
7308
|
searchWithPinyin?: boolean | undefined;
|
|
7118
7309
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
7310
|
+
inputTooltipsOptions?: {} | undefined;
|
|
7119
7311
|
options: {
|
|
7120
7312
|
readonly [x: string]: unknown;
|
|
7121
7313
|
disabled?: boolean | undefined;
|
|
@@ -7148,6 +7340,7 @@ declare var __VLS_9: {
|
|
|
7148
7340
|
maxlength?: number | undefined;
|
|
7149
7341
|
rules?: unknown[] | undefined;
|
|
7150
7342
|
errorDisplayType?: string | undefined;
|
|
7343
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7151
7344
|
} | undefined;
|
|
7152
7345
|
type: "select";
|
|
7153
7346
|
} | {
|
|
@@ -7177,6 +7370,7 @@ declare var __VLS_9: {
|
|
|
7177
7370
|
maxlength?: number | undefined;
|
|
7178
7371
|
rules?: unknown[] | undefined;
|
|
7179
7372
|
errorDisplayType?: string | undefined;
|
|
7373
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7180
7374
|
} | undefined;
|
|
7181
7375
|
props?: {
|
|
7182
7376
|
readonly [x: string]: unknown;
|
|
@@ -7223,6 +7417,7 @@ declare var __VLS_9: {
|
|
|
7223
7417
|
maxlength?: number | undefined;
|
|
7224
7418
|
rules?: unknown[] | undefined;
|
|
7225
7419
|
errorDisplayType?: string | undefined;
|
|
7420
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7226
7421
|
} | undefined;
|
|
7227
7422
|
props?: {
|
|
7228
7423
|
readonly [x: string]: unknown;
|
|
@@ -7251,6 +7446,7 @@ declare var __VLS_9: {
|
|
|
7251
7446
|
withValidate?: boolean | undefined;
|
|
7252
7447
|
overMaxLengthLimit?: boolean | undefined;
|
|
7253
7448
|
showOverflowTooltips?: boolean | undefined;
|
|
7449
|
+
tooltipsOptions?: {} | undefined;
|
|
7254
7450
|
autosize?: boolean | {
|
|
7255
7451
|
minRows?: number | undefined;
|
|
7256
7452
|
maxRows?: number | undefined;
|
|
@@ -7285,6 +7481,7 @@ declare var __VLS_9: {
|
|
|
7285
7481
|
maxlength?: number | undefined;
|
|
7286
7482
|
rules?: unknown[] | undefined;
|
|
7287
7483
|
errorDisplayType?: string | undefined;
|
|
7484
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7288
7485
|
} | undefined;
|
|
7289
7486
|
props?: {
|
|
7290
7487
|
readonly [x: string]: unknown;
|
|
@@ -7313,6 +7510,7 @@ declare var __VLS_9: {
|
|
|
7313
7510
|
withValidate?: boolean | undefined;
|
|
7314
7511
|
overMaxLengthLimit?: boolean | undefined;
|
|
7315
7512
|
showOverflowTooltips?: boolean | undefined;
|
|
7513
|
+
tooltipsOptions?: {} | undefined;
|
|
7316
7514
|
autosize?: boolean | {
|
|
7317
7515
|
minRows?: number | undefined;
|
|
7318
7516
|
maxRows?: number | undefined;
|
|
@@ -7371,6 +7569,7 @@ declare var __VLS_9: {
|
|
|
7371
7569
|
rows?: number | undefined;
|
|
7372
7570
|
}[];
|
|
7373
7571
|
shortcut?: {
|
|
7572
|
+
alias?: string | undefined;
|
|
7374
7573
|
components?: ({
|
|
7375
7574
|
props: {
|
|
7376
7575
|
readonly [x: string]: unknown;
|
|
@@ -7417,6 +7616,7 @@ declare var __VLS_9: {
|
|
|
7417
7616
|
maxlength?: number | undefined;
|
|
7418
7617
|
rules?: unknown[] | undefined;
|
|
7419
7618
|
errorDisplayType?: string | undefined;
|
|
7619
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7420
7620
|
} | undefined;
|
|
7421
7621
|
type: "checkboxGroup";
|
|
7422
7622
|
} | {
|
|
@@ -7446,6 +7646,7 @@ declare var __VLS_9: {
|
|
|
7446
7646
|
maxlength?: number | undefined;
|
|
7447
7647
|
rules?: unknown[] | undefined;
|
|
7448
7648
|
errorDisplayType?: string | undefined;
|
|
7649
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7449
7650
|
} | undefined;
|
|
7450
7651
|
props?: {
|
|
7451
7652
|
readonly [x: string]: unknown;
|
|
@@ -7474,6 +7675,7 @@ declare var __VLS_9: {
|
|
|
7474
7675
|
withValidate?: boolean | undefined;
|
|
7475
7676
|
overMaxLengthLimit?: boolean | undefined;
|
|
7476
7677
|
showOverflowTooltips?: boolean | undefined;
|
|
7678
|
+
tooltipsOptions?: {} | undefined;
|
|
7477
7679
|
autosize?: boolean | {
|
|
7478
7680
|
minRows?: number | undefined;
|
|
7479
7681
|
maxRows?: number | undefined;
|
|
@@ -7508,6 +7710,7 @@ declare var __VLS_9: {
|
|
|
7508
7710
|
maxlength?: number | undefined;
|
|
7509
7711
|
rules?: unknown[] | undefined;
|
|
7510
7712
|
errorDisplayType?: string | undefined;
|
|
7713
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7511
7714
|
} | undefined;
|
|
7512
7715
|
props?: {
|
|
7513
7716
|
readonly [x: string]: unknown;
|
|
@@ -7536,6 +7739,7 @@ declare var __VLS_9: {
|
|
|
7536
7739
|
withValidate?: boolean | undefined;
|
|
7537
7740
|
overMaxLengthLimit?: boolean | undefined;
|
|
7538
7741
|
showOverflowTooltips?: boolean | undefined;
|
|
7742
|
+
tooltipsOptions?: {} | undefined;
|
|
7539
7743
|
autosize?: boolean | {
|
|
7540
7744
|
minRows?: number | undefined;
|
|
7541
7745
|
maxRows?: number | undefined;
|
|
@@ -7586,6 +7790,7 @@ declare var __VLS_9: {
|
|
|
7586
7790
|
maxlength?: number | undefined;
|
|
7587
7791
|
rules?: unknown[] | undefined;
|
|
7588
7792
|
errorDisplayType?: string | undefined;
|
|
7793
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7589
7794
|
} | undefined;
|
|
7590
7795
|
type: "radioGroup";
|
|
7591
7796
|
} | {
|
|
@@ -7636,6 +7841,7 @@ declare var __VLS_9: {
|
|
|
7636
7841
|
keepSearchValue?: boolean | undefined;
|
|
7637
7842
|
searchWithPinyin?: boolean | undefined;
|
|
7638
7843
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
7844
|
+
inputTooltipsOptions?: {} | undefined;
|
|
7639
7845
|
options: {
|
|
7640
7846
|
readonly [x: string]: unknown;
|
|
7641
7847
|
disabled?: boolean | undefined;
|
|
@@ -7668,6 +7874,7 @@ declare var __VLS_9: {
|
|
|
7668
7874
|
maxlength?: number | undefined;
|
|
7669
7875
|
rules?: unknown[] | undefined;
|
|
7670
7876
|
errorDisplayType?: string | undefined;
|
|
7877
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7671
7878
|
} | undefined;
|
|
7672
7879
|
type: "select";
|
|
7673
7880
|
} | {
|
|
@@ -7697,6 +7904,7 @@ declare var __VLS_9: {
|
|
|
7697
7904
|
maxlength?: number | undefined;
|
|
7698
7905
|
rules?: unknown[] | undefined;
|
|
7699
7906
|
errorDisplayType?: string | undefined;
|
|
7907
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7700
7908
|
} | undefined;
|
|
7701
7909
|
props?: {
|
|
7702
7910
|
readonly [x: string]: unknown;
|
|
@@ -7743,6 +7951,7 @@ declare var __VLS_9: {
|
|
|
7743
7951
|
maxlength?: number | undefined;
|
|
7744
7952
|
rules?: unknown[] | undefined;
|
|
7745
7953
|
errorDisplayType?: string | undefined;
|
|
7954
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7746
7955
|
} | undefined;
|
|
7747
7956
|
props?: {
|
|
7748
7957
|
readonly [x: string]: unknown;
|
|
@@ -7771,6 +7980,7 @@ declare var __VLS_9: {
|
|
|
7771
7980
|
withValidate?: boolean | undefined;
|
|
7772
7981
|
overMaxLengthLimit?: boolean | undefined;
|
|
7773
7982
|
showOverflowTooltips?: boolean | undefined;
|
|
7983
|
+
tooltipsOptions?: {} | undefined;
|
|
7774
7984
|
autosize?: boolean | {
|
|
7775
7985
|
minRows?: number | undefined;
|
|
7776
7986
|
maxRows?: number | undefined;
|
|
@@ -7805,6 +8015,7 @@ declare var __VLS_9: {
|
|
|
7805
8015
|
maxlength?: number | undefined;
|
|
7806
8016
|
rules?: unknown[] | undefined;
|
|
7807
8017
|
errorDisplayType?: string | undefined;
|
|
8018
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7808
8019
|
} | undefined;
|
|
7809
8020
|
props?: {
|
|
7810
8021
|
readonly [x: string]: unknown;
|
|
@@ -7833,6 +8044,7 @@ declare var __VLS_9: {
|
|
|
7833
8044
|
withValidate?: boolean | undefined;
|
|
7834
8045
|
overMaxLengthLimit?: boolean | undefined;
|
|
7835
8046
|
showOverflowTooltips?: boolean | undefined;
|
|
8047
|
+
tooltipsOptions?: {} | undefined;
|
|
7836
8048
|
autosize?: boolean | {
|
|
7837
8049
|
minRows?: number | undefined;
|
|
7838
8050
|
maxRows?: number | undefined;
|
|
@@ -7890,6 +8102,7 @@ declare var __VLS_9: {
|
|
|
7890
8102
|
rows?: number | undefined;
|
|
7891
8103
|
}[];
|
|
7892
8104
|
shortcut?: {
|
|
8105
|
+
alias?: string | undefined;
|
|
7893
8106
|
components?: ({
|
|
7894
8107
|
props: {
|
|
7895
8108
|
readonly [x: string]: unknown;
|
|
@@ -7936,6 +8149,7 @@ declare var __VLS_9: {
|
|
|
7936
8149
|
maxlength?: number | undefined;
|
|
7937
8150
|
rules?: unknown[] | undefined;
|
|
7938
8151
|
errorDisplayType?: string | undefined;
|
|
8152
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7939
8153
|
} | undefined;
|
|
7940
8154
|
type: "checkboxGroup";
|
|
7941
8155
|
} | {
|
|
@@ -7965,6 +8179,7 @@ declare var __VLS_9: {
|
|
|
7965
8179
|
maxlength?: number | undefined;
|
|
7966
8180
|
rules?: unknown[] | undefined;
|
|
7967
8181
|
errorDisplayType?: string | undefined;
|
|
8182
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
7968
8183
|
} | undefined;
|
|
7969
8184
|
props?: {
|
|
7970
8185
|
readonly [x: string]: unknown;
|
|
@@ -7993,6 +8208,7 @@ declare var __VLS_9: {
|
|
|
7993
8208
|
withValidate?: boolean | undefined;
|
|
7994
8209
|
overMaxLengthLimit?: boolean | undefined;
|
|
7995
8210
|
showOverflowTooltips?: boolean | undefined;
|
|
8211
|
+
tooltipsOptions?: {} | undefined;
|
|
7996
8212
|
autosize?: boolean | {
|
|
7997
8213
|
minRows?: number | undefined;
|
|
7998
8214
|
maxRows?: number | undefined;
|
|
@@ -8027,6 +8243,7 @@ declare var __VLS_9: {
|
|
|
8027
8243
|
maxlength?: number | undefined;
|
|
8028
8244
|
rules?: unknown[] | undefined;
|
|
8029
8245
|
errorDisplayType?: string | undefined;
|
|
8246
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8030
8247
|
} | undefined;
|
|
8031
8248
|
props?: {
|
|
8032
8249
|
readonly [x: string]: unknown;
|
|
@@ -8055,6 +8272,7 @@ declare var __VLS_9: {
|
|
|
8055
8272
|
withValidate?: boolean | undefined;
|
|
8056
8273
|
overMaxLengthLimit?: boolean | undefined;
|
|
8057
8274
|
showOverflowTooltips?: boolean | undefined;
|
|
8275
|
+
tooltipsOptions?: {} | undefined;
|
|
8058
8276
|
autosize?: boolean | {
|
|
8059
8277
|
minRows?: number | undefined;
|
|
8060
8278
|
maxRows?: number | undefined;
|
|
@@ -8105,6 +8323,7 @@ declare var __VLS_9: {
|
|
|
8105
8323
|
maxlength?: number | undefined;
|
|
8106
8324
|
rules?: unknown[] | undefined;
|
|
8107
8325
|
errorDisplayType?: string | undefined;
|
|
8326
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8108
8327
|
} | undefined;
|
|
8109
8328
|
type: "radioGroup";
|
|
8110
8329
|
} | {
|
|
@@ -8155,6 +8374,7 @@ declare var __VLS_9: {
|
|
|
8155
8374
|
keepSearchValue?: boolean | undefined;
|
|
8156
8375
|
searchWithPinyin?: boolean | undefined;
|
|
8157
8376
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
8377
|
+
inputTooltipsOptions?: {} | undefined;
|
|
8158
8378
|
options: {
|
|
8159
8379
|
readonly [x: string]: unknown;
|
|
8160
8380
|
disabled?: boolean | undefined;
|
|
@@ -8187,6 +8407,7 @@ declare var __VLS_9: {
|
|
|
8187
8407
|
maxlength?: number | undefined;
|
|
8188
8408
|
rules?: unknown[] | undefined;
|
|
8189
8409
|
errorDisplayType?: string | undefined;
|
|
8410
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8190
8411
|
} | undefined;
|
|
8191
8412
|
type: "select";
|
|
8192
8413
|
} | {
|
|
@@ -8216,6 +8437,7 @@ declare var __VLS_9: {
|
|
|
8216
8437
|
maxlength?: number | undefined;
|
|
8217
8438
|
rules?: unknown[] | undefined;
|
|
8218
8439
|
errorDisplayType?: string | undefined;
|
|
8440
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8219
8441
|
} | undefined;
|
|
8220
8442
|
props?: {
|
|
8221
8443
|
readonly [x: string]: unknown;
|
|
@@ -8262,6 +8484,7 @@ declare var __VLS_9: {
|
|
|
8262
8484
|
maxlength?: number | undefined;
|
|
8263
8485
|
rules?: unknown[] | undefined;
|
|
8264
8486
|
errorDisplayType?: string | undefined;
|
|
8487
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8265
8488
|
} | undefined;
|
|
8266
8489
|
props?: {
|
|
8267
8490
|
readonly [x: string]: unknown;
|
|
@@ -8290,6 +8513,7 @@ declare var __VLS_9: {
|
|
|
8290
8513
|
withValidate?: boolean | undefined;
|
|
8291
8514
|
overMaxLengthLimit?: boolean | undefined;
|
|
8292
8515
|
showOverflowTooltips?: boolean | undefined;
|
|
8516
|
+
tooltipsOptions?: {} | undefined;
|
|
8293
8517
|
autosize?: boolean | {
|
|
8294
8518
|
minRows?: number | undefined;
|
|
8295
8519
|
maxRows?: number | undefined;
|
|
@@ -8324,6 +8548,7 @@ declare var __VLS_9: {
|
|
|
8324
8548
|
maxlength?: number | undefined;
|
|
8325
8549
|
rules?: unknown[] | undefined;
|
|
8326
8550
|
errorDisplayType?: string | undefined;
|
|
8551
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8327
8552
|
} | undefined;
|
|
8328
8553
|
props?: {
|
|
8329
8554
|
readonly [x: string]: unknown;
|
|
@@ -8352,6 +8577,7 @@ declare var __VLS_9: {
|
|
|
8352
8577
|
withValidate?: boolean | undefined;
|
|
8353
8578
|
overMaxLengthLimit?: boolean | undefined;
|
|
8354
8579
|
showOverflowTooltips?: boolean | undefined;
|
|
8580
|
+
tooltipsOptions?: {} | undefined;
|
|
8355
8581
|
autosize?: boolean | {
|
|
8356
8582
|
minRows?: number | undefined;
|
|
8357
8583
|
maxRows?: number | undefined;
|
|
@@ -8409,6 +8635,7 @@ declare var __VLS_9: {
|
|
|
8409
8635
|
rows?: number | undefined;
|
|
8410
8636
|
}[];
|
|
8411
8637
|
shortcut?: {
|
|
8638
|
+
alias?: string | undefined;
|
|
8412
8639
|
components?: ({
|
|
8413
8640
|
props: {
|
|
8414
8641
|
readonly [x: string]: unknown;
|
|
@@ -8455,6 +8682,7 @@ declare var __VLS_9: {
|
|
|
8455
8682
|
maxlength?: number | undefined;
|
|
8456
8683
|
rules?: unknown[] | undefined;
|
|
8457
8684
|
errorDisplayType?: string | undefined;
|
|
8685
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8458
8686
|
} | undefined;
|
|
8459
8687
|
type: "checkboxGroup";
|
|
8460
8688
|
} | {
|
|
@@ -8484,6 +8712,7 @@ declare var __VLS_9: {
|
|
|
8484
8712
|
maxlength?: number | undefined;
|
|
8485
8713
|
rules?: unknown[] | undefined;
|
|
8486
8714
|
errorDisplayType?: string | undefined;
|
|
8715
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8487
8716
|
} | undefined;
|
|
8488
8717
|
props?: {
|
|
8489
8718
|
readonly [x: string]: unknown;
|
|
@@ -8512,6 +8741,7 @@ declare var __VLS_9: {
|
|
|
8512
8741
|
withValidate?: boolean | undefined;
|
|
8513
8742
|
overMaxLengthLimit?: boolean | undefined;
|
|
8514
8743
|
showOverflowTooltips?: boolean | undefined;
|
|
8744
|
+
tooltipsOptions?: {} | undefined;
|
|
8515
8745
|
autosize?: boolean | {
|
|
8516
8746
|
minRows?: number | undefined;
|
|
8517
8747
|
maxRows?: number | undefined;
|
|
@@ -8546,6 +8776,7 @@ declare var __VLS_9: {
|
|
|
8546
8776
|
maxlength?: number | undefined;
|
|
8547
8777
|
rules?: unknown[] | undefined;
|
|
8548
8778
|
errorDisplayType?: string | undefined;
|
|
8779
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8549
8780
|
} | undefined;
|
|
8550
8781
|
props?: {
|
|
8551
8782
|
readonly [x: string]: unknown;
|
|
@@ -8574,6 +8805,7 @@ declare var __VLS_9: {
|
|
|
8574
8805
|
withValidate?: boolean | undefined;
|
|
8575
8806
|
overMaxLengthLimit?: boolean | undefined;
|
|
8576
8807
|
showOverflowTooltips?: boolean | undefined;
|
|
8808
|
+
tooltipsOptions?: {} | undefined;
|
|
8577
8809
|
autosize?: boolean | {
|
|
8578
8810
|
minRows?: number | undefined;
|
|
8579
8811
|
maxRows?: number | undefined;
|
|
@@ -8624,6 +8856,7 @@ declare var __VLS_9: {
|
|
|
8624
8856
|
maxlength?: number | undefined;
|
|
8625
8857
|
rules?: unknown[] | undefined;
|
|
8626
8858
|
errorDisplayType?: string | undefined;
|
|
8859
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8627
8860
|
} | undefined;
|
|
8628
8861
|
type: "radioGroup";
|
|
8629
8862
|
} | {
|
|
@@ -8674,6 +8907,7 @@ declare var __VLS_9: {
|
|
|
8674
8907
|
keepSearchValue?: boolean | undefined;
|
|
8675
8908
|
searchWithPinyin?: boolean | undefined;
|
|
8676
8909
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
8910
|
+
inputTooltipsOptions?: {} | undefined;
|
|
8677
8911
|
options: {
|
|
8678
8912
|
readonly [x: string]: unknown;
|
|
8679
8913
|
disabled?: boolean | undefined;
|
|
@@ -8706,6 +8940,7 @@ declare var __VLS_9: {
|
|
|
8706
8940
|
maxlength?: number | undefined;
|
|
8707
8941
|
rules?: unknown[] | undefined;
|
|
8708
8942
|
errorDisplayType?: string | undefined;
|
|
8943
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8709
8944
|
} | undefined;
|
|
8710
8945
|
type: "select";
|
|
8711
8946
|
} | {
|
|
@@ -8735,6 +8970,7 @@ declare var __VLS_9: {
|
|
|
8735
8970
|
maxlength?: number | undefined;
|
|
8736
8971
|
rules?: unknown[] | undefined;
|
|
8737
8972
|
errorDisplayType?: string | undefined;
|
|
8973
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8738
8974
|
} | undefined;
|
|
8739
8975
|
props?: {
|
|
8740
8976
|
readonly [x: string]: unknown;
|
|
@@ -8781,6 +9017,7 @@ declare var __VLS_9: {
|
|
|
8781
9017
|
maxlength?: number | undefined;
|
|
8782
9018
|
rules?: unknown[] | undefined;
|
|
8783
9019
|
errorDisplayType?: string | undefined;
|
|
9020
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8784
9021
|
} | undefined;
|
|
8785
9022
|
props?: {
|
|
8786
9023
|
readonly [x: string]: unknown;
|
|
@@ -8809,6 +9046,7 @@ declare var __VLS_9: {
|
|
|
8809
9046
|
withValidate?: boolean | undefined;
|
|
8810
9047
|
overMaxLengthLimit?: boolean | undefined;
|
|
8811
9048
|
showOverflowTooltips?: boolean | undefined;
|
|
9049
|
+
tooltipsOptions?: {} | undefined;
|
|
8812
9050
|
autosize?: boolean | {
|
|
8813
9051
|
minRows?: number | undefined;
|
|
8814
9052
|
maxRows?: number | undefined;
|
|
@@ -8843,6 +9081,7 @@ declare var __VLS_9: {
|
|
|
8843
9081
|
maxlength?: number | undefined;
|
|
8844
9082
|
rules?: unknown[] | undefined;
|
|
8845
9083
|
errorDisplayType?: string | undefined;
|
|
9084
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8846
9085
|
} | undefined;
|
|
8847
9086
|
props?: {
|
|
8848
9087
|
readonly [x: string]: unknown;
|
|
@@ -8871,6 +9110,7 @@ declare var __VLS_9: {
|
|
|
8871
9110
|
withValidate?: boolean | undefined;
|
|
8872
9111
|
overMaxLengthLimit?: boolean | undefined;
|
|
8873
9112
|
showOverflowTooltips?: boolean | undefined;
|
|
9113
|
+
tooltipsOptions?: {} | undefined;
|
|
8874
9114
|
autosize?: boolean | {
|
|
8875
9115
|
minRows?: number | undefined;
|
|
8876
9116
|
maxRows?: number | undefined;
|
|
@@ -8928,6 +9168,7 @@ declare var __VLS_9: {
|
|
|
8928
9168
|
rows?: number | undefined;
|
|
8929
9169
|
}[];
|
|
8930
9170
|
shortcut?: {
|
|
9171
|
+
alias?: string | undefined;
|
|
8931
9172
|
components?: ({
|
|
8932
9173
|
props: {
|
|
8933
9174
|
readonly [x: string]: unknown;
|
|
@@ -8974,6 +9215,7 @@ declare var __VLS_9: {
|
|
|
8974
9215
|
maxlength?: number | undefined;
|
|
8975
9216
|
rules?: unknown[] | undefined;
|
|
8976
9217
|
errorDisplayType?: string | undefined;
|
|
9218
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
8977
9219
|
} | undefined;
|
|
8978
9220
|
type: "checkboxGroup";
|
|
8979
9221
|
} | {
|
|
@@ -9003,6 +9245,7 @@ declare var __VLS_9: {
|
|
|
9003
9245
|
maxlength?: number | undefined;
|
|
9004
9246
|
rules?: unknown[] | undefined;
|
|
9005
9247
|
errorDisplayType?: string | undefined;
|
|
9248
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9006
9249
|
} | undefined;
|
|
9007
9250
|
props?: {
|
|
9008
9251
|
readonly [x: string]: unknown;
|
|
@@ -9031,6 +9274,7 @@ declare var __VLS_9: {
|
|
|
9031
9274
|
withValidate?: boolean | undefined;
|
|
9032
9275
|
overMaxLengthLimit?: boolean | undefined;
|
|
9033
9276
|
showOverflowTooltips?: boolean | undefined;
|
|
9277
|
+
tooltipsOptions?: {} | undefined;
|
|
9034
9278
|
autosize?: boolean | {
|
|
9035
9279
|
minRows?: number | undefined;
|
|
9036
9280
|
maxRows?: number | undefined;
|
|
@@ -9065,6 +9309,7 @@ declare var __VLS_9: {
|
|
|
9065
9309
|
maxlength?: number | undefined;
|
|
9066
9310
|
rules?: unknown[] | undefined;
|
|
9067
9311
|
errorDisplayType?: string | undefined;
|
|
9312
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9068
9313
|
} | undefined;
|
|
9069
9314
|
props?: {
|
|
9070
9315
|
readonly [x: string]: unknown;
|
|
@@ -9093,6 +9338,7 @@ declare var __VLS_9: {
|
|
|
9093
9338
|
withValidate?: boolean | undefined;
|
|
9094
9339
|
overMaxLengthLimit?: boolean | undefined;
|
|
9095
9340
|
showOverflowTooltips?: boolean | undefined;
|
|
9341
|
+
tooltipsOptions?: {} | undefined;
|
|
9096
9342
|
autosize?: boolean | {
|
|
9097
9343
|
minRows?: number | undefined;
|
|
9098
9344
|
maxRows?: number | undefined;
|
|
@@ -9143,6 +9389,7 @@ declare var __VLS_9: {
|
|
|
9143
9389
|
maxlength?: number | undefined;
|
|
9144
9390
|
rules?: unknown[] | undefined;
|
|
9145
9391
|
errorDisplayType?: string | undefined;
|
|
9392
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9146
9393
|
} | undefined;
|
|
9147
9394
|
type: "radioGroup";
|
|
9148
9395
|
} | {
|
|
@@ -9193,6 +9440,7 @@ declare var __VLS_9: {
|
|
|
9193
9440
|
keepSearchValue?: boolean | undefined;
|
|
9194
9441
|
searchWithPinyin?: boolean | undefined;
|
|
9195
9442
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
9443
|
+
inputTooltipsOptions?: {} | undefined;
|
|
9196
9444
|
options: {
|
|
9197
9445
|
readonly [x: string]: unknown;
|
|
9198
9446
|
disabled?: boolean | undefined;
|
|
@@ -9225,6 +9473,7 @@ declare var __VLS_9: {
|
|
|
9225
9473
|
maxlength?: number | undefined;
|
|
9226
9474
|
rules?: unknown[] | undefined;
|
|
9227
9475
|
errorDisplayType?: string | undefined;
|
|
9476
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9228
9477
|
} | undefined;
|
|
9229
9478
|
type: "select";
|
|
9230
9479
|
} | {
|
|
@@ -9254,6 +9503,7 @@ declare var __VLS_9: {
|
|
|
9254
9503
|
maxlength?: number | undefined;
|
|
9255
9504
|
rules?: unknown[] | undefined;
|
|
9256
9505
|
errorDisplayType?: string | undefined;
|
|
9506
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9257
9507
|
} | undefined;
|
|
9258
9508
|
props?: {
|
|
9259
9509
|
readonly [x: string]: unknown;
|
|
@@ -9300,6 +9550,7 @@ declare var __VLS_9: {
|
|
|
9300
9550
|
maxlength?: number | undefined;
|
|
9301
9551
|
rules?: unknown[] | undefined;
|
|
9302
9552
|
errorDisplayType?: string | undefined;
|
|
9553
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9303
9554
|
} | undefined;
|
|
9304
9555
|
props?: {
|
|
9305
9556
|
readonly [x: string]: unknown;
|
|
@@ -9328,6 +9579,7 @@ declare var __VLS_9: {
|
|
|
9328
9579
|
withValidate?: boolean | undefined;
|
|
9329
9580
|
overMaxLengthLimit?: boolean | undefined;
|
|
9330
9581
|
showOverflowTooltips?: boolean | undefined;
|
|
9582
|
+
tooltipsOptions?: {} | undefined;
|
|
9331
9583
|
autosize?: boolean | {
|
|
9332
9584
|
minRows?: number | undefined;
|
|
9333
9585
|
maxRows?: number | undefined;
|
|
@@ -9362,6 +9614,7 @@ declare var __VLS_9: {
|
|
|
9362
9614
|
maxlength?: number | undefined;
|
|
9363
9615
|
rules?: unknown[] | undefined;
|
|
9364
9616
|
errorDisplayType?: string | undefined;
|
|
9617
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9365
9618
|
} | undefined;
|
|
9366
9619
|
props?: {
|
|
9367
9620
|
readonly [x: string]: unknown;
|
|
@@ -9390,6 +9643,7 @@ declare var __VLS_9: {
|
|
|
9390
9643
|
withValidate?: boolean | undefined;
|
|
9391
9644
|
overMaxLengthLimit?: boolean | undefined;
|
|
9392
9645
|
showOverflowTooltips?: boolean | undefined;
|
|
9646
|
+
tooltipsOptions?: {} | undefined;
|
|
9393
9647
|
autosize?: boolean | {
|
|
9394
9648
|
minRows?: number | undefined;
|
|
9395
9649
|
maxRows?: number | undefined;
|
|
@@ -9447,6 +9701,7 @@ declare var __VLS_9: {
|
|
|
9447
9701
|
rows?: number | undefined;
|
|
9448
9702
|
}[];
|
|
9449
9703
|
shortcut?: {
|
|
9704
|
+
alias?: string | undefined;
|
|
9450
9705
|
components?: ({
|
|
9451
9706
|
props: {
|
|
9452
9707
|
readonly [x: string]: unknown;
|
|
@@ -9493,6 +9748,7 @@ declare var __VLS_9: {
|
|
|
9493
9748
|
maxlength?: number | undefined;
|
|
9494
9749
|
rules?: unknown[] | undefined;
|
|
9495
9750
|
errorDisplayType?: string | undefined;
|
|
9751
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9496
9752
|
} | undefined;
|
|
9497
9753
|
type: "checkboxGroup";
|
|
9498
9754
|
} | {
|
|
@@ -9522,6 +9778,7 @@ declare var __VLS_9: {
|
|
|
9522
9778
|
maxlength?: number | undefined;
|
|
9523
9779
|
rules?: unknown[] | undefined;
|
|
9524
9780
|
errorDisplayType?: string | undefined;
|
|
9781
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9525
9782
|
} | undefined;
|
|
9526
9783
|
props?: {
|
|
9527
9784
|
readonly [x: string]: unknown;
|
|
@@ -9550,6 +9807,7 @@ declare var __VLS_9: {
|
|
|
9550
9807
|
withValidate?: boolean | undefined;
|
|
9551
9808
|
overMaxLengthLimit?: boolean | undefined;
|
|
9552
9809
|
showOverflowTooltips?: boolean | undefined;
|
|
9810
|
+
tooltipsOptions?: {} | undefined;
|
|
9553
9811
|
autosize?: boolean | {
|
|
9554
9812
|
minRows?: number | undefined;
|
|
9555
9813
|
maxRows?: number | undefined;
|
|
@@ -9584,6 +9842,7 @@ declare var __VLS_9: {
|
|
|
9584
9842
|
maxlength?: number | undefined;
|
|
9585
9843
|
rules?: unknown[] | undefined;
|
|
9586
9844
|
errorDisplayType?: string | undefined;
|
|
9845
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9587
9846
|
} | undefined;
|
|
9588
9847
|
props?: {
|
|
9589
9848
|
readonly [x: string]: unknown;
|
|
@@ -9612,6 +9871,7 @@ declare var __VLS_9: {
|
|
|
9612
9871
|
withValidate?: boolean | undefined;
|
|
9613
9872
|
overMaxLengthLimit?: boolean | undefined;
|
|
9614
9873
|
showOverflowTooltips?: boolean | undefined;
|
|
9874
|
+
tooltipsOptions?: {} | undefined;
|
|
9615
9875
|
autosize?: boolean | {
|
|
9616
9876
|
minRows?: number | undefined;
|
|
9617
9877
|
maxRows?: number | undefined;
|
|
@@ -9662,6 +9922,7 @@ declare var __VLS_9: {
|
|
|
9662
9922
|
maxlength?: number | undefined;
|
|
9663
9923
|
rules?: unknown[] | undefined;
|
|
9664
9924
|
errorDisplayType?: string | undefined;
|
|
9925
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9665
9926
|
} | undefined;
|
|
9666
9927
|
type: "radioGroup";
|
|
9667
9928
|
} | {
|
|
@@ -9712,6 +9973,7 @@ declare var __VLS_9: {
|
|
|
9712
9973
|
keepSearchValue?: boolean | undefined;
|
|
9713
9974
|
searchWithPinyin?: boolean | undefined;
|
|
9714
9975
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
9976
|
+
inputTooltipsOptions?: {} | undefined;
|
|
9715
9977
|
options: {
|
|
9716
9978
|
readonly [x: string]: unknown;
|
|
9717
9979
|
disabled?: boolean | undefined;
|
|
@@ -9744,6 +10006,7 @@ declare var __VLS_9: {
|
|
|
9744
10006
|
maxlength?: number | undefined;
|
|
9745
10007
|
rules?: unknown[] | undefined;
|
|
9746
10008
|
errorDisplayType?: string | undefined;
|
|
10009
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9747
10010
|
} | undefined;
|
|
9748
10011
|
type: "select";
|
|
9749
10012
|
} | {
|
|
@@ -9773,6 +10036,7 @@ declare var __VLS_9: {
|
|
|
9773
10036
|
maxlength?: number | undefined;
|
|
9774
10037
|
rules?: unknown[] | undefined;
|
|
9775
10038
|
errorDisplayType?: string | undefined;
|
|
10039
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9776
10040
|
} | undefined;
|
|
9777
10041
|
props?: {
|
|
9778
10042
|
readonly [x: string]: unknown;
|
|
@@ -9819,6 +10083,7 @@ declare var __VLS_9: {
|
|
|
9819
10083
|
maxlength?: number | undefined;
|
|
9820
10084
|
rules?: unknown[] | undefined;
|
|
9821
10085
|
errorDisplayType?: string | undefined;
|
|
10086
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9822
10087
|
} | undefined;
|
|
9823
10088
|
props?: {
|
|
9824
10089
|
readonly [x: string]: unknown;
|
|
@@ -9847,6 +10112,7 @@ declare var __VLS_9: {
|
|
|
9847
10112
|
withValidate?: boolean | undefined;
|
|
9848
10113
|
overMaxLengthLimit?: boolean | undefined;
|
|
9849
10114
|
showOverflowTooltips?: boolean | undefined;
|
|
10115
|
+
tooltipsOptions?: {} | undefined;
|
|
9850
10116
|
autosize?: boolean | {
|
|
9851
10117
|
minRows?: number | undefined;
|
|
9852
10118
|
maxRows?: number | undefined;
|
|
@@ -9881,6 +10147,7 @@ declare var __VLS_9: {
|
|
|
9881
10147
|
maxlength?: number | undefined;
|
|
9882
10148
|
rules?: unknown[] | undefined;
|
|
9883
10149
|
errorDisplayType?: string | undefined;
|
|
10150
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
9884
10151
|
} | undefined;
|
|
9885
10152
|
props?: {
|
|
9886
10153
|
readonly [x: string]: unknown;
|
|
@@ -9909,6 +10176,7 @@ declare var __VLS_9: {
|
|
|
9909
10176
|
withValidate?: boolean | undefined;
|
|
9910
10177
|
overMaxLengthLimit?: boolean | undefined;
|
|
9911
10178
|
showOverflowTooltips?: boolean | undefined;
|
|
10179
|
+
tooltipsOptions?: {} | undefined;
|
|
9912
10180
|
autosize?: boolean | {
|
|
9913
10181
|
minRows?: number | undefined;
|
|
9914
10182
|
maxRows?: number | undefined;
|
|
@@ -9966,6 +10234,7 @@ declare var __VLS_9: {
|
|
|
9966
10234
|
rows?: number | undefined;
|
|
9967
10235
|
}[];
|
|
9968
10236
|
shortcut?: {
|
|
10237
|
+
alias?: string | undefined;
|
|
9969
10238
|
components?: ({
|
|
9970
10239
|
props: {
|
|
9971
10240
|
readonly [x: string]: unknown;
|
|
@@ -10012,6 +10281,7 @@ declare var __VLS_9: {
|
|
|
10012
10281
|
maxlength?: number | undefined;
|
|
10013
10282
|
rules?: unknown[] | undefined;
|
|
10014
10283
|
errorDisplayType?: string | undefined;
|
|
10284
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10015
10285
|
} | undefined;
|
|
10016
10286
|
type: "checkboxGroup";
|
|
10017
10287
|
} | {
|
|
@@ -10041,6 +10311,7 @@ declare var __VLS_9: {
|
|
|
10041
10311
|
maxlength?: number | undefined;
|
|
10042
10312
|
rules?: unknown[] | undefined;
|
|
10043
10313
|
errorDisplayType?: string | undefined;
|
|
10314
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10044
10315
|
} | undefined;
|
|
10045
10316
|
props?: {
|
|
10046
10317
|
readonly [x: string]: unknown;
|
|
@@ -10069,6 +10340,7 @@ declare var __VLS_9: {
|
|
|
10069
10340
|
withValidate?: boolean | undefined;
|
|
10070
10341
|
overMaxLengthLimit?: boolean | undefined;
|
|
10071
10342
|
showOverflowTooltips?: boolean | undefined;
|
|
10343
|
+
tooltipsOptions?: {} | undefined;
|
|
10072
10344
|
autosize?: boolean | {
|
|
10073
10345
|
minRows?: number | undefined;
|
|
10074
10346
|
maxRows?: number | undefined;
|
|
@@ -10103,6 +10375,7 @@ declare var __VLS_9: {
|
|
|
10103
10375
|
maxlength?: number | undefined;
|
|
10104
10376
|
rules?: unknown[] | undefined;
|
|
10105
10377
|
errorDisplayType?: string | undefined;
|
|
10378
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10106
10379
|
} | undefined;
|
|
10107
10380
|
props?: {
|
|
10108
10381
|
readonly [x: string]: unknown;
|
|
@@ -10131,6 +10404,7 @@ declare var __VLS_9: {
|
|
|
10131
10404
|
withValidate?: boolean | undefined;
|
|
10132
10405
|
overMaxLengthLimit?: boolean | undefined;
|
|
10133
10406
|
showOverflowTooltips?: boolean | undefined;
|
|
10407
|
+
tooltipsOptions?: {} | undefined;
|
|
10134
10408
|
autosize?: boolean | {
|
|
10135
10409
|
minRows?: number | undefined;
|
|
10136
10410
|
maxRows?: number | undefined;
|
|
@@ -10181,6 +10455,7 @@ declare var __VLS_9: {
|
|
|
10181
10455
|
maxlength?: number | undefined;
|
|
10182
10456
|
rules?: unknown[] | undefined;
|
|
10183
10457
|
errorDisplayType?: string | undefined;
|
|
10458
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10184
10459
|
} | undefined;
|
|
10185
10460
|
type: "radioGroup";
|
|
10186
10461
|
} | {
|
|
@@ -10231,6 +10506,7 @@ declare var __VLS_9: {
|
|
|
10231
10506
|
keepSearchValue?: boolean | undefined;
|
|
10232
10507
|
searchWithPinyin?: boolean | undefined;
|
|
10233
10508
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
10509
|
+
inputTooltipsOptions?: {} | undefined;
|
|
10234
10510
|
options: {
|
|
10235
10511
|
readonly [x: string]: unknown;
|
|
10236
10512
|
disabled?: boolean | undefined;
|
|
@@ -10263,6 +10539,7 @@ declare var __VLS_9: {
|
|
|
10263
10539
|
maxlength?: number | undefined;
|
|
10264
10540
|
rules?: unknown[] | undefined;
|
|
10265
10541
|
errorDisplayType?: string | undefined;
|
|
10542
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10266
10543
|
} | undefined;
|
|
10267
10544
|
type: "select";
|
|
10268
10545
|
} | {
|
|
@@ -10292,6 +10569,7 @@ declare var __VLS_9: {
|
|
|
10292
10569
|
maxlength?: number | undefined;
|
|
10293
10570
|
rules?: unknown[] | undefined;
|
|
10294
10571
|
errorDisplayType?: string | undefined;
|
|
10572
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10295
10573
|
} | undefined;
|
|
10296
10574
|
props?: {
|
|
10297
10575
|
readonly [x: string]: unknown;
|
|
@@ -10338,6 +10616,7 @@ declare var __VLS_9: {
|
|
|
10338
10616
|
maxlength?: number | undefined;
|
|
10339
10617
|
rules?: unknown[] | undefined;
|
|
10340
10618
|
errorDisplayType?: string | undefined;
|
|
10619
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10341
10620
|
} | undefined;
|
|
10342
10621
|
props?: {
|
|
10343
10622
|
readonly [x: string]: unknown;
|
|
@@ -10366,6 +10645,7 @@ declare var __VLS_9: {
|
|
|
10366
10645
|
withValidate?: boolean | undefined;
|
|
10367
10646
|
overMaxLengthLimit?: boolean | undefined;
|
|
10368
10647
|
showOverflowTooltips?: boolean | undefined;
|
|
10648
|
+
tooltipsOptions?: {} | undefined;
|
|
10369
10649
|
autosize?: boolean | {
|
|
10370
10650
|
minRows?: number | undefined;
|
|
10371
10651
|
maxRows?: number | undefined;
|
|
@@ -10400,6 +10680,7 @@ declare var __VLS_9: {
|
|
|
10400
10680
|
maxlength?: number | undefined;
|
|
10401
10681
|
rules?: unknown[] | undefined;
|
|
10402
10682
|
errorDisplayType?: string | undefined;
|
|
10683
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10403
10684
|
} | undefined;
|
|
10404
10685
|
props?: {
|
|
10405
10686
|
readonly [x: string]: unknown;
|
|
@@ -10428,6 +10709,7 @@ declare var __VLS_9: {
|
|
|
10428
10709
|
withValidate?: boolean | undefined;
|
|
10429
10710
|
overMaxLengthLimit?: boolean | undefined;
|
|
10430
10711
|
showOverflowTooltips?: boolean | undefined;
|
|
10712
|
+
tooltipsOptions?: {} | undefined;
|
|
10431
10713
|
autosize?: boolean | {
|
|
10432
10714
|
minRows?: number | undefined;
|
|
10433
10715
|
maxRows?: number | undefined;
|
|
@@ -10485,6 +10767,7 @@ declare var __VLS_9: {
|
|
|
10485
10767
|
rows?: number | undefined;
|
|
10486
10768
|
}[];
|
|
10487
10769
|
shortcut?: {
|
|
10770
|
+
alias?: string | undefined;
|
|
10488
10771
|
components?: ({
|
|
10489
10772
|
props: {
|
|
10490
10773
|
readonly [x: string]: unknown;
|
|
@@ -10531,6 +10814,7 @@ declare var __VLS_9: {
|
|
|
10531
10814
|
maxlength?: number | undefined;
|
|
10532
10815
|
rules?: unknown[] | undefined;
|
|
10533
10816
|
errorDisplayType?: string | undefined;
|
|
10817
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10534
10818
|
} | undefined;
|
|
10535
10819
|
type: "checkboxGroup";
|
|
10536
10820
|
} | {
|
|
@@ -10560,6 +10844,7 @@ declare var __VLS_9: {
|
|
|
10560
10844
|
maxlength?: number | undefined;
|
|
10561
10845
|
rules?: unknown[] | undefined;
|
|
10562
10846
|
errorDisplayType?: string | undefined;
|
|
10847
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10563
10848
|
} | undefined;
|
|
10564
10849
|
props?: {
|
|
10565
10850
|
readonly [x: string]: unknown;
|
|
@@ -10588,6 +10873,7 @@ declare var __VLS_9: {
|
|
|
10588
10873
|
withValidate?: boolean | undefined;
|
|
10589
10874
|
overMaxLengthLimit?: boolean | undefined;
|
|
10590
10875
|
showOverflowTooltips?: boolean | undefined;
|
|
10876
|
+
tooltipsOptions?: {} | undefined;
|
|
10591
10877
|
autosize?: boolean | {
|
|
10592
10878
|
minRows?: number | undefined;
|
|
10593
10879
|
maxRows?: number | undefined;
|
|
@@ -10622,6 +10908,7 @@ declare var __VLS_9: {
|
|
|
10622
10908
|
maxlength?: number | undefined;
|
|
10623
10909
|
rules?: unknown[] | undefined;
|
|
10624
10910
|
errorDisplayType?: string | undefined;
|
|
10911
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10625
10912
|
} | undefined;
|
|
10626
10913
|
props?: {
|
|
10627
10914
|
readonly [x: string]: unknown;
|
|
@@ -10650,6 +10937,7 @@ declare var __VLS_9: {
|
|
|
10650
10937
|
withValidate?: boolean | undefined;
|
|
10651
10938
|
overMaxLengthLimit?: boolean | undefined;
|
|
10652
10939
|
showOverflowTooltips?: boolean | undefined;
|
|
10940
|
+
tooltipsOptions?: {} | undefined;
|
|
10653
10941
|
autosize?: boolean | {
|
|
10654
10942
|
minRows?: number | undefined;
|
|
10655
10943
|
maxRows?: number | undefined;
|
|
@@ -10700,6 +10988,7 @@ declare var __VLS_9: {
|
|
|
10700
10988
|
maxlength?: number | undefined;
|
|
10701
10989
|
rules?: unknown[] | undefined;
|
|
10702
10990
|
errorDisplayType?: string | undefined;
|
|
10991
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10703
10992
|
} | undefined;
|
|
10704
10993
|
type: "radioGroup";
|
|
10705
10994
|
} | {
|
|
@@ -10750,6 +11039,7 @@ declare var __VLS_9: {
|
|
|
10750
11039
|
keepSearchValue?: boolean | undefined;
|
|
10751
11040
|
searchWithPinyin?: boolean | undefined;
|
|
10752
11041
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
11042
|
+
inputTooltipsOptions?: {} | undefined;
|
|
10753
11043
|
options: {
|
|
10754
11044
|
readonly [x: string]: unknown;
|
|
10755
11045
|
disabled?: boolean | undefined;
|
|
@@ -10782,6 +11072,7 @@ declare var __VLS_9: {
|
|
|
10782
11072
|
maxlength?: number | undefined;
|
|
10783
11073
|
rules?: unknown[] | undefined;
|
|
10784
11074
|
errorDisplayType?: string | undefined;
|
|
11075
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10785
11076
|
} | undefined;
|
|
10786
11077
|
type: "select";
|
|
10787
11078
|
} | {
|
|
@@ -10811,6 +11102,7 @@ declare var __VLS_9: {
|
|
|
10811
11102
|
maxlength?: number | undefined;
|
|
10812
11103
|
rules?: unknown[] | undefined;
|
|
10813
11104
|
errorDisplayType?: string | undefined;
|
|
11105
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10814
11106
|
} | undefined;
|
|
10815
11107
|
props?: {
|
|
10816
11108
|
readonly [x: string]: unknown;
|
|
@@ -10857,6 +11149,7 @@ declare var __VLS_9: {
|
|
|
10857
11149
|
maxlength?: number | undefined;
|
|
10858
11150
|
rules?: unknown[] | undefined;
|
|
10859
11151
|
errorDisplayType?: string | undefined;
|
|
11152
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10860
11153
|
} | undefined;
|
|
10861
11154
|
props?: {
|
|
10862
11155
|
readonly [x: string]: unknown;
|
|
@@ -10885,6 +11178,7 @@ declare var __VLS_9: {
|
|
|
10885
11178
|
withValidate?: boolean | undefined;
|
|
10886
11179
|
overMaxLengthLimit?: boolean | undefined;
|
|
10887
11180
|
showOverflowTooltips?: boolean | undefined;
|
|
11181
|
+
tooltipsOptions?: {} | undefined;
|
|
10888
11182
|
autosize?: boolean | {
|
|
10889
11183
|
minRows?: number | undefined;
|
|
10890
11184
|
maxRows?: number | undefined;
|
|
@@ -10919,6 +11213,7 @@ declare var __VLS_9: {
|
|
|
10919
11213
|
maxlength?: number | undefined;
|
|
10920
11214
|
rules?: unknown[] | undefined;
|
|
10921
11215
|
errorDisplayType?: string | undefined;
|
|
11216
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
10922
11217
|
} | undefined;
|
|
10923
11218
|
props?: {
|
|
10924
11219
|
readonly [x: string]: unknown;
|
|
@@ -10947,6 +11242,7 @@ declare var __VLS_9: {
|
|
|
10947
11242
|
withValidate?: boolean | undefined;
|
|
10948
11243
|
overMaxLengthLimit?: boolean | undefined;
|
|
10949
11244
|
showOverflowTooltips?: boolean | undefined;
|
|
11245
|
+
tooltipsOptions?: {} | undefined;
|
|
10950
11246
|
autosize?: boolean | {
|
|
10951
11247
|
minRows?: number | undefined;
|
|
10952
11248
|
maxRows?: number | undefined;
|
|
@@ -11007,6 +11303,7 @@ declare var __VLS_9: {
|
|
|
11007
11303
|
rows?: number | undefined;
|
|
11008
11304
|
}[];
|
|
11009
11305
|
shortcut?: {
|
|
11306
|
+
alias?: string | undefined;
|
|
11010
11307
|
components?: ({
|
|
11011
11308
|
props: {
|
|
11012
11309
|
readonly [x: string]: unknown;
|
|
@@ -11053,6 +11350,7 @@ declare var __VLS_9: {
|
|
|
11053
11350
|
maxlength?: number | undefined;
|
|
11054
11351
|
rules?: unknown[] | undefined;
|
|
11055
11352
|
errorDisplayType?: string | undefined;
|
|
11353
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11056
11354
|
} | undefined;
|
|
11057
11355
|
type: "checkboxGroup";
|
|
11058
11356
|
} | {
|
|
@@ -11082,6 +11380,7 @@ declare var __VLS_9: {
|
|
|
11082
11380
|
maxlength?: number | undefined;
|
|
11083
11381
|
rules?: unknown[] | undefined;
|
|
11084
11382
|
errorDisplayType?: string | undefined;
|
|
11383
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11085
11384
|
} | undefined;
|
|
11086
11385
|
props?: {
|
|
11087
11386
|
readonly [x: string]: unknown;
|
|
@@ -11110,6 +11409,7 @@ declare var __VLS_9: {
|
|
|
11110
11409
|
withValidate?: boolean | undefined;
|
|
11111
11410
|
overMaxLengthLimit?: boolean | undefined;
|
|
11112
11411
|
showOverflowTooltips?: boolean | undefined;
|
|
11412
|
+
tooltipsOptions?: {} | undefined;
|
|
11113
11413
|
autosize?: boolean | {
|
|
11114
11414
|
minRows?: number | undefined;
|
|
11115
11415
|
maxRows?: number | undefined;
|
|
@@ -11144,6 +11444,7 @@ declare var __VLS_9: {
|
|
|
11144
11444
|
maxlength?: number | undefined;
|
|
11145
11445
|
rules?: unknown[] | undefined;
|
|
11146
11446
|
errorDisplayType?: string | undefined;
|
|
11447
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11147
11448
|
} | undefined;
|
|
11148
11449
|
props?: {
|
|
11149
11450
|
readonly [x: string]: unknown;
|
|
@@ -11172,6 +11473,7 @@ declare var __VLS_9: {
|
|
|
11172
11473
|
withValidate?: boolean | undefined;
|
|
11173
11474
|
overMaxLengthLimit?: boolean | undefined;
|
|
11174
11475
|
showOverflowTooltips?: boolean | undefined;
|
|
11476
|
+
tooltipsOptions?: {} | undefined;
|
|
11175
11477
|
autosize?: boolean | {
|
|
11176
11478
|
minRows?: number | undefined;
|
|
11177
11479
|
maxRows?: number | undefined;
|
|
@@ -11222,6 +11524,7 @@ declare var __VLS_9: {
|
|
|
11222
11524
|
maxlength?: number | undefined;
|
|
11223
11525
|
rules?: unknown[] | undefined;
|
|
11224
11526
|
errorDisplayType?: string | undefined;
|
|
11527
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11225
11528
|
} | undefined;
|
|
11226
11529
|
type: "radioGroup";
|
|
11227
11530
|
} | {
|
|
@@ -11272,6 +11575,7 @@ declare var __VLS_9: {
|
|
|
11272
11575
|
keepSearchValue?: boolean | undefined;
|
|
11273
11576
|
searchWithPinyin?: boolean | undefined;
|
|
11274
11577
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
11578
|
+
inputTooltipsOptions?: {} | undefined;
|
|
11275
11579
|
options: {
|
|
11276
11580
|
readonly [x: string]: unknown;
|
|
11277
11581
|
disabled?: boolean | undefined;
|
|
@@ -11304,6 +11608,7 @@ declare var __VLS_9: {
|
|
|
11304
11608
|
maxlength?: number | undefined;
|
|
11305
11609
|
rules?: unknown[] | undefined;
|
|
11306
11610
|
errorDisplayType?: string | undefined;
|
|
11611
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11307
11612
|
} | undefined;
|
|
11308
11613
|
type: "select";
|
|
11309
11614
|
} | {
|
|
@@ -11333,6 +11638,7 @@ declare var __VLS_9: {
|
|
|
11333
11638
|
maxlength?: number | undefined;
|
|
11334
11639
|
rules?: unknown[] | undefined;
|
|
11335
11640
|
errorDisplayType?: string | undefined;
|
|
11641
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11336
11642
|
} | undefined;
|
|
11337
11643
|
props?: {
|
|
11338
11644
|
readonly [x: string]: unknown;
|
|
@@ -11379,6 +11685,7 @@ declare var __VLS_9: {
|
|
|
11379
11685
|
maxlength?: number | undefined;
|
|
11380
11686
|
rules?: unknown[] | undefined;
|
|
11381
11687
|
errorDisplayType?: string | undefined;
|
|
11688
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11382
11689
|
} | undefined;
|
|
11383
11690
|
props?: {
|
|
11384
11691
|
readonly [x: string]: unknown;
|
|
@@ -11407,6 +11714,7 @@ declare var __VLS_9: {
|
|
|
11407
11714
|
withValidate?: boolean | undefined;
|
|
11408
11715
|
overMaxLengthLimit?: boolean | undefined;
|
|
11409
11716
|
showOverflowTooltips?: boolean | undefined;
|
|
11717
|
+
tooltipsOptions?: {} | undefined;
|
|
11410
11718
|
autosize?: boolean | {
|
|
11411
11719
|
minRows?: number | undefined;
|
|
11412
11720
|
maxRows?: number | undefined;
|
|
@@ -11441,6 +11749,7 @@ declare var __VLS_9: {
|
|
|
11441
11749
|
maxlength?: number | undefined;
|
|
11442
11750
|
rules?: unknown[] | undefined;
|
|
11443
11751
|
errorDisplayType?: string | undefined;
|
|
11752
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11444
11753
|
} | undefined;
|
|
11445
11754
|
props?: {
|
|
11446
11755
|
readonly [x: string]: unknown;
|
|
@@ -11469,6 +11778,7 @@ declare var __VLS_9: {
|
|
|
11469
11778
|
withValidate?: boolean | undefined;
|
|
11470
11779
|
overMaxLengthLimit?: boolean | undefined;
|
|
11471
11780
|
showOverflowTooltips?: boolean | undefined;
|
|
11781
|
+
tooltipsOptions?: {} | undefined;
|
|
11472
11782
|
autosize?: boolean | {
|
|
11473
11783
|
minRows?: number | undefined;
|
|
11474
11784
|
maxRows?: number | undefined;
|
|
@@ -11536,6 +11846,7 @@ declare var __VLS_9: {
|
|
|
11536
11846
|
rows?: number | undefined;
|
|
11537
11847
|
}[];
|
|
11538
11848
|
shortcut?: {
|
|
11849
|
+
alias?: string | undefined;
|
|
11539
11850
|
components?: ({
|
|
11540
11851
|
props: {
|
|
11541
11852
|
readonly [x: string]: unknown;
|
|
@@ -11582,6 +11893,7 @@ declare var __VLS_9: {
|
|
|
11582
11893
|
maxlength?: number | undefined;
|
|
11583
11894
|
rules?: unknown[] | undefined;
|
|
11584
11895
|
errorDisplayType?: string | undefined;
|
|
11896
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11585
11897
|
} | undefined;
|
|
11586
11898
|
type: "checkboxGroup";
|
|
11587
11899
|
} | {
|
|
@@ -11611,6 +11923,7 @@ declare var __VLS_9: {
|
|
|
11611
11923
|
maxlength?: number | undefined;
|
|
11612
11924
|
rules?: unknown[] | undefined;
|
|
11613
11925
|
errorDisplayType?: string | undefined;
|
|
11926
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11614
11927
|
} | undefined;
|
|
11615
11928
|
props?: {
|
|
11616
11929
|
readonly [x: string]: unknown;
|
|
@@ -11639,6 +11952,7 @@ declare var __VLS_9: {
|
|
|
11639
11952
|
withValidate?: boolean | undefined;
|
|
11640
11953
|
overMaxLengthLimit?: boolean | undefined;
|
|
11641
11954
|
showOverflowTooltips?: boolean | undefined;
|
|
11955
|
+
tooltipsOptions?: {} | undefined;
|
|
11642
11956
|
autosize?: boolean | {
|
|
11643
11957
|
minRows?: number | undefined;
|
|
11644
11958
|
maxRows?: number | undefined;
|
|
@@ -11673,6 +11987,7 @@ declare var __VLS_9: {
|
|
|
11673
11987
|
maxlength?: number | undefined;
|
|
11674
11988
|
rules?: unknown[] | undefined;
|
|
11675
11989
|
errorDisplayType?: string | undefined;
|
|
11990
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11676
11991
|
} | undefined;
|
|
11677
11992
|
props?: {
|
|
11678
11993
|
readonly [x: string]: unknown;
|
|
@@ -11701,6 +12016,7 @@ declare var __VLS_9: {
|
|
|
11701
12016
|
withValidate?: boolean | undefined;
|
|
11702
12017
|
overMaxLengthLimit?: boolean | undefined;
|
|
11703
12018
|
showOverflowTooltips?: boolean | undefined;
|
|
12019
|
+
tooltipsOptions?: {} | undefined;
|
|
11704
12020
|
autosize?: boolean | {
|
|
11705
12021
|
minRows?: number | undefined;
|
|
11706
12022
|
maxRows?: number | undefined;
|
|
@@ -11751,6 +12067,7 @@ declare var __VLS_9: {
|
|
|
11751
12067
|
maxlength?: number | undefined;
|
|
11752
12068
|
rules?: unknown[] | undefined;
|
|
11753
12069
|
errorDisplayType?: string | undefined;
|
|
12070
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11754
12071
|
} | undefined;
|
|
11755
12072
|
type: "radioGroup";
|
|
11756
12073
|
} | {
|
|
@@ -11801,6 +12118,7 @@ declare var __VLS_9: {
|
|
|
11801
12118
|
keepSearchValue?: boolean | undefined;
|
|
11802
12119
|
searchWithPinyin?: boolean | undefined;
|
|
11803
12120
|
disableScrollToSelectedOption?: boolean | undefined;
|
|
12121
|
+
inputTooltipsOptions?: {} | undefined;
|
|
11804
12122
|
options: {
|
|
11805
12123
|
readonly [x: string]: unknown;
|
|
11806
12124
|
disabled?: boolean | undefined;
|
|
@@ -11833,6 +12151,7 @@ declare var __VLS_9: {
|
|
|
11833
12151
|
maxlength?: number | undefined;
|
|
11834
12152
|
rules?: unknown[] | undefined;
|
|
11835
12153
|
errorDisplayType?: string | undefined;
|
|
12154
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11836
12155
|
} | undefined;
|
|
11837
12156
|
type: "select";
|
|
11838
12157
|
} | {
|
|
@@ -11862,6 +12181,7 @@ declare var __VLS_9: {
|
|
|
11862
12181
|
maxlength?: number | undefined;
|
|
11863
12182
|
rules?: unknown[] | undefined;
|
|
11864
12183
|
errorDisplayType?: string | undefined;
|
|
12184
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11865
12185
|
} | undefined;
|
|
11866
12186
|
props?: {
|
|
11867
12187
|
readonly [x: string]: unknown;
|
|
@@ -11908,6 +12228,7 @@ declare var __VLS_9: {
|
|
|
11908
12228
|
maxlength?: number | undefined;
|
|
11909
12229
|
rules?: unknown[] | undefined;
|
|
11910
12230
|
errorDisplayType?: string | undefined;
|
|
12231
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11911
12232
|
} | undefined;
|
|
11912
12233
|
props?: {
|
|
11913
12234
|
readonly [x: string]: unknown;
|
|
@@ -11936,6 +12257,7 @@ declare var __VLS_9: {
|
|
|
11936
12257
|
withValidate?: boolean | undefined;
|
|
11937
12258
|
overMaxLengthLimit?: boolean | undefined;
|
|
11938
12259
|
showOverflowTooltips?: boolean | undefined;
|
|
12260
|
+
tooltipsOptions?: {} | undefined;
|
|
11939
12261
|
autosize?: boolean | {
|
|
11940
12262
|
minRows?: number | undefined;
|
|
11941
12263
|
maxRows?: number | undefined;
|
|
@@ -11970,6 +12292,7 @@ declare var __VLS_9: {
|
|
|
11970
12292
|
maxlength?: number | undefined;
|
|
11971
12293
|
rules?: unknown[] | undefined;
|
|
11972
12294
|
errorDisplayType?: string | undefined;
|
|
12295
|
+
errorTipAppendToParent?: boolean | undefined;
|
|
11973
12296
|
} | undefined;
|
|
11974
12297
|
props?: {
|
|
11975
12298
|
readonly [x: string]: unknown;
|
|
@@ -11998,6 +12321,7 @@ declare var __VLS_9: {
|
|
|
11998
12321
|
withValidate?: boolean | undefined;
|
|
11999
12322
|
overMaxLengthLimit?: boolean | undefined;
|
|
12000
12323
|
showOverflowTooltips?: boolean | undefined;
|
|
12324
|
+
tooltipsOptions?: {} | undefined;
|
|
12001
12325
|
autosize?: boolean | {
|
|
12002
12326
|
minRows?: number | undefined;
|
|
12003
12327
|
maxRows?: number | undefined;
|