@blueking/chat-x 0.0.1-beta.8 → 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.
Files changed (25) hide show
  1. package/dist/ag-ui/types/constants.d.ts +3 -1
  2. package/dist/ag-ui/types/messages.d.ts +2 -0
  3. package/dist/components/ai-buttons/file-upload-btn/file-upload-btn.vue.d.ts +1 -0
  4. package/dist/components/ai-buttons/tool-btn/tool-btn.vue.d.ts +3 -0
  5. package/dist/components/ai-loading/ai-loading.vue.d.ts +10 -0
  6. package/dist/components/ai-selection/ai-selection.vue.d.ts +2 -0
  7. package/dist/components/chat-content/reference-content/reference-content.vue.d.ts +1 -0
  8. package/dist/components/chat-input/ai-slash-input/ai-slash-input.vue.d.ts +9 -13
  9. package/dist/components/chat-input/chat-input.vue.d.ts +8 -8
  10. package/dist/components/chat-input/input-attachment/input-attachment.vue.d.ts +1 -0
  11. package/dist/components/chat-message/loading-message/loading-message.vue.d.ts +13 -0
  12. package/dist/components/chat-message/message-container/message-container.vue.d.ts +843 -0
  13. package/dist/components/chat-message/message-render/message-render.vue.d.ts +1 -1
  14. package/dist/components/chat-message/user-message/user-message.vue.d.ts +1 -1
  15. package/dist/components/markdown-token/code-content/code-content.vue.d.ts +1 -0
  16. package/dist/components/message-tools/delete-tool/delete-tool.vue.d.ts +19 -0
  17. package/dist/components/message-tools/message-tools.vue.d.ts +2 -1
  18. package/dist/composables/use-container-scroll.d.ts +4 -0
  19. package/dist/composables/use-observer-visible-list.d.ts +2 -2
  20. package/dist/index.css +1 -1
  21. package/dist/index.js +811 -522
  22. package/dist/index.js.map +1 -1
  23. package/dist/lang/lang.d.ts +6 -1
  24. package/dist/types/shortcut.d.ts +1 -0
  25. package/package.json +11 -6
@@ -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,540 @@ declare var __VLS_9: {
5756
5911
  withValidate?: boolean | undefined;
5757
5912
  overMaxLengthLimit?: boolean | undefined;
5758
5913
  showOverflowTooltips?: boolean | undefined;
5914
+ tooltipsOptions?: {} | undefined;
5915
+ autosize?: boolean | {
5916
+ minRows?: number | undefined;
5917
+ maxRows?: number | undefined;
5918
+ } | undefined;
5919
+ stopPropagation?: boolean | undefined;
5920
+ } | undefined;
5921
+ type: "text";
5922
+ })[] | undefined;
5923
+ description?: string | undefined;
5924
+ formModel?: Record<string, unknown> | undefined;
5925
+ icon?: (((c: typeof import("vue").h) => import("vue").Component | import("vue").VNode) | string | import("vue").VNode) | undefined;
5926
+ id?: string | undefined;
5927
+ key?: string | undefined;
5928
+ name?: string | undefined;
5929
+ } | undefined;
5930
+ } | undefined;
5931
+ } | undefined;
5932
+ } | {
5933
+ content: string;
5934
+ id: number | string;
5935
+ messageId: number | string;
5936
+ name?: string | undefined;
5937
+ role: MessageRole.Loading;
5938
+ status: MessageStatus;
5939
+ property?: {
5940
+ extra?: {
5941
+ cite: string | {
5942
+ data: {
5943
+ key: string;
5944
+ value: string;
5945
+ }[];
5946
+ title: string;
5947
+ type: "structured";
5948
+ };
5949
+ command: string;
5950
+ context: {
5951
+ [x: string]: string | undefined;
5952
+ __key?: string | undefined;
5953
+ __label?: string | undefined;
5954
+ __value?: string | undefined;
5955
+ context_type?: "number" | "text" | "select" | "input" | "textarea" | "radioGroup" | "switcher" | "checkbox" | undefined;
5956
+ default?: string | undefined;
5957
+ fillBack?: boolean | undefined;
5958
+ fillRegx?: RegExp | undefined;
5959
+ key?: string | undefined;
5960
+ max?: 100 | undefined;
5961
+ min?: 1 | undefined;
5962
+ name?: string | undefined;
5963
+ options?: {
5964
+ label: string;
5965
+ value: string;
5966
+ }[] | undefined;
5967
+ placeholder?: string | undefined;
5968
+ required?: boolean | undefined;
5969
+ rows?: number | undefined;
5970
+ }[];
5971
+ shortcut?: {
5972
+ alias?: string | undefined;
5973
+ components?: ({
5974
+ props: {
5975
+ readonly [x: string]: unknown;
5976
+ disabled?: boolean | undefined;
5977
+ modelValue?: unknown[] | undefined;
5978
+ withValidate?: boolean | undefined;
5979
+ options: {
5980
+ readonly [x: string]: unknown;
5981
+ size?: "small" | "default" | "large" | "huge" | undefined;
5982
+ disabled?: boolean | undefined;
5983
+ outline?: boolean | undefined;
5984
+ readonly?: boolean | undefined;
5985
+ trueLabel?: string | number | boolean | undefined;
5986
+ falseLabel?: string | number | boolean | undefined;
5987
+ checked?: boolean | undefined;
5988
+ indeterminate?: boolean | undefined;
5989
+ beforeChange?: ((event: string | number | boolean) => boolean | Promise<boolean>) | undefined;
5990
+ immediateEmitChange?: boolean | undefined;
5991
+ }[];
5992
+ };
5993
+ default?: string | undefined;
5994
+ fillBack?: boolean | undefined;
5995
+ fillRegx?: RegExp | undefined;
5996
+ key: string;
5997
+ max?: 100 | undefined;
5998
+ min?: 1 | undefined;
5999
+ name?: string | undefined;
6000
+ options?: {
6001
+ label: string;
6002
+ value: string;
6003
+ }[] | undefined;
6004
+ placeholder?: string | undefined;
6005
+ required?: boolean | undefined;
6006
+ rows?: number | undefined;
6007
+ formItemProps?: {
6008
+ readonly [x: string]: unknown;
6009
+ required?: boolean | undefined;
6010
+ label?: string | undefined;
6011
+ description?: string | undefined;
6012
+ email?: boolean | undefined;
6013
+ property?: string | undefined;
6014
+ max?: number | undefined;
6015
+ min?: number | undefined;
6016
+ maxlength?: number | undefined;
6017
+ rules?: unknown[] | undefined;
6018
+ errorDisplayType?: string | undefined;
6019
+ errorTipAppendToParent?: boolean | undefined;
6020
+ } | undefined;
6021
+ type: "checkboxGroup";
6022
+ } | {
6023
+ default?: string | undefined;
6024
+ fillBack?: boolean | undefined;
6025
+ fillRegx?: RegExp | undefined;
6026
+ key: string;
6027
+ max?: 100 | undefined;
6028
+ min?: 1 | undefined;
6029
+ name?: string | undefined;
6030
+ options?: {
6031
+ label: string;
6032
+ value: string;
6033
+ }[] | undefined;
6034
+ placeholder?: string | undefined;
6035
+ required?: boolean | undefined;
6036
+ rows?: number | undefined;
6037
+ formItemProps?: {
6038
+ readonly [x: string]: unknown;
6039
+ required?: boolean | undefined;
6040
+ label?: string | undefined;
6041
+ description?: string | undefined;
6042
+ email?: boolean | undefined;
6043
+ property?: string | undefined;
6044
+ max?: number | undefined;
6045
+ min?: number | undefined;
6046
+ maxlength?: number | undefined;
6047
+ rules?: unknown[] | undefined;
6048
+ errorDisplayType?: string | undefined;
6049
+ errorTipAppendToParent?: boolean | undefined;
6050
+ } | undefined;
6051
+ props?: {
6052
+ readonly [x: string]: unknown;
6053
+ type?: string | undefined;
6054
+ prefix?: string | undefined;
6055
+ resize?: boolean | undefined;
6056
+ disabled?: boolean | undefined;
6057
+ placeholder?: string | undefined;
6058
+ step?: number | undefined;
6059
+ max?: number | undefined;
6060
+ min?: number | undefined;
6061
+ maxlength?: number | undefined;
6062
+ behavior?: "normal" | "simplicity" | undefined;
6063
+ clearable?: boolean | undefined;
6064
+ readonly?: boolean | undefined;
6065
+ prefixIcon?: string | undefined;
6066
+ suffixIcon?: string | undefined;
6067
+ suffix?: string | undefined;
6068
+ maxcharacter?: number | undefined;
6069
+ showWordLimit?: boolean | undefined;
6070
+ showControl?: boolean | undefined;
6071
+ showClearOnlyHover?: boolean | undefined;
6072
+ precision?: number | undefined;
6073
+ rows?: number | undefined;
6074
+ selectReadonly?: boolean | undefined;
6075
+ withValidate?: boolean | undefined;
6076
+ overMaxLengthLimit?: boolean | undefined;
6077
+ showOverflowTooltips?: boolean | undefined;
6078
+ tooltipsOptions?: {} | undefined;
6079
+ autosize?: boolean | {
6080
+ minRows?: number | undefined;
6081
+ maxRows?: number | undefined;
6082
+ } | undefined;
6083
+ stopPropagation?: boolean | undefined;
6084
+ } | undefined;
6085
+ type: "input";
6086
+ } | {
6087
+ default?: string | undefined;
6088
+ fillBack?: boolean | undefined;
6089
+ fillRegx?: RegExp | undefined;
6090
+ key: string;
6091
+ max?: 100 | undefined;
6092
+ min?: 1 | undefined;
6093
+ name?: string | undefined;
6094
+ options?: {
6095
+ label: string;
6096
+ value: string;
6097
+ }[] | undefined;
6098
+ placeholder?: string | undefined;
6099
+ required?: boolean | undefined;
6100
+ rows?: number | undefined;
6101
+ formItemProps?: {
6102
+ readonly [x: string]: unknown;
6103
+ required?: boolean | undefined;
6104
+ label?: string | undefined;
6105
+ description?: string | undefined;
6106
+ email?: boolean | undefined;
6107
+ property?: string | undefined;
6108
+ max?: number | undefined;
6109
+ min?: number | undefined;
6110
+ maxlength?: number | undefined;
6111
+ rules?: unknown[] | undefined;
6112
+ errorDisplayType?: string | undefined;
6113
+ errorTipAppendToParent?: boolean | undefined;
6114
+ } | undefined;
6115
+ props?: {
6116
+ readonly [x: string]: unknown;
6117
+ type?: string | undefined;
6118
+ prefix?: string | undefined;
6119
+ resize?: boolean | undefined;
6120
+ disabled?: boolean | undefined;
6121
+ placeholder?: string | undefined;
6122
+ step?: number | undefined;
6123
+ max?: number | undefined;
6124
+ min?: number | undefined;
6125
+ maxlength?: number | undefined;
6126
+ behavior?: "normal" | "simplicity" | undefined;
6127
+ clearable?: boolean | undefined;
6128
+ readonly?: boolean | undefined;
6129
+ prefixIcon?: string | undefined;
6130
+ suffixIcon?: string | undefined;
6131
+ suffix?: string | undefined;
6132
+ maxcharacter?: number | undefined;
6133
+ showWordLimit?: boolean | undefined;
6134
+ showControl?: boolean | undefined;
6135
+ showClearOnlyHover?: boolean | undefined;
6136
+ precision?: number | undefined;
6137
+ rows?: number | undefined;
6138
+ selectReadonly?: boolean | undefined;
6139
+ withValidate?: boolean | undefined;
6140
+ overMaxLengthLimit?: boolean | undefined;
6141
+ showOverflowTooltips?: boolean | undefined;
6142
+ tooltipsOptions?: {} | undefined;
6143
+ autosize?: boolean | {
6144
+ minRows?: number | undefined;
6145
+ maxRows?: number | undefined;
6146
+ } | undefined;
6147
+ stopPropagation?: boolean | undefined;
6148
+ } | undefined;
6149
+ type: "number";
6150
+ } | {
6151
+ props: {
6152
+ readonly [x: string]: unknown;
6153
+ name?: string | undefined;
6154
+ type?: string | undefined;
6155
+ disabled?: boolean | undefined;
6156
+ withValidate?: boolean | undefined;
6157
+ beforeChange?: ((event: string | number | boolean) => boolean | Promise<boolean>) | undefined;
6158
+ options: {
6159
+ readonly [x: string]: unknown;
6160
+ name?: string | undefined;
6161
+ disabled?: boolean | undefined;
6162
+ modelValue?: string | number | boolean | undefined;
6163
+ checked?: boolean | undefined;
6164
+ beforeChange?: ((event: string | number | boolean) => boolean | Promise<boolean>) | undefined;
6165
+ }[];
6166
+ };
6167
+ default?: string | undefined;
6168
+ fillBack?: boolean | undefined;
6169
+ fillRegx?: RegExp | undefined;
6170
+ key: string;
6171
+ max?: 100 | undefined;
6172
+ min?: 1 | undefined;
6173
+ name?: string | undefined;
6174
+ options?: {
6175
+ label: string;
6176
+ value: string;
6177
+ }[] | undefined;
6178
+ placeholder?: string | undefined;
6179
+ required?: boolean | undefined;
6180
+ rows?: number | undefined;
6181
+ formItemProps?: {
6182
+ readonly [x: string]: unknown;
6183
+ required?: boolean | undefined;
6184
+ label?: string | undefined;
6185
+ description?: string | undefined;
6186
+ email?: boolean | undefined;
6187
+ property?: string | undefined;
6188
+ max?: number | undefined;
6189
+ min?: number | undefined;
6190
+ maxlength?: number | undefined;
6191
+ rules?: unknown[] | undefined;
6192
+ errorDisplayType?: string | undefined;
6193
+ errorTipAppendToParent?: boolean | undefined;
6194
+ } | undefined;
6195
+ type: "radioGroup";
6196
+ } | {
6197
+ props?: {
6198
+ readonly [x: string]: unknown;
6199
+ prefix?: string | undefined;
6200
+ size?: "small" | "default" | "large" | "huge" | undefined;
6201
+ disabled?: boolean | undefined;
6202
+ trigger?: "default" | "manual" | undefined;
6203
+ showOnInit?: boolean | undefined;
6204
+ loading?: boolean | undefined;
6205
+ multiple?: boolean | undefined;
6206
+ placeholder?: string | undefined;
6207
+ list?: any[] | undefined;
6208
+ tagTheme?: "" | "info" | "success" | "danger" | "warning" | undefined;
6209
+ behavior?: "normal" | "simplicity" | undefined;
6210
+ selectedStyle?: "checkbox" | "check" | undefined;
6211
+ scrollHeight?: number | undefined;
6212
+ clearable?: boolean | undefined;
6213
+ withValidate?: boolean | undefined;
6214
+ minHeight?: number | undefined;
6215
+ noDataText?: string | undefined;
6216
+ showSelectedIcon?: boolean | undefined;
6217
+ highlightKeyword?: boolean | undefined;
6218
+ filterable?: boolean | undefined;
6219
+ allowCreate?: boolean | undefined;
6220
+ collapseTags?: boolean | undefined;
6221
+ popoverMinWidth?: number | undefined;
6222
+ remoteMethod?: ((...args: any[]) => any) | undefined;
6223
+ showAll?: boolean | undefined;
6224
+ allOptionText?: string | undefined;
6225
+ showSelectAll?: boolean | undefined;
6226
+ multipleMode?: string | undefined;
6227
+ autoHeight?: boolean | undefined;
6228
+ noMatchText?: string | undefined;
6229
+ loadingText?: string | undefined;
6230
+ searchPlaceholder?: string | undefined;
6231
+ selectAllText?: string | undefined;
6232
+ scrollLoading?: boolean | undefined;
6233
+ customContent?: boolean | undefined;
6234
+ idKey?: string | undefined;
6235
+ displayKey?: string | undefined;
6236
+ inputSearch?: boolean | undefined;
6237
+ enableVirtualRender?: boolean | undefined;
6238
+ allowEmptyValues?: unknown[] | undefined;
6239
+ autoFocus?: boolean | undefined;
6240
+ disableFocusBehavior?: boolean | undefined;
6241
+ keepSearchValue?: boolean | undefined;
6242
+ searchWithPinyin?: boolean | undefined;
6243
+ disableScrollToSelectedOption?: boolean | undefined;
6244
+ inputTooltipsOptions?: {} | undefined;
6245
+ options: {
6246
+ readonly [x: string]: unknown;
6247
+ disabled?: boolean | undefined;
6248
+ order?: number | undefined;
6249
+ }[];
6250
+ } | undefined;
6251
+ default?: string | undefined;
6252
+ fillBack?: boolean | undefined;
6253
+ fillRegx?: RegExp | undefined;
6254
+ key: string;
6255
+ max?: 100 | undefined;
6256
+ min?: 1 | undefined;
6257
+ name?: string | undefined;
6258
+ options?: {
6259
+ label: string;
6260
+ value: string;
6261
+ }[] | undefined;
6262
+ placeholder?: string | undefined;
6263
+ required?: boolean | undefined;
6264
+ rows?: number | undefined;
6265
+ formItemProps?: {
6266
+ readonly [x: string]: unknown;
6267
+ required?: boolean | undefined;
6268
+ label?: string | undefined;
6269
+ description?: string | undefined;
6270
+ email?: boolean | undefined;
6271
+ property?: string | undefined;
6272
+ max?: number | undefined;
6273
+ min?: number | undefined;
6274
+ maxlength?: number | undefined;
6275
+ rules?: unknown[] | undefined;
6276
+ errorDisplayType?: string | undefined;
6277
+ errorTipAppendToParent?: boolean | undefined;
6278
+ } | undefined;
6279
+ type: "select";
6280
+ } | {
6281
+ default?: string | undefined;
6282
+ fillBack?: boolean | undefined;
6283
+ fillRegx?: RegExp | undefined;
6284
+ key: string;
6285
+ max?: 100 | undefined;
6286
+ min?: 1 | undefined;
6287
+ name?: string | undefined;
6288
+ options?: {
6289
+ label: string;
6290
+ value: string;
6291
+ }[] | undefined;
6292
+ placeholder?: string | undefined;
6293
+ required?: boolean | undefined;
6294
+ rows?: number | undefined;
6295
+ formItemProps?: {
6296
+ readonly [x: string]: unknown;
6297
+ required?: boolean | undefined;
6298
+ label?: string | undefined;
6299
+ description?: string | undefined;
6300
+ email?: boolean | undefined;
6301
+ property?: string | undefined;
6302
+ max?: number | undefined;
6303
+ min?: number | undefined;
6304
+ maxlength?: number | undefined;
6305
+ rules?: unknown[] | undefined;
6306
+ errorDisplayType?: string | undefined;
6307
+ errorTipAppendToParent?: boolean | undefined;
6308
+ } | undefined;
6309
+ props?: {
6310
+ readonly [x: string]: unknown;
6311
+ extCls?: string | undefined;
6312
+ disabled?: boolean | undefined;
6313
+ theme?: "success" | "primary" | undefined;
6314
+ value?: string | number | boolean | undefined;
6315
+ modelValue?: string | number | boolean | undefined;
6316
+ withValidate?: boolean | undefined;
6317
+ beforeChange?: ((...args: any[]) => any) | undefined;
6318
+ showText?: boolean | undefined;
6319
+ isOutline?: boolean | undefined;
6320
+ onText?: string | undefined;
6321
+ offText?: string | undefined;
6322
+ isSquare?: boolean | undefined;
6323
+ trueValue?: string | number | boolean | undefined;
6324
+ falseValue?: string | number | boolean | undefined;
6325
+ } | undefined;
6326
+ type: "switcher";
6327
+ } | {
6328
+ default?: string | undefined;
6329
+ fillBack?: boolean | undefined;
6330
+ fillRegx?: RegExp | undefined;
6331
+ key: string;
6332
+ max?: 100 | undefined;
6333
+ min?: 1 | undefined;
6334
+ name?: string | undefined;
6335
+ options?: {
6336
+ label: string;
6337
+ value: string;
6338
+ }[] | undefined;
6339
+ placeholder?: string | undefined;
6340
+ required?: boolean | undefined;
6341
+ rows?: number | undefined;
6342
+ formItemProps?: {
6343
+ readonly [x: string]: unknown;
6344
+ required?: boolean | undefined;
6345
+ label?: string | undefined;
6346
+ description?: string | undefined;
6347
+ email?: boolean | undefined;
6348
+ property?: string | undefined;
6349
+ max?: number | undefined;
6350
+ min?: number | undefined;
6351
+ maxlength?: number | undefined;
6352
+ rules?: unknown[] | undefined;
6353
+ errorDisplayType?: string | undefined;
6354
+ errorTipAppendToParent?: boolean | undefined;
6355
+ } | undefined;
6356
+ props?: {
6357
+ readonly [x: string]: unknown;
6358
+ type?: string | undefined;
6359
+ prefix?: string | undefined;
6360
+ resize?: boolean | undefined;
6361
+ disabled?: boolean | undefined;
6362
+ placeholder?: string | undefined;
6363
+ step?: number | undefined;
6364
+ max?: number | undefined;
6365
+ min?: number | undefined;
6366
+ maxlength?: number | undefined;
6367
+ behavior?: "normal" | "simplicity" | undefined;
6368
+ clearable?: boolean | undefined;
6369
+ readonly?: boolean | undefined;
6370
+ prefixIcon?: string | undefined;
6371
+ suffixIcon?: string | undefined;
6372
+ suffix?: string | undefined;
6373
+ maxcharacter?: number | undefined;
6374
+ showWordLimit?: boolean | undefined;
6375
+ showControl?: boolean | undefined;
6376
+ showClearOnlyHover?: boolean | undefined;
6377
+ precision?: number | undefined;
6378
+ rows?: number | undefined;
6379
+ selectReadonly?: boolean | undefined;
6380
+ withValidate?: boolean | undefined;
6381
+ overMaxLengthLimit?: boolean | undefined;
6382
+ showOverflowTooltips?: boolean | undefined;
6383
+ tooltipsOptions?: {} | undefined;
6384
+ autosize?: boolean | {
6385
+ minRows?: number | undefined;
6386
+ maxRows?: number | undefined;
6387
+ } | undefined;
6388
+ stopPropagation?: boolean | undefined;
6389
+ } | undefined;
6390
+ type: "textarea";
6391
+ } | {
6392
+ default?: string | undefined;
6393
+ fillBack?: boolean | undefined;
6394
+ fillRegx?: RegExp | undefined;
6395
+ key: string;
6396
+ max?: 100 | undefined;
6397
+ min?: 1 | undefined;
6398
+ name?: string | undefined;
6399
+ options?: {
6400
+ label: string;
6401
+ value: string;
6402
+ }[] | undefined;
6403
+ placeholder?: string | undefined;
6404
+ required?: boolean | undefined;
6405
+ rows?: number | undefined;
6406
+ formItemProps?: {
6407
+ readonly [x: string]: unknown;
6408
+ required?: boolean | undefined;
6409
+ label?: string | undefined;
6410
+ description?: string | undefined;
6411
+ email?: boolean | undefined;
6412
+ property?: string | undefined;
6413
+ max?: number | undefined;
6414
+ min?: number | undefined;
6415
+ maxlength?: number | undefined;
6416
+ rules?: unknown[] | undefined;
6417
+ errorDisplayType?: string | undefined;
6418
+ errorTipAppendToParent?: boolean | undefined;
6419
+ } | undefined;
6420
+ props?: {
6421
+ readonly [x: string]: unknown;
6422
+ type?: string | undefined;
6423
+ prefix?: string | undefined;
6424
+ resize?: boolean | undefined;
6425
+ disabled?: boolean | undefined;
6426
+ placeholder?: string | undefined;
6427
+ step?: number | undefined;
6428
+ max?: number | undefined;
6429
+ min?: number | undefined;
6430
+ maxlength?: number | undefined;
6431
+ behavior?: "normal" | "simplicity" | undefined;
6432
+ clearable?: boolean | undefined;
6433
+ readonly?: boolean | undefined;
6434
+ prefixIcon?: string | undefined;
6435
+ suffixIcon?: string | undefined;
6436
+ suffix?: string | undefined;
6437
+ maxcharacter?: number | undefined;
6438
+ showWordLimit?: boolean | undefined;
6439
+ showControl?: boolean | undefined;
6440
+ showClearOnlyHover?: boolean | undefined;
6441
+ precision?: number | undefined;
6442
+ rows?: number | undefined;
6443
+ selectReadonly?: boolean | undefined;
6444
+ withValidate?: boolean | undefined;
6445
+ overMaxLengthLimit?: boolean | undefined;
6446
+ showOverflowTooltips?: boolean | undefined;
6447
+ tooltipsOptions?: {} | undefined;
5759
6448
  autosize?: boolean | {
5760
6449
  minRows?: number | undefined;
5761
6450
  maxRows?: number | undefined;
@@ -5813,6 +6502,7 @@ declare var __VLS_9: {
5813
6502
  rows?: number | undefined;
5814
6503
  }[];
5815
6504
  shortcut?: {
6505
+ alias?: string | undefined;
5816
6506
  components?: ({
5817
6507
  props: {
5818
6508
  readonly [x: string]: unknown;
@@ -5859,6 +6549,7 @@ declare var __VLS_9: {
5859
6549
  maxlength?: number | undefined;
5860
6550
  rules?: unknown[] | undefined;
5861
6551
  errorDisplayType?: string | undefined;
6552
+ errorTipAppendToParent?: boolean | undefined;
5862
6553
  } | undefined;
5863
6554
  type: "checkboxGroup";
5864
6555
  } | {
@@ -5888,6 +6579,7 @@ declare var __VLS_9: {
5888
6579
  maxlength?: number | undefined;
5889
6580
  rules?: unknown[] | undefined;
5890
6581
  errorDisplayType?: string | undefined;
6582
+ errorTipAppendToParent?: boolean | undefined;
5891
6583
  } | undefined;
5892
6584
  props?: {
5893
6585
  readonly [x: string]: unknown;
@@ -5916,6 +6608,7 @@ declare var __VLS_9: {
5916
6608
  withValidate?: boolean | undefined;
5917
6609
  overMaxLengthLimit?: boolean | undefined;
5918
6610
  showOverflowTooltips?: boolean | undefined;
6611
+ tooltipsOptions?: {} | undefined;
5919
6612
  autosize?: boolean | {
5920
6613
  minRows?: number | undefined;
5921
6614
  maxRows?: number | undefined;
@@ -5950,6 +6643,7 @@ declare var __VLS_9: {
5950
6643
  maxlength?: number | undefined;
5951
6644
  rules?: unknown[] | undefined;
5952
6645
  errorDisplayType?: string | undefined;
6646
+ errorTipAppendToParent?: boolean | undefined;
5953
6647
  } | undefined;
5954
6648
  props?: {
5955
6649
  readonly [x: string]: unknown;
@@ -5978,6 +6672,7 @@ declare var __VLS_9: {
5978
6672
  withValidate?: boolean | undefined;
5979
6673
  overMaxLengthLimit?: boolean | undefined;
5980
6674
  showOverflowTooltips?: boolean | undefined;
6675
+ tooltipsOptions?: {} | undefined;
5981
6676
  autosize?: boolean | {
5982
6677
  minRows?: number | undefined;
5983
6678
  maxRows?: number | undefined;
@@ -6028,6 +6723,7 @@ declare var __VLS_9: {
6028
6723
  maxlength?: number | undefined;
6029
6724
  rules?: unknown[] | undefined;
6030
6725
  errorDisplayType?: string | undefined;
6726
+ errorTipAppendToParent?: boolean | undefined;
6031
6727
  } | undefined;
6032
6728
  type: "radioGroup";
6033
6729
  } | {
@@ -6078,6 +6774,7 @@ declare var __VLS_9: {
6078
6774
  keepSearchValue?: boolean | undefined;
6079
6775
  searchWithPinyin?: boolean | undefined;
6080
6776
  disableScrollToSelectedOption?: boolean | undefined;
6777
+ inputTooltipsOptions?: {} | undefined;
6081
6778
  options: {
6082
6779
  readonly [x: string]: unknown;
6083
6780
  disabled?: boolean | undefined;
@@ -6110,6 +6807,7 @@ declare var __VLS_9: {
6110
6807
  maxlength?: number | undefined;
6111
6808
  rules?: unknown[] | undefined;
6112
6809
  errorDisplayType?: string | undefined;
6810
+ errorTipAppendToParent?: boolean | undefined;
6113
6811
  } | undefined;
6114
6812
  type: "select";
6115
6813
  } | {
@@ -6139,6 +6837,7 @@ declare var __VLS_9: {
6139
6837
  maxlength?: number | undefined;
6140
6838
  rules?: unknown[] | undefined;
6141
6839
  errorDisplayType?: string | undefined;
6840
+ errorTipAppendToParent?: boolean | undefined;
6142
6841
  } | undefined;
6143
6842
  props?: {
6144
6843
  readonly [x: string]: unknown;
@@ -6185,6 +6884,7 @@ declare var __VLS_9: {
6185
6884
  maxlength?: number | undefined;
6186
6885
  rules?: unknown[] | undefined;
6187
6886
  errorDisplayType?: string | undefined;
6887
+ errorTipAppendToParent?: boolean | undefined;
6188
6888
  } | undefined;
6189
6889
  props?: {
6190
6890
  readonly [x: string]: unknown;
@@ -6213,6 +6913,7 @@ declare var __VLS_9: {
6213
6913
  withValidate?: boolean | undefined;
6214
6914
  overMaxLengthLimit?: boolean | undefined;
6215
6915
  showOverflowTooltips?: boolean | undefined;
6916
+ tooltipsOptions?: {} | undefined;
6216
6917
  autosize?: boolean | {
6217
6918
  minRows?: number | undefined;
6218
6919
  maxRows?: number | undefined;
@@ -6247,6 +6948,7 @@ declare var __VLS_9: {
6247
6948
  maxlength?: number | undefined;
6248
6949
  rules?: unknown[] | undefined;
6249
6950
  errorDisplayType?: string | undefined;
6951
+ errorTipAppendToParent?: boolean | undefined;
6250
6952
  } | undefined;
6251
6953
  props?: {
6252
6954
  readonly [x: string]: unknown;
@@ -6275,6 +6977,7 @@ declare var __VLS_9: {
6275
6977
  withValidate?: boolean | undefined;
6276
6978
  overMaxLengthLimit?: boolean | undefined;
6277
6979
  showOverflowTooltips?: boolean | undefined;
6980
+ tooltipsOptions?: {} | undefined;
6278
6981
  autosize?: boolean | {
6279
6982
  minRows?: number | undefined;
6280
6983
  maxRows?: number | undefined;
@@ -6332,6 +7035,7 @@ declare var __VLS_9: {
6332
7035
  rows?: number | undefined;
6333
7036
  }[];
6334
7037
  shortcut?: {
7038
+ alias?: string | undefined;
6335
7039
  components?: ({
6336
7040
  props: {
6337
7041
  readonly [x: string]: unknown;
@@ -6378,6 +7082,7 @@ declare var __VLS_9: {
6378
7082
  maxlength?: number | undefined;
6379
7083
  rules?: unknown[] | undefined;
6380
7084
  errorDisplayType?: string | undefined;
7085
+ errorTipAppendToParent?: boolean | undefined;
6381
7086
  } | undefined;
6382
7087
  type: "checkboxGroup";
6383
7088
  } | {
@@ -6407,6 +7112,7 @@ declare var __VLS_9: {
6407
7112
  maxlength?: number | undefined;
6408
7113
  rules?: unknown[] | undefined;
6409
7114
  errorDisplayType?: string | undefined;
7115
+ errorTipAppendToParent?: boolean | undefined;
6410
7116
  } | undefined;
6411
7117
  props?: {
6412
7118
  readonly [x: string]: unknown;
@@ -6435,6 +7141,7 @@ declare var __VLS_9: {
6435
7141
  withValidate?: boolean | undefined;
6436
7142
  overMaxLengthLimit?: boolean | undefined;
6437
7143
  showOverflowTooltips?: boolean | undefined;
7144
+ tooltipsOptions?: {} | undefined;
6438
7145
  autosize?: boolean | {
6439
7146
  minRows?: number | undefined;
6440
7147
  maxRows?: number | undefined;
@@ -6469,6 +7176,7 @@ declare var __VLS_9: {
6469
7176
  maxlength?: number | undefined;
6470
7177
  rules?: unknown[] | undefined;
6471
7178
  errorDisplayType?: string | undefined;
7179
+ errorTipAppendToParent?: boolean | undefined;
6472
7180
  } | undefined;
6473
7181
  props?: {
6474
7182
  readonly [x: string]: unknown;
@@ -6497,6 +7205,7 @@ declare var __VLS_9: {
6497
7205
  withValidate?: boolean | undefined;
6498
7206
  overMaxLengthLimit?: boolean | undefined;
6499
7207
  showOverflowTooltips?: boolean | undefined;
7208
+ tooltipsOptions?: {} | undefined;
6500
7209
  autosize?: boolean | {
6501
7210
  minRows?: number | undefined;
6502
7211
  maxRows?: number | undefined;
@@ -6547,6 +7256,7 @@ declare var __VLS_9: {
6547
7256
  maxlength?: number | undefined;
6548
7257
  rules?: unknown[] | undefined;
6549
7258
  errorDisplayType?: string | undefined;
7259
+ errorTipAppendToParent?: boolean | undefined;
6550
7260
  } | undefined;
6551
7261
  type: "radioGroup";
6552
7262
  } | {
@@ -6597,6 +7307,7 @@ declare var __VLS_9: {
6597
7307
  keepSearchValue?: boolean | undefined;
6598
7308
  searchWithPinyin?: boolean | undefined;
6599
7309
  disableScrollToSelectedOption?: boolean | undefined;
7310
+ inputTooltipsOptions?: {} | undefined;
6600
7311
  options: {
6601
7312
  readonly [x: string]: unknown;
6602
7313
  disabled?: boolean | undefined;
@@ -6629,6 +7340,7 @@ declare var __VLS_9: {
6629
7340
  maxlength?: number | undefined;
6630
7341
  rules?: unknown[] | undefined;
6631
7342
  errorDisplayType?: string | undefined;
7343
+ errorTipAppendToParent?: boolean | undefined;
6632
7344
  } | undefined;
6633
7345
  type: "select";
6634
7346
  } | {
@@ -6658,6 +7370,7 @@ declare var __VLS_9: {
6658
7370
  maxlength?: number | undefined;
6659
7371
  rules?: unknown[] | undefined;
6660
7372
  errorDisplayType?: string | undefined;
7373
+ errorTipAppendToParent?: boolean | undefined;
6661
7374
  } | undefined;
6662
7375
  props?: {
6663
7376
  readonly [x: string]: unknown;
@@ -6704,6 +7417,7 @@ declare var __VLS_9: {
6704
7417
  maxlength?: number | undefined;
6705
7418
  rules?: unknown[] | undefined;
6706
7419
  errorDisplayType?: string | undefined;
7420
+ errorTipAppendToParent?: boolean | undefined;
6707
7421
  } | undefined;
6708
7422
  props?: {
6709
7423
  readonly [x: string]: unknown;
@@ -6732,6 +7446,7 @@ declare var __VLS_9: {
6732
7446
  withValidate?: boolean | undefined;
6733
7447
  overMaxLengthLimit?: boolean | undefined;
6734
7448
  showOverflowTooltips?: boolean | undefined;
7449
+ tooltipsOptions?: {} | undefined;
6735
7450
  autosize?: boolean | {
6736
7451
  minRows?: number | undefined;
6737
7452
  maxRows?: number | undefined;
@@ -6766,6 +7481,7 @@ declare var __VLS_9: {
6766
7481
  maxlength?: number | undefined;
6767
7482
  rules?: unknown[] | undefined;
6768
7483
  errorDisplayType?: string | undefined;
7484
+ errorTipAppendToParent?: boolean | undefined;
6769
7485
  } | undefined;
6770
7486
  props?: {
6771
7487
  readonly [x: string]: unknown;
@@ -6794,6 +7510,7 @@ declare var __VLS_9: {
6794
7510
  withValidate?: boolean | undefined;
6795
7511
  overMaxLengthLimit?: boolean | undefined;
6796
7512
  showOverflowTooltips?: boolean | undefined;
7513
+ tooltipsOptions?: {} | undefined;
6797
7514
  autosize?: boolean | {
6798
7515
  minRows?: number | undefined;
6799
7516
  maxRows?: number | undefined;
@@ -6852,6 +7569,7 @@ declare var __VLS_9: {
6852
7569
  rows?: number | undefined;
6853
7570
  }[];
6854
7571
  shortcut?: {
7572
+ alias?: string | undefined;
6855
7573
  components?: ({
6856
7574
  props: {
6857
7575
  readonly [x: string]: unknown;
@@ -6898,6 +7616,7 @@ declare var __VLS_9: {
6898
7616
  maxlength?: number | undefined;
6899
7617
  rules?: unknown[] | undefined;
6900
7618
  errorDisplayType?: string | undefined;
7619
+ errorTipAppendToParent?: boolean | undefined;
6901
7620
  } | undefined;
6902
7621
  type: "checkboxGroup";
6903
7622
  } | {
@@ -6927,6 +7646,7 @@ declare var __VLS_9: {
6927
7646
  maxlength?: number | undefined;
6928
7647
  rules?: unknown[] | undefined;
6929
7648
  errorDisplayType?: string | undefined;
7649
+ errorTipAppendToParent?: boolean | undefined;
6930
7650
  } | undefined;
6931
7651
  props?: {
6932
7652
  readonly [x: string]: unknown;
@@ -6955,6 +7675,7 @@ declare var __VLS_9: {
6955
7675
  withValidate?: boolean | undefined;
6956
7676
  overMaxLengthLimit?: boolean | undefined;
6957
7677
  showOverflowTooltips?: boolean | undefined;
7678
+ tooltipsOptions?: {} | undefined;
6958
7679
  autosize?: boolean | {
6959
7680
  minRows?: number | undefined;
6960
7681
  maxRows?: number | undefined;
@@ -6989,6 +7710,7 @@ declare var __VLS_9: {
6989
7710
  maxlength?: number | undefined;
6990
7711
  rules?: unknown[] | undefined;
6991
7712
  errorDisplayType?: string | undefined;
7713
+ errorTipAppendToParent?: boolean | undefined;
6992
7714
  } | undefined;
6993
7715
  props?: {
6994
7716
  readonly [x: string]: unknown;
@@ -7017,6 +7739,7 @@ declare var __VLS_9: {
7017
7739
  withValidate?: boolean | undefined;
7018
7740
  overMaxLengthLimit?: boolean | undefined;
7019
7741
  showOverflowTooltips?: boolean | undefined;
7742
+ tooltipsOptions?: {} | undefined;
7020
7743
  autosize?: boolean | {
7021
7744
  minRows?: number | undefined;
7022
7745
  maxRows?: number | undefined;
@@ -7067,6 +7790,7 @@ declare var __VLS_9: {
7067
7790
  maxlength?: number | undefined;
7068
7791
  rules?: unknown[] | undefined;
7069
7792
  errorDisplayType?: string | undefined;
7793
+ errorTipAppendToParent?: boolean | undefined;
7070
7794
  } | undefined;
7071
7795
  type: "radioGroup";
7072
7796
  } | {
@@ -7117,6 +7841,7 @@ declare var __VLS_9: {
7117
7841
  keepSearchValue?: boolean | undefined;
7118
7842
  searchWithPinyin?: boolean | undefined;
7119
7843
  disableScrollToSelectedOption?: boolean | undefined;
7844
+ inputTooltipsOptions?: {} | undefined;
7120
7845
  options: {
7121
7846
  readonly [x: string]: unknown;
7122
7847
  disabled?: boolean | undefined;
@@ -7149,6 +7874,7 @@ declare var __VLS_9: {
7149
7874
  maxlength?: number | undefined;
7150
7875
  rules?: unknown[] | undefined;
7151
7876
  errorDisplayType?: string | undefined;
7877
+ errorTipAppendToParent?: boolean | undefined;
7152
7878
  } | undefined;
7153
7879
  type: "select";
7154
7880
  } | {
@@ -7178,6 +7904,7 @@ declare var __VLS_9: {
7178
7904
  maxlength?: number | undefined;
7179
7905
  rules?: unknown[] | undefined;
7180
7906
  errorDisplayType?: string | undefined;
7907
+ errorTipAppendToParent?: boolean | undefined;
7181
7908
  } | undefined;
7182
7909
  props?: {
7183
7910
  readonly [x: string]: unknown;
@@ -7224,6 +7951,7 @@ declare var __VLS_9: {
7224
7951
  maxlength?: number | undefined;
7225
7952
  rules?: unknown[] | undefined;
7226
7953
  errorDisplayType?: string | undefined;
7954
+ errorTipAppendToParent?: boolean | undefined;
7227
7955
  } | undefined;
7228
7956
  props?: {
7229
7957
  readonly [x: string]: unknown;
@@ -7252,6 +7980,7 @@ declare var __VLS_9: {
7252
7980
  withValidate?: boolean | undefined;
7253
7981
  overMaxLengthLimit?: boolean | undefined;
7254
7982
  showOverflowTooltips?: boolean | undefined;
7983
+ tooltipsOptions?: {} | undefined;
7255
7984
  autosize?: boolean | {
7256
7985
  minRows?: number | undefined;
7257
7986
  maxRows?: number | undefined;
@@ -7286,6 +8015,7 @@ declare var __VLS_9: {
7286
8015
  maxlength?: number | undefined;
7287
8016
  rules?: unknown[] | undefined;
7288
8017
  errorDisplayType?: string | undefined;
8018
+ errorTipAppendToParent?: boolean | undefined;
7289
8019
  } | undefined;
7290
8020
  props?: {
7291
8021
  readonly [x: string]: unknown;
@@ -7314,6 +8044,7 @@ declare var __VLS_9: {
7314
8044
  withValidate?: boolean | undefined;
7315
8045
  overMaxLengthLimit?: boolean | undefined;
7316
8046
  showOverflowTooltips?: boolean | undefined;
8047
+ tooltipsOptions?: {} | undefined;
7317
8048
  autosize?: boolean | {
7318
8049
  minRows?: number | undefined;
7319
8050
  maxRows?: number | undefined;
@@ -7371,6 +8102,7 @@ declare var __VLS_9: {
7371
8102
  rows?: number | undefined;
7372
8103
  }[];
7373
8104
  shortcut?: {
8105
+ alias?: string | undefined;
7374
8106
  components?: ({
7375
8107
  props: {
7376
8108
  readonly [x: string]: unknown;
@@ -7417,6 +8149,7 @@ declare var __VLS_9: {
7417
8149
  maxlength?: number | undefined;
7418
8150
  rules?: unknown[] | undefined;
7419
8151
  errorDisplayType?: string | undefined;
8152
+ errorTipAppendToParent?: boolean | undefined;
7420
8153
  } | undefined;
7421
8154
  type: "checkboxGroup";
7422
8155
  } | {
@@ -7446,6 +8179,7 @@ declare var __VLS_9: {
7446
8179
  maxlength?: number | undefined;
7447
8180
  rules?: unknown[] | undefined;
7448
8181
  errorDisplayType?: string | undefined;
8182
+ errorTipAppendToParent?: boolean | undefined;
7449
8183
  } | undefined;
7450
8184
  props?: {
7451
8185
  readonly [x: string]: unknown;
@@ -7474,6 +8208,7 @@ declare var __VLS_9: {
7474
8208
  withValidate?: boolean | undefined;
7475
8209
  overMaxLengthLimit?: boolean | undefined;
7476
8210
  showOverflowTooltips?: boolean | undefined;
8211
+ tooltipsOptions?: {} | undefined;
7477
8212
  autosize?: boolean | {
7478
8213
  minRows?: number | undefined;
7479
8214
  maxRows?: number | undefined;
@@ -7508,6 +8243,7 @@ declare var __VLS_9: {
7508
8243
  maxlength?: number | undefined;
7509
8244
  rules?: unknown[] | undefined;
7510
8245
  errorDisplayType?: string | undefined;
8246
+ errorTipAppendToParent?: boolean | undefined;
7511
8247
  } | undefined;
7512
8248
  props?: {
7513
8249
  readonly [x: string]: unknown;
@@ -7536,6 +8272,7 @@ declare var __VLS_9: {
7536
8272
  withValidate?: boolean | undefined;
7537
8273
  overMaxLengthLimit?: boolean | undefined;
7538
8274
  showOverflowTooltips?: boolean | undefined;
8275
+ tooltipsOptions?: {} | undefined;
7539
8276
  autosize?: boolean | {
7540
8277
  minRows?: number | undefined;
7541
8278
  maxRows?: number | undefined;
@@ -7586,6 +8323,7 @@ declare var __VLS_9: {
7586
8323
  maxlength?: number | undefined;
7587
8324
  rules?: unknown[] | undefined;
7588
8325
  errorDisplayType?: string | undefined;
8326
+ errorTipAppendToParent?: boolean | undefined;
7589
8327
  } | undefined;
7590
8328
  type: "radioGroup";
7591
8329
  } | {
@@ -7636,6 +8374,7 @@ declare var __VLS_9: {
7636
8374
  keepSearchValue?: boolean | undefined;
7637
8375
  searchWithPinyin?: boolean | undefined;
7638
8376
  disableScrollToSelectedOption?: boolean | undefined;
8377
+ inputTooltipsOptions?: {} | undefined;
7639
8378
  options: {
7640
8379
  readonly [x: string]: unknown;
7641
8380
  disabled?: boolean | undefined;
@@ -7668,6 +8407,7 @@ declare var __VLS_9: {
7668
8407
  maxlength?: number | undefined;
7669
8408
  rules?: unknown[] | undefined;
7670
8409
  errorDisplayType?: string | undefined;
8410
+ errorTipAppendToParent?: boolean | undefined;
7671
8411
  } | undefined;
7672
8412
  type: "select";
7673
8413
  } | {
@@ -7697,6 +8437,7 @@ declare var __VLS_9: {
7697
8437
  maxlength?: number | undefined;
7698
8438
  rules?: unknown[] | undefined;
7699
8439
  errorDisplayType?: string | undefined;
8440
+ errorTipAppendToParent?: boolean | undefined;
7700
8441
  } | undefined;
7701
8442
  props?: {
7702
8443
  readonly [x: string]: unknown;
@@ -7743,6 +8484,7 @@ declare var __VLS_9: {
7743
8484
  maxlength?: number | undefined;
7744
8485
  rules?: unknown[] | undefined;
7745
8486
  errorDisplayType?: string | undefined;
8487
+ errorTipAppendToParent?: boolean | undefined;
7746
8488
  } | undefined;
7747
8489
  props?: {
7748
8490
  readonly [x: string]: unknown;
@@ -7771,6 +8513,7 @@ declare var __VLS_9: {
7771
8513
  withValidate?: boolean | undefined;
7772
8514
  overMaxLengthLimit?: boolean | undefined;
7773
8515
  showOverflowTooltips?: boolean | undefined;
8516
+ tooltipsOptions?: {} | undefined;
7774
8517
  autosize?: boolean | {
7775
8518
  minRows?: number | undefined;
7776
8519
  maxRows?: number | undefined;
@@ -7805,6 +8548,7 @@ declare var __VLS_9: {
7805
8548
  maxlength?: number | undefined;
7806
8549
  rules?: unknown[] | undefined;
7807
8550
  errorDisplayType?: string | undefined;
8551
+ errorTipAppendToParent?: boolean | undefined;
7808
8552
  } | undefined;
7809
8553
  props?: {
7810
8554
  readonly [x: string]: unknown;
@@ -7833,6 +8577,7 @@ declare var __VLS_9: {
7833
8577
  withValidate?: boolean | undefined;
7834
8578
  overMaxLengthLimit?: boolean | undefined;
7835
8579
  showOverflowTooltips?: boolean | undefined;
8580
+ tooltipsOptions?: {} | undefined;
7836
8581
  autosize?: boolean | {
7837
8582
  minRows?: number | undefined;
7838
8583
  maxRows?: number | undefined;
@@ -7890,6 +8635,7 @@ declare var __VLS_9: {
7890
8635
  rows?: number | undefined;
7891
8636
  }[];
7892
8637
  shortcut?: {
8638
+ alias?: string | undefined;
7893
8639
  components?: ({
7894
8640
  props: {
7895
8641
  readonly [x: string]: unknown;
@@ -7936,6 +8682,7 @@ declare var __VLS_9: {
7936
8682
  maxlength?: number | undefined;
7937
8683
  rules?: unknown[] | undefined;
7938
8684
  errorDisplayType?: string | undefined;
8685
+ errorTipAppendToParent?: boolean | undefined;
7939
8686
  } | undefined;
7940
8687
  type: "checkboxGroup";
7941
8688
  } | {
@@ -7965,6 +8712,7 @@ declare var __VLS_9: {
7965
8712
  maxlength?: number | undefined;
7966
8713
  rules?: unknown[] | undefined;
7967
8714
  errorDisplayType?: string | undefined;
8715
+ errorTipAppendToParent?: boolean | undefined;
7968
8716
  } | undefined;
7969
8717
  props?: {
7970
8718
  readonly [x: string]: unknown;
@@ -7993,6 +8741,7 @@ declare var __VLS_9: {
7993
8741
  withValidate?: boolean | undefined;
7994
8742
  overMaxLengthLimit?: boolean | undefined;
7995
8743
  showOverflowTooltips?: boolean | undefined;
8744
+ tooltipsOptions?: {} | undefined;
7996
8745
  autosize?: boolean | {
7997
8746
  minRows?: number | undefined;
7998
8747
  maxRows?: number | undefined;
@@ -8027,6 +8776,7 @@ declare var __VLS_9: {
8027
8776
  maxlength?: number | undefined;
8028
8777
  rules?: unknown[] | undefined;
8029
8778
  errorDisplayType?: string | undefined;
8779
+ errorTipAppendToParent?: boolean | undefined;
8030
8780
  } | undefined;
8031
8781
  props?: {
8032
8782
  readonly [x: string]: unknown;
@@ -8055,6 +8805,7 @@ declare var __VLS_9: {
8055
8805
  withValidate?: boolean | undefined;
8056
8806
  overMaxLengthLimit?: boolean | undefined;
8057
8807
  showOverflowTooltips?: boolean | undefined;
8808
+ tooltipsOptions?: {} | undefined;
8058
8809
  autosize?: boolean | {
8059
8810
  minRows?: number | undefined;
8060
8811
  maxRows?: number | undefined;
@@ -8105,6 +8856,7 @@ declare var __VLS_9: {
8105
8856
  maxlength?: number | undefined;
8106
8857
  rules?: unknown[] | undefined;
8107
8858
  errorDisplayType?: string | undefined;
8859
+ errorTipAppendToParent?: boolean | undefined;
8108
8860
  } | undefined;
8109
8861
  type: "radioGroup";
8110
8862
  } | {
@@ -8155,6 +8907,7 @@ declare var __VLS_9: {
8155
8907
  keepSearchValue?: boolean | undefined;
8156
8908
  searchWithPinyin?: boolean | undefined;
8157
8909
  disableScrollToSelectedOption?: boolean | undefined;
8910
+ inputTooltipsOptions?: {} | undefined;
8158
8911
  options: {
8159
8912
  readonly [x: string]: unknown;
8160
8913
  disabled?: boolean | undefined;
@@ -8187,6 +8940,7 @@ declare var __VLS_9: {
8187
8940
  maxlength?: number | undefined;
8188
8941
  rules?: unknown[] | undefined;
8189
8942
  errorDisplayType?: string | undefined;
8943
+ errorTipAppendToParent?: boolean | undefined;
8190
8944
  } | undefined;
8191
8945
  type: "select";
8192
8946
  } | {
@@ -8216,6 +8970,7 @@ declare var __VLS_9: {
8216
8970
  maxlength?: number | undefined;
8217
8971
  rules?: unknown[] | undefined;
8218
8972
  errorDisplayType?: string | undefined;
8973
+ errorTipAppendToParent?: boolean | undefined;
8219
8974
  } | undefined;
8220
8975
  props?: {
8221
8976
  readonly [x: string]: unknown;
@@ -8262,6 +9017,7 @@ declare var __VLS_9: {
8262
9017
  maxlength?: number | undefined;
8263
9018
  rules?: unknown[] | undefined;
8264
9019
  errorDisplayType?: string | undefined;
9020
+ errorTipAppendToParent?: boolean | undefined;
8265
9021
  } | undefined;
8266
9022
  props?: {
8267
9023
  readonly [x: string]: unknown;
@@ -8290,6 +9046,7 @@ declare var __VLS_9: {
8290
9046
  withValidate?: boolean | undefined;
8291
9047
  overMaxLengthLimit?: boolean | undefined;
8292
9048
  showOverflowTooltips?: boolean | undefined;
9049
+ tooltipsOptions?: {} | undefined;
8293
9050
  autosize?: boolean | {
8294
9051
  minRows?: number | undefined;
8295
9052
  maxRows?: number | undefined;
@@ -8324,6 +9081,7 @@ declare var __VLS_9: {
8324
9081
  maxlength?: number | undefined;
8325
9082
  rules?: unknown[] | undefined;
8326
9083
  errorDisplayType?: string | undefined;
9084
+ errorTipAppendToParent?: boolean | undefined;
8327
9085
  } | undefined;
8328
9086
  props?: {
8329
9087
  readonly [x: string]: unknown;
@@ -8352,6 +9110,7 @@ declare var __VLS_9: {
8352
9110
  withValidate?: boolean | undefined;
8353
9111
  overMaxLengthLimit?: boolean | undefined;
8354
9112
  showOverflowTooltips?: boolean | undefined;
9113
+ tooltipsOptions?: {} | undefined;
8355
9114
  autosize?: boolean | {
8356
9115
  minRows?: number | undefined;
8357
9116
  maxRows?: number | undefined;
@@ -8409,6 +9168,7 @@ declare var __VLS_9: {
8409
9168
  rows?: number | undefined;
8410
9169
  }[];
8411
9170
  shortcut?: {
9171
+ alias?: string | undefined;
8412
9172
  components?: ({
8413
9173
  props: {
8414
9174
  readonly [x: string]: unknown;
@@ -8455,6 +9215,7 @@ declare var __VLS_9: {
8455
9215
  maxlength?: number | undefined;
8456
9216
  rules?: unknown[] | undefined;
8457
9217
  errorDisplayType?: string | undefined;
9218
+ errorTipAppendToParent?: boolean | undefined;
8458
9219
  } | undefined;
8459
9220
  type: "checkboxGroup";
8460
9221
  } | {
@@ -8484,6 +9245,7 @@ declare var __VLS_9: {
8484
9245
  maxlength?: number | undefined;
8485
9246
  rules?: unknown[] | undefined;
8486
9247
  errorDisplayType?: string | undefined;
9248
+ errorTipAppendToParent?: boolean | undefined;
8487
9249
  } | undefined;
8488
9250
  props?: {
8489
9251
  readonly [x: string]: unknown;
@@ -8512,6 +9274,7 @@ declare var __VLS_9: {
8512
9274
  withValidate?: boolean | undefined;
8513
9275
  overMaxLengthLimit?: boolean | undefined;
8514
9276
  showOverflowTooltips?: boolean | undefined;
9277
+ tooltipsOptions?: {} | undefined;
8515
9278
  autosize?: boolean | {
8516
9279
  minRows?: number | undefined;
8517
9280
  maxRows?: number | undefined;
@@ -8546,6 +9309,7 @@ declare var __VLS_9: {
8546
9309
  maxlength?: number | undefined;
8547
9310
  rules?: unknown[] | undefined;
8548
9311
  errorDisplayType?: string | undefined;
9312
+ errorTipAppendToParent?: boolean | undefined;
8549
9313
  } | undefined;
8550
9314
  props?: {
8551
9315
  readonly [x: string]: unknown;
@@ -8574,6 +9338,7 @@ declare var __VLS_9: {
8574
9338
  withValidate?: boolean | undefined;
8575
9339
  overMaxLengthLimit?: boolean | undefined;
8576
9340
  showOverflowTooltips?: boolean | undefined;
9341
+ tooltipsOptions?: {} | undefined;
8577
9342
  autosize?: boolean | {
8578
9343
  minRows?: number | undefined;
8579
9344
  maxRows?: number | undefined;
@@ -8624,6 +9389,7 @@ declare var __VLS_9: {
8624
9389
  maxlength?: number | undefined;
8625
9390
  rules?: unknown[] | undefined;
8626
9391
  errorDisplayType?: string | undefined;
9392
+ errorTipAppendToParent?: boolean | undefined;
8627
9393
  } | undefined;
8628
9394
  type: "radioGroup";
8629
9395
  } | {
@@ -8674,6 +9440,7 @@ declare var __VLS_9: {
8674
9440
  keepSearchValue?: boolean | undefined;
8675
9441
  searchWithPinyin?: boolean | undefined;
8676
9442
  disableScrollToSelectedOption?: boolean | undefined;
9443
+ inputTooltipsOptions?: {} | undefined;
8677
9444
  options: {
8678
9445
  readonly [x: string]: unknown;
8679
9446
  disabled?: boolean | undefined;
@@ -8706,6 +9473,7 @@ declare var __VLS_9: {
8706
9473
  maxlength?: number | undefined;
8707
9474
  rules?: unknown[] | undefined;
8708
9475
  errorDisplayType?: string | undefined;
9476
+ errorTipAppendToParent?: boolean | undefined;
8709
9477
  } | undefined;
8710
9478
  type: "select";
8711
9479
  } | {
@@ -8735,6 +9503,7 @@ declare var __VLS_9: {
8735
9503
  maxlength?: number | undefined;
8736
9504
  rules?: unknown[] | undefined;
8737
9505
  errorDisplayType?: string | undefined;
9506
+ errorTipAppendToParent?: boolean | undefined;
8738
9507
  } | undefined;
8739
9508
  props?: {
8740
9509
  readonly [x: string]: unknown;
@@ -8781,6 +9550,7 @@ declare var __VLS_9: {
8781
9550
  maxlength?: number | undefined;
8782
9551
  rules?: unknown[] | undefined;
8783
9552
  errorDisplayType?: string | undefined;
9553
+ errorTipAppendToParent?: boolean | undefined;
8784
9554
  } | undefined;
8785
9555
  props?: {
8786
9556
  readonly [x: string]: unknown;
@@ -8809,6 +9579,7 @@ declare var __VLS_9: {
8809
9579
  withValidate?: boolean | undefined;
8810
9580
  overMaxLengthLimit?: boolean | undefined;
8811
9581
  showOverflowTooltips?: boolean | undefined;
9582
+ tooltipsOptions?: {} | undefined;
8812
9583
  autosize?: boolean | {
8813
9584
  minRows?: number | undefined;
8814
9585
  maxRows?: number | undefined;
@@ -8843,6 +9614,7 @@ declare var __VLS_9: {
8843
9614
  maxlength?: number | undefined;
8844
9615
  rules?: unknown[] | undefined;
8845
9616
  errorDisplayType?: string | undefined;
9617
+ errorTipAppendToParent?: boolean | undefined;
8846
9618
  } | undefined;
8847
9619
  props?: {
8848
9620
  readonly [x: string]: unknown;
@@ -8871,6 +9643,7 @@ declare var __VLS_9: {
8871
9643
  withValidate?: boolean | undefined;
8872
9644
  overMaxLengthLimit?: boolean | undefined;
8873
9645
  showOverflowTooltips?: boolean | undefined;
9646
+ tooltipsOptions?: {} | undefined;
8874
9647
  autosize?: boolean | {
8875
9648
  minRows?: number | undefined;
8876
9649
  maxRows?: number | undefined;
@@ -8928,6 +9701,7 @@ declare var __VLS_9: {
8928
9701
  rows?: number | undefined;
8929
9702
  }[];
8930
9703
  shortcut?: {
9704
+ alias?: string | undefined;
8931
9705
  components?: ({
8932
9706
  props: {
8933
9707
  readonly [x: string]: unknown;
@@ -8974,6 +9748,7 @@ declare var __VLS_9: {
8974
9748
  maxlength?: number | undefined;
8975
9749
  rules?: unknown[] | undefined;
8976
9750
  errorDisplayType?: string | undefined;
9751
+ errorTipAppendToParent?: boolean | undefined;
8977
9752
  } | undefined;
8978
9753
  type: "checkboxGroup";
8979
9754
  } | {
@@ -9003,6 +9778,7 @@ declare var __VLS_9: {
9003
9778
  maxlength?: number | undefined;
9004
9779
  rules?: unknown[] | undefined;
9005
9780
  errorDisplayType?: string | undefined;
9781
+ errorTipAppendToParent?: boolean | undefined;
9006
9782
  } | undefined;
9007
9783
  props?: {
9008
9784
  readonly [x: string]: unknown;
@@ -9031,6 +9807,7 @@ declare var __VLS_9: {
9031
9807
  withValidate?: boolean | undefined;
9032
9808
  overMaxLengthLimit?: boolean | undefined;
9033
9809
  showOverflowTooltips?: boolean | undefined;
9810
+ tooltipsOptions?: {} | undefined;
9034
9811
  autosize?: boolean | {
9035
9812
  minRows?: number | undefined;
9036
9813
  maxRows?: number | undefined;
@@ -9065,6 +9842,7 @@ declare var __VLS_9: {
9065
9842
  maxlength?: number | undefined;
9066
9843
  rules?: unknown[] | undefined;
9067
9844
  errorDisplayType?: string | undefined;
9845
+ errorTipAppendToParent?: boolean | undefined;
9068
9846
  } | undefined;
9069
9847
  props?: {
9070
9848
  readonly [x: string]: unknown;
@@ -9093,6 +9871,7 @@ declare var __VLS_9: {
9093
9871
  withValidate?: boolean | undefined;
9094
9872
  overMaxLengthLimit?: boolean | undefined;
9095
9873
  showOverflowTooltips?: boolean | undefined;
9874
+ tooltipsOptions?: {} | undefined;
9096
9875
  autosize?: boolean | {
9097
9876
  minRows?: number | undefined;
9098
9877
  maxRows?: number | undefined;
@@ -9143,6 +9922,7 @@ declare var __VLS_9: {
9143
9922
  maxlength?: number | undefined;
9144
9923
  rules?: unknown[] | undefined;
9145
9924
  errorDisplayType?: string | undefined;
9925
+ errorTipAppendToParent?: boolean | undefined;
9146
9926
  } | undefined;
9147
9927
  type: "radioGroup";
9148
9928
  } | {
@@ -9193,6 +9973,7 @@ declare var __VLS_9: {
9193
9973
  keepSearchValue?: boolean | undefined;
9194
9974
  searchWithPinyin?: boolean | undefined;
9195
9975
  disableScrollToSelectedOption?: boolean | undefined;
9976
+ inputTooltipsOptions?: {} | undefined;
9196
9977
  options: {
9197
9978
  readonly [x: string]: unknown;
9198
9979
  disabled?: boolean | undefined;
@@ -9225,6 +10006,7 @@ declare var __VLS_9: {
9225
10006
  maxlength?: number | undefined;
9226
10007
  rules?: unknown[] | undefined;
9227
10008
  errorDisplayType?: string | undefined;
10009
+ errorTipAppendToParent?: boolean | undefined;
9228
10010
  } | undefined;
9229
10011
  type: "select";
9230
10012
  } | {
@@ -9254,6 +10036,7 @@ declare var __VLS_9: {
9254
10036
  maxlength?: number | undefined;
9255
10037
  rules?: unknown[] | undefined;
9256
10038
  errorDisplayType?: string | undefined;
10039
+ errorTipAppendToParent?: boolean | undefined;
9257
10040
  } | undefined;
9258
10041
  props?: {
9259
10042
  readonly [x: string]: unknown;
@@ -9300,6 +10083,7 @@ declare var __VLS_9: {
9300
10083
  maxlength?: number | undefined;
9301
10084
  rules?: unknown[] | undefined;
9302
10085
  errorDisplayType?: string | undefined;
10086
+ errorTipAppendToParent?: boolean | undefined;
9303
10087
  } | undefined;
9304
10088
  props?: {
9305
10089
  readonly [x: string]: unknown;
@@ -9328,6 +10112,7 @@ declare var __VLS_9: {
9328
10112
  withValidate?: boolean | undefined;
9329
10113
  overMaxLengthLimit?: boolean | undefined;
9330
10114
  showOverflowTooltips?: boolean | undefined;
10115
+ tooltipsOptions?: {} | undefined;
9331
10116
  autosize?: boolean | {
9332
10117
  minRows?: number | undefined;
9333
10118
  maxRows?: number | undefined;
@@ -9362,6 +10147,7 @@ declare var __VLS_9: {
9362
10147
  maxlength?: number | undefined;
9363
10148
  rules?: unknown[] | undefined;
9364
10149
  errorDisplayType?: string | undefined;
10150
+ errorTipAppendToParent?: boolean | undefined;
9365
10151
  } | undefined;
9366
10152
  props?: {
9367
10153
  readonly [x: string]: unknown;
@@ -9390,6 +10176,7 @@ declare var __VLS_9: {
9390
10176
  withValidate?: boolean | undefined;
9391
10177
  overMaxLengthLimit?: boolean | undefined;
9392
10178
  showOverflowTooltips?: boolean | undefined;
10179
+ tooltipsOptions?: {} | undefined;
9393
10180
  autosize?: boolean | {
9394
10181
  minRows?: number | undefined;
9395
10182
  maxRows?: number | undefined;
@@ -9447,6 +10234,7 @@ declare var __VLS_9: {
9447
10234
  rows?: number | undefined;
9448
10235
  }[];
9449
10236
  shortcut?: {
10237
+ alias?: string | undefined;
9450
10238
  components?: ({
9451
10239
  props: {
9452
10240
  readonly [x: string]: unknown;
@@ -9493,6 +10281,7 @@ declare var __VLS_9: {
9493
10281
  maxlength?: number | undefined;
9494
10282
  rules?: unknown[] | undefined;
9495
10283
  errorDisplayType?: string | undefined;
10284
+ errorTipAppendToParent?: boolean | undefined;
9496
10285
  } | undefined;
9497
10286
  type: "checkboxGroup";
9498
10287
  } | {
@@ -9522,6 +10311,7 @@ declare var __VLS_9: {
9522
10311
  maxlength?: number | undefined;
9523
10312
  rules?: unknown[] | undefined;
9524
10313
  errorDisplayType?: string | undefined;
10314
+ errorTipAppendToParent?: boolean | undefined;
9525
10315
  } | undefined;
9526
10316
  props?: {
9527
10317
  readonly [x: string]: unknown;
@@ -9550,6 +10340,7 @@ declare var __VLS_9: {
9550
10340
  withValidate?: boolean | undefined;
9551
10341
  overMaxLengthLimit?: boolean | undefined;
9552
10342
  showOverflowTooltips?: boolean | undefined;
10343
+ tooltipsOptions?: {} | undefined;
9553
10344
  autosize?: boolean | {
9554
10345
  minRows?: number | undefined;
9555
10346
  maxRows?: number | undefined;
@@ -9584,6 +10375,7 @@ declare var __VLS_9: {
9584
10375
  maxlength?: number | undefined;
9585
10376
  rules?: unknown[] | undefined;
9586
10377
  errorDisplayType?: string | undefined;
10378
+ errorTipAppendToParent?: boolean | undefined;
9587
10379
  } | undefined;
9588
10380
  props?: {
9589
10381
  readonly [x: string]: unknown;
@@ -9612,6 +10404,7 @@ declare var __VLS_9: {
9612
10404
  withValidate?: boolean | undefined;
9613
10405
  overMaxLengthLimit?: boolean | undefined;
9614
10406
  showOverflowTooltips?: boolean | undefined;
10407
+ tooltipsOptions?: {} | undefined;
9615
10408
  autosize?: boolean | {
9616
10409
  minRows?: number | undefined;
9617
10410
  maxRows?: number | undefined;
@@ -9662,6 +10455,7 @@ declare var __VLS_9: {
9662
10455
  maxlength?: number | undefined;
9663
10456
  rules?: unknown[] | undefined;
9664
10457
  errorDisplayType?: string | undefined;
10458
+ errorTipAppendToParent?: boolean | undefined;
9665
10459
  } | undefined;
9666
10460
  type: "radioGroup";
9667
10461
  } | {
@@ -9712,6 +10506,7 @@ declare var __VLS_9: {
9712
10506
  keepSearchValue?: boolean | undefined;
9713
10507
  searchWithPinyin?: boolean | undefined;
9714
10508
  disableScrollToSelectedOption?: boolean | undefined;
10509
+ inputTooltipsOptions?: {} | undefined;
9715
10510
  options: {
9716
10511
  readonly [x: string]: unknown;
9717
10512
  disabled?: boolean | undefined;
@@ -9744,6 +10539,7 @@ declare var __VLS_9: {
9744
10539
  maxlength?: number | undefined;
9745
10540
  rules?: unknown[] | undefined;
9746
10541
  errorDisplayType?: string | undefined;
10542
+ errorTipAppendToParent?: boolean | undefined;
9747
10543
  } | undefined;
9748
10544
  type: "select";
9749
10545
  } | {
@@ -9773,6 +10569,7 @@ declare var __VLS_9: {
9773
10569
  maxlength?: number | undefined;
9774
10570
  rules?: unknown[] | undefined;
9775
10571
  errorDisplayType?: string | undefined;
10572
+ errorTipAppendToParent?: boolean | undefined;
9776
10573
  } | undefined;
9777
10574
  props?: {
9778
10575
  readonly [x: string]: unknown;
@@ -9819,6 +10616,7 @@ declare var __VLS_9: {
9819
10616
  maxlength?: number | undefined;
9820
10617
  rules?: unknown[] | undefined;
9821
10618
  errorDisplayType?: string | undefined;
10619
+ errorTipAppendToParent?: boolean | undefined;
9822
10620
  } | undefined;
9823
10621
  props?: {
9824
10622
  readonly [x: string]: unknown;
@@ -9847,6 +10645,7 @@ declare var __VLS_9: {
9847
10645
  withValidate?: boolean | undefined;
9848
10646
  overMaxLengthLimit?: boolean | undefined;
9849
10647
  showOverflowTooltips?: boolean | undefined;
10648
+ tooltipsOptions?: {} | undefined;
9850
10649
  autosize?: boolean | {
9851
10650
  minRows?: number | undefined;
9852
10651
  maxRows?: number | undefined;
@@ -9881,6 +10680,7 @@ declare var __VLS_9: {
9881
10680
  maxlength?: number | undefined;
9882
10681
  rules?: unknown[] | undefined;
9883
10682
  errorDisplayType?: string | undefined;
10683
+ errorTipAppendToParent?: boolean | undefined;
9884
10684
  } | undefined;
9885
10685
  props?: {
9886
10686
  readonly [x: string]: unknown;
@@ -9909,6 +10709,7 @@ declare var __VLS_9: {
9909
10709
  withValidate?: boolean | undefined;
9910
10710
  overMaxLengthLimit?: boolean | undefined;
9911
10711
  showOverflowTooltips?: boolean | undefined;
10712
+ tooltipsOptions?: {} | undefined;
9912
10713
  autosize?: boolean | {
9913
10714
  minRows?: number | undefined;
9914
10715
  maxRows?: number | undefined;
@@ -9966,6 +10767,7 @@ declare var __VLS_9: {
9966
10767
  rows?: number | undefined;
9967
10768
  }[];
9968
10769
  shortcut?: {
10770
+ alias?: string | undefined;
9969
10771
  components?: ({
9970
10772
  props: {
9971
10773
  readonly [x: string]: unknown;
@@ -10012,6 +10814,7 @@ declare var __VLS_9: {
10012
10814
  maxlength?: number | undefined;
10013
10815
  rules?: unknown[] | undefined;
10014
10816
  errorDisplayType?: string | undefined;
10817
+ errorTipAppendToParent?: boolean | undefined;
10015
10818
  } | undefined;
10016
10819
  type: "checkboxGroup";
10017
10820
  } | {
@@ -10041,6 +10844,7 @@ declare var __VLS_9: {
10041
10844
  maxlength?: number | undefined;
10042
10845
  rules?: unknown[] | undefined;
10043
10846
  errorDisplayType?: string | undefined;
10847
+ errorTipAppendToParent?: boolean | undefined;
10044
10848
  } | undefined;
10045
10849
  props?: {
10046
10850
  readonly [x: string]: unknown;
@@ -10069,6 +10873,7 @@ declare var __VLS_9: {
10069
10873
  withValidate?: boolean | undefined;
10070
10874
  overMaxLengthLimit?: boolean | undefined;
10071
10875
  showOverflowTooltips?: boolean | undefined;
10876
+ tooltipsOptions?: {} | undefined;
10072
10877
  autosize?: boolean | {
10073
10878
  minRows?: number | undefined;
10074
10879
  maxRows?: number | undefined;
@@ -10103,6 +10908,7 @@ declare var __VLS_9: {
10103
10908
  maxlength?: number | undefined;
10104
10909
  rules?: unknown[] | undefined;
10105
10910
  errorDisplayType?: string | undefined;
10911
+ errorTipAppendToParent?: boolean | undefined;
10106
10912
  } | undefined;
10107
10913
  props?: {
10108
10914
  readonly [x: string]: unknown;
@@ -10131,6 +10937,7 @@ declare var __VLS_9: {
10131
10937
  withValidate?: boolean | undefined;
10132
10938
  overMaxLengthLimit?: boolean | undefined;
10133
10939
  showOverflowTooltips?: boolean | undefined;
10940
+ tooltipsOptions?: {} | undefined;
10134
10941
  autosize?: boolean | {
10135
10942
  minRows?: number | undefined;
10136
10943
  maxRows?: number | undefined;
@@ -10181,6 +10988,7 @@ declare var __VLS_9: {
10181
10988
  maxlength?: number | undefined;
10182
10989
  rules?: unknown[] | undefined;
10183
10990
  errorDisplayType?: string | undefined;
10991
+ errorTipAppendToParent?: boolean | undefined;
10184
10992
  } | undefined;
10185
10993
  type: "radioGroup";
10186
10994
  } | {
@@ -10231,6 +11039,7 @@ declare var __VLS_9: {
10231
11039
  keepSearchValue?: boolean | undefined;
10232
11040
  searchWithPinyin?: boolean | undefined;
10233
11041
  disableScrollToSelectedOption?: boolean | undefined;
11042
+ inputTooltipsOptions?: {} | undefined;
10234
11043
  options: {
10235
11044
  readonly [x: string]: unknown;
10236
11045
  disabled?: boolean | undefined;
@@ -10263,6 +11072,7 @@ declare var __VLS_9: {
10263
11072
  maxlength?: number | undefined;
10264
11073
  rules?: unknown[] | undefined;
10265
11074
  errorDisplayType?: string | undefined;
11075
+ errorTipAppendToParent?: boolean | undefined;
10266
11076
  } | undefined;
10267
11077
  type: "select";
10268
11078
  } | {
@@ -10292,6 +11102,7 @@ declare var __VLS_9: {
10292
11102
  maxlength?: number | undefined;
10293
11103
  rules?: unknown[] | undefined;
10294
11104
  errorDisplayType?: string | undefined;
11105
+ errorTipAppendToParent?: boolean | undefined;
10295
11106
  } | undefined;
10296
11107
  props?: {
10297
11108
  readonly [x: string]: unknown;
@@ -10338,6 +11149,7 @@ declare var __VLS_9: {
10338
11149
  maxlength?: number | undefined;
10339
11150
  rules?: unknown[] | undefined;
10340
11151
  errorDisplayType?: string | undefined;
11152
+ errorTipAppendToParent?: boolean | undefined;
10341
11153
  } | undefined;
10342
11154
  props?: {
10343
11155
  readonly [x: string]: unknown;
@@ -10366,6 +11178,7 @@ declare var __VLS_9: {
10366
11178
  withValidate?: boolean | undefined;
10367
11179
  overMaxLengthLimit?: boolean | undefined;
10368
11180
  showOverflowTooltips?: boolean | undefined;
11181
+ tooltipsOptions?: {} | undefined;
10369
11182
  autosize?: boolean | {
10370
11183
  minRows?: number | undefined;
10371
11184
  maxRows?: number | undefined;
@@ -10400,6 +11213,7 @@ declare var __VLS_9: {
10400
11213
  maxlength?: number | undefined;
10401
11214
  rules?: unknown[] | undefined;
10402
11215
  errorDisplayType?: string | undefined;
11216
+ errorTipAppendToParent?: boolean | undefined;
10403
11217
  } | undefined;
10404
11218
  props?: {
10405
11219
  readonly [x: string]: unknown;
@@ -10428,6 +11242,7 @@ declare var __VLS_9: {
10428
11242
  withValidate?: boolean | undefined;
10429
11243
  overMaxLengthLimit?: boolean | undefined;
10430
11244
  showOverflowTooltips?: boolean | undefined;
11245
+ tooltipsOptions?: {} | undefined;
10431
11246
  autosize?: boolean | {
10432
11247
  minRows?: number | undefined;
10433
11248
  maxRows?: number | undefined;
@@ -10488,6 +11303,7 @@ declare var __VLS_9: {
10488
11303
  rows?: number | undefined;
10489
11304
  }[];
10490
11305
  shortcut?: {
11306
+ alias?: string | undefined;
10491
11307
  components?: ({
10492
11308
  props: {
10493
11309
  readonly [x: string]: unknown;
@@ -10534,6 +11350,7 @@ declare var __VLS_9: {
10534
11350
  maxlength?: number | undefined;
10535
11351
  rules?: unknown[] | undefined;
10536
11352
  errorDisplayType?: string | undefined;
11353
+ errorTipAppendToParent?: boolean | undefined;
10537
11354
  } | undefined;
10538
11355
  type: "checkboxGroup";
10539
11356
  } | {
@@ -10563,6 +11380,7 @@ declare var __VLS_9: {
10563
11380
  maxlength?: number | undefined;
10564
11381
  rules?: unknown[] | undefined;
10565
11382
  errorDisplayType?: string | undefined;
11383
+ errorTipAppendToParent?: boolean | undefined;
10566
11384
  } | undefined;
10567
11385
  props?: {
10568
11386
  readonly [x: string]: unknown;
@@ -10591,6 +11409,7 @@ declare var __VLS_9: {
10591
11409
  withValidate?: boolean | undefined;
10592
11410
  overMaxLengthLimit?: boolean | undefined;
10593
11411
  showOverflowTooltips?: boolean | undefined;
11412
+ tooltipsOptions?: {} | undefined;
10594
11413
  autosize?: boolean | {
10595
11414
  minRows?: number | undefined;
10596
11415
  maxRows?: number | undefined;
@@ -10625,6 +11444,7 @@ declare var __VLS_9: {
10625
11444
  maxlength?: number | undefined;
10626
11445
  rules?: unknown[] | undefined;
10627
11446
  errorDisplayType?: string | undefined;
11447
+ errorTipAppendToParent?: boolean | undefined;
10628
11448
  } | undefined;
10629
11449
  props?: {
10630
11450
  readonly [x: string]: unknown;
@@ -10653,6 +11473,7 @@ declare var __VLS_9: {
10653
11473
  withValidate?: boolean | undefined;
10654
11474
  overMaxLengthLimit?: boolean | undefined;
10655
11475
  showOverflowTooltips?: boolean | undefined;
11476
+ tooltipsOptions?: {} | undefined;
10656
11477
  autosize?: boolean | {
10657
11478
  minRows?: number | undefined;
10658
11479
  maxRows?: number | undefined;
@@ -10703,6 +11524,7 @@ declare var __VLS_9: {
10703
11524
  maxlength?: number | undefined;
10704
11525
  rules?: unknown[] | undefined;
10705
11526
  errorDisplayType?: string | undefined;
11527
+ errorTipAppendToParent?: boolean | undefined;
10706
11528
  } | undefined;
10707
11529
  type: "radioGroup";
10708
11530
  } | {
@@ -10753,6 +11575,7 @@ declare var __VLS_9: {
10753
11575
  keepSearchValue?: boolean | undefined;
10754
11576
  searchWithPinyin?: boolean | undefined;
10755
11577
  disableScrollToSelectedOption?: boolean | undefined;
11578
+ inputTooltipsOptions?: {} | undefined;
10756
11579
  options: {
10757
11580
  readonly [x: string]: unknown;
10758
11581
  disabled?: boolean | undefined;
@@ -10785,6 +11608,7 @@ declare var __VLS_9: {
10785
11608
  maxlength?: number | undefined;
10786
11609
  rules?: unknown[] | undefined;
10787
11610
  errorDisplayType?: string | undefined;
11611
+ errorTipAppendToParent?: boolean | undefined;
10788
11612
  } | undefined;
10789
11613
  type: "select";
10790
11614
  } | {
@@ -10814,6 +11638,7 @@ declare var __VLS_9: {
10814
11638
  maxlength?: number | undefined;
10815
11639
  rules?: unknown[] | undefined;
10816
11640
  errorDisplayType?: string | undefined;
11641
+ errorTipAppendToParent?: boolean | undefined;
10817
11642
  } | undefined;
10818
11643
  props?: {
10819
11644
  readonly [x: string]: unknown;
@@ -10860,6 +11685,7 @@ declare var __VLS_9: {
10860
11685
  maxlength?: number | undefined;
10861
11686
  rules?: unknown[] | undefined;
10862
11687
  errorDisplayType?: string | undefined;
11688
+ errorTipAppendToParent?: boolean | undefined;
10863
11689
  } | undefined;
10864
11690
  props?: {
10865
11691
  readonly [x: string]: unknown;
@@ -10888,6 +11714,7 @@ declare var __VLS_9: {
10888
11714
  withValidate?: boolean | undefined;
10889
11715
  overMaxLengthLimit?: boolean | undefined;
10890
11716
  showOverflowTooltips?: boolean | undefined;
11717
+ tooltipsOptions?: {} | undefined;
10891
11718
  autosize?: boolean | {
10892
11719
  minRows?: number | undefined;
10893
11720
  maxRows?: number | undefined;
@@ -10922,6 +11749,7 @@ declare var __VLS_9: {
10922
11749
  maxlength?: number | undefined;
10923
11750
  rules?: unknown[] | undefined;
10924
11751
  errorDisplayType?: string | undefined;
11752
+ errorTipAppendToParent?: boolean | undefined;
10925
11753
  } | undefined;
10926
11754
  props?: {
10927
11755
  readonly [x: string]: unknown;
@@ -10950,6 +11778,7 @@ declare var __VLS_9: {
10950
11778
  withValidate?: boolean | undefined;
10951
11779
  overMaxLengthLimit?: boolean | undefined;
10952
11780
  showOverflowTooltips?: boolean | undefined;
11781
+ tooltipsOptions?: {} | undefined;
10953
11782
  autosize?: boolean | {
10954
11783
  minRows?: number | undefined;
10955
11784
  maxRows?: number | undefined;
@@ -11017,6 +11846,7 @@ declare var __VLS_9: {
11017
11846
  rows?: number | undefined;
11018
11847
  }[];
11019
11848
  shortcut?: {
11849
+ alias?: string | undefined;
11020
11850
  components?: ({
11021
11851
  props: {
11022
11852
  readonly [x: string]: unknown;
@@ -11063,6 +11893,7 @@ declare var __VLS_9: {
11063
11893
  maxlength?: number | undefined;
11064
11894
  rules?: unknown[] | undefined;
11065
11895
  errorDisplayType?: string | undefined;
11896
+ errorTipAppendToParent?: boolean | undefined;
11066
11897
  } | undefined;
11067
11898
  type: "checkboxGroup";
11068
11899
  } | {
@@ -11092,6 +11923,7 @@ declare var __VLS_9: {
11092
11923
  maxlength?: number | undefined;
11093
11924
  rules?: unknown[] | undefined;
11094
11925
  errorDisplayType?: string | undefined;
11926
+ errorTipAppendToParent?: boolean | undefined;
11095
11927
  } | undefined;
11096
11928
  props?: {
11097
11929
  readonly [x: string]: unknown;
@@ -11120,6 +11952,7 @@ declare var __VLS_9: {
11120
11952
  withValidate?: boolean | undefined;
11121
11953
  overMaxLengthLimit?: boolean | undefined;
11122
11954
  showOverflowTooltips?: boolean | undefined;
11955
+ tooltipsOptions?: {} | undefined;
11123
11956
  autosize?: boolean | {
11124
11957
  minRows?: number | undefined;
11125
11958
  maxRows?: number | undefined;
@@ -11154,6 +11987,7 @@ declare var __VLS_9: {
11154
11987
  maxlength?: number | undefined;
11155
11988
  rules?: unknown[] | undefined;
11156
11989
  errorDisplayType?: string | undefined;
11990
+ errorTipAppendToParent?: boolean | undefined;
11157
11991
  } | undefined;
11158
11992
  props?: {
11159
11993
  readonly [x: string]: unknown;
@@ -11182,6 +12016,7 @@ declare var __VLS_9: {
11182
12016
  withValidate?: boolean | undefined;
11183
12017
  overMaxLengthLimit?: boolean | undefined;
11184
12018
  showOverflowTooltips?: boolean | undefined;
12019
+ tooltipsOptions?: {} | undefined;
11185
12020
  autosize?: boolean | {
11186
12021
  minRows?: number | undefined;
11187
12022
  maxRows?: number | undefined;
@@ -11232,6 +12067,7 @@ declare var __VLS_9: {
11232
12067
  maxlength?: number | undefined;
11233
12068
  rules?: unknown[] | undefined;
11234
12069
  errorDisplayType?: string | undefined;
12070
+ errorTipAppendToParent?: boolean | undefined;
11235
12071
  } | undefined;
11236
12072
  type: "radioGroup";
11237
12073
  } | {
@@ -11282,6 +12118,7 @@ declare var __VLS_9: {
11282
12118
  keepSearchValue?: boolean | undefined;
11283
12119
  searchWithPinyin?: boolean | undefined;
11284
12120
  disableScrollToSelectedOption?: boolean | undefined;
12121
+ inputTooltipsOptions?: {} | undefined;
11285
12122
  options: {
11286
12123
  readonly [x: string]: unknown;
11287
12124
  disabled?: boolean | undefined;
@@ -11314,6 +12151,7 @@ declare var __VLS_9: {
11314
12151
  maxlength?: number | undefined;
11315
12152
  rules?: unknown[] | undefined;
11316
12153
  errorDisplayType?: string | undefined;
12154
+ errorTipAppendToParent?: boolean | undefined;
11317
12155
  } | undefined;
11318
12156
  type: "select";
11319
12157
  } | {
@@ -11343,6 +12181,7 @@ declare var __VLS_9: {
11343
12181
  maxlength?: number | undefined;
11344
12182
  rules?: unknown[] | undefined;
11345
12183
  errorDisplayType?: string | undefined;
12184
+ errorTipAppendToParent?: boolean | undefined;
11346
12185
  } | undefined;
11347
12186
  props?: {
11348
12187
  readonly [x: string]: unknown;
@@ -11389,6 +12228,7 @@ declare var __VLS_9: {
11389
12228
  maxlength?: number | undefined;
11390
12229
  rules?: unknown[] | undefined;
11391
12230
  errorDisplayType?: string | undefined;
12231
+ errorTipAppendToParent?: boolean | undefined;
11392
12232
  } | undefined;
11393
12233
  props?: {
11394
12234
  readonly [x: string]: unknown;
@@ -11417,6 +12257,7 @@ declare var __VLS_9: {
11417
12257
  withValidate?: boolean | undefined;
11418
12258
  overMaxLengthLimit?: boolean | undefined;
11419
12259
  showOverflowTooltips?: boolean | undefined;
12260
+ tooltipsOptions?: {} | undefined;
11420
12261
  autosize?: boolean | {
11421
12262
  minRows?: number | undefined;
11422
12263
  maxRows?: number | undefined;
@@ -11451,6 +12292,7 @@ declare var __VLS_9: {
11451
12292
  maxlength?: number | undefined;
11452
12293
  rules?: unknown[] | undefined;
11453
12294
  errorDisplayType?: string | undefined;
12295
+ errorTipAppendToParent?: boolean | undefined;
11454
12296
  } | undefined;
11455
12297
  props?: {
11456
12298
  readonly [x: string]: unknown;
@@ -11479,6 +12321,7 @@ declare var __VLS_9: {
11479
12321
  withValidate?: boolean | undefined;
11480
12322
  overMaxLengthLimit?: boolean | undefined;
11481
12323
  showOverflowTooltips?: boolean | undefined;
12324
+ tooltipsOptions?: {} | undefined;
11482
12325
  autosize?: boolean | {
11483
12326
  minRows?: number | undefined;
11484
12327
  maxRows?: number | undefined;