@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, InternalSelectionInst, ScrollbarInst } from 'naive-ui/es/_internal';
|
|
10
10
|
import { RtlItem } from 'naive-ui/es/config-provider/src/internal-interface';
|
|
11
|
-
import { ButtonSlots, SelectFilter, PopoverPlacement, SelectOption, PopoverProps, SelectRenderTag, SelectNodeProps, FormValidationStatus, SelectGroupOption, ThemeCommonVars, SelectSlots, PopoverTrigger, PopoverSlots, InputSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots, PopoverInst,
|
|
11
|
+
import { ButtonSlots, SelectFilter, PopoverPlacement, SelectOption, PopoverProps, SelectRenderTag, SelectNodeProps, FormValidationStatus, SelectGroupOption, ThemeCommonVars, SelectSlots, PopoverTrigger, PopoverSlots, InputSlots, InputNumberSlots, TimePickerProps, FollowerPlacement, DatePickerSlots, SwitchSlots, ColorPickerSlots, CheckboxInst, CascaderOption, CascaderSlots, PopoverInst, TooltipSlots, DropdownMenuProps, DropdownNodeProps, MenuOption, MenuGroupOption } from 'naive-ui';
|
|
12
12
|
import { VResizeObserverOnResize, FollowerInst, BinderInst, FollowerPlacement, VVirtualListScrollTo } from 'vueuc';
|
|
13
13
|
import { SelectMixedOption, Value, Size, SelectFallbackOption, OnUpdateValue, SelectIgnoredOption, SelectBaseOption, ValueAtom } from 'naive-ui/es/select/src/interface';
|
|
14
14
|
import { RenderLabel, RenderOption } from 'naive-ui/es/_internal/select-menu/src/interface';
|
|
@@ -29,8 +29,6 @@ import { HSLA, RGBA } from 'seemly';
|
|
|
29
29
|
import { OnUpdateChecked } from 'naive-ui/es/checkbox/src/interface';
|
|
30
30
|
import { UseFormItem } from 'naive-ui/es/_mixins/use-form-item';
|
|
31
31
|
import { Value, ExpandTrigger, OnLoad, Filter, OnUpdateValue, SelectMenuInstance, CascaderMenuInstance, ValueAtom, Key } from 'naive-ui/es/cascader/src/interface';
|
|
32
|
-
import { PopoverTrigger } from 'naive-ui/es/popover';
|
|
33
|
-
import { Placement } from 'vueuc/lib/binder/src/interface';
|
|
34
32
|
import { OnUpdateValue, DropdownMixedOption, RenderLabel, RenderIcon, RenderOption } from 'naive-ui/es/dropdown/src/interface';
|
|
35
33
|
import { MenuRenderOption, MenuIgnoredOption } from 'naive-ui/es/menu/src/interface';
|
|
36
34
|
declare const _default: DefineComponent<ExtractPropTypes<{
|
|
@@ -2589,10 +2587,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2589
2587
|
readonly focusable: boolean;
|
|
2590
2588
|
readonly bordered: boolean;
|
|
2591
2589
|
readonly tertiary: boolean;
|
|
2592
|
-
readonly keyboard: boolean;
|
|
2593
2590
|
readonly ghost: boolean;
|
|
2594
2591
|
readonly secondary: boolean;
|
|
2595
2592
|
readonly quaternary: boolean;
|
|
2593
|
+
readonly keyboard: boolean;
|
|
2596
2594
|
readonly iconPlacement: "left" | "right";
|
|
2597
2595
|
readonly attrType: "reset" | "submit" | "button";
|
|
2598
2596
|
readonly nativeFocusBehavior: boolean;
|
|
@@ -2927,7 +2925,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2927
2925
|
arrowOffsetVertical: string;
|
|
2928
2926
|
arrowHeight: string;
|
|
2929
2927
|
padding: string;
|
|
2930
|
-
},
|
|
2928
|
+
}, {
|
|
2929
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
2930
|
+
height: string;
|
|
2931
|
+
width: string;
|
|
2932
|
+
borderRadius: string;
|
|
2933
|
+
color: string;
|
|
2934
|
+
colorHover: string;
|
|
2935
|
+
railInsetHorizontalBottom: string;
|
|
2936
|
+
railInsetHorizontalTop: string;
|
|
2937
|
+
railInsetVerticalRight: string;
|
|
2938
|
+
railInsetVerticalLeft: string;
|
|
2939
|
+
railColor: string;
|
|
2940
|
+
}, any>;
|
|
2941
|
+
}>;
|
|
2931
2942
|
}>;
|
|
2932
2943
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
2933
2944
|
optionFontSizeTiny: string;
|
|
@@ -3068,7 +3079,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3068
3079
|
arrowOffsetVertical: string;
|
|
3069
3080
|
arrowHeight: string;
|
|
3070
3081
|
padding: string;
|
|
3071
|
-
},
|
|
3082
|
+
}, {
|
|
3083
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3084
|
+
height: string;
|
|
3085
|
+
width: string;
|
|
3086
|
+
borderRadius: string;
|
|
3087
|
+
color: string;
|
|
3088
|
+
colorHover: string;
|
|
3089
|
+
railInsetHorizontalBottom: string;
|
|
3090
|
+
railInsetHorizontalTop: string;
|
|
3091
|
+
railInsetVerticalRight: string;
|
|
3092
|
+
railInsetVerticalLeft: string;
|
|
3093
|
+
railColor: string;
|
|
3094
|
+
}, any>;
|
|
3095
|
+
}>;
|
|
3072
3096
|
}>;
|
|
3073
3097
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3074
3098
|
optionFontSizeTiny: string;
|
|
@@ -3209,7 +3233,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3209
3233
|
arrowOffsetVertical: string;
|
|
3210
3234
|
arrowHeight: string;
|
|
3211
3235
|
padding: string;
|
|
3212
|
-
},
|
|
3236
|
+
}, {
|
|
3237
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3238
|
+
height: string;
|
|
3239
|
+
width: string;
|
|
3240
|
+
borderRadius: string;
|
|
3241
|
+
color: string;
|
|
3242
|
+
colorHover: string;
|
|
3243
|
+
railInsetHorizontalBottom: string;
|
|
3244
|
+
railInsetHorizontalTop: string;
|
|
3245
|
+
railInsetVerticalRight: string;
|
|
3246
|
+
railInsetVerticalLeft: string;
|
|
3247
|
+
railColor: string;
|
|
3248
|
+
}, any>;
|
|
3249
|
+
}>;
|
|
3213
3250
|
}>;
|
|
3214
3251
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3215
3252
|
optionFontSizeTiny: string;
|
|
@@ -3429,7 +3466,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3429
3466
|
arrowOffsetVertical: string;
|
|
3430
3467
|
arrowHeight: string;
|
|
3431
3468
|
padding: string;
|
|
3432
|
-
},
|
|
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
|
+
}>;
|
|
3433
3483
|
}>;
|
|
3434
3484
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3435
3485
|
optionFontSizeTiny: string;
|
|
@@ -3515,7 +3565,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3515
3565
|
arrowOffsetVertical: string;
|
|
3516
3566
|
arrowHeight: string;
|
|
3517
3567
|
padding: string;
|
|
3518
|
-
},
|
|
3568
|
+
}, {
|
|
3569
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3570
|
+
height: string;
|
|
3571
|
+
width: string;
|
|
3572
|
+
borderRadius: string;
|
|
3573
|
+
color: string;
|
|
3574
|
+
colorHover: string;
|
|
3575
|
+
railInsetHorizontalBottom: string;
|
|
3576
|
+
railInsetHorizontalTop: string;
|
|
3577
|
+
railInsetVerticalRight: string;
|
|
3578
|
+
railInsetVerticalLeft: string;
|
|
3579
|
+
railColor: string;
|
|
3580
|
+
}, any>;
|
|
3581
|
+
}>> | undefined;
|
|
3519
3582
|
} | undefined;
|
|
3520
3583
|
} | undefined;
|
|
3521
3584
|
InternalSelectMenu?: {
|
|
@@ -3751,7 +3814,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3751
3814
|
arrowOffsetVertical: string;
|
|
3752
3815
|
arrowHeight: string;
|
|
3753
3816
|
padding: string;
|
|
3754
|
-
},
|
|
3817
|
+
}, {
|
|
3818
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3819
|
+
height: string;
|
|
3820
|
+
width: string;
|
|
3821
|
+
borderRadius: string;
|
|
3822
|
+
color: string;
|
|
3823
|
+
colorHover: string;
|
|
3824
|
+
railInsetHorizontalBottom: string;
|
|
3825
|
+
railInsetHorizontalTop: string;
|
|
3826
|
+
railInsetVerticalRight: string;
|
|
3827
|
+
railInsetVerticalLeft: string;
|
|
3828
|
+
railColor: string;
|
|
3829
|
+
}, any>;
|
|
3830
|
+
}>;
|
|
3755
3831
|
}>;
|
|
3756
3832
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3757
3833
|
optionFontSizeTiny: string;
|
|
@@ -3892,7 +3968,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3892
3968
|
arrowOffsetVertical: string;
|
|
3893
3969
|
arrowHeight: string;
|
|
3894
3970
|
padding: string;
|
|
3895
|
-
},
|
|
3971
|
+
}, {
|
|
3972
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3973
|
+
height: string;
|
|
3974
|
+
width: string;
|
|
3975
|
+
borderRadius: string;
|
|
3976
|
+
color: string;
|
|
3977
|
+
colorHover: string;
|
|
3978
|
+
railInsetHorizontalBottom: string;
|
|
3979
|
+
railInsetHorizontalTop: string;
|
|
3980
|
+
railInsetVerticalRight: string;
|
|
3981
|
+
railInsetVerticalLeft: string;
|
|
3982
|
+
railColor: string;
|
|
3983
|
+
}, any>;
|
|
3984
|
+
}>;
|
|
3896
3985
|
}>;
|
|
3897
3986
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
3898
3987
|
optionFontSizeTiny: string;
|
|
@@ -4033,7 +4122,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4033
4122
|
arrowOffsetVertical: string;
|
|
4034
4123
|
arrowHeight: string;
|
|
4035
4124
|
padding: string;
|
|
4036
|
-
},
|
|
4125
|
+
}, {
|
|
4126
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4127
|
+
height: string;
|
|
4128
|
+
width: string;
|
|
4129
|
+
borderRadius: string;
|
|
4130
|
+
color: string;
|
|
4131
|
+
colorHover: string;
|
|
4132
|
+
railInsetHorizontalBottom: string;
|
|
4133
|
+
railInsetHorizontalTop: string;
|
|
4134
|
+
railInsetVerticalRight: string;
|
|
4135
|
+
railInsetVerticalLeft: string;
|
|
4136
|
+
railColor: string;
|
|
4137
|
+
}, any>;
|
|
4138
|
+
}>;
|
|
4037
4139
|
}>;
|
|
4038
4140
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
4039
4141
|
optionFontSizeTiny: string;
|
|
@@ -4112,35 +4214,32 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4112
4214
|
readonly multiple: boolean;
|
|
4113
4215
|
readonly loading: boolean;
|
|
4114
4216
|
readonly bordered: boolean | undefined;
|
|
4217
|
+
readonly clearable: boolean;
|
|
4218
|
+
readonly defaultValue: Value | null;
|
|
4115
4219
|
readonly placement: PopoverPlacement;
|
|
4116
|
-
readonly
|
|
4117
|
-
readonly showCheckmark: boolean;
|
|
4118
|
-
readonly virtualScroll: boolean;
|
|
4119
|
-
readonly valueField: string;
|
|
4120
|
-
readonly resetMenuOnOptionsChange: boolean;
|
|
4220
|
+
readonly keyboard: boolean;
|
|
4121
4221
|
readonly showArrow: boolean;
|
|
4122
4222
|
readonly displayDirective: "show" | "if";
|
|
4123
4223
|
readonly filterable: boolean;
|
|
4124
|
-
readonly clearable: boolean;
|
|
4125
|
-
readonly ignoreComposition: boolean;
|
|
4126
4224
|
readonly clearFilterAfterSelect: boolean;
|
|
4127
|
-
readonly defaultValue: Value | null;
|
|
4128
|
-
readonly keyboard: boolean;
|
|
4129
4225
|
readonly remote: boolean;
|
|
4226
|
+
readonly virtualScroll: boolean;
|
|
4227
|
+
readonly valueField: string;
|
|
4228
|
+
readonly labelField: string;
|
|
4229
|
+
readonly childrenField: string;
|
|
4130
4230
|
readonly widthMode: string;
|
|
4131
4231
|
readonly fallbackOption: false | SelectFallbackOption | undefined;
|
|
4132
4232
|
readonly consistentMenuWidth: boolean;
|
|
4133
|
-
readonly
|
|
4233
|
+
readonly ignoreComposition: boolean;
|
|
4134
4234
|
readonly showOnFocus: boolean;
|
|
4235
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
4236
|
+
readonly showCheckmark: boolean;
|
|
4135
4237
|
}, SlotsType<SelectSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4136
4238
|
NInputGroup: DefineComponent<{}, {
|
|
4137
4239
|
mergedClsPrefix: Ref<string, string>;
|
|
4138
4240
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4139
4241
|
NInputGroupLabel: DefineComponent<ExtractPropTypes<{
|
|
4140
|
-
readonly size:
|
|
4141
|
-
readonly type: PropType< Size>;
|
|
4142
|
-
readonly default: "medium";
|
|
4143
|
-
};
|
|
4242
|
+
readonly size: PropType< Size>;
|
|
4144
4243
|
readonly bordered: {
|
|
4145
4244
|
readonly type: PropType<boolean | undefined>;
|
|
4146
4245
|
readonly default: undefined;
|
|
@@ -4206,7 +4305,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4206
4305
|
paddingMedium: string;
|
|
4207
4306
|
paddingLarge: string;
|
|
4208
4307
|
clearSize: string;
|
|
4209
|
-
},
|
|
4308
|
+
}, {
|
|
4309
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4310
|
+
height: string;
|
|
4311
|
+
width: string;
|
|
4312
|
+
borderRadius: string;
|
|
4313
|
+
color: string;
|
|
4314
|
+
colorHover: string;
|
|
4315
|
+
railInsetHorizontalBottom: string;
|
|
4316
|
+
railInsetHorizontalTop: string;
|
|
4317
|
+
railInsetVerticalRight: string;
|
|
4318
|
+
railInsetVerticalLeft: string;
|
|
4319
|
+
railColor: string;
|
|
4320
|
+
}, any>;
|
|
4321
|
+
}>>;
|
|
4210
4322
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4211
4323
|
fontWeight: string;
|
|
4212
4324
|
countTextColorDisabled: string;
|
|
@@ -4268,7 +4380,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4268
4380
|
paddingMedium: string;
|
|
4269
4381
|
paddingLarge: string;
|
|
4270
4382
|
clearSize: string;
|
|
4271
|
-
},
|
|
4383
|
+
}, {
|
|
4384
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4385
|
+
height: string;
|
|
4386
|
+
width: string;
|
|
4387
|
+
borderRadius: string;
|
|
4388
|
+
color: string;
|
|
4389
|
+
colorHover: string;
|
|
4390
|
+
railInsetHorizontalBottom: string;
|
|
4391
|
+
railInsetHorizontalTop: string;
|
|
4392
|
+
railInsetVerticalRight: string;
|
|
4393
|
+
railInsetVerticalLeft: string;
|
|
4394
|
+
railColor: string;
|
|
4395
|
+
}, any>;
|
|
4396
|
+
}>>>;
|
|
4272
4397
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4273
4398
|
fontWeight: string;
|
|
4274
4399
|
countTextColorDisabled: string;
|
|
@@ -4330,7 +4455,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4330
4455
|
paddingMedium: string;
|
|
4331
4456
|
paddingLarge: string;
|
|
4332
4457
|
clearSize: string;
|
|
4333
|
-
},
|
|
4458
|
+
}, {
|
|
4459
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4460
|
+
height: string;
|
|
4461
|
+
width: string;
|
|
4462
|
+
borderRadius: string;
|
|
4463
|
+
color: string;
|
|
4464
|
+
colorHover: string;
|
|
4465
|
+
railInsetHorizontalBottom: string;
|
|
4466
|
+
railInsetHorizontalTop: string;
|
|
4467
|
+
railInsetVerticalRight: string;
|
|
4468
|
+
railInsetVerticalLeft: string;
|
|
4469
|
+
railColor: string;
|
|
4470
|
+
}, any>;
|
|
4471
|
+
}>>>;
|
|
4334
4472
|
}>, {
|
|
4335
4473
|
mergedClsPrefix: Ref<string, string>;
|
|
4336
4474
|
mergedBordered: ComputedRef<boolean>;
|
|
@@ -4347,10 +4485,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4347
4485
|
themeClass: Ref<string, string> | undefined;
|
|
4348
4486
|
onRender: (() => void) | undefined;
|
|
4349
4487
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
4350
|
-
readonly size:
|
|
4351
|
-
readonly type: PropType< Size>;
|
|
4352
|
-
readonly default: "medium";
|
|
4353
|
-
};
|
|
4488
|
+
readonly size: PropType< Size>;
|
|
4354
4489
|
readonly bordered: {
|
|
4355
4490
|
readonly type: PropType<boolean | undefined>;
|
|
4356
4491
|
readonly default: undefined;
|
|
@@ -4416,7 +4551,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4416
4551
|
paddingMedium: string;
|
|
4417
4552
|
paddingLarge: string;
|
|
4418
4553
|
clearSize: string;
|
|
4419
|
-
},
|
|
4554
|
+
}, {
|
|
4555
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4556
|
+
height: string;
|
|
4557
|
+
width: string;
|
|
4558
|
+
borderRadius: string;
|
|
4559
|
+
color: string;
|
|
4560
|
+
colorHover: string;
|
|
4561
|
+
railInsetHorizontalBottom: string;
|
|
4562
|
+
railInsetHorizontalTop: string;
|
|
4563
|
+
railInsetVerticalRight: string;
|
|
4564
|
+
railInsetVerticalLeft: string;
|
|
4565
|
+
railColor: string;
|
|
4566
|
+
}, any>;
|
|
4567
|
+
}>>;
|
|
4420
4568
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4421
4569
|
fontWeight: string;
|
|
4422
4570
|
countTextColorDisabled: string;
|
|
@@ -4478,7 +4626,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4478
4626
|
paddingMedium: string;
|
|
4479
4627
|
paddingLarge: string;
|
|
4480
4628
|
clearSize: string;
|
|
4481
|
-
},
|
|
4629
|
+
}, {
|
|
4630
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4631
|
+
height: string;
|
|
4632
|
+
width: string;
|
|
4633
|
+
borderRadius: string;
|
|
4634
|
+
color: string;
|
|
4635
|
+
colorHover: string;
|
|
4636
|
+
railInsetHorizontalBottom: string;
|
|
4637
|
+
railInsetHorizontalTop: string;
|
|
4638
|
+
railInsetVerticalRight: string;
|
|
4639
|
+
railInsetVerticalLeft: string;
|
|
4640
|
+
railColor: string;
|
|
4641
|
+
}, any>;
|
|
4642
|
+
}>>>;
|
|
4482
4643
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
4483
4644
|
fontWeight: string;
|
|
4484
4645
|
countTextColorDisabled: string;
|
|
@@ -4540,9 +4701,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4540
4701
|
paddingMedium: string;
|
|
4541
4702
|
paddingLarge: string;
|
|
4542
4703
|
clearSize: string;
|
|
4543
|
-
},
|
|
4704
|
+
}, {
|
|
4705
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4706
|
+
height: string;
|
|
4707
|
+
width: string;
|
|
4708
|
+
borderRadius: string;
|
|
4709
|
+
color: string;
|
|
4710
|
+
colorHover: string;
|
|
4711
|
+
railInsetHorizontalBottom: string;
|
|
4712
|
+
railInsetHorizontalTop: string;
|
|
4713
|
+
railInsetVerticalRight: string;
|
|
4714
|
+
railInsetVerticalLeft: string;
|
|
4715
|
+
railColor: string;
|
|
4716
|
+
}, any>;
|
|
4717
|
+
}>>>;
|
|
4544
4718
|
}>> & Readonly<{}>, {
|
|
4545
|
-
readonly size: Size;
|
|
4546
4719
|
readonly bordered: boolean | undefined;
|
|
4547
4720
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4548
4721
|
NPopover: DefineComponent<ExtractPropTypes<{
|
|
@@ -4651,7 +4824,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4651
4824
|
arrowOffsetVertical: string;
|
|
4652
4825
|
arrowHeight: string;
|
|
4653
4826
|
padding: string;
|
|
4654
|
-
},
|
|
4827
|
+
}, {
|
|
4828
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4829
|
+
height: string;
|
|
4830
|
+
width: string;
|
|
4831
|
+
borderRadius: string;
|
|
4832
|
+
color: string;
|
|
4833
|
+
colorHover: string;
|
|
4834
|
+
railInsetHorizontalBottom: string;
|
|
4835
|
+
railInsetHorizontalTop: string;
|
|
4836
|
+
railInsetVerticalRight: string;
|
|
4837
|
+
railInsetVerticalLeft: string;
|
|
4838
|
+
railColor: string;
|
|
4839
|
+
}, any>;
|
|
4840
|
+
}>>;
|
|
4655
4841
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
4656
4842
|
fontSize: string;
|
|
4657
4843
|
borderRadius: string;
|
|
@@ -4665,7 +4851,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4665
4851
|
arrowOffsetVertical: string;
|
|
4666
4852
|
arrowHeight: string;
|
|
4667
4853
|
padding: string;
|
|
4668
|
-
},
|
|
4854
|
+
}, {
|
|
4855
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4856
|
+
height: string;
|
|
4857
|
+
width: string;
|
|
4858
|
+
borderRadius: string;
|
|
4859
|
+
color: string;
|
|
4860
|
+
colorHover: string;
|
|
4861
|
+
railInsetHorizontalBottom: string;
|
|
4862
|
+
railInsetHorizontalTop: string;
|
|
4863
|
+
railInsetVerticalRight: string;
|
|
4864
|
+
railInsetVerticalLeft: string;
|
|
4865
|
+
railColor: string;
|
|
4866
|
+
}, any>;
|
|
4867
|
+
}>>>;
|
|
4669
4868
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
4670
4869
|
fontSize: string;
|
|
4671
4870
|
borderRadius: string;
|
|
@@ -4679,7 +4878,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4679
4878
|
arrowOffsetVertical: string;
|
|
4680
4879
|
arrowHeight: string;
|
|
4681
4880
|
padding: string;
|
|
4682
|
-
},
|
|
4881
|
+
}, {
|
|
4882
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4883
|
+
height: string;
|
|
4884
|
+
width: string;
|
|
4885
|
+
borderRadius: string;
|
|
4886
|
+
color: string;
|
|
4887
|
+
colorHover: string;
|
|
4888
|
+
railInsetHorizontalBottom: string;
|
|
4889
|
+
railInsetHorizontalTop: string;
|
|
4890
|
+
railInsetVerticalRight: string;
|
|
4891
|
+
railInsetVerticalLeft: string;
|
|
4892
|
+
railColor: string;
|
|
4893
|
+
}, any>;
|
|
4894
|
+
}>>>;
|
|
4683
4895
|
}>, {
|
|
4684
4896
|
binderInstRef: Ref<{
|
|
4685
4897
|
targetRef: HTMLElement | null;
|
|
@@ -4804,7 +5016,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4804
5016
|
arrowOffsetVertical: string;
|
|
4805
5017
|
arrowHeight: string;
|
|
4806
5018
|
padding: string;
|
|
4807
|
-
},
|
|
5019
|
+
}, {
|
|
5020
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5021
|
+
height: string;
|
|
5022
|
+
width: string;
|
|
5023
|
+
borderRadius: string;
|
|
5024
|
+
color: string;
|
|
5025
|
+
colorHover: string;
|
|
5026
|
+
railInsetHorizontalBottom: string;
|
|
5027
|
+
railInsetHorizontalTop: string;
|
|
5028
|
+
railInsetVerticalRight: string;
|
|
5029
|
+
railInsetVerticalLeft: string;
|
|
5030
|
+
railColor: string;
|
|
5031
|
+
}, any>;
|
|
5032
|
+
}>>;
|
|
4808
5033
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
4809
5034
|
fontSize: string;
|
|
4810
5035
|
borderRadius: string;
|
|
@@ -4818,7 +5043,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4818
5043
|
arrowOffsetVertical: string;
|
|
4819
5044
|
arrowHeight: string;
|
|
4820
5045
|
padding: string;
|
|
4821
|
-
},
|
|
5046
|
+
}, {
|
|
5047
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5048
|
+
height: string;
|
|
5049
|
+
width: string;
|
|
5050
|
+
borderRadius: string;
|
|
5051
|
+
color: string;
|
|
5052
|
+
colorHover: string;
|
|
5053
|
+
railInsetHorizontalBottom: string;
|
|
5054
|
+
railInsetHorizontalTop: string;
|
|
5055
|
+
railInsetVerticalRight: string;
|
|
5056
|
+
railInsetVerticalLeft: string;
|
|
5057
|
+
railColor: string;
|
|
5058
|
+
}, any>;
|
|
5059
|
+
}>>>;
|
|
4822
5060
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
4823
5061
|
fontSize: string;
|
|
4824
5062
|
borderRadius: string;
|
|
@@ -4832,7 +5070,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4832
5070
|
arrowOffsetVertical: string;
|
|
4833
5071
|
arrowHeight: string;
|
|
4834
5072
|
padding: string;
|
|
4835
|
-
},
|
|
5073
|
+
}, {
|
|
5074
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5075
|
+
height: string;
|
|
5076
|
+
width: string;
|
|
5077
|
+
borderRadius: string;
|
|
5078
|
+
color: string;
|
|
5079
|
+
colorHover: string;
|
|
5080
|
+
railInsetHorizontalBottom: string;
|
|
5081
|
+
railInsetHorizontalTop: string;
|
|
5082
|
+
railInsetVerticalRight: string;
|
|
5083
|
+
railInsetVerticalLeft: string;
|
|
5084
|
+
railColor: string;
|
|
5085
|
+
}, any>;
|
|
5086
|
+
}>>>;
|
|
4836
5087
|
}>> & Readonly<{}>, {
|
|
4837
5088
|
to: string | boolean | HTMLElement;
|
|
4838
5089
|
disabled: boolean;
|
|
@@ -4842,22 +5093,22 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4842
5093
|
duration: number;
|
|
4843
5094
|
raw: boolean;
|
|
4844
5095
|
placement: PopoverPlacement;
|
|
4845
|
-
overlap: boolean;
|
|
4846
|
-
scrollable: boolean;
|
|
4847
|
-
trigger: PopoverTrigger;
|
|
4848
5096
|
showArrow: boolean;
|
|
5097
|
+
trigger: PopoverTrigger;
|
|
5098
|
+
arrow: boolean | undefined;
|
|
5099
|
+
defaultShow: boolean;
|
|
4849
5100
|
delay: number;
|
|
4850
5101
|
arrowPointToCenter: boolean;
|
|
4851
5102
|
displayDirective: "show" | "if";
|
|
5103
|
+
animated: boolean;
|
|
5104
|
+
overlap: boolean;
|
|
4852
5105
|
keepAliveOnHover: boolean;
|
|
5106
|
+
scrollable: boolean;
|
|
4853
5107
|
internalDeactivateImmediately: boolean;
|
|
4854
|
-
animated: boolean;
|
|
4855
|
-
internalTrapFocus: boolean;
|
|
4856
|
-
defaultShow: boolean;
|
|
4857
5108
|
internalSyncTargetWithParent: boolean;
|
|
4858
5109
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
5110
|
+
internalTrapFocus: boolean;
|
|
4859
5111
|
internalExtraClass: string[];
|
|
4860
|
-
arrow: boolean | undefined;
|
|
4861
5112
|
}, SlotsType<PopoverSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4862
5113
|
UzFormItem: DefineComponent<ExtractPropTypes<{
|
|
4863
5114
|
item: {
|
|
@@ -5164,18 +5415,31 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5164
5415
|
paddingMedium: string;
|
|
5165
5416
|
paddingLarge: string;
|
|
5166
5417
|
clearSize: string;
|
|
5167
|
-
},
|
|
5168
|
-
|
|
5169
|
-
|
|
5170
|
-
|
|
5171
|
-
|
|
5172
|
-
|
|
5173
|
-
|
|
5174
|
-
|
|
5175
|
-
|
|
5176
|
-
|
|
5177
|
-
|
|
5178
|
-
|
|
5418
|
+
}, {
|
|
5419
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5420
|
+
height: string;
|
|
5421
|
+
width: string;
|
|
5422
|
+
borderRadius: string;
|
|
5423
|
+
color: string;
|
|
5424
|
+
colorHover: string;
|
|
5425
|
+
railInsetHorizontalBottom: string;
|
|
5426
|
+
railInsetHorizontalTop: string;
|
|
5427
|
+
railInsetVerticalRight: string;
|
|
5428
|
+
railInsetVerticalLeft: string;
|
|
5429
|
+
railColor: string;
|
|
5430
|
+
}, any>;
|
|
5431
|
+
}>>;
|
|
5432
|
+
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
5433
|
+
fontWeight: string;
|
|
5434
|
+
countTextColorDisabled: string;
|
|
5435
|
+
countTextColor: string;
|
|
5436
|
+
heightTiny: string;
|
|
5437
|
+
heightSmall: string;
|
|
5438
|
+
heightMedium: string;
|
|
5439
|
+
heightLarge: string;
|
|
5440
|
+
fontSizeTiny: string;
|
|
5441
|
+
fontSizeSmall: string;
|
|
5442
|
+
fontSizeMedium: string;
|
|
5179
5443
|
fontSizeLarge: string;
|
|
5180
5444
|
lineHeight: string;
|
|
5181
5445
|
lineHeightTextarea: string;
|
|
@@ -5226,7 +5490,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5226
5490
|
paddingMedium: string;
|
|
5227
5491
|
paddingLarge: string;
|
|
5228
5492
|
clearSize: string;
|
|
5229
|
-
},
|
|
5493
|
+
}, {
|
|
5494
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5495
|
+
height: string;
|
|
5496
|
+
width: string;
|
|
5497
|
+
borderRadius: string;
|
|
5498
|
+
color: string;
|
|
5499
|
+
colorHover: string;
|
|
5500
|
+
railInsetHorizontalBottom: string;
|
|
5501
|
+
railInsetHorizontalTop: string;
|
|
5502
|
+
railInsetVerticalRight: string;
|
|
5503
|
+
railInsetVerticalLeft: string;
|
|
5504
|
+
railColor: string;
|
|
5505
|
+
}, any>;
|
|
5506
|
+
}>>>;
|
|
5230
5507
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
5231
5508
|
fontWeight: string;
|
|
5232
5509
|
countTextColorDisabled: string;
|
|
@@ -5288,7 +5565,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5288
5565
|
paddingMedium: string;
|
|
5289
5566
|
paddingLarge: string;
|
|
5290
5567
|
clearSize: string;
|
|
5291
|
-
},
|
|
5568
|
+
}, {
|
|
5569
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5570
|
+
height: string;
|
|
5571
|
+
width: string;
|
|
5572
|
+
borderRadius: string;
|
|
5573
|
+
color: string;
|
|
5574
|
+
colorHover: string;
|
|
5575
|
+
railInsetHorizontalBottom: string;
|
|
5576
|
+
railInsetHorizontalTop: string;
|
|
5577
|
+
railInsetVerticalRight: string;
|
|
5578
|
+
railInsetVerticalLeft: string;
|
|
5579
|
+
railColor: string;
|
|
5580
|
+
}, any>;
|
|
5581
|
+
}>>>;
|
|
5292
5582
|
}>, {
|
|
5293
5583
|
wrapperElRef: Ref<HTMLElement | null, HTMLElement | null>;
|
|
5294
5584
|
inputElRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
@@ -5431,9 +5721,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5431
5721
|
paddingLarge: string;
|
|
5432
5722
|
clearSize: string;
|
|
5433
5723
|
};
|
|
5434
|
-
peers:
|
|
5724
|
+
peers: {
|
|
5725
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5726
|
+
height: string;
|
|
5727
|
+
width: string;
|
|
5728
|
+
borderRadius: string;
|
|
5729
|
+
color: string;
|
|
5730
|
+
colorHover: string;
|
|
5731
|
+
railInsetHorizontalBottom: string;
|
|
5732
|
+
railInsetHorizontalTop: string;
|
|
5733
|
+
railInsetVerticalRight: string;
|
|
5734
|
+
railInsetVerticalLeft: string;
|
|
5735
|
+
railColor: string;
|
|
5736
|
+
}, any>;
|
|
5737
|
+
};
|
|
5435
5738
|
peerOverrides: {
|
|
5436
|
-
|
|
5739
|
+
Scrollbar?: {
|
|
5740
|
+
peers?: {
|
|
5741
|
+
[x: string]: any;
|
|
5742
|
+
} | undefined;
|
|
5743
|
+
} | undefined;
|
|
5437
5744
|
};
|
|
5438
5745
|
}>;
|
|
5439
5746
|
cssVars: ComputedRef<{
|
|
@@ -5651,7 +5958,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5651
5958
|
paddingMedium: string;
|
|
5652
5959
|
paddingLarge: string;
|
|
5653
5960
|
clearSize: string;
|
|
5654
|
-
},
|
|
5961
|
+
}, {
|
|
5962
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5963
|
+
height: string;
|
|
5964
|
+
width: string;
|
|
5965
|
+
borderRadius: string;
|
|
5966
|
+
color: string;
|
|
5967
|
+
colorHover: string;
|
|
5968
|
+
railInsetHorizontalBottom: string;
|
|
5969
|
+
railInsetHorizontalTop: string;
|
|
5970
|
+
railInsetVerticalRight: string;
|
|
5971
|
+
railInsetVerticalLeft: string;
|
|
5972
|
+
railColor: string;
|
|
5973
|
+
}, any>;
|
|
5974
|
+
}>>;
|
|
5655
5975
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
5656
5976
|
fontWeight: string;
|
|
5657
5977
|
countTextColorDisabled: string;
|
|
@@ -5713,7 +6033,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5713
6033
|
paddingMedium: string;
|
|
5714
6034
|
paddingLarge: string;
|
|
5715
6035
|
clearSize: string;
|
|
5716
|
-
},
|
|
6036
|
+
}, {
|
|
6037
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6038
|
+
height: string;
|
|
6039
|
+
width: string;
|
|
6040
|
+
borderRadius: string;
|
|
6041
|
+
color: string;
|
|
6042
|
+
colorHover: string;
|
|
6043
|
+
railInsetHorizontalBottom: string;
|
|
6044
|
+
railInsetHorizontalTop: string;
|
|
6045
|
+
railInsetVerticalRight: string;
|
|
6046
|
+
railInsetVerticalLeft: string;
|
|
6047
|
+
railColor: string;
|
|
6048
|
+
}, any>;
|
|
6049
|
+
}>>>;
|
|
5717
6050
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Input", {
|
|
5718
6051
|
fontWeight: string;
|
|
5719
6052
|
countTextColorDisabled: string;
|
|
@@ -5775,7 +6108,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5775
6108
|
paddingMedium: string;
|
|
5776
6109
|
paddingLarge: string;
|
|
5777
6110
|
clearSize: string;
|
|
5778
|
-
},
|
|
6111
|
+
}, {
|
|
6112
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6113
|
+
height: string;
|
|
6114
|
+
width: string;
|
|
6115
|
+
borderRadius: string;
|
|
6116
|
+
color: string;
|
|
6117
|
+
colorHover: string;
|
|
6118
|
+
railInsetHorizontalBottom: string;
|
|
6119
|
+
railInsetHorizontalTop: string;
|
|
6120
|
+
railInsetVerticalRight: string;
|
|
6121
|
+
railInsetVerticalLeft: string;
|
|
6122
|
+
railColor: string;
|
|
6123
|
+
}, any>;
|
|
6124
|
+
}>>>;
|
|
5779
6125
|
}>> & Readonly<{}>, {
|
|
5780
6126
|
type: "textarea" | "text" | "password";
|
|
5781
6127
|
readonly: string | boolean;
|
|
@@ -5791,10 +6137,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5791
6137
|
clearable: boolean;
|
|
5792
6138
|
defaultValue: string | [string, string] | null;
|
|
5793
6139
|
resizable: boolean;
|
|
6140
|
+
stateful: boolean;
|
|
5794
6141
|
pair: boolean;
|
|
5795
6142
|
rows: string | number;
|
|
5796
6143
|
passivelyActivated: boolean;
|
|
5797
|
-
stateful: boolean;
|
|
5798
6144
|
showCount: boolean;
|
|
5799
6145
|
attrSize: number;
|
|
5800
6146
|
internalDeactivateOnEnter: boolean;
|
|
@@ -5993,7 +6339,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5993
6339
|
arrowOffsetVertical: string;
|
|
5994
6340
|
arrowHeight: string;
|
|
5995
6341
|
padding: string;
|
|
5996
|
-
},
|
|
6342
|
+
}, {
|
|
6343
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6344
|
+
height: string;
|
|
6345
|
+
width: string;
|
|
6346
|
+
borderRadius: string;
|
|
6347
|
+
color: string;
|
|
6348
|
+
colorHover: string;
|
|
6349
|
+
railInsetHorizontalBottom: string;
|
|
6350
|
+
railInsetHorizontalTop: string;
|
|
6351
|
+
railInsetVerticalRight: string;
|
|
6352
|
+
railInsetVerticalLeft: string;
|
|
6353
|
+
railColor: string;
|
|
6354
|
+
}, any>;
|
|
6355
|
+
}>;
|
|
5997
6356
|
}>;
|
|
5998
6357
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
5999
6358
|
optionFontSizeTiny: string;
|
|
@@ -6134,7 +6493,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6134
6493
|
arrowOffsetVertical: string;
|
|
6135
6494
|
arrowHeight: string;
|
|
6136
6495
|
padding: string;
|
|
6137
|
-
},
|
|
6496
|
+
}, {
|
|
6497
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6498
|
+
height: string;
|
|
6499
|
+
width: string;
|
|
6500
|
+
borderRadius: string;
|
|
6501
|
+
color: string;
|
|
6502
|
+
colorHover: string;
|
|
6503
|
+
railInsetHorizontalBottom: string;
|
|
6504
|
+
railInsetHorizontalTop: string;
|
|
6505
|
+
railInsetVerticalRight: string;
|
|
6506
|
+
railInsetVerticalLeft: string;
|
|
6507
|
+
railColor: string;
|
|
6508
|
+
}, any>;
|
|
6509
|
+
}>;
|
|
6138
6510
|
}>;
|
|
6139
6511
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6140
6512
|
optionFontSizeTiny: string;
|
|
@@ -6275,7 +6647,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6275
6647
|
arrowOffsetVertical: string;
|
|
6276
6648
|
arrowHeight: string;
|
|
6277
6649
|
padding: string;
|
|
6278
|
-
},
|
|
6650
|
+
}, {
|
|
6651
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6652
|
+
height: string;
|
|
6653
|
+
width: string;
|
|
6654
|
+
borderRadius: string;
|
|
6655
|
+
color: string;
|
|
6656
|
+
colorHover: string;
|
|
6657
|
+
railInsetHorizontalBottom: string;
|
|
6658
|
+
railInsetHorizontalTop: string;
|
|
6659
|
+
railInsetVerticalRight: string;
|
|
6660
|
+
railInsetVerticalLeft: string;
|
|
6661
|
+
railColor: string;
|
|
6662
|
+
}, any>;
|
|
6663
|
+
}>;
|
|
6279
6664
|
}>;
|
|
6280
6665
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6281
6666
|
optionFontSizeTiny: string;
|
|
@@ -6495,7 +6880,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6495
6880
|
arrowOffsetVertical: string;
|
|
6496
6881
|
arrowHeight: string;
|
|
6497
6882
|
padding: string;
|
|
6498
|
-
},
|
|
6883
|
+
}, {
|
|
6884
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6885
|
+
height: string;
|
|
6886
|
+
width: string;
|
|
6887
|
+
borderRadius: string;
|
|
6888
|
+
color: string;
|
|
6889
|
+
colorHover: string;
|
|
6890
|
+
railInsetHorizontalBottom: string;
|
|
6891
|
+
railInsetHorizontalTop: string;
|
|
6892
|
+
railInsetVerticalRight: string;
|
|
6893
|
+
railInsetVerticalLeft: string;
|
|
6894
|
+
railColor: string;
|
|
6895
|
+
}, any>;
|
|
6896
|
+
}>;
|
|
6499
6897
|
}>;
|
|
6500
6898
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6501
6899
|
optionFontSizeTiny: string;
|
|
@@ -6581,7 +6979,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6581
6979
|
arrowOffsetVertical: string;
|
|
6582
6980
|
arrowHeight: string;
|
|
6583
6981
|
padding: string;
|
|
6584
|
-
},
|
|
6982
|
+
}, {
|
|
6983
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6984
|
+
height: string;
|
|
6985
|
+
width: string;
|
|
6986
|
+
borderRadius: string;
|
|
6987
|
+
color: string;
|
|
6988
|
+
colorHover: string;
|
|
6989
|
+
railInsetHorizontalBottom: string;
|
|
6990
|
+
railInsetHorizontalTop: string;
|
|
6991
|
+
railInsetVerticalRight: string;
|
|
6992
|
+
railInsetVerticalLeft: string;
|
|
6993
|
+
railColor: string;
|
|
6994
|
+
}, any>;
|
|
6995
|
+
}>> | undefined;
|
|
6585
6996
|
} | undefined;
|
|
6586
6997
|
} | undefined;
|
|
6587
6998
|
InternalSelectMenu?: {
|
|
@@ -6817,7 +7228,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6817
7228
|
arrowOffsetVertical: string;
|
|
6818
7229
|
arrowHeight: string;
|
|
6819
7230
|
padding: string;
|
|
6820
|
-
},
|
|
7231
|
+
}, {
|
|
7232
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7233
|
+
height: string;
|
|
7234
|
+
width: string;
|
|
7235
|
+
borderRadius: string;
|
|
7236
|
+
color: string;
|
|
7237
|
+
colorHover: string;
|
|
7238
|
+
railInsetHorizontalBottom: string;
|
|
7239
|
+
railInsetHorizontalTop: string;
|
|
7240
|
+
railInsetVerticalRight: string;
|
|
7241
|
+
railInsetVerticalLeft: string;
|
|
7242
|
+
railColor: string;
|
|
7243
|
+
}, any>;
|
|
7244
|
+
}>;
|
|
6821
7245
|
}>;
|
|
6822
7246
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6823
7247
|
optionFontSizeTiny: string;
|
|
@@ -6958,7 +7382,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6958
7382
|
arrowOffsetVertical: string;
|
|
6959
7383
|
arrowHeight: string;
|
|
6960
7384
|
padding: string;
|
|
6961
|
-
},
|
|
7385
|
+
}, {
|
|
7386
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7387
|
+
height: string;
|
|
7388
|
+
width: string;
|
|
7389
|
+
borderRadius: string;
|
|
7390
|
+
color: string;
|
|
7391
|
+
colorHover: string;
|
|
7392
|
+
railInsetHorizontalBottom: string;
|
|
7393
|
+
railInsetHorizontalTop: string;
|
|
7394
|
+
railInsetVerticalRight: string;
|
|
7395
|
+
railInsetVerticalLeft: string;
|
|
7396
|
+
railColor: string;
|
|
7397
|
+
}, any>;
|
|
7398
|
+
}>;
|
|
6962
7399
|
}>;
|
|
6963
7400
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
6964
7401
|
optionFontSizeTiny: string;
|
|
@@ -7099,7 +7536,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7099
7536
|
arrowOffsetVertical: string;
|
|
7100
7537
|
arrowHeight: string;
|
|
7101
7538
|
padding: string;
|
|
7102
|
-
},
|
|
7539
|
+
}, {
|
|
7540
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7541
|
+
height: string;
|
|
7542
|
+
width: string;
|
|
7543
|
+
borderRadius: string;
|
|
7544
|
+
color: string;
|
|
7545
|
+
colorHover: string;
|
|
7546
|
+
railInsetHorizontalBottom: string;
|
|
7547
|
+
railInsetHorizontalTop: string;
|
|
7548
|
+
railInsetVerticalRight: string;
|
|
7549
|
+
railInsetVerticalLeft: string;
|
|
7550
|
+
railColor: string;
|
|
7551
|
+
}, any>;
|
|
7552
|
+
}>;
|
|
7103
7553
|
}>;
|
|
7104
7554
|
InternalSelectMenu: Theme<"InternalSelectMenu", {
|
|
7105
7555
|
optionFontSizeTiny: string;
|
|
@@ -7178,26 +7628,26 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7178
7628
|
readonly multiple: boolean;
|
|
7179
7629
|
readonly loading: boolean;
|
|
7180
7630
|
readonly bordered: boolean | undefined;
|
|
7631
|
+
readonly clearable: boolean;
|
|
7632
|
+
readonly defaultValue: Value | null;
|
|
7181
7633
|
readonly placement: PopoverPlacement;
|
|
7182
|
-
readonly
|
|
7183
|
-
readonly showCheckmark: boolean;
|
|
7184
|
-
readonly virtualScroll: boolean;
|
|
7185
|
-
readonly valueField: string;
|
|
7186
|
-
readonly resetMenuOnOptionsChange: boolean;
|
|
7634
|
+
readonly keyboard: boolean;
|
|
7187
7635
|
readonly showArrow: boolean;
|
|
7188
7636
|
readonly displayDirective: "show" | "if";
|
|
7189
7637
|
readonly filterable: boolean;
|
|
7190
|
-
readonly clearable: boolean;
|
|
7191
|
-
readonly ignoreComposition: boolean;
|
|
7192
7638
|
readonly clearFilterAfterSelect: boolean;
|
|
7193
|
-
readonly defaultValue: Value | null;
|
|
7194
|
-
readonly keyboard: boolean;
|
|
7195
7639
|
readonly remote: boolean;
|
|
7640
|
+
readonly virtualScroll: boolean;
|
|
7641
|
+
readonly valueField: string;
|
|
7642
|
+
readonly labelField: string;
|
|
7643
|
+
readonly childrenField: string;
|
|
7196
7644
|
readonly widthMode: string;
|
|
7197
7645
|
readonly fallbackOption: false | SelectFallbackOption | undefined;
|
|
7198
7646
|
readonly consistentMenuWidth: boolean;
|
|
7199
|
-
readonly
|
|
7647
|
+
readonly ignoreComposition: boolean;
|
|
7200
7648
|
readonly showOnFocus: boolean;
|
|
7649
|
+
readonly resetMenuOnOptionsChange: boolean;
|
|
7650
|
+
readonly showCheckmark: boolean;
|
|
7201
7651
|
}, SlotsType<SelectSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7202
7652
|
NInputNumber: DefineComponent<ExtractPropTypes<{
|
|
7203
7653
|
autofocus: BooleanConstructor;
|
|
@@ -7531,17 +7981,30 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7531
7981
|
paddingMedium: string;
|
|
7532
7982
|
paddingLarge: string;
|
|
7533
7983
|
clearSize: string;
|
|
7534
|
-
},
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7543
|
-
|
|
7544
|
-
|
|
7984
|
+
}, {
|
|
7985
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
7986
|
+
height: string;
|
|
7987
|
+
width: string;
|
|
7988
|
+
borderRadius: string;
|
|
7989
|
+
color: string;
|
|
7990
|
+
colorHover: string;
|
|
7991
|
+
railInsetHorizontalBottom: string;
|
|
7992
|
+
railInsetHorizontalTop: string;
|
|
7993
|
+
railInsetVerticalRight: string;
|
|
7994
|
+
railInsetVerticalLeft: string;
|
|
7995
|
+
railColor: string;
|
|
7996
|
+
}, any>;
|
|
7997
|
+
}>;
|
|
7998
|
+
}>>;
|
|
7999
|
+
themeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
8000
|
+
iconColorDisabled: string;
|
|
8001
|
+
}, {
|
|
8002
|
+
Button: Theme<"Button", {
|
|
8003
|
+
heightTiny: string;
|
|
8004
|
+
heightSmall: string;
|
|
8005
|
+
heightMedium: string;
|
|
8006
|
+
heightLarge: string;
|
|
8007
|
+
borderRadiusTiny: string;
|
|
7545
8008
|
borderRadiusSmall: string;
|
|
7546
8009
|
borderRadiusMedium: string;
|
|
7547
8010
|
borderRadiusLarge: string;
|
|
@@ -7801,7 +8264,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7801
8264
|
paddingMedium: string;
|
|
7802
8265
|
paddingLarge: string;
|
|
7803
8266
|
clearSize: string;
|
|
7804
|
-
},
|
|
8267
|
+
}, {
|
|
8268
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8269
|
+
height: string;
|
|
8270
|
+
width: string;
|
|
8271
|
+
borderRadius: string;
|
|
8272
|
+
color: string;
|
|
8273
|
+
colorHover: string;
|
|
8274
|
+
railInsetHorizontalBottom: string;
|
|
8275
|
+
railInsetHorizontalTop: string;
|
|
8276
|
+
railInsetVerticalRight: string;
|
|
8277
|
+
railInsetVerticalLeft: string;
|
|
8278
|
+
railColor: string;
|
|
8279
|
+
}, any>;
|
|
8280
|
+
}>;
|
|
7805
8281
|
}>>>;
|
|
7806
8282
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
7807
8283
|
iconColorDisabled: string;
|
|
@@ -8071,7 +8547,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8071
8547
|
paddingMedium: string;
|
|
8072
8548
|
paddingLarge: string;
|
|
8073
8549
|
clearSize: string;
|
|
8074
|
-
},
|
|
8550
|
+
}, {
|
|
8551
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8552
|
+
height: string;
|
|
8553
|
+
width: string;
|
|
8554
|
+
borderRadius: string;
|
|
8555
|
+
color: string;
|
|
8556
|
+
colorHover: string;
|
|
8557
|
+
railInsetHorizontalBottom: string;
|
|
8558
|
+
railInsetHorizontalTop: string;
|
|
8559
|
+
railInsetVerticalRight: string;
|
|
8560
|
+
railInsetVerticalLeft: string;
|
|
8561
|
+
railColor: string;
|
|
8562
|
+
}, any>;
|
|
8563
|
+
}>;
|
|
8075
8564
|
}>>>;
|
|
8076
8565
|
}>, {
|
|
8077
8566
|
rtlEnabled: Ref< RtlItem | undefined, RtlItem | undefined> | undefined;
|
|
@@ -8419,7 +8908,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8419
8908
|
paddingMedium: string;
|
|
8420
8909
|
paddingLarge: string;
|
|
8421
8910
|
clearSize: string;
|
|
8422
|
-
},
|
|
8911
|
+
}, {
|
|
8912
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
8913
|
+
height: string;
|
|
8914
|
+
width: string;
|
|
8915
|
+
borderRadius: string;
|
|
8916
|
+
color: string;
|
|
8917
|
+
colorHover: string;
|
|
8918
|
+
railInsetHorizontalBottom: string;
|
|
8919
|
+
railInsetHorizontalTop: string;
|
|
8920
|
+
railInsetVerticalRight: string;
|
|
8921
|
+
railInsetVerticalLeft: string;
|
|
8922
|
+
railColor: string;
|
|
8923
|
+
}, any>;
|
|
8924
|
+
}>;
|
|
8423
8925
|
};
|
|
8424
8926
|
peerOverrides: {
|
|
8425
8927
|
Button?: {
|
|
@@ -8429,7 +8931,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8429
8931
|
} | undefined;
|
|
8430
8932
|
Input?: {
|
|
8431
8933
|
peers?: {
|
|
8432
|
-
|
|
8934
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
8935
|
+
height: string;
|
|
8936
|
+
width: string;
|
|
8937
|
+
borderRadius: string;
|
|
8938
|
+
color: string;
|
|
8939
|
+
colorHover: string;
|
|
8940
|
+
railInsetHorizontalBottom: string;
|
|
8941
|
+
railInsetHorizontalTop: string;
|
|
8942
|
+
railInsetVerticalRight: string;
|
|
8943
|
+
railInsetVerticalLeft: string;
|
|
8944
|
+
railColor: string;
|
|
8945
|
+
}, any>> | undefined;
|
|
8433
8946
|
} | undefined;
|
|
8434
8947
|
} | undefined;
|
|
8435
8948
|
};
|
|
@@ -8778,7 +9291,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8778
9291
|
paddingMedium: string;
|
|
8779
9292
|
paddingLarge: string;
|
|
8780
9293
|
clearSize: string;
|
|
8781
|
-
},
|
|
9294
|
+
}, {
|
|
9295
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9296
|
+
height: string;
|
|
9297
|
+
width: string;
|
|
9298
|
+
borderRadius: string;
|
|
9299
|
+
color: string;
|
|
9300
|
+
colorHover: string;
|
|
9301
|
+
railInsetHorizontalBottom: string;
|
|
9302
|
+
railInsetHorizontalTop: string;
|
|
9303
|
+
railInsetVerticalRight: string;
|
|
9304
|
+
railInsetVerticalLeft: string;
|
|
9305
|
+
railColor: string;
|
|
9306
|
+
}, any>;
|
|
9307
|
+
}>;
|
|
8782
9308
|
}>>;
|
|
8783
9309
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
8784
9310
|
iconColorDisabled: string;
|
|
@@ -9048,7 +9574,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9048
9574
|
paddingMedium: string;
|
|
9049
9575
|
paddingLarge: string;
|
|
9050
9576
|
clearSize: string;
|
|
9051
|
-
},
|
|
9577
|
+
}, {
|
|
9578
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9579
|
+
height: string;
|
|
9580
|
+
width: string;
|
|
9581
|
+
borderRadius: string;
|
|
9582
|
+
color: string;
|
|
9583
|
+
colorHover: string;
|
|
9584
|
+
railInsetHorizontalBottom: string;
|
|
9585
|
+
railInsetHorizontalTop: string;
|
|
9586
|
+
railInsetVerticalRight: string;
|
|
9587
|
+
railInsetVerticalLeft: string;
|
|
9588
|
+
railColor: string;
|
|
9589
|
+
}, any>;
|
|
9590
|
+
}>;
|
|
9052
9591
|
}>>>;
|
|
9053
9592
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"InputNumber", {
|
|
9054
9593
|
iconColorDisabled: string;
|
|
@@ -9318,7 +9857,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9318
9857
|
paddingMedium: string;
|
|
9319
9858
|
paddingLarge: string;
|
|
9320
9859
|
clearSize: string;
|
|
9321
|
-
},
|
|
9860
|
+
}, {
|
|
9861
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
9862
|
+
height: string;
|
|
9863
|
+
width: string;
|
|
9864
|
+
borderRadius: string;
|
|
9865
|
+
color: string;
|
|
9866
|
+
colorHover: string;
|
|
9867
|
+
railInsetHorizontalBottom: string;
|
|
9868
|
+
railInsetHorizontalTop: string;
|
|
9869
|
+
railInsetVerticalRight: string;
|
|
9870
|
+
railInsetVerticalLeft: string;
|
|
9871
|
+
railColor: string;
|
|
9872
|
+
}, any>;
|
|
9873
|
+
}>;
|
|
9322
9874
|
}>>>;
|
|
9323
9875
|
}>> & Readonly<{}>, {
|
|
9324
9876
|
readonly: boolean;
|
|
@@ -9561,7 +10113,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
9561
10113
|
paddingMedium: string;
|
|
9562
10114
|
paddingLarge: string;
|
|
9563
10115
|
clearSize: string;
|
|
9564
|
-
},
|
|
10116
|
+
}, {
|
|
10117
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10118
|
+
height: string;
|
|
10119
|
+
width: string;
|
|
10120
|
+
borderRadius: string;
|
|
10121
|
+
color: string;
|
|
10122
|
+
colorHover: string;
|
|
10123
|
+
railInsetHorizontalBottom: string;
|
|
10124
|
+
railInsetHorizontalTop: string;
|
|
10125
|
+
railInsetVerticalRight: string;
|
|
10126
|
+
railInsetVerticalLeft: string;
|
|
10127
|
+
railColor: string;
|
|
10128
|
+
}, any>;
|
|
10129
|
+
}>;
|
|
9565
10130
|
Button: Theme<"Button", {
|
|
9566
10131
|
heightTiny: string;
|
|
9567
10132
|
heightSmall: string;
|
|
@@ -10060,7 +10625,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10060
10625
|
paddingMedium: string;
|
|
10061
10626
|
paddingLarge: string;
|
|
10062
10627
|
clearSize: string;
|
|
10063
|
-
},
|
|
10628
|
+
}, {
|
|
10629
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10630
|
+
height: string;
|
|
10631
|
+
width: string;
|
|
10632
|
+
borderRadius: string;
|
|
10633
|
+
color: string;
|
|
10634
|
+
colorHover: string;
|
|
10635
|
+
railInsetHorizontalBottom: string;
|
|
10636
|
+
railInsetHorizontalTop: string;
|
|
10637
|
+
railInsetVerticalRight: string;
|
|
10638
|
+
railInsetVerticalLeft: string;
|
|
10639
|
+
railColor: string;
|
|
10640
|
+
}, any>;
|
|
10641
|
+
}>;
|
|
10064
10642
|
}>;
|
|
10065
10643
|
Scrollbar: Theme<"Scrollbar", {
|
|
10066
10644
|
height: string;
|
|
@@ -10201,7 +10779,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10201
10779
|
paddingMedium: string;
|
|
10202
10780
|
paddingLarge: string;
|
|
10203
10781
|
clearSize: string;
|
|
10204
|
-
},
|
|
10782
|
+
}, {
|
|
10783
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
10784
|
+
height: string;
|
|
10785
|
+
width: string;
|
|
10786
|
+
borderRadius: string;
|
|
10787
|
+
color: string;
|
|
10788
|
+
colorHover: string;
|
|
10789
|
+
railInsetHorizontalBottom: string;
|
|
10790
|
+
railInsetHorizontalTop: string;
|
|
10791
|
+
railInsetVerticalRight: string;
|
|
10792
|
+
railInsetVerticalLeft: string;
|
|
10793
|
+
railColor: string;
|
|
10794
|
+
}, any>;
|
|
10795
|
+
}>;
|
|
10205
10796
|
Button: Theme<"Button", {
|
|
10206
10797
|
heightTiny: string;
|
|
10207
10798
|
heightSmall: string;
|
|
@@ -10700,7 +11291,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10700
11291
|
paddingMedium: string;
|
|
10701
11292
|
paddingLarge: string;
|
|
10702
11293
|
clearSize: string;
|
|
10703
|
-
},
|
|
11294
|
+
}, {
|
|
11295
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11296
|
+
height: string;
|
|
11297
|
+
width: string;
|
|
11298
|
+
borderRadius: string;
|
|
11299
|
+
color: string;
|
|
11300
|
+
colorHover: string;
|
|
11301
|
+
railInsetHorizontalBottom: string;
|
|
11302
|
+
railInsetHorizontalTop: string;
|
|
11303
|
+
railInsetVerticalRight: string;
|
|
11304
|
+
railInsetVerticalLeft: string;
|
|
11305
|
+
railColor: string;
|
|
11306
|
+
}, any>;
|
|
11307
|
+
}>;
|
|
10704
11308
|
}>;
|
|
10705
11309
|
Scrollbar: Theme<"Scrollbar", {
|
|
10706
11310
|
height: string;
|
|
@@ -10841,7 +11445,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10841
11445
|
paddingMedium: string;
|
|
10842
11446
|
paddingLarge: string;
|
|
10843
11447
|
clearSize: string;
|
|
10844
|
-
},
|
|
11448
|
+
}, {
|
|
11449
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11450
|
+
height: string;
|
|
11451
|
+
width: string;
|
|
11452
|
+
borderRadius: string;
|
|
11453
|
+
color: string;
|
|
11454
|
+
colorHover: string;
|
|
11455
|
+
railInsetHorizontalBottom: string;
|
|
11456
|
+
railInsetHorizontalTop: string;
|
|
11457
|
+
railInsetVerticalRight: string;
|
|
11458
|
+
railInsetVerticalLeft: string;
|
|
11459
|
+
railColor: string;
|
|
11460
|
+
}, any>;
|
|
11461
|
+
}>;
|
|
10845
11462
|
Button: Theme<"Button", {
|
|
10846
11463
|
heightTiny: string;
|
|
10847
11464
|
heightSmall: string;
|
|
@@ -11340,7 +11957,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11340
11957
|
paddingMedium: string;
|
|
11341
11958
|
paddingLarge: string;
|
|
11342
11959
|
clearSize: string;
|
|
11343
|
-
},
|
|
11960
|
+
}, {
|
|
11961
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
11962
|
+
height: string;
|
|
11963
|
+
width: string;
|
|
11964
|
+
borderRadius: string;
|
|
11965
|
+
color: string;
|
|
11966
|
+
colorHover: string;
|
|
11967
|
+
railInsetHorizontalBottom: string;
|
|
11968
|
+
railInsetHorizontalTop: string;
|
|
11969
|
+
railInsetVerticalRight: string;
|
|
11970
|
+
railInsetVerticalLeft: string;
|
|
11971
|
+
railColor: string;
|
|
11972
|
+
}, any>;
|
|
11973
|
+
}>;
|
|
11344
11974
|
}>;
|
|
11345
11975
|
Scrollbar: Theme<"Scrollbar", {
|
|
11346
11976
|
height: string;
|
|
@@ -11741,7 +12371,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
11741
12371
|
paddingMedium: string;
|
|
11742
12372
|
paddingLarge: string;
|
|
11743
12373
|
clearSize: string;
|
|
11744
|
-
},
|
|
12374
|
+
}, {
|
|
12375
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12376
|
+
height: string;
|
|
12377
|
+
width: string;
|
|
12378
|
+
borderRadius: string;
|
|
12379
|
+
color: string;
|
|
12380
|
+
colorHover: string;
|
|
12381
|
+
railInsetHorizontalBottom: string;
|
|
12382
|
+
railInsetHorizontalTop: string;
|
|
12383
|
+
railInsetVerticalRight: string;
|
|
12384
|
+
railInsetVerticalLeft: string;
|
|
12385
|
+
railColor: string;
|
|
12386
|
+
}, any>;
|
|
12387
|
+
}>;
|
|
11745
12388
|
Button: Theme<"Button", {
|
|
11746
12389
|
heightTiny: string;
|
|
11747
12390
|
heightSmall: string;
|
|
@@ -12240,7 +12883,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12240
12883
|
paddingMedium: string;
|
|
12241
12884
|
paddingLarge: string;
|
|
12242
12885
|
clearSize: string;
|
|
12243
|
-
},
|
|
12886
|
+
}, {
|
|
12887
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
12888
|
+
height: string;
|
|
12889
|
+
width: string;
|
|
12890
|
+
borderRadius: string;
|
|
12891
|
+
color: string;
|
|
12892
|
+
colorHover: string;
|
|
12893
|
+
railInsetHorizontalBottom: string;
|
|
12894
|
+
railInsetHorizontalTop: string;
|
|
12895
|
+
railInsetVerticalRight: string;
|
|
12896
|
+
railInsetVerticalLeft: string;
|
|
12897
|
+
railColor: string;
|
|
12898
|
+
}, any>;
|
|
12899
|
+
}>;
|
|
12244
12900
|
}>;
|
|
12245
12901
|
Scrollbar: Theme<"Scrollbar", {
|
|
12246
12902
|
height: string;
|
|
@@ -12258,7 +12914,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12258
12914
|
peerOverrides: {
|
|
12259
12915
|
Input?: {
|
|
12260
12916
|
peers?: {
|
|
12261
|
-
|
|
12917
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
12918
|
+
height: string;
|
|
12919
|
+
width: string;
|
|
12920
|
+
borderRadius: string;
|
|
12921
|
+
color: string;
|
|
12922
|
+
colorHover: string;
|
|
12923
|
+
railInsetHorizontalBottom: string;
|
|
12924
|
+
railInsetHorizontalTop: string;
|
|
12925
|
+
railInsetVerticalRight: string;
|
|
12926
|
+
railInsetVerticalLeft: string;
|
|
12927
|
+
railColor: string;
|
|
12928
|
+
}, any>> | undefined;
|
|
12262
12929
|
} | undefined;
|
|
12263
12930
|
} | undefined;
|
|
12264
12931
|
Button?: {
|
|
@@ -12545,7 +13212,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12545
13212
|
paddingMedium: string;
|
|
12546
13213
|
paddingLarge: string;
|
|
12547
13214
|
clearSize: string;
|
|
12548
|
-
},
|
|
13215
|
+
}, {
|
|
13216
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13217
|
+
height: string;
|
|
13218
|
+
width: string;
|
|
13219
|
+
borderRadius: string;
|
|
13220
|
+
color: string;
|
|
13221
|
+
colorHover: string;
|
|
13222
|
+
railInsetHorizontalBottom: string;
|
|
13223
|
+
railInsetHorizontalTop: string;
|
|
13224
|
+
railInsetVerticalRight: string;
|
|
13225
|
+
railInsetVerticalLeft: string;
|
|
13226
|
+
railColor: string;
|
|
13227
|
+
}, any>;
|
|
13228
|
+
}>> | undefined;
|
|
12549
13229
|
} | undefined;
|
|
12550
13230
|
} | undefined;
|
|
12551
13231
|
Scrollbar?: {
|
|
@@ -12839,7 +13519,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12839
13519
|
paddingMedium: string;
|
|
12840
13520
|
paddingLarge: string;
|
|
12841
13521
|
clearSize: string;
|
|
12842
|
-
},
|
|
13522
|
+
}, {
|
|
13523
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
13524
|
+
height: string;
|
|
13525
|
+
width: string;
|
|
13526
|
+
borderRadius: string;
|
|
13527
|
+
color: string;
|
|
13528
|
+
colorHover: string;
|
|
13529
|
+
railInsetHorizontalBottom: string;
|
|
13530
|
+
railInsetHorizontalTop: string;
|
|
13531
|
+
railInsetVerticalRight: string;
|
|
13532
|
+
railInsetVerticalLeft: string;
|
|
13533
|
+
railColor: string;
|
|
13534
|
+
}, any>;
|
|
13535
|
+
}>;
|
|
12843
13536
|
Button: Theme<"Button", {
|
|
12844
13537
|
heightTiny: string;
|
|
12845
13538
|
heightSmall: string;
|
|
@@ -13338,7 +14031,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13338
14031
|
paddingMedium: string;
|
|
13339
14032
|
paddingLarge: string;
|
|
13340
14033
|
clearSize: string;
|
|
13341
|
-
},
|
|
14034
|
+
}, {
|
|
14035
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14036
|
+
height: string;
|
|
14037
|
+
width: string;
|
|
14038
|
+
borderRadius: string;
|
|
14039
|
+
color: string;
|
|
14040
|
+
colorHover: string;
|
|
14041
|
+
railInsetHorizontalBottom: string;
|
|
14042
|
+
railInsetHorizontalTop: string;
|
|
14043
|
+
railInsetVerticalRight: string;
|
|
14044
|
+
railInsetVerticalLeft: string;
|
|
14045
|
+
railColor: string;
|
|
14046
|
+
}, any>;
|
|
14047
|
+
}>;
|
|
13342
14048
|
}>;
|
|
13343
14049
|
Scrollbar: Theme<"Scrollbar", {
|
|
13344
14050
|
height: string;
|
|
@@ -13479,7 +14185,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13479
14185
|
paddingMedium: string;
|
|
13480
14186
|
paddingLarge: string;
|
|
13481
14187
|
clearSize: string;
|
|
13482
|
-
},
|
|
14188
|
+
}, {
|
|
14189
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14190
|
+
height: string;
|
|
14191
|
+
width: string;
|
|
14192
|
+
borderRadius: string;
|
|
14193
|
+
color: string;
|
|
14194
|
+
colorHover: string;
|
|
14195
|
+
railInsetHorizontalBottom: string;
|
|
14196
|
+
railInsetHorizontalTop: string;
|
|
14197
|
+
railInsetVerticalRight: string;
|
|
14198
|
+
railInsetVerticalLeft: string;
|
|
14199
|
+
railColor: string;
|
|
14200
|
+
}, any>;
|
|
14201
|
+
}>;
|
|
13483
14202
|
Button: Theme<"Button", {
|
|
13484
14203
|
heightTiny: string;
|
|
13485
14204
|
heightSmall: string;
|
|
@@ -13978,7 +14697,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13978
14697
|
paddingMedium: string;
|
|
13979
14698
|
paddingLarge: string;
|
|
13980
14699
|
clearSize: string;
|
|
13981
|
-
},
|
|
14700
|
+
}, {
|
|
14701
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14702
|
+
height: string;
|
|
14703
|
+
width: string;
|
|
14704
|
+
borderRadius: string;
|
|
14705
|
+
color: string;
|
|
14706
|
+
colorHover: string;
|
|
14707
|
+
railInsetHorizontalBottom: string;
|
|
14708
|
+
railInsetHorizontalTop: string;
|
|
14709
|
+
railInsetVerticalRight: string;
|
|
14710
|
+
railInsetVerticalLeft: string;
|
|
14711
|
+
railColor: string;
|
|
14712
|
+
}, any>;
|
|
14713
|
+
}>;
|
|
13982
14714
|
}>;
|
|
13983
14715
|
Scrollbar: Theme<"Scrollbar", {
|
|
13984
14716
|
height: string;
|
|
@@ -14119,7 +14851,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14119
14851
|
paddingMedium: string;
|
|
14120
14852
|
paddingLarge: string;
|
|
14121
14853
|
clearSize: string;
|
|
14122
|
-
},
|
|
14854
|
+
}, {
|
|
14855
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
14856
|
+
height: string;
|
|
14857
|
+
width: string;
|
|
14858
|
+
borderRadius: string;
|
|
14859
|
+
color: string;
|
|
14860
|
+
colorHover: string;
|
|
14861
|
+
railInsetHorizontalBottom: string;
|
|
14862
|
+
railInsetHorizontalTop: string;
|
|
14863
|
+
railInsetVerticalRight: string;
|
|
14864
|
+
railInsetVerticalLeft: string;
|
|
14865
|
+
railColor: string;
|
|
14866
|
+
}, any>;
|
|
14867
|
+
}>;
|
|
14123
14868
|
Button: Theme<"Button", {
|
|
14124
14869
|
heightTiny: string;
|
|
14125
14870
|
heightSmall: string;
|
|
@@ -14618,7 +15363,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14618
15363
|
paddingMedium: string;
|
|
14619
15364
|
paddingLarge: string;
|
|
14620
15365
|
clearSize: string;
|
|
14621
|
-
},
|
|
15366
|
+
}, {
|
|
15367
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
15368
|
+
height: string;
|
|
15369
|
+
width: string;
|
|
15370
|
+
borderRadius: string;
|
|
15371
|
+
color: string;
|
|
15372
|
+
colorHover: string;
|
|
15373
|
+
railInsetHorizontalBottom: string;
|
|
15374
|
+
railInsetHorizontalTop: string;
|
|
15375
|
+
railInsetVerticalRight: string;
|
|
15376
|
+
railInsetVerticalLeft: string;
|
|
15377
|
+
railColor: string;
|
|
15378
|
+
}, any>;
|
|
15379
|
+
}>;
|
|
14622
15380
|
}>;
|
|
14623
15381
|
Scrollbar: Theme<"Scrollbar", {
|
|
14624
15382
|
height: string;
|
|
@@ -14638,19 +15396,19 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
14638
15396
|
readonly to: string | boolean | HTMLElement;
|
|
14639
15397
|
readonly disabled: boolean | undefined;
|
|
14640
15398
|
readonly show: boolean | undefined;
|
|
14641
|
-
readonly yearFormat: string;
|
|
14642
|
-
readonly monthFormat: string;
|
|
14643
|
-
readonly quarterFormat: string;
|
|
14644
15399
|
readonly bordered: boolean | undefined;
|
|
14645
|
-
readonly placement: FollowerPlacement;
|
|
14646
15400
|
readonly clearable: boolean;
|
|
15401
|
+
readonly placement: FollowerPlacement;
|
|
14647
15402
|
readonly inputReadonly: boolean;
|
|
15403
|
+
readonly updateValueOnClose: boolean;
|
|
14648
15404
|
readonly calendarHeaderMonthYearSeparator: string;
|
|
14649
15405
|
readonly calendarHeaderMonthBeforeYear: boolean;
|
|
14650
15406
|
readonly panel: boolean;
|
|
14651
|
-
readonly updateValueOnClose: boolean;
|
|
14652
15407
|
readonly closeOnSelect: boolean;
|
|
14653
15408
|
readonly bindCalendarMonths: boolean;
|
|
15409
|
+
readonly monthFormat: string;
|
|
15410
|
+
readonly yearFormat: string;
|
|
15411
|
+
readonly quarterFormat: string;
|
|
14654
15412
|
readonly yearRange: [number, number];
|
|
14655
15413
|
}, SlotsType<DatePickerSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
14656
15414
|
NTimePicker: DefineComponent<ExtractPropTypes<{
|
|
@@ -15022,7 +15780,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15022
15780
|
paddingMedium: string;
|
|
15023
15781
|
paddingLarge: string;
|
|
15024
15782
|
clearSize: string;
|
|
15025
|
-
},
|
|
15783
|
+
}, {
|
|
15784
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
15785
|
+
height: string;
|
|
15786
|
+
width: string;
|
|
15787
|
+
borderRadius: string;
|
|
15788
|
+
color: string;
|
|
15789
|
+
colorHover: string;
|
|
15790
|
+
railInsetHorizontalBottom: string;
|
|
15791
|
+
railInsetHorizontalTop: string;
|
|
15792
|
+
railInsetVerticalRight: string;
|
|
15793
|
+
railInsetVerticalLeft: string;
|
|
15794
|
+
railColor: string;
|
|
15795
|
+
}, any>;
|
|
15796
|
+
}>;
|
|
15026
15797
|
}>>;
|
|
15027
15798
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
15028
15799
|
panelColor: string;
|
|
@@ -15318,7 +16089,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15318
16089
|
paddingMedium: string;
|
|
15319
16090
|
paddingLarge: string;
|
|
15320
16091
|
clearSize: string;
|
|
15321
|
-
},
|
|
16092
|
+
}, {
|
|
16093
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16094
|
+
height: string;
|
|
16095
|
+
width: string;
|
|
16096
|
+
borderRadius: string;
|
|
16097
|
+
color: string;
|
|
16098
|
+
colorHover: string;
|
|
16099
|
+
railInsetHorizontalBottom: string;
|
|
16100
|
+
railInsetHorizontalTop: string;
|
|
16101
|
+
railInsetVerticalRight: string;
|
|
16102
|
+
railInsetVerticalLeft: string;
|
|
16103
|
+
railColor: string;
|
|
16104
|
+
}, any>;
|
|
16105
|
+
}>;
|
|
15322
16106
|
}>>>;
|
|
15323
16107
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
15324
16108
|
panelColor: string;
|
|
@@ -15614,7 +16398,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15614
16398
|
paddingMedium: string;
|
|
15615
16399
|
paddingLarge: string;
|
|
15616
16400
|
clearSize: string;
|
|
15617
|
-
},
|
|
16401
|
+
}, {
|
|
16402
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16403
|
+
height: string;
|
|
16404
|
+
width: string;
|
|
16405
|
+
borderRadius: string;
|
|
16406
|
+
color: string;
|
|
16407
|
+
colorHover: string;
|
|
16408
|
+
railInsetHorizontalBottom: string;
|
|
16409
|
+
railInsetHorizontalTop: string;
|
|
16410
|
+
railInsetVerticalRight: string;
|
|
16411
|
+
railInsetVerticalLeft: string;
|
|
16412
|
+
railColor: string;
|
|
16413
|
+
}, any>;
|
|
16414
|
+
}>;
|
|
15618
16415
|
}>>>;
|
|
15619
16416
|
}>, {
|
|
15620
16417
|
focus: () => void;
|
|
@@ -16103,7 +16900,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16103
16900
|
paddingMedium: string;
|
|
16104
16901
|
paddingLarge: string;
|
|
16105
16902
|
clearSize: string;
|
|
16106
|
-
},
|
|
16903
|
+
}, {
|
|
16904
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
16905
|
+
height: string;
|
|
16906
|
+
width: string;
|
|
16907
|
+
borderRadius: string;
|
|
16908
|
+
color: string;
|
|
16909
|
+
colorHover: string;
|
|
16910
|
+
railInsetHorizontalBottom: string;
|
|
16911
|
+
railInsetHorizontalTop: string;
|
|
16912
|
+
railInsetVerticalRight: string;
|
|
16913
|
+
railInsetVerticalLeft: string;
|
|
16914
|
+
railColor: string;
|
|
16915
|
+
}, any>;
|
|
16916
|
+
}>;
|
|
16107
16917
|
};
|
|
16108
16918
|
peerOverrides: {
|
|
16109
16919
|
Scrollbar?: {
|
|
@@ -16118,7 +16928,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16118
16928
|
} | undefined;
|
|
16119
16929
|
Input?: {
|
|
16120
16930
|
peers?: {
|
|
16121
|
-
|
|
16931
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
16932
|
+
height: string;
|
|
16933
|
+
width: string;
|
|
16934
|
+
borderRadius: string;
|
|
16935
|
+
color: string;
|
|
16936
|
+
colorHover: string;
|
|
16937
|
+
railInsetHorizontalBottom: string;
|
|
16938
|
+
railInsetHorizontalTop: string;
|
|
16939
|
+
railInsetVerticalRight: string;
|
|
16940
|
+
railInsetVerticalLeft: string;
|
|
16941
|
+
railColor: string;
|
|
16942
|
+
}, any>> | undefined;
|
|
16122
16943
|
} | undefined;
|
|
16123
16944
|
} | undefined;
|
|
16124
16945
|
};
|
|
@@ -16518,7 +17339,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16518
17339
|
paddingMedium: string;
|
|
16519
17340
|
paddingLarge: string;
|
|
16520
17341
|
clearSize: string;
|
|
16521
|
-
},
|
|
17342
|
+
}, {
|
|
17343
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17344
|
+
height: string;
|
|
17345
|
+
width: string;
|
|
17346
|
+
borderRadius: string;
|
|
17347
|
+
color: string;
|
|
17348
|
+
colorHover: string;
|
|
17349
|
+
railInsetHorizontalBottom: string;
|
|
17350
|
+
railInsetHorizontalTop: string;
|
|
17351
|
+
railInsetVerticalRight: string;
|
|
17352
|
+
railInsetVerticalLeft: string;
|
|
17353
|
+
railColor: string;
|
|
17354
|
+
}, any>;
|
|
17355
|
+
}>;
|
|
16522
17356
|
}>>;
|
|
16523
17357
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
16524
17358
|
panelColor: string;
|
|
@@ -16814,7 +17648,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16814
17648
|
paddingMedium: string;
|
|
16815
17649
|
paddingLarge: string;
|
|
16816
17650
|
clearSize: string;
|
|
16817
|
-
},
|
|
17651
|
+
}, {
|
|
17652
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17653
|
+
height: string;
|
|
17654
|
+
width: string;
|
|
17655
|
+
borderRadius: string;
|
|
17656
|
+
color: string;
|
|
17657
|
+
colorHover: string;
|
|
17658
|
+
railInsetHorizontalBottom: string;
|
|
17659
|
+
railInsetHorizontalTop: string;
|
|
17660
|
+
railInsetVerticalRight: string;
|
|
17661
|
+
railInsetVerticalLeft: string;
|
|
17662
|
+
railColor: string;
|
|
17663
|
+
}, any>;
|
|
17664
|
+
}>;
|
|
16818
17665
|
}>>>;
|
|
16819
17666
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"TimePicker", {
|
|
16820
17667
|
panelColor: string;
|
|
@@ -17110,21 +17957,34 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17110
17957
|
paddingMedium: string;
|
|
17111
17958
|
paddingLarge: string;
|
|
17112
17959
|
clearSize: string;
|
|
17113
|
-
},
|
|
17960
|
+
}, {
|
|
17961
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
17962
|
+
height: string;
|
|
17963
|
+
width: string;
|
|
17964
|
+
borderRadius: string;
|
|
17965
|
+
color: string;
|
|
17966
|
+
colorHover: string;
|
|
17967
|
+
railInsetHorizontalBottom: string;
|
|
17968
|
+
railInsetHorizontalTop: string;
|
|
17969
|
+
railInsetVerticalRight: string;
|
|
17970
|
+
railInsetVerticalLeft: string;
|
|
17971
|
+
railColor: string;
|
|
17972
|
+
}, any>;
|
|
17973
|
+
}>;
|
|
17114
17974
|
}>>>;
|
|
17115
17975
|
}>> & Readonly<{}>, {
|
|
17116
17976
|
to: string | boolean | HTMLElement;
|
|
17117
17977
|
disabled: boolean | undefined;
|
|
17118
17978
|
show: boolean | undefined;
|
|
17119
17979
|
format: string;
|
|
17120
|
-
bordered: boolean | undefined;
|
|
17121
17980
|
showIcon: boolean;
|
|
17122
|
-
|
|
17981
|
+
bordered: boolean | undefined;
|
|
17123
17982
|
clearable: boolean;
|
|
17124
17983
|
defaultValue: number | null;
|
|
17125
|
-
|
|
17126
|
-
use12Hours: boolean;
|
|
17984
|
+
placement: PopoverPlacement;
|
|
17127
17985
|
inputReadonly: boolean;
|
|
17986
|
+
use12Hours: boolean;
|
|
17987
|
+
stateful: boolean;
|
|
17128
17988
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
17129
17989
|
NSwitch: DefineComponent<ExtractPropTypes<{
|
|
17130
17990
|
readonly size: {
|
|
@@ -17567,7 +18427,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17567
18427
|
paddingMedium: string;
|
|
17568
18428
|
paddingLarge: string;
|
|
17569
18429
|
clearSize: string;
|
|
17570
|
-
},
|
|
18430
|
+
}, {
|
|
18431
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18432
|
+
height: string;
|
|
18433
|
+
width: string;
|
|
18434
|
+
borderRadius: string;
|
|
18435
|
+
color: string;
|
|
18436
|
+
colorHover: string;
|
|
18437
|
+
railInsetHorizontalBottom: string;
|
|
18438
|
+
railInsetHorizontalTop: string;
|
|
18439
|
+
railInsetVerticalRight: string;
|
|
18440
|
+
railInsetVerticalLeft: string;
|
|
18441
|
+
railColor: string;
|
|
18442
|
+
}, any>;
|
|
18443
|
+
}>;
|
|
17571
18444
|
Button: Theme<"Button", {
|
|
17572
18445
|
heightTiny: string;
|
|
17573
18446
|
heightSmall: string;
|
|
@@ -17849,20 +18722,33 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17849
18722
|
paddingMedium: string;
|
|
17850
18723
|
paddingLarge: string;
|
|
17851
18724
|
clearSize: string;
|
|
17852
|
-
},
|
|
17853
|
-
|
|
17854
|
-
|
|
17855
|
-
|
|
17856
|
-
|
|
17857
|
-
|
|
17858
|
-
|
|
17859
|
-
|
|
17860
|
-
|
|
17861
|
-
|
|
17862
|
-
|
|
17863
|
-
|
|
17864
|
-
|
|
17865
|
-
|
|
18725
|
+
}, {
|
|
18726
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
18727
|
+
height: string;
|
|
18728
|
+
width: string;
|
|
18729
|
+
borderRadius: string;
|
|
18730
|
+
color: string;
|
|
18731
|
+
colorHover: string;
|
|
18732
|
+
railInsetHorizontalBottom: string;
|
|
18733
|
+
railInsetHorizontalTop: string;
|
|
18734
|
+
railInsetVerticalRight: string;
|
|
18735
|
+
railInsetVerticalLeft: string;
|
|
18736
|
+
railColor: string;
|
|
18737
|
+
}, any>;
|
|
18738
|
+
}>;
|
|
18739
|
+
Button: Theme<"Button", {
|
|
18740
|
+
heightTiny: string;
|
|
18741
|
+
heightSmall: string;
|
|
18742
|
+
heightMedium: string;
|
|
18743
|
+
heightLarge: string;
|
|
18744
|
+
borderRadiusTiny: string;
|
|
18745
|
+
borderRadiusSmall: string;
|
|
18746
|
+
borderRadiusMedium: string;
|
|
18747
|
+
borderRadiusLarge: string;
|
|
18748
|
+
fontSizeTiny: string;
|
|
18749
|
+
fontSizeSmall: string;
|
|
18750
|
+
fontSizeMedium: string;
|
|
18751
|
+
fontSizeLarge: string;
|
|
17866
18752
|
opacityDisabled: string;
|
|
17867
18753
|
colorOpacitySecondary: string;
|
|
17868
18754
|
colorOpacitySecondaryHover: string;
|
|
@@ -18131,7 +19017,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18131
19017
|
paddingMedium: string;
|
|
18132
19018
|
paddingLarge: string;
|
|
18133
19019
|
clearSize: string;
|
|
18134
|
-
},
|
|
19020
|
+
}, {
|
|
19021
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19022
|
+
height: string;
|
|
19023
|
+
width: string;
|
|
19024
|
+
borderRadius: string;
|
|
19025
|
+
color: string;
|
|
19026
|
+
colorHover: string;
|
|
19027
|
+
railInsetHorizontalBottom: string;
|
|
19028
|
+
railInsetHorizontalTop: string;
|
|
19029
|
+
railInsetVerticalRight: string;
|
|
19030
|
+
railInsetVerticalLeft: string;
|
|
19031
|
+
railColor: string;
|
|
19032
|
+
}, any>;
|
|
19033
|
+
}>;
|
|
18135
19034
|
Button: Theme<"Button", {
|
|
18136
19035
|
heightTiny: string;
|
|
18137
19036
|
heightSmall: string;
|
|
@@ -18485,7 +19384,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18485
19384
|
paddingMedium: string;
|
|
18486
19385
|
paddingLarge: string;
|
|
18487
19386
|
clearSize: string;
|
|
18488
|
-
},
|
|
19387
|
+
}, {
|
|
19388
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19389
|
+
height: string;
|
|
19390
|
+
width: string;
|
|
19391
|
+
borderRadius: string;
|
|
19392
|
+
color: string;
|
|
19393
|
+
colorHover: string;
|
|
19394
|
+
railInsetHorizontalBottom: string;
|
|
19395
|
+
railInsetHorizontalTop: string;
|
|
19396
|
+
railInsetVerticalRight: string;
|
|
19397
|
+
railInsetVerticalLeft: string;
|
|
19398
|
+
railColor: string;
|
|
19399
|
+
}, any>;
|
|
19400
|
+
}>;
|
|
18489
19401
|
Button: Theme<"Button", {
|
|
18490
19402
|
heightTiny: string;
|
|
18491
19403
|
heightSmall: string;
|
|
@@ -18767,7 +19679,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18767
19679
|
paddingMedium: string;
|
|
18768
19680
|
paddingLarge: string;
|
|
18769
19681
|
clearSize: string;
|
|
18770
|
-
},
|
|
19682
|
+
}, {
|
|
19683
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19684
|
+
height: string;
|
|
19685
|
+
width: string;
|
|
19686
|
+
borderRadius: string;
|
|
19687
|
+
color: string;
|
|
19688
|
+
colorHover: string;
|
|
19689
|
+
railInsetHorizontalBottom: string;
|
|
19690
|
+
railInsetHorizontalTop: string;
|
|
19691
|
+
railInsetVerticalRight: string;
|
|
19692
|
+
railInsetVerticalLeft: string;
|
|
19693
|
+
railColor: string;
|
|
19694
|
+
}, any>;
|
|
19695
|
+
}>;
|
|
18771
19696
|
Button: Theme<"Button", {
|
|
18772
19697
|
heightTiny: string;
|
|
18773
19698
|
heightSmall: string;
|
|
@@ -19049,7 +19974,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19049
19974
|
paddingMedium: string;
|
|
19050
19975
|
paddingLarge: string;
|
|
19051
19976
|
clearSize: string;
|
|
19052
|
-
},
|
|
19977
|
+
}, {
|
|
19978
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
19979
|
+
height: string;
|
|
19980
|
+
width: string;
|
|
19981
|
+
borderRadius: string;
|
|
19982
|
+
color: string;
|
|
19983
|
+
colorHover: string;
|
|
19984
|
+
railInsetHorizontalBottom: string;
|
|
19985
|
+
railInsetHorizontalTop: string;
|
|
19986
|
+
railInsetVerticalRight: string;
|
|
19987
|
+
railInsetVerticalLeft: string;
|
|
19988
|
+
railColor: string;
|
|
19989
|
+
}, any>;
|
|
19990
|
+
}>;
|
|
19053
19991
|
Button: Theme<"Button", {
|
|
19054
19992
|
heightTiny: string;
|
|
19055
19993
|
heightSmall: string;
|
|
@@ -19261,10 +20199,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19261
20199
|
readonly show: boolean | undefined;
|
|
19262
20200
|
readonly placement: PopoverPlacement;
|
|
19263
20201
|
readonly defaultShow: boolean;
|
|
19264
|
-
readonly actions: ActionType[];
|
|
19265
|
-
readonly showAlpha: boolean;
|
|
19266
20202
|
readonly modes: ColorPickerMode[];
|
|
20203
|
+
readonly showAlpha: boolean;
|
|
19267
20204
|
readonly showPreview: boolean;
|
|
20205
|
+
readonly actions: ActionType[];
|
|
19268
20206
|
}, SlotsType<ColorPickerSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
19269
20207
|
NCheckbox: DefineComponent<ExtractPropTypes<{
|
|
19270
20208
|
size: PropType<"small" | "medium" | "large">;
|
|
@@ -19910,7 +20848,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19910
20848
|
arrowOffsetVertical: string;
|
|
19911
20849
|
arrowHeight: string;
|
|
19912
20850
|
padding: string;
|
|
19913
|
-
},
|
|
20851
|
+
}, {
|
|
20852
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
20853
|
+
height: string;
|
|
20854
|
+
width: string;
|
|
20855
|
+
borderRadius: string;
|
|
20856
|
+
color: string;
|
|
20857
|
+
colorHover: string;
|
|
20858
|
+
railInsetHorizontalBottom: string;
|
|
20859
|
+
railInsetHorizontalTop: string;
|
|
20860
|
+
railInsetVerticalRight: string;
|
|
20861
|
+
railInsetVerticalLeft: string;
|
|
20862
|
+
railColor: string;
|
|
20863
|
+
}, any>;
|
|
20864
|
+
}>;
|
|
19914
20865
|
}>;
|
|
19915
20866
|
Scrollbar: Theme<"Scrollbar", {
|
|
19916
20867
|
height: string;
|
|
@@ -20122,7 +21073,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20122
21073
|
arrowOffsetVertical: string;
|
|
20123
21074
|
arrowHeight: string;
|
|
20124
21075
|
padding: string;
|
|
20125
|
-
},
|
|
21076
|
+
}, {
|
|
21077
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21078
|
+
height: string;
|
|
21079
|
+
width: string;
|
|
21080
|
+
borderRadius: string;
|
|
21081
|
+
color: string;
|
|
21082
|
+
colorHover: string;
|
|
21083
|
+
railInsetHorizontalBottom: string;
|
|
21084
|
+
railInsetHorizontalTop: string;
|
|
21085
|
+
railInsetVerticalRight: string;
|
|
21086
|
+
railInsetVerticalLeft: string;
|
|
21087
|
+
railColor: string;
|
|
21088
|
+
}, any>;
|
|
21089
|
+
}>;
|
|
20126
21090
|
}>;
|
|
20127
21091
|
Scrollbar: Theme<"Scrollbar", {
|
|
20128
21092
|
height: string;
|
|
@@ -20334,7 +21298,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20334
21298
|
arrowOffsetVertical: string;
|
|
20335
21299
|
arrowHeight: string;
|
|
20336
21300
|
padding: string;
|
|
20337
|
-
},
|
|
21301
|
+
}, {
|
|
21302
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21303
|
+
height: string;
|
|
21304
|
+
width: string;
|
|
21305
|
+
borderRadius: string;
|
|
21306
|
+
color: string;
|
|
21307
|
+
colorHover: string;
|
|
21308
|
+
railInsetHorizontalBottom: string;
|
|
21309
|
+
railInsetHorizontalTop: string;
|
|
21310
|
+
railInsetVerticalRight: string;
|
|
21311
|
+
railInsetVerticalLeft: string;
|
|
21312
|
+
railColor: string;
|
|
21313
|
+
}, any>;
|
|
21314
|
+
}>;
|
|
20338
21315
|
}>;
|
|
20339
21316
|
Scrollbar: Theme<"Scrollbar", {
|
|
20340
21317
|
height: string;
|
|
@@ -20630,7 +21607,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20630
21607
|
arrowOffsetVertical: string;
|
|
20631
21608
|
arrowHeight: string;
|
|
20632
21609
|
padding: string;
|
|
20633
|
-
},
|
|
21610
|
+
}, {
|
|
21611
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21612
|
+
height: string;
|
|
21613
|
+
width: string;
|
|
21614
|
+
borderRadius: string;
|
|
21615
|
+
color: string;
|
|
21616
|
+
colorHover: string;
|
|
21617
|
+
railInsetHorizontalBottom: string;
|
|
21618
|
+
railInsetHorizontalTop: string;
|
|
21619
|
+
railInsetVerticalRight: string;
|
|
21620
|
+
railInsetVerticalLeft: string;
|
|
21621
|
+
railColor: string;
|
|
21622
|
+
}, any>;
|
|
21623
|
+
}>;
|
|
20634
21624
|
}>;
|
|
20635
21625
|
Scrollbar: Theme<"Scrollbar", {
|
|
20636
21626
|
height: string;
|
|
@@ -20737,7 +21727,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
20737
21727
|
arrowOffsetVertical: string;
|
|
20738
21728
|
arrowHeight: string;
|
|
20739
21729
|
padding: string;
|
|
20740
|
-
},
|
|
21730
|
+
}, {
|
|
21731
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
21732
|
+
height: string;
|
|
21733
|
+
width: string;
|
|
21734
|
+
borderRadius: string;
|
|
21735
|
+
color: string;
|
|
21736
|
+
colorHover: string;
|
|
21737
|
+
railInsetHorizontalBottom: string;
|
|
21738
|
+
railInsetHorizontalTop: string;
|
|
21739
|
+
railInsetVerticalRight: string;
|
|
21740
|
+
railInsetVerticalLeft: string;
|
|
21741
|
+
railColor: string;
|
|
21742
|
+
}, any>;
|
|
21743
|
+
}>> | undefined;
|
|
20741
21744
|
} | undefined;
|
|
20742
21745
|
} | undefined;
|
|
20743
21746
|
Scrollbar?: {
|
|
@@ -21050,7 +22053,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21050
22053
|
arrowOffsetVertical: string;
|
|
21051
22054
|
arrowHeight: string;
|
|
21052
22055
|
padding: string;
|
|
21053
|
-
},
|
|
22056
|
+
}, {
|
|
22057
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22058
|
+
height: string;
|
|
22059
|
+
width: string;
|
|
22060
|
+
borderRadius: string;
|
|
22061
|
+
color: string;
|
|
22062
|
+
colorHover: string;
|
|
22063
|
+
railInsetHorizontalBottom: string;
|
|
22064
|
+
railInsetHorizontalTop: string;
|
|
22065
|
+
railInsetVerticalRight: string;
|
|
22066
|
+
railInsetVerticalLeft: string;
|
|
22067
|
+
railColor: string;
|
|
22068
|
+
}, any>;
|
|
22069
|
+
}>;
|
|
21054
22070
|
}>;
|
|
21055
22071
|
Scrollbar: Theme<"Scrollbar", {
|
|
21056
22072
|
height: string;
|
|
@@ -21262,7 +22278,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21262
22278
|
arrowOffsetVertical: string;
|
|
21263
22279
|
arrowHeight: string;
|
|
21264
22280
|
padding: string;
|
|
21265
|
-
},
|
|
22281
|
+
}, {
|
|
22282
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22283
|
+
height: string;
|
|
22284
|
+
width: string;
|
|
22285
|
+
borderRadius: string;
|
|
22286
|
+
color: string;
|
|
22287
|
+
colorHover: string;
|
|
22288
|
+
railInsetHorizontalBottom: string;
|
|
22289
|
+
railInsetHorizontalTop: string;
|
|
22290
|
+
railInsetVerticalRight: string;
|
|
22291
|
+
railInsetVerticalLeft: string;
|
|
22292
|
+
railColor: string;
|
|
22293
|
+
}, any>;
|
|
22294
|
+
}>;
|
|
21266
22295
|
}>;
|
|
21267
22296
|
Scrollbar: Theme<"Scrollbar", {
|
|
21268
22297
|
height: string;
|
|
@@ -21474,7 +22503,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21474
22503
|
arrowOffsetVertical: string;
|
|
21475
22504
|
arrowHeight: string;
|
|
21476
22505
|
padding: string;
|
|
21477
|
-
},
|
|
22506
|
+
}, {
|
|
22507
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22508
|
+
height: string;
|
|
22509
|
+
width: string;
|
|
22510
|
+
borderRadius: string;
|
|
22511
|
+
color: string;
|
|
22512
|
+
colorHover: string;
|
|
22513
|
+
railInsetHorizontalBottom: string;
|
|
22514
|
+
railInsetHorizontalTop: string;
|
|
22515
|
+
railInsetVerticalRight: string;
|
|
22516
|
+
railInsetVerticalLeft: string;
|
|
22517
|
+
railColor: string;
|
|
22518
|
+
}, any>;
|
|
22519
|
+
}>;
|
|
21478
22520
|
}>;
|
|
21479
22521
|
Scrollbar: Theme<"Scrollbar", {
|
|
21480
22522
|
height: string;
|
|
@@ -21542,23 +22584,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21542
22584
|
readonly separator: string;
|
|
21543
22585
|
readonly multiple: boolean;
|
|
21544
22586
|
readonly bordered: boolean | undefined;
|
|
22587
|
+
readonly clearable: boolean;
|
|
22588
|
+
readonly defaultValue: Value | null;
|
|
21545
22589
|
readonly placement: PopoverPlacement;
|
|
21546
|
-
readonly
|
|
21547
|
-
readonly virtualScroll: boolean;
|
|
21548
|
-
readonly valueField: string;
|
|
22590
|
+
readonly allowCheckingNotLoaded: boolean;
|
|
21549
22591
|
readonly filterable: boolean;
|
|
21550
|
-
readonly
|
|
22592
|
+
readonly disabledField: string;
|
|
21551
22593
|
readonly expandTrigger: ExpandTrigger;
|
|
21552
22594
|
readonly clearFilterAfterSelect: boolean;
|
|
21553
|
-
readonly defaultValue: Value | null;
|
|
21554
22595
|
readonly remote: boolean;
|
|
21555
|
-
readonly childrenField: string;
|
|
21556
|
-
readonly allowCheckingNotLoaded: boolean;
|
|
21557
22596
|
readonly cascade: boolean;
|
|
21558
|
-
readonly checkStrategy: CheckStrategy;
|
|
21559
|
-
readonly disabledField: string;
|
|
21560
22597
|
readonly leafOnly: boolean;
|
|
21561
22598
|
readonly showPath: boolean;
|
|
22599
|
+
readonly virtualScroll: boolean;
|
|
22600
|
+
readonly checkStrategy: CheckStrategy;
|
|
22601
|
+
readonly valueField: string;
|
|
22602
|
+
readonly labelField: string;
|
|
22603
|
+
readonly childrenField: string;
|
|
21562
22604
|
}, SlotsType<CascaderSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
21563
22605
|
NTooltip: DefineComponent<ExtractPropTypes<{
|
|
21564
22606
|
theme: PropType<Theme<"Tooltip", {
|
|
@@ -21581,7 +22623,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21581
22623
|
arrowOffsetVertical: string;
|
|
21582
22624
|
arrowHeight: string;
|
|
21583
22625
|
padding: string;
|
|
21584
|
-
},
|
|
22626
|
+
}, {
|
|
22627
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22628
|
+
height: string;
|
|
22629
|
+
width: string;
|
|
22630
|
+
borderRadius: string;
|
|
22631
|
+
color: string;
|
|
22632
|
+
colorHover: string;
|
|
22633
|
+
railInsetHorizontalBottom: string;
|
|
22634
|
+
railInsetHorizontalTop: string;
|
|
22635
|
+
railInsetVerticalRight: string;
|
|
22636
|
+
railInsetVerticalLeft: string;
|
|
22637
|
+
railColor: string;
|
|
22638
|
+
}, any>;
|
|
22639
|
+
}>;
|
|
21585
22640
|
}>>;
|
|
21586
22641
|
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
21587
22642
|
borderRadius: string;
|
|
@@ -21603,7 +22658,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21603
22658
|
arrowOffsetVertical: string;
|
|
21604
22659
|
arrowHeight: string;
|
|
21605
22660
|
padding: string;
|
|
21606
|
-
},
|
|
22661
|
+
}, {
|
|
22662
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22663
|
+
height: string;
|
|
22664
|
+
width: string;
|
|
22665
|
+
borderRadius: string;
|
|
22666
|
+
color: string;
|
|
22667
|
+
colorHover: string;
|
|
22668
|
+
railInsetHorizontalBottom: string;
|
|
22669
|
+
railInsetHorizontalTop: string;
|
|
22670
|
+
railInsetVerticalRight: string;
|
|
22671
|
+
railInsetVerticalLeft: string;
|
|
22672
|
+
railColor: string;
|
|
22673
|
+
}, any>;
|
|
22674
|
+
}>;
|
|
21607
22675
|
}>>>;
|
|
21608
22676
|
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
21609
22677
|
borderRadius: string;
|
|
@@ -21625,7 +22693,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21625
22693
|
arrowOffsetVertical: string;
|
|
21626
22694
|
arrowHeight: string;
|
|
21627
22695
|
padding: string;
|
|
21628
|
-
},
|
|
22696
|
+
}, {
|
|
22697
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22698
|
+
height: string;
|
|
22699
|
+
width: string;
|
|
22700
|
+
borderRadius: string;
|
|
22701
|
+
color: string;
|
|
22702
|
+
colorHover: string;
|
|
22703
|
+
railInsetHorizontalBottom: string;
|
|
22704
|
+
railInsetHorizontalTop: string;
|
|
22705
|
+
railInsetVerticalRight: string;
|
|
22706
|
+
railInsetVerticalLeft: string;
|
|
22707
|
+
railColor: string;
|
|
22708
|
+
}, any>;
|
|
22709
|
+
}>;
|
|
21629
22710
|
}>>>;
|
|
21630
22711
|
show: {
|
|
21631
22712
|
type: PropType<boolean | undefined>;
|
|
@@ -21650,7 +22731,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21650
22731
|
};
|
|
21651
22732
|
raw: BooleanConstructor;
|
|
21652
22733
|
placement: {
|
|
21653
|
-
type: PropType<
|
|
22734
|
+
type: PropType<FollowerPlacement>;
|
|
21654
22735
|
default: string;
|
|
21655
22736
|
};
|
|
21656
22737
|
x: NumberConstructor;
|
|
@@ -21748,12 +22829,36 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21748
22829
|
arrowOffsetVertical: string;
|
|
21749
22830
|
arrowHeight: string;
|
|
21750
22831
|
padding: string;
|
|
21751
|
-
},
|
|
22832
|
+
}, {
|
|
22833
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22834
|
+
height: string;
|
|
22835
|
+
width: string;
|
|
22836
|
+
borderRadius: string;
|
|
22837
|
+
color: string;
|
|
22838
|
+
colorHover: string;
|
|
22839
|
+
railInsetHorizontalBottom: string;
|
|
22840
|
+
railInsetHorizontalTop: string;
|
|
22841
|
+
railInsetVerticalRight: string;
|
|
22842
|
+
railInsetVerticalLeft: string;
|
|
22843
|
+
railColor: string;
|
|
22844
|
+
}, any>;
|
|
22845
|
+
}>;
|
|
21752
22846
|
};
|
|
21753
22847
|
peerOverrides: {
|
|
21754
22848
|
Popover?: {
|
|
21755
22849
|
peers?: {
|
|
21756
|
-
|
|
22850
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
22851
|
+
height: string;
|
|
22852
|
+
width: string;
|
|
22853
|
+
borderRadius: string;
|
|
22854
|
+
color: string;
|
|
22855
|
+
colorHover: string;
|
|
22856
|
+
railInsetHorizontalBottom: string;
|
|
22857
|
+
railInsetHorizontalTop: string;
|
|
22858
|
+
railInsetVerticalRight: string;
|
|
22859
|
+
railInsetVerticalLeft: string;
|
|
22860
|
+
railColor: string;
|
|
22861
|
+
}, any>> | undefined;
|
|
21757
22862
|
} | undefined;
|
|
21758
22863
|
} | undefined;
|
|
21759
22864
|
};
|
|
@@ -21788,7 +22893,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21788
22893
|
arrowOffsetVertical: string;
|
|
21789
22894
|
arrowHeight: string;
|
|
21790
22895
|
padding: string;
|
|
21791
|
-
},
|
|
22896
|
+
}, {
|
|
22897
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22898
|
+
height: string;
|
|
22899
|
+
width: string;
|
|
22900
|
+
borderRadius: string;
|
|
22901
|
+
color: string;
|
|
22902
|
+
colorHover: string;
|
|
22903
|
+
railInsetHorizontalBottom: string;
|
|
22904
|
+
railInsetHorizontalTop: string;
|
|
22905
|
+
railInsetVerticalRight: string;
|
|
22906
|
+
railInsetVerticalLeft: string;
|
|
22907
|
+
railColor: string;
|
|
22908
|
+
}, any>;
|
|
22909
|
+
}>;
|
|
21792
22910
|
}>>;
|
|
21793
22911
|
themeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
21794
22912
|
borderRadius: string;
|
|
@@ -21810,7 +22928,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21810
22928
|
arrowOffsetVertical: string;
|
|
21811
22929
|
arrowHeight: string;
|
|
21812
22930
|
padding: string;
|
|
21813
|
-
},
|
|
22931
|
+
}, {
|
|
22932
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22933
|
+
height: string;
|
|
22934
|
+
width: string;
|
|
22935
|
+
borderRadius: string;
|
|
22936
|
+
color: string;
|
|
22937
|
+
colorHover: string;
|
|
22938
|
+
railInsetHorizontalBottom: string;
|
|
22939
|
+
railInsetHorizontalTop: string;
|
|
22940
|
+
railInsetVerticalRight: string;
|
|
22941
|
+
railInsetVerticalLeft: string;
|
|
22942
|
+
railColor: string;
|
|
22943
|
+
}, any>;
|
|
22944
|
+
}>;
|
|
21814
22945
|
}>>>;
|
|
21815
22946
|
builtinThemeOverrides: PropType<ExtractThemeOverrides<Theme<"Tooltip", {
|
|
21816
22947
|
borderRadius: string;
|
|
@@ -21832,7 +22963,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21832
22963
|
arrowOffsetVertical: string;
|
|
21833
22964
|
arrowHeight: string;
|
|
21834
22965
|
padding: string;
|
|
21835
|
-
},
|
|
22966
|
+
}, {
|
|
22967
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
22968
|
+
height: string;
|
|
22969
|
+
width: string;
|
|
22970
|
+
borderRadius: string;
|
|
22971
|
+
color: string;
|
|
22972
|
+
colorHover: string;
|
|
22973
|
+
railInsetHorizontalBottom: string;
|
|
22974
|
+
railInsetHorizontalTop: string;
|
|
22975
|
+
railInsetVerticalRight: string;
|
|
22976
|
+
railInsetVerticalLeft: string;
|
|
22977
|
+
railColor: string;
|
|
22978
|
+
}, any>;
|
|
22979
|
+
}>;
|
|
21836
22980
|
}>>>;
|
|
21837
22981
|
show: {
|
|
21838
22982
|
type: PropType<boolean | undefined>;
|
|
@@ -21857,7 +23001,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21857
23001
|
};
|
|
21858
23002
|
raw: BooleanConstructor;
|
|
21859
23003
|
placement: {
|
|
21860
|
-
type: PropType<
|
|
23004
|
+
type: PropType<FollowerPlacement>;
|
|
21861
23005
|
default: string;
|
|
21862
23006
|
};
|
|
21863
23007
|
x: NumberConstructor;
|
|
@@ -21932,23 +23076,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21932
23076
|
width: number | "trigger";
|
|
21933
23077
|
duration: number;
|
|
21934
23078
|
raw: boolean;
|
|
21935
|
-
placement:
|
|
21936
|
-
overlap: boolean;
|
|
21937
|
-
scrollable: boolean;
|
|
21938
|
-
trigger: PopoverTrigger;
|
|
23079
|
+
placement: FollowerPlacement;
|
|
21939
23080
|
showArrow: boolean;
|
|
23081
|
+
trigger: PopoverTrigger;
|
|
23082
|
+
arrow: boolean | undefined;
|
|
23083
|
+
defaultShow: boolean;
|
|
21940
23084
|
delay: number;
|
|
21941
23085
|
arrowPointToCenter: boolean;
|
|
21942
23086
|
displayDirective: "show" | "if";
|
|
23087
|
+
animated: boolean;
|
|
23088
|
+
overlap: boolean;
|
|
21943
23089
|
keepAliveOnHover: boolean;
|
|
23090
|
+
scrollable: boolean;
|
|
21944
23091
|
internalDeactivateImmediately: boolean;
|
|
21945
|
-
animated: boolean;
|
|
21946
|
-
internalTrapFocus: boolean;
|
|
21947
|
-
defaultShow: boolean;
|
|
21948
23092
|
internalSyncTargetWithParent: boolean;
|
|
21949
23093
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
23094
|
+
internalTrapFocus: boolean;
|
|
21950
23095
|
internalExtraClass: string[];
|
|
21951
|
-
arrow: boolean | undefined;
|
|
21952
23096
|
}, SlotsType<TooltipSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
21953
23097
|
NDropdown: DefineComponent<ExtractPropTypes<{
|
|
21954
23098
|
readonly theme: PropType< Theme<"Dropdown", {
|
|
@@ -22019,7 +23163,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22019
23163
|
arrowOffsetVertical: string;
|
|
22020
23164
|
arrowHeight: string;
|
|
22021
23165
|
padding: string;
|
|
22022
|
-
},
|
|
23166
|
+
}, {
|
|
23167
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23168
|
+
height: string;
|
|
23169
|
+
width: string;
|
|
23170
|
+
borderRadius: string;
|
|
23171
|
+
color: string;
|
|
23172
|
+
colorHover: string;
|
|
23173
|
+
railInsetHorizontalBottom: string;
|
|
23174
|
+
railInsetHorizontalTop: string;
|
|
23175
|
+
railInsetVerticalRight: string;
|
|
23176
|
+
railInsetVerticalLeft: string;
|
|
23177
|
+
railColor: string;
|
|
23178
|
+
}, any>;
|
|
23179
|
+
}>;
|
|
22023
23180
|
}>>;
|
|
22024
23181
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
22025
23182
|
optionHeightSmall: string;
|
|
@@ -22089,7 +23246,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22089
23246
|
arrowOffsetVertical: string;
|
|
22090
23247
|
arrowHeight: string;
|
|
22091
23248
|
padding: string;
|
|
22092
|
-
},
|
|
23249
|
+
}, {
|
|
23250
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23251
|
+
height: string;
|
|
23252
|
+
width: string;
|
|
23253
|
+
borderRadius: string;
|
|
23254
|
+
color: string;
|
|
23255
|
+
colorHover: string;
|
|
23256
|
+
railInsetHorizontalBottom: string;
|
|
23257
|
+
railInsetHorizontalTop: string;
|
|
23258
|
+
railInsetVerticalRight: string;
|
|
23259
|
+
railInsetVerticalLeft: string;
|
|
23260
|
+
railColor: string;
|
|
23261
|
+
}, any>;
|
|
23262
|
+
}>;
|
|
22093
23263
|
}>>>;
|
|
22094
23264
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
22095
23265
|
optionHeightSmall: string;
|
|
@@ -22159,7 +23329,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22159
23329
|
arrowOffsetVertical: string;
|
|
22160
23330
|
arrowHeight: string;
|
|
22161
23331
|
padding: string;
|
|
22162
|
-
},
|
|
23332
|
+
}, {
|
|
23333
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23334
|
+
height: string;
|
|
23335
|
+
width: string;
|
|
23336
|
+
borderRadius: string;
|
|
23337
|
+
color: string;
|
|
23338
|
+
colorHover: string;
|
|
23339
|
+
railInsetHorizontalBottom: string;
|
|
23340
|
+
railInsetHorizontalTop: string;
|
|
23341
|
+
railInsetVerticalRight: string;
|
|
23342
|
+
railInsetVerticalLeft: string;
|
|
23343
|
+
railColor: string;
|
|
23344
|
+
}, any>;
|
|
23345
|
+
}>;
|
|
22163
23346
|
}>>>;
|
|
22164
23347
|
readonly animated: {
|
|
22165
23348
|
readonly type: BooleanConstructor;
|
|
@@ -22353,12 +23536,36 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22353
23536
|
arrowOffsetVertical: string;
|
|
22354
23537
|
arrowHeight: string;
|
|
22355
23538
|
padding: string;
|
|
22356
|
-
},
|
|
23539
|
+
}, {
|
|
23540
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23541
|
+
height: string;
|
|
23542
|
+
width: string;
|
|
23543
|
+
borderRadius: string;
|
|
23544
|
+
color: string;
|
|
23545
|
+
colorHover: string;
|
|
23546
|
+
railInsetHorizontalBottom: string;
|
|
23547
|
+
railInsetHorizontalTop: string;
|
|
23548
|
+
railInsetVerticalRight: string;
|
|
23549
|
+
railInsetVerticalLeft: string;
|
|
23550
|
+
railColor: string;
|
|
23551
|
+
}, any>;
|
|
23552
|
+
}>;
|
|
22357
23553
|
};
|
|
22358
23554
|
peerOverrides: {
|
|
22359
23555
|
Popover?: {
|
|
22360
23556
|
peers?: {
|
|
22361
|
-
|
|
23557
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
23558
|
+
height: string;
|
|
23559
|
+
width: string;
|
|
23560
|
+
borderRadius: string;
|
|
23561
|
+
color: string;
|
|
23562
|
+
colorHover: string;
|
|
23563
|
+
railInsetHorizontalBottom: string;
|
|
23564
|
+
railInsetHorizontalTop: string;
|
|
23565
|
+
railInsetVerticalRight: string;
|
|
23566
|
+
railInsetVerticalLeft: string;
|
|
23567
|
+
railColor: string;
|
|
23568
|
+
}, any>> | undefined;
|
|
22362
23569
|
} | undefined;
|
|
22363
23570
|
} | undefined;
|
|
22364
23571
|
};
|
|
@@ -22439,7 +23646,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22439
23646
|
arrowOffsetVertical: string;
|
|
22440
23647
|
arrowHeight: string;
|
|
22441
23648
|
padding: string;
|
|
22442
|
-
},
|
|
23649
|
+
}, {
|
|
23650
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23651
|
+
height: string;
|
|
23652
|
+
width: string;
|
|
23653
|
+
borderRadius: string;
|
|
23654
|
+
color: string;
|
|
23655
|
+
colorHover: string;
|
|
23656
|
+
railInsetHorizontalBottom: string;
|
|
23657
|
+
railInsetHorizontalTop: string;
|
|
23658
|
+
railInsetVerticalRight: string;
|
|
23659
|
+
railInsetVerticalLeft: string;
|
|
23660
|
+
railColor: string;
|
|
23661
|
+
}, any>;
|
|
23662
|
+
}>;
|
|
22443
23663
|
}>>;
|
|
22444
23664
|
readonly themeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
22445
23665
|
optionHeightSmall: string;
|
|
@@ -22509,7 +23729,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22509
23729
|
arrowOffsetVertical: string;
|
|
22510
23730
|
arrowHeight: string;
|
|
22511
23731
|
padding: string;
|
|
22512
|
-
},
|
|
23732
|
+
}, {
|
|
23733
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23734
|
+
height: string;
|
|
23735
|
+
width: string;
|
|
23736
|
+
borderRadius: string;
|
|
23737
|
+
color: string;
|
|
23738
|
+
colorHover: string;
|
|
23739
|
+
railInsetHorizontalBottom: string;
|
|
23740
|
+
railInsetHorizontalTop: string;
|
|
23741
|
+
railInsetVerticalRight: string;
|
|
23742
|
+
railInsetVerticalLeft: string;
|
|
23743
|
+
railColor: string;
|
|
23744
|
+
}, any>;
|
|
23745
|
+
}>;
|
|
22513
23746
|
}>>>;
|
|
22514
23747
|
readonly builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Dropdown", {
|
|
22515
23748
|
optionHeightSmall: string;
|
|
@@ -22579,7 +23812,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22579
23812
|
arrowOffsetVertical: string;
|
|
22580
23813
|
arrowHeight: string;
|
|
22581
23814
|
padding: string;
|
|
22582
|
-
},
|
|
23815
|
+
}, {
|
|
23816
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
23817
|
+
height: string;
|
|
23818
|
+
width: string;
|
|
23819
|
+
borderRadius: string;
|
|
23820
|
+
color: string;
|
|
23821
|
+
colorHover: string;
|
|
23822
|
+
railInsetHorizontalBottom: string;
|
|
23823
|
+
railInsetHorizontalTop: string;
|
|
23824
|
+
railInsetVerticalRight: string;
|
|
23825
|
+
railInsetVerticalLeft: string;
|
|
23826
|
+
railColor: string;
|
|
23827
|
+
}, any>;
|
|
23828
|
+
}>;
|
|
22583
23829
|
}>>>;
|
|
22584
23830
|
readonly animated: {
|
|
22585
23831
|
readonly type: BooleanConstructor;
|
|
@@ -22711,27 +23957,27 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22711
23957
|
readonly duration: number;
|
|
22712
23958
|
readonly raw: boolean;
|
|
22713
23959
|
readonly placement: PopoverPlacement;
|
|
22714
|
-
readonly
|
|
22715
|
-
readonly keyField: string;
|
|
22716
|
-
readonly scrollable: boolean;
|
|
22717
|
-
readonly trigger: PopoverTrigger;
|
|
22718
|
-
readonly labelField: string;
|
|
23960
|
+
readonly keyboard: boolean;
|
|
22719
23961
|
readonly showArrow: boolean;
|
|
23962
|
+
readonly trigger: PopoverTrigger;
|
|
23963
|
+
readonly arrow: boolean | undefined;
|
|
23964
|
+
readonly defaultShow: boolean;
|
|
22720
23965
|
readonly delay: number;
|
|
22721
23966
|
readonly arrowPointToCenter: boolean;
|
|
22722
23967
|
readonly displayDirective: "show" | "if";
|
|
23968
|
+
readonly animated: boolean;
|
|
23969
|
+
readonly overlap: boolean;
|
|
22723
23970
|
readonly keepAliveOnHover: boolean;
|
|
23971
|
+
readonly scrollable: boolean;
|
|
22724
23972
|
readonly internalDeactivateImmediately: boolean;
|
|
22725
|
-
readonly animated: boolean;
|
|
22726
|
-
readonly internalTrapFocus: boolean;
|
|
22727
|
-
readonly defaultShow: boolean;
|
|
22728
23973
|
readonly internalSyncTargetWithParent: boolean;
|
|
22729
23974
|
readonly internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
23975
|
+
readonly internalTrapFocus: boolean;
|
|
22730
23976
|
readonly internalExtraClass: string[];
|
|
22731
|
-
readonly
|
|
22732
|
-
readonly keyboard: boolean;
|
|
23977
|
+
readonly labelField: string;
|
|
22733
23978
|
readonly childrenField: string;
|
|
22734
23979
|
readonly inverted: boolean;
|
|
23980
|
+
readonly keyField: string;
|
|
22735
23981
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
22736
23982
|
}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
22737
23983
|
CaretDown: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, SVGSVGElement>;
|