@unizhen/ui 0.0.56 → 0.0.57
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 +10 -10
- package/lib/components/camera/index.vue.d.ts +16 -16
- package/lib/components/circle/index.vue.d.ts +5 -5
- package/lib/components/form/draggable.vue.d.ts +74 -74
- package/lib/components/form/image.vue.d.ts +6 -6
- package/lib/components/form/index.vue.d.ts +74 -74
- package/lib/components/form/item.vue.d.ts +61 -61
- package/lib/components/form/upload.vue.d.ts +24 -24
- package/lib/components/hooks/useDebounceFn.d.ts +1 -1
- package/lib/components/hooks/useThrottleFn.d.ts +1 -1
- package/lib/components/searchBar/components/timePickRange.vue.d.ts +3 -3
- package/lib/components/searchBar/index.vue.d.ts +80 -80
- package/lib/components/searchBar/mobile.vue.d.ts +77 -77
- package/lib/components/spin/index.vue.d.ts +10 -10
- package/lib/components/table/child.vue.d.ts +17 -17
- package/lib/components/table/child_quest.vue.d.ts +5 -5
- package/lib/components/table/drawer.vue.d.ts +27 -27
- package/lib/components/table/index.vue.d.ts +53 -53
- package/lib/components/table/mobile.vue.d.ts +7 -7
- package/lib/components/table/ocr.vue.d.ts +13 -13
- package/lib/components/thumbnail/index.vue.d.ts +21 -21
- package/lib/components/wrap/index.vue.d.ts +3 -3
- package/lib/ui.css +1 -1
- package/lib/ui.js +4302 -5750
- package/package.json +12 -12
|
@@ -218,7 +218,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
218
218
|
pair: BooleanConstructor;
|
|
219
219
|
separator: StringConstructor;
|
|
220
220
|
readonly: {
|
|
221
|
-
type: (
|
|
221
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
222
222
|
default: boolean;
|
|
223
223
|
};
|
|
224
224
|
passivelyActivated: BooleanConstructor;
|
|
@@ -532,14 +532,14 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
532
532
|
uncontrolledValue: Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
533
533
|
mergedValue: ComputedRef<string | [string, string] | null>;
|
|
534
534
|
passwordVisible: Ref<boolean, boolean>;
|
|
535
|
-
mergedPlaceholder: ComputedRef<[string] | [string
|
|
535
|
+
mergedPlaceholder: ComputedRef<[string, string] | [string]>;
|
|
536
536
|
showPlaceholder1: ComputedRef<string | false>;
|
|
537
537
|
showPlaceholder2: ComputedRef<boolean | "" | undefined>;
|
|
538
538
|
mergedFocus: ComputedRef<boolean>;
|
|
539
539
|
isComposing: Ref<boolean, boolean>;
|
|
540
540
|
activated: Ref<boolean, boolean>;
|
|
541
541
|
showClearButton: ComputedRef<boolean>;
|
|
542
|
-
mergedSize: ComputedRef<"
|
|
542
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
543
543
|
mergedDisabled: ComputedRef<boolean>;
|
|
544
544
|
textDecorationStyle: ComputedRef<string[] | {
|
|
545
545
|
textDecoration: string;
|
|
@@ -761,7 +761,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
761
761
|
pair: BooleanConstructor;
|
|
762
762
|
separator: StringConstructor;
|
|
763
763
|
readonly: {
|
|
764
|
-
type: (
|
|
764
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
765
765
|
default: boolean;
|
|
766
766
|
};
|
|
767
767
|
passivelyActivated: BooleanConstructor;
|
|
@@ -1042,24 +1042,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1042
1042
|
}, any>;
|
|
1043
1043
|
}>>>;
|
|
1044
1044
|
}>> & Readonly<{}>, {
|
|
1045
|
-
type: "textarea" | "text" | "password";
|
|
1046
|
-
readonly: string | boolean;
|
|
1047
1045
|
disabled: boolean | undefined;
|
|
1048
|
-
|
|
1049
|
-
autofocus: boolean;
|
|
1050
|
-
loading: boolean;
|
|
1051
|
-
autosize: boolean | {
|
|
1052
|
-
minRows?: number;
|
|
1053
|
-
maxRows?: number;
|
|
1054
|
-
};
|
|
1046
|
+
type: "text" | "textarea" | "password";
|
|
1055
1047
|
bordered: boolean | undefined;
|
|
1056
1048
|
clearable: boolean;
|
|
1057
1049
|
defaultValue: string | [string, string] | null;
|
|
1050
|
+
loading: boolean;
|
|
1051
|
+
round: boolean;
|
|
1058
1052
|
resizable: boolean;
|
|
1059
1053
|
stateful: boolean;
|
|
1060
1054
|
pair: boolean;
|
|
1061
1055
|
rows: string | number;
|
|
1056
|
+
autosize: boolean | {
|
|
1057
|
+
minRows?: number;
|
|
1058
|
+
maxRows?: number;
|
|
1059
|
+
};
|
|
1060
|
+
readonly: string | boolean;
|
|
1062
1061
|
passivelyActivated: boolean;
|
|
1062
|
+
autofocus: boolean;
|
|
1063
1063
|
showCount: boolean;
|
|
1064
1064
|
attrSize: number;
|
|
1065
1065
|
internalDeactivateOnEnter: boolean;
|
|
@@ -1691,7 +1691,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1691
1691
|
uncontrolledShow: Ref<boolean, boolean>;
|
|
1692
1692
|
mergedShow: ComputedRef<boolean>;
|
|
1693
1693
|
adjustedTo: ComputedRef<string | HTMLElement>;
|
|
1694
|
-
uncontrolledValue: Ref<string[] | number[] | ValueAtom
|
|
1694
|
+
uncontrolledValue: Ref< ValueAtom | string[] | number[] | ValueAtom[] | null, string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
|
|
1695
1695
|
mergedValue: ComputedRef<string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
|
|
1696
1696
|
followerRef: Ref<{
|
|
1697
1697
|
syncPosition: () => void;
|
|
@@ -1701,7 +1701,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1701
1701
|
localizedPlaceholder: ComputedRef<string>;
|
|
1702
1702
|
selectedOption: ComputedRef<SelectOption | null>;
|
|
1703
1703
|
selectedOptions: ComputedRef<SelectOption[] | null>;
|
|
1704
|
-
mergedSize: ComputedRef<"
|
|
1704
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
1705
1705
|
mergedDisabled: ComputedRef<boolean>;
|
|
1706
1706
|
focused: Ref<boolean, boolean>;
|
|
1707
1707
|
activeWithoutMenuOpen: Ref<boolean, boolean>;
|
|
@@ -2539,20 +2539,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2539
2539
|
}>;
|
|
2540
2540
|
}>>>;
|
|
2541
2541
|
}>> & Readonly<{}>, {
|
|
2542
|
-
readonly options: SelectMixedOption[];
|
|
2543
|
-
readonly tag: boolean;
|
|
2544
|
-
readonly to: string | boolean | HTMLElement;
|
|
2545
2542
|
readonly disabled: boolean | undefined;
|
|
2546
|
-
readonly show: boolean | undefined;
|
|
2547
|
-
readonly multiple: boolean;
|
|
2548
|
-
readonly loading: boolean;
|
|
2549
2543
|
readonly bordered: boolean | undefined;
|
|
2544
|
+
readonly to: string | boolean | HTMLElement;
|
|
2550
2545
|
readonly clearable: boolean;
|
|
2551
2546
|
readonly defaultValue: Value | null;
|
|
2547
|
+
readonly loading: boolean;
|
|
2552
2548
|
readonly placement: PopoverPlacement;
|
|
2549
|
+
readonly options: SelectMixedOption[];
|
|
2550
|
+
readonly show: boolean | undefined;
|
|
2553
2551
|
readonly keyboard: boolean;
|
|
2552
|
+
readonly tag: boolean;
|
|
2554
2553
|
readonly showArrow: boolean;
|
|
2555
2554
|
readonly displayDirective: "show" | "if";
|
|
2555
|
+
readonly multiple: boolean;
|
|
2556
2556
|
readonly filterable: boolean;
|
|
2557
2557
|
readonly clearFilterAfterSelect: boolean;
|
|
2558
2558
|
readonly remote: boolean;
|
|
@@ -3540,7 +3540,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3540
3540
|
mergedValue: ComputedRef<number | null>;
|
|
3541
3541
|
mergedPlaceholder: ComputedRef<string>;
|
|
3542
3542
|
displayedValueInvalid: ComputedRef<boolean>;
|
|
3543
|
-
mergedSize: ComputedRef<"
|
|
3543
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
3544
3544
|
mergedDisabled: ComputedRef<boolean>;
|
|
3545
3545
|
displayedValue: Ref<string, string>;
|
|
3546
3546
|
addable: ComputedRef<boolean>;
|
|
@@ -4792,19 +4792,19 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4792
4792
|
}>;
|
|
4793
4793
|
}>>>;
|
|
4794
4794
|
}>> & Readonly<{}>, {
|
|
4795
|
-
readonly: boolean;
|
|
4796
4795
|
disabled: boolean | undefined;
|
|
4797
|
-
round: boolean | undefined;
|
|
4798
|
-
step: string | number;
|
|
4799
|
-
autofocus: boolean;
|
|
4800
|
-
loading: boolean;
|
|
4801
4796
|
bordered: boolean | undefined;
|
|
4802
4797
|
clearable: boolean;
|
|
4803
4798
|
defaultValue: number | null;
|
|
4799
|
+
loading: boolean;
|
|
4800
|
+
round: boolean | undefined;
|
|
4804
4801
|
keyboard: {
|
|
4805
4802
|
ArrowUp?: boolean;
|
|
4806
4803
|
ArrowDown?: boolean;
|
|
4807
4804
|
};
|
|
4805
|
+
readonly: boolean;
|
|
4806
|
+
autofocus: boolean;
|
|
4807
|
+
step: string | number;
|
|
4808
4808
|
showButton: boolean;
|
|
4809
4809
|
buttonPlacement: "right" | "both";
|
|
4810
4810
|
updateValueOnInput: boolean;
|
|
@@ -10311,13 +10311,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
10311
10311
|
}, any>;
|
|
10312
10312
|
}>>>;
|
|
10313
10313
|
}>> & Readonly<{}>, {
|
|
10314
|
-
readonly type: DatePickerType;
|
|
10315
|
-
readonly to: string | boolean | HTMLElement;
|
|
10316
10314
|
readonly disabled: boolean | undefined;
|
|
10317
|
-
readonly
|
|
10315
|
+
readonly type: DatePickerType;
|
|
10318
10316
|
readonly bordered: boolean | undefined;
|
|
10317
|
+
readonly to: string | boolean | HTMLElement;
|
|
10319
10318
|
readonly clearable: boolean;
|
|
10320
10319
|
readonly placement: FollowerPlacement;
|
|
10320
|
+
readonly show: boolean | undefined;
|
|
10321
10321
|
readonly inputReadonly: boolean;
|
|
10322
10322
|
readonly updateValueOnClose: boolean;
|
|
10323
10323
|
readonly calendarHeaderMonthYearSeparator: string;
|
|
@@ -12892,15 +12892,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
12892
12892
|
}>;
|
|
12893
12893
|
}>>>;
|
|
12894
12894
|
}>> & Readonly<{}>, {
|
|
12895
|
-
to: string | boolean | HTMLElement;
|
|
12896
12895
|
disabled: boolean | undefined;
|
|
12897
|
-
show: boolean | undefined;
|
|
12898
|
-
format: string;
|
|
12899
12896
|
showIcon: boolean;
|
|
12900
12897
|
bordered: boolean | undefined;
|
|
12898
|
+
to: string | boolean | HTMLElement;
|
|
12901
12899
|
clearable: boolean;
|
|
12902
12900
|
defaultValue: number | null;
|
|
12903
12901
|
placement: PopoverPlacement;
|
|
12902
|
+
show: boolean | undefined;
|
|
12903
|
+
format: string;
|
|
12904
12904
|
inputReadonly: boolean;
|
|
12905
12905
|
use12Hours: boolean;
|
|
12906
12906
|
stateful: boolean;
|
|
@@ -13217,11 +13217,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13217
13217
|
}, any>>>;
|
|
13218
13218
|
}>> & Readonly<{}>, {
|
|
13219
13219
|
readonly value: string | number | boolean | undefined;
|
|
13220
|
-
readonly size: "small" | "medium" | "large";
|
|
13221
13220
|
readonly disabled: boolean | undefined;
|
|
13222
|
-
readonly
|
|
13223
|
-
readonly loading: boolean;
|
|
13221
|
+
readonly size: "small" | "medium" | "large";
|
|
13224
13222
|
readonly defaultValue: string | number | boolean;
|
|
13223
|
+
readonly loading: boolean;
|
|
13224
|
+
readonly round: boolean;
|
|
13225
13225
|
readonly checkedValue: string | number | boolean;
|
|
13226
13226
|
readonly uncheckedValue: string | number | boolean;
|
|
13227
13227
|
readonly rubberBand: boolean;
|
|
@@ -15113,10 +15113,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15113
15113
|
}, any>;
|
|
15114
15114
|
}>>>;
|
|
15115
15115
|
}>> & Readonly<{}>, {
|
|
15116
|
-
readonly to: string | boolean | HTMLElement;
|
|
15117
15116
|
readonly disabled: boolean | undefined;
|
|
15118
|
-
readonly
|
|
15117
|
+
readonly to: string | boolean | HTMLElement;
|
|
15119
15118
|
readonly placement: PopoverPlacement;
|
|
15119
|
+
readonly show: boolean | undefined;
|
|
15120
15120
|
readonly defaultShow: boolean;
|
|
15121
15121
|
readonly modes: ColorPickerMode[];
|
|
15122
15122
|
readonly showAlpha: boolean;
|
|
@@ -15145,11 +15145,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15145
15145
|
default: boolean;
|
|
15146
15146
|
};
|
|
15147
15147
|
checkedValue: {
|
|
15148
|
-
type: (
|
|
15148
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
15149
15149
|
default: boolean;
|
|
15150
15150
|
};
|
|
15151
15151
|
uncheckedValue: {
|
|
15152
|
-
type: (
|
|
15152
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
15153
15153
|
default: boolean;
|
|
15154
15154
|
};
|
|
15155
15155
|
'onUpdate:checked': PropType< MaybeArray<OnUpdateChecked>>;
|
|
@@ -15344,11 +15344,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15344
15344
|
default: boolean;
|
|
15345
15345
|
};
|
|
15346
15346
|
checkedValue: {
|
|
15347
|
-
type: (
|
|
15347
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
15348
15348
|
default: boolean;
|
|
15349
15349
|
};
|
|
15350
15350
|
uncheckedValue: {
|
|
15351
|
-
type: (
|
|
15351
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
15352
15352
|
default: boolean;
|
|
15353
15353
|
};
|
|
15354
15354
|
'onUpdate:checked': PropType< MaybeArray<OnUpdateChecked>>;
|
|
@@ -15447,10 +15447,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
15447
15447
|
}, any>>>;
|
|
15448
15448
|
}>> & Readonly<{}>, {
|
|
15449
15449
|
disabled: boolean | undefined;
|
|
15450
|
-
checked: string | number | boolean | undefined;
|
|
15451
|
-
indeterminate: boolean;
|
|
15452
15450
|
focusable: boolean;
|
|
15451
|
+
checked: string | number | boolean | undefined;
|
|
15453
15452
|
defaultChecked: string | number | boolean;
|
|
15453
|
+
indeterminate: boolean;
|
|
15454
15454
|
checkedValue: string | number | boolean;
|
|
15455
15455
|
uncheckedValue: string | number | boolean;
|
|
15456
15456
|
privateInsideTable: boolean;
|
|
@@ -17496,17 +17496,17 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17496
17496
|
}, any>;
|
|
17497
17497
|
}>>>;
|
|
17498
17498
|
}>> & Readonly<{}>, {
|
|
17499
|
-
readonly options: CascaderOption[];
|
|
17500
|
-
readonly to: string | boolean | HTMLElement;
|
|
17501
17499
|
readonly disabled: boolean | undefined;
|
|
17502
|
-
readonly show: boolean | undefined;
|
|
17503
|
-
readonly separator: string;
|
|
17504
|
-
readonly multiple: boolean;
|
|
17505
17500
|
readonly bordered: boolean | undefined;
|
|
17501
|
+
readonly to: string | boolean | HTMLElement;
|
|
17506
17502
|
readonly clearable: boolean;
|
|
17507
17503
|
readonly defaultValue: Value | null;
|
|
17508
17504
|
readonly placement: PopoverPlacement;
|
|
17505
|
+
readonly options: CascaderOption[];
|
|
17506
|
+
readonly show: boolean | undefined;
|
|
17507
|
+
readonly separator: string;
|
|
17509
17508
|
readonly allowCheckingNotLoaded: boolean;
|
|
17509
|
+
readonly multiple: boolean;
|
|
17510
17510
|
readonly filterable: boolean;
|
|
17511
17511
|
readonly disabledField: string;
|
|
17512
17512
|
readonly expandTrigger: ExpandTrigger;
|
|
@@ -17988,21 +17988,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
17988
17988
|
minWidth: NumberConstructor;
|
|
17989
17989
|
maxWidth: NumberConstructor;
|
|
17990
17990
|
}>> & Readonly<{}>, {
|
|
17991
|
-
to: string | boolean | HTMLElement;
|
|
17992
17991
|
disabled: boolean;
|
|
17993
|
-
show: boolean | undefined;
|
|
17994
|
-
flip: boolean;
|
|
17995
|
-
width: number | "trigger";
|
|
17996
|
-
duration: number;
|
|
17997
17992
|
raw: boolean;
|
|
17993
|
+
to: string | boolean | HTMLElement;
|
|
17998
17994
|
placement: FollowerPlacement;
|
|
17995
|
+
width: number | "trigger";
|
|
17996
|
+
show: boolean | undefined;
|
|
17999
17997
|
showArrow: boolean;
|
|
18000
17998
|
trigger: PopoverTrigger;
|
|
18001
17999
|
arrow: boolean | undefined;
|
|
18002
18000
|
defaultShow: boolean;
|
|
18003
18001
|
delay: number;
|
|
18002
|
+
duration: number;
|
|
18004
18003
|
arrowPointToCenter: boolean;
|
|
18005
18004
|
displayDirective: "show" | "if";
|
|
18005
|
+
flip: boolean;
|
|
18006
18006
|
animated: boolean;
|
|
18007
18007
|
overlap: boolean;
|
|
18008
18008
|
keepAliveOnHover: boolean;
|
|
@@ -18866,24 +18866,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18866
18866
|
readonly minWidth: NumberConstructor;
|
|
18867
18867
|
readonly maxWidth: NumberConstructor;
|
|
18868
18868
|
}>> & Readonly<{}>, {
|
|
18869
|
-
readonly options: DropdownMixedOption[];
|
|
18870
|
-
readonly size: "small" | "medium" | "large" | "huge";
|
|
18871
|
-
readonly to: string | boolean | HTMLElement;
|
|
18872
18869
|
readonly disabled: boolean;
|
|
18873
|
-
readonly
|
|
18874
|
-
readonly flip: boolean;
|
|
18875
|
-
readonly width: number | "trigger";
|
|
18876
|
-
readonly duration: number;
|
|
18870
|
+
readonly size: "small" | "medium" | "large" | "huge";
|
|
18877
18871
|
readonly raw: boolean;
|
|
18872
|
+
readonly to: string | boolean | HTMLElement;
|
|
18878
18873
|
readonly placement: PopoverPlacement;
|
|
18874
|
+
readonly options: DropdownMixedOption[];
|
|
18875
|
+
readonly width: number | "trigger";
|
|
18876
|
+
readonly show: boolean | undefined;
|
|
18879
18877
|
readonly keyboard: boolean;
|
|
18880
18878
|
readonly showArrow: boolean;
|
|
18881
18879
|
readonly trigger: PopoverTrigger;
|
|
18882
18880
|
readonly arrow: boolean | undefined;
|
|
18883
18881
|
readonly defaultShow: boolean;
|
|
18884
18882
|
readonly delay: number;
|
|
18883
|
+
readonly duration: number;
|
|
18885
18884
|
readonly arrowPointToCenter: boolean;
|
|
18886
18885
|
readonly displayDirective: "show" | "if";
|
|
18886
|
+
readonly flip: boolean;
|
|
18887
18887
|
readonly animated: boolean;
|
|
18888
18888
|
readonly overlap: boolean;
|
|
18889
18889
|
readonly keepAliveOnHover: boolean;
|
|
@@ -1995,14 +1995,14 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1995
1995
|
}, any>;
|
|
1996
1996
|
}>>>;
|
|
1997
1997
|
}>> & Readonly<{}>, {
|
|
1998
|
-
readonly method: string;
|
|
1999
|
-
readonly name: string;
|
|
2000
|
-
readonly abstract: boolean;
|
|
2001
1998
|
readonly disabled: boolean | undefined;
|
|
1999
|
+
readonly name: string;
|
|
2002
2000
|
readonly multiple: boolean;
|
|
2001
|
+
readonly abstract: boolean;
|
|
2003
2002
|
readonly showTrigger: boolean;
|
|
2004
2003
|
readonly directory: boolean;
|
|
2005
2004
|
readonly directoryDnd: boolean;
|
|
2005
|
+
readonly method: string;
|
|
2006
2006
|
readonly showFileList: boolean;
|
|
2007
2007
|
readonly withCredentials: boolean;
|
|
2008
2008
|
readonly responseType: XMLHttpRequestResponseType;
|
|
@@ -2687,7 +2687,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2687
2687
|
} | null>;
|
|
2688
2688
|
mergedClsPrefix: Ref<string, string>;
|
|
2689
2689
|
mergedFocusable: ComputedRef<boolean>;
|
|
2690
|
-
mergedSize: ComputedRef<"
|
|
2690
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
2691
2691
|
showBorder: ComputedRef<boolean>;
|
|
2692
2692
|
enterPressed: Ref<boolean, boolean>;
|
|
2693
2693
|
rtlEnabled: Ref< RtlItem | undefined, RtlItem | undefined> | undefined;
|
|
@@ -3399,25 +3399,25 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3399
3399
|
rippleDuration: string;
|
|
3400
3400
|
}, any>>>;
|
|
3401
3401
|
}>> & Readonly<{}>, {
|
|
3402
|
+
readonly disabled: boolean;
|
|
3402
3403
|
readonly type: Type;
|
|
3403
|
-
readonly
|
|
3404
|
+
readonly bordered: boolean;
|
|
3404
3405
|
readonly block: boolean;
|
|
3405
|
-
readonly
|
|
3406
|
-
readonly
|
|
3406
|
+
readonly loading: boolean;
|
|
3407
|
+
readonly circle: boolean;
|
|
3407
3408
|
readonly round: boolean;
|
|
3408
|
-
readonly dashed: boolean;
|
|
3409
3409
|
readonly text: boolean;
|
|
3410
|
-
readonly
|
|
3411
|
-
readonly loading: boolean;
|
|
3412
|
-
readonly focusable: boolean;
|
|
3413
|
-
readonly bordered: boolean;
|
|
3410
|
+
readonly strong: boolean;
|
|
3414
3411
|
readonly tertiary: boolean;
|
|
3415
3412
|
readonly ghost: boolean;
|
|
3416
3413
|
readonly secondary: boolean;
|
|
3417
3414
|
readonly quaternary: boolean;
|
|
3415
|
+
readonly focusable: boolean;
|
|
3418
3416
|
readonly keyboard: boolean;
|
|
3417
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
3418
|
+
readonly dashed: boolean;
|
|
3419
3419
|
readonly iconPlacement: "left" | "right";
|
|
3420
|
-
readonly attrType: "
|
|
3420
|
+
readonly attrType: "button" | "submit" | "reset";
|
|
3421
3421
|
readonly nativeFocusBehavior: boolean;
|
|
3422
3422
|
}, SlotsType<ButtonSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3423
3423
|
NIcon: DefineComponent<ExtractPropTypes<{
|
|
@@ -3819,7 +3819,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3819
3819
|
onError: PropType<(e: Event) => void>;
|
|
3820
3820
|
onLoad: PropType<(e: Event) => void>;
|
|
3821
3821
|
}>> & Readonly<{}>, {
|
|
3822
|
-
objectFit: "
|
|
3822
|
+
objectFit: "none" | "fill" | "contain" | "cover" | "scale-down";
|
|
3823
3823
|
lazy: boolean;
|
|
3824
3824
|
showToolbar: boolean;
|
|
3825
3825
|
showToolbarTooltip: boolean;
|
|
@@ -4192,21 +4192,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4192
4192
|
}, any>;
|
|
4193
4193
|
}>>>;
|
|
4194
4194
|
}>> & Readonly<{}>, {
|
|
4195
|
-
to: string | boolean | HTMLElement;
|
|
4196
4195
|
disabled: boolean;
|
|
4197
|
-
show: boolean | undefined;
|
|
4198
|
-
flip: boolean;
|
|
4199
|
-
width: number | "trigger";
|
|
4200
|
-
duration: number;
|
|
4201
4196
|
raw: boolean;
|
|
4197
|
+
to: string | boolean | HTMLElement;
|
|
4202
4198
|
placement: PopoverPlacement;
|
|
4199
|
+
width: number | "trigger";
|
|
4200
|
+
show: boolean | undefined;
|
|
4203
4201
|
showArrow: boolean;
|
|
4204
4202
|
trigger: PopoverTrigger;
|
|
4205
4203
|
arrow: boolean | undefined;
|
|
4206
4204
|
defaultShow: boolean;
|
|
4207
4205
|
delay: number;
|
|
4206
|
+
duration: number;
|
|
4208
4207
|
arrowPointToCenter: boolean;
|
|
4209
4208
|
displayDirective: "show" | "if";
|
|
4209
|
+
flip: boolean;
|
|
4210
4210
|
animated: boolean;
|
|
4211
4211
|
overlap: boolean;
|
|
4212
4212
|
keepAliveOnHover: boolean;
|
|
@@ -6120,22 +6120,22 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6120
6120
|
}>;
|
|
6121
6121
|
}>>>;
|
|
6122
6122
|
}>> & Readonly<{}>, {
|
|
6123
|
-
to: string | boolean | HTMLElement;
|
|
6124
6123
|
disabled: boolean;
|
|
6125
|
-
show: boolean | undefined;
|
|
6126
|
-
flip: boolean;
|
|
6127
|
-
width: number | "trigger";
|
|
6128
|
-
duration: number;
|
|
6129
6124
|
raw: boolean;
|
|
6130
6125
|
showIcon: boolean;
|
|
6126
|
+
to: string | boolean | HTMLElement;
|
|
6131
6127
|
placement: FollowerPlacement;
|
|
6128
|
+
width: number | "trigger";
|
|
6129
|
+
show: boolean | undefined;
|
|
6132
6130
|
showArrow: boolean;
|
|
6133
6131
|
trigger: PopoverTrigger;
|
|
6134
6132
|
arrow: boolean | undefined;
|
|
6135
6133
|
defaultShow: boolean;
|
|
6136
6134
|
delay: number;
|
|
6135
|
+
duration: number;
|
|
6137
6136
|
arrowPointToCenter: boolean;
|
|
6138
6137
|
displayDirective: "show" | "if";
|
|
6138
|
+
flip: boolean;
|
|
6139
6139
|
animated: boolean;
|
|
6140
6140
|
overlap: boolean;
|
|
6141
6141
|
keepAliveOnHover: boolean;
|
|
@@ -2625,15 +2625,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2625
2625
|
}>;
|
|
2626
2626
|
}>>>;
|
|
2627
2627
|
}>> & Readonly<{}>, {
|
|
2628
|
-
to: string | boolean | HTMLElement;
|
|
2629
2628
|
disabled: boolean | undefined;
|
|
2630
|
-
show: boolean | undefined;
|
|
2631
|
-
format: string;
|
|
2632
2629
|
showIcon: boolean;
|
|
2633
2630
|
bordered: boolean | undefined;
|
|
2631
|
+
to: string | boolean | HTMLElement;
|
|
2634
2632
|
clearable: boolean;
|
|
2635
2633
|
defaultValue: number | null;
|
|
2636
2634
|
placement: PopoverPlacement;
|
|
2635
|
+
show: boolean | undefined;
|
|
2636
|
+
format: string;
|
|
2637
2637
|
inputReadonly: boolean;
|
|
2638
2638
|
use12Hours: boolean;
|
|
2639
2639
|
stateful: boolean;
|