@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
|
@@ -1874,7 +1874,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
1874
1874
|
} | null>;
|
|
1875
1875
|
mergedClsPrefix: Ref<string, string>;
|
|
1876
1876
|
mergedFocusable: ComputedRef<boolean>;
|
|
1877
|
-
mergedSize: ComputedRef<"
|
|
1877
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
1878
1878
|
showBorder: ComputedRef<boolean>;
|
|
1879
1879
|
enterPressed: Ref<boolean, boolean>;
|
|
1880
1880
|
rtlEnabled: Ref< RtlItem | undefined, RtlItem | undefined> | undefined;
|
|
@@ -2586,25 +2586,25 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2586
2586
|
rippleDuration: string;
|
|
2587
2587
|
}, any>>>;
|
|
2588
2588
|
}>> & Readonly<{}>, {
|
|
2589
|
+
readonly disabled: boolean;
|
|
2589
2590
|
readonly type: Type;
|
|
2590
|
-
readonly
|
|
2591
|
+
readonly bordered: boolean;
|
|
2591
2592
|
readonly block: boolean;
|
|
2592
|
-
readonly
|
|
2593
|
-
readonly
|
|
2593
|
+
readonly loading: boolean;
|
|
2594
|
+
readonly circle: boolean;
|
|
2594
2595
|
readonly round: boolean;
|
|
2595
|
-
readonly dashed: boolean;
|
|
2596
2596
|
readonly text: boolean;
|
|
2597
|
-
readonly
|
|
2598
|
-
readonly loading: boolean;
|
|
2599
|
-
readonly focusable: boolean;
|
|
2600
|
-
readonly bordered: boolean;
|
|
2597
|
+
readonly strong: boolean;
|
|
2601
2598
|
readonly tertiary: boolean;
|
|
2602
2599
|
readonly ghost: boolean;
|
|
2603
2600
|
readonly secondary: boolean;
|
|
2604
2601
|
readonly quaternary: boolean;
|
|
2602
|
+
readonly focusable: boolean;
|
|
2605
2603
|
readonly keyboard: boolean;
|
|
2604
|
+
readonly tag: keyof HTMLElementTagNameMap;
|
|
2605
|
+
readonly dashed: boolean;
|
|
2606
2606
|
readonly iconPlacement: "left" | "right";
|
|
2607
|
-
readonly attrType: "
|
|
2607
|
+
readonly attrType: "button" | "submit" | "reset";
|
|
2608
2608
|
readonly nativeFocusBehavior: boolean;
|
|
2609
2609
|
}, SlotsType<ButtonSlots>, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2610
2610
|
NButtonGroup: DefineComponent<ExtractPropTypes<{
|
|
@@ -2657,7 +2657,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2657
2657
|
mergedClsPrefix: Ref<string, string>;
|
|
2658
2658
|
style: ComputedRef<CSSProperties>;
|
|
2659
2659
|
isResponsive: ComputedRef<boolean>;
|
|
2660
|
-
responsiveQuery: ComputedRef<number | ("
|
|
2660
|
+
responsiveQuery: ComputedRef<number | ("s" | "xs" | "m" | "l" | "xl" | "xxl")[] | undefined>;
|
|
2661
2661
|
responsiveCols: ComputedRef<number>;
|
|
2662
2662
|
handleResize: ComputedRef< VResizeObserverOnResize | undefined>;
|
|
2663
2663
|
overflow: Ref<boolean, boolean>;
|
|
@@ -2687,10 +2687,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2687
2687
|
readonly default: 0;
|
|
2688
2688
|
};
|
|
2689
2689
|
}>> & Readonly<{}>, {
|
|
2690
|
-
readonly
|
|
2691
|
-
readonly responsive: "screen" | "self";
|
|
2690
|
+
readonly responsive: "self" | "screen";
|
|
2692
2691
|
readonly collapsed: boolean;
|
|
2693
2692
|
readonly layoutShiftDisabled: boolean;
|
|
2693
|
+
readonly cols: string | number;
|
|
2694
2694
|
readonly itemResponsive: boolean;
|
|
2695
2695
|
readonly collapsedRows: number;
|
|
2696
2696
|
readonly xGap: string | number;
|
|
@@ -2741,8 +2741,8 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
2741
2741
|
readonly default: true;
|
|
2742
2742
|
};
|
|
2743
2743
|
}>> & Readonly<{}>, {
|
|
2744
|
-
readonly span: string | number;
|
|
2745
2744
|
readonly offset: string | number;
|
|
2745
|
+
readonly span: string | number;
|
|
2746
2746
|
readonly suffix: boolean;
|
|
2747
2747
|
readonly privateShow: boolean;
|
|
2748
2748
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3596,21 +3596,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3596
3596
|
}, any>;
|
|
3597
3597
|
}>>>;
|
|
3598
3598
|
}>> & Readonly<{}>, {
|
|
3599
|
-
to: string | boolean | HTMLElement;
|
|
3600
3599
|
disabled: boolean;
|
|
3601
|
-
show: boolean | undefined;
|
|
3602
|
-
flip: boolean;
|
|
3603
|
-
width: number | "trigger";
|
|
3604
|
-
duration: number;
|
|
3605
3600
|
raw: boolean;
|
|
3601
|
+
to: string | boolean | HTMLElement;
|
|
3606
3602
|
placement: PopoverPlacement;
|
|
3603
|
+
width: number | "trigger";
|
|
3604
|
+
show: boolean | undefined;
|
|
3607
3605
|
showArrow: boolean;
|
|
3608
3606
|
trigger: PopoverTrigger;
|
|
3609
3607
|
arrow: boolean | undefined;
|
|
3610
3608
|
defaultShow: boolean;
|
|
3611
3609
|
delay: number;
|
|
3610
|
+
duration: number;
|
|
3612
3611
|
arrowPointToCenter: boolean;
|
|
3613
3612
|
displayDirective: "show" | "if";
|
|
3613
|
+
flip: boolean;
|
|
3614
3614
|
animated: boolean;
|
|
3615
3615
|
overlap: boolean;
|
|
3616
3616
|
keepAliveOnHover: boolean;
|
|
@@ -3810,7 +3810,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
3810
3810
|
pair: BooleanConstructor;
|
|
3811
3811
|
separator: StringConstructor;
|
|
3812
3812
|
readonly: {
|
|
3813
|
-
type: (
|
|
3813
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3814
3814
|
default: boolean;
|
|
3815
3815
|
};
|
|
3816
3816
|
passivelyActivated: BooleanConstructor;
|
|
@@ -4124,14 +4124,14 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4124
4124
|
uncontrolledValue: Ref<string | [string, string] | null, string | [string, string] | null>;
|
|
4125
4125
|
mergedValue: ComputedRef<string | [string, string] | null>;
|
|
4126
4126
|
passwordVisible: Ref<boolean, boolean>;
|
|
4127
|
-
mergedPlaceholder: ComputedRef<[string] | [string
|
|
4127
|
+
mergedPlaceholder: ComputedRef<[string, string] | [string]>;
|
|
4128
4128
|
showPlaceholder1: ComputedRef<string | false>;
|
|
4129
4129
|
showPlaceholder2: ComputedRef<boolean | "" | undefined>;
|
|
4130
4130
|
mergedFocus: ComputedRef<boolean>;
|
|
4131
4131
|
isComposing: Ref<boolean, boolean>;
|
|
4132
4132
|
activated: Ref<boolean, boolean>;
|
|
4133
4133
|
showClearButton: ComputedRef<boolean>;
|
|
4134
|
-
mergedSize: ComputedRef<"
|
|
4134
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
4135
4135
|
mergedDisabled: ComputedRef<boolean>;
|
|
4136
4136
|
textDecorationStyle: ComputedRef<string[] | {
|
|
4137
4137
|
textDecoration: string;
|
|
@@ -4353,7 +4353,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4353
4353
|
pair: BooleanConstructor;
|
|
4354
4354
|
separator: StringConstructor;
|
|
4355
4355
|
readonly: {
|
|
4356
|
-
type: (
|
|
4356
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
4357
4357
|
default: boolean;
|
|
4358
4358
|
};
|
|
4359
4359
|
passivelyActivated: BooleanConstructor;
|
|
@@ -4634,24 +4634,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
4634
4634
|
}, any>;
|
|
4635
4635
|
}>>>;
|
|
4636
4636
|
}>> & Readonly<{}>, {
|
|
4637
|
-
type: "textarea" | "text" | "password";
|
|
4638
|
-
readonly: string | boolean;
|
|
4639
4637
|
disabled: boolean | undefined;
|
|
4640
|
-
|
|
4641
|
-
autofocus: boolean;
|
|
4642
|
-
loading: boolean;
|
|
4643
|
-
autosize: boolean | {
|
|
4644
|
-
minRows?: number;
|
|
4645
|
-
maxRows?: number;
|
|
4646
|
-
};
|
|
4638
|
+
type: "text" | "textarea" | "password";
|
|
4647
4639
|
bordered: boolean | undefined;
|
|
4648
4640
|
clearable: boolean;
|
|
4649
4641
|
defaultValue: string | [string, string] | null;
|
|
4642
|
+
loading: boolean;
|
|
4643
|
+
round: boolean;
|
|
4650
4644
|
resizable: boolean;
|
|
4651
4645
|
stateful: boolean;
|
|
4652
4646
|
pair: boolean;
|
|
4653
4647
|
rows: string | number;
|
|
4648
|
+
autosize: boolean | {
|
|
4649
|
+
minRows?: number;
|
|
4650
|
+
maxRows?: number;
|
|
4651
|
+
};
|
|
4652
|
+
readonly: string | boolean;
|
|
4654
4653
|
passivelyActivated: boolean;
|
|
4654
|
+
autofocus: boolean;
|
|
4655
4655
|
showCount: boolean;
|
|
4656
4656
|
attrSize: number;
|
|
4657
4657
|
internalDeactivateOnEnter: boolean;
|
|
@@ -5283,7 +5283,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5283
5283
|
uncontrolledShow: Ref<boolean, boolean>;
|
|
5284
5284
|
mergedShow: ComputedRef<boolean>;
|
|
5285
5285
|
adjustedTo: ComputedRef<string | HTMLElement>;
|
|
5286
|
-
uncontrolledValue: Ref<string[] | number[] | ValueAtom
|
|
5286
|
+
uncontrolledValue: Ref< ValueAtom | string[] | number[] | ValueAtom[] | null, string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
|
|
5287
5287
|
mergedValue: ComputedRef<string | number | string[] | number[] | ValueAtom[] | ValueAtom[] | null>;
|
|
5288
5288
|
followerRef: Ref<{
|
|
5289
5289
|
syncPosition: () => void;
|
|
@@ -5293,7 +5293,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
5293
5293
|
localizedPlaceholder: ComputedRef<string>;
|
|
5294
5294
|
selectedOption: ComputedRef< SelectOption | null>;
|
|
5295
5295
|
selectedOptions: ComputedRef< SelectOption[] | null>;
|
|
5296
|
-
mergedSize: ComputedRef<"
|
|
5296
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
5297
5297
|
mergedDisabled: ComputedRef<boolean>;
|
|
5298
5298
|
focused: Ref<boolean, boolean>;
|
|
5299
5299
|
activeWithoutMenuOpen: Ref<boolean, boolean>;
|
|
@@ -6131,20 +6131,20 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
6131
6131
|
}>;
|
|
6132
6132
|
}>>>;
|
|
6133
6133
|
}>> & Readonly<{}>, {
|
|
6134
|
-
readonly options: SelectMixedOption[];
|
|
6135
|
-
readonly tag: boolean;
|
|
6136
|
-
readonly to: string | boolean | HTMLElement;
|
|
6137
6134
|
readonly disabled: boolean | undefined;
|
|
6138
|
-
readonly show: boolean | undefined;
|
|
6139
|
-
readonly multiple: boolean;
|
|
6140
|
-
readonly loading: boolean;
|
|
6141
6135
|
readonly bordered: boolean | undefined;
|
|
6136
|
+
readonly to: string | boolean | HTMLElement;
|
|
6142
6137
|
readonly clearable: boolean;
|
|
6143
6138
|
readonly defaultValue: Value | null;
|
|
6139
|
+
readonly loading: boolean;
|
|
6144
6140
|
readonly placement: PopoverPlacement;
|
|
6141
|
+
readonly options: SelectMixedOption[];
|
|
6142
|
+
readonly show: boolean | undefined;
|
|
6145
6143
|
readonly keyboard: boolean;
|
|
6144
|
+
readonly tag: boolean;
|
|
6146
6145
|
readonly showArrow: boolean;
|
|
6147
6146
|
readonly displayDirective: "show" | "if";
|
|
6147
|
+
readonly multiple: boolean;
|
|
6148
6148
|
readonly filterable: boolean;
|
|
6149
6149
|
readonly clearFilterAfterSelect: boolean;
|
|
6150
6150
|
readonly remote: boolean;
|
|
@@ -7132,7 +7132,7 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
7132
7132
|
mergedValue: ComputedRef<number | null>;
|
|
7133
7133
|
mergedPlaceholder: ComputedRef<string>;
|
|
7134
7134
|
displayedValueInvalid: ComputedRef<boolean>;
|
|
7135
|
-
mergedSize: ComputedRef<"
|
|
7135
|
+
mergedSize: ComputedRef<"tiny" | "small" | "medium" | "large">;
|
|
7136
7136
|
mergedDisabled: ComputedRef<boolean>;
|
|
7137
7137
|
displayedValue: Ref<string, string>;
|
|
7138
7138
|
addable: ComputedRef<boolean>;
|
|
@@ -8384,19 +8384,19 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
8384
8384
|
}>;
|
|
8385
8385
|
}>>>;
|
|
8386
8386
|
}>> & Readonly<{}>, {
|
|
8387
|
-
readonly: boolean;
|
|
8388
8387
|
disabled: boolean | undefined;
|
|
8389
|
-
round: boolean | undefined;
|
|
8390
|
-
step: string | number;
|
|
8391
|
-
autofocus: boolean;
|
|
8392
|
-
loading: boolean;
|
|
8393
8388
|
bordered: boolean | undefined;
|
|
8394
8389
|
clearable: boolean;
|
|
8395
8390
|
defaultValue: number | null;
|
|
8391
|
+
loading: boolean;
|
|
8392
|
+
round: boolean | undefined;
|
|
8396
8393
|
keyboard: {
|
|
8397
8394
|
ArrowUp?: boolean;
|
|
8398
8395
|
ArrowDown?: boolean;
|
|
8399
8396
|
};
|
|
8397
|
+
readonly: boolean;
|
|
8398
|
+
autofocus: boolean;
|
|
8399
|
+
step: string | number;
|
|
8400
8400
|
showButton: boolean;
|
|
8401
8401
|
buttonPlacement: "right" | "both";
|
|
8402
8402
|
updateValueOnInput: boolean;
|
|
@@ -13903,13 +13903,13 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
13903
13903
|
}, any>;
|
|
13904
13904
|
}>>>;
|
|
13905
13905
|
}>> & Readonly<{}>, {
|
|
13906
|
-
readonly type: DatePickerType;
|
|
13907
|
-
readonly to: string | boolean | HTMLElement;
|
|
13908
13906
|
readonly disabled: boolean | undefined;
|
|
13909
|
-
readonly
|
|
13907
|
+
readonly type: DatePickerType;
|
|
13910
13908
|
readonly bordered: boolean | undefined;
|
|
13909
|
+
readonly to: string | boolean | HTMLElement;
|
|
13911
13910
|
readonly clearable: boolean;
|
|
13912
13911
|
readonly placement: FollowerPlacement;
|
|
13912
|
+
readonly show: boolean | undefined;
|
|
13913
13913
|
readonly inputReadonly: boolean;
|
|
13914
13914
|
readonly updateValueOnClose: boolean;
|
|
13915
13915
|
readonly calendarHeaderMonthYearSeparator: string;
|
|
@@ -16484,15 +16484,15 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16484
16484
|
}>;
|
|
16485
16485
|
}>>>;
|
|
16486
16486
|
}>> & Readonly<{}>, {
|
|
16487
|
-
to: string | boolean | HTMLElement;
|
|
16488
16487
|
disabled: boolean | undefined;
|
|
16489
|
-
show: boolean | undefined;
|
|
16490
|
-
format: string;
|
|
16491
16488
|
showIcon: boolean;
|
|
16492
16489
|
bordered: boolean | undefined;
|
|
16490
|
+
to: string | boolean | HTMLElement;
|
|
16493
16491
|
clearable: boolean;
|
|
16494
16492
|
defaultValue: number | null;
|
|
16495
16493
|
placement: PopoverPlacement;
|
|
16494
|
+
show: boolean | undefined;
|
|
16495
|
+
format: string;
|
|
16496
16496
|
inputReadonly: boolean;
|
|
16497
16497
|
use12Hours: boolean;
|
|
16498
16498
|
stateful: boolean;
|
|
@@ -16809,11 +16809,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
16809
16809
|
}, any>>>;
|
|
16810
16810
|
}>> & Readonly<{}>, {
|
|
16811
16811
|
readonly value: string | number | boolean | undefined;
|
|
16812
|
-
readonly size: "small" | "medium" | "large";
|
|
16813
16812
|
readonly disabled: boolean | undefined;
|
|
16814
|
-
readonly
|
|
16815
|
-
readonly loading: boolean;
|
|
16813
|
+
readonly size: "small" | "medium" | "large";
|
|
16816
16814
|
readonly defaultValue: string | number | boolean;
|
|
16815
|
+
readonly loading: boolean;
|
|
16816
|
+
readonly round: boolean;
|
|
16817
16817
|
readonly checkedValue: string | number | boolean;
|
|
16818
16818
|
readonly uncheckedValue: string | number | boolean;
|
|
16819
16819
|
readonly rubberBand: boolean;
|
|
@@ -18705,10 +18705,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18705
18705
|
}, any>;
|
|
18706
18706
|
}>>>;
|
|
18707
18707
|
}>> & Readonly<{}>, {
|
|
18708
|
-
readonly to: string | boolean | HTMLElement;
|
|
18709
18708
|
readonly disabled: boolean | undefined;
|
|
18710
|
-
readonly
|
|
18709
|
+
readonly to: string | boolean | HTMLElement;
|
|
18711
18710
|
readonly placement: PopoverPlacement;
|
|
18711
|
+
readonly show: boolean | undefined;
|
|
18712
18712
|
readonly defaultShow: boolean;
|
|
18713
18713
|
readonly modes: ColorPickerMode[];
|
|
18714
18714
|
readonly showAlpha: boolean;
|
|
@@ -18737,11 +18737,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18737
18737
|
default: boolean;
|
|
18738
18738
|
};
|
|
18739
18739
|
checkedValue: {
|
|
18740
|
-
type: (
|
|
18740
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
18741
18741
|
default: boolean;
|
|
18742
18742
|
};
|
|
18743
18743
|
uncheckedValue: {
|
|
18744
|
-
type: (
|
|
18744
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
18745
18745
|
default: boolean;
|
|
18746
18746
|
};
|
|
18747
18747
|
'onUpdate:checked': PropType< MaybeArray<OnUpdateChecked>>;
|
|
@@ -18936,11 +18936,11 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
18936
18936
|
default: boolean;
|
|
18937
18937
|
};
|
|
18938
18938
|
checkedValue: {
|
|
18939
|
-
type: (
|
|
18939
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
18940
18940
|
default: boolean;
|
|
18941
18941
|
};
|
|
18942
18942
|
uncheckedValue: {
|
|
18943
|
-
type: (
|
|
18943
|
+
type: (StringConstructor | NumberConstructor | BooleanConstructor)[];
|
|
18944
18944
|
default: boolean;
|
|
18945
18945
|
};
|
|
18946
18946
|
'onUpdate:checked': PropType< MaybeArray<OnUpdateChecked>>;
|
|
@@ -19039,10 +19039,10 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
19039
19039
|
}, any>>>;
|
|
19040
19040
|
}>> & Readonly<{}>, {
|
|
19041
19041
|
disabled: boolean | undefined;
|
|
19042
|
-
checked: string | number | boolean | undefined;
|
|
19043
|
-
indeterminate: boolean;
|
|
19044
19042
|
focusable: boolean;
|
|
19043
|
+
checked: string | number | boolean | undefined;
|
|
19045
19044
|
defaultChecked: string | number | boolean;
|
|
19045
|
+
indeterminate: boolean;
|
|
19046
19046
|
checkedValue: string | number | boolean;
|
|
19047
19047
|
uncheckedValue: string | number | boolean;
|
|
19048
19048
|
privateInsideTable: boolean;
|
|
@@ -21088,17 +21088,17 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21088
21088
|
}, any>;
|
|
21089
21089
|
}>>>;
|
|
21090
21090
|
}>> & Readonly<{}>, {
|
|
21091
|
-
readonly options: CascaderOption[];
|
|
21092
|
-
readonly to: string | boolean | HTMLElement;
|
|
21093
21091
|
readonly disabled: boolean | undefined;
|
|
21094
|
-
readonly show: boolean | undefined;
|
|
21095
|
-
readonly separator: string;
|
|
21096
|
-
readonly multiple: boolean;
|
|
21097
21092
|
readonly bordered: boolean | undefined;
|
|
21093
|
+
readonly to: string | boolean | HTMLElement;
|
|
21098
21094
|
readonly clearable: boolean;
|
|
21099
21095
|
readonly defaultValue: Value | null;
|
|
21100
21096
|
readonly placement: PopoverPlacement;
|
|
21097
|
+
readonly options: CascaderOption[];
|
|
21098
|
+
readonly show: boolean | undefined;
|
|
21099
|
+
readonly separator: string;
|
|
21101
21100
|
readonly allowCheckingNotLoaded: boolean;
|
|
21101
|
+
readonly multiple: boolean;
|
|
21102
21102
|
readonly filterable: boolean;
|
|
21103
21103
|
readonly disabledField: string;
|
|
21104
21104
|
readonly expandTrigger: ExpandTrigger;
|
|
@@ -21580,21 +21580,21 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
21580
21580
|
minWidth: NumberConstructor;
|
|
21581
21581
|
maxWidth: NumberConstructor;
|
|
21582
21582
|
}>> & Readonly<{}>, {
|
|
21583
|
-
to: string | boolean | HTMLElement;
|
|
21584
21583
|
disabled: boolean;
|
|
21585
|
-
show: boolean | undefined;
|
|
21586
|
-
flip: boolean;
|
|
21587
|
-
width: number | "trigger";
|
|
21588
|
-
duration: number;
|
|
21589
21584
|
raw: boolean;
|
|
21585
|
+
to: string | boolean | HTMLElement;
|
|
21590
21586
|
placement: FollowerPlacement;
|
|
21587
|
+
width: number | "trigger";
|
|
21588
|
+
show: boolean | undefined;
|
|
21591
21589
|
showArrow: boolean;
|
|
21592
21590
|
trigger: PopoverTrigger;
|
|
21593
21591
|
arrow: boolean | undefined;
|
|
21594
21592
|
defaultShow: boolean;
|
|
21595
21593
|
delay: number;
|
|
21594
|
+
duration: number;
|
|
21596
21595
|
arrowPointToCenter: boolean;
|
|
21597
21596
|
displayDirective: "show" | "if";
|
|
21597
|
+
flip: boolean;
|
|
21598
21598
|
animated: boolean;
|
|
21599
21599
|
overlap: boolean;
|
|
21600
21600
|
keepAliveOnHover: boolean;
|
|
@@ -22458,24 +22458,24 @@ declare const _default: DefineComponent<ExtractPropTypes<{
|
|
|
22458
22458
|
readonly minWidth: NumberConstructor;
|
|
22459
22459
|
readonly maxWidth: NumberConstructor;
|
|
22460
22460
|
}>> & Readonly<{}>, {
|
|
22461
|
-
readonly options: DropdownMixedOption[];
|
|
22462
|
-
readonly size: "small" | "medium" | "large" | "huge";
|
|
22463
|
-
readonly to: string | boolean | HTMLElement;
|
|
22464
22461
|
readonly disabled: boolean;
|
|
22465
|
-
readonly
|
|
22466
|
-
readonly flip: boolean;
|
|
22467
|
-
readonly width: number | "trigger";
|
|
22468
|
-
readonly duration: number;
|
|
22462
|
+
readonly size: "small" | "medium" | "large" | "huge";
|
|
22469
22463
|
readonly raw: boolean;
|
|
22464
|
+
readonly to: string | boolean | HTMLElement;
|
|
22470
22465
|
readonly placement: PopoverPlacement;
|
|
22466
|
+
readonly options: DropdownMixedOption[];
|
|
22467
|
+
readonly width: number | "trigger";
|
|
22468
|
+
readonly show: boolean | undefined;
|
|
22471
22469
|
readonly keyboard: boolean;
|
|
22472
22470
|
readonly showArrow: boolean;
|
|
22473
22471
|
readonly trigger: PopoverTrigger;
|
|
22474
22472
|
readonly arrow: boolean | undefined;
|
|
22475
22473
|
readonly defaultShow: boolean;
|
|
22476
22474
|
readonly delay: number;
|
|
22475
|
+
readonly duration: number;
|
|
22477
22476
|
readonly arrowPointToCenter: boolean;
|
|
22478
22477
|
readonly displayDirective: "show" | "if";
|
|
22478
|
+
readonly flip: boolean;
|
|
22479
22479
|
readonly animated: boolean;
|
|
22480
22480
|
readonly overlap: boolean;
|
|
22481
22481
|
readonly keepAliveOnHover: boolean;
|