@unizhen/ui 0.0.26 → 0.0.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/back/index.vue.d.ts +1 -1
- package/lib/components/camera/index.vue.d.ts +23 -11
- package/lib/components/circle/index.vue.d.ts +91 -13
- package/lib/components/components.d.ts +0 -1
- package/lib/components/fetch.d.ts +1 -1
- package/lib/components/form/draggable.vue.d.ts +1153 -152
- package/lib/components/form/image.vue.d.ts +311 -46
- package/lib/components/form/index.vue.d.ts +1153 -152
- package/lib/components/form/interface.d.ts +1 -0
- package/lib/components/form/item.vue.d.ts +1145 -152
- package/lib/components/form/upload.vue.d.ts +304 -46
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +114 -12
- package/lib/components/searchBar/index.vue.d.ts +1459 -213
- package/lib/components/searchBar/mobile.vue.d.ts +1241 -177
- package/lib/components/spin/index.vue.d.ts +113 -9
- package/lib/components/table/child.vue.d.ts +677 -56
- package/lib/components/table/child_quest.vue.d.ts +675 -54
- package/lib/components/table/drawer.vue.d.ts +7 -6
- package/lib/components/table/index.vue.d.ts +892 -88
- package/lib/components/table/mobile.vue.d.ts +334 -24
- package/lib/components/table/ocr.vue.d.ts +2 -1
- package/lib/components/thumbnail/index.vue.d.ts +126 -25
- package/lib/components/wrap/index.vue.d.ts +7 -1
- package/lib/ui.css +1 -1
- package/lib/ui.js +2526 -2581
- package/package.json +14 -13
- package/volar.d.ts +0 -1
- package/lib/components/numberRoll/index.d.ts +0 -1
- package/lib/components/numberRoll/index.vue.d.ts +0 -47
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { PropType, DefineComponent, ExtractPropTypes, Ref, ComponentOptionsMixin, PublicProps, CSSProperties, InputHTMLAttributes, ComputedRef, ComponentProvideOptions, VNodeChild, SlotsType, Component, ImgHTMLAttributes } from 'vue';
|
|
2
|
-
import { UploadFileInfo, UploadOnChange, UploadOnRemove, UploadOnFinish, UploadOnDownload, UploadSettledFileInfo, ImageGroupProps, ThemeCommonVars, ButtonSlots, ImageRenderToolbar, ImageSlots, PopoverTrigger, PopoverPlacement, PopoverSlots, ButtonProps,
|
|
2
|
+
import { UploadFileInfo, UploadOnChange, UploadOnRemove, UploadOnFinish, UploadOnDownload, UploadSettledFileInfo, ImageGroupProps, ThemeCommonVars, ButtonSlots, ImageRenderToolbar, ImagePreviewInst, ImageSlots, PopoverTrigger, PopoverPlacement, PopoverSlots, ButtonProps, FollowerPlacement, PopconfirmSlots } from 'naive-ui';
|
|
3
3
|
import { IUzFormItemUpload } from './interface';
|
|
4
4
|
import { ObjectKey } from '../interface';
|
|
5
5
|
import { CustomRequest, FuncOrRecordOrUndef, OnError, OnRetry, OnBeforeUpload, OnUpdateFileList, ListType, OnPreview, ShouldUseThumbnailUrl, CreateThumbnailUrl, RenderIcon } from 'naive-ui/es/upload/src/interface';
|
|
6
6
|
import { MaybeArray } from 'naive-ui/es/_utils';
|
|
7
7
|
import { Theme } from 'naive-ui/es/_mixins';
|
|
8
8
|
import { ExtractThemeOverrides } from 'naive-ui/es/_mixins/use-theme';
|
|
9
|
+
import { RtlItem } from 'naive-ui/es/config-provider/src/internal-interface';
|
|
9
10
|
import { Size, Type } from 'naive-ui/es/button/src/interface';
|
|
10
11
|
import { BaseWaveRef } from 'naive-ui/es/_internal';
|
|
11
|
-
import { RtlItem } from 'naive-ui/es/config-provider/src/internal-interface';
|
|
12
12
|
import { Depth } from 'naive-ui/es/icon/src/Icon';
|
|
13
13
|
import { IntersectionObserverOptions } from 'naive-ui/es/image/src/utils';
|
|
14
|
-
import { ImagePreviewInst } from 'naive-ui/es/image/src/ImagePreview';
|
|
15
14
|
import { InternalRenderBody, InternalPopoverInst } from 'naive-ui/es/popover/src/interface';
|
|
16
15
|
import { TriggerEventHandlers } from 'naive-ui/es/popover/src/Popover';
|
|
17
16
|
import { BinderInst } from 'vueuc';
|
|
@@ -897,6 +896,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
897
896
|
draggerInsideRef: {
|
|
898
897
|
value: boolean;
|
|
899
898
|
};
|
|
899
|
+
rtlEnabled: Ref< RtlItem | undefined, RtlItem | undefined> | undefined;
|
|
900
900
|
inputElRef: Ref<HTMLInputElement | null, HTMLInputElement | null>;
|
|
901
901
|
mergedTheme: ComputedRef<{
|
|
902
902
|
common: ThemeCommonVars;
|
|
@@ -3411,10 +3411,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3411
3411
|
readonly focusable: boolean;
|
|
3412
3412
|
readonly bordered: boolean;
|
|
3413
3413
|
readonly tertiary: boolean;
|
|
3414
|
-
readonly keyboard: boolean;
|
|
3415
3414
|
readonly ghost: boolean;
|
|
3416
3415
|
readonly secondary: boolean;
|
|
3417
3416
|
readonly quaternary: boolean;
|
|
3417
|
+
readonly keyboard: boolean;
|
|
3418
3418
|
readonly iconPlacement: "left" | "right";
|
|
3419
3419
|
readonly attrType: "reset" | "submit" | "button";
|
|
3420
3420
|
readonly nativeFocusBehavior: boolean;
|
|
@@ -3526,7 +3526,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3526
3526
|
arrowOffsetVertical: string;
|
|
3527
3527
|
arrowHeight: string;
|
|
3528
3528
|
padding: string;
|
|
3529
|
-
},
|
|
3529
|
+
}, {
|
|
3530
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3531
|
+
height: string;
|
|
3532
|
+
width: string;
|
|
3533
|
+
borderRadius: string;
|
|
3534
|
+
color: string;
|
|
3535
|
+
colorHover: string;
|
|
3536
|
+
railInsetHorizontalBottom: string;
|
|
3537
|
+
railInsetHorizontalTop: string;
|
|
3538
|
+
railInsetVerticalRight: string;
|
|
3539
|
+
railInsetVerticalLeft: string;
|
|
3540
|
+
railColor: string;
|
|
3541
|
+
}, any>;
|
|
3542
|
+
}>;
|
|
3530
3543
|
}>;
|
|
3531
3544
|
}>>;
|
|
3532
3545
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -3555,7 +3568,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3555
3568
|
arrowOffsetVertical: string;
|
|
3556
3569
|
arrowHeight: string;
|
|
3557
3570
|
padding: string;
|
|
3558
|
-
},
|
|
3571
|
+
}, {
|
|
3572
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3573
|
+
height: string;
|
|
3574
|
+
width: string;
|
|
3575
|
+
borderRadius: string;
|
|
3576
|
+
color: string;
|
|
3577
|
+
colorHover: string;
|
|
3578
|
+
railInsetHorizontalBottom: string;
|
|
3579
|
+
railInsetHorizontalTop: string;
|
|
3580
|
+
railInsetVerticalRight: string;
|
|
3581
|
+
railInsetVerticalLeft: string;
|
|
3582
|
+
railColor: string;
|
|
3583
|
+
}, any>;
|
|
3584
|
+
}>;
|
|
3559
3585
|
}>;
|
|
3560
3586
|
}>>>;
|
|
3561
3587
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -3584,7 +3610,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3584
3610
|
arrowOffsetVertical: string;
|
|
3585
3611
|
arrowHeight: string;
|
|
3586
3612
|
padding: string;
|
|
3587
|
-
},
|
|
3613
|
+
}, {
|
|
3614
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3615
|
+
height: string;
|
|
3616
|
+
width: string;
|
|
3617
|
+
borderRadius: string;
|
|
3618
|
+
color: string;
|
|
3619
|
+
colorHover: string;
|
|
3620
|
+
railInsetHorizontalBottom: string;
|
|
3621
|
+
railInsetHorizontalTop: string;
|
|
3622
|
+
railInsetVerticalRight: string;
|
|
3623
|
+
railInsetVerticalLeft: string;
|
|
3624
|
+
railColor: string;
|
|
3625
|
+
}, any>;
|
|
3626
|
+
}>;
|
|
3588
3627
|
}>;
|
|
3589
3628
|
}>>>;
|
|
3590
3629
|
alt: StringConstructor;
|
|
@@ -3607,24 +3646,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3607
3646
|
onLoad: PropType<(e: Event) => void>;
|
|
3608
3647
|
}>, {
|
|
3609
3648
|
click: () => void;
|
|
3649
|
+
showPreview: () => void;
|
|
3610
3650
|
mergedClsPrefix: Ref<string, string>;
|
|
3611
3651
|
groupId: string | undefined;
|
|
3612
3652
|
previewInstRef: Ref<{
|
|
3613
3653
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
3614
|
-
setPreviewSrc: (src?: string) => void;
|
|
3615
|
-
toggleShow: () => void;
|
|
3616
3654
|
} | null, ImagePreviewInst | {
|
|
3617
3655
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
3618
|
-
setPreviewSrc: (src?: string) => void;
|
|
3619
|
-
toggleShow: () => void;
|
|
3620
3656
|
} | null>;
|
|
3621
3657
|
imageRef: Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
3658
|
+
mergedPreviewSrc: ComputedRef<string | undefined>;
|
|
3622
3659
|
showError: Ref<boolean, boolean>;
|
|
3623
3660
|
shouldStartLoading: Ref<boolean, boolean>;
|
|
3624
3661
|
loaded: Ref<boolean, boolean>;
|
|
3625
|
-
mergedOnClick: (e:
|
|
3662
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
3663
|
+
onPreviewClose: () => void;
|
|
3626
3664
|
mergedOnError: (e: Event) => void;
|
|
3627
3665
|
mergedOnLoad: (e: Event) => void;
|
|
3666
|
+
previewShow: Ref<boolean, boolean>;
|
|
3628
3667
|
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ExtractPropTypes<{
|
|
3629
3668
|
onPreviewPrev: PropType<() => void>;
|
|
3630
3669
|
onPreviewNext: PropType<() => void>;
|
|
@@ -3660,7 +3699,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3660
3699
|
arrowOffsetVertical: string;
|
|
3661
3700
|
arrowHeight: string;
|
|
3662
3701
|
padding: string;
|
|
3663
|
-
},
|
|
3702
|
+
}, {
|
|
3703
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3704
|
+
height: string;
|
|
3705
|
+
width: string;
|
|
3706
|
+
borderRadius: string;
|
|
3707
|
+
color: string;
|
|
3708
|
+
colorHover: string;
|
|
3709
|
+
railInsetHorizontalBottom: string;
|
|
3710
|
+
railInsetHorizontalTop: string;
|
|
3711
|
+
railInsetVerticalRight: string;
|
|
3712
|
+
railInsetVerticalLeft: string;
|
|
3713
|
+
railColor: string;
|
|
3714
|
+
}, any>;
|
|
3715
|
+
}>;
|
|
3664
3716
|
}>;
|
|
3665
3717
|
}>>;
|
|
3666
3718
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -3689,7 +3741,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3689
3741
|
arrowOffsetVertical: string;
|
|
3690
3742
|
arrowHeight: string;
|
|
3691
3743
|
padding: string;
|
|
3692
|
-
},
|
|
3744
|
+
}, {
|
|
3745
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3746
|
+
height: string;
|
|
3747
|
+
width: string;
|
|
3748
|
+
borderRadius: string;
|
|
3749
|
+
color: string;
|
|
3750
|
+
colorHover: string;
|
|
3751
|
+
railInsetHorizontalBottom: string;
|
|
3752
|
+
railInsetHorizontalTop: string;
|
|
3753
|
+
railInsetVerticalRight: string;
|
|
3754
|
+
railInsetVerticalLeft: string;
|
|
3755
|
+
railColor: string;
|
|
3756
|
+
}, any>;
|
|
3757
|
+
}>;
|
|
3693
3758
|
}>;
|
|
3694
3759
|
}>>>;
|
|
3695
3760
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Image", {
|
|
@@ -3718,7 +3783,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3718
3783
|
arrowOffsetVertical: string;
|
|
3719
3784
|
arrowHeight: string;
|
|
3720
3785
|
padding: string;
|
|
3721
|
-
},
|
|
3786
|
+
}, {
|
|
3787
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3788
|
+
height: string;
|
|
3789
|
+
width: string;
|
|
3790
|
+
borderRadius: string;
|
|
3791
|
+
color: string;
|
|
3792
|
+
colorHover: string;
|
|
3793
|
+
railInsetHorizontalBottom: string;
|
|
3794
|
+
railInsetHorizontalTop: string;
|
|
3795
|
+
railInsetVerticalRight: string;
|
|
3796
|
+
railInsetVerticalLeft: string;
|
|
3797
|
+
railColor: string;
|
|
3798
|
+
}, any>;
|
|
3799
|
+
}>;
|
|
3722
3800
|
}>;
|
|
3723
3801
|
}>>>;
|
|
3724
3802
|
alt: StringConstructor;
|
|
@@ -3852,7 +3930,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3852
3930
|
arrowOffsetVertical: string;
|
|
3853
3931
|
arrowHeight: string;
|
|
3854
3932
|
padding: string;
|
|
3855
|
-
},
|
|
3933
|
+
}, {
|
|
3934
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3935
|
+
height: string;
|
|
3936
|
+
width: string;
|
|
3937
|
+
borderRadius: string;
|
|
3938
|
+
color: string;
|
|
3939
|
+
colorHover: string;
|
|
3940
|
+
railInsetHorizontalBottom: string;
|
|
3941
|
+
railInsetHorizontalTop: string;
|
|
3942
|
+
railInsetVerticalRight: string;
|
|
3943
|
+
railInsetVerticalLeft: string;
|
|
3944
|
+
railColor: string;
|
|
3945
|
+
}, any>;
|
|
3946
|
+
}>>;
|
|
3856
3947
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
3857
3948
|
fontSize: string;
|
|
3858
3949
|
borderRadius: string;
|
|
@@ -3866,7 +3957,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3866
3957
|
arrowOffsetVertical: string;
|
|
3867
3958
|
arrowHeight: string;
|
|
3868
3959
|
padding: string;
|
|
3869
|
-
},
|
|
3960
|
+
}, {
|
|
3961
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3962
|
+
height: string;
|
|
3963
|
+
width: string;
|
|
3964
|
+
borderRadius: string;
|
|
3965
|
+
color: string;
|
|
3966
|
+
colorHover: string;
|
|
3967
|
+
railInsetHorizontalBottom: string;
|
|
3968
|
+
railInsetHorizontalTop: string;
|
|
3969
|
+
railInsetVerticalRight: string;
|
|
3970
|
+
railInsetVerticalLeft: string;
|
|
3971
|
+
railColor: string;
|
|
3972
|
+
}, any>;
|
|
3973
|
+
}>>>;
|
|
3870
3974
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
3871
3975
|
fontSize: string;
|
|
3872
3976
|
borderRadius: string;
|
|
@@ -3880,7 +3984,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3880
3984
|
arrowOffsetVertical: string;
|
|
3881
3985
|
arrowHeight: string;
|
|
3882
3986
|
padding: string;
|
|
3883
|
-
},
|
|
3987
|
+
}, {
|
|
3988
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
3989
|
+
height: string;
|
|
3990
|
+
width: string;
|
|
3991
|
+
borderRadius: string;
|
|
3992
|
+
color: string;
|
|
3993
|
+
colorHover: string;
|
|
3994
|
+
railInsetHorizontalBottom: string;
|
|
3995
|
+
railInsetHorizontalTop: string;
|
|
3996
|
+
railInsetVerticalRight: string;
|
|
3997
|
+
railInsetVerticalLeft: string;
|
|
3998
|
+
railColor: string;
|
|
3999
|
+
}, any>;
|
|
4000
|
+
}>>>;
|
|
3884
4001
|
}>, {
|
|
3885
4002
|
binderInstRef: Ref<{
|
|
3886
4003
|
targetRef: HTMLElement | null;
|
|
@@ -4005,7 +4122,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4005
4122
|
arrowOffsetVertical: string;
|
|
4006
4123
|
arrowHeight: string;
|
|
4007
4124
|
padding: string;
|
|
4008
|
-
},
|
|
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
|
+
}>>;
|
|
4009
4139
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
4010
4140
|
fontSize: string;
|
|
4011
4141
|
borderRadius: string;
|
|
@@ -4019,7 +4149,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4019
4149
|
arrowOffsetVertical: string;
|
|
4020
4150
|
arrowHeight: string;
|
|
4021
4151
|
padding: string;
|
|
4022
|
-
},
|
|
4152
|
+
}, {
|
|
4153
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4154
|
+
height: string;
|
|
4155
|
+
width: string;
|
|
4156
|
+
borderRadius: string;
|
|
4157
|
+
color: string;
|
|
4158
|
+
colorHover: string;
|
|
4159
|
+
railInsetHorizontalBottom: string;
|
|
4160
|
+
railInsetHorizontalTop: string;
|
|
4161
|
+
railInsetVerticalRight: string;
|
|
4162
|
+
railInsetVerticalLeft: string;
|
|
4163
|
+
railColor: string;
|
|
4164
|
+
}, any>;
|
|
4165
|
+
}>>>;
|
|
4023
4166
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popover", {
|
|
4024
4167
|
fontSize: string;
|
|
4025
4168
|
borderRadius: string;
|
|
@@ -4033,7 +4176,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4033
4176
|
arrowOffsetVertical: string;
|
|
4034
4177
|
arrowHeight: string;
|
|
4035
4178
|
padding: string;
|
|
4036
|
-
},
|
|
4179
|
+
}, {
|
|
4180
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4181
|
+
height: string;
|
|
4182
|
+
width: string;
|
|
4183
|
+
borderRadius: string;
|
|
4184
|
+
color: string;
|
|
4185
|
+
colorHover: string;
|
|
4186
|
+
railInsetHorizontalBottom: string;
|
|
4187
|
+
railInsetHorizontalTop: string;
|
|
4188
|
+
railInsetVerticalRight: string;
|
|
4189
|
+
railInsetVerticalLeft: string;
|
|
4190
|
+
railColor: string;
|
|
4191
|
+
}, any>;
|
|
4192
|
+
}>>>;
|
|
4037
4193
|
}>> & Readonly<{}>, {
|
|
4038
4194
|
to: string | boolean | HTMLElement;
|
|
4039
4195
|
disabled: boolean;
|
|
@@ -4043,22 +4199,22 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4043
4199
|
duration: number;
|
|
4044
4200
|
raw: boolean;
|
|
4045
4201
|
placement: PopoverPlacement;
|
|
4046
|
-
overlap: boolean;
|
|
4047
|
-
scrollable: boolean;
|
|
4048
|
-
trigger: PopoverTrigger;
|
|
4049
4202
|
showArrow: boolean;
|
|
4203
|
+
trigger: PopoverTrigger;
|
|
4204
|
+
arrow: boolean | undefined;
|
|
4205
|
+
defaultShow: boolean;
|
|
4050
4206
|
delay: number;
|
|
4051
4207
|
arrowPointToCenter: boolean;
|
|
4052
4208
|
displayDirective: "show" | "if";
|
|
4209
|
+
animated: boolean;
|
|
4210
|
+
overlap: boolean;
|
|
4053
4211
|
keepAliveOnHover: boolean;
|
|
4212
|
+
scrollable: boolean;
|
|
4054
4213
|
internalDeactivateImmediately: boolean;
|
|
4055
|
-
animated: boolean;
|
|
4056
|
-
internalTrapFocus: boolean;
|
|
4057
|
-
defaultShow: boolean;
|
|
4058
4214
|
internalSyncTargetWithParent: boolean;
|
|
4059
4215
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
4216
|
+
internalTrapFocus: boolean;
|
|
4060
4217
|
internalExtraClass: string[];
|
|
4061
|
-
arrow: boolean | undefined;
|
|
4062
4218
|
}, SlotsType<PopoverSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4063
4219
|
NPopconfirm: DefineComponent<ExtractPropTypes<{
|
|
4064
4220
|
positiveText: PropType<string | null>;
|
|
@@ -4094,7 +4250,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4094
4250
|
};
|
|
4095
4251
|
raw: BooleanConstructor;
|
|
4096
4252
|
placement: {
|
|
4097
|
-
type: PropType<
|
|
4253
|
+
type: PropType< FollowerPlacement>;
|
|
4098
4254
|
default: string;
|
|
4099
4255
|
};
|
|
4100
4256
|
x: NumberConstructor;
|
|
@@ -4383,7 +4539,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4383
4539
|
arrowOffsetVertical: string;
|
|
4384
4540
|
arrowHeight: string;
|
|
4385
4541
|
padding: string;
|
|
4386
|
-
},
|
|
4542
|
+
}, {
|
|
4543
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4544
|
+
height: string;
|
|
4545
|
+
width: string;
|
|
4546
|
+
borderRadius: string;
|
|
4547
|
+
color: string;
|
|
4548
|
+
colorHover: string;
|
|
4549
|
+
railInsetHorizontalBottom: string;
|
|
4550
|
+
railInsetHorizontalTop: string;
|
|
4551
|
+
railInsetVerticalRight: string;
|
|
4552
|
+
railInsetVerticalLeft: string;
|
|
4553
|
+
railColor: string;
|
|
4554
|
+
}, any>;
|
|
4555
|
+
}>;
|
|
4387
4556
|
}>>;
|
|
4388
4557
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popconfirm", {
|
|
4389
4558
|
fontSize: string;
|
|
@@ -4607,7 +4776,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4607
4776
|
arrowOffsetVertical: string;
|
|
4608
4777
|
arrowHeight: string;
|
|
4609
4778
|
padding: string;
|
|
4610
|
-
},
|
|
4779
|
+
}, {
|
|
4780
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
4781
|
+
height: string;
|
|
4782
|
+
width: string;
|
|
4783
|
+
borderRadius: string;
|
|
4784
|
+
color: string;
|
|
4785
|
+
colorHover: string;
|
|
4786
|
+
railInsetHorizontalBottom: string;
|
|
4787
|
+
railInsetHorizontalTop: string;
|
|
4788
|
+
railInsetVerticalRight: string;
|
|
4789
|
+
railInsetVerticalLeft: string;
|
|
4790
|
+
railColor: string;
|
|
4791
|
+
}, any>;
|
|
4792
|
+
}>;
|
|
4611
4793
|
}>>>;
|
|
4612
4794
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popconfirm", {
|
|
4613
4795
|
fontSize: string;
|
|
@@ -4831,7 +5013,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4831
5013
|
arrowOffsetVertical: string;
|
|
4832
5014
|
arrowHeight: string;
|
|
4833
5015
|
padding: string;
|
|
4834
|
-
},
|
|
5016
|
+
}, {
|
|
5017
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5018
|
+
height: string;
|
|
5019
|
+
width: string;
|
|
5020
|
+
borderRadius: string;
|
|
5021
|
+
color: string;
|
|
5022
|
+
colorHover: string;
|
|
5023
|
+
railInsetHorizontalBottom: string;
|
|
5024
|
+
railInsetHorizontalTop: string;
|
|
5025
|
+
railInsetVerticalRight: string;
|
|
5026
|
+
railInsetVerticalLeft: string;
|
|
5027
|
+
railColor: string;
|
|
5028
|
+
}, any>;
|
|
5029
|
+
}>;
|
|
4835
5030
|
}>>>;
|
|
4836
5031
|
}>, {
|
|
4837
5032
|
setShow(value: boolean): void;
|
|
@@ -5061,7 +5256,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5061
5256
|
arrowOffsetVertical: string;
|
|
5062
5257
|
arrowHeight: string;
|
|
5063
5258
|
padding: string;
|
|
5064
|
-
},
|
|
5259
|
+
}, {
|
|
5260
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5261
|
+
height: string;
|
|
5262
|
+
width: string;
|
|
5263
|
+
borderRadius: string;
|
|
5264
|
+
color: string;
|
|
5265
|
+
colorHover: string;
|
|
5266
|
+
railInsetHorizontalBottom: string;
|
|
5267
|
+
railInsetHorizontalTop: string;
|
|
5268
|
+
railInsetVerticalRight: string;
|
|
5269
|
+
railInsetVerticalLeft: string;
|
|
5270
|
+
railColor: string;
|
|
5271
|
+
}, any>;
|
|
5272
|
+
}>;
|
|
5065
5273
|
};
|
|
5066
5274
|
peerOverrides: {
|
|
5067
5275
|
Button?: {
|
|
@@ -5071,7 +5279,18 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5071
5279
|
} | undefined;
|
|
5072
5280
|
Popover?: {
|
|
5073
5281
|
peers?: {
|
|
5074
|
-
|
|
5282
|
+
Scrollbar?: ExtractThemeOverrides<Theme<"Scrollbar", {
|
|
5283
|
+
height: string;
|
|
5284
|
+
width: string;
|
|
5285
|
+
borderRadius: string;
|
|
5286
|
+
color: string;
|
|
5287
|
+
colorHover: string;
|
|
5288
|
+
railInsetHorizontalBottom: string;
|
|
5289
|
+
railInsetHorizontalTop: string;
|
|
5290
|
+
railInsetVerticalRight: string;
|
|
5291
|
+
railInsetVerticalLeft: string;
|
|
5292
|
+
railColor: string;
|
|
5293
|
+
}, any>> | undefined;
|
|
5075
5294
|
} | undefined;
|
|
5076
5295
|
} | undefined;
|
|
5077
5296
|
};
|
|
@@ -5121,7 +5340,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5121
5340
|
};
|
|
5122
5341
|
raw: BooleanConstructor;
|
|
5123
5342
|
placement: {
|
|
5124
|
-
type: PropType<
|
|
5343
|
+
type: PropType< FollowerPlacement>;
|
|
5125
5344
|
default: string;
|
|
5126
5345
|
};
|
|
5127
5346
|
x: NumberConstructor;
|
|
@@ -5410,7 +5629,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5410
5629
|
arrowOffsetVertical: string;
|
|
5411
5630
|
arrowHeight: string;
|
|
5412
5631
|
padding: string;
|
|
5413
|
-
},
|
|
5632
|
+
}, {
|
|
5633
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5634
|
+
height: string;
|
|
5635
|
+
width: string;
|
|
5636
|
+
borderRadius: string;
|
|
5637
|
+
color: string;
|
|
5638
|
+
colorHover: string;
|
|
5639
|
+
railInsetHorizontalBottom: string;
|
|
5640
|
+
railInsetHorizontalTop: string;
|
|
5641
|
+
railInsetVerticalRight: string;
|
|
5642
|
+
railInsetVerticalLeft: string;
|
|
5643
|
+
railColor: string;
|
|
5644
|
+
}, any>;
|
|
5645
|
+
}>;
|
|
5414
5646
|
}>>;
|
|
5415
5647
|
themeOverrides: PropType< ExtractThemeOverrides<Theme<"Popconfirm", {
|
|
5416
5648
|
fontSize: string;
|
|
@@ -5634,7 +5866,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5634
5866
|
arrowOffsetVertical: string;
|
|
5635
5867
|
arrowHeight: string;
|
|
5636
5868
|
padding: string;
|
|
5637
|
-
},
|
|
5869
|
+
}, {
|
|
5870
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
5871
|
+
height: string;
|
|
5872
|
+
width: string;
|
|
5873
|
+
borderRadius: string;
|
|
5874
|
+
color: string;
|
|
5875
|
+
colorHover: string;
|
|
5876
|
+
railInsetHorizontalBottom: string;
|
|
5877
|
+
railInsetHorizontalTop: string;
|
|
5878
|
+
railInsetVerticalRight: string;
|
|
5879
|
+
railInsetVerticalLeft: string;
|
|
5880
|
+
railColor: string;
|
|
5881
|
+
}, any>;
|
|
5882
|
+
}>;
|
|
5638
5883
|
}>>>;
|
|
5639
5884
|
builtinThemeOverrides: PropType< ExtractThemeOverrides<Theme<"Popconfirm", {
|
|
5640
5885
|
fontSize: string;
|
|
@@ -5858,7 +6103,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5858
6103
|
arrowOffsetVertical: string;
|
|
5859
6104
|
arrowHeight: string;
|
|
5860
6105
|
padding: string;
|
|
5861
|
-
},
|
|
6106
|
+
}, {
|
|
6107
|
+
Scrollbar: Theme<"Scrollbar", {
|
|
6108
|
+
height: string;
|
|
6109
|
+
width: string;
|
|
6110
|
+
borderRadius: string;
|
|
6111
|
+
color: string;
|
|
6112
|
+
colorHover: string;
|
|
6113
|
+
railInsetHorizontalBottom: string;
|
|
6114
|
+
railInsetHorizontalTop: string;
|
|
6115
|
+
railInsetVerticalRight: string;
|
|
6116
|
+
railInsetVerticalLeft: string;
|
|
6117
|
+
railColor: string;
|
|
6118
|
+
}, any>;
|
|
6119
|
+
}>;
|
|
5862
6120
|
}>>>;
|
|
5863
6121
|
}>> & Readonly<{}>, {
|
|
5864
6122
|
to: string | boolean | HTMLElement;
|
|
@@ -5869,23 +6127,23 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5869
6127
|
duration: number;
|
|
5870
6128
|
raw: boolean;
|
|
5871
6129
|
showIcon: boolean;
|
|
5872
|
-
placement:
|
|
5873
|
-
overlap: boolean;
|
|
5874
|
-
scrollable: boolean;
|
|
5875
|
-
trigger: PopoverTrigger;
|
|
6130
|
+
placement: FollowerPlacement;
|
|
5876
6131
|
showArrow: boolean;
|
|
6132
|
+
trigger: PopoverTrigger;
|
|
6133
|
+
arrow: boolean | undefined;
|
|
6134
|
+
defaultShow: boolean;
|
|
5877
6135
|
delay: number;
|
|
5878
6136
|
arrowPointToCenter: boolean;
|
|
5879
6137
|
displayDirective: "show" | "if";
|
|
6138
|
+
animated: boolean;
|
|
6139
|
+
overlap: boolean;
|
|
5880
6140
|
keepAliveOnHover: boolean;
|
|
6141
|
+
scrollable: boolean;
|
|
5881
6142
|
internalDeactivateImmediately: boolean;
|
|
5882
|
-
animated: boolean;
|
|
5883
|
-
internalTrapFocus: boolean;
|
|
5884
|
-
defaultShow: boolean;
|
|
5885
6143
|
internalSyncTargetWithParent: boolean;
|
|
5886
6144
|
internalInheritedEventHandlers: TriggerEventHandlers[];
|
|
6145
|
+
internalTrapFocus: boolean;
|
|
5887
6146
|
internalExtraClass: string[];
|
|
5888
|
-
arrow: boolean | undefined;
|
|
5889
6147
|
}, SlotsType<PopconfirmSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5890
6148
|
NUploadDragger: DefineComponent<{}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5891
6149
|
NInputGroup: DefineComponent<{}, {
|