@unizhen/ui 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/back/index.vue.d.ts +1 -1
- package/lib/components/camera/index.vue.d.ts +23 -11
- package/lib/components/circle/index.vue.d.ts +91 -13
- package/lib/components/components.d.ts +0 -1
- package/lib/components/fetch.d.ts +1 -1
- package/lib/components/form/draggable.vue.d.ts +1153 -152
- package/lib/components/form/image.vue.d.ts +311 -46
- package/lib/components/form/index.vue.d.ts +1153 -152
- package/lib/components/form/interface.d.ts +1 -0
- package/lib/components/form/item.vue.d.ts +1145 -152
- package/lib/components/form/upload.vue.d.ts +304 -46
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +114 -12
- package/lib/components/searchBar/index.vue.d.ts +1459 -213
- package/lib/components/searchBar/mobile.vue.d.ts +1241 -177
- package/lib/components/spin/index.vue.d.ts +113 -9
- package/lib/components/table/child.vue.d.ts +677 -56
- package/lib/components/table/child_quest.vue.d.ts +675 -54
- package/lib/components/table/drawer.vue.d.ts +7 -6
- package/lib/components/table/index.vue.d.ts +892 -88
- package/lib/components/table/mobile.vue.d.ts +334 -24
- package/lib/components/table/ocr.vue.d.ts +2 -1
- package/lib/components/thumbnail/index.vue.d.ts +126 -25
- package/lib/components/wrap/index.vue.d.ts +7 -1
- package/lib/ui.css +1 -1
- package/lib/ui.js +2526 -2581
- package/package.json +14 -13
- package/volar.d.ts +0 -1
- package/lib/components/numberRoll/index.d.ts +0 -1
- package/lib/components/numberRoll/index.vue.d.ts +0 -47
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { PropType, VNodeChild, DefineComponent, ExtractPropTypes, ComputedRef, Ref, ComponentOptionsMixin, PublicProps, Component, ComponentProvideOptions, TextareaHTMLAttributes, InputHTMLAttributes, SlotsType, HTMLAttributes, CSSProperties, VNode } from 'vue';
|
|
2
|
-
import { SelectOption, FormValidationStatus, ThemeCommonVars, InputSlots, SelectFilter, PopoverPlacement, PopoverProps, SelectRenderTag, SelectNodeProps, SelectGroupOption, SelectSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots,
|
|
2
|
+
import { SelectOption, FormValidationStatus, ThemeCommonVars, InputSlots, SelectFilter, PopoverPlacement, PopoverProps, SelectRenderTag, SelectNodeProps, SelectGroupOption, SelectSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots, PopoverTrigger, PopoverInst, TooltipSlots, DropdownMenuProps, DropdownNodeProps, MenuOption, MenuGroupOption } from 'naive-ui';
|
|
3
3
|
import { IUzFormItem } from './interface';
|
|
4
4
|
import { ObjectKey } from '../interface';
|
|
5
5
|
import { default as dayjs } from 'dayjs';
|
|
@@ -26,8 +26,6 @@ import { HSLA, RGBA } from 'seemly';
|
|
|
26
26
|
import { OnUpdateChecked } from 'naive-ui/es/checkbox/src/interface';
|
|
27
27
|
import { UseFormItem } from 'naive-ui/es/_mixins/use-form-item';
|
|
28
28
|
import { Value, ExpandTrigger, OnLoad, Filter, OnUpdateValue, SelectMenuInstance, CascaderMenuInstance, ValueAtom, Key } from 'naive-ui/es/cascader/src/interface';
|
|
29
|
-
import { PopoverTrigger } from 'naive-ui/es/popover';
|
|
30
|
-
import { Placement } from 'vueuc/lib/binder/src/interface';
|
|
31
29
|
import { TriggerEventHandlers } from 'naive-ui/es/popover/src/Popover';
|
|
32
30
|
import { OnUpdateValue, DropdownMixedOption, RenderLabel, RenderIcon, RenderOption } from 'naive-ui/es/dropdown/src/interface';
|
|
33
31
|
import { MenuRenderOption, MenuIgnoredOption } from 'naive-ui/es/menu/src/interface';
|
|
@@ -336,7 +334,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
336
334
|
paddingMedium: string;
|
|
337
335
|
paddingLarge: string;
|
|
338
336
|
clearSize: string;
|
|
339
|
-
},
|
|
337
|
+
}, {
|
|
338
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
339
|
+
height: string;
|
|
340
|
+
width: string;
|
|
341
|
+
borderRadius: string;
|
|
342
|
+
color: string;
|
|
343
|
+
colorHover: string;
|
|
344
|
+
railInsetHorizontalBottom: string;
|
|
345
|
+
railInsetHorizontalTop: string;
|
|
346
|
+
railInsetVerticalRight: string;
|
|
347
|
+
railInsetVerticalLeft: string;
|
|
348
|
+
railColor: string;
|
|
349
|
+
}, any>;
|
|
350
|
+
}>>;
|
|
340
351
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
341
352
|
fontWeight: string;
|
|
342
353
|
countTextColorDisabled: string;
|
|
@@ -398,7 +409,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
398
409
|
paddingMedium: string;
|
|
399
410
|
paddingLarge: string;
|
|
400
411
|
clearSize: string;
|
|
401
|
-
},
|
|
412
|
+
}, {
|
|
413
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
414
|
+
height: string;
|
|
415
|
+
width: string;
|
|
416
|
+
borderRadius: string;
|
|
417
|
+
color: string;
|
|
418
|
+
colorHover: string;
|
|
419
|
+
railInsetHorizontalBottom: string;
|
|
420
|
+
railInsetHorizontalTop: string;
|
|
421
|
+
railInsetVerticalRight: string;
|
|
422
|
+
railInsetVerticalLeft: string;
|
|
423
|
+
railColor: string;
|
|
424
|
+
}, any>;
|
|
425
|
+
}>>>;
|
|
402
426
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
403
427
|
fontWeight: string;
|
|
404
428
|
countTextColorDisabled: string;
|
|
@@ -460,7 +484,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
460
484
|
paddingMedium: string;
|
|
461
485
|
paddingLarge: string;
|
|
462
486
|
clearSize: string;
|
|
463
|
-
},
|
|
487
|
+
}, {
|
|
488
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
489
|
+
height: string;
|
|
490
|
+
width: string;
|
|
491
|
+
borderRadius: string;
|
|
492
|
+
color: string;
|
|
493
|
+
colorHover: string;
|
|
494
|
+
railInsetHorizontalBottom: string;
|
|
495
|
+
railInsetHorizontalTop: string;
|
|
496
|
+
railInsetVerticalRight: string;
|
|
497
|
+
railInsetVerticalLeft: string;
|
|
498
|
+
railColor: string;
|
|
499
|
+
}, any>;
|
|
500
|
+
}>>>;
|
|
464
501
|
}>, {
|
|
465
502
|
wrapperElRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
466
503
|
inputElRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -603,9 +640,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
603
640
|
paddingLarge: string;
|
|
604
641
|
clearSize: string;
|
|
605
642
|
};
|
|
606
|
-
peers:
|
|
643
|
+
peers: {
|
|
644
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
645
|
+
height: string;
|
|
646
|
+
width: string;
|
|
647
|
+
borderRadius: string;
|
|
648
|
+
color: string;
|
|
649
|
+
colorHover: string;
|
|
650
|
+
railInsetHorizontalBottom: string;
|
|
651
|
+
railInsetHorizontalTop: string;
|
|
652
|
+
railInsetVerticalRight: string;
|
|
653
|
+
railInsetVerticalLeft: string;
|
|
654
|
+
railColor: string;
|
|
655
|
+
}, any>;
|
|
656
|
+
};
|
|
607
657
|
peerOverrides: {
|
|
608
|
-
|
|
658
|
+
Scrollbar?: {
|
|
659
|
+
peers?: {
|
|
660
|
+
[x: string]: any;
|
|
661
|
+
} | undefined;
|
|
662
|
+
} | undefined;
|
|
609
663
|
};
|
|
610
664
|
}>;
|
|
611
665
|
cssVars: ComputedRef<{
|
|
@@ -823,7 +877,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
823
877
|
paddingMedium: string;
|
|
824
878
|
paddingLarge: string;
|
|
825
879
|
clearSize: string;
|
|
826
|
-
},
|
|
880
|
+
}, {
|
|
881
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
882
|
+
height: string;
|
|
883
|
+
width: string;
|
|
884
|
+
borderRadius: string;
|
|
885
|
+
color: string;
|
|
886
|
+
colorHover: string;
|
|
887
|
+
railInsetHorizontalBottom: string;
|
|
888
|
+
railInsetHorizontalTop: string;
|
|
889
|
+
railInsetVerticalRight: string;
|
|
890
|
+
railInsetVerticalLeft: string;
|
|
891
|
+
railColor: string;
|
|
892
|
+
}, any>;
|
|
893
|
+
}>>;
|
|
827
894
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
828
895
|
fontWeight: string;
|
|
829
896
|
countTextColorDisabled: string;
|
|
@@ -885,7 +952,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
885
952
|
paddingMedium: string;
|
|
886
953
|
paddingLarge: string;
|
|
887
954
|
clearSize: string;
|
|
888
|
-
},
|
|
955
|
+
}, {
|
|
956
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
957
|
+
height: string;
|
|
958
|
+
width: string;
|
|
959
|
+
borderRadius: string;
|
|
960
|
+
color: string;
|
|
961
|
+
colorHover: string;
|
|
962
|
+
railInsetHorizontalBottom: string;
|
|
963
|
+
railInsetHorizontalTop: string;
|
|
964
|
+
railInsetVerticalRight: string;
|
|
965
|
+
railInsetVerticalLeft: string;
|
|
966
|
+
railColor: string;
|
|
967
|
+
}, any>;
|
|
968
|
+
}>>>;
|
|
889
969
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
890
970
|
fontWeight: string;
|
|
891
971
|
countTextColorDisabled: string;
|
|
@@ -947,7 +1027,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
947
1027
|
paddingMedium: string;
|
|
948
1028
|
paddingLarge: string;
|
|
949
1029
|
clearSize: string;
|
|
950
|
-
},
|
|
1030
|
+
}, {
|
|
1031
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1032
|
+
height: string;
|
|
1033
|
+
width: string;
|
|
1034
|
+
borderRadius: string;
|
|
1035
|
+
color: string;
|
|
1036
|
+
colorHover: string;
|
|
1037
|
+
railInsetHorizontalBottom: string;
|
|
1038
|
+
railInsetHorizontalTop: string;
|
|
1039
|
+
railInsetVerticalRight: string;
|
|
1040
|
+
railInsetVerticalLeft: string;
|
|
1041
|
+
railColor: string;
|
|
1042
|
+
}, any>;
|
|
1043
|
+
}>>>;
|
|
951
1044
|
}>> & Readonly<{}>, {
|
|
952
1045
|
type: "textarea" | "text" | "password";
|
|
953
1046
|
readonly: string | boolean;
|
|
@@ -963,10 +1056,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
963
1056
|
clearable: boolean;
|
|
964
1057
|
defaultValue: string | [string, string] | null;
|
|
965
1058
|
resizable: boolean;
|
|
1059
|
+
stateful: boolean;
|
|
966
1060
|
pair: boolean;
|
|
967
1061
|
rows: string | number;
|
|
968
1062
|
passivelyActivated: boolean;
|
|
969
|
-
stateful: boolean;
|
|
970
1063
|
showCount: boolean;
|
|
971
1064
|
attrSize: number;
|
|
972
1065
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1165,7 +1258,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1165
1258
|
arrowOffsetVertical: string;
|
|
1166
1259
|
arrowHeight: string;
|
|
1167
1260
|
padding: string;
|
|
1168
|
-
},
|
|
1261
|
+
}, {
|
|
1262
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1263
|
+
height: string;
|
|
1264
|
+
width: string;
|
|
1265
|
+
borderRadius: string;
|
|
1266
|
+
color: string;
|
|
1267
|
+
colorHover: string;
|
|
1268
|
+
railInsetHorizontalBottom: string;
|
|
1269
|
+
railInsetHorizontalTop: string;
|
|
1270
|
+
railInsetVerticalRight: string;
|
|
1271
|
+
railInsetVerticalLeft: string;
|
|
1272
|
+
railColor: string;
|
|
1273
|
+
}, any>;
|
|
1274
|
+
}>;
|
|
1169
1275
|
}>;
|
|
1170
1276
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1171
1277
|
optionFontSizeTiny: string;
|
|
@@ -1306,7 +1412,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1306
1412
|
arrowOffsetVertical: string;
|
|
1307
1413
|
arrowHeight: string;
|
|
1308
1414
|
padding: string;
|
|
1309
|
-
},
|
|
1415
|
+
}, {
|
|
1416
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1417
|
+
height: string;
|
|
1418
|
+
width: string;
|
|
1419
|
+
borderRadius: string;
|
|
1420
|
+
color: string;
|
|
1421
|
+
colorHover: string;
|
|
1422
|
+
railInsetHorizontalBottom: string;
|
|
1423
|
+
railInsetHorizontalTop: string;
|
|
1424
|
+
railInsetVerticalRight: string;
|
|
1425
|
+
railInsetVerticalLeft: string;
|
|
1426
|
+
railColor: string;
|
|
1427
|
+
}, any>;
|
|
1428
|
+
}>;
|
|
1310
1429
|
}>;
|
|
1311
1430
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1312
1431
|
optionFontSizeTiny: string;
|
|
@@ -1447,7 +1566,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1447
1566
|
arrowOffsetVertical: string;
|
|
1448
1567
|
arrowHeight: string;
|
|
1449
1568
|
padding: string;
|
|
1450
|
-
},
|
|
1569
|
+
}, {
|
|
1570
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1571
|
+
height: string;
|
|
1572
|
+
width: string;
|
|
1573
|
+
borderRadius: string;
|
|
1574
|
+
color: string;
|
|
1575
|
+
colorHover: string;
|
|
1576
|
+
railInsetHorizontalBottom: string;
|
|
1577
|
+
railInsetHorizontalTop: string;
|
|
1578
|
+
railInsetVerticalRight: string;
|
|
1579
|
+
railInsetVerticalLeft: string;
|
|
1580
|
+
railColor: string;
|
|
1581
|
+
}, any>;
|
|
1582
|
+
}>;
|
|
1451
1583
|
}>;
|
|
1452
1584
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1453
1585
|
optionFontSizeTiny: string;
|
|
@@ -1667,7 +1799,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1667
1799
|
arrowOffsetVertical: string;
|
|
1668
1800
|
arrowHeight: string;
|
|
1669
1801
|
padding: string;
|
|
1670
|
-
},
|
|
1802
|
+
}, {
|
|
1803
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1804
|
+
height: string;
|
|
1805
|
+
width: string;
|
|
1806
|
+
borderRadius: string;
|
|
1807
|
+
color: string;
|
|
1808
|
+
colorHover: string;
|
|
1809
|
+
railInsetHorizontalBottom: string;
|
|
1810
|
+
railInsetHorizontalTop: string;
|
|
1811
|
+
railInsetVerticalRight: string;
|
|
1812
|
+
railInsetVerticalLeft: string;
|
|
1813
|
+
railColor: string;
|
|
1814
|
+
}, any>;
|
|
1815
|
+
}>;
|
|
1671
1816
|
}>;
|
|
1672
1817
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1673
1818
|
optionFontSizeTiny: string;
|
|
@@ -1753,7 +1898,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1753
1898
|
arrowOffsetVertical: string;
|
|
1754
1899
|
arrowHeight: string;
|
|
1755
1900
|
padding: string;
|
|
1756
|
-
},
|
|
1901
|
+
}, {
|
|
1902
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
1903
|
+
height: string;
|
|
1904
|
+
width: string;
|
|
1905
|
+
borderRadius: string;
|
|
1906
|
+
color: string;
|
|
1907
|
+
colorHover: string;
|
|
1908
|
+
railInsetHorizontalBottom: string;
|
|
1909
|
+
railInsetHorizontalTop: string;
|
|
1910
|
+
railInsetVerticalRight: string;
|
|
1911
|
+
railInsetVerticalLeft: string;
|
|
1912
|
+
railColor: string;
|
|
1913
|
+
}, any>;
|
|
1914
|
+
}>> | undefined;
|
|
1757
1915
|
} | undefined;
|
|
1758
1916
|
} | undefined;
|
|
1759
1917
|
InternalSelectMenu?: {
|
|
@@ -1989,7 +2147,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1989
2147
|
arrowOffsetVertical: string;
|
|
1990
2148
|
arrowHeight: string;
|
|
1991
2149
|
padding: string;
|
|
1992
|
-
},
|
|
2150
|
+
}, {
|
|
2151
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2152
|
+
height: string;
|
|
2153
|
+
width: string;
|
|
2154
|
+
borderRadius: string;
|
|
2155
|
+
color: string;
|
|
2156
|
+
colorHover: string;
|
|
2157
|
+
railInsetHorizontalBottom: string;
|
|
2158
|
+
railInsetHorizontalTop: string;
|
|
2159
|
+
railInsetVerticalRight: string;
|
|
2160
|
+
railInsetVerticalLeft: string;
|
|
2161
|
+
railColor: string;
|
|
2162
|
+
}, any>;
|
|
2163
|
+
}>;
|
|
1993
2164
|
}>;
|
|
1994
2165
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
1995
2166
|
optionFontSizeTiny: string;
|
|
@@ -2130,7 +2301,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2130
2301
|
arrowOffsetVertical: string;
|
|
2131
2302
|
arrowHeight: string;
|
|
2132
2303
|
padding: string;
|
|
2133
|
-
},
|
|
2304
|
+
}, {
|
|
2305
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2306
|
+
height: string;
|
|
2307
|
+
width: string;
|
|
2308
|
+
borderRadius: string;
|
|
2309
|
+
color: string;
|
|
2310
|
+
colorHover: string;
|
|
2311
|
+
railInsetHorizontalBottom: string;
|
|
2312
|
+
railInsetHorizontalTop: string;
|
|
2313
|
+
railInsetVerticalRight: string;
|
|
2314
|
+
railInsetVerticalLeft: string;
|
|
2315
|
+
railColor: string;
|
|
2316
|
+
}, any>;
|
|
2317
|
+
}>;
|
|
2134
2318
|
}>;
|
|
2135
2319
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
2136
2320
|
optionFontSizeTiny: string;
|
|
@@ -2271,7 +2455,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2271
2455
|
arrowOffsetVertical: string;
|
|
2272
2456
|
arrowHeight: string;
|
|
2273
2457
|
padding: string;
|
|
2274
|
-
},
|
|
2458
|
+
}, {
|
|
2459
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2460
|
+
height: string;
|
|
2461
|
+
width: string;
|
|
2462
|
+
borderRadius: string;
|
|
2463
|
+
color: string;
|
|
2464
|
+
colorHover: string;
|
|
2465
|
+
railInsetHorizontalBottom: string;
|
|
2466
|
+
railInsetHorizontalTop: string;
|
|
2467
|
+
railInsetVerticalRight: string;
|
|
2468
|
+
railInsetVerticalLeft: string;
|
|
2469
|
+
railColor: string;
|
|
2470
|
+
}, any>;
|
|
2471
|
+
}>;
|
|
2275
2472
|
}>;
|
|
2276
2473
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
2277
2474
|
optionFontSizeTiny: string;
|
|
@@ -2350,26 +2547,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2350
2547
|
readonly multiple: boolean;
|
|
2351
2548
|
readonly loading: boolean;
|
|
2352
2549
|
readonly bordered: boolean | undefined;
|
|
2550
|
+
readonly clearable: boolean;
|
|
2551
|
+
readonly defaultValue: Value | null;
|
|
2353
2552
|
readonly placement: PopoverPlacement;
|
|
2354
|
-
readonly
|
|
2355
|
-
readonly showCheckmark: boolean;
|
|
2356
|
-
readonly virtualScroll: boolean;
|
|
2357
|
-
readonly valueField: string;
|
|
2358
|
-
readonly resetMenuOnOptionsChange: boolean;
|
|
2553
|
+
readonly keyboard: boolean;
|
|
2359
2554
|
readonly showArrow: boolean;
|
|
2360
2555
|
readonly displayDirective: "show" | "if";
|
|
2361
2556
|
readonly filterable: boolean;
|
|
2362
|
-
readonly clearable: boolean;
|
|
2363
|
-
readonly ignoreComposition: boolean;
|
|
2364
2557
|
readonly clearFilterAfterSelect: boolean;
|
|
2365
|
-
readonly defaultValue: Value | null;
|
|
2366
|
-
readonly keyboard: boolean;
|
|
2367
2558
|
readonly remote: boolean;
|
|
2559
|
+
readonly virtualScroll: boolean;
|
|
2560
|
+
readonly valueField: string;
|
|
2561
|
+
readonly labelField: string;
|
|
2562
|
+
readonly childrenField: string;
|
|
2368
2563
|
readonly widthMode: string;
|
|
2369
2564
|
readonly fallbackOption: false | SelectFallbackOption | undefined;
|
|
2370
2565
|
readonly consistentMenuWidth: boolean;
|
|
2371
|
-
readonly
|
|
2566
|
+
readonly ignoreComposition: boolean;
|
|
2372
2567
|
readonly showOnFocus: boolean;
|
|
2568
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
2569
|
+
readonly showCheckmark: boolean;
|
|
2373
2570
|
}, SlotsType<SelectSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2374
2571
|
NInputNumber: DefineComponent<ExtractPropTypes<{
|
|
2375
2572
|
autofocus: BooleanConstructor;
|
|
@@ -2703,7 +2900,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2703
2900
|
paddingMedium: string;
|
|
2704
2901
|
paddingLarge: string;
|
|
2705
2902
|
clearSize: string;
|
|
2706
|
-
},
|
|
2903
|
+
}, {
|
|
2904
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2905
|
+
height: string;
|
|
2906
|
+
width: string;
|
|
2907
|
+
borderRadius: string;
|
|
2908
|
+
color: string;
|
|
2909
|
+
colorHover: string;
|
|
2910
|
+
railInsetHorizontalBottom: string;
|
|
2911
|
+
railInsetHorizontalTop: string;
|
|
2912
|
+
railInsetVerticalRight: string;
|
|
2913
|
+
railInsetVerticalLeft: string;
|
|
2914
|
+
railColor: string;
|
|
2915
|
+
}, any>;
|
|
2916
|
+
}>;
|
|
2707
2917
|
}>>;
|
|
2708
2918
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
2709
2919
|
iconColorDisabled: string;
|
|
@@ -2973,12 +3183,25 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2973
3183
|
paddingMedium: string;
|
|
2974
3184
|
paddingLarge: string;
|
|
2975
3185
|
clearSize: string;
|
|
2976
|
-
},
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
2980
|
-
|
|
2981
|
-
|
|
3186
|
+
}, {
|
|
3187
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3188
|
+
height: string;
|
|
3189
|
+
width: string;
|
|
3190
|
+
borderRadius: string;
|
|
3191
|
+
color: string;
|
|
3192
|
+
colorHover: string;
|
|
3193
|
+
railInsetHorizontalBottom: string;
|
|
3194
|
+
railInsetHorizontalTop: string;
|
|
3195
|
+
railInsetVerticalRight: string;
|
|
3196
|
+
railInsetVerticalLeft: string;
|
|
3197
|
+
railColor: string;
|
|
3198
|
+
}, any>;
|
|
3199
|
+
}>;
|
|
3200
|
+
}>>>;
|
|
3201
|
+
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
3202
|
+
iconColorDisabled: string;
|
|
3203
|
+
}, {
|
|
3204
|
+
Button: Theme<"Button", {
|
|
2982
3205
|
heightTiny: string;
|
|
2983
3206
|
heightSmall: string;
|
|
2984
3207
|
heightMedium: string;
|
|
@@ -3243,7 +3466,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3243
3466
|
paddingMedium: string;
|
|
3244
3467
|
paddingLarge: string;
|
|
3245
3468
|
clearSize: string;
|
|
3246
|
-
},
|
|
3469
|
+
}, {
|
|
3470
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3471
|
+
height: string;
|
|
3472
|
+
width: string;
|
|
3473
|
+
borderRadius: string;
|
|
3474
|
+
color: string;
|
|
3475
|
+
colorHover: string;
|
|
3476
|
+
railInsetHorizontalBottom: string;
|
|
3477
|
+
railInsetHorizontalTop: string;
|
|
3478
|
+
railInsetVerticalRight: string;
|
|
3479
|
+
railInsetVerticalLeft: string;
|
|
3480
|
+
railColor: string;
|
|
3481
|
+
}, any>;
|
|
3482
|
+
}>;
|
|
3247
3483
|
}>>>;
|
|
3248
3484
|
}>, {
|
|
3249
3485
|
rtlEnabled: Ref< RtlItem | undefined, RtlItem | undefined> | undefined;
|
|
@@ -3591,7 +3827,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3591
3827
|
paddingMedium: string;
|
|
3592
3828
|
paddingLarge: string;
|
|
3593
3829
|
clearSize: string;
|
|
3594
|
-
},
|
|
3830
|
+
}, {
|
|
3831
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3832
|
+
height: string;
|
|
3833
|
+
width: string;
|
|
3834
|
+
borderRadius: string;
|
|
3835
|
+
color: string;
|
|
3836
|
+
colorHover: string;
|
|
3837
|
+
railInsetHorizontalBottom: string;
|
|
3838
|
+
railInsetHorizontalTop: string;
|
|
3839
|
+
railInsetVerticalRight: string;
|
|
3840
|
+
railInsetVerticalLeft: string;
|
|
3841
|
+
railColor: string;
|
|
3842
|
+
}, any>;
|
|
3843
|
+
}>;
|
|
3595
3844
|
};
|
|
3596
3845
|
peerOverrides: {
|
|
3597
3846
|
Button?: {
|
|
@@ -3601,7 +3850,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3601
3850
|
} | undefined;
|
|
3602
3851
|
Input?: {
|
|
3603
3852
|
peers?: {
|
|
3604
|
-
|
|
3853
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
3854
|
+
height: string;
|
|
3855
|
+
width: string;
|
|
3856
|
+
borderRadius: string;
|
|
3857
|
+
color: string;
|
|
3858
|
+
colorHover: string;
|
|
3859
|
+
railInsetHorizontalBottom: string;
|
|
3860
|
+
railInsetHorizontalTop: string;
|
|
3861
|
+
railInsetVerticalRight: string;
|
|
3862
|
+
railInsetVerticalLeft: string;
|
|
3863
|
+
railColor: string;
|
|
3864
|
+
}, any>> | undefined;
|
|
3605
3865
|
} | undefined;
|
|
3606
3866
|
} | undefined;
|
|
3607
3867
|
};
|
|
@@ -3950,7 +4210,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3950
4210
|
paddingMedium: string;
|
|
3951
4211
|
paddingLarge: string;
|
|
3952
4212
|
clearSize: string;
|
|
3953
|
-
},
|
|
4213
|
+
}, {
|
|
4214
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4215
|
+
height: string;
|
|
4216
|
+
width: string;
|
|
4217
|
+
borderRadius: string;
|
|
4218
|
+
color: string;
|
|
4219
|
+
colorHover: string;
|
|
4220
|
+
railInsetHorizontalBottom: string;
|
|
4221
|
+
railInsetHorizontalTop: string;
|
|
4222
|
+
railInsetVerticalRight: string;
|
|
4223
|
+
railInsetVerticalLeft: string;
|
|
4224
|
+
railColor: string;
|
|
4225
|
+
}, any>;
|
|
4226
|
+
}>;
|
|
3954
4227
|
}>>;
|
|
3955
4228
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
3956
4229
|
iconColorDisabled: string;
|
|
@@ -4220,7 +4493,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4220
4493
|
paddingMedium: string;
|
|
4221
4494
|
paddingLarge: string;
|
|
4222
4495
|
clearSize: string;
|
|
4223
|
-
},
|
|
4496
|
+
}, {
|
|
4497
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4498
|
+
height: string;
|
|
4499
|
+
width: string;
|
|
4500
|
+
borderRadius: string;
|
|
4501
|
+
color: string;
|
|
4502
|
+
colorHover: string;
|
|
4503
|
+
railInsetHorizontalBottom: string;
|
|
4504
|
+
railInsetHorizontalTop: string;
|
|
4505
|
+
railInsetVerticalRight: string;
|
|
4506
|
+
railInsetVerticalLeft: string;
|
|
4507
|
+
railColor: string;
|
|
4508
|
+
}, any>;
|
|
4509
|
+
}>;
|
|
4224
4510
|
}>>>;
|
|
4225
4511
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
4226
4512
|
iconColorDisabled: string;
|
|
@@ -4490,7 +4776,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4490
4776
|
paddingMedium: string;
|
|
4491
4777
|
paddingLarge: string;
|
|
4492
4778
|
clearSize: string;
|
|
4493
|
-
},
|
|
4779
|
+
}, {
|
|
4780
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4781
|
+
height: string;
|
|
4782
|
+
width: string;
|
|
4783
|
+
borderRadius: string;
|
|
4784
|
+
color: string;
|
|
4785
|
+
colorHover: string;
|
|
4786
|
+
railInsetHorizontalBottom: string;
|
|
4787
|
+
railInsetHorizontalTop: string;
|
|
4788
|
+
railInsetVerticalRight: string;
|
|
4789
|
+
railInsetVerticalLeft: string;
|
|
4790
|
+
railColor: string;
|
|
4791
|
+
}, any>;
|
|
4792
|
+
}>;
|
|
4494
4793
|
}>>>;
|
|
4495
4794
|
}>> & Readonly<{}>, {
|
|
4496
4795
|
readonly: boolean;
|
|
@@ -4733,7 +5032,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4733
5032
|
paddingMedium: string;
|
|
4734
5033
|
paddingLarge: string;
|
|
4735
5034
|
clearSize: string;
|
|
4736
|
-
},
|
|
5035
|
+
}, {
|
|
5036
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5037
|
+
height: string;
|
|
5038
|
+
width: string;
|
|
5039
|
+
borderRadius: string;
|
|
5040
|
+
color: string;
|
|
5041
|
+
colorHover: string;
|
|
5042
|
+
railInsetHorizontalBottom: string;
|
|
5043
|
+
railInsetHorizontalTop: string;
|
|
5044
|
+
railInsetVerticalRight: string;
|
|
5045
|
+
railInsetVerticalLeft: string;
|
|
5046
|
+
railColor: string;
|
|
5047
|
+
}, any>;
|
|
5048
|
+
}>;
|
|
4737
5049
|
Button: Theme<"Button", {
|
|
4738
5050
|
heightTiny: string;
|
|
4739
5051
|
heightSmall: string;
|
|
@@ -5232,7 +5544,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5232
5544
|
paddingMedium: string;
|
|
5233
5545
|
paddingLarge: string;
|
|
5234
5546
|
clearSize: string;
|
|
5235
|
-
},
|
|
5547
|
+
}, {
|
|
5548
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5549
|
+
height: string;
|
|
5550
|
+
width: string;
|
|
5551
|
+
borderRadius: string;
|
|
5552
|
+
color: string;
|
|
5553
|
+
colorHover: string;
|
|
5554
|
+
railInsetHorizontalBottom: string;
|
|
5555
|
+
railInsetHorizontalTop: string;
|
|
5556
|
+
railInsetVerticalRight: string;
|
|
5557
|
+
railInsetVerticalLeft: string;
|
|
5558
|
+
railColor: string;
|
|
5559
|
+
}, any>;
|
|
5560
|
+
}>;
|
|
5236
5561
|
}>;
|
|
5237
5562
|
Scrollbar: Theme<"Scrollbar", {
|
|
5238
5563
|
height: string;
|
|
@@ -5373,7 +5698,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5373
5698
|
paddingMedium: string;
|
|
5374
5699
|
paddingLarge: string;
|
|
5375
5700
|
clearSize: string;
|
|
5376
|
-
},
|
|
5701
|
+
}, {
|
|
5702
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5703
|
+
height: string;
|
|
5704
|
+
width: string;
|
|
5705
|
+
borderRadius: string;
|
|
5706
|
+
color: string;
|
|
5707
|
+
colorHover: string;
|
|
5708
|
+
railInsetHorizontalBottom: string;
|
|
5709
|
+
railInsetHorizontalTop: string;
|
|
5710
|
+
railInsetVerticalRight: string;
|
|
5711
|
+
railInsetVerticalLeft: string;
|
|
5712
|
+
railColor: string;
|
|
5713
|
+
}, any>;
|
|
5714
|
+
}>;
|
|
5377
5715
|
Button: Theme<"Button", {
|
|
5378
5716
|
heightTiny: string;
|
|
5379
5717
|
heightSmall: string;
|
|
@@ -5872,7 +6210,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5872
6210
|
paddingMedium: string;
|
|
5873
6211
|
paddingLarge: string;
|
|
5874
6212
|
clearSize: string;
|
|
5875
|
-
},
|
|
6213
|
+
}, {
|
|
6214
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6215
|
+
height: string;
|
|
6216
|
+
width: string;
|
|
6217
|
+
borderRadius: string;
|
|
6218
|
+
color: string;
|
|
6219
|
+
colorHover: string;
|
|
6220
|
+
railInsetHorizontalBottom: string;
|
|
6221
|
+
railInsetHorizontalTop: string;
|
|
6222
|
+
railInsetVerticalRight: string;
|
|
6223
|
+
railInsetVerticalLeft: string;
|
|
6224
|
+
railColor: string;
|
|
6225
|
+
}, any>;
|
|
6226
|
+
}>;
|
|
5876
6227
|
}>;
|
|
5877
6228
|
Scrollbar: Theme<"Scrollbar", {
|
|
5878
6229
|
height: string;
|
|
@@ -6013,7 +6364,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6013
6364
|
paddingMedium: string;
|
|
6014
6365
|
paddingLarge: string;
|
|
6015
6366
|
clearSize: string;
|
|
6016
|
-
},
|
|
6367
|
+
}, {
|
|
6368
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6369
|
+
height: string;
|
|
6370
|
+
width: string;
|
|
6371
|
+
borderRadius: string;
|
|
6372
|
+
color: string;
|
|
6373
|
+
colorHover: string;
|
|
6374
|
+
railInsetHorizontalBottom: string;
|
|
6375
|
+
railInsetHorizontalTop: string;
|
|
6376
|
+
railInsetVerticalRight: string;
|
|
6377
|
+
railInsetVerticalLeft: string;
|
|
6378
|
+
railColor: string;
|
|
6379
|
+
}, any>;
|
|
6380
|
+
}>;
|
|
6017
6381
|
Button: Theme<"Button", {
|
|
6018
6382
|
heightTiny: string;
|
|
6019
6383
|
heightSmall: string;
|
|
@@ -6512,7 +6876,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6512
6876
|
paddingMedium: string;
|
|
6513
6877
|
paddingLarge: string;
|
|
6514
6878
|
clearSize: string;
|
|
6515
|
-
},
|
|
6879
|
+
}, {
|
|
6880
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6881
|
+
height: string;
|
|
6882
|
+
width: string;
|
|
6883
|
+
borderRadius: string;
|
|
6884
|
+
color: string;
|
|
6885
|
+
colorHover: string;
|
|
6886
|
+
railInsetHorizontalBottom: string;
|
|
6887
|
+
railInsetHorizontalTop: string;
|
|
6888
|
+
railInsetVerticalRight: string;
|
|
6889
|
+
railInsetVerticalLeft: string;
|
|
6890
|
+
railColor: string;
|
|
6891
|
+
}, any>;
|
|
6892
|
+
}>;
|
|
6516
6893
|
}>;
|
|
6517
6894
|
Scrollbar: Theme<"Scrollbar", {
|
|
6518
6895
|
height: string;
|
|
@@ -6913,7 +7290,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6913
7290
|
paddingMedium: string;
|
|
6914
7291
|
paddingLarge: string;
|
|
6915
7292
|
clearSize: string;
|
|
6916
|
-
},
|
|
7293
|
+
}, {
|
|
7294
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7295
|
+
height: string;
|
|
7296
|
+
width: string;
|
|
7297
|
+
borderRadius: string;
|
|
7298
|
+
color: string;
|
|
7299
|
+
colorHover: string;
|
|
7300
|
+
railInsetHorizontalBottom: string;
|
|
7301
|
+
railInsetHorizontalTop: string;
|
|
7302
|
+
railInsetVerticalRight: string;
|
|
7303
|
+
railInsetVerticalLeft: string;
|
|
7304
|
+
railColor: string;
|
|
7305
|
+
}, any>;
|
|
7306
|
+
}>;
|
|
6917
7307
|
Button: Theme<"Button", {
|
|
6918
7308
|
heightTiny: string;
|
|
6919
7309
|
heightSmall: string;
|
|
@@ -7412,7 +7802,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7412
7802
|
paddingMedium: string;
|
|
7413
7803
|
paddingLarge: string;
|
|
7414
7804
|
clearSize: string;
|
|
7415
|
-
},
|
|
7805
|
+
}, {
|
|
7806
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7807
|
+
height: string;
|
|
7808
|
+
width: string;
|
|
7809
|
+
borderRadius: string;
|
|
7810
|
+
color: string;
|
|
7811
|
+
colorHover: string;
|
|
7812
|
+
railInsetHorizontalBottom: string;
|
|
7813
|
+
railInsetHorizontalTop: string;
|
|
7814
|
+
railInsetVerticalRight: string;
|
|
7815
|
+
railInsetVerticalLeft: string;
|
|
7816
|
+
railColor: string;
|
|
7817
|
+
}, any>;
|
|
7818
|
+
}>;
|
|
7416
7819
|
}>;
|
|
7417
7820
|
Scrollbar: Theme<"Scrollbar", {
|
|
7418
7821
|
height: string;
|
|
@@ -7430,7 +7833,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7430
7833
|
peerOverrides: {
|
|
7431
7834
|
Input?: {
|
|
7432
7835
|
peers?: {
|
|
7433
|
-
|
|
7836
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
7837
|
+
height: string;
|
|
7838
|
+
width: string;
|
|
7839
|
+
borderRadius: string;
|
|
7840
|
+
color: string;
|
|
7841
|
+
colorHover: string;
|
|
7842
|
+
railInsetHorizontalBottom: string;
|
|
7843
|
+
railInsetHorizontalTop: string;
|
|
7844
|
+
railInsetVerticalRight: string;
|
|
7845
|
+
railInsetVerticalLeft: string;
|
|
7846
|
+
railColor: string;
|
|
7847
|
+
}, any>> | undefined;
|
|
7434
7848
|
} | undefined;
|
|
7435
7849
|
} | undefined;
|
|
7436
7850
|
Button?: {
|
|
@@ -7717,7 +8131,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7717
8131
|
paddingMedium: string;
|
|
7718
8132
|
paddingLarge: string;
|
|
7719
8133
|
clearSize: string;
|
|
7720
|
-
},
|
|
8134
|
+
}, {
|
|
8135
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8136
|
+
height: string;
|
|
8137
|
+
width: string;
|
|
8138
|
+
borderRadius: string;
|
|
8139
|
+
color: string;
|
|
8140
|
+
colorHover: string;
|
|
8141
|
+
railInsetHorizontalBottom: string;
|
|
8142
|
+
railInsetHorizontalTop: string;
|
|
8143
|
+
railInsetVerticalRight: string;
|
|
8144
|
+
railInsetVerticalLeft: string;
|
|
8145
|
+
railColor: string;
|
|
8146
|
+
}, any>;
|
|
8147
|
+
}>> | undefined;
|
|
7721
8148
|
} | undefined;
|
|
7722
8149
|
} | undefined;
|
|
7723
8150
|
Scrollbar?: {
|
|
@@ -8011,7 +8438,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8011
8438
|
paddingMedium: string;
|
|
8012
8439
|
paddingLarge: string;
|
|
8013
8440
|
clearSize: string;
|
|
8014
|
-
},
|
|
8441
|
+
}, {
|
|
8442
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8443
|
+
height: string;
|
|
8444
|
+
width: string;
|
|
8445
|
+
borderRadius: string;
|
|
8446
|
+
color: string;
|
|
8447
|
+
colorHover: string;
|
|
8448
|
+
railInsetHorizontalBottom: string;
|
|
8449
|
+
railInsetHorizontalTop: string;
|
|
8450
|
+
railInsetVerticalRight: string;
|
|
8451
|
+
railInsetVerticalLeft: string;
|
|
8452
|
+
railColor: string;
|
|
8453
|
+
}, any>;
|
|
8454
|
+
}>;
|
|
8015
8455
|
Button: Theme<"Button", {
|
|
8016
8456
|
heightTiny: string;
|
|
8017
8457
|
heightSmall: string;
|
|
@@ -8510,10 +8950,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8510
8950
|
paddingMedium: string;
|
|
8511
8951
|
paddingLarge: string;
|
|
8512
8952
|
clearSize: string;
|
|
8513
|
-
},
|
|
8514
|
-
|
|
8515
|
-
|
|
8516
|
-
|
|
8953
|
+
}, {
|
|
8954
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8955
|
+
height: string;
|
|
8956
|
+
width: string;
|
|
8957
|
+
borderRadius: string;
|
|
8958
|
+
color: string;
|
|
8959
|
+
colorHover: string;
|
|
8960
|
+
railInsetHorizontalBottom: string;
|
|
8961
|
+
railInsetHorizontalTop: string;
|
|
8962
|
+
railInsetVerticalRight: string;
|
|
8963
|
+
railInsetVerticalLeft: string;
|
|
8964
|
+
railColor: string;
|
|
8965
|
+
}, any>;
|
|
8966
|
+
}>;
|
|
8967
|
+
}>;
|
|
8968
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8969
|
+
height: string;
|
|
8517
8970
|
width: string;
|
|
8518
8971
|
borderRadius: string;
|
|
8519
8972
|
color: string;
|
|
@@ -8651,7 +9104,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8651
9104
|
paddingMedium: string;
|
|
8652
9105
|
paddingLarge: string;
|
|
8653
9106
|
clearSize: string;
|
|
8654
|
-
},
|
|
9107
|
+
}, {
|
|
9108
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9109
|
+
height: string;
|
|
9110
|
+
width: string;
|
|
9111
|
+
borderRadius: string;
|
|
9112
|
+
color: string;
|
|
9113
|
+
colorHover: string;
|
|
9114
|
+
railInsetHorizontalBottom: string;
|
|
9115
|
+
railInsetHorizontalTop: string;
|
|
9116
|
+
railInsetVerticalRight: string;
|
|
9117
|
+
railInsetVerticalLeft: string;
|
|
9118
|
+
railColor: string;
|
|
9119
|
+
}, any>;
|
|
9120
|
+
}>;
|
|
8655
9121
|
Button: Theme<"Button", {
|
|
8656
9122
|
heightTiny: string;
|
|
8657
9123
|
heightSmall: string;
|
|
@@ -9150,7 +9616,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9150
9616
|
paddingMedium: string;
|
|
9151
9617
|
paddingLarge: string;
|
|
9152
9618
|
clearSize: string;
|
|
9153
|
-
},
|
|
9619
|
+
}, {
|
|
9620
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9621
|
+
height: string;
|
|
9622
|
+
width: string;
|
|
9623
|
+
borderRadius: string;
|
|
9624
|
+
color: string;
|
|
9625
|
+
colorHover: string;
|
|
9626
|
+
railInsetHorizontalBottom: string;
|
|
9627
|
+
railInsetHorizontalTop: string;
|
|
9628
|
+
railInsetVerticalRight: string;
|
|
9629
|
+
railInsetVerticalLeft: string;
|
|
9630
|
+
railColor: string;
|
|
9631
|
+
}, any>;
|
|
9632
|
+
}>;
|
|
9154
9633
|
}>;
|
|
9155
9634
|
Scrollbar: Theme<"Scrollbar", {
|
|
9156
9635
|
height: string;
|
|
@@ -9291,7 +9770,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9291
9770
|
paddingMedium: string;
|
|
9292
9771
|
paddingLarge: string;
|
|
9293
9772
|
clearSize: string;
|
|
9294
|
-
},
|
|
9773
|
+
}, {
|
|
9774
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9775
|
+
height: string;
|
|
9776
|
+
width: string;
|
|
9777
|
+
borderRadius: string;
|
|
9778
|
+
color: string;
|
|
9779
|
+
colorHover: string;
|
|
9780
|
+
railInsetHorizontalBottom: string;
|
|
9781
|
+
railInsetHorizontalTop: string;
|
|
9782
|
+
railInsetVerticalRight: string;
|
|
9783
|
+
railInsetVerticalLeft: string;
|
|
9784
|
+
railColor: string;
|
|
9785
|
+
}, any>;
|
|
9786
|
+
}>;
|
|
9295
9787
|
Button: Theme<"Button", {
|
|
9296
9788
|
heightTiny: string;
|
|
9297
9789
|
heightSmall: string;
|
|
@@ -9790,7 +10282,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9790
10282
|
paddingMedium: string;
|
|
9791
10283
|
paddingLarge: string;
|
|
9792
10284
|
clearSize: string;
|
|
9793
|
-
},
|
|
10285
|
+
}, {
|
|
10286
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10287
|
+
height: string;
|
|
10288
|
+
width: string;
|
|
10289
|
+
borderRadius: string;
|
|
10290
|
+
color: string;
|
|
10291
|
+
colorHover: string;
|
|
10292
|
+
railInsetHorizontalBottom: string;
|
|
10293
|
+
railInsetHorizontalTop: string;
|
|
10294
|
+
railInsetVerticalRight: string;
|
|
10295
|
+
railInsetVerticalLeft: string;
|
|
10296
|
+
railColor: string;
|
|
10297
|
+
}, any>;
|
|
10298
|
+
}>;
|
|
9794
10299
|
}>;
|
|
9795
10300
|
Scrollbar: Theme<"Scrollbar", {
|
|
9796
10301
|
height: string;
|
|
@@ -9810,19 +10315,19 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9810
10315
|
readonly to: string | boolean | HTMLElement;
|
|
9811
10316
|
readonly disabled: boolean | undefined;
|
|
9812
10317
|
readonly show: boolean | undefined;
|
|
9813
|
-
readonly yearFormat: string;
|
|
9814
|
-
readonly monthFormat: string;
|
|
9815
|
-
readonly quarterFormat: string;
|
|
9816
10318
|
readonly bordered: boolean | undefined;
|
|
9817
|
-
readonly placement: FollowerPlacement;
|
|
9818
10319
|
readonly clearable: boolean;
|
|
10320
|
+
readonly placement: FollowerPlacement;
|
|
9819
10321
|
readonly inputReadonly: boolean;
|
|
10322
|
+
readonly updateValueOnClose: boolean;
|
|
9820
10323
|
readonly calendarHeaderMonthYearSeparator: string;
|
|
9821
10324
|
readonly calendarHeaderMonthBeforeYear: boolean;
|
|
9822
10325
|
readonly panel: boolean;
|
|
9823
|
-
readonly updateValueOnClose: boolean;
|
|
9824
10326
|
readonly closeOnSelect: boolean;
|
|
9825
10327
|
readonly bindCalendarMonths: boolean;
|
|
10328
|
+
readonly monthFormat: string;
|
|
10329
|
+
readonly yearFormat: string;
|
|
10330
|
+
readonly quarterFormat: string;
|
|
9826
10331
|
readonly yearRange: [number, number];
|
|
9827
10332
|
}, SlotsType<DatePickerSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
9828
10333
|
NTimePicker: DefineComponent<ExtractPropTypes<{
|
|
@@ -10194,7 +10699,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10194
10699
|
paddingMedium: string;
|
|
10195
10700
|
paddingLarge: string;
|
|
10196
10701
|
clearSize: string;
|
|
10197
|
-
},
|
|
10702
|
+
}, {
|
|
10703
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10704
|
+
height: string;
|
|
10705
|
+
width: string;
|
|
10706
|
+
borderRadius: string;
|
|
10707
|
+
color: string;
|
|
10708
|
+
colorHover: string;
|
|
10709
|
+
railInsetHorizontalBottom: string;
|
|
10710
|
+
railInsetHorizontalTop: string;
|
|
10711
|
+
railInsetVerticalRight: string;
|
|
10712
|
+
railInsetVerticalLeft: string;
|
|
10713
|
+
railColor: string;
|
|
10714
|
+
}, any>;
|
|
10715
|
+
}>;
|
|
10198
10716
|
}>>;
|
|
10199
10717
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
10200
10718
|
panelColor: string;
|
|
@@ -10490,7 +11008,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10490
11008
|
paddingMedium: string;
|
|
10491
11009
|
paddingLarge: string;
|
|
10492
11010
|
clearSize: string;
|
|
10493
|
-
},
|
|
11011
|
+
}, {
|
|
11012
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11013
|
+
height: string;
|
|
11014
|
+
width: string;
|
|
11015
|
+
borderRadius: string;
|
|
11016
|
+
color: string;
|
|
11017
|
+
colorHover: string;
|
|
11018
|
+
railInsetHorizontalBottom: string;
|
|
11019
|
+
railInsetHorizontalTop: string;
|
|
11020
|
+
railInsetVerticalRight: string;
|
|
11021
|
+
railInsetVerticalLeft: string;
|
|
11022
|
+
railColor: string;
|
|
11023
|
+
}, any>;
|
|
11024
|
+
}>;
|
|
10494
11025
|
}>>>;
|
|
10495
11026
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
10496
11027
|
panelColor: string;
|
|
@@ -10786,7 +11317,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10786
11317
|
paddingMedium: string;
|
|
10787
11318
|
paddingLarge: string;
|
|
10788
11319
|
clearSize: string;
|
|
10789
|
-
},
|
|
11320
|
+
}, {
|
|
11321
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11322
|
+
height: string;
|
|
11323
|
+
width: string;
|
|
11324
|
+
borderRadius: string;
|
|
11325
|
+
color: string;
|
|
11326
|
+
colorHover: string;
|
|
11327
|
+
railInsetHorizontalBottom: string;
|
|
11328
|
+
railInsetHorizontalTop: string;
|
|
11329
|
+
railInsetVerticalRight: string;
|
|
11330
|
+
railInsetVerticalLeft: string;
|
|
11331
|
+
railColor: string;
|
|
11332
|
+
}, any>;
|
|
11333
|
+
}>;
|
|
10790
11334
|
}>>>;
|
|
10791
11335
|
}>, {
|
|
10792
11336
|
focus: () => void;
|
|
@@ -11275,7 +11819,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11275
11819
|
paddingMedium: string;
|
|
11276
11820
|
paddingLarge: string;
|
|
11277
11821
|
clearSize: string;
|
|
11278
|
-
},
|
|
11822
|
+
}, {
|
|
11823
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11824
|
+
height: string;
|
|
11825
|
+
width: string;
|
|
11826
|
+
borderRadius: string;
|
|
11827
|
+
color: string;
|
|
11828
|
+
colorHover: string;
|
|
11829
|
+
railInsetHorizontalBottom: string;
|
|
11830
|
+
railInsetHorizontalTop: string;
|
|
11831
|
+
railInsetVerticalRight: string;
|
|
11832
|
+
railInsetVerticalLeft: string;
|
|
11833
|
+
railColor: string;
|
|
11834
|
+
}, any>;
|
|
11835
|
+
}>;
|
|
11279
11836
|
};
|
|
11280
11837
|
peerOverrides: {
|
|
11281
11838
|
Scrollbar?: {
|
|
@@ -11290,7 +11847,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11290
11847
|
} | undefined;
|
|
11291
11848
|
Input?: {
|
|
11292
11849
|
peers?: {
|
|
11293
|
-
|
|
11850
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
11851
|
+
height: string;
|
|
11852
|
+
width: string;
|
|
11853
|
+
borderRadius: string;
|
|
11854
|
+
color: string;
|
|
11855
|
+
colorHover: string;
|
|
11856
|
+
railInsetHorizontalBottom: string;
|
|
11857
|
+
railInsetHorizontalTop: string;
|
|
11858
|
+
railInsetVerticalRight: string;
|
|
11859
|
+
railInsetVerticalLeft: string;
|
|
11860
|
+
railColor: string;
|
|
11861
|
+
}, any>> | undefined;
|
|
11294
11862
|
} | undefined;
|
|
11295
11863
|
} | undefined;
|
|
11296
11864
|
};
|
|
@@ -11690,7 +12258,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11690
12258
|
paddingMedium: string;
|
|
11691
12259
|
paddingLarge: string;
|
|
11692
12260
|
clearSize: string;
|
|
11693
|
-
},
|
|
12261
|
+
}, {
|
|
12262
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12263
|
+
height: string;
|
|
12264
|
+
width: string;
|
|
12265
|
+
borderRadius: string;
|
|
12266
|
+
color: string;
|
|
12267
|
+
colorHover: string;
|
|
12268
|
+
railInsetHorizontalBottom: string;
|
|
12269
|
+
railInsetHorizontalTop: string;
|
|
12270
|
+
railInsetVerticalRight: string;
|
|
12271
|
+
railInsetVerticalLeft: string;
|
|
12272
|
+
railColor: string;
|
|
12273
|
+
}, any>;
|
|
12274
|
+
}>;
|
|
11694
12275
|
}>>;
|
|
11695
12276
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
11696
12277
|
panelColor: string;
|
|
@@ -11986,7 +12567,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11986
12567
|
paddingMedium: string;
|
|
11987
12568
|
paddingLarge: string;
|
|
11988
12569
|
clearSize: string;
|
|
11989
|
-
},
|
|
12570
|
+
}, {
|
|
12571
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12572
|
+
height: string;
|
|
12573
|
+
width: string;
|
|
12574
|
+
borderRadius: string;
|
|
12575
|
+
color: string;
|
|
12576
|
+
colorHover: string;
|
|
12577
|
+
railInsetHorizontalBottom: string;
|
|
12578
|
+
railInsetHorizontalTop: string;
|
|
12579
|
+
railInsetVerticalRight: string;
|
|
12580
|
+
railInsetVerticalLeft: string;
|
|
12581
|
+
railColor: string;
|
|
12582
|
+
}, any>;
|
|
12583
|
+
}>;
|
|
11990
12584
|
}>>>;
|
|
11991
12585
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
11992
12586
|
panelColor: string;
|
|
@@ -12282,21 +12876,34 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12282
12876
|
paddingMedium: string;
|
|
12283
12877
|
paddingLarge: string;
|
|
12284
12878
|
clearSize: string;
|
|
12285
|
-
},
|
|
12879
|
+
}, {
|
|
12880
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12881
|
+
height: string;
|
|
12882
|
+
width: string;
|
|
12883
|
+
borderRadius: string;
|
|
12884
|
+
color: string;
|
|
12885
|
+
colorHover: string;
|
|
12886
|
+
railInsetHorizontalBottom: string;
|
|
12887
|
+
railInsetHorizontalTop: string;
|
|
12888
|
+
railInsetVerticalRight: string;
|
|
12889
|
+
railInsetVerticalLeft: string;
|
|
12890
|
+
railColor: string;
|
|
12891
|
+
}, any>;
|
|
12892
|
+
}>;
|
|
12286
12893
|
}>>>;
|
|
12287
12894
|
}>> & Readonly<{}>, {
|
|
12288
12895
|
to: string | boolean | HTMLElement;
|
|
12289
12896
|
disabled: boolean | undefined;
|
|
12290
12897
|
show: boolean | undefined;
|
|
12291
12898
|
format: string;
|
|
12292
|
-
bordered: boolean | undefined;
|
|
12293
12899
|
showIcon: boolean;
|
|
12294
|
-
|
|
12900
|
+
bordered: boolean | undefined;
|
|
12295
12901
|
clearable: boolean;
|
|
12296
12902
|
defaultValue: number | null;
|
|
12297
|
-
|
|
12298
|
-
use12Hours: boolean;
|
|
12903
|
+
placement: PopoverPlacement;
|
|
12299
12904
|
inputReadonly: boolean;
|
|
12905
|
+
use12Hours: boolean;
|
|
12906
|
+
stateful: boolean;
|
|
12300
12907
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
12301
12908
|
NSwitch: DefineComponent<ExtractPropTypes<{
|
|
12302
12909
|
readonly size: {
|
|
@@ -12739,7 +13346,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12739
13346
|
paddingMedium: string;
|
|
12740
13347
|
paddingLarge: string;
|
|
12741
13348
|
clearSize: string;
|
|
12742
|
-
},
|
|
13349
|
+
}, {
|
|
13350
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13351
|
+
height: string;
|
|
13352
|
+
width: string;
|
|
13353
|
+
borderRadius: string;
|
|
13354
|
+
color: string;
|
|
13355
|
+
colorHover: string;
|
|
13356
|
+
railInsetHorizontalBottom: string;
|
|
13357
|
+
railInsetHorizontalTop: string;
|
|
13358
|
+
railInsetVerticalRight: string;
|
|
13359
|
+
railInsetVerticalLeft: string;
|
|
13360
|
+
railColor: string;
|
|
13361
|
+
}, any>;
|
|
13362
|
+
}>;
|
|
12743
13363
|
Button: Theme<"Button", {
|
|
12744
13364
|
heightTiny: string;
|
|
12745
13365
|
heightSmall: string;
|
|
@@ -13021,7 +13641,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13021
13641
|
paddingMedium: string;
|
|
13022
13642
|
paddingLarge: string;
|
|
13023
13643
|
clearSize: string;
|
|
13024
|
-
},
|
|
13644
|
+
}, {
|
|
13645
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13646
|
+
height: string;
|
|
13647
|
+
width: string;
|
|
13648
|
+
borderRadius: string;
|
|
13649
|
+
color: string;
|
|
13650
|
+
colorHover: string;
|
|
13651
|
+
railInsetHorizontalBottom: string;
|
|
13652
|
+
railInsetHorizontalTop: string;
|
|
13653
|
+
railInsetVerticalRight: string;
|
|
13654
|
+
railInsetVerticalLeft: string;
|
|
13655
|
+
railColor: string;
|
|
13656
|
+
}, any>;
|
|
13657
|
+
}>;
|
|
13025
13658
|
Button: Theme<"Button", {
|
|
13026
13659
|
heightTiny: string;
|
|
13027
13660
|
heightSmall: string;
|
|
@@ -13303,19 +13936,32 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13303
13936
|
paddingMedium: string;
|
|
13304
13937
|
paddingLarge: string;
|
|
13305
13938
|
clearSize: string;
|
|
13306
|
-
},
|
|
13307
|
-
|
|
13308
|
-
|
|
13309
|
-
|
|
13310
|
-
|
|
13311
|
-
|
|
13312
|
-
|
|
13313
|
-
|
|
13314
|
-
|
|
13315
|
-
|
|
13316
|
-
|
|
13317
|
-
|
|
13318
|
-
|
|
13939
|
+
}, {
|
|
13940
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13941
|
+
height: string;
|
|
13942
|
+
width: string;
|
|
13943
|
+
borderRadius: string;
|
|
13944
|
+
color: string;
|
|
13945
|
+
colorHover: string;
|
|
13946
|
+
railInsetHorizontalBottom: string;
|
|
13947
|
+
railInsetHorizontalTop: string;
|
|
13948
|
+
railInsetVerticalRight: string;
|
|
13949
|
+
railInsetVerticalLeft: string;
|
|
13950
|
+
railColor: string;
|
|
13951
|
+
}, any>;
|
|
13952
|
+
}>;
|
|
13953
|
+
Button: Theme<"Button", {
|
|
13954
|
+
heightTiny: string;
|
|
13955
|
+
heightSmall: string;
|
|
13956
|
+
heightMedium: string;
|
|
13957
|
+
heightLarge: string;
|
|
13958
|
+
borderRadiusTiny: string;
|
|
13959
|
+
borderRadiusSmall: string;
|
|
13960
|
+
borderRadiusMedium: string;
|
|
13961
|
+
borderRadiusLarge: string;
|
|
13962
|
+
fontSizeTiny: string;
|
|
13963
|
+
fontSizeSmall: string;
|
|
13964
|
+
fontSizeMedium: string;
|
|
13319
13965
|
fontSizeLarge: string;
|
|
13320
13966
|
opacityDisabled: string;
|
|
13321
13967
|
colorOpacitySecondary: string;
|
|
@@ -13657,7 +14303,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13657
14303
|
paddingMedium: string;
|
|
13658
14304
|
paddingLarge: string;
|
|
13659
14305
|
clearSize: string;
|
|
13660
|
-
},
|
|
14306
|
+
}, {
|
|
14307
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14308
|
+
height: string;
|
|
14309
|
+
width: string;
|
|
14310
|
+
borderRadius: string;
|
|
14311
|
+
color: string;
|
|
14312
|
+
colorHover: string;
|
|
14313
|
+
railInsetHorizontalBottom: string;
|
|
14314
|
+
railInsetHorizontalTop: string;
|
|
14315
|
+
railInsetVerticalRight: string;
|
|
14316
|
+
railInsetVerticalLeft: string;
|
|
14317
|
+
railColor: string;
|
|
14318
|
+
}, any>;
|
|
14319
|
+
}>;
|
|
13661
14320
|
Button: Theme<"Button", {
|
|
13662
14321
|
heightTiny: string;
|
|
13663
14322
|
heightSmall: string;
|
|
@@ -13939,7 +14598,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13939
14598
|
paddingMedium: string;
|
|
13940
14599
|
paddingLarge: string;
|
|
13941
14600
|
clearSize: string;
|
|
13942
|
-
},
|
|
14601
|
+
}, {
|
|
14602
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14603
|
+
height: string;
|
|
14604
|
+
width: string;
|
|
14605
|
+
borderRadius: string;
|
|
14606
|
+
color: string;
|
|
14607
|
+
colorHover: string;
|
|
14608
|
+
railInsetHorizontalBottom: string;
|
|
14609
|
+
railInsetHorizontalTop: string;
|
|
14610
|
+
railInsetVerticalRight: string;
|
|
14611
|
+
railInsetVerticalLeft: string;
|
|
14612
|
+
railColor: string;
|
|
14613
|
+
}, any>;
|
|
14614
|
+
}>;
|
|
13943
14615
|
Button: Theme<"Button", {
|
|
13944
14616
|
heightTiny: string;
|
|
13945
14617
|
heightSmall: string;
|
|
@@ -14221,7 +14893,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14221
14893
|
paddingMedium: string;
|
|
14222
14894
|
paddingLarge: string;
|
|
14223
14895
|
clearSize: string;
|
|
14224
|
-
},
|
|
14896
|
+
}, {
|
|
14897
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14898
|
+
height: string;
|
|
14899
|
+
width: string;
|
|
14900
|
+
borderRadius: string;
|
|
14901
|
+
color: string;
|
|
14902
|
+
colorHover: string;
|
|
14903
|
+
railInsetHorizontalBottom: string;
|
|
14904
|
+
railInsetHorizontalTop: string;
|
|
14905
|
+
railInsetVerticalRight: string;
|
|
14906
|
+
railInsetVerticalLeft: string;
|
|
14907
|
+
railColor: string;
|
|
14908
|
+
}, any>;
|
|
14909
|
+
}>;
|
|
14225
14910
|
Button: Theme<"Button", {
|
|
14226
14911
|
heightTiny: string;
|
|
14227
14912
|
heightSmall: string;
|
|
@@ -14433,10 +15118,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14433
15118
|
readonly show: boolean | undefined;
|
|
14434
15119
|
readonly placement: PopoverPlacement;
|
|
14435
15120
|
readonly defaultShow: boolean;
|
|
14436
|
-
readonly actions: ActionType[];
|
|
14437
|
-
readonly showAlpha: boolean;
|
|
14438
15121
|
readonly modes: ColorPickerMode[];
|
|
15122
|
+
readonly showAlpha: boolean;
|
|
14439
15123
|
readonly showPreview: boolean;
|
|
15124
|
+
readonly actions: ActionType[];
|
|
14440
15125
|
}, SlotsType<ColorPickerSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14441
15126
|
NCheckbox: DefineComponent<ExtractPropTypes<{
|
|
14442
15127
|
size: PropType<"small" | "medium" | "large">;
|
|
@@ -15082,7 +15767,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15082
15767
|
arrowOffsetVertical: string;
|
|
15083
15768
|
arrowHeight: string;
|
|
15084
15769
|
padding: string;
|
|
15085
|
-
},
|
|
15770
|
+
}, {
|
|
15771
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
15772
|
+
height: string;
|
|
15773
|
+
width: string;
|
|
15774
|
+
borderRadius: string;
|
|
15775
|
+
color: string;
|
|
15776
|
+
colorHover: string;
|
|
15777
|
+
railInsetHorizontalBottom: string;
|
|
15778
|
+
railInsetHorizontalTop: string;
|
|
15779
|
+
railInsetVerticalRight: string;
|
|
15780
|
+
railInsetVerticalLeft: string;
|
|
15781
|
+
railColor: string;
|
|
15782
|
+
}, any>;
|
|
15783
|
+
}>;
|
|
15086
15784
|
}>;
|
|
15087
15785
|
Scrollbar: Theme<"Scrollbar", {
|
|
15088
15786
|
height: string;
|
|
@@ -15294,7 +15992,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15294
15992
|
arrowOffsetVertical: string;
|
|
15295
15993
|
arrowHeight: string;
|
|
15296
15994
|
padding: string;
|
|
15297
|
-
},
|
|
15995
|
+
}, {
|
|
15996
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
15997
|
+
height: string;
|
|
15998
|
+
width: string;
|
|
15999
|
+
borderRadius: string;
|
|
16000
|
+
color: string;
|
|
16001
|
+
colorHover: string;
|
|
16002
|
+
railInsetHorizontalBottom: string;
|
|
16003
|
+
railInsetHorizontalTop: string;
|
|
16004
|
+
railInsetVerticalRight: string;
|
|
16005
|
+
railInsetVerticalLeft: string;
|
|
16006
|
+
railColor: string;
|
|
16007
|
+
}, any>;
|
|
16008
|
+
}>;
|
|
15298
16009
|
}>;
|
|
15299
16010
|
Scrollbar: Theme<"Scrollbar", {
|
|
15300
16011
|
height: string;
|
|
@@ -15506,7 +16217,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15506
16217
|
arrowOffsetVertical: string;
|
|
15507
16218
|
arrowHeight: string;
|
|
15508
16219
|
padding: string;
|
|
15509
|
-
},
|
|
16220
|
+
}, {
|
|
16221
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16222
|
+
height: string;
|
|
16223
|
+
width: string;
|
|
16224
|
+
borderRadius: string;
|
|
16225
|
+
color: string;
|
|
16226
|
+
colorHover: string;
|
|
16227
|
+
railInsetHorizontalBottom: string;
|
|
16228
|
+
railInsetHorizontalTop: string;
|
|
16229
|
+
railInsetVerticalRight: string;
|
|
16230
|
+
railInsetVerticalLeft: string;
|
|
16231
|
+
railColor: string;
|
|
16232
|
+
}, any>;
|
|
16233
|
+
}>;
|
|
15510
16234
|
}>;
|
|
15511
16235
|
Scrollbar: Theme<"Scrollbar", {
|
|
15512
16236
|
height: string;
|
|
@@ -15802,7 +16526,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15802
16526
|
arrowOffsetVertical: string;
|
|
15803
16527
|
arrowHeight: string;
|
|
15804
16528
|
padding: string;
|
|
15805
|
-
},
|
|
16529
|
+
}, {
|
|
16530
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16531
|
+
height: string;
|
|
16532
|
+
width: string;
|
|
16533
|
+
borderRadius: string;
|
|
16534
|
+
color: string;
|
|
16535
|
+
colorHover: string;
|
|
16536
|
+
railInsetHorizontalBottom: string;
|
|
16537
|
+
railInsetHorizontalTop: string;
|
|
16538
|
+
railInsetVerticalRight: string;
|
|
16539
|
+
railInsetVerticalLeft: string;
|
|
16540
|
+
railColor: string;
|
|
16541
|
+
}, any>;
|
|
16542
|
+
}>;
|
|
15806
16543
|
}>;
|
|
15807
16544
|
Scrollbar: Theme<"Scrollbar", {
|
|
15808
16545
|
height: string;
|
|
@@ -15909,7 +16646,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15909
16646
|
arrowOffsetVertical: string;
|
|
15910
16647
|
arrowHeight: string;
|
|
15911
16648
|
padding: string;
|
|
15912
|
-
},
|
|
16649
|
+
}, {
|
|
16650
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16651
|
+
height: string;
|
|
16652
|
+
width: string;
|
|
16653
|
+
borderRadius: string;
|
|
16654
|
+
color: string;
|
|
16655
|
+
colorHover: string;
|
|
16656
|
+
railInsetHorizontalBottom: string;
|
|
16657
|
+
railInsetHorizontalTop: string;
|
|
16658
|
+
railInsetVerticalRight: string;
|
|
16659
|
+
railInsetVerticalLeft: string;
|
|
16660
|
+
railColor: string;
|
|
16661
|
+
}, any>;
|
|
16662
|
+
}>> | undefined;
|
|
15913
16663
|
} | undefined;
|
|
15914
16664
|
} | undefined;
|
|
15915
16665
|
Scrollbar?: {
|
|
@@ -16222,7 +16972,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16222
16972
|
arrowOffsetVertical: string;
|
|
16223
16973
|
arrowHeight: string;
|
|
16224
16974
|
padding: string;
|
|
16225
|
-
},
|
|
16975
|
+
}, {
|
|
16976
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16977
|
+
height: string;
|
|
16978
|
+
width: string;
|
|
16979
|
+
borderRadius: string;
|
|
16980
|
+
color: string;
|
|
16981
|
+
colorHover: string;
|
|
16982
|
+
railInsetHorizontalBottom: string;
|
|
16983
|
+
railInsetHorizontalTop: string;
|
|
16984
|
+
railInsetVerticalRight: string;
|
|
16985
|
+
railInsetVerticalLeft: string;
|
|
16986
|
+
railColor: string;
|
|
16987
|
+
}, any>;
|
|
16988
|
+
}>;
|
|
16226
16989
|
}>;
|
|
16227
16990
|
Scrollbar: Theme<"Scrollbar", {
|
|
16228
16991
|
height: string;
|
|
@@ -16434,7 +17197,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16434
17197
|
arrowOffsetVertical: string;
|
|
16435
17198
|
arrowHeight: string;
|
|
16436
17199
|
padding: string;
|
|
16437
|
-
},
|
|
17200
|
+
}, {
|
|
17201
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17202
|
+
height: string;
|
|
17203
|
+
width: string;
|
|
17204
|
+
borderRadius: string;
|
|
17205
|
+
color: string;
|
|
17206
|
+
colorHover: string;
|
|
17207
|
+
railInsetHorizontalBottom: string;
|
|
17208
|
+
railInsetHorizontalTop: string;
|
|
17209
|
+
railInsetVerticalRight: string;
|
|
17210
|
+
railInsetVerticalLeft: string;
|
|
17211
|
+
railColor: string;
|
|
17212
|
+
}, any>;
|
|
17213
|
+
}>;
|
|
16438
17214
|
}>;
|
|
16439
17215
|
Scrollbar: Theme<"Scrollbar", {
|
|
16440
17216
|
height: string;
|
|
@@ -16646,7 +17422,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16646
17422
|
arrowOffsetVertical: string;
|
|
16647
17423
|
arrowHeight: string;
|
|
16648
17424
|
padding: string;
|
|
16649
|
-
},
|
|
17425
|
+
}, {
|
|
17426
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17427
|
+
height: string;
|
|
17428
|
+
width: string;
|
|
17429
|
+
borderRadius: string;
|
|
17430
|
+
color: string;
|
|
17431
|
+
colorHover: string;
|
|
17432
|
+
railInsetHorizontalBottom: string;
|
|
17433
|
+
railInsetHorizontalTop: string;
|
|
17434
|
+
railInsetVerticalRight: string;
|
|
17435
|
+
railInsetVerticalLeft: string;
|
|
17436
|
+
railColor: string;
|
|
17437
|
+
}, any>;
|
|
17438
|
+
}>;
|
|
16650
17439
|
}>;
|
|
16651
17440
|
Scrollbar: Theme<"Scrollbar", {
|
|
16652
17441
|
height: string;
|
|
@@ -16714,23 +17503,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16714
17503
|
readonly separator: string;
|
|
16715
17504
|
readonly multiple: boolean;
|
|
16716
17505
|
readonly bordered: boolean | undefined;
|
|
17506
|
+
readonly clearable: boolean;
|
|
17507
|
+
readonly defaultValue: Value | null;
|
|
16717
17508
|
readonly placement: PopoverPlacement;
|
|
16718
|
-
readonly
|
|
16719
|
-
readonly virtualScroll: boolean;
|
|
16720
|
-
readonly valueField: string;
|
|
17509
|
+
readonly allowCheckingNotLoaded: boolean;
|
|
16721
17510
|
readonly filterable: boolean;
|
|
16722
|
-
readonly
|
|
17511
|
+
readonly disabledField: string;
|
|
16723
17512
|
readonly expandTrigger: ExpandTrigger;
|
|
16724
17513
|
readonly clearFilterAfterSelect: boolean;
|
|
16725
|
-
readonly defaultValue: Value | null;
|
|
16726
17514
|
readonly remote: boolean;
|
|
16727
|
-
readonly childrenField: string;
|
|
16728
|
-
readonly allowCheckingNotLoaded: boolean;
|
|
16729
17515
|
readonly cascade: boolean;
|
|
16730
|
-
readonly checkStrategy: CheckStrategy;
|
|
16731
|
-
readonly disabledField: string;
|
|
16732
17516
|
readonly leafOnly: boolean;
|
|
16733
17517
|
readonly showPath: boolean;
|
|
17518
|
+
readonly virtualScroll: boolean;
|
|
17519
|
+
readonly checkStrategy: CheckStrategy;
|
|
17520
|
+
readonly valueField: string;
|
|
17521
|
+
readonly labelField: string;
|
|
17522
|
+
readonly childrenField: string;
|
|
16734
17523
|
}, SlotsType<CascaderSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
16735
17524
|
NTooltip: DefineComponent<ExtractPropTypes<{
|
|
16736
17525
|
theme: PropType<Theme<"Tooltip", {
|
|
@@ -16753,7 +17542,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16753
17542
|
arrowOffsetVertical: string;
|
|
16754
17543
|
arrowHeight: string;
|
|
16755
17544
|
padding: string;
|
|
16756
|
-
},
|
|
17545
|
+
}, {
|
|
17546
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17547
|
+
height: string;
|
|
17548
|
+
width: string;
|
|
17549
|
+
borderRadius: string;
|
|
17550
|
+
color: string;
|
|
17551
|
+
colorHover: string;
|
|
17552
|
+
railInsetHorizontalBottom: string;
|
|
17553
|
+
railInsetHorizontalTop: string;
|
|
17554
|
+
railInsetVerticalRight: string;
|
|
17555
|
+
railInsetVerticalLeft: string;
|
|
17556
|
+
railColor: string;
|
|
17557
|
+
}, any>;
|
|
17558
|
+
}>;
|
|
16757
17559
|
}>>;
|
|
16758
17560
|
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
16759
17561
|
borderRadius: string;
|
|
@@ -16775,7 +17577,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16775
17577
|
arrowOffsetVertical: string;
|
|
16776
17578
|
arrowHeight: string;
|
|
16777
17579
|
padding: string;
|
|
16778
|
-
},
|
|
17580
|
+
}, {
|
|
17581
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17582
|
+
height: string;
|
|
17583
|
+
width: string;
|
|
17584
|
+
borderRadius: string;
|
|
17585
|
+
color: string;
|
|
17586
|
+
colorHover: string;
|
|
17587
|
+
railInsetHorizontalBottom: string;
|
|
17588
|
+
railInsetHorizontalTop: string;
|
|
17589
|
+
railInsetVerticalRight: string;
|
|
17590
|
+
railInsetVerticalLeft: string;
|
|
17591
|
+
railColor: string;
|
|
17592
|
+
}, any>;
|
|
17593
|
+
}>;
|
|
16779
17594
|
}>>>;
|
|
16780
17595
|
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
16781
17596
|
borderRadius: string;
|
|
@@ -16797,7 +17612,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16797
17612
|
arrowOffsetVertical: string;
|
|
16798
17613
|
arrowHeight: string;
|
|
16799
17614
|
padding: string;
|
|
16800
|
-
},
|
|
17615
|
+
}, {
|
|
17616
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17617
|
+
height: string;
|
|
17618
|
+
width: string;
|
|
17619
|
+
borderRadius: string;
|
|
17620
|
+
color: string;
|
|
17621
|
+
colorHover: string;
|
|
17622
|
+
railInsetHorizontalBottom: string;
|
|
17623
|
+
railInsetHorizontalTop: string;
|
|
17624
|
+
railInsetVerticalRight: string;
|
|
17625
|
+
railInsetVerticalLeft: string;
|
|
17626
|
+
railColor: string;
|
|
17627
|
+
}, any>;
|
|
17628
|
+
}>;
|
|
16801
17629
|
}>>>;
|
|
16802
17630
|
show: {
|
|
16803
17631
|
type: PropType<boolean | undefined>;
|
|
@@ -16822,7 +17650,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16822
17650
|
};
|
|
16823
17651
|
raw: BooleanConstructor;
|
|
16824
17652
|
placement: {
|
|
16825
|
-
type: PropType<
|
|
17653
|
+
type: PropType<FollowerPlacement>;
|
|
16826
17654
|
default: string;
|
|
16827
17655
|
};
|
|
16828
17656
|
x: NumberConstructor;
|
|
@@ -16920,12 +17748,36 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16920
17748
|
arrowOffsetVertical: string;
|
|
16921
17749
|
arrowHeight: string;
|
|
16922
17750
|
padding: string;
|
|
16923
|
-
},
|
|
17751
|
+
}, {
|
|
17752
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17753
|
+
height: string;
|
|
17754
|
+
width: string;
|
|
17755
|
+
borderRadius: string;
|
|
17756
|
+
color: string;
|
|
17757
|
+
colorHover: string;
|
|
17758
|
+
railInsetHorizontalBottom: string;
|
|
17759
|
+
railInsetHorizontalTop: string;
|
|
17760
|
+
railInsetVerticalRight: string;
|
|
17761
|
+
railInsetVerticalLeft: string;
|
|
17762
|
+
railColor: string;
|
|
17763
|
+
}, any>;
|
|
17764
|
+
}>;
|
|
16924
17765
|
};
|
|
16925
17766
|
peerOverrides: {
|
|
16926
17767
|
Popover?: {
|
|
16927
17768
|
peers?: {
|
|
16928
|
-
|
|
17769
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
17770
|
+
height: string;
|
|
17771
|
+
width: string;
|
|
17772
|
+
borderRadius: string;
|
|
17773
|
+
color: string;
|
|
17774
|
+
colorHover: string;
|
|
17775
|
+
railInsetHorizontalBottom: string;
|
|
17776
|
+
railInsetHorizontalTop: string;
|
|
17777
|
+
railInsetVerticalRight: string;
|
|
17778
|
+
railInsetVerticalLeft: string;
|
|
17779
|
+
railColor: string;
|
|
17780
|
+
}, any>> | undefined;
|
|
16929
17781
|
} | undefined;
|
|
16930
17782
|
} | undefined;
|
|
16931
17783
|
};
|
|
@@ -16960,7 +17812,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16960
17812
|
arrowOffsetVertical: string;
|
|
16961
17813
|
arrowHeight: string;
|
|
16962
17814
|
padding: string;
|
|
16963
|
-
},
|
|
17815
|
+
}, {
|
|
17816
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17817
|
+
height: string;
|
|
17818
|
+
width: string;
|
|
17819
|
+
borderRadius: string;
|
|
17820
|
+
color: string;
|
|
17821
|
+
colorHover: string;
|
|
17822
|
+
railInsetHorizontalBottom: string;
|
|
17823
|
+
railInsetHorizontalTop: string;
|
|
17824
|
+
railInsetVerticalRight: string;
|
|
17825
|
+
railInsetVerticalLeft: string;
|
|
17826
|
+
railColor: string;
|
|
17827
|
+
}, any>;
|
|
17828
|
+
}>;
|
|
16964
17829
|
}>>;
|
|
16965
17830
|
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
16966
17831
|
borderRadius: string;
|
|
@@ -16982,7 +17847,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16982
17847
|
arrowOffsetVertical: string;
|
|
16983
17848
|
arrowHeight: string;
|
|
16984
17849
|
padding: string;
|
|
16985
|
-
},
|
|
17850
|
+
}, {
|
|
17851
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17852
|
+
height: string;
|
|
17853
|
+
width: string;
|
|
17854
|
+
borderRadius: string;
|
|
17855
|
+
color: string;
|
|
17856
|
+
colorHover: string;
|
|
17857
|
+
railInsetHorizontalBottom: string;
|
|
17858
|
+
railInsetHorizontalTop: string;
|
|
17859
|
+
railInsetVerticalRight: string;
|
|
17860
|
+
railInsetVerticalLeft: string;
|
|
17861
|
+
railColor: string;
|
|
17862
|
+
}, any>;
|
|
17863
|
+
}>;
|
|
16986
17864
|
}>>>;
|
|
16987
17865
|
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
16988
17866
|
borderRadius: string;
|
|
@@ -17004,7 +17882,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17004
17882
|
arrowOffsetVertical: string;
|
|
17005
17883
|
arrowHeight: string;
|
|
17006
17884
|
padding: string;
|
|
17007
|
-
},
|
|
17885
|
+
}, {
|
|
17886
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17887
|
+
height: string;
|
|
17888
|
+
width: string;
|
|
17889
|
+
borderRadius: string;
|
|
17890
|
+
color: string;
|
|
17891
|
+
colorHover: string;
|
|
17892
|
+
railInsetHorizontalBottom: string;
|
|
17893
|
+
railInsetHorizontalTop: string;
|
|
17894
|
+
railInsetVerticalRight: string;
|
|
17895
|
+
railInsetVerticalLeft: string;
|
|
17896
|
+
railColor: string;
|
|
17897
|
+
}, any>;
|
|
17898
|
+
}>;
|
|
17008
17899
|
}>>>;
|
|
17009
17900
|
show: {
|
|
17010
17901
|
type: PropType<boolean | undefined>;
|
|
@@ -17029,7 +17920,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17029
17920
|
};
|
|
17030
17921
|
raw: BooleanConstructor;
|
|
17031
17922
|
placement: {
|
|
17032
|
-
type: PropType<
|
|
17923
|
+
type: PropType<FollowerPlacement>;
|
|
17033
17924
|
default: string;
|
|
17034
17925
|
};
|
|
17035
17926
|
x: NumberConstructor;
|
|
@@ -17104,23 +17995,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17104
17995
|
width: number | "trigger";
|
|
17105
17996
|
duration: number;
|
|
17106
17997
|
raw: boolean;
|
|
17107
|
-
placement:
|
|
17108
|
-
overlap: boolean;
|
|
17109
|
-
scrollable: boolean;
|
|
17110
|
-
trigger: PopoverTrigger;
|
|
17998
|
+
placement: FollowerPlacement;
|
|
17111
17999
|
showArrow: boolean;
|
|
18000
|
+
trigger: PopoverTrigger;
|
|
18001
|
+
arrow: boolean | undefined;
|
|
18002
|
+
defaultShow: boolean;
|
|
17112
18003
|
delay: number;
|
|
17113
18004
|
arrowPointToCenter: boolean;
|
|
17114
18005
|
displayDirective: "show" | "if";
|
|
18006
|
+
animated: boolean;
|
|
18007
|
+
overlap: boolean;
|
|
17115
18008
|
keepAliveOnHover: boolean;
|
|
18009
|
+
scrollable: boolean;
|
|
17116
18010
|
internalDeactivateImmediately: boolean;
|
|
17117
|
-
animated: boolean;
|
|
17118
|
-
internalTrapFocus: boolean;
|
|
17119
|
-
defaultShow: boolean;
|
|
17120
18011
|
internalSyncTargetWithParent: boolean;
|
|
17121
18012
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
18013
|
+
internalTrapFocus: boolean;
|
|
17122
18014
|
internalExtraClass: string[];
|
|
17123
|
-
arrow: boolean | undefined;
|
|
17124
18015
|
}, SlotsType<TooltipSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17125
18016
|
NDropdown: DefineComponent<ExtractPropTypes<{
|
|
17126
18017
|
readonly theme: PropType< Theme<"Dropdown", {
|
|
@@ -17191,7 +18082,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17191
18082
|
arrowOffsetVertical: string;
|
|
17192
18083
|
arrowHeight: string;
|
|
17193
18084
|
padding: string;
|
|
17194
|
-
},
|
|
18085
|
+
}, {
|
|
18086
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18087
|
+
height: string;
|
|
18088
|
+
width: string;
|
|
18089
|
+
borderRadius: string;
|
|
18090
|
+
color: string;
|
|
18091
|
+
colorHover: string;
|
|
18092
|
+
railInsetHorizontalBottom: string;
|
|
18093
|
+
railInsetHorizontalTop: string;
|
|
18094
|
+
railInsetVerticalRight: string;
|
|
18095
|
+
railInsetVerticalLeft: string;
|
|
18096
|
+
railColor: string;
|
|
18097
|
+
}, any>;
|
|
18098
|
+
}>;
|
|
17195
18099
|
}>>;
|
|
17196
18100
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
17197
18101
|
optionHeightSmall: string;
|
|
@@ -17261,7 +18165,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17261
18165
|
arrowOffsetVertical: string;
|
|
17262
18166
|
arrowHeight: string;
|
|
17263
18167
|
padding: string;
|
|
17264
|
-
},
|
|
18168
|
+
}, {
|
|
18169
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18170
|
+
height: string;
|
|
18171
|
+
width: string;
|
|
18172
|
+
borderRadius: string;
|
|
18173
|
+
color: string;
|
|
18174
|
+
colorHover: string;
|
|
18175
|
+
railInsetHorizontalBottom: string;
|
|
18176
|
+
railInsetHorizontalTop: string;
|
|
18177
|
+
railInsetVerticalRight: string;
|
|
18178
|
+
railInsetVerticalLeft: string;
|
|
18179
|
+
railColor: string;
|
|
18180
|
+
}, any>;
|
|
18181
|
+
}>;
|
|
17265
18182
|
}>>>;
|
|
17266
18183
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
17267
18184
|
optionHeightSmall: string;
|
|
@@ -17331,7 +18248,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17331
18248
|
arrowOffsetVertical: string;
|
|
17332
18249
|
arrowHeight: string;
|
|
17333
18250
|
padding: string;
|
|
17334
|
-
},
|
|
18251
|
+
}, {
|
|
18252
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18253
|
+
height: string;
|
|
18254
|
+
width: string;
|
|
18255
|
+
borderRadius: string;
|
|
18256
|
+
color: string;
|
|
18257
|
+
colorHover: string;
|
|
18258
|
+
railInsetHorizontalBottom: string;
|
|
18259
|
+
railInsetHorizontalTop: string;
|
|
18260
|
+
railInsetVerticalRight: string;
|
|
18261
|
+
railInsetVerticalLeft: string;
|
|
18262
|
+
railColor: string;
|
|
18263
|
+
}, any>;
|
|
18264
|
+
}>;
|
|
17335
18265
|
}>>>;
|
|
17336
18266
|
readonly animated: {
|
|
17337
18267
|
readonly type: BooleanConstructor;
|
|
@@ -17525,12 +18455,36 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17525
18455
|
arrowOffsetVertical: string;
|
|
17526
18456
|
arrowHeight: string;
|
|
17527
18457
|
padding: string;
|
|
17528
|
-
},
|
|
18458
|
+
}, {
|
|
18459
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18460
|
+
height: string;
|
|
18461
|
+
width: string;
|
|
18462
|
+
borderRadius: string;
|
|
18463
|
+
color: string;
|
|
18464
|
+
colorHover: string;
|
|
18465
|
+
railInsetHorizontalBottom: string;
|
|
18466
|
+
railInsetHorizontalTop: string;
|
|
18467
|
+
railInsetVerticalRight: string;
|
|
18468
|
+
railInsetVerticalLeft: string;
|
|
18469
|
+
railColor: string;
|
|
18470
|
+
}, any>;
|
|
18471
|
+
}>;
|
|
17529
18472
|
};
|
|
17530
18473
|
peerOverrides: {
|
|
17531
18474
|
Popover?: {
|
|
17532
18475
|
peers?: {
|
|
17533
|
-
|
|
18476
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
18477
|
+
height: string;
|
|
18478
|
+
width: string;
|
|
18479
|
+
borderRadius: string;
|
|
18480
|
+
color: string;
|
|
18481
|
+
colorHover: string;
|
|
18482
|
+
railInsetHorizontalBottom: string;
|
|
18483
|
+
railInsetHorizontalTop: string;
|
|
18484
|
+
railInsetVerticalRight: string;
|
|
18485
|
+
railInsetVerticalLeft: string;
|
|
18486
|
+
railColor: string;
|
|
18487
|
+
}, any>> | undefined;
|
|
17534
18488
|
} | undefined;
|
|
17535
18489
|
} | undefined;
|
|
17536
18490
|
};
|
|
@@ -17611,7 +18565,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17611
18565
|
arrowOffsetVertical: string;
|
|
17612
18566
|
arrowHeight: string;
|
|
17613
18567
|
padding: string;
|
|
17614
|
-
},
|
|
18568
|
+
}, {
|
|
18569
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18570
|
+
height: string;
|
|
18571
|
+
width: string;
|
|
18572
|
+
borderRadius: string;
|
|
18573
|
+
color: string;
|
|
18574
|
+
colorHover: string;
|
|
18575
|
+
railInsetHorizontalBottom: string;
|
|
18576
|
+
railInsetHorizontalTop: string;
|
|
18577
|
+
railInsetVerticalRight: string;
|
|
18578
|
+
railInsetVerticalLeft: string;
|
|
18579
|
+
railColor: string;
|
|
18580
|
+
}, any>;
|
|
18581
|
+
}>;
|
|
17615
18582
|
}>>;
|
|
17616
18583
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
17617
18584
|
optionHeightSmall: string;
|
|
@@ -17681,7 +18648,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17681
18648
|
arrowOffsetVertical: string;
|
|
17682
18649
|
arrowHeight: string;
|
|
17683
18650
|
padding: string;
|
|
17684
|
-
},
|
|
18651
|
+
}, {
|
|
18652
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18653
|
+
height: string;
|
|
18654
|
+
width: string;
|
|
18655
|
+
borderRadius: string;
|
|
18656
|
+
color: string;
|
|
18657
|
+
colorHover: string;
|
|
18658
|
+
railInsetHorizontalBottom: string;
|
|
18659
|
+
railInsetHorizontalTop: string;
|
|
18660
|
+
railInsetVerticalRight: string;
|
|
18661
|
+
railInsetVerticalLeft: string;
|
|
18662
|
+
railColor: string;
|
|
18663
|
+
}, any>;
|
|
18664
|
+
}>;
|
|
17685
18665
|
}>>>;
|
|
17686
18666
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
17687
18667
|
optionHeightSmall: string;
|
|
@@ -17751,7 +18731,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17751
18731
|
arrowOffsetVertical: string;
|
|
17752
18732
|
arrowHeight: string;
|
|
17753
18733
|
padding: string;
|
|
17754
|
-
},
|
|
18734
|
+
}, {
|
|
18735
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18736
|
+
height: string;
|
|
18737
|
+
width: string;
|
|
18738
|
+
borderRadius: string;
|
|
18739
|
+
color: string;
|
|
18740
|
+
colorHover: string;
|
|
18741
|
+
railInsetHorizontalBottom: string;
|
|
18742
|
+
railInsetHorizontalTop: string;
|
|
18743
|
+
railInsetVerticalRight: string;
|
|
18744
|
+
railInsetVerticalLeft: string;
|
|
18745
|
+
railColor: string;
|
|
18746
|
+
}, any>;
|
|
18747
|
+
}>;
|
|
17755
18748
|
}>>>;
|
|
17756
18749
|
readonly animated: {
|
|
17757
18750
|
readonly type: BooleanConstructor;
|
|
@@ -17883,27 +18876,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17883
18876
|
readonly duration: number;
|
|
17884
18877
|
readonly raw: boolean;
|
|
17885
18878
|
readonly placement: PopoverPlacement;
|
|
17886
|
-
readonly
|
|
17887
|
-
readonly keyField: string;
|
|
17888
|
-
readonly scrollable: boolean;
|
|
17889
|
-
readonly trigger: PopoverTrigger;
|
|
17890
|
-
readonly labelField: string;
|
|
18879
|
+
readonly keyboard: boolean;
|
|
17891
18880
|
readonly showArrow: boolean;
|
|
18881
|
+
readonly trigger: PopoverTrigger;
|
|
18882
|
+
readonly arrow: boolean | undefined;
|
|
18883
|
+
readonly defaultShow: boolean;
|
|
17892
18884
|
readonly delay: number;
|
|
17893
18885
|
readonly arrowPointToCenter: boolean;
|
|
17894
18886
|
readonly displayDirective: "show" | "if";
|
|
18887
|
+
readonly animated: boolean;
|
|
18888
|
+
readonly overlap: boolean;
|
|
17895
18889
|
readonly keepAliveOnHover: boolean;
|
|
18890
|
+
readonly scrollable: boolean;
|
|
17896
18891
|
readonly internalDeactivateImmediately: boolean;
|
|
17897
|
-
readonly animated: boolean;
|
|
17898
|
-
readonly internalTrapFocus: boolean;
|
|
17899
|
-
readonly defaultShow: boolean;
|
|
17900
18892
|
readonly internalSyncTargetWithParent: boolean;
|
|
17901
18893
|
readonly internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
18894
|
+
readonly internalTrapFocus: boolean;
|
|
17902
18895
|
readonly internalExtraClass: string[];
|
|
17903
|
-
readonly
|
|
17904
|
-
readonly keyboard: boolean;
|
|
18896
|
+
readonly labelField: string;
|
|
17905
18897
|
readonly childrenField: string;
|
|
17906
18898
|
readonly inverted: boolean;
|
|
18899
|
+
readonly keyField: string;
|
|
17907
18900
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17908
18901
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17909
18902
|
export default _default;
|