@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
|
@@ -8,7 +8,7 @@ import { Size, Type } from 'naive-ui/es/button/src/interface';
|
|
|
8
8
|
import { MaybeArray } from 'naive-ui/es/_utils';
|
|
9
9
|
import { BaseWaveRef, ScrollbarProps, ScrollbarInst, InternalSelectionInst } from 'naive-ui/es/_internal';
|
|
10
10
|
import { RtlItem } from 'naive-ui/es/config-provider/src/internal-interface';
|
|
11
|
-
import { ButtonSlots, DrawerPlacement, ThemeCommonVars, DrawerContentSlots, SelectOption, FormValidationStatus, InputSlots, SelectFilter, PopoverPlacement, PopoverProps, SelectRenderTag, SelectNodeProps, SelectGroupOption, SelectSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots,
|
|
11
|
+
import { ButtonSlots, DrawerPlacement, ThemeCommonVars, DrawerContentSlots, SelectOption, FormValidationStatus, 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';
|
|
12
12
|
import { VResizeObserverOnResize, FollowerInst, FollowerPlacement, VVirtualListScrollTo } from 'vueuc';
|
|
13
13
|
import { Size, OnUpdateValue } from 'naive-ui/es/input/src/interface';
|
|
14
14
|
import { IUzFormItem } from '..';
|
|
@@ -27,8 +27,6 @@ import { HSLA, RGBA } from 'seemly';
|
|
|
27
27
|
import { OnUpdateChecked } from 'naive-ui/es/checkbox/src/interface';
|
|
28
28
|
import { UseFormItem } from 'naive-ui/es/_mixins/use-form-item';
|
|
29
29
|
import { Value, ExpandTrigger, OnLoad, Filter, OnUpdateValue, SelectMenuInstance, CascaderMenuInstance, ValueAtom, Key } from 'naive-ui/es/cascader/src/interface';
|
|
30
|
-
import { PopoverTrigger } from 'naive-ui/es/popover';
|
|
31
|
-
import { Placement } from 'vueuc/lib/binder/src/interface';
|
|
32
30
|
import { TriggerEventHandlers } from 'naive-ui/es/popover/src/Popover';
|
|
33
31
|
import { OnUpdateValue, DropdownMixedOption, RenderLabel, RenderIcon, RenderOption } from 'naive-ui/es/dropdown/src/interface';
|
|
34
32
|
import { MenuRenderOption, MenuIgnoredOption } from 'naive-ui/es/menu/src/interface';
|
|
@@ -2567,10 +2565,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2567
2565
|
readonly focusable: boolean;
|
|
2568
2566
|
readonly bordered: boolean;
|
|
2569
2567
|
readonly tertiary: boolean;
|
|
2570
|
-
readonly keyboard: boolean;
|
|
2571
2568
|
readonly ghost: boolean;
|
|
2572
2569
|
readonly secondary: boolean;
|
|
2573
2570
|
readonly quaternary: boolean;
|
|
2571
|
+
readonly keyboard: boolean;
|
|
2574
2572
|
readonly iconPlacement: "left" | "right";
|
|
2575
2573
|
readonly attrType: "reset" | "submit" | "button";
|
|
2576
2574
|
readonly nativeFocusBehavior: boolean;
|
|
@@ -3034,12 +3032,12 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3034
3032
|
readonly placement: DrawerPlacement;
|
|
3035
3033
|
readonly displayDirective: "show" | "if";
|
|
3036
3034
|
readonly resizable: boolean;
|
|
3037
|
-
readonly maskClosable: boolean;
|
|
3038
|
-
readonly trapFocus: boolean;
|
|
3039
|
-
readonly closeOnEsc: boolean;
|
|
3040
3035
|
readonly blockScroll: boolean;
|
|
3041
|
-
readonly
|
|
3036
|
+
readonly closeOnEsc: boolean;
|
|
3037
|
+
readonly maskClosable: boolean;
|
|
3042
3038
|
readonly showMask: boolean | "transparent";
|
|
3039
|
+
readonly nativeScrollbar: boolean;
|
|
3040
|
+
readonly trapFocus: boolean;
|
|
3043
3041
|
readonly defaultWidth: string | number;
|
|
3044
3042
|
readonly defaultHeight: string | number;
|
|
3045
3043
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3301,10 +3299,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3301
3299
|
mergedClsPrefix: Ref<string, string>;
|
|
3302
3300
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3303
3301
|
NInputGroupLabel: DefineComponent<ExtractPropTypes<{
|
|
3304
|
-
readonly size:
|
|
3305
|
-
readonly type: PropType< Size>;
|
|
3306
|
-
readonly default: "medium";
|
|
3307
|
-
};
|
|
3302
|
+
readonly size: PropType< Size>;
|
|
3308
3303
|
readonly bordered: {
|
|
3309
3304
|
readonly type: PropType<boolean | undefined>;
|
|
3310
3305
|
readonly default: undefined;
|
|
@@ -3370,7 +3365,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3370
3365
|
paddingMedium: string;
|
|
3371
3366
|
paddingLarge: string;
|
|
3372
3367
|
clearSize: string;
|
|
3373
|
-
},
|
|
3368
|
+
}, {
|
|
3369
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3370
|
+
height: string;
|
|
3371
|
+
width: string;
|
|
3372
|
+
borderRadius: string;
|
|
3373
|
+
color: string;
|
|
3374
|
+
colorHover: string;
|
|
3375
|
+
railInsetHorizontalBottom: string;
|
|
3376
|
+
railInsetHorizontalTop: string;
|
|
3377
|
+
railInsetVerticalRight: string;
|
|
3378
|
+
railInsetVerticalLeft: string;
|
|
3379
|
+
railColor: string;
|
|
3380
|
+
}, any>;
|
|
3381
|
+
}>>;
|
|
3374
3382
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
3375
3383
|
fontWeight: string;
|
|
3376
3384
|
countTextColorDisabled: string;
|
|
@@ -3432,7 +3440,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3432
3440
|
paddingMedium: string;
|
|
3433
3441
|
paddingLarge: string;
|
|
3434
3442
|
clearSize: string;
|
|
3435
|
-
},
|
|
3443
|
+
}, {
|
|
3444
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3445
|
+
height: string;
|
|
3446
|
+
width: string;
|
|
3447
|
+
borderRadius: string;
|
|
3448
|
+
color: string;
|
|
3449
|
+
colorHover: string;
|
|
3450
|
+
railInsetHorizontalBottom: string;
|
|
3451
|
+
railInsetHorizontalTop: string;
|
|
3452
|
+
railInsetVerticalRight: string;
|
|
3453
|
+
railInsetVerticalLeft: string;
|
|
3454
|
+
railColor: string;
|
|
3455
|
+
}, any>;
|
|
3456
|
+
}>>>;
|
|
3436
3457
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
3437
3458
|
fontWeight: string;
|
|
3438
3459
|
countTextColorDisabled: string;
|
|
@@ -3494,7 +3515,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3494
3515
|
paddingMedium: string;
|
|
3495
3516
|
paddingLarge: string;
|
|
3496
3517
|
clearSize: string;
|
|
3497
|
-
},
|
|
3518
|
+
}, {
|
|
3519
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3520
|
+
height: string;
|
|
3521
|
+
width: string;
|
|
3522
|
+
borderRadius: string;
|
|
3523
|
+
color: string;
|
|
3524
|
+
colorHover: string;
|
|
3525
|
+
railInsetHorizontalBottom: string;
|
|
3526
|
+
railInsetHorizontalTop: string;
|
|
3527
|
+
railInsetVerticalRight: string;
|
|
3528
|
+
railInsetVerticalLeft: string;
|
|
3529
|
+
railColor: string;
|
|
3530
|
+
}, any>;
|
|
3531
|
+
}>>>;
|
|
3498
3532
|
}>, {
|
|
3499
3533
|
mergedClsPrefix: Ref<string, string>;
|
|
3500
3534
|
mergedBordered: ComputedRef<boolean>;
|
|
@@ -3511,10 +3545,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3511
3545
|
themeClass: Ref<string, string> | undefined;
|
|
3512
3546
|
onRender: (() => void) | undefined;
|
|
3513
3547
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
3514
|
-
readonly size:
|
|
3515
|
-
readonly type: PropType< Size>;
|
|
3516
|
-
readonly default: "medium";
|
|
3517
|
-
};
|
|
3548
|
+
readonly size: PropType< Size>;
|
|
3518
3549
|
readonly bordered: {
|
|
3519
3550
|
readonly type: PropType<boolean | undefined>;
|
|
3520
3551
|
readonly default: undefined;
|
|
@@ -3580,7 +3611,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3580
3611
|
paddingMedium: string;
|
|
3581
3612
|
paddingLarge: string;
|
|
3582
3613
|
clearSize: string;
|
|
3583
|
-
},
|
|
3614
|
+
}, {
|
|
3615
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3616
|
+
height: string;
|
|
3617
|
+
width: string;
|
|
3618
|
+
borderRadius: string;
|
|
3619
|
+
color: string;
|
|
3620
|
+
colorHover: string;
|
|
3621
|
+
railInsetHorizontalBottom: string;
|
|
3622
|
+
railInsetHorizontalTop: string;
|
|
3623
|
+
railInsetVerticalRight: string;
|
|
3624
|
+
railInsetVerticalLeft: string;
|
|
3625
|
+
railColor: string;
|
|
3626
|
+
}, any>;
|
|
3627
|
+
}>>;
|
|
3584
3628
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
3585
3629
|
fontWeight: string;
|
|
3586
3630
|
countTextColorDisabled: string;
|
|
@@ -3642,7 +3686,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3642
3686
|
paddingMedium: string;
|
|
3643
3687
|
paddingLarge: string;
|
|
3644
3688
|
clearSize: string;
|
|
3645
|
-
},
|
|
3689
|
+
}, {
|
|
3690
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3691
|
+
height: string;
|
|
3692
|
+
width: string;
|
|
3693
|
+
borderRadius: string;
|
|
3694
|
+
color: string;
|
|
3695
|
+
colorHover: string;
|
|
3696
|
+
railInsetHorizontalBottom: string;
|
|
3697
|
+
railInsetHorizontalTop: string;
|
|
3698
|
+
railInsetVerticalRight: string;
|
|
3699
|
+
railInsetVerticalLeft: string;
|
|
3700
|
+
railColor: string;
|
|
3701
|
+
}, any>;
|
|
3702
|
+
}>>>;
|
|
3646
3703
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
3647
3704
|
fontWeight: string;
|
|
3648
3705
|
countTextColorDisabled: string;
|
|
@@ -3704,9 +3761,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3704
3761
|
paddingMedium: string;
|
|
3705
3762
|
paddingLarge: string;
|
|
3706
3763
|
clearSize: string;
|
|
3707
|
-
},
|
|
3764
|
+
}, {
|
|
3765
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3766
|
+
height: string;
|
|
3767
|
+
width: string;
|
|
3768
|
+
borderRadius: string;
|
|
3769
|
+
color: string;
|
|
3770
|
+
colorHover: string;
|
|
3771
|
+
railInsetHorizontalBottom: string;
|
|
3772
|
+
railInsetHorizontalTop: string;
|
|
3773
|
+
railInsetVerticalRight: string;
|
|
3774
|
+
railInsetVerticalLeft: string;
|
|
3775
|
+
railColor: string;
|
|
3776
|
+
}, any>;
|
|
3777
|
+
}>>>;
|
|
3708
3778
|
}>> & Readonly<{}>, {
|
|
3709
|
-
readonly size: Size;
|
|
3710
3779
|
readonly bordered: boolean | undefined;
|
|
3711
3780
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3712
3781
|
Refresh: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
@@ -4016,7 +4085,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4016
4085
|
paddingMedium: string;
|
|
4017
4086
|
paddingLarge: string;
|
|
4018
4087
|
clearSize: string;
|
|
4019
|
-
},
|
|
4088
|
+
}, {
|
|
4089
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4090
|
+
height: string;
|
|
4091
|
+
width: string;
|
|
4092
|
+
borderRadius: string;
|
|
4093
|
+
color: string;
|
|
4094
|
+
colorHover: string;
|
|
4095
|
+
railInsetHorizontalBottom: string;
|
|
4096
|
+
railInsetHorizontalTop: string;
|
|
4097
|
+
railInsetVerticalRight: string;
|
|
4098
|
+
railInsetVerticalLeft: string;
|
|
4099
|
+
railColor: string;
|
|
4100
|
+
}, any>;
|
|
4101
|
+
}>>;
|
|
4020
4102
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4021
4103
|
fontWeight: string;
|
|
4022
4104
|
countTextColorDisabled: string;
|
|
@@ -4078,7 +4160,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4078
4160
|
paddingMedium: string;
|
|
4079
4161
|
paddingLarge: string;
|
|
4080
4162
|
clearSize: string;
|
|
4081
|
-
},
|
|
4163
|
+
}, {
|
|
4164
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4165
|
+
height: string;
|
|
4166
|
+
width: string;
|
|
4167
|
+
borderRadius: string;
|
|
4168
|
+
color: string;
|
|
4169
|
+
colorHover: string;
|
|
4170
|
+
railInsetHorizontalBottom: string;
|
|
4171
|
+
railInsetHorizontalTop: string;
|
|
4172
|
+
railInsetVerticalRight: string;
|
|
4173
|
+
railInsetVerticalLeft: string;
|
|
4174
|
+
railColor: string;
|
|
4175
|
+
}, any>;
|
|
4176
|
+
}>>>;
|
|
4082
4177
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4083
4178
|
fontWeight: string;
|
|
4084
4179
|
countTextColorDisabled: string;
|
|
@@ -4140,7 +4235,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4140
4235
|
paddingMedium: string;
|
|
4141
4236
|
paddingLarge: string;
|
|
4142
4237
|
clearSize: string;
|
|
4143
|
-
},
|
|
4238
|
+
}, {
|
|
4239
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4240
|
+
height: string;
|
|
4241
|
+
width: string;
|
|
4242
|
+
borderRadius: string;
|
|
4243
|
+
color: string;
|
|
4244
|
+
colorHover: string;
|
|
4245
|
+
railInsetHorizontalBottom: string;
|
|
4246
|
+
railInsetHorizontalTop: string;
|
|
4247
|
+
railInsetVerticalRight: string;
|
|
4248
|
+
railInsetVerticalLeft: string;
|
|
4249
|
+
railColor: string;
|
|
4250
|
+
}, any>;
|
|
4251
|
+
}>>>;
|
|
4144
4252
|
}>, {
|
|
4145
4253
|
wrapperElRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
4146
4254
|
inputElRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -4283,9 +4391,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4283
4391
|
paddingLarge: string;
|
|
4284
4392
|
clearSize: string;
|
|
4285
4393
|
};
|
|
4286
|
-
peers:
|
|
4394
|
+
peers: {
|
|
4395
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4396
|
+
height: string;
|
|
4397
|
+
width: string;
|
|
4398
|
+
borderRadius: string;
|
|
4399
|
+
color: string;
|
|
4400
|
+
colorHover: string;
|
|
4401
|
+
railInsetHorizontalBottom: string;
|
|
4402
|
+
railInsetHorizontalTop: string;
|
|
4403
|
+
railInsetVerticalRight: string;
|
|
4404
|
+
railInsetVerticalLeft: string;
|
|
4405
|
+
railColor: string;
|
|
4406
|
+
}, any>;
|
|
4407
|
+
};
|
|
4287
4408
|
peerOverrides: {
|
|
4288
|
-
|
|
4409
|
+
Scrollbar?: {
|
|
4410
|
+
peers?: {
|
|
4411
|
+
[x: string]: any;
|
|
4412
|
+
} | undefined;
|
|
4413
|
+
} | undefined;
|
|
4289
4414
|
};
|
|
4290
4415
|
}>;
|
|
4291
4416
|
cssVars: ComputedRef<{
|
|
@@ -4503,7 +4628,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4503
4628
|
paddingMedium: string;
|
|
4504
4629
|
paddingLarge: string;
|
|
4505
4630
|
clearSize: string;
|
|
4506
|
-
},
|
|
4631
|
+
}, {
|
|
4632
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4633
|
+
height: string;
|
|
4634
|
+
width: string;
|
|
4635
|
+
borderRadius: string;
|
|
4636
|
+
color: string;
|
|
4637
|
+
colorHover: string;
|
|
4638
|
+
railInsetHorizontalBottom: string;
|
|
4639
|
+
railInsetHorizontalTop: string;
|
|
4640
|
+
railInsetVerticalRight: string;
|
|
4641
|
+
railInsetVerticalLeft: string;
|
|
4642
|
+
railColor: string;
|
|
4643
|
+
}, any>;
|
|
4644
|
+
}>>;
|
|
4507
4645
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4508
4646
|
fontWeight: string;
|
|
4509
4647
|
countTextColorDisabled: string;
|
|
@@ -4565,7 +4703,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4565
4703
|
paddingMedium: string;
|
|
4566
4704
|
paddingLarge: string;
|
|
4567
4705
|
clearSize: string;
|
|
4568
|
-
},
|
|
4706
|
+
}, {
|
|
4707
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4708
|
+
height: string;
|
|
4709
|
+
width: string;
|
|
4710
|
+
borderRadius: string;
|
|
4711
|
+
color: string;
|
|
4712
|
+
colorHover: string;
|
|
4713
|
+
railInsetHorizontalBottom: string;
|
|
4714
|
+
railInsetHorizontalTop: string;
|
|
4715
|
+
railInsetVerticalRight: string;
|
|
4716
|
+
railInsetVerticalLeft: string;
|
|
4717
|
+
railColor: string;
|
|
4718
|
+
}, any>;
|
|
4719
|
+
}>>>;
|
|
4569
4720
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4570
4721
|
fontWeight: string;
|
|
4571
4722
|
countTextColorDisabled: string;
|
|
@@ -4627,7 +4778,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4627
4778
|
paddingMedium: string;
|
|
4628
4779
|
paddingLarge: string;
|
|
4629
4780
|
clearSize: string;
|
|
4630
|
-
},
|
|
4781
|
+
}, {
|
|
4782
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4783
|
+
height: string;
|
|
4784
|
+
width: string;
|
|
4785
|
+
borderRadius: string;
|
|
4786
|
+
color: string;
|
|
4787
|
+
colorHover: string;
|
|
4788
|
+
railInsetHorizontalBottom: string;
|
|
4789
|
+
railInsetHorizontalTop: string;
|
|
4790
|
+
railInsetVerticalRight: string;
|
|
4791
|
+
railInsetVerticalLeft: string;
|
|
4792
|
+
railColor: string;
|
|
4793
|
+
}, any>;
|
|
4794
|
+
}>>>;
|
|
4631
4795
|
}>> & Readonly<{}>, {
|
|
4632
4796
|
type: "textarea" | "text" | "password";
|
|
4633
4797
|
readonly: string | boolean;
|
|
@@ -4643,10 +4807,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4643
4807
|
clearable: boolean;
|
|
4644
4808
|
defaultValue: string | [string, string] | null;
|
|
4645
4809
|
resizable: boolean;
|
|
4810
|
+
stateful: boolean;
|
|
4646
4811
|
pair: boolean;
|
|
4647
4812
|
rows: string | number;
|
|
4648
4813
|
passivelyActivated: boolean;
|
|
4649
|
-
stateful: boolean;
|
|
4650
4814
|
showCount: boolean;
|
|
4651
4815
|
attrSize: number;
|
|
4652
4816
|
internalDeactivateOnEnter: boolean;
|
|
@@ -4845,7 +5009,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4845
5009
|
arrowOffsetVertical: string;
|
|
4846
5010
|
arrowHeight: string;
|
|
4847
5011
|
padding: string;
|
|
4848
|
-
},
|
|
5012
|
+
}, {
|
|
5013
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5014
|
+
height: string;
|
|
5015
|
+
width: string;
|
|
5016
|
+
borderRadius: string;
|
|
5017
|
+
color: string;
|
|
5018
|
+
colorHover: string;
|
|
5019
|
+
railInsetHorizontalBottom: string;
|
|
5020
|
+
railInsetHorizontalTop: string;
|
|
5021
|
+
railInsetVerticalRight: string;
|
|
5022
|
+
railInsetVerticalLeft: string;
|
|
5023
|
+
railColor: string;
|
|
5024
|
+
}, any>;
|
|
5025
|
+
}>;
|
|
4849
5026
|
}>;
|
|
4850
5027
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
4851
5028
|
optionFontSizeTiny: string;
|
|
@@ -4986,7 +5163,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4986
5163
|
arrowOffsetVertical: string;
|
|
4987
5164
|
arrowHeight: string;
|
|
4988
5165
|
padding: string;
|
|
4989
|
-
},
|
|
5166
|
+
}, {
|
|
5167
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5168
|
+
height: string;
|
|
5169
|
+
width: string;
|
|
5170
|
+
borderRadius: string;
|
|
5171
|
+
color: string;
|
|
5172
|
+
colorHover: string;
|
|
5173
|
+
railInsetHorizontalBottom: string;
|
|
5174
|
+
railInsetHorizontalTop: string;
|
|
5175
|
+
railInsetVerticalRight: string;
|
|
5176
|
+
railInsetVerticalLeft: string;
|
|
5177
|
+
railColor: string;
|
|
5178
|
+
}, any>;
|
|
5179
|
+
}>;
|
|
4990
5180
|
}>;
|
|
4991
5181
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
4992
5182
|
optionFontSizeTiny: string;
|
|
@@ -5127,15 +5317,28 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5127
5317
|
arrowOffsetVertical: string;
|
|
5128
5318
|
arrowHeight: string;
|
|
5129
5319
|
padding: string;
|
|
5130
|
-
},
|
|
5131
|
-
|
|
5132
|
-
|
|
5133
|
-
|
|
5134
|
-
|
|
5135
|
-
|
|
5136
|
-
|
|
5137
|
-
|
|
5138
|
-
|
|
5320
|
+
}, {
|
|
5321
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5322
|
+
height: string;
|
|
5323
|
+
width: string;
|
|
5324
|
+
borderRadius: string;
|
|
5325
|
+
color: string;
|
|
5326
|
+
colorHover: string;
|
|
5327
|
+
railInsetHorizontalBottom: string;
|
|
5328
|
+
railInsetHorizontalTop: string;
|
|
5329
|
+
railInsetVerticalRight: string;
|
|
5330
|
+
railInsetVerticalLeft: string;
|
|
5331
|
+
railColor: string;
|
|
5332
|
+
}, any>;
|
|
5333
|
+
}>;
|
|
5334
|
+
}>;
|
|
5335
|
+
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5336
|
+
optionFontSizeTiny: string;
|
|
5337
|
+
optionFontSizeSmall: string;
|
|
5338
|
+
optionFontSizeMedium: string;
|
|
5339
|
+
optionFontSizeLarge: string;
|
|
5340
|
+
optionFontSizeHuge: string;
|
|
5341
|
+
optionHeightTiny: string;
|
|
5139
5342
|
optionHeightSmall: string;
|
|
5140
5343
|
optionHeightMedium: string;
|
|
5141
5344
|
optionHeightLarge: string;
|
|
@@ -5347,7 +5550,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5347
5550
|
arrowOffsetVertical: string;
|
|
5348
5551
|
arrowHeight: string;
|
|
5349
5552
|
padding: string;
|
|
5350
|
-
},
|
|
5553
|
+
}, {
|
|
5554
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5555
|
+
height: string;
|
|
5556
|
+
width: string;
|
|
5557
|
+
borderRadius: string;
|
|
5558
|
+
color: string;
|
|
5559
|
+
colorHover: string;
|
|
5560
|
+
railInsetHorizontalBottom: string;
|
|
5561
|
+
railInsetHorizontalTop: string;
|
|
5562
|
+
railInsetVerticalRight: string;
|
|
5563
|
+
railInsetVerticalLeft: string;
|
|
5564
|
+
railColor: string;
|
|
5565
|
+
}, any>;
|
|
5566
|
+
}>;
|
|
5351
5567
|
}>;
|
|
5352
5568
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5353
5569
|
optionFontSizeTiny: string;
|
|
@@ -5433,7 +5649,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5433
5649
|
arrowOffsetVertical: string;
|
|
5434
5650
|
arrowHeight: string;
|
|
5435
5651
|
padding: string;
|
|
5436
|
-
},
|
|
5652
|
+
}, {
|
|
5653
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5654
|
+
height: string;
|
|
5655
|
+
width: string;
|
|
5656
|
+
borderRadius: string;
|
|
5657
|
+
color: string;
|
|
5658
|
+
colorHover: string;
|
|
5659
|
+
railInsetHorizontalBottom: string;
|
|
5660
|
+
railInsetHorizontalTop: string;
|
|
5661
|
+
railInsetVerticalRight: string;
|
|
5662
|
+
railInsetVerticalLeft: string;
|
|
5663
|
+
railColor: string;
|
|
5664
|
+
}, any>;
|
|
5665
|
+
}>> | undefined;
|
|
5437
5666
|
} | undefined;
|
|
5438
5667
|
} | undefined;
|
|
5439
5668
|
InternalSelectMenu?: {
|
|
@@ -5669,7 +5898,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5669
5898
|
arrowOffsetVertical: string;
|
|
5670
5899
|
arrowHeight: string;
|
|
5671
5900
|
padding: string;
|
|
5672
|
-
},
|
|
5901
|
+
}, {
|
|
5902
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5903
|
+
height: string;
|
|
5904
|
+
width: string;
|
|
5905
|
+
borderRadius: string;
|
|
5906
|
+
color: string;
|
|
5907
|
+
colorHover: string;
|
|
5908
|
+
railInsetHorizontalBottom: string;
|
|
5909
|
+
railInsetHorizontalTop: string;
|
|
5910
|
+
railInsetVerticalRight: string;
|
|
5911
|
+
railInsetVerticalLeft: string;
|
|
5912
|
+
railColor: string;
|
|
5913
|
+
}, any>;
|
|
5914
|
+
}>;
|
|
5673
5915
|
}>;
|
|
5674
5916
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5675
5917
|
optionFontSizeTiny: string;
|
|
@@ -5810,7 +6052,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5810
6052
|
arrowOffsetVertical: string;
|
|
5811
6053
|
arrowHeight: string;
|
|
5812
6054
|
padding: string;
|
|
5813
|
-
},
|
|
6055
|
+
}, {
|
|
6056
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6057
|
+
height: string;
|
|
6058
|
+
width: string;
|
|
6059
|
+
borderRadius: string;
|
|
6060
|
+
color: string;
|
|
6061
|
+
colorHover: string;
|
|
6062
|
+
railInsetHorizontalBottom: string;
|
|
6063
|
+
railInsetHorizontalTop: string;
|
|
6064
|
+
railInsetVerticalRight: string;
|
|
6065
|
+
railInsetVerticalLeft: string;
|
|
6066
|
+
railColor: string;
|
|
6067
|
+
}, any>;
|
|
6068
|
+
}>;
|
|
5814
6069
|
}>;
|
|
5815
6070
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5816
6071
|
optionFontSizeTiny: string;
|
|
@@ -5951,7 +6206,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5951
6206
|
arrowOffsetVertical: string;
|
|
5952
6207
|
arrowHeight: string;
|
|
5953
6208
|
padding: string;
|
|
5954
|
-
},
|
|
6209
|
+
}, {
|
|
6210
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6211
|
+
height: string;
|
|
6212
|
+
width: string;
|
|
6213
|
+
borderRadius: string;
|
|
6214
|
+
color: string;
|
|
6215
|
+
colorHover: string;
|
|
6216
|
+
railInsetHorizontalBottom: string;
|
|
6217
|
+
railInsetHorizontalTop: string;
|
|
6218
|
+
railInsetVerticalRight: string;
|
|
6219
|
+
railInsetVerticalLeft: string;
|
|
6220
|
+
railColor: string;
|
|
6221
|
+
}, any>;
|
|
6222
|
+
}>;
|
|
5955
6223
|
}>;
|
|
5956
6224
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5957
6225
|
optionFontSizeTiny: string;
|
|
@@ -6030,26 +6298,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6030
6298
|
readonly multiple: boolean;
|
|
6031
6299
|
readonly loading: boolean;
|
|
6032
6300
|
readonly bordered: boolean | undefined;
|
|
6301
|
+
readonly clearable: boolean;
|
|
6302
|
+
readonly defaultValue: Value | null;
|
|
6033
6303
|
readonly placement: PopoverPlacement;
|
|
6034
|
-
readonly
|
|
6035
|
-
readonly showCheckmark: boolean;
|
|
6036
|
-
readonly virtualScroll: boolean;
|
|
6037
|
-
readonly valueField: string;
|
|
6038
|
-
readonly resetMenuOnOptionsChange: boolean;
|
|
6304
|
+
readonly keyboard: boolean;
|
|
6039
6305
|
readonly showArrow: boolean;
|
|
6040
6306
|
readonly displayDirective: "show" | "if";
|
|
6041
6307
|
readonly filterable: boolean;
|
|
6042
|
-
readonly clearable: boolean;
|
|
6043
|
-
readonly ignoreComposition: boolean;
|
|
6044
6308
|
readonly clearFilterAfterSelect: boolean;
|
|
6045
|
-
readonly defaultValue: Value | null;
|
|
6046
|
-
readonly keyboard: boolean;
|
|
6047
6309
|
readonly remote: boolean;
|
|
6310
|
+
readonly virtualScroll: boolean;
|
|
6311
|
+
readonly valueField: string;
|
|
6312
|
+
readonly labelField: string;
|
|
6313
|
+
readonly childrenField: string;
|
|
6048
6314
|
readonly widthMode: string;
|
|
6049
6315
|
readonly fallbackOption: false | SelectFallbackOption | undefined;
|
|
6050
6316
|
readonly consistentMenuWidth: boolean;
|
|
6051
|
-
readonly
|
|
6317
|
+
readonly ignoreComposition: boolean;
|
|
6052
6318
|
readonly showOnFocus: boolean;
|
|
6319
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
6320
|
+
readonly showCheckmark: boolean;
|
|
6053
6321
|
}, SlotsType<SelectSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6054
6322
|
NInputNumber: DefineComponent<ExtractPropTypes<{
|
|
6055
6323
|
autofocus: BooleanConstructor;
|
|
@@ -6383,7 +6651,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6383
6651
|
paddingMedium: string;
|
|
6384
6652
|
paddingLarge: string;
|
|
6385
6653
|
clearSize: string;
|
|
6386
|
-
},
|
|
6654
|
+
}, {
|
|
6655
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6656
|
+
height: string;
|
|
6657
|
+
width: string;
|
|
6658
|
+
borderRadius: string;
|
|
6659
|
+
color: string;
|
|
6660
|
+
colorHover: string;
|
|
6661
|
+
railInsetHorizontalBottom: string;
|
|
6662
|
+
railInsetHorizontalTop: string;
|
|
6663
|
+
railInsetVerticalRight: string;
|
|
6664
|
+
railInsetVerticalLeft: string;
|
|
6665
|
+
railColor: string;
|
|
6666
|
+
}, any>;
|
|
6667
|
+
}>;
|
|
6387
6668
|
}>>;
|
|
6388
6669
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
6389
6670
|
iconColorDisabled: string;
|
|
@@ -6653,7 +6934,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6653
6934
|
paddingMedium: string;
|
|
6654
6935
|
paddingLarge: string;
|
|
6655
6936
|
clearSize: string;
|
|
6656
|
-
},
|
|
6937
|
+
}, {
|
|
6938
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6939
|
+
height: string;
|
|
6940
|
+
width: string;
|
|
6941
|
+
borderRadius: string;
|
|
6942
|
+
color: string;
|
|
6943
|
+
colorHover: string;
|
|
6944
|
+
railInsetHorizontalBottom: string;
|
|
6945
|
+
railInsetHorizontalTop: string;
|
|
6946
|
+
railInsetVerticalRight: string;
|
|
6947
|
+
railInsetVerticalLeft: string;
|
|
6948
|
+
railColor: string;
|
|
6949
|
+
}, any>;
|
|
6950
|
+
}>;
|
|
6657
6951
|
}>>>;
|
|
6658
6952
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
6659
6953
|
iconColorDisabled: string;
|
|
@@ -6923,7 +7217,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6923
7217
|
paddingMedium: string;
|
|
6924
7218
|
paddingLarge: string;
|
|
6925
7219
|
clearSize: string;
|
|
6926
|
-
},
|
|
7220
|
+
}, {
|
|
7221
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7222
|
+
height: string;
|
|
7223
|
+
width: string;
|
|
7224
|
+
borderRadius: string;
|
|
7225
|
+
color: string;
|
|
7226
|
+
colorHover: string;
|
|
7227
|
+
railInsetHorizontalBottom: string;
|
|
7228
|
+
railInsetHorizontalTop: string;
|
|
7229
|
+
railInsetVerticalRight: string;
|
|
7230
|
+
railInsetVerticalLeft: string;
|
|
7231
|
+
railColor: string;
|
|
7232
|
+
}, any>;
|
|
7233
|
+
}>;
|
|
6927
7234
|
}>>>;
|
|
6928
7235
|
}>, {
|
|
6929
7236
|
rtlEnabled: Ref< RtlItem | undefined, RtlItem | undefined> | undefined;
|
|
@@ -7271,7 +7578,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7271
7578
|
paddingMedium: string;
|
|
7272
7579
|
paddingLarge: string;
|
|
7273
7580
|
clearSize: string;
|
|
7274
|
-
},
|
|
7581
|
+
}, {
|
|
7582
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7583
|
+
height: string;
|
|
7584
|
+
width: string;
|
|
7585
|
+
borderRadius: string;
|
|
7586
|
+
color: string;
|
|
7587
|
+
colorHover: string;
|
|
7588
|
+
railInsetHorizontalBottom: string;
|
|
7589
|
+
railInsetHorizontalTop: string;
|
|
7590
|
+
railInsetVerticalRight: string;
|
|
7591
|
+
railInsetVerticalLeft: string;
|
|
7592
|
+
railColor: string;
|
|
7593
|
+
}, any>;
|
|
7594
|
+
}>;
|
|
7275
7595
|
};
|
|
7276
7596
|
peerOverrides: {
|
|
7277
7597
|
Button?: {
|
|
@@ -7281,7 +7601,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7281
7601
|
} | undefined;
|
|
7282
7602
|
Input?: {
|
|
7283
7603
|
peers?: {
|
|
7284
|
-
|
|
7604
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
7605
|
+
height: string;
|
|
7606
|
+
width: string;
|
|
7607
|
+
borderRadius: string;
|
|
7608
|
+
color: string;
|
|
7609
|
+
colorHover: string;
|
|
7610
|
+
railInsetHorizontalBottom: string;
|
|
7611
|
+
railInsetHorizontalTop: string;
|
|
7612
|
+
railInsetVerticalRight: string;
|
|
7613
|
+
railInsetVerticalLeft: string;
|
|
7614
|
+
railColor: string;
|
|
7615
|
+
}, any>> | undefined;
|
|
7285
7616
|
} | undefined;
|
|
7286
7617
|
} | undefined;
|
|
7287
7618
|
};
|
|
@@ -7630,7 +7961,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7630
7961
|
paddingMedium: string;
|
|
7631
7962
|
paddingLarge: string;
|
|
7632
7963
|
clearSize: string;
|
|
7633
|
-
},
|
|
7964
|
+
}, {
|
|
7965
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7966
|
+
height: string;
|
|
7967
|
+
width: string;
|
|
7968
|
+
borderRadius: string;
|
|
7969
|
+
color: string;
|
|
7970
|
+
colorHover: string;
|
|
7971
|
+
railInsetHorizontalBottom: string;
|
|
7972
|
+
railInsetHorizontalTop: string;
|
|
7973
|
+
railInsetVerticalRight: string;
|
|
7974
|
+
railInsetVerticalLeft: string;
|
|
7975
|
+
railColor: string;
|
|
7976
|
+
}, any>;
|
|
7977
|
+
}>;
|
|
7634
7978
|
}>>;
|
|
7635
7979
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
7636
7980
|
iconColorDisabled: string;
|
|
@@ -7900,7 +8244,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7900
8244
|
paddingMedium: string;
|
|
7901
8245
|
paddingLarge: string;
|
|
7902
8246
|
clearSize: string;
|
|
7903
|
-
},
|
|
8247
|
+
}, {
|
|
8248
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8249
|
+
height: string;
|
|
8250
|
+
width: string;
|
|
8251
|
+
borderRadius: string;
|
|
8252
|
+
color: string;
|
|
8253
|
+
colorHover: string;
|
|
8254
|
+
railInsetHorizontalBottom: string;
|
|
8255
|
+
railInsetHorizontalTop: string;
|
|
8256
|
+
railInsetVerticalRight: string;
|
|
8257
|
+
railInsetVerticalLeft: string;
|
|
8258
|
+
railColor: string;
|
|
8259
|
+
}, any>;
|
|
8260
|
+
}>;
|
|
7904
8261
|
}>>>;
|
|
7905
8262
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
7906
8263
|
iconColorDisabled: string;
|
|
@@ -8170,7 +8527,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8170
8527
|
paddingMedium: string;
|
|
8171
8528
|
paddingLarge: string;
|
|
8172
8529
|
clearSize: string;
|
|
8173
|
-
},
|
|
8530
|
+
}, {
|
|
8531
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8532
|
+
height: string;
|
|
8533
|
+
width: string;
|
|
8534
|
+
borderRadius: string;
|
|
8535
|
+
color: string;
|
|
8536
|
+
colorHover: string;
|
|
8537
|
+
railInsetHorizontalBottom: string;
|
|
8538
|
+
railInsetHorizontalTop: string;
|
|
8539
|
+
railInsetVerticalRight: string;
|
|
8540
|
+
railInsetVerticalLeft: string;
|
|
8541
|
+
railColor: string;
|
|
8542
|
+
}, any>;
|
|
8543
|
+
}>;
|
|
8174
8544
|
}>>>;
|
|
8175
8545
|
}>> & Readonly<{}>, {
|
|
8176
8546
|
readonly: boolean;
|
|
@@ -8413,7 +8783,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8413
8783
|
paddingMedium: string;
|
|
8414
8784
|
paddingLarge: string;
|
|
8415
8785
|
clearSize: string;
|
|
8416
|
-
},
|
|
8786
|
+
}, {
|
|
8787
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8788
|
+
height: string;
|
|
8789
|
+
width: string;
|
|
8790
|
+
borderRadius: string;
|
|
8791
|
+
color: string;
|
|
8792
|
+
colorHover: string;
|
|
8793
|
+
railInsetHorizontalBottom: string;
|
|
8794
|
+
railInsetHorizontalTop: string;
|
|
8795
|
+
railInsetVerticalRight: string;
|
|
8796
|
+
railInsetVerticalLeft: string;
|
|
8797
|
+
railColor: string;
|
|
8798
|
+
}, any>;
|
|
8799
|
+
}>;
|
|
8417
8800
|
Button: Theme<"Button", {
|
|
8418
8801
|
heightTiny: string;
|
|
8419
8802
|
heightSmall: string;
|
|
@@ -8912,7 +9295,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8912
9295
|
paddingMedium: string;
|
|
8913
9296
|
paddingLarge: string;
|
|
8914
9297
|
clearSize: string;
|
|
8915
|
-
},
|
|
9298
|
+
}, {
|
|
9299
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9300
|
+
height: string;
|
|
9301
|
+
width: string;
|
|
9302
|
+
borderRadius: string;
|
|
9303
|
+
color: string;
|
|
9304
|
+
colorHover: string;
|
|
9305
|
+
railInsetHorizontalBottom: string;
|
|
9306
|
+
railInsetHorizontalTop: string;
|
|
9307
|
+
railInsetVerticalRight: string;
|
|
9308
|
+
railInsetVerticalLeft: string;
|
|
9309
|
+
railColor: string;
|
|
9310
|
+
}, any>;
|
|
9311
|
+
}>;
|
|
8916
9312
|
}>;
|
|
8917
9313
|
Scrollbar: Theme<"Scrollbar", {
|
|
8918
9314
|
height: string;
|
|
@@ -9053,15 +9449,28 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9053
9449
|
paddingMedium: string;
|
|
9054
9450
|
paddingLarge: string;
|
|
9055
9451
|
clearSize: string;
|
|
9056
|
-
},
|
|
9057
|
-
|
|
9058
|
-
|
|
9059
|
-
|
|
9060
|
-
|
|
9061
|
-
|
|
9062
|
-
|
|
9063
|
-
|
|
9064
|
-
|
|
9452
|
+
}, {
|
|
9453
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9454
|
+
height: string;
|
|
9455
|
+
width: string;
|
|
9456
|
+
borderRadius: string;
|
|
9457
|
+
color: string;
|
|
9458
|
+
colorHover: string;
|
|
9459
|
+
railInsetHorizontalBottom: string;
|
|
9460
|
+
railInsetHorizontalTop: string;
|
|
9461
|
+
railInsetVerticalRight: string;
|
|
9462
|
+
railInsetVerticalLeft: string;
|
|
9463
|
+
railColor: string;
|
|
9464
|
+
}, any>;
|
|
9465
|
+
}>;
|
|
9466
|
+
Button: Theme<"Button", {
|
|
9467
|
+
heightTiny: string;
|
|
9468
|
+
heightSmall: string;
|
|
9469
|
+
heightMedium: string;
|
|
9470
|
+
heightLarge: string;
|
|
9471
|
+
borderRadiusTiny: string;
|
|
9472
|
+
borderRadiusSmall: string;
|
|
9473
|
+
borderRadiusMedium: string;
|
|
9065
9474
|
borderRadiusLarge: string;
|
|
9066
9475
|
fontSizeTiny: string;
|
|
9067
9476
|
fontSizeSmall: string;
|
|
@@ -9552,7 +9961,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9552
9961
|
paddingMedium: string;
|
|
9553
9962
|
paddingLarge: string;
|
|
9554
9963
|
clearSize: string;
|
|
9555
|
-
},
|
|
9964
|
+
}, {
|
|
9965
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9966
|
+
height: string;
|
|
9967
|
+
width: string;
|
|
9968
|
+
borderRadius: string;
|
|
9969
|
+
color: string;
|
|
9970
|
+
colorHover: string;
|
|
9971
|
+
railInsetHorizontalBottom: string;
|
|
9972
|
+
railInsetHorizontalTop: string;
|
|
9973
|
+
railInsetVerticalRight: string;
|
|
9974
|
+
railInsetVerticalLeft: string;
|
|
9975
|
+
railColor: string;
|
|
9976
|
+
}, any>;
|
|
9977
|
+
}>;
|
|
9556
9978
|
}>;
|
|
9557
9979
|
Scrollbar: Theme<"Scrollbar", {
|
|
9558
9980
|
height: string;
|
|
@@ -9693,7 +10115,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9693
10115
|
paddingMedium: string;
|
|
9694
10116
|
paddingLarge: string;
|
|
9695
10117
|
clearSize: string;
|
|
9696
|
-
},
|
|
10118
|
+
}, {
|
|
10119
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10120
|
+
height: string;
|
|
10121
|
+
width: string;
|
|
10122
|
+
borderRadius: string;
|
|
10123
|
+
color: string;
|
|
10124
|
+
colorHover: string;
|
|
10125
|
+
railInsetHorizontalBottom: string;
|
|
10126
|
+
railInsetHorizontalTop: string;
|
|
10127
|
+
railInsetVerticalRight: string;
|
|
10128
|
+
railInsetVerticalLeft: string;
|
|
10129
|
+
railColor: string;
|
|
10130
|
+
}, any>;
|
|
10131
|
+
}>;
|
|
9697
10132
|
Button: Theme<"Button", {
|
|
9698
10133
|
heightTiny: string;
|
|
9699
10134
|
heightSmall: string;
|
|
@@ -10192,7 +10627,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10192
10627
|
paddingMedium: string;
|
|
10193
10628
|
paddingLarge: string;
|
|
10194
10629
|
clearSize: string;
|
|
10195
|
-
},
|
|
10630
|
+
}, {
|
|
10631
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10632
|
+
height: string;
|
|
10633
|
+
width: string;
|
|
10634
|
+
borderRadius: string;
|
|
10635
|
+
color: string;
|
|
10636
|
+
colorHover: string;
|
|
10637
|
+
railInsetHorizontalBottom: string;
|
|
10638
|
+
railInsetHorizontalTop: string;
|
|
10639
|
+
railInsetVerticalRight: string;
|
|
10640
|
+
railInsetVerticalLeft: string;
|
|
10641
|
+
railColor: string;
|
|
10642
|
+
}, any>;
|
|
10643
|
+
}>;
|
|
10196
10644
|
}>;
|
|
10197
10645
|
Scrollbar: Theme<"Scrollbar", {
|
|
10198
10646
|
height: string;
|
|
@@ -10593,7 +11041,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10593
11041
|
paddingMedium: string;
|
|
10594
11042
|
paddingLarge: string;
|
|
10595
11043
|
clearSize: string;
|
|
10596
|
-
},
|
|
11044
|
+
}, {
|
|
11045
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11046
|
+
height: string;
|
|
11047
|
+
width: string;
|
|
11048
|
+
borderRadius: string;
|
|
11049
|
+
color: string;
|
|
11050
|
+
colorHover: string;
|
|
11051
|
+
railInsetHorizontalBottom: string;
|
|
11052
|
+
railInsetHorizontalTop: string;
|
|
11053
|
+
railInsetVerticalRight: string;
|
|
11054
|
+
railInsetVerticalLeft: string;
|
|
11055
|
+
railColor: string;
|
|
11056
|
+
}, any>;
|
|
11057
|
+
}>;
|
|
10597
11058
|
Button: Theme<"Button", {
|
|
10598
11059
|
heightTiny: string;
|
|
10599
11060
|
heightSmall: string;
|
|
@@ -11092,7 +11553,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11092
11553
|
paddingMedium: string;
|
|
11093
11554
|
paddingLarge: string;
|
|
11094
11555
|
clearSize: string;
|
|
11095
|
-
},
|
|
11556
|
+
}, {
|
|
11557
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11558
|
+
height: string;
|
|
11559
|
+
width: string;
|
|
11560
|
+
borderRadius: string;
|
|
11561
|
+
color: string;
|
|
11562
|
+
colorHover: string;
|
|
11563
|
+
railInsetHorizontalBottom: string;
|
|
11564
|
+
railInsetHorizontalTop: string;
|
|
11565
|
+
railInsetVerticalRight: string;
|
|
11566
|
+
railInsetVerticalLeft: string;
|
|
11567
|
+
railColor: string;
|
|
11568
|
+
}, any>;
|
|
11569
|
+
}>;
|
|
11096
11570
|
}>;
|
|
11097
11571
|
Scrollbar: Theme<"Scrollbar", {
|
|
11098
11572
|
height: string;
|
|
@@ -11110,7 +11584,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11110
11584
|
peerOverrides: {
|
|
11111
11585
|
Input?: {
|
|
11112
11586
|
peers?: {
|
|
11113
|
-
|
|
11587
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
11588
|
+
height: string;
|
|
11589
|
+
width: string;
|
|
11590
|
+
borderRadius: string;
|
|
11591
|
+
color: string;
|
|
11592
|
+
colorHover: string;
|
|
11593
|
+
railInsetHorizontalBottom: string;
|
|
11594
|
+
railInsetHorizontalTop: string;
|
|
11595
|
+
railInsetVerticalRight: string;
|
|
11596
|
+
railInsetVerticalLeft: string;
|
|
11597
|
+
railColor: string;
|
|
11598
|
+
}, any>> | undefined;
|
|
11114
11599
|
} | undefined;
|
|
11115
11600
|
} | undefined;
|
|
11116
11601
|
Button?: {
|
|
@@ -11397,7 +11882,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11397
11882
|
paddingMedium: string;
|
|
11398
11883
|
paddingLarge: string;
|
|
11399
11884
|
clearSize: string;
|
|
11400
|
-
},
|
|
11885
|
+
}, {
|
|
11886
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11887
|
+
height: string;
|
|
11888
|
+
width: string;
|
|
11889
|
+
borderRadius: string;
|
|
11890
|
+
color: string;
|
|
11891
|
+
colorHover: string;
|
|
11892
|
+
railInsetHorizontalBottom: string;
|
|
11893
|
+
railInsetHorizontalTop: string;
|
|
11894
|
+
railInsetVerticalRight: string;
|
|
11895
|
+
railInsetVerticalLeft: string;
|
|
11896
|
+
railColor: string;
|
|
11897
|
+
}, any>;
|
|
11898
|
+
}>> | undefined;
|
|
11401
11899
|
} | undefined;
|
|
11402
11900
|
} | undefined;
|
|
11403
11901
|
Scrollbar?: {
|
|
@@ -11691,7 +12189,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11691
12189
|
paddingMedium: string;
|
|
11692
12190
|
paddingLarge: string;
|
|
11693
12191
|
clearSize: string;
|
|
11694
|
-
},
|
|
12192
|
+
}, {
|
|
12193
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12194
|
+
height: string;
|
|
12195
|
+
width: string;
|
|
12196
|
+
borderRadius: string;
|
|
12197
|
+
color: string;
|
|
12198
|
+
colorHover: string;
|
|
12199
|
+
railInsetHorizontalBottom: string;
|
|
12200
|
+
railInsetHorizontalTop: string;
|
|
12201
|
+
railInsetVerticalRight: string;
|
|
12202
|
+
railInsetVerticalLeft: string;
|
|
12203
|
+
railColor: string;
|
|
12204
|
+
}, any>;
|
|
12205
|
+
}>;
|
|
11695
12206
|
Button: Theme<"Button", {
|
|
11696
12207
|
heightTiny: string;
|
|
11697
12208
|
heightSmall: string;
|
|
@@ -12190,7 +12701,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12190
12701
|
paddingMedium: string;
|
|
12191
12702
|
paddingLarge: string;
|
|
12192
12703
|
clearSize: string;
|
|
12193
|
-
},
|
|
12704
|
+
}, {
|
|
12705
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12706
|
+
height: string;
|
|
12707
|
+
width: string;
|
|
12708
|
+
borderRadius: string;
|
|
12709
|
+
color: string;
|
|
12710
|
+
colorHover: string;
|
|
12711
|
+
railInsetHorizontalBottom: string;
|
|
12712
|
+
railInsetHorizontalTop: string;
|
|
12713
|
+
railInsetVerticalRight: string;
|
|
12714
|
+
railInsetVerticalLeft: string;
|
|
12715
|
+
railColor: string;
|
|
12716
|
+
}, any>;
|
|
12717
|
+
}>;
|
|
12194
12718
|
}>;
|
|
12195
12719
|
Scrollbar: Theme<"Scrollbar", {
|
|
12196
12720
|
height: string;
|
|
@@ -12331,7 +12855,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12331
12855
|
paddingMedium: string;
|
|
12332
12856
|
paddingLarge: string;
|
|
12333
12857
|
clearSize: string;
|
|
12334
|
-
},
|
|
12858
|
+
}, {
|
|
12859
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12860
|
+
height: string;
|
|
12861
|
+
width: string;
|
|
12862
|
+
borderRadius: string;
|
|
12863
|
+
color: string;
|
|
12864
|
+
colorHover: string;
|
|
12865
|
+
railInsetHorizontalBottom: string;
|
|
12866
|
+
railInsetHorizontalTop: string;
|
|
12867
|
+
railInsetVerticalRight: string;
|
|
12868
|
+
railInsetVerticalLeft: string;
|
|
12869
|
+
railColor: string;
|
|
12870
|
+
}, any>;
|
|
12871
|
+
}>;
|
|
12335
12872
|
Button: Theme<"Button", {
|
|
12336
12873
|
heightTiny: string;
|
|
12337
12874
|
heightSmall: string;
|
|
@@ -12830,7 +13367,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12830
13367
|
paddingMedium: string;
|
|
12831
13368
|
paddingLarge: string;
|
|
12832
13369
|
clearSize: string;
|
|
12833
|
-
},
|
|
13370
|
+
}, {
|
|
13371
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13372
|
+
height: string;
|
|
13373
|
+
width: string;
|
|
13374
|
+
borderRadius: string;
|
|
13375
|
+
color: string;
|
|
13376
|
+
colorHover: string;
|
|
13377
|
+
railInsetHorizontalBottom: string;
|
|
13378
|
+
railInsetHorizontalTop: string;
|
|
13379
|
+
railInsetVerticalRight: string;
|
|
13380
|
+
railInsetVerticalLeft: string;
|
|
13381
|
+
railColor: string;
|
|
13382
|
+
}, any>;
|
|
13383
|
+
}>;
|
|
12834
13384
|
}>;
|
|
12835
13385
|
Scrollbar: Theme<"Scrollbar", {
|
|
12836
13386
|
height: string;
|
|
@@ -12971,7 +13521,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12971
13521
|
paddingMedium: string;
|
|
12972
13522
|
paddingLarge: string;
|
|
12973
13523
|
clearSize: string;
|
|
12974
|
-
},
|
|
13524
|
+
}, {
|
|
13525
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13526
|
+
height: string;
|
|
13527
|
+
width: string;
|
|
13528
|
+
borderRadius: string;
|
|
13529
|
+
color: string;
|
|
13530
|
+
colorHover: string;
|
|
13531
|
+
railInsetHorizontalBottom: string;
|
|
13532
|
+
railInsetHorizontalTop: string;
|
|
13533
|
+
railInsetVerticalRight: string;
|
|
13534
|
+
railInsetVerticalLeft: string;
|
|
13535
|
+
railColor: string;
|
|
13536
|
+
}, any>;
|
|
13537
|
+
}>;
|
|
12975
13538
|
Button: Theme<"Button", {
|
|
12976
13539
|
heightTiny: string;
|
|
12977
13540
|
heightSmall: string;
|
|
@@ -13470,7 +14033,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13470
14033
|
paddingMedium: string;
|
|
13471
14034
|
paddingLarge: string;
|
|
13472
14035
|
clearSize: string;
|
|
13473
|
-
},
|
|
14036
|
+
}, {
|
|
14037
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14038
|
+
height: string;
|
|
14039
|
+
width: string;
|
|
14040
|
+
borderRadius: string;
|
|
14041
|
+
color: string;
|
|
14042
|
+
colorHover: string;
|
|
14043
|
+
railInsetHorizontalBottom: string;
|
|
14044
|
+
railInsetHorizontalTop: string;
|
|
14045
|
+
railInsetVerticalRight: string;
|
|
14046
|
+
railInsetVerticalLeft: string;
|
|
14047
|
+
railColor: string;
|
|
14048
|
+
}, any>;
|
|
14049
|
+
}>;
|
|
13474
14050
|
}>;
|
|
13475
14051
|
Scrollbar: Theme<"Scrollbar", {
|
|
13476
14052
|
height: string;
|
|
@@ -13490,19 +14066,19 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13490
14066
|
readonly to: string | boolean | HTMLElement;
|
|
13491
14067
|
readonly disabled: boolean | undefined;
|
|
13492
14068
|
readonly show: boolean | undefined;
|
|
13493
|
-
readonly yearFormat: string;
|
|
13494
|
-
readonly monthFormat: string;
|
|
13495
|
-
readonly quarterFormat: string;
|
|
13496
14069
|
readonly bordered: boolean | undefined;
|
|
13497
|
-
readonly placement: FollowerPlacement;
|
|
13498
14070
|
readonly clearable: boolean;
|
|
14071
|
+
readonly placement: FollowerPlacement;
|
|
13499
14072
|
readonly inputReadonly: boolean;
|
|
14073
|
+
readonly updateValueOnClose: boolean;
|
|
13500
14074
|
readonly calendarHeaderMonthYearSeparator: string;
|
|
13501
14075
|
readonly calendarHeaderMonthBeforeYear: boolean;
|
|
13502
14076
|
readonly panel: boolean;
|
|
13503
|
-
readonly updateValueOnClose: boolean;
|
|
13504
14077
|
readonly closeOnSelect: boolean;
|
|
13505
14078
|
readonly bindCalendarMonths: boolean;
|
|
14079
|
+
readonly monthFormat: string;
|
|
14080
|
+
readonly yearFormat: string;
|
|
14081
|
+
readonly quarterFormat: string;
|
|
13506
14082
|
readonly yearRange: [number, number];
|
|
13507
14083
|
}, SlotsType<DatePickerSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13508
14084
|
NTimePicker: DefineComponent<ExtractPropTypes<{
|
|
@@ -13874,7 +14450,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13874
14450
|
paddingMedium: string;
|
|
13875
14451
|
paddingLarge: string;
|
|
13876
14452
|
clearSize: string;
|
|
13877
|
-
},
|
|
14453
|
+
}, {
|
|
14454
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14455
|
+
height: string;
|
|
14456
|
+
width: string;
|
|
14457
|
+
borderRadius: string;
|
|
14458
|
+
color: string;
|
|
14459
|
+
colorHover: string;
|
|
14460
|
+
railInsetHorizontalBottom: string;
|
|
14461
|
+
railInsetHorizontalTop: string;
|
|
14462
|
+
railInsetVerticalRight: string;
|
|
14463
|
+
railInsetVerticalLeft: string;
|
|
14464
|
+
railColor: string;
|
|
14465
|
+
}, any>;
|
|
14466
|
+
}>;
|
|
13878
14467
|
}>>;
|
|
13879
14468
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
13880
14469
|
panelColor: string;
|
|
@@ -14170,7 +14759,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14170
14759
|
paddingMedium: string;
|
|
14171
14760
|
paddingLarge: string;
|
|
14172
14761
|
clearSize: string;
|
|
14173
|
-
},
|
|
14762
|
+
}, {
|
|
14763
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14764
|
+
height: string;
|
|
14765
|
+
width: string;
|
|
14766
|
+
borderRadius: string;
|
|
14767
|
+
color: string;
|
|
14768
|
+
colorHover: string;
|
|
14769
|
+
railInsetHorizontalBottom: string;
|
|
14770
|
+
railInsetHorizontalTop: string;
|
|
14771
|
+
railInsetVerticalRight: string;
|
|
14772
|
+
railInsetVerticalLeft: string;
|
|
14773
|
+
railColor: string;
|
|
14774
|
+
}, any>;
|
|
14775
|
+
}>;
|
|
14174
14776
|
}>>>;
|
|
14175
14777
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
14176
14778
|
panelColor: string;
|
|
@@ -14466,7 +15068,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14466
15068
|
paddingMedium: string;
|
|
14467
15069
|
paddingLarge: string;
|
|
14468
15070
|
clearSize: string;
|
|
14469
|
-
},
|
|
15071
|
+
}, {
|
|
15072
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
15073
|
+
height: string;
|
|
15074
|
+
width: string;
|
|
15075
|
+
borderRadius: string;
|
|
15076
|
+
color: string;
|
|
15077
|
+
colorHover: string;
|
|
15078
|
+
railInsetHorizontalBottom: string;
|
|
15079
|
+
railInsetHorizontalTop: string;
|
|
15080
|
+
railInsetVerticalRight: string;
|
|
15081
|
+
railInsetVerticalLeft: string;
|
|
15082
|
+
railColor: string;
|
|
15083
|
+
}, any>;
|
|
15084
|
+
}>;
|
|
14470
15085
|
}>>>;
|
|
14471
15086
|
}>, {
|
|
14472
15087
|
focus: () => void;
|
|
@@ -14955,10 +15570,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14955
15570
|
paddingMedium: string;
|
|
14956
15571
|
paddingLarge: string;
|
|
14957
15572
|
clearSize: string;
|
|
14958
|
-
},
|
|
14959
|
-
|
|
14960
|
-
|
|
14961
|
-
|
|
15573
|
+
}, {
|
|
15574
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
15575
|
+
height: string;
|
|
15576
|
+
width: string;
|
|
15577
|
+
borderRadius: string;
|
|
15578
|
+
color: string;
|
|
15579
|
+
colorHover: string;
|
|
15580
|
+
railInsetHorizontalBottom: string;
|
|
15581
|
+
railInsetHorizontalTop: string;
|
|
15582
|
+
railInsetVerticalRight: string;
|
|
15583
|
+
railInsetVerticalLeft: string;
|
|
15584
|
+
railColor: string;
|
|
15585
|
+
}, any>;
|
|
15586
|
+
}>;
|
|
15587
|
+
};
|
|
15588
|
+
peerOverrides: {
|
|
15589
|
+
Scrollbar?: {
|
|
14962
15590
|
peers?: {
|
|
14963
15591
|
[x: string]: any;
|
|
14964
15592
|
} | undefined;
|
|
@@ -14970,7 +15598,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14970
15598
|
} | undefined;
|
|
14971
15599
|
Input?: {
|
|
14972
15600
|
peers?: {
|
|
14973
|
-
|
|
15601
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
15602
|
+
height: string;
|
|
15603
|
+
width: string;
|
|
15604
|
+
borderRadius: string;
|
|
15605
|
+
color: string;
|
|
15606
|
+
colorHover: string;
|
|
15607
|
+
railInsetHorizontalBottom: string;
|
|
15608
|
+
railInsetHorizontalTop: string;
|
|
15609
|
+
railInsetVerticalRight: string;
|
|
15610
|
+
railInsetVerticalLeft: string;
|
|
15611
|
+
railColor: string;
|
|
15612
|
+
}, any>> | undefined;
|
|
14974
15613
|
} | undefined;
|
|
14975
15614
|
} | undefined;
|
|
14976
15615
|
};
|
|
@@ -15370,7 +16009,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15370
16009
|
paddingMedium: string;
|
|
15371
16010
|
paddingLarge: string;
|
|
15372
16011
|
clearSize: string;
|
|
15373
|
-
},
|
|
16012
|
+
}, {
|
|
16013
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16014
|
+
height: string;
|
|
16015
|
+
width: string;
|
|
16016
|
+
borderRadius: string;
|
|
16017
|
+
color: string;
|
|
16018
|
+
colorHover: string;
|
|
16019
|
+
railInsetHorizontalBottom: string;
|
|
16020
|
+
railInsetHorizontalTop: string;
|
|
16021
|
+
railInsetVerticalRight: string;
|
|
16022
|
+
railInsetVerticalLeft: string;
|
|
16023
|
+
railColor: string;
|
|
16024
|
+
}, any>;
|
|
16025
|
+
}>;
|
|
15374
16026
|
}>>;
|
|
15375
16027
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
15376
16028
|
panelColor: string;
|
|
@@ -15666,7 +16318,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15666
16318
|
paddingMedium: string;
|
|
15667
16319
|
paddingLarge: string;
|
|
15668
16320
|
clearSize: string;
|
|
15669
|
-
},
|
|
16321
|
+
}, {
|
|
16322
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16323
|
+
height: string;
|
|
16324
|
+
width: string;
|
|
16325
|
+
borderRadius: string;
|
|
16326
|
+
color: string;
|
|
16327
|
+
colorHover: string;
|
|
16328
|
+
railInsetHorizontalBottom: string;
|
|
16329
|
+
railInsetHorizontalTop: string;
|
|
16330
|
+
railInsetVerticalRight: string;
|
|
16331
|
+
railInsetVerticalLeft: string;
|
|
16332
|
+
railColor: string;
|
|
16333
|
+
}, any>;
|
|
16334
|
+
}>;
|
|
15670
16335
|
}>>>;
|
|
15671
16336
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
15672
16337
|
panelColor: string;
|
|
@@ -15962,21 +16627,34 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15962
16627
|
paddingMedium: string;
|
|
15963
16628
|
paddingLarge: string;
|
|
15964
16629
|
clearSize: string;
|
|
15965
|
-
},
|
|
16630
|
+
}, {
|
|
16631
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16632
|
+
height: string;
|
|
16633
|
+
width: string;
|
|
16634
|
+
borderRadius: string;
|
|
16635
|
+
color: string;
|
|
16636
|
+
colorHover: string;
|
|
16637
|
+
railInsetHorizontalBottom: string;
|
|
16638
|
+
railInsetHorizontalTop: string;
|
|
16639
|
+
railInsetVerticalRight: string;
|
|
16640
|
+
railInsetVerticalLeft: string;
|
|
16641
|
+
railColor: string;
|
|
16642
|
+
}, any>;
|
|
16643
|
+
}>;
|
|
15966
16644
|
}>>>;
|
|
15967
16645
|
}>> & Readonly<{}>, {
|
|
15968
16646
|
to: string | boolean | HTMLElement;
|
|
15969
16647
|
disabled: boolean | undefined;
|
|
15970
16648
|
show: boolean | undefined;
|
|
15971
16649
|
format: string;
|
|
15972
|
-
bordered: boolean | undefined;
|
|
15973
16650
|
showIcon: boolean;
|
|
15974
|
-
|
|
16651
|
+
bordered: boolean | undefined;
|
|
15975
16652
|
clearable: boolean;
|
|
15976
16653
|
defaultValue: number | null;
|
|
15977
|
-
|
|
15978
|
-
use12Hours: boolean;
|
|
16654
|
+
placement: PopoverPlacement;
|
|
15979
16655
|
inputReadonly: boolean;
|
|
16656
|
+
use12Hours: boolean;
|
|
16657
|
+
stateful: boolean;
|
|
15980
16658
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
15981
16659
|
NSwitch: DefineComponent<ExtractPropTypes<{
|
|
15982
16660
|
readonly size: {
|
|
@@ -16419,7 +17097,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16419
17097
|
paddingMedium: string;
|
|
16420
17098
|
paddingLarge: string;
|
|
16421
17099
|
clearSize: string;
|
|
16422
|
-
},
|
|
17100
|
+
}, {
|
|
17101
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17102
|
+
height: string;
|
|
17103
|
+
width: string;
|
|
17104
|
+
borderRadius: string;
|
|
17105
|
+
color: string;
|
|
17106
|
+
colorHover: string;
|
|
17107
|
+
railInsetHorizontalBottom: string;
|
|
17108
|
+
railInsetHorizontalTop: string;
|
|
17109
|
+
railInsetVerticalRight: string;
|
|
17110
|
+
railInsetVerticalLeft: string;
|
|
17111
|
+
railColor: string;
|
|
17112
|
+
}, any>;
|
|
17113
|
+
}>;
|
|
16423
17114
|
Button: Theme<"Button", {
|
|
16424
17115
|
heightTiny: string;
|
|
16425
17116
|
heightSmall: string;
|
|
@@ -16701,7 +17392,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16701
17392
|
paddingMedium: string;
|
|
16702
17393
|
paddingLarge: string;
|
|
16703
17394
|
clearSize: string;
|
|
16704
|
-
},
|
|
17395
|
+
}, {
|
|
17396
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17397
|
+
height: string;
|
|
17398
|
+
width: string;
|
|
17399
|
+
borderRadius: string;
|
|
17400
|
+
color: string;
|
|
17401
|
+
colorHover: string;
|
|
17402
|
+
railInsetHorizontalBottom: string;
|
|
17403
|
+
railInsetHorizontalTop: string;
|
|
17404
|
+
railInsetVerticalRight: string;
|
|
17405
|
+
railInsetVerticalLeft: string;
|
|
17406
|
+
railColor: string;
|
|
17407
|
+
}, any>;
|
|
17408
|
+
}>;
|
|
16705
17409
|
Button: Theme<"Button", {
|
|
16706
17410
|
heightTiny: string;
|
|
16707
17411
|
heightSmall: string;
|
|
@@ -16983,7 +17687,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16983
17687
|
paddingMedium: string;
|
|
16984
17688
|
paddingLarge: string;
|
|
16985
17689
|
clearSize: string;
|
|
16986
|
-
},
|
|
17690
|
+
}, {
|
|
17691
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17692
|
+
height: string;
|
|
17693
|
+
width: string;
|
|
17694
|
+
borderRadius: string;
|
|
17695
|
+
color: string;
|
|
17696
|
+
colorHover: string;
|
|
17697
|
+
railInsetHorizontalBottom: string;
|
|
17698
|
+
railInsetHorizontalTop: string;
|
|
17699
|
+
railInsetVerticalRight: string;
|
|
17700
|
+
railInsetVerticalLeft: string;
|
|
17701
|
+
railColor: string;
|
|
17702
|
+
}, any>;
|
|
17703
|
+
}>;
|
|
16987
17704
|
Button: Theme<"Button", {
|
|
16988
17705
|
heightTiny: string;
|
|
16989
17706
|
heightSmall: string;
|
|
@@ -17337,7 +18054,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17337
18054
|
paddingMedium: string;
|
|
17338
18055
|
paddingLarge: string;
|
|
17339
18056
|
clearSize: string;
|
|
17340
|
-
},
|
|
18057
|
+
}, {
|
|
18058
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18059
|
+
height: string;
|
|
18060
|
+
width: string;
|
|
18061
|
+
borderRadius: string;
|
|
18062
|
+
color: string;
|
|
18063
|
+
colorHover: string;
|
|
18064
|
+
railInsetHorizontalBottom: string;
|
|
18065
|
+
railInsetHorizontalTop: string;
|
|
18066
|
+
railInsetVerticalRight: string;
|
|
18067
|
+
railInsetVerticalLeft: string;
|
|
18068
|
+
railColor: string;
|
|
18069
|
+
}, any>;
|
|
18070
|
+
}>;
|
|
17341
18071
|
Button: Theme<"Button", {
|
|
17342
18072
|
heightTiny: string;
|
|
17343
18073
|
heightSmall: string;
|
|
@@ -17619,7 +18349,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17619
18349
|
paddingMedium: string;
|
|
17620
18350
|
paddingLarge: string;
|
|
17621
18351
|
clearSize: string;
|
|
17622
|
-
},
|
|
18352
|
+
}, {
|
|
18353
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18354
|
+
height: string;
|
|
18355
|
+
width: string;
|
|
18356
|
+
borderRadius: string;
|
|
18357
|
+
color: string;
|
|
18358
|
+
colorHover: string;
|
|
18359
|
+
railInsetHorizontalBottom: string;
|
|
18360
|
+
railInsetHorizontalTop: string;
|
|
18361
|
+
railInsetVerticalRight: string;
|
|
18362
|
+
railInsetVerticalLeft: string;
|
|
18363
|
+
railColor: string;
|
|
18364
|
+
}, any>;
|
|
18365
|
+
}>;
|
|
17623
18366
|
Button: Theme<"Button", {
|
|
17624
18367
|
heightTiny: string;
|
|
17625
18368
|
heightSmall: string;
|
|
@@ -17901,7 +18644,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17901
18644
|
paddingMedium: string;
|
|
17902
18645
|
paddingLarge: string;
|
|
17903
18646
|
clearSize: string;
|
|
17904
|
-
},
|
|
18647
|
+
}, {
|
|
18648
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18649
|
+
height: string;
|
|
18650
|
+
width: string;
|
|
18651
|
+
borderRadius: string;
|
|
18652
|
+
color: string;
|
|
18653
|
+
colorHover: string;
|
|
18654
|
+
railInsetHorizontalBottom: string;
|
|
18655
|
+
railInsetHorizontalTop: string;
|
|
18656
|
+
railInsetVerticalRight: string;
|
|
18657
|
+
railInsetVerticalLeft: string;
|
|
18658
|
+
railColor: string;
|
|
18659
|
+
}, any>;
|
|
18660
|
+
}>;
|
|
17905
18661
|
Button: Theme<"Button", {
|
|
17906
18662
|
heightTiny: string;
|
|
17907
18663
|
heightSmall: string;
|
|
@@ -18113,10 +18869,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18113
18869
|
readonly show: boolean | undefined;
|
|
18114
18870
|
readonly placement: PopoverPlacement;
|
|
18115
18871
|
readonly defaultShow: boolean;
|
|
18116
|
-
readonly actions: ActionType[];
|
|
18117
|
-
readonly showAlpha: boolean;
|
|
18118
18872
|
readonly modes: ColorPickerMode[];
|
|
18873
|
+
readonly showAlpha: boolean;
|
|
18119
18874
|
readonly showPreview: boolean;
|
|
18875
|
+
readonly actions: ActionType[];
|
|
18120
18876
|
}, SlotsType<ColorPickerSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
18121
18877
|
NCheckbox: DefineComponent<ExtractPropTypes<{
|
|
18122
18878
|
size: PropType<"small" | "medium" | "large">;
|
|
@@ -18762,7 +19518,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18762
19518
|
arrowOffsetVertical: string;
|
|
18763
19519
|
arrowHeight: string;
|
|
18764
19520
|
padding: string;
|
|
18765
|
-
},
|
|
19521
|
+
}, {
|
|
19522
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19523
|
+
height: string;
|
|
19524
|
+
width: string;
|
|
19525
|
+
borderRadius: string;
|
|
19526
|
+
color: string;
|
|
19527
|
+
colorHover: string;
|
|
19528
|
+
railInsetHorizontalBottom: string;
|
|
19529
|
+
railInsetHorizontalTop: string;
|
|
19530
|
+
railInsetVerticalRight: string;
|
|
19531
|
+
railInsetVerticalLeft: string;
|
|
19532
|
+
railColor: string;
|
|
19533
|
+
}, any>;
|
|
19534
|
+
}>;
|
|
18766
19535
|
}>;
|
|
18767
19536
|
Scrollbar: Theme<"Scrollbar", {
|
|
18768
19537
|
height: string;
|
|
@@ -18974,7 +19743,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18974
19743
|
arrowOffsetVertical: string;
|
|
18975
19744
|
arrowHeight: string;
|
|
18976
19745
|
padding: string;
|
|
18977
|
-
},
|
|
19746
|
+
}, {
|
|
19747
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19748
|
+
height: string;
|
|
19749
|
+
width: string;
|
|
19750
|
+
borderRadius: string;
|
|
19751
|
+
color: string;
|
|
19752
|
+
colorHover: string;
|
|
19753
|
+
railInsetHorizontalBottom: string;
|
|
19754
|
+
railInsetHorizontalTop: string;
|
|
19755
|
+
railInsetVerticalRight: string;
|
|
19756
|
+
railInsetVerticalLeft: string;
|
|
19757
|
+
railColor: string;
|
|
19758
|
+
}, any>;
|
|
19759
|
+
}>;
|
|
18978
19760
|
}>;
|
|
18979
19761
|
Scrollbar: Theme<"Scrollbar", {
|
|
18980
19762
|
height: string;
|
|
@@ -19186,7 +19968,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19186
19968
|
arrowOffsetVertical: string;
|
|
19187
19969
|
arrowHeight: string;
|
|
19188
19970
|
padding: string;
|
|
19189
|
-
},
|
|
19971
|
+
}, {
|
|
19972
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19973
|
+
height: string;
|
|
19974
|
+
width: string;
|
|
19975
|
+
borderRadius: string;
|
|
19976
|
+
color: string;
|
|
19977
|
+
colorHover: string;
|
|
19978
|
+
railInsetHorizontalBottom: string;
|
|
19979
|
+
railInsetHorizontalTop: string;
|
|
19980
|
+
railInsetVerticalRight: string;
|
|
19981
|
+
railInsetVerticalLeft: string;
|
|
19982
|
+
railColor: string;
|
|
19983
|
+
}, any>;
|
|
19984
|
+
}>;
|
|
19190
19985
|
}>;
|
|
19191
19986
|
Scrollbar: Theme<"Scrollbar", {
|
|
19192
19987
|
height: string;
|
|
@@ -19482,7 +20277,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19482
20277
|
arrowOffsetVertical: string;
|
|
19483
20278
|
arrowHeight: string;
|
|
19484
20279
|
padding: string;
|
|
19485
|
-
},
|
|
20280
|
+
}, {
|
|
20281
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
20282
|
+
height: string;
|
|
20283
|
+
width: string;
|
|
20284
|
+
borderRadius: string;
|
|
20285
|
+
color: string;
|
|
20286
|
+
colorHover: string;
|
|
20287
|
+
railInsetHorizontalBottom: string;
|
|
20288
|
+
railInsetHorizontalTop: string;
|
|
20289
|
+
railInsetVerticalRight: string;
|
|
20290
|
+
railInsetVerticalLeft: string;
|
|
20291
|
+
railColor: string;
|
|
20292
|
+
}, any>;
|
|
20293
|
+
}>;
|
|
19486
20294
|
}>;
|
|
19487
20295
|
Scrollbar: Theme<"Scrollbar", {
|
|
19488
20296
|
height: string;
|
|
@@ -19589,7 +20397,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19589
20397
|
arrowOffsetVertical: string;
|
|
19590
20398
|
arrowHeight: string;
|
|
19591
20399
|
padding: string;
|
|
19592
|
-
},
|
|
20400
|
+
}, {
|
|
20401
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
20402
|
+
height: string;
|
|
20403
|
+
width: string;
|
|
20404
|
+
borderRadius: string;
|
|
20405
|
+
color: string;
|
|
20406
|
+
colorHover: string;
|
|
20407
|
+
railInsetHorizontalBottom: string;
|
|
20408
|
+
railInsetHorizontalTop: string;
|
|
20409
|
+
railInsetVerticalRight: string;
|
|
20410
|
+
railInsetVerticalLeft: string;
|
|
20411
|
+
railColor: string;
|
|
20412
|
+
}, any>;
|
|
20413
|
+
}>> | undefined;
|
|
19593
20414
|
} | undefined;
|
|
19594
20415
|
} | undefined;
|
|
19595
20416
|
Scrollbar?: {
|
|
@@ -19902,7 +20723,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19902
20723
|
arrowOffsetVertical: string;
|
|
19903
20724
|
arrowHeight: string;
|
|
19904
20725
|
padding: string;
|
|
19905
|
-
},
|
|
20726
|
+
}, {
|
|
20727
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
20728
|
+
height: string;
|
|
20729
|
+
width: string;
|
|
20730
|
+
borderRadius: string;
|
|
20731
|
+
color: string;
|
|
20732
|
+
colorHover: string;
|
|
20733
|
+
railInsetHorizontalBottom: string;
|
|
20734
|
+
railInsetHorizontalTop: string;
|
|
20735
|
+
railInsetVerticalRight: string;
|
|
20736
|
+
railInsetVerticalLeft: string;
|
|
20737
|
+
railColor: string;
|
|
20738
|
+
}, any>;
|
|
20739
|
+
}>;
|
|
19906
20740
|
}>;
|
|
19907
20741
|
Scrollbar: Theme<"Scrollbar", {
|
|
19908
20742
|
height: string;
|
|
@@ -20114,13 +20948,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20114
20948
|
arrowOffsetVertical: string;
|
|
20115
20949
|
arrowHeight: string;
|
|
20116
20950
|
padding: string;
|
|
20117
|
-
},
|
|
20118
|
-
|
|
20119
|
-
|
|
20120
|
-
|
|
20121
|
-
|
|
20122
|
-
|
|
20123
|
-
|
|
20951
|
+
}, {
|
|
20952
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
20953
|
+
height: string;
|
|
20954
|
+
width: string;
|
|
20955
|
+
borderRadius: string;
|
|
20956
|
+
color: string;
|
|
20957
|
+
colorHover: string;
|
|
20958
|
+
railInsetHorizontalBottom: string;
|
|
20959
|
+
railInsetHorizontalTop: string;
|
|
20960
|
+
railInsetVerticalRight: string;
|
|
20961
|
+
railInsetVerticalLeft: string;
|
|
20962
|
+
railColor: string;
|
|
20963
|
+
}, any>;
|
|
20964
|
+
}>;
|
|
20965
|
+
}>;
|
|
20966
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
20967
|
+
height: string;
|
|
20968
|
+
width: string;
|
|
20969
|
+
borderRadius: string;
|
|
20970
|
+
color: string;
|
|
20124
20971
|
colorHover: string;
|
|
20125
20972
|
railInsetHorizontalBottom: string;
|
|
20126
20973
|
railInsetHorizontalTop: string;
|
|
@@ -20326,7 +21173,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20326
21173
|
arrowOffsetVertical: string;
|
|
20327
21174
|
arrowHeight: string;
|
|
20328
21175
|
padding: string;
|
|
20329
|
-
},
|
|
21176
|
+
}, {
|
|
21177
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21178
|
+
height: string;
|
|
21179
|
+
width: string;
|
|
21180
|
+
borderRadius: string;
|
|
21181
|
+
color: string;
|
|
21182
|
+
colorHover: string;
|
|
21183
|
+
railInsetHorizontalBottom: string;
|
|
21184
|
+
railInsetHorizontalTop: string;
|
|
21185
|
+
railInsetVerticalRight: string;
|
|
21186
|
+
railInsetVerticalLeft: string;
|
|
21187
|
+
railColor: string;
|
|
21188
|
+
}, any>;
|
|
21189
|
+
}>;
|
|
20330
21190
|
}>;
|
|
20331
21191
|
Scrollbar: Theme<"Scrollbar", {
|
|
20332
21192
|
height: string;
|
|
@@ -20394,23 +21254,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20394
21254
|
readonly separator: string;
|
|
20395
21255
|
readonly multiple: boolean;
|
|
20396
21256
|
readonly bordered: boolean | undefined;
|
|
21257
|
+
readonly clearable: boolean;
|
|
21258
|
+
readonly defaultValue: Value | null;
|
|
20397
21259
|
readonly placement: PopoverPlacement;
|
|
20398
|
-
readonly
|
|
20399
|
-
readonly virtualScroll: boolean;
|
|
20400
|
-
readonly valueField: string;
|
|
21260
|
+
readonly allowCheckingNotLoaded: boolean;
|
|
20401
21261
|
readonly filterable: boolean;
|
|
20402
|
-
readonly
|
|
21262
|
+
readonly disabledField: string;
|
|
20403
21263
|
readonly expandTrigger: ExpandTrigger;
|
|
20404
21264
|
readonly clearFilterAfterSelect: boolean;
|
|
20405
|
-
readonly defaultValue: Value | null;
|
|
20406
21265
|
readonly remote: boolean;
|
|
20407
|
-
readonly childrenField: string;
|
|
20408
|
-
readonly allowCheckingNotLoaded: boolean;
|
|
20409
21266
|
readonly cascade: boolean;
|
|
20410
|
-
readonly checkStrategy: CheckStrategy;
|
|
20411
|
-
readonly disabledField: string;
|
|
20412
21267
|
readonly leafOnly: boolean;
|
|
20413
21268
|
readonly showPath: boolean;
|
|
21269
|
+
readonly virtualScroll: boolean;
|
|
21270
|
+
readonly checkStrategy: CheckStrategy;
|
|
21271
|
+
readonly valueField: string;
|
|
21272
|
+
readonly labelField: string;
|
|
21273
|
+
readonly childrenField: string;
|
|
20414
21274
|
}, SlotsType<CascaderSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
20415
21275
|
NTooltip: DefineComponent<ExtractPropTypes<{
|
|
20416
21276
|
theme: PropType<Theme<"Tooltip", {
|
|
@@ -20433,7 +21293,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20433
21293
|
arrowOffsetVertical: string;
|
|
20434
21294
|
arrowHeight: string;
|
|
20435
21295
|
padding: string;
|
|
20436
|
-
},
|
|
21296
|
+
}, {
|
|
21297
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21298
|
+
height: string;
|
|
21299
|
+
width: string;
|
|
21300
|
+
borderRadius: string;
|
|
21301
|
+
color: string;
|
|
21302
|
+
colorHover: string;
|
|
21303
|
+
railInsetHorizontalBottom: string;
|
|
21304
|
+
railInsetHorizontalTop: string;
|
|
21305
|
+
railInsetVerticalRight: string;
|
|
21306
|
+
railInsetVerticalLeft: string;
|
|
21307
|
+
railColor: string;
|
|
21308
|
+
}, any>;
|
|
21309
|
+
}>;
|
|
20437
21310
|
}>>;
|
|
20438
21311
|
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
20439
21312
|
borderRadius: string;
|
|
@@ -20455,7 +21328,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20455
21328
|
arrowOffsetVertical: string;
|
|
20456
21329
|
arrowHeight: string;
|
|
20457
21330
|
padding: string;
|
|
20458
|
-
},
|
|
21331
|
+
}, {
|
|
21332
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21333
|
+
height: string;
|
|
21334
|
+
width: string;
|
|
21335
|
+
borderRadius: string;
|
|
21336
|
+
color: string;
|
|
21337
|
+
colorHover: string;
|
|
21338
|
+
railInsetHorizontalBottom: string;
|
|
21339
|
+
railInsetHorizontalTop: string;
|
|
21340
|
+
railInsetVerticalRight: string;
|
|
21341
|
+
railInsetVerticalLeft: string;
|
|
21342
|
+
railColor: string;
|
|
21343
|
+
}, any>;
|
|
21344
|
+
}>;
|
|
20459
21345
|
}>>>;
|
|
20460
21346
|
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
20461
21347
|
borderRadius: string;
|
|
@@ -20477,7 +21363,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20477
21363
|
arrowOffsetVertical: string;
|
|
20478
21364
|
arrowHeight: string;
|
|
20479
21365
|
padding: string;
|
|
20480
|
-
},
|
|
21366
|
+
}, {
|
|
21367
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21368
|
+
height: string;
|
|
21369
|
+
width: string;
|
|
21370
|
+
borderRadius: string;
|
|
21371
|
+
color: string;
|
|
21372
|
+
colorHover: string;
|
|
21373
|
+
railInsetHorizontalBottom: string;
|
|
21374
|
+
railInsetHorizontalTop: string;
|
|
21375
|
+
railInsetVerticalRight: string;
|
|
21376
|
+
railInsetVerticalLeft: string;
|
|
21377
|
+
railColor: string;
|
|
21378
|
+
}, any>;
|
|
21379
|
+
}>;
|
|
20481
21380
|
}>>>;
|
|
20482
21381
|
show: {
|
|
20483
21382
|
type: PropType<boolean | undefined>;
|
|
@@ -20502,7 +21401,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20502
21401
|
};
|
|
20503
21402
|
raw: BooleanConstructor;
|
|
20504
21403
|
placement: {
|
|
20505
|
-
type: PropType<
|
|
21404
|
+
type: PropType<FollowerPlacement>;
|
|
20506
21405
|
default: string;
|
|
20507
21406
|
};
|
|
20508
21407
|
x: NumberConstructor;
|
|
@@ -20600,12 +21499,36 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20600
21499
|
arrowOffsetVertical: string;
|
|
20601
21500
|
arrowHeight: string;
|
|
20602
21501
|
padding: string;
|
|
20603
|
-
},
|
|
21502
|
+
}, {
|
|
21503
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21504
|
+
height: string;
|
|
21505
|
+
width: string;
|
|
21506
|
+
borderRadius: string;
|
|
21507
|
+
color: string;
|
|
21508
|
+
colorHover: string;
|
|
21509
|
+
railInsetHorizontalBottom: string;
|
|
21510
|
+
railInsetHorizontalTop: string;
|
|
21511
|
+
railInsetVerticalRight: string;
|
|
21512
|
+
railInsetVerticalLeft: string;
|
|
21513
|
+
railColor: string;
|
|
21514
|
+
}, any>;
|
|
21515
|
+
}>;
|
|
20604
21516
|
};
|
|
20605
21517
|
peerOverrides: {
|
|
20606
21518
|
Popover?: {
|
|
20607
21519
|
peers?: {
|
|
20608
|
-
|
|
21520
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
21521
|
+
height: string;
|
|
21522
|
+
width: string;
|
|
21523
|
+
borderRadius: string;
|
|
21524
|
+
color: string;
|
|
21525
|
+
colorHover: string;
|
|
21526
|
+
railInsetHorizontalBottom: string;
|
|
21527
|
+
railInsetHorizontalTop: string;
|
|
21528
|
+
railInsetVerticalRight: string;
|
|
21529
|
+
railInsetVerticalLeft: string;
|
|
21530
|
+
railColor: string;
|
|
21531
|
+
}, any>> | undefined;
|
|
20609
21532
|
} | undefined;
|
|
20610
21533
|
} | undefined;
|
|
20611
21534
|
};
|
|
@@ -20640,7 +21563,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20640
21563
|
arrowOffsetVertical: string;
|
|
20641
21564
|
arrowHeight: string;
|
|
20642
21565
|
padding: string;
|
|
20643
|
-
},
|
|
21566
|
+
}, {
|
|
21567
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21568
|
+
height: string;
|
|
21569
|
+
width: string;
|
|
21570
|
+
borderRadius: string;
|
|
21571
|
+
color: string;
|
|
21572
|
+
colorHover: string;
|
|
21573
|
+
railInsetHorizontalBottom: string;
|
|
21574
|
+
railInsetHorizontalTop: string;
|
|
21575
|
+
railInsetVerticalRight: string;
|
|
21576
|
+
railInsetVerticalLeft: string;
|
|
21577
|
+
railColor: string;
|
|
21578
|
+
}, any>;
|
|
21579
|
+
}>;
|
|
20644
21580
|
}>>;
|
|
20645
21581
|
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
20646
21582
|
borderRadius: string;
|
|
@@ -20662,7 +21598,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20662
21598
|
arrowOffsetVertical: string;
|
|
20663
21599
|
arrowHeight: string;
|
|
20664
21600
|
padding: string;
|
|
20665
|
-
},
|
|
21601
|
+
}, {
|
|
21602
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21603
|
+
height: string;
|
|
21604
|
+
width: string;
|
|
21605
|
+
borderRadius: string;
|
|
21606
|
+
color: string;
|
|
21607
|
+
colorHover: string;
|
|
21608
|
+
railInsetHorizontalBottom: string;
|
|
21609
|
+
railInsetHorizontalTop: string;
|
|
21610
|
+
railInsetVerticalRight: string;
|
|
21611
|
+
railInsetVerticalLeft: string;
|
|
21612
|
+
railColor: string;
|
|
21613
|
+
}, any>;
|
|
21614
|
+
}>;
|
|
20666
21615
|
}>>>;
|
|
20667
21616
|
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
20668
21617
|
borderRadius: string;
|
|
@@ -20684,7 +21633,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20684
21633
|
arrowOffsetVertical: string;
|
|
20685
21634
|
arrowHeight: string;
|
|
20686
21635
|
padding: string;
|
|
20687
|
-
},
|
|
21636
|
+
}, {
|
|
21637
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21638
|
+
height: string;
|
|
21639
|
+
width: string;
|
|
21640
|
+
borderRadius: string;
|
|
21641
|
+
color: string;
|
|
21642
|
+
colorHover: string;
|
|
21643
|
+
railInsetHorizontalBottom: string;
|
|
21644
|
+
railInsetHorizontalTop: string;
|
|
21645
|
+
railInsetVerticalRight: string;
|
|
21646
|
+
railInsetVerticalLeft: string;
|
|
21647
|
+
railColor: string;
|
|
21648
|
+
}, any>;
|
|
21649
|
+
}>;
|
|
20688
21650
|
}>>>;
|
|
20689
21651
|
show: {
|
|
20690
21652
|
type: PropType<boolean | undefined>;
|
|
@@ -20709,7 +21671,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20709
21671
|
};
|
|
20710
21672
|
raw: BooleanConstructor;
|
|
20711
21673
|
placement: {
|
|
20712
|
-
type: PropType<
|
|
21674
|
+
type: PropType<FollowerPlacement>;
|
|
20713
21675
|
default: string;
|
|
20714
21676
|
};
|
|
20715
21677
|
x: NumberConstructor;
|
|
@@ -20784,23 +21746,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20784
21746
|
width: number | "trigger";
|
|
20785
21747
|
duration: number;
|
|
20786
21748
|
raw: boolean;
|
|
20787
|
-
placement:
|
|
20788
|
-
overlap: boolean;
|
|
20789
|
-
scrollable: boolean;
|
|
20790
|
-
trigger: PopoverTrigger;
|
|
21749
|
+
placement: FollowerPlacement;
|
|
20791
21750
|
showArrow: boolean;
|
|
21751
|
+
trigger: PopoverTrigger;
|
|
21752
|
+
arrow: boolean | undefined;
|
|
21753
|
+
defaultShow: boolean;
|
|
20792
21754
|
delay: number;
|
|
20793
21755
|
arrowPointToCenter: boolean;
|
|
20794
21756
|
displayDirective: "show" | "if";
|
|
21757
|
+
animated: boolean;
|
|
21758
|
+
overlap: boolean;
|
|
20795
21759
|
keepAliveOnHover: boolean;
|
|
21760
|
+
scrollable: boolean;
|
|
20796
21761
|
internalDeactivateImmediately: boolean;
|
|
20797
|
-
animated: boolean;
|
|
20798
|
-
internalTrapFocus: boolean;
|
|
20799
|
-
defaultShow: boolean;
|
|
20800
21762
|
internalSyncTargetWithParent: boolean;
|
|
20801
21763
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
21764
|
+
internalTrapFocus: boolean;
|
|
20802
21765
|
internalExtraClass: string[];
|
|
20803
|
-
arrow: boolean | undefined;
|
|
20804
21766
|
}, SlotsType<TooltipSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
20805
21767
|
NDropdown: DefineComponent<ExtractPropTypes<{
|
|
20806
21768
|
readonly theme: PropType< Theme<"Dropdown", {
|
|
@@ -20871,7 +21833,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20871
21833
|
arrowOffsetVertical: string;
|
|
20872
21834
|
arrowHeight: string;
|
|
20873
21835
|
padding: string;
|
|
20874
|
-
},
|
|
21836
|
+
}, {
|
|
21837
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21838
|
+
height: string;
|
|
21839
|
+
width: string;
|
|
21840
|
+
borderRadius: string;
|
|
21841
|
+
color: string;
|
|
21842
|
+
colorHover: string;
|
|
21843
|
+
railInsetHorizontalBottom: string;
|
|
21844
|
+
railInsetHorizontalTop: string;
|
|
21845
|
+
railInsetVerticalRight: string;
|
|
21846
|
+
railInsetVerticalLeft: string;
|
|
21847
|
+
railColor: string;
|
|
21848
|
+
}, any>;
|
|
21849
|
+
}>;
|
|
20875
21850
|
}>>;
|
|
20876
21851
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
20877
21852
|
optionHeightSmall: string;
|
|
@@ -20941,7 +21916,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20941
21916
|
arrowOffsetVertical: string;
|
|
20942
21917
|
arrowHeight: string;
|
|
20943
21918
|
padding: string;
|
|
20944
|
-
},
|
|
21919
|
+
}, {
|
|
21920
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21921
|
+
height: string;
|
|
21922
|
+
width: string;
|
|
21923
|
+
borderRadius: string;
|
|
21924
|
+
color: string;
|
|
21925
|
+
colorHover: string;
|
|
21926
|
+
railInsetHorizontalBottom: string;
|
|
21927
|
+
railInsetHorizontalTop: string;
|
|
21928
|
+
railInsetVerticalRight: string;
|
|
21929
|
+
railInsetVerticalLeft: string;
|
|
21930
|
+
railColor: string;
|
|
21931
|
+
}, any>;
|
|
21932
|
+
}>;
|
|
20945
21933
|
}>>>;
|
|
20946
21934
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
20947
21935
|
optionHeightSmall: string;
|
|
@@ -21011,7 +21999,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21011
21999
|
arrowOffsetVertical: string;
|
|
21012
22000
|
arrowHeight: string;
|
|
21013
22001
|
padding: string;
|
|
21014
|
-
},
|
|
22002
|
+
}, {
|
|
22003
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22004
|
+
height: string;
|
|
22005
|
+
width: string;
|
|
22006
|
+
borderRadius: string;
|
|
22007
|
+
color: string;
|
|
22008
|
+
colorHover: string;
|
|
22009
|
+
railInsetHorizontalBottom: string;
|
|
22010
|
+
railInsetHorizontalTop: string;
|
|
22011
|
+
railInsetVerticalRight: string;
|
|
22012
|
+
railInsetVerticalLeft: string;
|
|
22013
|
+
railColor: string;
|
|
22014
|
+
}, any>;
|
|
22015
|
+
}>;
|
|
21015
22016
|
}>>>;
|
|
21016
22017
|
readonly animated: {
|
|
21017
22018
|
readonly type: BooleanConstructor;
|
|
@@ -21205,12 +22206,36 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21205
22206
|
arrowOffsetVertical: string;
|
|
21206
22207
|
arrowHeight: string;
|
|
21207
22208
|
padding: string;
|
|
21208
|
-
},
|
|
22209
|
+
}, {
|
|
22210
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22211
|
+
height: string;
|
|
22212
|
+
width: string;
|
|
22213
|
+
borderRadius: string;
|
|
22214
|
+
color: string;
|
|
22215
|
+
colorHover: string;
|
|
22216
|
+
railInsetHorizontalBottom: string;
|
|
22217
|
+
railInsetHorizontalTop: string;
|
|
22218
|
+
railInsetVerticalRight: string;
|
|
22219
|
+
railInsetVerticalLeft: string;
|
|
22220
|
+
railColor: string;
|
|
22221
|
+
}, any>;
|
|
22222
|
+
}>;
|
|
21209
22223
|
};
|
|
21210
22224
|
peerOverrides: {
|
|
21211
22225
|
Popover?: {
|
|
21212
22226
|
peers?: {
|
|
21213
|
-
|
|
22227
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
22228
|
+
height: string;
|
|
22229
|
+
width: string;
|
|
22230
|
+
borderRadius: string;
|
|
22231
|
+
color: string;
|
|
22232
|
+
colorHover: string;
|
|
22233
|
+
railInsetHorizontalBottom: string;
|
|
22234
|
+
railInsetHorizontalTop: string;
|
|
22235
|
+
railInsetVerticalRight: string;
|
|
22236
|
+
railInsetVerticalLeft: string;
|
|
22237
|
+
railColor: string;
|
|
22238
|
+
}, any>> | undefined;
|
|
21214
22239
|
} | undefined;
|
|
21215
22240
|
} | undefined;
|
|
21216
22241
|
};
|
|
@@ -21291,7 +22316,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21291
22316
|
arrowOffsetVertical: string;
|
|
21292
22317
|
arrowHeight: string;
|
|
21293
22318
|
padding: string;
|
|
21294
|
-
},
|
|
22319
|
+
}, {
|
|
22320
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22321
|
+
height: string;
|
|
22322
|
+
width: string;
|
|
22323
|
+
borderRadius: string;
|
|
22324
|
+
color: string;
|
|
22325
|
+
colorHover: string;
|
|
22326
|
+
railInsetHorizontalBottom: string;
|
|
22327
|
+
railInsetHorizontalTop: string;
|
|
22328
|
+
railInsetVerticalRight: string;
|
|
22329
|
+
railInsetVerticalLeft: string;
|
|
22330
|
+
railColor: string;
|
|
22331
|
+
}, any>;
|
|
22332
|
+
}>;
|
|
21295
22333
|
}>>;
|
|
21296
22334
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
21297
22335
|
optionHeightSmall: string;
|
|
@@ -21361,7 +22399,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21361
22399
|
arrowOffsetVertical: string;
|
|
21362
22400
|
arrowHeight: string;
|
|
21363
22401
|
padding: string;
|
|
21364
|
-
},
|
|
22402
|
+
}, {
|
|
22403
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22404
|
+
height: string;
|
|
22405
|
+
width: string;
|
|
22406
|
+
borderRadius: string;
|
|
22407
|
+
color: string;
|
|
22408
|
+
colorHover: string;
|
|
22409
|
+
railInsetHorizontalBottom: string;
|
|
22410
|
+
railInsetHorizontalTop: string;
|
|
22411
|
+
railInsetVerticalRight: string;
|
|
22412
|
+
railInsetVerticalLeft: string;
|
|
22413
|
+
railColor: string;
|
|
22414
|
+
}, any>;
|
|
22415
|
+
}>;
|
|
21365
22416
|
}>>>;
|
|
21366
22417
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
21367
22418
|
optionHeightSmall: string;
|
|
@@ -21431,7 +22482,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21431
22482
|
arrowOffsetVertical: string;
|
|
21432
22483
|
arrowHeight: string;
|
|
21433
22484
|
padding: string;
|
|
21434
|
-
},
|
|
22485
|
+
}, {
|
|
22486
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22487
|
+
height: string;
|
|
22488
|
+
width: string;
|
|
22489
|
+
borderRadius: string;
|
|
22490
|
+
color: string;
|
|
22491
|
+
colorHover: string;
|
|
22492
|
+
railInsetHorizontalBottom: string;
|
|
22493
|
+
railInsetHorizontalTop: string;
|
|
22494
|
+
railInsetVerticalRight: string;
|
|
22495
|
+
railInsetVerticalLeft: string;
|
|
22496
|
+
railColor: string;
|
|
22497
|
+
}, any>;
|
|
22498
|
+
}>;
|
|
21435
22499
|
}>>>;
|
|
21436
22500
|
readonly animated: {
|
|
21437
22501
|
readonly type: BooleanConstructor;
|
|
@@ -21563,27 +22627,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21563
22627
|
readonly duration: number;
|
|
21564
22628
|
readonly raw: boolean;
|
|
21565
22629
|
readonly placement: PopoverPlacement;
|
|
21566
|
-
readonly
|
|
21567
|
-
readonly keyField: string;
|
|
21568
|
-
readonly scrollable: boolean;
|
|
21569
|
-
readonly trigger: PopoverTrigger;
|
|
21570
|
-
readonly labelField: string;
|
|
22630
|
+
readonly keyboard: boolean;
|
|
21571
22631
|
readonly showArrow: boolean;
|
|
22632
|
+
readonly trigger: PopoverTrigger;
|
|
22633
|
+
readonly arrow: boolean | undefined;
|
|
22634
|
+
readonly defaultShow: boolean;
|
|
21572
22635
|
readonly delay: number;
|
|
21573
22636
|
readonly arrowPointToCenter: boolean;
|
|
21574
22637
|
readonly displayDirective: "show" | "if";
|
|
22638
|
+
readonly animated: boolean;
|
|
22639
|
+
readonly overlap: boolean;
|
|
21575
22640
|
readonly keepAliveOnHover: boolean;
|
|
22641
|
+
readonly scrollable: boolean;
|
|
21576
22642
|
readonly internalDeactivateImmediately: boolean;
|
|
21577
|
-
readonly animated: boolean;
|
|
21578
|
-
readonly internalTrapFocus: boolean;
|
|
21579
|
-
readonly defaultShow: boolean;
|
|
21580
22643
|
readonly internalSyncTargetWithParent: boolean;
|
|
21581
22644
|
readonly internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
22645
|
+
readonly internalTrapFocus: boolean;
|
|
21582
22646
|
readonly internalExtraClass: string[];
|
|
21583
|
-
readonly
|
|
21584
|
-
readonly keyboard: boolean;
|
|
22647
|
+
readonly labelField: string;
|
|
21585
22648
|
readonly childrenField: string;
|
|
21586
22649
|
readonly inverted: boolean;
|
|
22650
|
+
readonly keyField: string;
|
|
21587
22651
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
21588
22652
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
21589
22653
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|