yuyeon 0.1.0-rc.9 → 0.1.0
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/dist/style.css +1 -1
- package/dist/yuyeon.js +4606 -4024
- package/dist/yuyeon.umd.cjs +17 -13
- package/lib/components/badge/YBadge.scss +0 -1
- package/lib/components/card/YCard.mjs +16 -9
- package/lib/components/card/YCard.mjs.map +1 -1
- package/lib/components/dialog/YDialog.mjs +4 -1
- package/lib/components/dialog/YDialog.mjs.map +1 -1
- package/lib/components/dropdown/YDropdown.mjs +10 -4
- package/lib/components/dropdown/YDropdown.mjs.map +1 -1
- package/lib/components/field-input/YFieldInput.mjs.map +1 -1
- package/lib/components/field-input/YFieldInput.scss +1 -1
- package/lib/components/hover/YHover.mjs +11 -4
- package/lib/components/hover/YHover.mjs.map +1 -1
- package/lib/components/hover/index.mjs +2 -0
- package/lib/components/hover/index.mjs.map +1 -0
- package/lib/components/index.mjs +3 -0
- package/lib/components/index.mjs.map +1 -1
- package/lib/components/input/YInput.scss +1 -1
- package/lib/components/ip-field/YIpField.scss +74 -0
- package/lib/components/ip-field/YIpv4Field.mjs +297 -0
- package/lib/components/ip-field/YIpv4Field.mjs.map +1 -0
- package/lib/components/ip-field/index.mjs +2 -0
- package/lib/components/ip-field/index.mjs.map +1 -0
- package/lib/components/layer/YLayer.mjs +32 -12
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/layer/base.mjs +1 -1
- package/lib/components/layer/base.mjs.map +1 -1
- package/lib/components/layer/content.mjs +22 -0
- package/lib/components/layer/content.mjs.map +1 -0
- package/lib/components/layer/scroll-strategies.mjs +1 -1
- package/lib/components/layer/scroll-strategies.mjs.map +1 -1
- package/lib/components/list/YListItem.mjs +1 -0
- package/lib/components/list/YListItem.mjs.map +1 -1
- package/lib/components/menu/YMenu.mjs +6 -11
- package/lib/components/menu/YMenu.mjs.map +1 -1
- package/lib/components/panel/YDividePanel.scss +1 -1
- package/lib/components/select/YSelect.mjs +8 -5
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/snackbar/YSnackbar.mjs +42 -37
- package/lib/components/snackbar/YSnackbar.mjs.map +1 -1
- package/lib/components/tab/YTab.scss +3 -3
- package/lib/components/tab/types.mjs.map +1 -1
- package/lib/components/table/YDataTableBody.mjs +1 -1
- package/lib/components/table/YDataTableBody.mjs.map +1 -1
- package/lib/components/table/YDataTableRow.mjs +30 -3
- package/lib/components/table/YDataTableRow.mjs.map +1 -1
- package/lib/components/table/composibles/header.mjs +1 -1
- package/lib/components/table/composibles/header.mjs.map +1 -1
- package/lib/components/table/composibles/items.mjs +3 -1
- package/lib/components/table/composibles/items.mjs.map +1 -1
- package/lib/components/table/composibles/selection.mjs.map +1 -1
- package/lib/components/table/composibles/sorting.mjs.map +1 -1
- package/lib/components/table/types/common.mjs.map +1 -1
- package/lib/components/table/types/header.mjs.map +1 -1
- package/lib/components/text-interpolation/YTi.mjs +46 -0
- package/lib/components/text-interpolation/YTi.mjs.map +1 -0
- package/lib/components/text-interpolation/index.mjs +2 -0
- package/lib/components/text-interpolation/index.mjs.map +1 -0
- package/lib/components/textarea/YTextarea.mjs +3 -1
- package/lib/components/textarea/YTextarea.mjs.map +1 -1
- package/lib/components/tooltip/YTooltip.mjs +1 -0
- package/lib/components/tooltip/YTooltip.mjs.map +1 -1
- package/lib/components/tree-view/YTreeViewNode.mjs +47 -21
- package/lib/components/tree-view/YTreeViewNode.mjs.map +1 -1
- package/lib/composables/coordinate/index.mjs.map +1 -1
- package/lib/composables/coordinate/levitation.mjs.map +1 -1
- package/lib/composables/icon.mjs.map +1 -1
- package/lib/composables/index.mjs +1 -0
- package/lib/composables/index.mjs.map +1 -1
- package/lib/composables/theme/index.mjs +6 -3
- package/lib/composables/theme/index.mjs.map +1 -1
- package/lib/index.mjs +1 -1
- package/lib/index.mjs.map +1 -1
- package/lib/util/parser.mjs +31 -0
- package/lib/util/parser.mjs.map +1 -0
- package/lib/util/string.mjs +30 -0
- package/lib/util/string.mjs.map +1 -1
- package/package.json +12 -11
- package/types/abstract/items.d.ts +5 -4
- package/types/components/alert/YAlert.d.ts +3 -2
- package/types/components/app/YApp.d.ts +3 -2
- package/types/components/badge/YBadge.d.ts +9 -8
- package/types/components/bench/YBench.d.ts +4 -0
- package/types/components/bench/index.d.ts +1 -0
- package/types/components/button/YButton.d.ts +27 -29
- package/types/components/card/YCard.d.ts +6 -3
- package/types/components/card/YCardBody.d.ts +1 -1
- package/types/components/card/YCardFooter.d.ts +1 -1
- package/types/components/card/YCardHeader.d.ts +1 -1
- package/types/components/checkbox/YCheckbox.d.ts +4 -3
- package/types/components/checkbox/YInputCheckbox.d.ts +7 -6
- package/types/components/checkbox/index.d.ts +1 -1
- package/types/components/chip/YChip.d.ts +3 -2
- package/types/components/date-picker/YDateCalendar.d.ts +16 -15
- package/types/components/date-picker/YDatePicker.d.ts +41 -40
- package/types/components/date-picker/YDatePickerControl.d.ts +29 -28
- package/types/components/date-picker/YMonthPicker.d.ts +6 -5
- package/types/components/date-picker/YYearPicker.d.ts +3 -2
- package/types/components/default-provider/YDefaultProvider.d.ts +0 -0
- package/types/components/default-provider/index.d.ts +0 -0
- package/types/components/dialog/YDialog.d.ts +416 -335
- package/types/components/divider/YDivider.d.ts +4 -3
- package/types/components/dropdown/YDropdown.d.ts +507 -61
- package/types/components/field-input/YFieldInput.d.ts +27 -26
- package/types/components/form/YForm.d.ts +9 -8
- package/types/components/hover/YHover.d.ts +79 -0
- package/types/components/hover/index.d.ts +1 -0
- package/types/components/icon/YIcon.d.ts +5 -4
- package/types/components/icons/YIconCheckbox.d.ts +5 -4
- package/types/components/icons/YIconClear.d.ts +1 -1
- package/types/components/icons/YIconDropdown.d.ts +1 -1
- package/types/components/icons/YIconExpand.d.ts +1 -1
- package/types/components/icons/YIconPageControl.d.ts +6 -5
- package/types/components/icons/YIconSort.d.ts +5 -4
- package/types/components/icons/index.d.ts +26 -26
- package/types/components/index.d.ts +3 -0
- package/types/components/input/YInput.d.ts +21 -20
- package/types/components/ip-field/YIpv4Field.d.ts +133 -0
- package/types/components/ip-field/index.d.ts +1 -0
- package/types/components/layer/YLayer.d.ts +154 -106
- package/types/components/layer/active-stack.d.ts +3 -2
- package/types/components/layer/base.d.ts +8 -7
- package/types/components/layer/content.d.ts +21 -0
- package/types/components/layer/scroll-strategies.d.ts +41 -0
- package/types/components/list/YList.d.ts +8 -7
- package/types/components/list/YListItem.d.ts +19 -13
- package/types/components/loading/YSpinnerRing.d.ts +2 -1
- package/types/components/menu/YMenu.d.ts +175 -125
- package/types/components/navigation/YNavigation.d.ts +1 -0
- package/types/components/navigation/index.d.ts +1 -0
- package/types/components/pagination/YPagination.d.ts +20 -19
- package/types/components/panel/YDividePanel.d.ts +4 -3
- package/types/components/plate/YPlate.d.ts +3 -2
- package/types/components/progress-bar/YProgressBar.d.ts +5 -4
- package/types/components/select/YSelect.d.ts +1304 -944
- package/types/components/snackbar/YSnackbar.d.ts +494 -30
- package/types/components/switch/YSwitch.d.ts +4 -3
- package/types/components/tab/YTab.d.ts +30 -29
- package/types/components/tab/YTabs.d.ts +12 -11
- package/types/components/tab/index.d.ts +1 -1
- package/types/components/tab/shared.d.ts +1 -0
- package/types/components/tab/types.d.ts +1 -1
- package/types/components/table/YDataTable.d.ts +225 -62
- package/types/components/table/YDataTableBody.d.ts +10 -9
- package/types/components/table/YDataTableCell.d.ts +6 -5
- package/types/components/table/YDataTableControl.d.ts +5 -4
- package/types/components/table/YDataTableHead.d.ts +10 -10
- package/types/components/table/YDataTableLayer.d.ts +4 -3
- package/types/components/table/YDataTableRow.d.ts +3 -2
- package/types/components/table/YDataTableServer.d.ts +225 -62
- package/types/components/table/YTable.d.ts +7 -6
- package/types/components/table/composibles/header.d.ts +103 -12
- package/types/components/table/composibles/items.d.ts +5 -4
- package/types/components/table/composibles/options.d.ts +2 -1
- package/types/components/table/composibles/pagination.d.ts +6 -5
- package/types/components/table/composibles/selection.d.ts +7 -5
- package/types/components/table/composibles/sorting.d.ts +26 -7
- package/types/components/table/types/common.d.ts +1 -0
- package/types/components/table/types/header.d.ts +3 -2
- package/types/components/table/types/index.d.ts +5 -4
- package/types/components/table/types/item.d.ts +1 -0
- package/types/components/table/types/row.d.ts +1 -0
- package/types/components/text-ellipsis/YTextEllipsis.d.ts +3 -2
- package/types/components/text-highlighter/YTextHighlighter.d.ts +3 -2
- package/types/components/text-highlighter/index.d.ts +1 -0
- package/types/components/text-interpolation/YTi.d.ts +20 -0
- package/types/components/text-interpolation/index.d.ts +1 -0
- package/types/components/textarea/YTextarea.d.ts +39 -39
- package/types/components/toggle-button/YToggleButton.d.ts +1 -0
- package/types/components/tooltip/YTooltip.d.ts +217 -150
- package/types/components/transitions/expand-transition.d.ts +4 -3
- package/types/components/transitions/index.d.ts +10 -10
- package/types/components/tree-view/YTreeView.d.ts +20 -13
- package/types/components/tree-view/YTreeViewNode.d.ts +42 -20
- package/types/components/tree-view/types.d.ts +2 -1
- package/types/components/tree-view/util.d.ts +1 -0
- package/types/composables/choice-link.d.ts +2 -1
- package/types/composables/choice.d.ts +3 -2
- package/types/composables/communication.d.ts +2 -1
- package/types/composables/component.d.ts +1 -0
- package/types/composables/coordinate/arrangement.d.ts +2 -1
- package/types/composables/coordinate/index.d.ts +23 -22
- package/types/composables/coordinate/levitation.d.ts +2 -1
- package/types/composables/coordinate/types.d.ts +2 -1
- package/types/composables/coordinate/utils/point.d.ts +1 -0
- package/types/composables/date/factory.d.ts +1 -0
- package/types/composables/date/index.d.ts +1 -0
- package/types/composables/date/setting.d.ts +2 -1
- package/types/composables/date/types.d.ts +2 -1
- package/types/composables/dimension.d.ts +4 -3
- package/types/composables/focus.d.ts +4 -3
- package/types/composables/form.d.ts +7 -6
- package/types/composables/i18n/index.d.ts +1 -0
- package/types/composables/i18n/locale.d.ts +2 -1
- package/types/composables/i18n/rtl.d.ts +2 -1
- package/types/composables/icon.d.ts +9 -10
- package/types/composables/index.d.ts +1 -0
- package/types/composables/layer-group.d.ts +3 -2
- package/types/composables/layout.d.ts +10 -0
- package/types/composables/list-items.d.ts +36 -35
- package/types/composables/progress.d.ts +1 -1
- package/types/composables/ref.d.ts +2 -1
- package/types/composables/resize-observer.d.ts +2 -2
- package/types/composables/scope.d.ts +2 -1
- package/types/composables/theme/factory.d.ts +1 -0
- package/types/composables/theme/index.d.ts +5 -4
- package/types/composables/theme/setting.d.ts +1 -0
- package/types/composables/timing.d.ts +2 -1
- package/types/composables/transition.d.ts +2 -1
- package/types/composables/validation.d.ts +19 -18
- package/types/composables/vue-router.d.ts +3 -3
- package/types/directives/complement-click/index.d.ts +1 -0
- package/types/directives/plate-wave/index.d.ts +2 -1
- package/types/directives/theme-class.d.ts +1 -0
- package/types/globals.d.ts +1 -1
- package/types/i18n/built-in.d.ts +2 -1
- package/types/i18n/types.d.ts +2 -1
- package/types/index.d.ts +2 -1
- package/types/locales/index.d.ts +2 -0
- package/types/locales/ko.d.ts +6 -0
- package/types/mixins/di.d.ts +1 -1
- package/types/mixins/rebind-attrs.d.ts +2 -2
- package/types/shims.d.ts +5 -45
- package/types/types/index.d.ts +2 -1
- package/types/util/anchor.d.ts +1 -1
- package/types/util/color/contrast/contrast.d.ts +74 -0
- package/types/util/color/conversion.d.ts +1 -0
- package/types/util/color/hct/cam16.d.ts +2 -17
- package/types/util/color/hct/hct-solver.d.ts +131 -0
- package/types/util/color/hct/hct.d.ts +2 -17
- package/types/util/color/hct/viewing-conditions.d.ts +58 -0
- package/types/util/color/index.d.ts +1 -1
- package/types/util/color/palettes/core-palette.d.ts +44 -0
- package/types/util/color/palettes/tonal-palette.d.ts +40 -0
- package/types/util/date/adapters/yuyeon-date-adapter.d.ts +1 -0
- package/types/util/date/built-in.d.ts +2 -1
- package/types/util/date/index.d.ts +1 -1
- package/types/util/parser.d.ts +4 -0
- package/types/util/reactivity.d.ts +3 -2
- package/types/util/string.d.ts +4 -0
- package/types/util/vue-component.d.ts +4 -3
|
@@ -2,6 +2,7 @@ import { PropType, SlotsType } from 'vue';
|
|
|
2
2
|
import { ListItem } from '../../composables/list-items';
|
|
3
3
|
import { deepEqual } from '../../util/common';
|
|
4
4
|
import { YIconIconProp } from '../icon';
|
|
5
|
+
|
|
5
6
|
export type SelectEquals = (optionsItem: any, valueItem: any, valueKey?: string) => boolean;
|
|
6
7
|
export declare function returnItemEquals(optionsItem: any, valueItem: any, valueKey?: string): boolean;
|
|
7
8
|
export declare const pressSelectPropsOptions: <Defaults extends {
|
|
@@ -27,23 +28,23 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
27
28
|
} : Omit<{
|
|
28
29
|
type: PropType<any[]>;
|
|
29
30
|
default: () => never[];
|
|
30
|
-
}, "
|
|
31
|
+
}, "default" | "type"> & {
|
|
31
32
|
type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
32
33
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
33
34
|
};
|
|
34
35
|
itemKey: unknown extends Defaults["itemKey"] ? Omit<{
|
|
35
36
|
type: PropType<string>;
|
|
36
37
|
default: string;
|
|
37
|
-
}, "
|
|
38
|
+
}, "default" | "type"> & {
|
|
38
39
|
type: PropType<string>;
|
|
39
40
|
default: string;
|
|
40
41
|
} : Omit<Omit<{
|
|
41
42
|
type: PropType<string>;
|
|
42
43
|
default: string;
|
|
43
|
-
}, "
|
|
44
|
+
}, "default" | "type"> & {
|
|
44
45
|
type: PropType<string>;
|
|
45
46
|
default: string;
|
|
46
|
-
}, "
|
|
47
|
+
}, "default" | "type"> & {
|
|
47
48
|
type: PropType<unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"]>;
|
|
48
49
|
default: unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"];
|
|
49
50
|
};
|
|
@@ -53,23 +54,23 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
53
54
|
} : Omit<{
|
|
54
55
|
type: PropType<string>;
|
|
55
56
|
default: string;
|
|
56
|
-
}, "
|
|
57
|
+
}, "default" | "type"> & {
|
|
57
58
|
type: PropType<unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"]>;
|
|
58
59
|
default: unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"];
|
|
59
60
|
};
|
|
60
61
|
itemChildren: unknown extends Defaults["itemChildren"] ? Omit<{
|
|
61
62
|
type: PropType<string | boolean>;
|
|
62
63
|
default: string;
|
|
63
|
-
}, "
|
|
64
|
+
}, "default" | "type"> & {
|
|
64
65
|
type: PropType<NonNullable<string | boolean>>;
|
|
65
66
|
default: NonNullable<string | boolean>;
|
|
66
67
|
} : Omit<Omit<{
|
|
67
68
|
type: PropType<string | boolean>;
|
|
68
69
|
default: string;
|
|
69
|
-
}, "
|
|
70
|
+
}, "default" | "type"> & {
|
|
70
71
|
type: PropType<NonNullable<string | boolean>>;
|
|
71
72
|
default: NonNullable<string | boolean>;
|
|
72
|
-
}, "
|
|
73
|
+
}, "default" | "type"> & {
|
|
73
74
|
type: PropType<unknown extends Defaults["itemChildren"] ? NonNullable<string | boolean> : NonNullable<NonNullable<string | boolean>> | Defaults["itemChildren"]>;
|
|
74
75
|
default: unknown extends Defaults["itemChildren"] ? NonNullable<string | boolean> : NonNullable<NonNullable<string | boolean>> | Defaults["itemChildren"];
|
|
75
76
|
};
|
|
@@ -91,7 +92,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
91
92
|
} : Omit<{
|
|
92
93
|
type: PropType<SelectEquals>;
|
|
93
94
|
default: typeof deepEqual;
|
|
94
|
-
}, "
|
|
95
|
+
}, "default" | "type"> & {
|
|
95
96
|
type: PropType<unknown extends Defaults["valueEquals"] ? SelectEquals : SelectEquals | Defaults["valueEquals"]>;
|
|
96
97
|
default: unknown extends Defaults["valueEquals"] ? SelectEquals : SelectEquals | Defaults["valueEquals"];
|
|
97
98
|
};
|
|
@@ -102,65 +103,71 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
102
103
|
menuProps: unknown extends Defaults["menuProps"] ? {
|
|
103
104
|
type: PropType<Partial<{
|
|
104
105
|
disabled: boolean;
|
|
105
|
-
|
|
106
|
-
openOnHover: boolean;
|
|
107
|
-
openDelay: number;
|
|
106
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
108
107
|
closeDelay: number;
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
108
|
+
openDelay: number;
|
|
109
|
+
transition: string | (import('vue').TransitionProps & {
|
|
110
|
+
is?: import('vue').Component | undefined;
|
|
111
|
+
});
|
|
112
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
113
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
113
114
|
origin: string;
|
|
114
115
|
viewportMargin: string | number | unknown[];
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
116
|
+
zIndex: string | number;
|
|
117
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
118
|
+
contentStyles: import('vue').CSSProperties;
|
|
119
|
+
openOnHover: boolean;
|
|
120
|
+
contained: boolean;
|
|
118
121
|
preventClip: boolean;
|
|
119
122
|
openOnClickBase: boolean;
|
|
120
123
|
closeCondition: boolean | Function;
|
|
121
124
|
}> & Omit<{
|
|
122
125
|
readonly disabled: boolean;
|
|
123
|
-
readonly
|
|
124
|
-
readonly openOnHover: boolean;
|
|
125
|
-
readonly openDelay: number;
|
|
126
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
126
127
|
readonly closeDelay: number;
|
|
127
|
-
readonly
|
|
128
|
-
readonly
|
|
129
|
-
|
|
130
|
-
|
|
128
|
+
readonly openDelay: number;
|
|
129
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
130
|
+
is?: import('vue').Component | undefined;
|
|
131
|
+
});
|
|
132
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
133
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
131
134
|
readonly origin: string;
|
|
132
135
|
readonly viewportMargin: string | number | unknown[];
|
|
133
|
-
readonly
|
|
134
|
-
|
|
135
|
-
|
|
136
|
+
readonly zIndex: string | number;
|
|
137
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
138
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
139
|
+
readonly openOnHover: boolean;
|
|
140
|
+
readonly contained: boolean;
|
|
136
141
|
readonly preventClip: boolean;
|
|
137
142
|
readonly openOnClickBase: boolean;
|
|
138
|
-
readonly
|
|
139
|
-
readonly
|
|
143
|
+
readonly base?: import('../layer/base').BaseType;
|
|
144
|
+
readonly modelValue?: boolean | undefined;
|
|
140
145
|
readonly width?: string | number | undefined;
|
|
141
146
|
readonly height?: string | number | undefined;
|
|
142
|
-
readonly
|
|
143
|
-
readonly classes?: string |
|
|
147
|
+
readonly theme?: string | undefined;
|
|
148
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
149
|
+
readonly minWidth?: string | number | undefined;
|
|
150
|
+
readonly offset?: string | number | number[] | undefined;
|
|
151
|
+
readonly minHeight?: string | number | undefined;
|
|
152
|
+
readonly maxWidth?: string | number | undefined;
|
|
153
|
+
readonly maxHeight?: string | number | undefined;
|
|
154
|
+
readonly closeClickContent?: boolean | undefined;
|
|
144
155
|
readonly scrim?: boolean | undefined;
|
|
145
156
|
readonly scrimOpacity?: number | undefined;
|
|
146
157
|
readonly eager?: boolean | undefined;
|
|
147
|
-
readonly contentClasses?: string |
|
|
158
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
148
159
|
readonly closeClickScrim?: boolean | undefined;
|
|
149
|
-
readonly offset?: string | number | string[] | undefined;
|
|
150
|
-
readonly minWidth?: string | number | undefined;
|
|
151
|
-
readonly maxWidth?: string | number | undefined;
|
|
152
|
-
readonly minHeight?: string | number | undefined;
|
|
153
|
-
readonly maxHeight?: string | number | undefined;
|
|
154
160
|
readonly preventCloseBubble?: boolean | undefined;
|
|
155
|
-
readonly menuClasses?: string |
|
|
161
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
156
162
|
readonly closeCondition?: boolean | Function | undefined;
|
|
157
163
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
158
164
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
159
|
-
|
|
165
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
166
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
160
167
|
transition: {
|
|
161
168
|
default: string;
|
|
162
|
-
type: PropType<string | (import(
|
|
163
|
-
is?: import(
|
|
169
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
170
|
+
is?: import('vue').Component | undefined;
|
|
164
171
|
})>;
|
|
165
172
|
};
|
|
166
173
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -170,19 +177,27 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
170
177
|
minHeight: PropType<string | number>;
|
|
171
178
|
height: PropType<string | number>;
|
|
172
179
|
maxHeight: PropType<string | number>;
|
|
180
|
+
scrollStrategy: Omit<{
|
|
181
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
182
|
+
default: string;
|
|
183
|
+
validator: (val: any) => boolean;
|
|
184
|
+
}, "default" | "type"> & {
|
|
185
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
186
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
187
|
+
};
|
|
173
188
|
coordinateStrategy: Omit<{
|
|
174
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
189
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
175
190
|
default: string;
|
|
176
|
-
}, "
|
|
177
|
-
type: PropType<
|
|
178
|
-
default:
|
|
191
|
+
}, "default" | "type"> & {
|
|
192
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
193
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
179
194
|
};
|
|
180
195
|
position: {
|
|
181
|
-
type: PropType<"default" | "top" | "
|
|
196
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
182
197
|
default: string;
|
|
183
198
|
};
|
|
184
199
|
align: {
|
|
185
|
-
type: PropType<"top" | "
|
|
200
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
186
201
|
default: string;
|
|
187
202
|
};
|
|
188
203
|
origin: {
|
|
@@ -190,13 +205,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
190
205
|
default: string;
|
|
191
206
|
};
|
|
192
207
|
offset: {
|
|
193
|
-
type: PropType<string | number |
|
|
208
|
+
type: PropType<string | number | number[]>;
|
|
194
209
|
};
|
|
195
210
|
viewportMargin: {
|
|
196
211
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
197
212
|
default: number;
|
|
198
213
|
};
|
|
199
|
-
|
|
214
|
+
closeClickContent: {
|
|
215
|
+
type: PropType<boolean>;
|
|
216
|
+
};
|
|
217
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
200
218
|
theme: PropType<string>;
|
|
201
219
|
modelValue: {
|
|
202
220
|
type: PropType<boolean>;
|
|
@@ -211,16 +229,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
211
229
|
type: PropType<boolean>;
|
|
212
230
|
};
|
|
213
231
|
classes: {
|
|
214
|
-
type: PropType<string |
|
|
232
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
215
233
|
};
|
|
216
234
|
contentClasses: {
|
|
217
|
-
type: PropType<string |
|
|
235
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
218
236
|
};
|
|
219
237
|
closeClickScrim: {
|
|
220
238
|
type: PropType<boolean>;
|
|
221
239
|
};
|
|
222
240
|
contentStyles: {
|
|
223
|
-
type: PropType<import(
|
|
241
|
+
type: PropType<import('vue').CSSProperties>;
|
|
224
242
|
default: () => void;
|
|
225
243
|
};
|
|
226
244
|
disabled: {
|
|
@@ -243,8 +261,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
243
261
|
type: PropType<string | number>;
|
|
244
262
|
default: number;
|
|
245
263
|
};
|
|
264
|
+
contained: BooleanConstructor;
|
|
246
265
|
menuClasses: {
|
|
247
|
-
type: PropType<string |
|
|
266
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
248
267
|
};
|
|
249
268
|
openOnClickBase: {
|
|
250
269
|
type: PropType<boolean>;
|
|
@@ -261,69 +280,76 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
261
280
|
}>> & {
|
|
262
281
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
263
282
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
264
|
-
|
|
283
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
284
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
265
285
|
} : Omit<{
|
|
266
286
|
type: PropType<Partial<{
|
|
267
287
|
disabled: boolean;
|
|
268
|
-
|
|
269
|
-
openOnHover: boolean;
|
|
270
|
-
openDelay: number;
|
|
288
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
271
289
|
closeDelay: number;
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
290
|
+
openDelay: number;
|
|
291
|
+
transition: string | (import('vue').TransitionProps & {
|
|
292
|
+
is?: import('vue').Component | undefined;
|
|
293
|
+
});
|
|
294
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
295
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
276
296
|
origin: string;
|
|
277
297
|
viewportMargin: string | number | unknown[];
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
298
|
+
zIndex: string | number;
|
|
299
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
300
|
+
contentStyles: import('vue').CSSProperties;
|
|
301
|
+
openOnHover: boolean;
|
|
302
|
+
contained: boolean;
|
|
281
303
|
preventClip: boolean;
|
|
282
304
|
openOnClickBase: boolean;
|
|
283
305
|
closeCondition: boolean | Function;
|
|
284
306
|
}> & Omit<{
|
|
285
307
|
readonly disabled: boolean;
|
|
286
|
-
readonly
|
|
287
|
-
readonly openOnHover: boolean;
|
|
288
|
-
readonly openDelay: number;
|
|
308
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
289
309
|
readonly closeDelay: number;
|
|
290
|
-
readonly
|
|
291
|
-
readonly
|
|
292
|
-
|
|
293
|
-
|
|
310
|
+
readonly openDelay: number;
|
|
311
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
312
|
+
is?: import('vue').Component | undefined;
|
|
313
|
+
});
|
|
314
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
315
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
294
316
|
readonly origin: string;
|
|
295
317
|
readonly viewportMargin: string | number | unknown[];
|
|
296
|
-
readonly
|
|
297
|
-
|
|
298
|
-
|
|
318
|
+
readonly zIndex: string | number;
|
|
319
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
320
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
321
|
+
readonly openOnHover: boolean;
|
|
322
|
+
readonly contained: boolean;
|
|
299
323
|
readonly preventClip: boolean;
|
|
300
324
|
readonly openOnClickBase: boolean;
|
|
301
|
-
readonly
|
|
302
|
-
readonly
|
|
325
|
+
readonly base?: import('../layer/base').BaseType;
|
|
326
|
+
readonly modelValue?: boolean | undefined;
|
|
303
327
|
readonly width?: string | number | undefined;
|
|
304
328
|
readonly height?: string | number | undefined;
|
|
305
|
-
readonly
|
|
306
|
-
readonly classes?: string |
|
|
329
|
+
readonly theme?: string | undefined;
|
|
330
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
331
|
+
readonly minWidth?: string | number | undefined;
|
|
332
|
+
readonly offset?: string | number | number[] | undefined;
|
|
333
|
+
readonly minHeight?: string | number | undefined;
|
|
334
|
+
readonly maxWidth?: string | number | undefined;
|
|
335
|
+
readonly maxHeight?: string | number | undefined;
|
|
336
|
+
readonly closeClickContent?: boolean | undefined;
|
|
307
337
|
readonly scrim?: boolean | undefined;
|
|
308
338
|
readonly scrimOpacity?: number | undefined;
|
|
309
339
|
readonly eager?: boolean | undefined;
|
|
310
|
-
readonly contentClasses?: string |
|
|
340
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
311
341
|
readonly closeClickScrim?: boolean | undefined;
|
|
312
|
-
readonly offset?: string | number | string[] | undefined;
|
|
313
|
-
readonly minWidth?: string | number | undefined;
|
|
314
|
-
readonly maxWidth?: string | number | undefined;
|
|
315
|
-
readonly minHeight?: string | number | undefined;
|
|
316
|
-
readonly maxHeight?: string | number | undefined;
|
|
317
342
|
readonly preventCloseBubble?: boolean | undefined;
|
|
318
|
-
readonly menuClasses?: string |
|
|
343
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
319
344
|
readonly closeCondition?: boolean | Function | undefined;
|
|
320
345
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
321
346
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
322
|
-
|
|
347
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
348
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
323
349
|
transition: {
|
|
324
350
|
default: string;
|
|
325
|
-
type: PropType<string | (import(
|
|
326
|
-
is?: import(
|
|
351
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
352
|
+
is?: import('vue').Component | undefined;
|
|
327
353
|
})>;
|
|
328
354
|
};
|
|
329
355
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -333,19 +359,27 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
333
359
|
minHeight: PropType<string | number>;
|
|
334
360
|
height: PropType<string | number>;
|
|
335
361
|
maxHeight: PropType<string | number>;
|
|
362
|
+
scrollStrategy: Omit<{
|
|
363
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
364
|
+
default: string;
|
|
365
|
+
validator: (val: any) => boolean;
|
|
366
|
+
}, "default" | "type"> & {
|
|
367
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
368
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
369
|
+
};
|
|
336
370
|
coordinateStrategy: Omit<{
|
|
337
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
371
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
338
372
|
default: string;
|
|
339
|
-
}, "
|
|
340
|
-
type: PropType<
|
|
341
|
-
default:
|
|
373
|
+
}, "default" | "type"> & {
|
|
374
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
375
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
342
376
|
};
|
|
343
377
|
position: {
|
|
344
|
-
type: PropType<"default" | "top" | "
|
|
378
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
345
379
|
default: string;
|
|
346
380
|
};
|
|
347
381
|
align: {
|
|
348
|
-
type: PropType<"top" | "
|
|
382
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
349
383
|
default: string;
|
|
350
384
|
};
|
|
351
385
|
origin: {
|
|
@@ -353,13 +387,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
353
387
|
default: string;
|
|
354
388
|
};
|
|
355
389
|
offset: {
|
|
356
|
-
type: PropType<string | number |
|
|
390
|
+
type: PropType<string | number | number[]>;
|
|
357
391
|
};
|
|
358
392
|
viewportMargin: {
|
|
359
393
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
360
394
|
default: number;
|
|
361
395
|
};
|
|
362
|
-
|
|
396
|
+
closeClickContent: {
|
|
397
|
+
type: PropType<boolean>;
|
|
398
|
+
};
|
|
399
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
363
400
|
theme: PropType<string>;
|
|
364
401
|
modelValue: {
|
|
365
402
|
type: PropType<boolean>;
|
|
@@ -374,16 +411,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
374
411
|
type: PropType<boolean>;
|
|
375
412
|
};
|
|
376
413
|
classes: {
|
|
377
|
-
type: PropType<string |
|
|
414
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
378
415
|
};
|
|
379
416
|
contentClasses: {
|
|
380
|
-
type: PropType<string |
|
|
417
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
381
418
|
};
|
|
382
419
|
closeClickScrim: {
|
|
383
420
|
type: PropType<boolean>;
|
|
384
421
|
};
|
|
385
422
|
contentStyles: {
|
|
386
|
-
type: PropType<import(
|
|
423
|
+
type: PropType<import('vue').CSSProperties>;
|
|
387
424
|
default: () => void;
|
|
388
425
|
};
|
|
389
426
|
disabled: {
|
|
@@ -406,8 +443,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
406
443
|
type: PropType<string | number>;
|
|
407
444
|
default: number;
|
|
408
445
|
};
|
|
446
|
+
contained: BooleanConstructor;
|
|
409
447
|
menuClasses: {
|
|
410
|
-
type: PropType<string |
|
|
448
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
411
449
|
};
|
|
412
450
|
openOnClickBase: {
|
|
413
451
|
type: PropType<boolean>;
|
|
@@ -424,69 +462,76 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
424
462
|
}>> & {
|
|
425
463
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
426
464
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
427
|
-
|
|
428
|
-
|
|
465
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
466
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
467
|
+
}, "default" | "type"> & {
|
|
429
468
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
430
469
|
disabled: boolean;
|
|
431
|
-
|
|
432
|
-
openOnHover: boolean;
|
|
433
|
-
openDelay: number;
|
|
470
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
434
471
|
closeDelay: number;
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
472
|
+
openDelay: number;
|
|
473
|
+
transition: string | (import('vue').TransitionProps & {
|
|
474
|
+
is?: import('vue').Component | undefined;
|
|
475
|
+
});
|
|
476
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
477
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
439
478
|
origin: string;
|
|
440
479
|
viewportMargin: string | number | unknown[];
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
480
|
+
zIndex: string | number;
|
|
481
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
482
|
+
contentStyles: import('vue').CSSProperties;
|
|
483
|
+
openOnHover: boolean;
|
|
484
|
+
contained: boolean;
|
|
444
485
|
preventClip: boolean;
|
|
445
486
|
openOnClickBase: boolean;
|
|
446
487
|
closeCondition: boolean | Function;
|
|
447
488
|
}> & Omit<{
|
|
448
489
|
readonly disabled: boolean;
|
|
449
|
-
readonly
|
|
450
|
-
readonly openOnHover: boolean;
|
|
451
|
-
readonly openDelay: number;
|
|
490
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
452
491
|
readonly closeDelay: number;
|
|
453
|
-
readonly
|
|
454
|
-
readonly
|
|
455
|
-
|
|
456
|
-
|
|
492
|
+
readonly openDelay: number;
|
|
493
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
494
|
+
is?: import('vue').Component | undefined;
|
|
495
|
+
});
|
|
496
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
497
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
457
498
|
readonly origin: string;
|
|
458
499
|
readonly viewportMargin: string | number | unknown[];
|
|
459
|
-
readonly
|
|
460
|
-
|
|
461
|
-
|
|
500
|
+
readonly zIndex: string | number;
|
|
501
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
502
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
503
|
+
readonly openOnHover: boolean;
|
|
504
|
+
readonly contained: boolean;
|
|
462
505
|
readonly preventClip: boolean;
|
|
463
506
|
readonly openOnClickBase: boolean;
|
|
464
|
-
readonly
|
|
465
|
-
readonly
|
|
507
|
+
readonly base?: import('../layer/base').BaseType;
|
|
508
|
+
readonly modelValue?: boolean | undefined;
|
|
466
509
|
readonly width?: string | number | undefined;
|
|
467
510
|
readonly height?: string | number | undefined;
|
|
468
|
-
readonly
|
|
469
|
-
readonly classes?: string |
|
|
511
|
+
readonly theme?: string | undefined;
|
|
512
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
513
|
+
readonly minWidth?: string | number | undefined;
|
|
514
|
+
readonly offset?: string | number | number[] | undefined;
|
|
515
|
+
readonly minHeight?: string | number | undefined;
|
|
516
|
+
readonly maxWidth?: string | number | undefined;
|
|
517
|
+
readonly maxHeight?: string | number | undefined;
|
|
518
|
+
readonly closeClickContent?: boolean | undefined;
|
|
470
519
|
readonly scrim?: boolean | undefined;
|
|
471
520
|
readonly scrimOpacity?: number | undefined;
|
|
472
521
|
readonly eager?: boolean | undefined;
|
|
473
|
-
readonly contentClasses?: string |
|
|
522
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
474
523
|
readonly closeClickScrim?: boolean | undefined;
|
|
475
|
-
readonly offset?: string | number | string[] | undefined;
|
|
476
|
-
readonly minWidth?: string | number | undefined;
|
|
477
|
-
readonly maxWidth?: string | number | undefined;
|
|
478
|
-
readonly minHeight?: string | number | undefined;
|
|
479
|
-
readonly maxHeight?: string | number | undefined;
|
|
480
524
|
readonly preventCloseBubble?: boolean | undefined;
|
|
481
|
-
readonly menuClasses?: string |
|
|
525
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
482
526
|
readonly closeCondition?: boolean | Function | undefined;
|
|
483
527
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
484
528
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
485
|
-
|
|
529
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
530
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
486
531
|
transition: {
|
|
487
532
|
default: string;
|
|
488
|
-
type: PropType<string | (import(
|
|
489
|
-
is?: import(
|
|
533
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
534
|
+
is?: import('vue').Component | undefined;
|
|
490
535
|
})>;
|
|
491
536
|
};
|
|
492
537
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -496,19 +541,27 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
496
541
|
minHeight: PropType<string | number>;
|
|
497
542
|
height: PropType<string | number>;
|
|
498
543
|
maxHeight: PropType<string | number>;
|
|
544
|
+
scrollStrategy: Omit<{
|
|
545
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
546
|
+
default: string;
|
|
547
|
+
validator: (val: any) => boolean;
|
|
548
|
+
}, "default" | "type"> & {
|
|
549
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
550
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
551
|
+
};
|
|
499
552
|
coordinateStrategy: Omit<{
|
|
500
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
553
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
501
554
|
default: string;
|
|
502
|
-
}, "
|
|
503
|
-
type: PropType<
|
|
504
|
-
default:
|
|
555
|
+
}, "default" | "type"> & {
|
|
556
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
557
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
505
558
|
};
|
|
506
559
|
position: {
|
|
507
|
-
type: PropType<"default" | "top" | "
|
|
560
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
508
561
|
default: string;
|
|
509
562
|
};
|
|
510
563
|
align: {
|
|
511
|
-
type: PropType<"top" | "
|
|
564
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
512
565
|
default: string;
|
|
513
566
|
};
|
|
514
567
|
origin: {
|
|
@@ -516,13 +569,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
516
569
|
default: string;
|
|
517
570
|
};
|
|
518
571
|
offset: {
|
|
519
|
-
type: PropType<string | number |
|
|
572
|
+
type: PropType<string | number | number[]>;
|
|
520
573
|
};
|
|
521
574
|
viewportMargin: {
|
|
522
575
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
523
576
|
default: number;
|
|
524
577
|
};
|
|
525
|
-
|
|
578
|
+
closeClickContent: {
|
|
579
|
+
type: PropType<boolean>;
|
|
580
|
+
};
|
|
581
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
526
582
|
theme: PropType<string>;
|
|
527
583
|
modelValue: {
|
|
528
584
|
type: PropType<boolean>;
|
|
@@ -537,16 +593,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
537
593
|
type: PropType<boolean>;
|
|
538
594
|
};
|
|
539
595
|
classes: {
|
|
540
|
-
type: PropType<string |
|
|
596
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
541
597
|
};
|
|
542
598
|
contentClasses: {
|
|
543
|
-
type: PropType<string |
|
|
599
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
544
600
|
};
|
|
545
601
|
closeClickScrim: {
|
|
546
602
|
type: PropType<boolean>;
|
|
547
603
|
};
|
|
548
604
|
contentStyles: {
|
|
549
|
-
type: PropType<import(
|
|
605
|
+
type: PropType<import('vue').CSSProperties>;
|
|
550
606
|
default: () => void;
|
|
551
607
|
};
|
|
552
608
|
disabled: {
|
|
@@ -569,8 +625,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
569
625
|
type: PropType<string | number>;
|
|
570
626
|
default: number;
|
|
571
627
|
};
|
|
628
|
+
contained: BooleanConstructor;
|
|
572
629
|
menuClasses: {
|
|
573
|
-
type: PropType<string |
|
|
630
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
574
631
|
};
|
|
575
632
|
openOnClickBase: {
|
|
576
633
|
type: PropType<boolean>;
|
|
@@ -587,67 +644,74 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
587
644
|
}>> & {
|
|
588
645
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
589
646
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
590
|
-
|
|
647
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
648
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
591
649
|
disabled: boolean;
|
|
592
|
-
|
|
593
|
-
openOnHover: boolean;
|
|
594
|
-
openDelay: number;
|
|
650
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
595
651
|
closeDelay: number;
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
652
|
+
openDelay: number;
|
|
653
|
+
transition: string | (import('vue').TransitionProps & {
|
|
654
|
+
is?: import('vue').Component | undefined;
|
|
655
|
+
});
|
|
656
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
657
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
600
658
|
origin: string;
|
|
601
659
|
viewportMargin: string | number | unknown[];
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
660
|
+
zIndex: string | number;
|
|
661
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
662
|
+
contentStyles: import('vue').CSSProperties;
|
|
663
|
+
openOnHover: boolean;
|
|
664
|
+
contained: boolean;
|
|
605
665
|
preventClip: boolean;
|
|
606
666
|
openOnClickBase: boolean;
|
|
607
667
|
closeCondition: boolean | Function;
|
|
608
668
|
}> & Omit<{
|
|
609
669
|
readonly disabled: boolean;
|
|
610
|
-
readonly
|
|
611
|
-
readonly openOnHover: boolean;
|
|
612
|
-
readonly openDelay: number;
|
|
670
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
613
671
|
readonly closeDelay: number;
|
|
614
|
-
readonly
|
|
615
|
-
readonly
|
|
616
|
-
|
|
617
|
-
|
|
672
|
+
readonly openDelay: number;
|
|
673
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
674
|
+
is?: import('vue').Component | undefined;
|
|
675
|
+
});
|
|
676
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
677
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
618
678
|
readonly origin: string;
|
|
619
679
|
readonly viewportMargin: string | number | unknown[];
|
|
620
|
-
readonly
|
|
621
|
-
|
|
622
|
-
|
|
680
|
+
readonly zIndex: string | number;
|
|
681
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
682
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
683
|
+
readonly openOnHover: boolean;
|
|
684
|
+
readonly contained: boolean;
|
|
623
685
|
readonly preventClip: boolean;
|
|
624
686
|
readonly openOnClickBase: boolean;
|
|
625
|
-
readonly
|
|
626
|
-
readonly
|
|
687
|
+
readonly base?: import('../layer/base').BaseType;
|
|
688
|
+
readonly modelValue?: boolean | undefined;
|
|
627
689
|
readonly width?: string | number | undefined;
|
|
628
690
|
readonly height?: string | number | undefined;
|
|
629
|
-
readonly
|
|
630
|
-
readonly classes?: string |
|
|
691
|
+
readonly theme?: string | undefined;
|
|
692
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
693
|
+
readonly minWidth?: string | number | undefined;
|
|
694
|
+
readonly offset?: string | number | number[] | undefined;
|
|
695
|
+
readonly minHeight?: string | number | undefined;
|
|
696
|
+
readonly maxWidth?: string | number | undefined;
|
|
697
|
+
readonly maxHeight?: string | number | undefined;
|
|
698
|
+
readonly closeClickContent?: boolean | undefined;
|
|
631
699
|
readonly scrim?: boolean | undefined;
|
|
632
700
|
readonly scrimOpacity?: number | undefined;
|
|
633
701
|
readonly eager?: boolean | undefined;
|
|
634
|
-
readonly contentClasses?: string |
|
|
702
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
635
703
|
readonly closeClickScrim?: boolean | undefined;
|
|
636
|
-
readonly offset?: string | number | string[] | undefined;
|
|
637
|
-
readonly minWidth?: string | number | undefined;
|
|
638
|
-
readonly maxWidth?: string | number | undefined;
|
|
639
|
-
readonly minHeight?: string | number | undefined;
|
|
640
|
-
readonly maxHeight?: string | number | undefined;
|
|
641
704
|
readonly preventCloseBubble?: boolean | undefined;
|
|
642
|
-
readonly menuClasses?: string |
|
|
705
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
643
706
|
readonly closeCondition?: boolean | Function | undefined;
|
|
644
707
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
645
708
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
646
|
-
|
|
709
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
710
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
647
711
|
transition: {
|
|
648
712
|
default: string;
|
|
649
|
-
type: PropType<string | (import(
|
|
650
|
-
is?: import(
|
|
713
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
714
|
+
is?: import('vue').Component | undefined;
|
|
651
715
|
})>;
|
|
652
716
|
};
|
|
653
717
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -657,19 +721,27 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
657
721
|
minHeight: PropType<string | number>;
|
|
658
722
|
height: PropType<string | number>;
|
|
659
723
|
maxHeight: PropType<string | number>;
|
|
724
|
+
scrollStrategy: Omit<{
|
|
725
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
726
|
+
default: string;
|
|
727
|
+
validator: (val: any) => boolean;
|
|
728
|
+
}, "default" | "type"> & {
|
|
729
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
730
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
731
|
+
};
|
|
660
732
|
coordinateStrategy: Omit<{
|
|
661
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
733
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
662
734
|
default: string;
|
|
663
|
-
}, "
|
|
664
|
-
type: PropType<
|
|
665
|
-
default:
|
|
735
|
+
}, "default" | "type"> & {
|
|
736
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
737
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
666
738
|
};
|
|
667
739
|
position: {
|
|
668
|
-
type: PropType<"default" | "top" | "
|
|
740
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
669
741
|
default: string;
|
|
670
742
|
};
|
|
671
743
|
align: {
|
|
672
|
-
type: PropType<"top" | "
|
|
744
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
673
745
|
default: string;
|
|
674
746
|
};
|
|
675
747
|
origin: {
|
|
@@ -677,13 +749,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
677
749
|
default: string;
|
|
678
750
|
};
|
|
679
751
|
offset: {
|
|
680
|
-
type: PropType<string | number |
|
|
752
|
+
type: PropType<string | number | number[]>;
|
|
681
753
|
};
|
|
682
754
|
viewportMargin: {
|
|
683
755
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
684
756
|
default: number;
|
|
685
757
|
};
|
|
686
|
-
|
|
758
|
+
closeClickContent: {
|
|
759
|
+
type: PropType<boolean>;
|
|
760
|
+
};
|
|
761
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
687
762
|
theme: PropType<string>;
|
|
688
763
|
modelValue: {
|
|
689
764
|
type: PropType<boolean>;
|
|
@@ -698,16 +773,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
698
773
|
type: PropType<boolean>;
|
|
699
774
|
};
|
|
700
775
|
classes: {
|
|
701
|
-
type: PropType<string |
|
|
776
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
702
777
|
};
|
|
703
778
|
contentClasses: {
|
|
704
|
-
type: PropType<string |
|
|
779
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
705
780
|
};
|
|
706
781
|
closeClickScrim: {
|
|
707
782
|
type: PropType<boolean>;
|
|
708
783
|
};
|
|
709
784
|
contentStyles: {
|
|
710
|
-
type: PropType<import(
|
|
785
|
+
type: PropType<import('vue').CSSProperties>;
|
|
711
786
|
default: () => void;
|
|
712
787
|
};
|
|
713
788
|
disabled: {
|
|
@@ -730,8 +805,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
730
805
|
type: PropType<string | number>;
|
|
731
806
|
default: number;
|
|
732
807
|
};
|
|
808
|
+
contained: BooleanConstructor;
|
|
733
809
|
menuClasses: {
|
|
734
|
-
type: PropType<string |
|
|
810
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
735
811
|
};
|
|
736
812
|
openOnClickBase: {
|
|
737
813
|
type: PropType<boolean>;
|
|
@@ -748,68 +824,75 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
748
824
|
}>> & {
|
|
749
825
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
750
826
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
751
|
-
|
|
827
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
828
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>>;
|
|
752
829
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
753
830
|
disabled: boolean;
|
|
754
|
-
|
|
755
|
-
openOnHover: boolean;
|
|
756
|
-
openDelay: number;
|
|
831
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
757
832
|
closeDelay: number;
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
833
|
+
openDelay: number;
|
|
834
|
+
transition: string | (import('vue').TransitionProps & {
|
|
835
|
+
is?: import('vue').Component | undefined;
|
|
836
|
+
});
|
|
837
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
838
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
762
839
|
origin: string;
|
|
763
840
|
viewportMargin: string | number | unknown[];
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
841
|
+
zIndex: string | number;
|
|
842
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
843
|
+
contentStyles: import('vue').CSSProperties;
|
|
844
|
+
openOnHover: boolean;
|
|
845
|
+
contained: boolean;
|
|
767
846
|
preventClip: boolean;
|
|
768
847
|
openOnClickBase: boolean;
|
|
769
848
|
closeCondition: boolean | Function;
|
|
770
849
|
}> & Omit<{
|
|
771
850
|
readonly disabled: boolean;
|
|
772
|
-
readonly
|
|
773
|
-
readonly openOnHover: boolean;
|
|
774
|
-
readonly openDelay: number;
|
|
851
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
775
852
|
readonly closeDelay: number;
|
|
776
|
-
readonly
|
|
777
|
-
readonly
|
|
778
|
-
|
|
779
|
-
|
|
853
|
+
readonly openDelay: number;
|
|
854
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
855
|
+
is?: import('vue').Component | undefined;
|
|
856
|
+
});
|
|
857
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
858
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
780
859
|
readonly origin: string;
|
|
781
860
|
readonly viewportMargin: string | number | unknown[];
|
|
782
|
-
readonly
|
|
783
|
-
|
|
784
|
-
|
|
861
|
+
readonly zIndex: string | number;
|
|
862
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
863
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
864
|
+
readonly openOnHover: boolean;
|
|
865
|
+
readonly contained: boolean;
|
|
785
866
|
readonly preventClip: boolean;
|
|
786
867
|
readonly openOnClickBase: boolean;
|
|
787
|
-
readonly
|
|
788
|
-
readonly
|
|
868
|
+
readonly base?: import('../layer/base').BaseType;
|
|
869
|
+
readonly modelValue?: boolean | undefined;
|
|
789
870
|
readonly width?: string | number | undefined;
|
|
790
871
|
readonly height?: string | number | undefined;
|
|
791
|
-
readonly
|
|
792
|
-
readonly classes?: string |
|
|
872
|
+
readonly theme?: string | undefined;
|
|
873
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
874
|
+
readonly minWidth?: string | number | undefined;
|
|
875
|
+
readonly offset?: string | number | number[] | undefined;
|
|
876
|
+
readonly minHeight?: string | number | undefined;
|
|
877
|
+
readonly maxWidth?: string | number | undefined;
|
|
878
|
+
readonly maxHeight?: string | number | undefined;
|
|
879
|
+
readonly closeClickContent?: boolean | undefined;
|
|
793
880
|
readonly scrim?: boolean | undefined;
|
|
794
881
|
readonly scrimOpacity?: number | undefined;
|
|
795
882
|
readonly eager?: boolean | undefined;
|
|
796
|
-
readonly contentClasses?: string |
|
|
883
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
797
884
|
readonly closeClickScrim?: boolean | undefined;
|
|
798
|
-
readonly offset?: string | number | string[] | undefined;
|
|
799
|
-
readonly minWidth?: string | number | undefined;
|
|
800
|
-
readonly maxWidth?: string | number | undefined;
|
|
801
|
-
readonly minHeight?: string | number | undefined;
|
|
802
|
-
readonly maxHeight?: string | number | undefined;
|
|
803
885
|
readonly preventCloseBubble?: boolean | undefined;
|
|
804
|
-
readonly menuClasses?: string |
|
|
886
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
805
887
|
readonly closeCondition?: boolean | Function | undefined;
|
|
806
888
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
807
889
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
808
|
-
|
|
890
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
891
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
809
892
|
transition: {
|
|
810
893
|
default: string;
|
|
811
|
-
type: PropType<string | (import(
|
|
812
|
-
is?: import(
|
|
894
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
895
|
+
is?: import('vue').Component | undefined;
|
|
813
896
|
})>;
|
|
814
897
|
};
|
|
815
898
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -819,19 +902,27 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
819
902
|
minHeight: PropType<string | number>;
|
|
820
903
|
height: PropType<string | number>;
|
|
821
904
|
maxHeight: PropType<string | number>;
|
|
905
|
+
scrollStrategy: Omit<{
|
|
906
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
907
|
+
default: string;
|
|
908
|
+
validator: (val: any) => boolean;
|
|
909
|
+
}, "default" | "type"> & {
|
|
910
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
911
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
912
|
+
};
|
|
822
913
|
coordinateStrategy: Omit<{
|
|
823
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
914
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
824
915
|
default: string;
|
|
825
|
-
}, "
|
|
826
|
-
type: PropType<
|
|
827
|
-
default:
|
|
916
|
+
}, "default" | "type"> & {
|
|
917
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
918
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
828
919
|
};
|
|
829
920
|
position: {
|
|
830
|
-
type: PropType<"default" | "top" | "
|
|
921
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
831
922
|
default: string;
|
|
832
923
|
};
|
|
833
924
|
align: {
|
|
834
|
-
type: PropType<"top" | "
|
|
925
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
835
926
|
default: string;
|
|
836
927
|
};
|
|
837
928
|
origin: {
|
|
@@ -839,13 +930,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
839
930
|
default: string;
|
|
840
931
|
};
|
|
841
932
|
offset: {
|
|
842
|
-
type: PropType<string | number |
|
|
933
|
+
type: PropType<string | number | number[]>;
|
|
843
934
|
};
|
|
844
935
|
viewportMargin: {
|
|
845
936
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
846
937
|
default: number;
|
|
847
938
|
};
|
|
848
|
-
|
|
939
|
+
closeClickContent: {
|
|
940
|
+
type: PropType<boolean>;
|
|
941
|
+
};
|
|
942
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
849
943
|
theme: PropType<string>;
|
|
850
944
|
modelValue: {
|
|
851
945
|
type: PropType<boolean>;
|
|
@@ -860,16 +954,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
860
954
|
type: PropType<boolean>;
|
|
861
955
|
};
|
|
862
956
|
classes: {
|
|
863
|
-
type: PropType<string |
|
|
957
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
864
958
|
};
|
|
865
959
|
contentClasses: {
|
|
866
|
-
type: PropType<string |
|
|
960
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
867
961
|
};
|
|
868
962
|
closeClickScrim: {
|
|
869
963
|
type: PropType<boolean>;
|
|
870
964
|
};
|
|
871
965
|
contentStyles: {
|
|
872
|
-
type: PropType<import(
|
|
966
|
+
type: PropType<import('vue').CSSProperties>;
|
|
873
967
|
default: () => void;
|
|
874
968
|
};
|
|
875
969
|
disabled: {
|
|
@@ -892,8 +986,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
892
986
|
type: PropType<string | number>;
|
|
893
987
|
default: number;
|
|
894
988
|
};
|
|
989
|
+
contained: BooleanConstructor;
|
|
895
990
|
menuClasses: {
|
|
896
|
-
type: PropType<string |
|
|
991
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
897
992
|
};
|
|
898
993
|
openOnClickBase: {
|
|
899
994
|
type: PropType<boolean>;
|
|
@@ -910,67 +1005,74 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
910
1005
|
}>> & {
|
|
911
1006
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
912
1007
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
913
|
-
|
|
1008
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1009
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : Defaults["menuProps"] | NonNullable<Partial<{
|
|
914
1010
|
disabled: boolean;
|
|
915
|
-
|
|
916
|
-
openOnHover: boolean;
|
|
917
|
-
openDelay: number;
|
|
1011
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
918
1012
|
closeDelay: number;
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
1013
|
+
openDelay: number;
|
|
1014
|
+
transition: string | (import('vue').TransitionProps & {
|
|
1015
|
+
is?: import('vue').Component | undefined;
|
|
1016
|
+
});
|
|
1017
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1018
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
923
1019
|
origin: string;
|
|
924
1020
|
viewportMargin: string | number | unknown[];
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
1021
|
+
zIndex: string | number;
|
|
1022
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1023
|
+
contentStyles: import('vue').CSSProperties;
|
|
1024
|
+
openOnHover: boolean;
|
|
1025
|
+
contained: boolean;
|
|
928
1026
|
preventClip: boolean;
|
|
929
1027
|
openOnClickBase: boolean;
|
|
930
1028
|
closeCondition: boolean | Function;
|
|
931
1029
|
}> & Omit<{
|
|
932
1030
|
readonly disabled: boolean;
|
|
933
|
-
readonly
|
|
934
|
-
readonly openOnHover: boolean;
|
|
935
|
-
readonly openDelay: number;
|
|
1031
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
936
1032
|
readonly closeDelay: number;
|
|
937
|
-
readonly
|
|
938
|
-
readonly
|
|
939
|
-
|
|
940
|
-
|
|
1033
|
+
readonly openDelay: number;
|
|
1034
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
1035
|
+
is?: import('vue').Component | undefined;
|
|
1036
|
+
});
|
|
1037
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1038
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
941
1039
|
readonly origin: string;
|
|
942
1040
|
readonly viewportMargin: string | number | unknown[];
|
|
943
|
-
readonly
|
|
944
|
-
|
|
945
|
-
|
|
1041
|
+
readonly zIndex: string | number;
|
|
1042
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1043
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
1044
|
+
readonly openOnHover: boolean;
|
|
1045
|
+
readonly contained: boolean;
|
|
946
1046
|
readonly preventClip: boolean;
|
|
947
1047
|
readonly openOnClickBase: boolean;
|
|
948
|
-
readonly
|
|
949
|
-
readonly
|
|
1048
|
+
readonly base?: import('../layer/base').BaseType;
|
|
1049
|
+
readonly modelValue?: boolean | undefined;
|
|
950
1050
|
readonly width?: string | number | undefined;
|
|
951
1051
|
readonly height?: string | number | undefined;
|
|
952
|
-
readonly
|
|
953
|
-
readonly classes?: string |
|
|
1052
|
+
readonly theme?: string | undefined;
|
|
1053
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
1054
|
+
readonly minWidth?: string | number | undefined;
|
|
1055
|
+
readonly offset?: string | number | number[] | undefined;
|
|
1056
|
+
readonly minHeight?: string | number | undefined;
|
|
1057
|
+
readonly maxWidth?: string | number | undefined;
|
|
1058
|
+
readonly maxHeight?: string | number | undefined;
|
|
1059
|
+
readonly closeClickContent?: boolean | undefined;
|
|
954
1060
|
readonly scrim?: boolean | undefined;
|
|
955
1061
|
readonly scrimOpacity?: number | undefined;
|
|
956
1062
|
readonly eager?: boolean | undefined;
|
|
957
|
-
readonly contentClasses?: string |
|
|
1063
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
958
1064
|
readonly closeClickScrim?: boolean | undefined;
|
|
959
|
-
readonly offset?: string | number | string[] | undefined;
|
|
960
|
-
readonly minWidth?: string | number | undefined;
|
|
961
|
-
readonly maxWidth?: string | number | undefined;
|
|
962
|
-
readonly minHeight?: string | number | undefined;
|
|
963
|
-
readonly maxHeight?: string | number | undefined;
|
|
964
1065
|
readonly preventCloseBubble?: boolean | undefined;
|
|
965
|
-
readonly menuClasses?: string |
|
|
1066
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
966
1067
|
readonly closeCondition?: boolean | Function | undefined;
|
|
967
1068
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
968
1069
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
969
|
-
|
|
1070
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1071
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
970
1072
|
transition: {
|
|
971
1073
|
default: string;
|
|
972
|
-
type: PropType<string | (import(
|
|
973
|
-
is?: import(
|
|
1074
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
1075
|
+
is?: import('vue').Component | undefined;
|
|
974
1076
|
})>;
|
|
975
1077
|
};
|
|
976
1078
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -980,19 +1082,27 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
980
1082
|
minHeight: PropType<string | number>;
|
|
981
1083
|
height: PropType<string | number>;
|
|
982
1084
|
maxHeight: PropType<string | number>;
|
|
1085
|
+
scrollStrategy: Omit<{
|
|
1086
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1087
|
+
default: string;
|
|
1088
|
+
validator: (val: any) => boolean;
|
|
1089
|
+
}, "default" | "type"> & {
|
|
1090
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
1091
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1092
|
+
};
|
|
983
1093
|
coordinateStrategy: Omit<{
|
|
984
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
1094
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
985
1095
|
default: string;
|
|
986
|
-
}, "
|
|
987
|
-
type: PropType<
|
|
988
|
-
default:
|
|
1096
|
+
}, "default" | "type"> & {
|
|
1097
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
1098
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
989
1099
|
};
|
|
990
1100
|
position: {
|
|
991
|
-
type: PropType<"default" | "top" | "
|
|
1101
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
992
1102
|
default: string;
|
|
993
1103
|
};
|
|
994
1104
|
align: {
|
|
995
|
-
type: PropType<"top" | "
|
|
1105
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
996
1106
|
default: string;
|
|
997
1107
|
};
|
|
998
1108
|
origin: {
|
|
@@ -1000,13 +1110,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1000
1110
|
default: string;
|
|
1001
1111
|
};
|
|
1002
1112
|
offset: {
|
|
1003
|
-
type: PropType<string | number |
|
|
1113
|
+
type: PropType<string | number | number[]>;
|
|
1004
1114
|
};
|
|
1005
1115
|
viewportMargin: {
|
|
1006
1116
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1007
1117
|
default: number;
|
|
1008
1118
|
};
|
|
1009
|
-
|
|
1119
|
+
closeClickContent: {
|
|
1120
|
+
type: PropType<boolean>;
|
|
1121
|
+
};
|
|
1122
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
1010
1123
|
theme: PropType<string>;
|
|
1011
1124
|
modelValue: {
|
|
1012
1125
|
type: PropType<boolean>;
|
|
@@ -1021,16 +1134,16 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1021
1134
|
type: PropType<boolean>;
|
|
1022
1135
|
};
|
|
1023
1136
|
classes: {
|
|
1024
|
-
type: PropType<string |
|
|
1137
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1025
1138
|
};
|
|
1026
1139
|
contentClasses: {
|
|
1027
|
-
type: PropType<string |
|
|
1140
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1028
1141
|
};
|
|
1029
1142
|
closeClickScrim: {
|
|
1030
1143
|
type: PropType<boolean>;
|
|
1031
1144
|
};
|
|
1032
1145
|
contentStyles: {
|
|
1033
|
-
type: PropType<import(
|
|
1146
|
+
type: PropType<import('vue').CSSProperties>;
|
|
1034
1147
|
default: () => void;
|
|
1035
1148
|
};
|
|
1036
1149
|
disabled: {
|
|
@@ -1053,8 +1166,9 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1053
1166
|
type: PropType<string | number>;
|
|
1054
1167
|
default: number;
|
|
1055
1168
|
};
|
|
1169
|
+
contained: BooleanConstructor;
|
|
1056
1170
|
menuClasses: {
|
|
1057
|
-
type: PropType<string |
|
|
1171
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1058
1172
|
};
|
|
1059
1173
|
openOnClickBase: {
|
|
1060
1174
|
type: PropType<boolean>;
|
|
@@ -1071,14 +1185,15 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
1071
1185
|
}>> & {
|
|
1072
1186
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1073
1187
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1074
|
-
|
|
1188
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1189
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
1075
1190
|
};
|
|
1076
1191
|
};
|
|
1077
1192
|
export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
1078
|
-
position?: unknown;
|
|
1079
1193
|
align?: unknown;
|
|
1080
|
-
origin?: unknown;
|
|
1081
1194
|
offset?: unknown;
|
|
1195
|
+
position?: unknown;
|
|
1196
|
+
origin?: unknown;
|
|
1082
1197
|
viewportMargin?: unknown;
|
|
1083
1198
|
extended?: unknown;
|
|
1084
1199
|
focused?: unknown;
|
|
@@ -1129,31 +1244,39 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1129
1244
|
openDelay?: unknown;
|
|
1130
1245
|
closeDelay?: unknown;
|
|
1131
1246
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
1132
|
-
|
|
1133
|
-
type: PropType<"
|
|
1247
|
+
align: unknown extends Defaults["align"] ? {
|
|
1248
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1134
1249
|
default: string;
|
|
1135
|
-
}
|
|
1136
|
-
type: PropType<
|
|
1137
|
-
default: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
1138
|
-
} : Omit<Omit<{
|
|
1139
|
-
type: PropType<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
1250
|
+
} : Omit<{
|
|
1251
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1140
1252
|
default: string;
|
|
1141
|
-
}, "
|
|
1142
|
-
type: PropType<
|
|
1143
|
-
default:
|
|
1144
|
-
}, "type" | "default"> & {
|
|
1145
|
-
type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start"> : NonNullable<NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">> | Defaults["position"]>;
|
|
1146
|
-
default: unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start"> : NonNullable<NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">> | Defaults["position"];
|
|
1253
|
+
}, "default" | "type"> & {
|
|
1254
|
+
type: PropType<unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"]>;
|
|
1255
|
+
default: unknown extends Defaults["align"] ? "top" | "bottom" | "start" | "end" | "center" : NonNullable<"top" | "bottom" | "start" | "end" | "center"> | Defaults["align"];
|
|
1147
1256
|
};
|
|
1148
|
-
|
|
1149
|
-
type: PropType<
|
|
1150
|
-
default: string;
|
|
1257
|
+
offset: unknown extends Defaults["offset"] ? {
|
|
1258
|
+
type: PropType<string | number | number[]>;
|
|
1151
1259
|
} : Omit<{
|
|
1152
|
-
type: PropType<
|
|
1260
|
+
type: PropType<string | number | number[]>;
|
|
1261
|
+
}, "default" | "type"> & {
|
|
1262
|
+
type: PropType<unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"]>;
|
|
1263
|
+
default: unknown extends Defaults["offset"] ? string | number | number[] : NonNullable<string | number | number[]> | Defaults["offset"];
|
|
1264
|
+
};
|
|
1265
|
+
position: unknown extends Defaults["position"] ? Omit<{
|
|
1266
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1267
|
+
default: string;
|
|
1268
|
+
}, "default" | "type"> & {
|
|
1269
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
1270
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1271
|
+
} : Omit<Omit<{
|
|
1272
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1153
1273
|
default: string;
|
|
1154
|
-
}, "
|
|
1155
|
-
type: PropType<
|
|
1156
|
-
default:
|
|
1274
|
+
}, "default" | "type"> & {
|
|
1275
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
1276
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1277
|
+
}, "default" | "type"> & {
|
|
1278
|
+
type: PropType<unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">> | Defaults["position"]>;
|
|
1279
|
+
default: unknown extends Defaults["position"] ? NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right"> : NonNullable<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">> | Defaults["position"];
|
|
1157
1280
|
};
|
|
1158
1281
|
origin: unknown extends Defaults["origin"] ? {
|
|
1159
1282
|
type: StringConstructor;
|
|
@@ -1161,25 +1284,17 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1161
1284
|
} : Omit<{
|
|
1162
1285
|
type: StringConstructor;
|
|
1163
1286
|
default: string;
|
|
1164
|
-
}, "
|
|
1287
|
+
}, "default" | "type"> & {
|
|
1165
1288
|
type: PropType<unknown extends Defaults["origin"] ? string : string | Defaults["origin"]>;
|
|
1166
1289
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
1167
1290
|
};
|
|
1168
|
-
offset: unknown extends Defaults["offset"] ? {
|
|
1169
|
-
type: PropType<string | number | string[]>;
|
|
1170
|
-
} : Omit<{
|
|
1171
|
-
type: PropType<string | number | string[]>;
|
|
1172
|
-
}, "type" | "default"> & {
|
|
1173
|
-
type: PropType<unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"]>;
|
|
1174
|
-
default: unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"];
|
|
1175
|
-
};
|
|
1176
1291
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
1177
1292
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1178
1293
|
default: number;
|
|
1179
1294
|
} : Omit<{
|
|
1180
1295
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1181
1296
|
default: number;
|
|
1182
|
-
}, "
|
|
1297
|
+
}, "default" | "type"> & {
|
|
1183
1298
|
type: PropType<unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"]>;
|
|
1184
1299
|
default: unknown extends Defaults["viewportMargin"] ? string | number | unknown[] : NonNullable<string | number | unknown[]> | Defaults["viewportMargin"];
|
|
1185
1300
|
};
|
|
@@ -1204,14 +1319,14 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1204
1319
|
default: unknown extends Defaults["disabled"] ? boolean : boolean | Defaults["disabled"];
|
|
1205
1320
|
};
|
|
1206
1321
|
status: unknown extends Defaults["status"] ? {
|
|
1207
|
-
type: PropType<"error" | "
|
|
1322
|
+
type: PropType<"error" | "warning" | "success" | undefined>;
|
|
1208
1323
|
validator(value: string): boolean;
|
|
1209
1324
|
} : Omit<{
|
|
1210
|
-
type: PropType<"error" | "
|
|
1325
|
+
type: PropType<"error" | "warning" | "success" | undefined>;
|
|
1211
1326
|
validator(value: string): boolean;
|
|
1212
|
-
}, "
|
|
1213
|
-
type: PropType<unknown extends Defaults["status"] ? "error" | "
|
|
1214
|
-
default: unknown extends Defaults["status"] ? "error" | "
|
|
1327
|
+
}, "default" | "type"> & {
|
|
1328
|
+
type: PropType<unknown extends Defaults["status"] ? "error" | "warning" | "success" | undefined : NonNullable<"error" | "warning" | "success" | undefined> | Defaults["status"]>;
|
|
1329
|
+
default: unknown extends Defaults["status"] ? "error" | "warning" | "success" | undefined : NonNullable<"error" | "warning" | "success" | undefined> | Defaults["status"];
|
|
1215
1330
|
};
|
|
1216
1331
|
helperText: unknown extends Defaults["helperText"] ? StringConstructor : {
|
|
1217
1332
|
type: PropType<unknown extends Defaults["helperText"] ? string : string | Defaults["helperText"]>;
|
|
@@ -1225,7 +1340,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1225
1340
|
type: PropType<string>;
|
|
1226
1341
|
} : Omit<{
|
|
1227
1342
|
type: PropType<string>;
|
|
1228
|
-
}, "
|
|
1343
|
+
}, "default" | "type"> & {
|
|
1229
1344
|
type: PropType<unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"]>;
|
|
1230
1345
|
default: unknown extends Defaults["validateOn"] ? string : string | Defaults["validateOn"];
|
|
1231
1346
|
};
|
|
@@ -1239,7 +1354,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1239
1354
|
} : Omit<{
|
|
1240
1355
|
type: PropType<string | number>;
|
|
1241
1356
|
default: number;
|
|
1242
|
-
}, "
|
|
1357
|
+
}, "default" | "type"> & {
|
|
1243
1358
|
type: PropType<unknown extends Defaults["maxErrors"] ? string | number : NonNullable<string | number> | Defaults["maxErrors"]>;
|
|
1244
1359
|
default: unknown extends Defaults["maxErrors"] ? string | number : NonNullable<string | number> | Defaults["maxErrors"];
|
|
1245
1360
|
};
|
|
@@ -1251,7 +1366,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1251
1366
|
type: PropType<string | number>;
|
|
1252
1367
|
} : Omit<{
|
|
1253
1368
|
type: PropType<string | number>;
|
|
1254
|
-
}, "
|
|
1369
|
+
}, "default" | "type"> & {
|
|
1255
1370
|
type: PropType<unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"]>;
|
|
1256
1371
|
default: unknown extends Defaults["width"] ? string | number : NonNullable<string | number> | Defaults["width"];
|
|
1257
1372
|
};
|
|
@@ -1265,7 +1380,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1265
1380
|
} : Omit<{
|
|
1266
1381
|
type: PropType<string>;
|
|
1267
1382
|
default: string;
|
|
1268
|
-
}, "
|
|
1383
|
+
}, "default" | "type"> & {
|
|
1269
1384
|
type: PropType<unknown extends Defaults["displayTag"] ? string : string | Defaults["displayTag"]>;
|
|
1270
1385
|
default: unknown extends Defaults["displayTag"] ? string : string | Defaults["displayTag"];
|
|
1271
1386
|
};
|
|
@@ -1277,7 +1392,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1277
1392
|
type: PropType<any>;
|
|
1278
1393
|
} : Omit<{
|
|
1279
1394
|
type: PropType<any>;
|
|
1280
|
-
}, "
|
|
1395
|
+
}, "default" | "type"> & {
|
|
1281
1396
|
type: PropType<unknown extends Defaults["modelValue"] ? any : any>;
|
|
1282
1397
|
default: unknown extends Defaults["modelValue"] ? any : any;
|
|
1283
1398
|
};
|
|
@@ -1287,7 +1402,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1287
1402
|
} : Omit<{
|
|
1288
1403
|
type: PropType<boolean>;
|
|
1289
1404
|
default: boolean;
|
|
1290
|
-
}, "
|
|
1405
|
+
}, "default" | "type"> & {
|
|
1291
1406
|
type: PropType<unknown extends Defaults["autoSelect"] ? boolean : boolean | Defaults["autoSelect"]>;
|
|
1292
1407
|
default: unknown extends Defaults["autoSelect"] ? boolean : boolean | Defaults["autoSelect"];
|
|
1293
1408
|
};
|
|
@@ -1297,7 +1412,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1297
1412
|
} : Omit<{
|
|
1298
1413
|
type: PropType<boolean>;
|
|
1299
1414
|
default: boolean;
|
|
1300
|
-
}, "
|
|
1415
|
+
}, "default" | "type"> & {
|
|
1301
1416
|
type: PropType<unknown extends Defaults["floating"] ? boolean : boolean | Defaults["floating"]>;
|
|
1302
1417
|
default: unknown extends Defaults["floating"] ? boolean : boolean | Defaults["floating"];
|
|
1303
1418
|
};
|
|
@@ -1307,7 +1422,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1307
1422
|
} : Omit<{
|
|
1308
1423
|
type: PropType<boolean>;
|
|
1309
1424
|
default: () => false;
|
|
1310
|
-
}, "
|
|
1425
|
+
}, "default" | "type"> & {
|
|
1311
1426
|
type: PropType<unknown extends Defaults["floated"] ? boolean : boolean | Defaults["floated"]>;
|
|
1312
1427
|
default: unknown extends Defaults["floated"] ? boolean : boolean | Defaults["floated"];
|
|
1313
1428
|
};
|
|
@@ -1329,7 +1444,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1329
1444
|
} : Omit<{
|
|
1330
1445
|
type: PropType<string>;
|
|
1331
1446
|
default: string;
|
|
1332
|
-
}, "
|
|
1447
|
+
}, "default" | "type"> & {
|
|
1333
1448
|
type: PropType<unknown extends Defaults["variation"] ? string : string | Defaults["variation"]>;
|
|
1334
1449
|
default: unknown extends Defaults["variation"] ? string : string | Defaults["variation"];
|
|
1335
1450
|
};
|
|
@@ -1367,7 +1482,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1367
1482
|
} : Omit<{
|
|
1368
1483
|
type: PropType<string>;
|
|
1369
1484
|
default: string;
|
|
1370
|
-
}, "
|
|
1485
|
+
}, "default" | "type"> & {
|
|
1371
1486
|
type: PropType<unknown extends Defaults["tabindex"] ? string : string | Defaults["tabindex"]>;
|
|
1372
1487
|
default: unknown extends Defaults["tabindex"] ? string : string | Defaults["tabindex"];
|
|
1373
1488
|
};
|
|
@@ -1377,7 +1492,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1377
1492
|
} : Omit<{
|
|
1378
1493
|
type: PropType<string>;
|
|
1379
1494
|
default: string;
|
|
1380
|
-
}, "
|
|
1495
|
+
}, "default" | "type"> & {
|
|
1381
1496
|
type: PropType<unknown extends Defaults["type"] ? string : string | Defaults["type"]>;
|
|
1382
1497
|
default: unknown extends Defaults["type"] ? string : string | Defaults["type"];
|
|
1383
1498
|
};
|
|
@@ -1391,23 +1506,23 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1391
1506
|
} : Omit<{
|
|
1392
1507
|
type: PropType<any[]>;
|
|
1393
1508
|
default: () => never[];
|
|
1394
|
-
}, "
|
|
1509
|
+
}, "default" | "type"> & {
|
|
1395
1510
|
type: PropType<unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"]>;
|
|
1396
1511
|
default: unknown extends Defaults["items"] ? any[] : any[] | Defaults["items"];
|
|
1397
1512
|
};
|
|
1398
1513
|
itemKey: unknown extends Defaults["itemKey"] ? Omit<{
|
|
1399
1514
|
type: PropType<string>;
|
|
1400
1515
|
default: string;
|
|
1401
|
-
}, "
|
|
1516
|
+
}, "default" | "type"> & {
|
|
1402
1517
|
type: PropType<string>;
|
|
1403
1518
|
default: string;
|
|
1404
1519
|
} : Omit<Omit<{
|
|
1405
1520
|
type: PropType<string>;
|
|
1406
1521
|
default: string;
|
|
1407
|
-
}, "
|
|
1522
|
+
}, "default" | "type"> & {
|
|
1408
1523
|
type: PropType<string>;
|
|
1409
1524
|
default: string;
|
|
1410
|
-
}, "
|
|
1525
|
+
}, "default" | "type"> & {
|
|
1411
1526
|
type: PropType<unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"]>;
|
|
1412
1527
|
default: unknown extends Defaults["itemKey"] ? string : string | Defaults["itemKey"];
|
|
1413
1528
|
};
|
|
@@ -1417,23 +1532,23 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1417
1532
|
} : Omit<{
|
|
1418
1533
|
type: PropType<string>;
|
|
1419
1534
|
default: string;
|
|
1420
|
-
}, "
|
|
1535
|
+
}, "default" | "type"> & {
|
|
1421
1536
|
type: PropType<unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"]>;
|
|
1422
1537
|
default: unknown extends Defaults["itemText"] ? string : string | Defaults["itemText"];
|
|
1423
1538
|
};
|
|
1424
1539
|
itemChildren: unknown extends Defaults["itemChildren"] ? Omit<{
|
|
1425
1540
|
type: PropType<string | boolean>;
|
|
1426
1541
|
default: string;
|
|
1427
|
-
}, "
|
|
1542
|
+
}, "default" | "type"> & {
|
|
1428
1543
|
type: PropType<NonNullable<string | boolean>>;
|
|
1429
1544
|
default: NonNullable<string | boolean>;
|
|
1430
1545
|
} : Omit<Omit<{
|
|
1431
1546
|
type: PropType<string | boolean>;
|
|
1432
1547
|
default: string;
|
|
1433
|
-
}, "
|
|
1548
|
+
}, "default" | "type"> & {
|
|
1434
1549
|
type: PropType<NonNullable<string | boolean>>;
|
|
1435
1550
|
default: NonNullable<string | boolean>;
|
|
1436
|
-
}, "
|
|
1551
|
+
}, "default" | "type"> & {
|
|
1437
1552
|
type: PropType<unknown extends Defaults["itemChildren"] ? NonNullable<string | boolean> : NonNullable<NonNullable<string | boolean>> | Defaults["itemChildren"]>;
|
|
1438
1553
|
default: unknown extends Defaults["itemChildren"] ? NonNullable<string | boolean> : NonNullable<NonNullable<string | boolean>> | Defaults["itemChildren"];
|
|
1439
1554
|
};
|
|
@@ -1455,7 +1570,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1455
1570
|
} : Omit<{
|
|
1456
1571
|
type: PropType<SelectEquals>;
|
|
1457
1572
|
default: typeof deepEqual;
|
|
1458
|
-
}, "
|
|
1573
|
+
}, "default" | "type"> & {
|
|
1459
1574
|
type: PropType<unknown extends Defaults["valueEquals"] ? SelectEquals : SelectEquals | Defaults["valueEquals"]>;
|
|
1460
1575
|
default: unknown extends Defaults["valueEquals"] ? SelectEquals : SelectEquals | Defaults["valueEquals"];
|
|
1461
1576
|
};
|
|
@@ -1466,65 +1581,71 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1466
1581
|
menuProps: unknown extends Defaults["menuProps"] ? {
|
|
1467
1582
|
type: PropType<Partial<{
|
|
1468
1583
|
disabled: boolean;
|
|
1469
|
-
|
|
1470
|
-
openOnHover: boolean;
|
|
1471
|
-
openDelay: number;
|
|
1584
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1472
1585
|
closeDelay: number;
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1586
|
+
openDelay: number;
|
|
1587
|
+
transition: string | (import('vue').TransitionProps & {
|
|
1588
|
+
is?: import('vue').Component | undefined;
|
|
1589
|
+
});
|
|
1590
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1591
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1477
1592
|
origin: string;
|
|
1478
1593
|
viewportMargin: string | number | unknown[];
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1594
|
+
zIndex: string | number;
|
|
1595
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1596
|
+
contentStyles: import('vue').CSSProperties;
|
|
1597
|
+
openOnHover: boolean;
|
|
1598
|
+
contained: boolean;
|
|
1482
1599
|
preventClip: boolean;
|
|
1483
1600
|
openOnClickBase: boolean;
|
|
1484
1601
|
closeCondition: boolean | Function;
|
|
1485
1602
|
}> & Omit<{
|
|
1486
1603
|
readonly disabled: boolean;
|
|
1487
|
-
readonly
|
|
1488
|
-
readonly openOnHover: boolean;
|
|
1489
|
-
readonly openDelay: number;
|
|
1604
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1490
1605
|
readonly closeDelay: number;
|
|
1491
|
-
readonly
|
|
1492
|
-
readonly
|
|
1493
|
-
|
|
1494
|
-
|
|
1606
|
+
readonly openDelay: number;
|
|
1607
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
1608
|
+
is?: import('vue').Component | undefined;
|
|
1609
|
+
});
|
|
1610
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1611
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1495
1612
|
readonly origin: string;
|
|
1496
1613
|
readonly viewportMargin: string | number | unknown[];
|
|
1497
|
-
readonly
|
|
1498
|
-
|
|
1499
|
-
|
|
1614
|
+
readonly zIndex: string | number;
|
|
1615
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1616
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
1617
|
+
readonly openOnHover: boolean;
|
|
1618
|
+
readonly contained: boolean;
|
|
1500
1619
|
readonly preventClip: boolean;
|
|
1501
1620
|
readonly openOnClickBase: boolean;
|
|
1502
|
-
readonly
|
|
1503
|
-
readonly
|
|
1621
|
+
readonly base?: import('../layer/base').BaseType;
|
|
1622
|
+
readonly modelValue?: boolean | undefined;
|
|
1504
1623
|
readonly width?: string | number | undefined;
|
|
1505
1624
|
readonly height?: string | number | undefined;
|
|
1506
|
-
readonly
|
|
1507
|
-
readonly classes?: string |
|
|
1625
|
+
readonly theme?: string | undefined;
|
|
1626
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
1627
|
+
readonly minWidth?: string | number | undefined;
|
|
1628
|
+
readonly offset?: string | number | number[] | undefined;
|
|
1629
|
+
readonly minHeight?: string | number | undefined;
|
|
1630
|
+
readonly maxWidth?: string | number | undefined;
|
|
1631
|
+
readonly maxHeight?: string | number | undefined;
|
|
1632
|
+
readonly closeClickContent?: boolean | undefined;
|
|
1508
1633
|
readonly scrim?: boolean | undefined;
|
|
1509
1634
|
readonly scrimOpacity?: number | undefined;
|
|
1510
1635
|
readonly eager?: boolean | undefined;
|
|
1511
|
-
readonly contentClasses?: string |
|
|
1636
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
1512
1637
|
readonly closeClickScrim?: boolean | undefined;
|
|
1513
|
-
readonly offset?: string | number | string[] | undefined;
|
|
1514
|
-
readonly minWidth?: string | number | undefined;
|
|
1515
|
-
readonly maxWidth?: string | number | undefined;
|
|
1516
|
-
readonly minHeight?: string | number | undefined;
|
|
1517
|
-
readonly maxHeight?: string | number | undefined;
|
|
1518
1638
|
readonly preventCloseBubble?: boolean | undefined;
|
|
1519
|
-
readonly menuClasses?: string |
|
|
1639
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
1520
1640
|
readonly closeCondition?: boolean | Function | undefined;
|
|
1521
1641
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1522
1642
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1523
|
-
|
|
1643
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1644
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
1524
1645
|
transition: {
|
|
1525
1646
|
default: string;
|
|
1526
|
-
type: PropType<string | (import(
|
|
1527
|
-
is?: import(
|
|
1647
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
1648
|
+
is?: import('vue').Component | undefined;
|
|
1528
1649
|
})>;
|
|
1529
1650
|
};
|
|
1530
1651
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -1534,19 +1655,27 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1534
1655
|
minHeight: PropType<string | number>;
|
|
1535
1656
|
height: PropType<string | number>;
|
|
1536
1657
|
maxHeight: PropType<string | number>;
|
|
1658
|
+
scrollStrategy: Omit<{
|
|
1659
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1660
|
+
default: string;
|
|
1661
|
+
validator: (val: any) => boolean;
|
|
1662
|
+
}, "default" | "type"> & {
|
|
1663
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
1664
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1665
|
+
};
|
|
1537
1666
|
coordinateStrategy: Omit<{
|
|
1538
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
1667
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1539
1668
|
default: string;
|
|
1540
|
-
}, "
|
|
1541
|
-
type: PropType<
|
|
1542
|
-
default:
|
|
1669
|
+
}, "default" | "type"> & {
|
|
1670
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
1671
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1543
1672
|
};
|
|
1544
1673
|
position: {
|
|
1545
|
-
type: PropType<"default" | "top" | "
|
|
1674
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1546
1675
|
default: string;
|
|
1547
1676
|
};
|
|
1548
1677
|
align: {
|
|
1549
|
-
type: PropType<"top" | "
|
|
1678
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1550
1679
|
default: string;
|
|
1551
1680
|
};
|
|
1552
1681
|
origin: {
|
|
@@ -1554,13 +1683,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1554
1683
|
default: string;
|
|
1555
1684
|
};
|
|
1556
1685
|
offset: {
|
|
1557
|
-
type: PropType<string | number |
|
|
1686
|
+
type: PropType<string | number | number[]>;
|
|
1558
1687
|
};
|
|
1559
1688
|
viewportMargin: {
|
|
1560
1689
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1561
1690
|
default: number;
|
|
1562
1691
|
};
|
|
1563
|
-
|
|
1692
|
+
closeClickContent: {
|
|
1693
|
+
type: PropType<boolean>;
|
|
1694
|
+
};
|
|
1695
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
1564
1696
|
theme: PropType<string>;
|
|
1565
1697
|
modelValue: {
|
|
1566
1698
|
type: PropType<boolean>;
|
|
@@ -1575,16 +1707,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1575
1707
|
type: PropType<boolean>;
|
|
1576
1708
|
};
|
|
1577
1709
|
classes: {
|
|
1578
|
-
type: PropType<string |
|
|
1710
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1579
1711
|
};
|
|
1580
1712
|
contentClasses: {
|
|
1581
|
-
type: PropType<string |
|
|
1713
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1582
1714
|
};
|
|
1583
1715
|
closeClickScrim: {
|
|
1584
1716
|
type: PropType<boolean>;
|
|
1585
1717
|
};
|
|
1586
1718
|
contentStyles: {
|
|
1587
|
-
type: PropType<import(
|
|
1719
|
+
type: PropType<import('vue').CSSProperties>;
|
|
1588
1720
|
default: () => void;
|
|
1589
1721
|
};
|
|
1590
1722
|
disabled: {
|
|
@@ -1607,8 +1739,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1607
1739
|
type: PropType<string | number>;
|
|
1608
1740
|
default: number;
|
|
1609
1741
|
};
|
|
1742
|
+
contained: BooleanConstructor;
|
|
1610
1743
|
menuClasses: {
|
|
1611
|
-
type: PropType<string |
|
|
1744
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1612
1745
|
};
|
|
1613
1746
|
openOnClickBase: {
|
|
1614
1747
|
type: PropType<boolean>;
|
|
@@ -1625,69 +1758,76 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1625
1758
|
}>> & {
|
|
1626
1759
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1627
1760
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1628
|
-
|
|
1761
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1762
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
1629
1763
|
} : Omit<{
|
|
1630
1764
|
type: PropType<Partial<{
|
|
1631
1765
|
disabled: boolean;
|
|
1632
|
-
|
|
1633
|
-
openOnHover: boolean;
|
|
1634
|
-
openDelay: number;
|
|
1766
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1635
1767
|
closeDelay: number;
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1768
|
+
openDelay: number;
|
|
1769
|
+
transition: string | (import('vue').TransitionProps & {
|
|
1770
|
+
is?: import('vue').Component | undefined;
|
|
1771
|
+
});
|
|
1772
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1773
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1640
1774
|
origin: string;
|
|
1641
1775
|
viewportMargin: string | number | unknown[];
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1776
|
+
zIndex: string | number;
|
|
1777
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1778
|
+
contentStyles: import('vue').CSSProperties;
|
|
1779
|
+
openOnHover: boolean;
|
|
1780
|
+
contained: boolean;
|
|
1645
1781
|
preventClip: boolean;
|
|
1646
1782
|
openOnClickBase: boolean;
|
|
1647
1783
|
closeCondition: boolean | Function;
|
|
1648
1784
|
}> & Omit<{
|
|
1649
1785
|
readonly disabled: boolean;
|
|
1650
|
-
readonly
|
|
1651
|
-
readonly openOnHover: boolean;
|
|
1652
|
-
readonly openDelay: number;
|
|
1786
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1653
1787
|
readonly closeDelay: number;
|
|
1654
|
-
readonly
|
|
1655
|
-
readonly
|
|
1656
|
-
|
|
1657
|
-
|
|
1788
|
+
readonly openDelay: number;
|
|
1789
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
1790
|
+
is?: import('vue').Component | undefined;
|
|
1791
|
+
});
|
|
1792
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1793
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1658
1794
|
readonly origin: string;
|
|
1659
1795
|
readonly viewportMargin: string | number | unknown[];
|
|
1660
|
-
readonly
|
|
1661
|
-
|
|
1662
|
-
|
|
1796
|
+
readonly zIndex: string | number;
|
|
1797
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1798
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
1799
|
+
readonly openOnHover: boolean;
|
|
1800
|
+
readonly contained: boolean;
|
|
1663
1801
|
readonly preventClip: boolean;
|
|
1664
1802
|
readonly openOnClickBase: boolean;
|
|
1665
|
-
readonly
|
|
1666
|
-
readonly
|
|
1803
|
+
readonly base?: import('../layer/base').BaseType;
|
|
1804
|
+
readonly modelValue?: boolean | undefined;
|
|
1667
1805
|
readonly width?: string | number | undefined;
|
|
1668
1806
|
readonly height?: string | number | undefined;
|
|
1669
|
-
readonly
|
|
1670
|
-
readonly classes?: string |
|
|
1807
|
+
readonly theme?: string | undefined;
|
|
1808
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
1809
|
+
readonly minWidth?: string | number | undefined;
|
|
1810
|
+
readonly offset?: string | number | number[] | undefined;
|
|
1811
|
+
readonly minHeight?: string | number | undefined;
|
|
1812
|
+
readonly maxWidth?: string | number | undefined;
|
|
1813
|
+
readonly maxHeight?: string | number | undefined;
|
|
1814
|
+
readonly closeClickContent?: boolean | undefined;
|
|
1671
1815
|
readonly scrim?: boolean | undefined;
|
|
1672
1816
|
readonly scrimOpacity?: number | undefined;
|
|
1673
1817
|
readonly eager?: boolean | undefined;
|
|
1674
|
-
readonly contentClasses?: string |
|
|
1818
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
1675
1819
|
readonly closeClickScrim?: boolean | undefined;
|
|
1676
|
-
readonly offset?: string | number | string[] | undefined;
|
|
1677
|
-
readonly minWidth?: string | number | undefined;
|
|
1678
|
-
readonly maxWidth?: string | number | undefined;
|
|
1679
|
-
readonly minHeight?: string | number | undefined;
|
|
1680
|
-
readonly maxHeight?: string | number | undefined;
|
|
1681
1820
|
readonly preventCloseBubble?: boolean | undefined;
|
|
1682
|
-
readonly menuClasses?: string |
|
|
1821
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
1683
1822
|
readonly closeCondition?: boolean | Function | undefined;
|
|
1684
1823
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1685
1824
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1686
|
-
|
|
1825
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1826
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
1687
1827
|
transition: {
|
|
1688
1828
|
default: string;
|
|
1689
|
-
type: PropType<string | (import(
|
|
1690
|
-
is?: import(
|
|
1829
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
1830
|
+
is?: import('vue').Component | undefined;
|
|
1691
1831
|
})>;
|
|
1692
1832
|
};
|
|
1693
1833
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -1697,19 +1837,27 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1697
1837
|
minHeight: PropType<string | number>;
|
|
1698
1838
|
height: PropType<string | number>;
|
|
1699
1839
|
maxHeight: PropType<string | number>;
|
|
1840
|
+
scrollStrategy: Omit<{
|
|
1841
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1842
|
+
default: string;
|
|
1843
|
+
validator: (val: any) => boolean;
|
|
1844
|
+
}, "default" | "type"> & {
|
|
1845
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
1846
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1847
|
+
};
|
|
1700
1848
|
coordinateStrategy: Omit<{
|
|
1701
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
1849
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1702
1850
|
default: string;
|
|
1703
|
-
}, "
|
|
1704
|
-
type: PropType<
|
|
1705
|
-
default:
|
|
1851
|
+
}, "default" | "type"> & {
|
|
1852
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
1853
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1706
1854
|
};
|
|
1707
1855
|
position: {
|
|
1708
|
-
type: PropType<"default" | "top" | "
|
|
1856
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1709
1857
|
default: string;
|
|
1710
1858
|
};
|
|
1711
1859
|
align: {
|
|
1712
|
-
type: PropType<"top" | "
|
|
1860
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1713
1861
|
default: string;
|
|
1714
1862
|
};
|
|
1715
1863
|
origin: {
|
|
@@ -1717,13 +1865,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1717
1865
|
default: string;
|
|
1718
1866
|
};
|
|
1719
1867
|
offset: {
|
|
1720
|
-
type: PropType<string | number |
|
|
1868
|
+
type: PropType<string | number | number[]>;
|
|
1721
1869
|
};
|
|
1722
1870
|
viewportMargin: {
|
|
1723
1871
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1724
1872
|
default: number;
|
|
1725
1873
|
};
|
|
1726
|
-
|
|
1874
|
+
closeClickContent: {
|
|
1875
|
+
type: PropType<boolean>;
|
|
1876
|
+
};
|
|
1877
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
1727
1878
|
theme: PropType<string>;
|
|
1728
1879
|
modelValue: {
|
|
1729
1880
|
type: PropType<boolean>;
|
|
@@ -1738,16 +1889,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1738
1889
|
type: PropType<boolean>;
|
|
1739
1890
|
};
|
|
1740
1891
|
classes: {
|
|
1741
|
-
type: PropType<string |
|
|
1892
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1742
1893
|
};
|
|
1743
1894
|
contentClasses: {
|
|
1744
|
-
type: PropType<string |
|
|
1895
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1745
1896
|
};
|
|
1746
1897
|
closeClickScrim: {
|
|
1747
1898
|
type: PropType<boolean>;
|
|
1748
1899
|
};
|
|
1749
1900
|
contentStyles: {
|
|
1750
|
-
type: PropType<import(
|
|
1901
|
+
type: PropType<import('vue').CSSProperties>;
|
|
1751
1902
|
default: () => void;
|
|
1752
1903
|
};
|
|
1753
1904
|
disabled: {
|
|
@@ -1770,8 +1921,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1770
1921
|
type: PropType<string | number>;
|
|
1771
1922
|
default: number;
|
|
1772
1923
|
};
|
|
1924
|
+
contained: BooleanConstructor;
|
|
1773
1925
|
menuClasses: {
|
|
1774
|
-
type: PropType<string |
|
|
1926
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1775
1927
|
};
|
|
1776
1928
|
openOnClickBase: {
|
|
1777
1929
|
type: PropType<boolean>;
|
|
@@ -1788,69 +1940,76 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1788
1940
|
}>> & {
|
|
1789
1941
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1790
1942
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1791
|
-
|
|
1792
|
-
|
|
1943
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
1944
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
1945
|
+
}, "default" | "type"> & {
|
|
1793
1946
|
type: PropType<unknown extends Defaults["menuProps"] ? Partial<{
|
|
1794
1947
|
disabled: boolean;
|
|
1795
|
-
|
|
1796
|
-
openOnHover: boolean;
|
|
1797
|
-
openDelay: number;
|
|
1948
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1798
1949
|
closeDelay: number;
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1950
|
+
openDelay: number;
|
|
1951
|
+
transition: string | (import('vue').TransitionProps & {
|
|
1952
|
+
is?: import('vue').Component | undefined;
|
|
1953
|
+
});
|
|
1954
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1955
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1803
1956
|
origin: string;
|
|
1804
1957
|
viewportMargin: string | number | unknown[];
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1958
|
+
zIndex: string | number;
|
|
1959
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1960
|
+
contentStyles: import('vue').CSSProperties;
|
|
1961
|
+
openOnHover: boolean;
|
|
1962
|
+
contained: boolean;
|
|
1808
1963
|
preventClip: boolean;
|
|
1809
1964
|
openOnClickBase: boolean;
|
|
1810
1965
|
closeCondition: boolean | Function;
|
|
1811
1966
|
}> & Omit<{
|
|
1812
1967
|
readonly disabled: boolean;
|
|
1813
|
-
readonly
|
|
1814
|
-
readonly openOnHover: boolean;
|
|
1815
|
-
readonly openDelay: number;
|
|
1968
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1816
1969
|
readonly closeDelay: number;
|
|
1817
|
-
readonly
|
|
1818
|
-
readonly
|
|
1819
|
-
|
|
1820
|
-
|
|
1970
|
+
readonly openDelay: number;
|
|
1971
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
1972
|
+
is?: import('vue').Component | undefined;
|
|
1973
|
+
});
|
|
1974
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1975
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1821
1976
|
readonly origin: string;
|
|
1822
1977
|
readonly viewportMargin: string | number | unknown[];
|
|
1823
|
-
readonly
|
|
1824
|
-
|
|
1825
|
-
|
|
1978
|
+
readonly zIndex: string | number;
|
|
1979
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1980
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
1981
|
+
readonly openOnHover: boolean;
|
|
1982
|
+
readonly contained: boolean;
|
|
1826
1983
|
readonly preventClip: boolean;
|
|
1827
1984
|
readonly openOnClickBase: boolean;
|
|
1828
|
-
readonly
|
|
1829
|
-
readonly
|
|
1985
|
+
readonly base?: import('../layer/base').BaseType;
|
|
1986
|
+
readonly modelValue?: boolean | undefined;
|
|
1830
1987
|
readonly width?: string | number | undefined;
|
|
1831
1988
|
readonly height?: string | number | undefined;
|
|
1832
|
-
readonly
|
|
1833
|
-
readonly classes?: string |
|
|
1989
|
+
readonly theme?: string | undefined;
|
|
1990
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
1991
|
+
readonly minWidth?: string | number | undefined;
|
|
1992
|
+
readonly offset?: string | number | number[] | undefined;
|
|
1993
|
+
readonly minHeight?: string | number | undefined;
|
|
1994
|
+
readonly maxWidth?: string | number | undefined;
|
|
1995
|
+
readonly maxHeight?: string | number | undefined;
|
|
1996
|
+
readonly closeClickContent?: boolean | undefined;
|
|
1834
1997
|
readonly scrim?: boolean | undefined;
|
|
1835
1998
|
readonly scrimOpacity?: number | undefined;
|
|
1836
1999
|
readonly eager?: boolean | undefined;
|
|
1837
|
-
readonly contentClasses?: string |
|
|
2000
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
1838
2001
|
readonly closeClickScrim?: boolean | undefined;
|
|
1839
|
-
readonly offset?: string | number | string[] | undefined;
|
|
1840
|
-
readonly minWidth?: string | number | undefined;
|
|
1841
|
-
readonly maxWidth?: string | number | undefined;
|
|
1842
|
-
readonly minHeight?: string | number | undefined;
|
|
1843
|
-
readonly maxHeight?: string | number | undefined;
|
|
1844
2002
|
readonly preventCloseBubble?: boolean | undefined;
|
|
1845
|
-
readonly menuClasses?: string |
|
|
2003
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
1846
2004
|
readonly closeCondition?: boolean | Function | undefined;
|
|
1847
2005
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1848
2006
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1849
|
-
|
|
2007
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2008
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
1850
2009
|
transition: {
|
|
1851
2010
|
default: string;
|
|
1852
|
-
type: PropType<string | (import(
|
|
1853
|
-
is?: import(
|
|
2011
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
2012
|
+
is?: import('vue').Component | undefined;
|
|
1854
2013
|
})>;
|
|
1855
2014
|
};
|
|
1856
2015
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -1860,19 +2019,27 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1860
2019
|
minHeight: PropType<string | number>;
|
|
1861
2020
|
height: PropType<string | number>;
|
|
1862
2021
|
maxHeight: PropType<string | number>;
|
|
2022
|
+
scrollStrategy: Omit<{
|
|
2023
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2024
|
+
default: string;
|
|
2025
|
+
validator: (val: any) => boolean;
|
|
2026
|
+
}, "default" | "type"> & {
|
|
2027
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
2028
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2029
|
+
};
|
|
1863
2030
|
coordinateStrategy: Omit<{
|
|
1864
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
2031
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1865
2032
|
default: string;
|
|
1866
|
-
}, "
|
|
1867
|
-
type: PropType<
|
|
1868
|
-
default:
|
|
2033
|
+
}, "default" | "type"> & {
|
|
2034
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
2035
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1869
2036
|
};
|
|
1870
2037
|
position: {
|
|
1871
|
-
type: PropType<"default" | "top" | "
|
|
2038
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1872
2039
|
default: string;
|
|
1873
2040
|
};
|
|
1874
2041
|
align: {
|
|
1875
|
-
type: PropType<"top" | "
|
|
2042
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1876
2043
|
default: string;
|
|
1877
2044
|
};
|
|
1878
2045
|
origin: {
|
|
@@ -1880,13 +2047,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1880
2047
|
default: string;
|
|
1881
2048
|
};
|
|
1882
2049
|
offset: {
|
|
1883
|
-
type: PropType<string | number |
|
|
2050
|
+
type: PropType<string | number | number[]>;
|
|
1884
2051
|
};
|
|
1885
2052
|
viewportMargin: {
|
|
1886
2053
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1887
2054
|
default: number;
|
|
1888
2055
|
};
|
|
1889
|
-
|
|
2056
|
+
closeClickContent: {
|
|
2057
|
+
type: PropType<boolean>;
|
|
2058
|
+
};
|
|
2059
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
1890
2060
|
theme: PropType<string>;
|
|
1891
2061
|
modelValue: {
|
|
1892
2062
|
type: PropType<boolean>;
|
|
@@ -1901,16 +2071,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1901
2071
|
type: PropType<boolean>;
|
|
1902
2072
|
};
|
|
1903
2073
|
classes: {
|
|
1904
|
-
type: PropType<string |
|
|
2074
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1905
2075
|
};
|
|
1906
2076
|
contentClasses: {
|
|
1907
|
-
type: PropType<string |
|
|
2077
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1908
2078
|
};
|
|
1909
2079
|
closeClickScrim: {
|
|
1910
2080
|
type: PropType<boolean>;
|
|
1911
2081
|
};
|
|
1912
2082
|
contentStyles: {
|
|
1913
|
-
type: PropType<import(
|
|
2083
|
+
type: PropType<import('vue').CSSProperties>;
|
|
1914
2084
|
default: () => void;
|
|
1915
2085
|
};
|
|
1916
2086
|
disabled: {
|
|
@@ -1933,8 +2103,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1933
2103
|
type: PropType<string | number>;
|
|
1934
2104
|
default: number;
|
|
1935
2105
|
};
|
|
2106
|
+
contained: BooleanConstructor;
|
|
1936
2107
|
menuClasses: {
|
|
1937
|
-
type: PropType<string |
|
|
2108
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1938
2109
|
};
|
|
1939
2110
|
openOnClickBase: {
|
|
1940
2111
|
type: PropType<boolean>;
|
|
@@ -1951,67 +2122,74 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1951
2122
|
}>> & {
|
|
1952
2123
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1953
2124
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
1954
|
-
|
|
2125
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2126
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
|
|
1955
2127
|
disabled: boolean;
|
|
1956
|
-
|
|
1957
|
-
openOnHover: boolean;
|
|
1958
|
-
openDelay: number;
|
|
2128
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
1959
2129
|
closeDelay: number;
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
2130
|
+
openDelay: number;
|
|
2131
|
+
transition: string | (import('vue').TransitionProps & {
|
|
2132
|
+
is?: import('vue').Component | undefined;
|
|
2133
|
+
});
|
|
2134
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2135
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1964
2136
|
origin: string;
|
|
1965
2137
|
viewportMargin: string | number | unknown[];
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
2138
|
+
zIndex: string | number;
|
|
2139
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2140
|
+
contentStyles: import('vue').CSSProperties;
|
|
2141
|
+
openOnHover: boolean;
|
|
2142
|
+
contained: boolean;
|
|
1969
2143
|
preventClip: boolean;
|
|
1970
2144
|
openOnClickBase: boolean;
|
|
1971
2145
|
closeCondition: boolean | Function;
|
|
1972
2146
|
}> & Omit<{
|
|
1973
2147
|
readonly disabled: boolean;
|
|
1974
|
-
readonly
|
|
1975
|
-
readonly openOnHover: boolean;
|
|
1976
|
-
readonly openDelay: number;
|
|
2148
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
1977
2149
|
readonly closeDelay: number;
|
|
1978
|
-
readonly
|
|
1979
|
-
readonly
|
|
1980
|
-
|
|
1981
|
-
|
|
2150
|
+
readonly openDelay: number;
|
|
2151
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
2152
|
+
is?: import('vue').Component | undefined;
|
|
2153
|
+
});
|
|
2154
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2155
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
1982
2156
|
readonly origin: string;
|
|
1983
2157
|
readonly viewportMargin: string | number | unknown[];
|
|
1984
|
-
readonly
|
|
1985
|
-
|
|
1986
|
-
|
|
2158
|
+
readonly zIndex: string | number;
|
|
2159
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2160
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
2161
|
+
readonly openOnHover: boolean;
|
|
2162
|
+
readonly contained: boolean;
|
|
1987
2163
|
readonly preventClip: boolean;
|
|
1988
2164
|
readonly openOnClickBase: boolean;
|
|
1989
|
-
readonly
|
|
1990
|
-
readonly
|
|
2165
|
+
readonly base?: import('../layer/base').BaseType;
|
|
2166
|
+
readonly modelValue?: boolean | undefined;
|
|
1991
2167
|
readonly width?: string | number | undefined;
|
|
1992
2168
|
readonly height?: string | number | undefined;
|
|
1993
|
-
readonly
|
|
1994
|
-
readonly classes?: string |
|
|
2169
|
+
readonly theme?: string | undefined;
|
|
2170
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
2171
|
+
readonly minWidth?: string | number | undefined;
|
|
2172
|
+
readonly offset?: string | number | number[] | undefined;
|
|
2173
|
+
readonly minHeight?: string | number | undefined;
|
|
2174
|
+
readonly maxWidth?: string | number | undefined;
|
|
2175
|
+
readonly maxHeight?: string | number | undefined;
|
|
2176
|
+
readonly closeClickContent?: boolean | undefined;
|
|
1995
2177
|
readonly scrim?: boolean | undefined;
|
|
1996
2178
|
readonly scrimOpacity?: number | undefined;
|
|
1997
2179
|
readonly eager?: boolean | undefined;
|
|
1998
|
-
readonly contentClasses?: string |
|
|
2180
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
1999
2181
|
readonly closeClickScrim?: boolean | undefined;
|
|
2000
|
-
readonly offset?: string | number | string[] | undefined;
|
|
2001
|
-
readonly minWidth?: string | number | undefined;
|
|
2002
|
-
readonly maxWidth?: string | number | undefined;
|
|
2003
|
-
readonly minHeight?: string | number | undefined;
|
|
2004
|
-
readonly maxHeight?: string | number | undefined;
|
|
2005
2182
|
readonly preventCloseBubble?: boolean | undefined;
|
|
2006
|
-
readonly menuClasses?: string |
|
|
2183
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
2007
2184
|
readonly closeCondition?: boolean | Function | undefined;
|
|
2008
2185
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2009
2186
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2010
|
-
|
|
2187
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2188
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2011
2189
|
transition: {
|
|
2012
2190
|
default: string;
|
|
2013
|
-
type: PropType<string | (import(
|
|
2014
|
-
is?: import(
|
|
2191
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
2192
|
+
is?: import('vue').Component | undefined;
|
|
2015
2193
|
})>;
|
|
2016
2194
|
};
|
|
2017
2195
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -2021,19 +2199,27 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2021
2199
|
minHeight: PropType<string | number>;
|
|
2022
2200
|
height: PropType<string | number>;
|
|
2023
2201
|
maxHeight: PropType<string | number>;
|
|
2202
|
+
scrollStrategy: Omit<{
|
|
2203
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2204
|
+
default: string;
|
|
2205
|
+
validator: (val: any) => boolean;
|
|
2206
|
+
}, "default" | "type"> & {
|
|
2207
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
2208
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2209
|
+
};
|
|
2024
2210
|
coordinateStrategy: Omit<{
|
|
2025
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
2211
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2026
2212
|
default: string;
|
|
2027
|
-
}, "
|
|
2028
|
-
type: PropType<
|
|
2029
|
-
default:
|
|
2213
|
+
}, "default" | "type"> & {
|
|
2214
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
2215
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2030
2216
|
};
|
|
2031
2217
|
position: {
|
|
2032
|
-
type: PropType<"default" | "top" | "
|
|
2218
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2033
2219
|
default: string;
|
|
2034
2220
|
};
|
|
2035
2221
|
align: {
|
|
2036
|
-
type: PropType<"top" | "
|
|
2222
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2037
2223
|
default: string;
|
|
2038
2224
|
};
|
|
2039
2225
|
origin: {
|
|
@@ -2041,13 +2227,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2041
2227
|
default: string;
|
|
2042
2228
|
};
|
|
2043
2229
|
offset: {
|
|
2044
|
-
type: PropType<string | number |
|
|
2230
|
+
type: PropType<string | number | number[]>;
|
|
2045
2231
|
};
|
|
2046
2232
|
viewportMargin: {
|
|
2047
2233
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2048
2234
|
default: number;
|
|
2049
2235
|
};
|
|
2050
|
-
|
|
2236
|
+
closeClickContent: {
|
|
2237
|
+
type: PropType<boolean>;
|
|
2238
|
+
};
|
|
2239
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2051
2240
|
theme: PropType<string>;
|
|
2052
2241
|
modelValue: {
|
|
2053
2242
|
type: PropType<boolean>;
|
|
@@ -2062,16 +2251,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2062
2251
|
type: PropType<boolean>;
|
|
2063
2252
|
};
|
|
2064
2253
|
classes: {
|
|
2065
|
-
type: PropType<string |
|
|
2254
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2066
2255
|
};
|
|
2067
2256
|
contentClasses: {
|
|
2068
|
-
type: PropType<string |
|
|
2257
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2069
2258
|
};
|
|
2070
2259
|
closeClickScrim: {
|
|
2071
2260
|
type: PropType<boolean>;
|
|
2072
2261
|
};
|
|
2073
2262
|
contentStyles: {
|
|
2074
|
-
type: PropType<import(
|
|
2263
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2075
2264
|
default: () => void;
|
|
2076
2265
|
};
|
|
2077
2266
|
disabled: {
|
|
@@ -2094,8 +2283,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2094
2283
|
type: PropType<string | number>;
|
|
2095
2284
|
default: number;
|
|
2096
2285
|
};
|
|
2286
|
+
contained: BooleanConstructor;
|
|
2097
2287
|
menuClasses: {
|
|
2098
|
-
type: PropType<string |
|
|
2288
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2099
2289
|
};
|
|
2100
2290
|
openOnClickBase: {
|
|
2101
2291
|
type: PropType<boolean>;
|
|
@@ -2112,68 +2302,75 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2112
2302
|
}>> & {
|
|
2113
2303
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2114
2304
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2115
|
-
|
|
2305
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2306
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"]>;
|
|
2116
2307
|
default: unknown extends Defaults["menuProps"] ? Partial<{
|
|
2117
2308
|
disabled: boolean;
|
|
2118
|
-
|
|
2119
|
-
openOnHover: boolean;
|
|
2120
|
-
openDelay: number;
|
|
2309
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2121
2310
|
closeDelay: number;
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2311
|
+
openDelay: number;
|
|
2312
|
+
transition: string | (import('vue').TransitionProps & {
|
|
2313
|
+
is?: import('vue').Component | undefined;
|
|
2314
|
+
});
|
|
2315
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2316
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2126
2317
|
origin: string;
|
|
2127
2318
|
viewportMargin: string | number | unknown[];
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2319
|
+
zIndex: string | number;
|
|
2320
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2321
|
+
contentStyles: import('vue').CSSProperties;
|
|
2322
|
+
openOnHover: boolean;
|
|
2323
|
+
contained: boolean;
|
|
2131
2324
|
preventClip: boolean;
|
|
2132
2325
|
openOnClickBase: boolean;
|
|
2133
2326
|
closeCondition: boolean | Function;
|
|
2134
2327
|
}> & Omit<{
|
|
2135
2328
|
readonly disabled: boolean;
|
|
2136
|
-
readonly
|
|
2137
|
-
readonly openOnHover: boolean;
|
|
2138
|
-
readonly openDelay: number;
|
|
2329
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2139
2330
|
readonly closeDelay: number;
|
|
2140
|
-
readonly
|
|
2141
|
-
readonly
|
|
2142
|
-
|
|
2143
|
-
|
|
2331
|
+
readonly openDelay: number;
|
|
2332
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
2333
|
+
is?: import('vue').Component | undefined;
|
|
2334
|
+
});
|
|
2335
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2336
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2144
2337
|
readonly origin: string;
|
|
2145
2338
|
readonly viewportMargin: string | number | unknown[];
|
|
2146
|
-
readonly
|
|
2147
|
-
|
|
2148
|
-
|
|
2339
|
+
readonly zIndex: string | number;
|
|
2340
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2341
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
2342
|
+
readonly openOnHover: boolean;
|
|
2343
|
+
readonly contained: boolean;
|
|
2149
2344
|
readonly preventClip: boolean;
|
|
2150
2345
|
readonly openOnClickBase: boolean;
|
|
2151
|
-
readonly
|
|
2152
|
-
readonly
|
|
2346
|
+
readonly base?: import('../layer/base').BaseType;
|
|
2347
|
+
readonly modelValue?: boolean | undefined;
|
|
2153
2348
|
readonly width?: string | number | undefined;
|
|
2154
2349
|
readonly height?: string | number | undefined;
|
|
2155
|
-
readonly
|
|
2156
|
-
readonly classes?: string |
|
|
2350
|
+
readonly theme?: string | undefined;
|
|
2351
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
2352
|
+
readonly minWidth?: string | number | undefined;
|
|
2353
|
+
readonly offset?: string | number | number[] | undefined;
|
|
2354
|
+
readonly minHeight?: string | number | undefined;
|
|
2355
|
+
readonly maxWidth?: string | number | undefined;
|
|
2356
|
+
readonly maxHeight?: string | number | undefined;
|
|
2357
|
+
readonly closeClickContent?: boolean | undefined;
|
|
2157
2358
|
readonly scrim?: boolean | undefined;
|
|
2158
2359
|
readonly scrimOpacity?: number | undefined;
|
|
2159
2360
|
readonly eager?: boolean | undefined;
|
|
2160
|
-
readonly contentClasses?: string |
|
|
2361
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
2161
2362
|
readonly closeClickScrim?: boolean | undefined;
|
|
2162
|
-
readonly offset?: string | number | string[] | undefined;
|
|
2163
|
-
readonly minWidth?: string | number | undefined;
|
|
2164
|
-
readonly maxWidth?: string | number | undefined;
|
|
2165
|
-
readonly minHeight?: string | number | undefined;
|
|
2166
|
-
readonly maxHeight?: string | number | undefined;
|
|
2167
2363
|
readonly preventCloseBubble?: boolean | undefined;
|
|
2168
|
-
readonly menuClasses?: string |
|
|
2364
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
2169
2365
|
readonly closeCondition?: boolean | Function | undefined;
|
|
2170
2366
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2171
2367
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2172
|
-
|
|
2368
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2369
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2173
2370
|
transition: {
|
|
2174
2371
|
default: string;
|
|
2175
|
-
type: PropType<string | (import(
|
|
2176
|
-
is?: import(
|
|
2372
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
2373
|
+
is?: import('vue').Component | undefined;
|
|
2177
2374
|
})>;
|
|
2178
2375
|
};
|
|
2179
2376
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -2183,19 +2380,27 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2183
2380
|
minHeight: PropType<string | number>;
|
|
2184
2381
|
height: PropType<string | number>;
|
|
2185
2382
|
maxHeight: PropType<string | number>;
|
|
2383
|
+
scrollStrategy: Omit<{
|
|
2384
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2385
|
+
default: string;
|
|
2386
|
+
validator: (val: any) => boolean;
|
|
2387
|
+
}, "default" | "type"> & {
|
|
2388
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
2389
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2390
|
+
};
|
|
2186
2391
|
coordinateStrategy: Omit<{
|
|
2187
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
2392
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2188
2393
|
default: string;
|
|
2189
|
-
}, "
|
|
2190
|
-
type: PropType<
|
|
2191
|
-
default:
|
|
2394
|
+
}, "default" | "type"> & {
|
|
2395
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
2396
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2192
2397
|
};
|
|
2193
2398
|
position: {
|
|
2194
|
-
type: PropType<"default" | "top" | "
|
|
2399
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2195
2400
|
default: string;
|
|
2196
2401
|
};
|
|
2197
2402
|
align: {
|
|
2198
|
-
type: PropType<"top" | "
|
|
2403
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2199
2404
|
default: string;
|
|
2200
2405
|
};
|
|
2201
2406
|
origin: {
|
|
@@ -2203,13 +2408,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2203
2408
|
default: string;
|
|
2204
2409
|
};
|
|
2205
2410
|
offset: {
|
|
2206
|
-
type: PropType<string | number |
|
|
2411
|
+
type: PropType<string | number | number[]>;
|
|
2207
2412
|
};
|
|
2208
2413
|
viewportMargin: {
|
|
2209
2414
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2210
2415
|
default: number;
|
|
2211
2416
|
};
|
|
2212
|
-
|
|
2417
|
+
closeClickContent: {
|
|
2418
|
+
type: PropType<boolean>;
|
|
2419
|
+
};
|
|
2420
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2213
2421
|
theme: PropType<string>;
|
|
2214
2422
|
modelValue: {
|
|
2215
2423
|
type: PropType<boolean>;
|
|
@@ -2224,16 +2432,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2224
2432
|
type: PropType<boolean>;
|
|
2225
2433
|
};
|
|
2226
2434
|
classes: {
|
|
2227
|
-
type: PropType<string |
|
|
2435
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2228
2436
|
};
|
|
2229
2437
|
contentClasses: {
|
|
2230
|
-
type: PropType<string |
|
|
2438
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2231
2439
|
};
|
|
2232
2440
|
closeClickScrim: {
|
|
2233
2441
|
type: PropType<boolean>;
|
|
2234
2442
|
};
|
|
2235
2443
|
contentStyles: {
|
|
2236
|
-
type: PropType<import(
|
|
2444
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2237
2445
|
default: () => void;
|
|
2238
2446
|
};
|
|
2239
2447
|
disabled: {
|
|
@@ -2256,8 +2464,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2256
2464
|
type: PropType<string | number>;
|
|
2257
2465
|
default: number;
|
|
2258
2466
|
};
|
|
2467
|
+
contained: BooleanConstructor;
|
|
2259
2468
|
menuClasses: {
|
|
2260
|
-
type: PropType<string |
|
|
2469
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2261
2470
|
};
|
|
2262
2471
|
openOnClickBase: {
|
|
2263
2472
|
type: PropType<boolean>;
|
|
@@ -2274,67 +2483,74 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2274
2483
|
}>> & {
|
|
2275
2484
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2276
2485
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2277
|
-
|
|
2486
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2487
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition"> : NonNullable<Partial<{
|
|
2278
2488
|
disabled: boolean;
|
|
2279
|
-
|
|
2280
|
-
openOnHover: boolean;
|
|
2281
|
-
openDelay: number;
|
|
2489
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2282
2490
|
closeDelay: number;
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2491
|
+
openDelay: number;
|
|
2492
|
+
transition: string | (import('vue').TransitionProps & {
|
|
2493
|
+
is?: import('vue').Component | undefined;
|
|
2494
|
+
});
|
|
2495
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2496
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2287
2497
|
origin: string;
|
|
2288
2498
|
viewportMargin: string | number | unknown[];
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2499
|
+
zIndex: string | number;
|
|
2500
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2501
|
+
contentStyles: import('vue').CSSProperties;
|
|
2502
|
+
openOnHover: boolean;
|
|
2503
|
+
contained: boolean;
|
|
2292
2504
|
preventClip: boolean;
|
|
2293
2505
|
openOnClickBase: boolean;
|
|
2294
2506
|
closeCondition: boolean | Function;
|
|
2295
2507
|
}> & Omit<{
|
|
2296
2508
|
readonly disabled: boolean;
|
|
2297
|
-
readonly
|
|
2298
|
-
readonly openOnHover: boolean;
|
|
2299
|
-
readonly openDelay: number;
|
|
2509
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2300
2510
|
readonly closeDelay: number;
|
|
2301
|
-
readonly
|
|
2302
|
-
readonly
|
|
2303
|
-
|
|
2304
|
-
|
|
2511
|
+
readonly openDelay: number;
|
|
2512
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
2513
|
+
is?: import('vue').Component | undefined;
|
|
2514
|
+
});
|
|
2515
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2516
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2305
2517
|
readonly origin: string;
|
|
2306
2518
|
readonly viewportMargin: string | number | unknown[];
|
|
2307
|
-
readonly
|
|
2308
|
-
|
|
2309
|
-
|
|
2519
|
+
readonly zIndex: string | number;
|
|
2520
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2521
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
2522
|
+
readonly openOnHover: boolean;
|
|
2523
|
+
readonly contained: boolean;
|
|
2310
2524
|
readonly preventClip: boolean;
|
|
2311
2525
|
readonly openOnClickBase: boolean;
|
|
2312
|
-
readonly
|
|
2313
|
-
readonly
|
|
2526
|
+
readonly base?: import('../layer/base').BaseType;
|
|
2527
|
+
readonly modelValue?: boolean | undefined;
|
|
2314
2528
|
readonly width?: string | number | undefined;
|
|
2315
2529
|
readonly height?: string | number | undefined;
|
|
2316
|
-
readonly
|
|
2317
|
-
readonly classes?: string |
|
|
2530
|
+
readonly theme?: string | undefined;
|
|
2531
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
2532
|
+
readonly minWidth?: string | number | undefined;
|
|
2533
|
+
readonly offset?: string | number | number[] | undefined;
|
|
2534
|
+
readonly minHeight?: string | number | undefined;
|
|
2535
|
+
readonly maxWidth?: string | number | undefined;
|
|
2536
|
+
readonly maxHeight?: string | number | undefined;
|
|
2537
|
+
readonly closeClickContent?: boolean | undefined;
|
|
2318
2538
|
readonly scrim?: boolean | undefined;
|
|
2319
2539
|
readonly scrimOpacity?: number | undefined;
|
|
2320
2540
|
readonly eager?: boolean | undefined;
|
|
2321
|
-
readonly contentClasses?: string |
|
|
2541
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
2322
2542
|
readonly closeClickScrim?: boolean | undefined;
|
|
2323
|
-
readonly offset?: string | number | string[] | undefined;
|
|
2324
|
-
readonly minWidth?: string | number | undefined;
|
|
2325
|
-
readonly maxWidth?: string | number | undefined;
|
|
2326
|
-
readonly minHeight?: string | number | undefined;
|
|
2327
|
-
readonly maxHeight?: string | number | undefined;
|
|
2328
2543
|
readonly preventCloseBubble?: boolean | undefined;
|
|
2329
|
-
readonly menuClasses?: string |
|
|
2544
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
2330
2545
|
readonly closeCondition?: boolean | Function | undefined;
|
|
2331
2546
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2332
2547
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2333
|
-
|
|
2548
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2549
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2334
2550
|
transition: {
|
|
2335
2551
|
default: string;
|
|
2336
|
-
type: PropType<string | (import(
|
|
2337
|
-
is?: import(
|
|
2552
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
2553
|
+
is?: import('vue').Component | undefined;
|
|
2338
2554
|
})>;
|
|
2339
2555
|
};
|
|
2340
2556
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -2344,19 +2560,27 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2344
2560
|
minHeight: PropType<string | number>;
|
|
2345
2561
|
height: PropType<string | number>;
|
|
2346
2562
|
maxHeight: PropType<string | number>;
|
|
2563
|
+
scrollStrategy: Omit<{
|
|
2564
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2565
|
+
default: string;
|
|
2566
|
+
validator: (val: any) => boolean;
|
|
2567
|
+
}, "default" | "type"> & {
|
|
2568
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
2569
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2570
|
+
};
|
|
2347
2571
|
coordinateStrategy: Omit<{
|
|
2348
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
2572
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2349
2573
|
default: string;
|
|
2350
|
-
}, "
|
|
2351
|
-
type: PropType<
|
|
2352
|
-
default:
|
|
2574
|
+
}, "default" | "type"> & {
|
|
2575
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
2576
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2353
2577
|
};
|
|
2354
2578
|
position: {
|
|
2355
|
-
type: PropType<"default" | "top" | "
|
|
2579
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2356
2580
|
default: string;
|
|
2357
2581
|
};
|
|
2358
2582
|
align: {
|
|
2359
|
-
type: PropType<"top" | "
|
|
2583
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2360
2584
|
default: string;
|
|
2361
2585
|
};
|
|
2362
2586
|
origin: {
|
|
@@ -2364,13 +2588,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2364
2588
|
default: string;
|
|
2365
2589
|
};
|
|
2366
2590
|
offset: {
|
|
2367
|
-
type: PropType<string | number |
|
|
2591
|
+
type: PropType<string | number | number[]>;
|
|
2368
2592
|
};
|
|
2369
2593
|
viewportMargin: {
|
|
2370
2594
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2371
2595
|
default: number;
|
|
2372
2596
|
};
|
|
2373
|
-
|
|
2597
|
+
closeClickContent: {
|
|
2598
|
+
type: PropType<boolean>;
|
|
2599
|
+
};
|
|
2600
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2374
2601
|
theme: PropType<string>;
|
|
2375
2602
|
modelValue: {
|
|
2376
2603
|
type: PropType<boolean>;
|
|
@@ -2385,16 +2612,16 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2385
2612
|
type: PropType<boolean>;
|
|
2386
2613
|
};
|
|
2387
2614
|
classes: {
|
|
2388
|
-
type: PropType<string |
|
|
2615
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2389
2616
|
};
|
|
2390
2617
|
contentClasses: {
|
|
2391
|
-
type: PropType<string |
|
|
2618
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2392
2619
|
};
|
|
2393
2620
|
closeClickScrim: {
|
|
2394
2621
|
type: PropType<boolean>;
|
|
2395
2622
|
};
|
|
2396
2623
|
contentStyles: {
|
|
2397
|
-
type: PropType<import(
|
|
2624
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2398
2625
|
default: () => void;
|
|
2399
2626
|
};
|
|
2400
2627
|
disabled: {
|
|
@@ -2417,8 +2644,9 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2417
2644
|
type: PropType<string | number>;
|
|
2418
2645
|
default: number;
|
|
2419
2646
|
};
|
|
2647
|
+
contained: BooleanConstructor;
|
|
2420
2648
|
menuClasses: {
|
|
2421
|
-
type: PropType<string |
|
|
2649
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2422
2650
|
};
|
|
2423
2651
|
openOnClickBase: {
|
|
2424
2652
|
type: PropType<boolean>;
|
|
@@ -2435,7 +2663,8 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2435
2663
|
}>> & {
|
|
2436
2664
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2437
2665
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2438
|
-
|
|
2666
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2667
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">> | Defaults["menuProps"];
|
|
2439
2668
|
};
|
|
2440
2669
|
maxHeight: unknown extends Defaults["maxHeight"] ? {
|
|
2441
2670
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -2443,7 +2672,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2443
2672
|
} : Omit<{
|
|
2444
2673
|
type: (StringConstructor | NumberConstructor)[];
|
|
2445
2674
|
default: number;
|
|
2446
|
-
}, "
|
|
2675
|
+
}, "default" | "type"> & {
|
|
2447
2676
|
type: PropType<unknown extends Defaults["maxHeight"] ? string | number : NonNullable<string | number> | Defaults["maxHeight"]>;
|
|
2448
2677
|
default: unknown extends Defaults["maxHeight"] ? string | number : NonNullable<string | number> | Defaults["maxHeight"];
|
|
2449
2678
|
};
|
|
@@ -2453,7 +2682,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2453
2682
|
} : Omit<{
|
|
2454
2683
|
type: PropType<YIconIconProp>;
|
|
2455
2684
|
default: string;
|
|
2456
|
-
}, "
|
|
2685
|
+
}, "default" | "type"> & {
|
|
2457
2686
|
type: PropType<unknown extends Defaults["dropdownIcon"] ? YIconIconProp : NonNullable<YIconIconProp> | Defaults["dropdownIcon"]>;
|
|
2458
2687
|
default: unknown extends Defaults["dropdownIcon"] ? YIconIconProp : NonNullable<YIconIconProp> | Defaults["dropdownIcon"];
|
|
2459
2688
|
};
|
|
@@ -2463,7 +2692,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2463
2692
|
} : Omit<{
|
|
2464
2693
|
type: PropType<number>;
|
|
2465
2694
|
default: number;
|
|
2466
|
-
}, "
|
|
2695
|
+
}, "default" | "type"> & {
|
|
2467
2696
|
type: PropType<unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"]>;
|
|
2468
2697
|
default: unknown extends Defaults["openDelay"] ? number : number | Defaults["openDelay"];
|
|
2469
2698
|
};
|
|
@@ -2473,30 +2702,30 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
2473
2702
|
} : Omit<{
|
|
2474
2703
|
type: PropType<number>;
|
|
2475
2704
|
default: number;
|
|
2476
|
-
}, "
|
|
2705
|
+
}, "default" | "type"> & {
|
|
2477
2706
|
type: PropType<unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"]>;
|
|
2478
2707
|
default: unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"];
|
|
2479
2708
|
};
|
|
2480
2709
|
};
|
|
2481
|
-
export declare const YSelect: import(
|
|
2482
|
-
|
|
2483
|
-
type: PropType<"
|
|
2710
|
+
export declare const YSelect: import('vue').DefineComponent<{
|
|
2711
|
+
align: {
|
|
2712
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2484
2713
|
default: string;
|
|
2485
|
-
}, "type" | "default"> & {
|
|
2486
|
-
type: PropType<NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">>;
|
|
2487
|
-
default: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
2488
2714
|
};
|
|
2489
|
-
|
|
2490
|
-
type: PropType<
|
|
2715
|
+
offset: {
|
|
2716
|
+
type: PropType<string | number | number[]>;
|
|
2717
|
+
};
|
|
2718
|
+
position: Omit<{
|
|
2719
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2491
2720
|
default: string;
|
|
2721
|
+
}, "default" | "type"> & {
|
|
2722
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
2723
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2492
2724
|
};
|
|
2493
2725
|
origin: {
|
|
2494
2726
|
type: StringConstructor;
|
|
2495
2727
|
default: string;
|
|
2496
2728
|
};
|
|
2497
|
-
offset: {
|
|
2498
|
-
type: PropType<string | number | string[]>;
|
|
2499
|
-
};
|
|
2500
2729
|
viewportMargin: {
|
|
2501
2730
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2502
2731
|
default: number;
|
|
@@ -2507,7 +2736,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2507
2736
|
readonly: PropType<boolean>;
|
|
2508
2737
|
disabled: PropType<boolean>;
|
|
2509
2738
|
status: {
|
|
2510
|
-
type: PropType<"error" | "
|
|
2739
|
+
type: PropType<"error" | "warning" | "success" | undefined>;
|
|
2511
2740
|
validator(value: string): boolean;
|
|
2512
2741
|
};
|
|
2513
2742
|
helperText: StringConstructor;
|
|
@@ -2575,7 +2804,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2575
2804
|
itemKey: Omit<{
|
|
2576
2805
|
type: PropType<string>;
|
|
2577
2806
|
default: string;
|
|
2578
|
-
}, "
|
|
2807
|
+
}, "default" | "type"> & {
|
|
2579
2808
|
type: PropType<string>;
|
|
2580
2809
|
default: string;
|
|
2581
2810
|
};
|
|
@@ -2586,7 +2815,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2586
2815
|
itemChildren: Omit<{
|
|
2587
2816
|
type: PropType<string | boolean>;
|
|
2588
2817
|
default: string;
|
|
2589
|
-
}, "
|
|
2818
|
+
}, "default" | "type"> & {
|
|
2590
2819
|
type: PropType<NonNullable<string | boolean>>;
|
|
2591
2820
|
default: NonNullable<string | boolean>;
|
|
2592
2821
|
};
|
|
@@ -2601,65 +2830,71 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2601
2830
|
menuProps: {
|
|
2602
2831
|
type: PropType<Partial<{
|
|
2603
2832
|
disabled: boolean;
|
|
2604
|
-
|
|
2605
|
-
openOnHover: boolean;
|
|
2606
|
-
openDelay: number;
|
|
2833
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2607
2834
|
closeDelay: number;
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2835
|
+
openDelay: number;
|
|
2836
|
+
transition: string | (import('vue').TransitionProps & {
|
|
2837
|
+
is?: import('vue').Component | undefined;
|
|
2838
|
+
});
|
|
2839
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2840
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2612
2841
|
origin: string;
|
|
2613
2842
|
viewportMargin: string | number | unknown[];
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2843
|
+
zIndex: string | number;
|
|
2844
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2845
|
+
contentStyles: import('vue').CSSProperties;
|
|
2846
|
+
openOnHover: boolean;
|
|
2847
|
+
contained: boolean;
|
|
2617
2848
|
preventClip: boolean;
|
|
2618
2849
|
openOnClickBase: boolean;
|
|
2619
2850
|
closeCondition: boolean | Function;
|
|
2620
2851
|
}> & Omit<{
|
|
2621
2852
|
readonly disabled: boolean;
|
|
2622
|
-
readonly
|
|
2623
|
-
readonly openOnHover: boolean;
|
|
2624
|
-
readonly openDelay: number;
|
|
2853
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
2625
2854
|
readonly closeDelay: number;
|
|
2626
|
-
readonly
|
|
2627
|
-
readonly
|
|
2628
|
-
|
|
2629
|
-
|
|
2855
|
+
readonly openDelay: number;
|
|
2856
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
2857
|
+
is?: import('vue').Component | undefined;
|
|
2858
|
+
});
|
|
2859
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2860
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2630
2861
|
readonly origin: string;
|
|
2631
2862
|
readonly viewportMargin: string | number | unknown[];
|
|
2632
|
-
readonly
|
|
2633
|
-
|
|
2634
|
-
|
|
2863
|
+
readonly zIndex: string | number;
|
|
2864
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2865
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
2866
|
+
readonly openOnHover: boolean;
|
|
2867
|
+
readonly contained: boolean;
|
|
2635
2868
|
readonly preventClip: boolean;
|
|
2636
2869
|
readonly openOnClickBase: boolean;
|
|
2637
|
-
readonly
|
|
2638
|
-
readonly
|
|
2870
|
+
readonly base?: import('../layer/base').BaseType;
|
|
2871
|
+
readonly modelValue?: boolean | undefined;
|
|
2639
2872
|
readonly width?: string | number | undefined;
|
|
2640
2873
|
readonly height?: string | number | undefined;
|
|
2641
|
-
readonly
|
|
2642
|
-
readonly classes?: string |
|
|
2874
|
+
readonly theme?: string | undefined;
|
|
2875
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
2876
|
+
readonly minWidth?: string | number | undefined;
|
|
2877
|
+
readonly offset?: string | number | number[] | undefined;
|
|
2878
|
+
readonly minHeight?: string | number | undefined;
|
|
2879
|
+
readonly maxWidth?: string | number | undefined;
|
|
2880
|
+
readonly maxHeight?: string | number | undefined;
|
|
2881
|
+
readonly closeClickContent?: boolean | undefined;
|
|
2643
2882
|
readonly scrim?: boolean | undefined;
|
|
2644
2883
|
readonly scrimOpacity?: number | undefined;
|
|
2645
2884
|
readonly eager?: boolean | undefined;
|
|
2646
|
-
readonly contentClasses?: string |
|
|
2885
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
2647
2886
|
readonly closeClickScrim?: boolean | undefined;
|
|
2648
|
-
readonly offset?: string | number | string[] | undefined;
|
|
2649
|
-
readonly minWidth?: string | number | undefined;
|
|
2650
|
-
readonly maxWidth?: string | number | undefined;
|
|
2651
|
-
readonly minHeight?: string | number | undefined;
|
|
2652
|
-
readonly maxHeight?: string | number | undefined;
|
|
2653
2887
|
readonly preventCloseBubble?: boolean | undefined;
|
|
2654
|
-
readonly menuClasses?: string |
|
|
2888
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
2655
2889
|
readonly closeCondition?: boolean | Function | undefined;
|
|
2656
2890
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2657
2891
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2658
|
-
|
|
2892
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2893
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
2659
2894
|
transition: {
|
|
2660
2895
|
default: string;
|
|
2661
|
-
type: PropType<string | (import(
|
|
2662
|
-
is?: import(
|
|
2896
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
2897
|
+
is?: import('vue').Component | undefined;
|
|
2663
2898
|
})>;
|
|
2664
2899
|
};
|
|
2665
2900
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -2669,19 +2904,27 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2669
2904
|
minHeight: PropType<string | number>;
|
|
2670
2905
|
height: PropType<string | number>;
|
|
2671
2906
|
maxHeight: PropType<string | number>;
|
|
2907
|
+
scrollStrategy: Omit<{
|
|
2908
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2909
|
+
default: string;
|
|
2910
|
+
validator: (val: any) => boolean;
|
|
2911
|
+
}, "default" | "type"> & {
|
|
2912
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
2913
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2914
|
+
};
|
|
2672
2915
|
coordinateStrategy: Omit<{
|
|
2673
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
2916
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2674
2917
|
default: string;
|
|
2675
|
-
}, "
|
|
2676
|
-
type: PropType<
|
|
2677
|
-
default:
|
|
2918
|
+
}, "default" | "type"> & {
|
|
2919
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
2920
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2678
2921
|
};
|
|
2679
2922
|
position: {
|
|
2680
|
-
type: PropType<"default" | "top" | "
|
|
2923
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2681
2924
|
default: string;
|
|
2682
2925
|
};
|
|
2683
2926
|
align: {
|
|
2684
|
-
type: PropType<"top" | "
|
|
2927
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2685
2928
|
default: string;
|
|
2686
2929
|
};
|
|
2687
2930
|
origin: {
|
|
@@ -2689,13 +2932,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2689
2932
|
default: string;
|
|
2690
2933
|
};
|
|
2691
2934
|
offset: {
|
|
2692
|
-
type: PropType<string | number |
|
|
2935
|
+
type: PropType<string | number | number[]>;
|
|
2693
2936
|
};
|
|
2694
2937
|
viewportMargin: {
|
|
2695
2938
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2696
2939
|
default: number;
|
|
2697
2940
|
};
|
|
2698
|
-
|
|
2941
|
+
closeClickContent: {
|
|
2942
|
+
type: PropType<boolean>;
|
|
2943
|
+
};
|
|
2944
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2699
2945
|
theme: PropType<string>;
|
|
2700
2946
|
modelValue: {
|
|
2701
2947
|
type: PropType<boolean>;
|
|
@@ -2710,16 +2956,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2710
2956
|
type: PropType<boolean>;
|
|
2711
2957
|
};
|
|
2712
2958
|
classes: {
|
|
2713
|
-
type: PropType<string |
|
|
2959
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2714
2960
|
};
|
|
2715
2961
|
contentClasses: {
|
|
2716
|
-
type: PropType<string |
|
|
2962
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2717
2963
|
};
|
|
2718
2964
|
closeClickScrim: {
|
|
2719
2965
|
type: PropType<boolean>;
|
|
2720
2966
|
};
|
|
2721
2967
|
contentStyles: {
|
|
2722
|
-
type: PropType<import(
|
|
2968
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2723
2969
|
default: () => void;
|
|
2724
2970
|
};
|
|
2725
2971
|
disabled: {
|
|
@@ -2742,8 +2988,9 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2742
2988
|
type: PropType<string | number>;
|
|
2743
2989
|
default: number;
|
|
2744
2990
|
};
|
|
2991
|
+
contained: BooleanConstructor;
|
|
2745
2992
|
menuClasses: {
|
|
2746
|
-
type: PropType<string |
|
|
2993
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2747
2994
|
};
|
|
2748
2995
|
openOnClickBase: {
|
|
2749
2996
|
type: PropType<boolean>;
|
|
@@ -2760,7 +3007,8 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2760
3007
|
}>> & {
|
|
2761
3008
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2762
3009
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2763
|
-
|
|
3010
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
3011
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
2764
3012
|
};
|
|
2765
3013
|
maxHeight: {
|
|
2766
3014
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -2779,17 +3027,17 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2779
3027
|
default: number;
|
|
2780
3028
|
};
|
|
2781
3029
|
}, {
|
|
2782
|
-
fieldInputRef: import(
|
|
2783
|
-
model: import(
|
|
3030
|
+
fieldInputRef: import('vue').Ref<any>;
|
|
3031
|
+
model: import('vue').Ref<any> & {
|
|
2784
3032
|
readonly rxValue: any;
|
|
2785
3033
|
};
|
|
2786
|
-
selections: import(
|
|
2787
|
-
selected: import(
|
|
2788
|
-
menuRef: import(
|
|
3034
|
+
selections: import('vue').ComputedRef<ListItem<any>[]>;
|
|
3035
|
+
selected: import('vue').ComputedRef<any[]>;
|
|
3036
|
+
menuRef: import('vue').Ref<import('vue').CreateComponentPublicInstance<Readonly<import('vue').ExtractPropTypes<{
|
|
2789
3037
|
transition: {
|
|
2790
3038
|
default: string;
|
|
2791
|
-
type: PropType<string | (import(
|
|
2792
|
-
is?: import(
|
|
3039
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
3040
|
+
is?: import('vue').Component | undefined;
|
|
2793
3041
|
})>;
|
|
2794
3042
|
};
|
|
2795
3043
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -2799,19 +3047,27 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2799
3047
|
minHeight: PropType<string | number>;
|
|
2800
3048
|
height: PropType<string | number>;
|
|
2801
3049
|
maxHeight: PropType<string | number>;
|
|
3050
|
+
scrollStrategy: Omit<{
|
|
3051
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
3052
|
+
default: string;
|
|
3053
|
+
validator: (val: any) => boolean;
|
|
3054
|
+
}, "default" | "type"> & {
|
|
3055
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
3056
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
3057
|
+
};
|
|
2802
3058
|
coordinateStrategy: Omit<{
|
|
2803
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
3059
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2804
3060
|
default: string;
|
|
2805
|
-
}, "
|
|
2806
|
-
type: PropType<
|
|
2807
|
-
default:
|
|
3061
|
+
}, "default" | "type"> & {
|
|
3062
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
3063
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2808
3064
|
};
|
|
2809
3065
|
position: {
|
|
2810
|
-
type: PropType<"default" | "top" | "
|
|
3066
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2811
3067
|
default: string;
|
|
2812
3068
|
};
|
|
2813
3069
|
align: {
|
|
2814
|
-
type: PropType<"top" | "
|
|
3070
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2815
3071
|
default: string;
|
|
2816
3072
|
};
|
|
2817
3073
|
origin: {
|
|
@@ -2819,13 +3075,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2819
3075
|
default: string;
|
|
2820
3076
|
};
|
|
2821
3077
|
offset: {
|
|
2822
|
-
type: PropType<string | number |
|
|
3078
|
+
type: PropType<string | number | number[]>;
|
|
2823
3079
|
};
|
|
2824
3080
|
viewportMargin: {
|
|
2825
3081
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2826
3082
|
default: number;
|
|
2827
3083
|
};
|
|
2828
|
-
|
|
3084
|
+
closeClickContent: {
|
|
3085
|
+
type: PropType<boolean>;
|
|
3086
|
+
};
|
|
3087
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2829
3088
|
theme: PropType<string>;
|
|
2830
3089
|
modelValue: {
|
|
2831
3090
|
type: PropType<boolean>;
|
|
@@ -2840,16 +3099,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2840
3099
|
type: PropType<boolean>;
|
|
2841
3100
|
};
|
|
2842
3101
|
classes: {
|
|
2843
|
-
type: PropType<string |
|
|
3102
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2844
3103
|
};
|
|
2845
3104
|
contentClasses: {
|
|
2846
|
-
type: PropType<string |
|
|
3105
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2847
3106
|
};
|
|
2848
3107
|
closeClickScrim: {
|
|
2849
3108
|
type: PropType<boolean>;
|
|
2850
3109
|
};
|
|
2851
3110
|
contentStyles: {
|
|
2852
|
-
type: PropType<import(
|
|
3111
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2853
3112
|
default: () => void;
|
|
2854
3113
|
};
|
|
2855
3114
|
disabled: {
|
|
@@ -2872,8 +3131,9 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2872
3131
|
type: PropType<string | number>;
|
|
2873
3132
|
default: number;
|
|
2874
3133
|
};
|
|
3134
|
+
contained: BooleanConstructor;
|
|
2875
3135
|
menuClasses: {
|
|
2876
|
-
type: PropType<string |
|
|
3136
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2877
3137
|
};
|
|
2878
3138
|
openOnClickBase: {
|
|
2879
3139
|
type: PropType<boolean>;
|
|
@@ -2890,24 +3150,30 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2890
3150
|
}>> & {
|
|
2891
3151
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2892
3152
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
3153
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2893
3154
|
}, {
|
|
2894
|
-
layer$: import(
|
|
3155
|
+
layer$: import('vue').Ref<import('vue').DefineComponent<{
|
|
2895
3156
|
minWidth: PropType<string | number>;
|
|
2896
3157
|
width: PropType<string | number>;
|
|
2897
3158
|
maxWidth: PropType<string | number>;
|
|
2898
3159
|
minHeight: PropType<string | number>;
|
|
2899
3160
|
height: PropType<string | number>;
|
|
2900
3161
|
maxHeight: PropType<string | number>;
|
|
3162
|
+
scrollStrategy: {
|
|
3163
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
3164
|
+
default: string;
|
|
3165
|
+
validator: (val: any) => boolean;
|
|
3166
|
+
};
|
|
2901
3167
|
coordinateStrategy: {
|
|
2902
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
3168
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2903
3169
|
default: string;
|
|
2904
3170
|
};
|
|
2905
3171
|
position: {
|
|
2906
|
-
type: PropType<"default" | "top" | "
|
|
3172
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2907
3173
|
default: string;
|
|
2908
3174
|
};
|
|
2909
3175
|
align: {
|
|
2910
|
-
type: PropType<"top" | "
|
|
3176
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2911
3177
|
default: string;
|
|
2912
3178
|
};
|
|
2913
3179
|
origin: {
|
|
@@ -2915,16 +3181,19 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2915
3181
|
default: string;
|
|
2916
3182
|
};
|
|
2917
3183
|
offset: {
|
|
2918
|
-
type: PropType<string | number |
|
|
3184
|
+
type: PropType<string | number | number[]>;
|
|
2919
3185
|
};
|
|
2920
3186
|
viewportMargin: {
|
|
2921
3187
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2922
3188
|
default: number;
|
|
2923
3189
|
};
|
|
2924
|
-
|
|
3190
|
+
closeClickContent: {
|
|
3191
|
+
type: PropType<boolean>;
|
|
3192
|
+
};
|
|
3193
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2925
3194
|
transition: {
|
|
2926
|
-
type: PropType<string | (import(
|
|
2927
|
-
is?: import(
|
|
3195
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
3196
|
+
is?: import('vue').Component | undefined;
|
|
2928
3197
|
})>;
|
|
2929
3198
|
default: string;
|
|
2930
3199
|
};
|
|
@@ -2942,16 +3211,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2942
3211
|
type: PropType<boolean>;
|
|
2943
3212
|
};
|
|
2944
3213
|
classes: {
|
|
2945
|
-
type: PropType<string |
|
|
3214
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2946
3215
|
};
|
|
2947
3216
|
contentClasses: {
|
|
2948
|
-
type: PropType<string |
|
|
3217
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2949
3218
|
};
|
|
2950
3219
|
closeClickScrim: {
|
|
2951
3220
|
type: PropType<boolean>;
|
|
2952
3221
|
};
|
|
2953
3222
|
contentStyles: {
|
|
2954
|
-
type: PropType<import(
|
|
3223
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2955
3224
|
default: () => void;
|
|
2956
3225
|
};
|
|
2957
3226
|
disabled: {
|
|
@@ -2974,6 +3243,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2974
3243
|
type: PropType<string | number>;
|
|
2975
3244
|
default: number;
|
|
2976
3245
|
};
|
|
3246
|
+
contained: BooleanConstructor;
|
|
2977
3247
|
modal: PropType<boolean>;
|
|
2978
3248
|
}, {
|
|
2979
3249
|
complementClickOption: {
|
|
@@ -2981,22 +3251,22 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
2981
3251
|
determine?: ((event: Event) => boolean) | undefined;
|
|
2982
3252
|
include?: (() => (HTMLElement | undefined)[]) | undefined;
|
|
2983
3253
|
};
|
|
2984
|
-
layerGroup: import(
|
|
2985
|
-
active: import(
|
|
2986
|
-
finish: import(
|
|
2987
|
-
rendered: import(
|
|
2988
|
-
lazyValue: import(
|
|
3254
|
+
layerGroup: import('vue').ComputedRef<HTMLElement>;
|
|
3255
|
+
active: import('vue').WritableComputedRef<boolean>;
|
|
3256
|
+
finish: import('vue').ShallowRef<boolean>;
|
|
3257
|
+
rendered: import('vue').ComputedRef<boolean>;
|
|
3258
|
+
lazyValue: import('vue').ComputedRef<any>;
|
|
2989
3259
|
onAfterUpdate: () => void;
|
|
2990
|
-
scrim$: import(
|
|
2991
|
-
content$: import(
|
|
2992
|
-
base$: import(
|
|
2993
|
-
baseEl: import(
|
|
2994
|
-
baseFromSlotEl: import(
|
|
2995
|
-
polyTransitionBindProps: import(
|
|
3260
|
+
scrim$: import('vue').Ref<HTMLElement | undefined>;
|
|
3261
|
+
content$: import('vue').Ref<HTMLElement | undefined>;
|
|
3262
|
+
base$: import('vue').Ref<any>;
|
|
3263
|
+
baseEl: import('vue').Ref<HTMLElement | undefined>;
|
|
3264
|
+
baseFromSlotEl: import('vue').ComputedRef<any>;
|
|
3265
|
+
polyTransitionBindProps: import('vue').ComputedRef<{
|
|
2996
3266
|
is: any;
|
|
2997
3267
|
transitionProps: any;
|
|
2998
3268
|
}>;
|
|
2999
|
-
coordinateStyles: import(
|
|
3269
|
+
coordinateStyles: import('vue').Ref<{
|
|
3000
3270
|
[x: `--${string}`]: string | number | undefined;
|
|
3001
3271
|
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
3002
3272
|
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
@@ -3373,7 +3643,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3373
3643
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
3374
3644
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
3375
3645
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
3376
|
-
all?: import(
|
|
3646
|
+
all?: import('csstype').Globals | undefined;
|
|
3377
3647
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
3378
3648
|
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
3379
3649
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
@@ -4591,28 +4861,33 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4591
4861
|
"vector-effect"?: import("csstype").Property.VectorEffect | undefined;
|
|
4592
4862
|
}>;
|
|
4593
4863
|
layerGroupState: WeakMap<HTMLElement, Set<any>>;
|
|
4594
|
-
getActiveLayers: () => import(
|
|
4595
|
-
}, unknown, {}, {}, import(
|
|
4864
|
+
getActiveLayers: () => import('vue').ComponentInternalInstance[];
|
|
4865
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
4596
4866
|
'update:modelValue': (value: boolean) => true;
|
|
4597
4867
|
'click:complement': (mouseEvent: MouseEvent) => true;
|
|
4598
4868
|
afterLeave: () => true;
|
|
4599
|
-
}, string, import(
|
|
4869
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
4600
4870
|
minWidth: PropType<string | number>;
|
|
4601
4871
|
width: PropType<string | number>;
|
|
4602
4872
|
maxWidth: PropType<string | number>;
|
|
4603
4873
|
minHeight: PropType<string | number>;
|
|
4604
4874
|
height: PropType<string | number>;
|
|
4605
4875
|
maxHeight: PropType<string | number>;
|
|
4876
|
+
scrollStrategy: {
|
|
4877
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
4878
|
+
default: string;
|
|
4879
|
+
validator: (val: any) => boolean;
|
|
4880
|
+
};
|
|
4606
4881
|
coordinateStrategy: {
|
|
4607
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
4882
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
4608
4883
|
default: string;
|
|
4609
4884
|
};
|
|
4610
4885
|
position: {
|
|
4611
|
-
type: PropType<"default" | "top" | "
|
|
4886
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
4612
4887
|
default: string;
|
|
4613
4888
|
};
|
|
4614
4889
|
align: {
|
|
4615
|
-
type: PropType<"top" | "
|
|
4890
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
4616
4891
|
default: string;
|
|
4617
4892
|
};
|
|
4618
4893
|
origin: {
|
|
@@ -4620,16 +4895,19 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4620
4895
|
default: string;
|
|
4621
4896
|
};
|
|
4622
4897
|
offset: {
|
|
4623
|
-
type: PropType<string | number |
|
|
4898
|
+
type: PropType<string | number | number[]>;
|
|
4624
4899
|
};
|
|
4625
4900
|
viewportMargin: {
|
|
4626
4901
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
4627
4902
|
default: number;
|
|
4628
4903
|
};
|
|
4629
|
-
|
|
4904
|
+
closeClickContent: {
|
|
4905
|
+
type: PropType<boolean>;
|
|
4906
|
+
};
|
|
4907
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
4630
4908
|
transition: {
|
|
4631
|
-
type: PropType<string | (import(
|
|
4632
|
-
is?: import(
|
|
4909
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
4910
|
+
is?: import('vue').Component | undefined;
|
|
4633
4911
|
})>;
|
|
4634
4912
|
default: string;
|
|
4635
4913
|
};
|
|
@@ -4647,16 +4925,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4647
4925
|
type: PropType<boolean>;
|
|
4648
4926
|
};
|
|
4649
4927
|
classes: {
|
|
4650
|
-
type: PropType<string |
|
|
4928
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4651
4929
|
};
|
|
4652
4930
|
contentClasses: {
|
|
4653
|
-
type: PropType<string |
|
|
4931
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4654
4932
|
};
|
|
4655
4933
|
closeClickScrim: {
|
|
4656
4934
|
type: PropType<boolean>;
|
|
4657
4935
|
};
|
|
4658
4936
|
contentStyles: {
|
|
4659
|
-
type: PropType<import(
|
|
4937
|
+
type: PropType<import('vue').CSSProperties>;
|
|
4660
4938
|
default: () => void;
|
|
4661
4939
|
};
|
|
4662
4940
|
disabled: {
|
|
@@ -4679,6 +4957,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4679
4957
|
type: PropType<string | number>;
|
|
4680
4958
|
default: number;
|
|
4681
4959
|
};
|
|
4960
|
+
contained: BooleanConstructor;
|
|
4682
4961
|
modal: PropType<boolean>;
|
|
4683
4962
|
}>> & {
|
|
4684
4963
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -4686,36 +4965,40 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4686
4965
|
"onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
|
|
4687
4966
|
}, {
|
|
4688
4967
|
disabled: boolean;
|
|
4689
|
-
|
|
4690
|
-
openOnHover: boolean;
|
|
4691
|
-
openDelay: number;
|
|
4968
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
4692
4969
|
closeDelay: number;
|
|
4693
|
-
|
|
4694
|
-
|
|
4695
|
-
|
|
4696
|
-
|
|
4970
|
+
openDelay: number;
|
|
4971
|
+
transition: string | (import('vue').TransitionProps & {
|
|
4972
|
+
is?: import('vue').Component | undefined;
|
|
4973
|
+
});
|
|
4974
|
+
coordinateStrategy: "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
4975
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
4697
4976
|
origin: string;
|
|
4698
4977
|
viewportMargin: string | number | unknown[];
|
|
4699
|
-
|
|
4700
|
-
|
|
4701
|
-
|
|
4978
|
+
zIndex: string | number;
|
|
4979
|
+
scrollStrategy: "close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition";
|
|
4980
|
+
contentStyles: import('vue').CSSProperties;
|
|
4981
|
+
openOnHover: boolean;
|
|
4982
|
+
contained: boolean;
|
|
4702
4983
|
}, SlotsType<{
|
|
4703
4984
|
base: any;
|
|
4704
4985
|
default: any;
|
|
4705
4986
|
}>> | undefined>;
|
|
4706
|
-
baseEl: import(
|
|
4707
|
-
classes: import(
|
|
4987
|
+
baseEl: import('vue').ComputedRef<any>;
|
|
4988
|
+
classes: import('vue').ComputedRef<{
|
|
4708
4989
|
'y-menu': boolean;
|
|
4709
4990
|
}>;
|
|
4710
|
-
children: import(
|
|
4711
|
-
parent: import(
|
|
4712
|
-
active: import(
|
|
4713
|
-
|
|
4714
|
-
|
|
4991
|
+
children: import('vue').ShallowRef<any[]>;
|
|
4992
|
+
parent: import('../layer/active-stack').ActiveStackProvide | null;
|
|
4993
|
+
active: import('vue').Ref<any> & {
|
|
4994
|
+
readonly rxValue: any;
|
|
4995
|
+
};
|
|
4996
|
+
hovered: import('vue').ComputedRef<boolean>;
|
|
4997
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "afterLeave" | "hoverContent")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
4715
4998
|
transition: {
|
|
4716
4999
|
default: string;
|
|
4717
|
-
type: PropType<string | (import(
|
|
4718
|
-
is?: import(
|
|
5000
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
5001
|
+
is?: import('vue').Component | undefined;
|
|
4719
5002
|
})>;
|
|
4720
5003
|
};
|
|
4721
5004
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -4725,19 +5008,27 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4725
5008
|
minHeight: PropType<string | number>;
|
|
4726
5009
|
height: PropType<string | number>;
|
|
4727
5010
|
maxHeight: PropType<string | number>;
|
|
5011
|
+
scrollStrategy: Omit<{
|
|
5012
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5013
|
+
default: string;
|
|
5014
|
+
validator: (val: any) => boolean;
|
|
5015
|
+
}, "default" | "type"> & {
|
|
5016
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
5017
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5018
|
+
};
|
|
4728
5019
|
coordinateStrategy: Omit<{
|
|
4729
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
5020
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
4730
5021
|
default: string;
|
|
4731
|
-
}, "
|
|
4732
|
-
type: PropType<
|
|
4733
|
-
default:
|
|
5022
|
+
}, "default" | "type"> & {
|
|
5023
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
5024
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
4734
5025
|
};
|
|
4735
5026
|
position: {
|
|
4736
|
-
type: PropType<"default" | "top" | "
|
|
5027
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
4737
5028
|
default: string;
|
|
4738
5029
|
};
|
|
4739
5030
|
align: {
|
|
4740
|
-
type: PropType<"top" | "
|
|
5031
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
4741
5032
|
default: string;
|
|
4742
5033
|
};
|
|
4743
5034
|
origin: {
|
|
@@ -4745,13 +5036,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4745
5036
|
default: string;
|
|
4746
5037
|
};
|
|
4747
5038
|
offset: {
|
|
4748
|
-
type: PropType<string | number |
|
|
5039
|
+
type: PropType<string | number | number[]>;
|
|
4749
5040
|
};
|
|
4750
5041
|
viewportMargin: {
|
|
4751
5042
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
4752
5043
|
default: number;
|
|
4753
5044
|
};
|
|
4754
|
-
|
|
5045
|
+
closeClickContent: {
|
|
5046
|
+
type: PropType<boolean>;
|
|
5047
|
+
};
|
|
5048
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
4755
5049
|
theme: PropType<string>;
|
|
4756
5050
|
modelValue: {
|
|
4757
5051
|
type: PropType<boolean>;
|
|
@@ -4766,16 +5060,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4766
5060
|
type: PropType<boolean>;
|
|
4767
5061
|
};
|
|
4768
5062
|
classes: {
|
|
4769
|
-
type: PropType<string |
|
|
5063
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4770
5064
|
};
|
|
4771
5065
|
contentClasses: {
|
|
4772
|
-
type: PropType<string |
|
|
5066
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4773
5067
|
};
|
|
4774
5068
|
closeClickScrim: {
|
|
4775
5069
|
type: PropType<boolean>;
|
|
4776
5070
|
};
|
|
4777
5071
|
contentStyles: {
|
|
4778
|
-
type: PropType<import(
|
|
5072
|
+
type: PropType<import('vue').CSSProperties>;
|
|
4779
5073
|
default: () => void;
|
|
4780
5074
|
};
|
|
4781
5075
|
disabled: {
|
|
@@ -4798,8 +5092,9 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4798
5092
|
type: PropType<string | number>;
|
|
4799
5093
|
default: number;
|
|
4800
5094
|
};
|
|
5095
|
+
contained: BooleanConstructor;
|
|
4801
5096
|
menuClasses: {
|
|
4802
|
-
type: PropType<string |
|
|
5097
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4803
5098
|
};
|
|
4804
5099
|
openOnClickBase: {
|
|
4805
5100
|
type: PropType<boolean>;
|
|
@@ -4816,36 +5111,42 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4816
5111
|
}>> & {
|
|
4817
5112
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4818
5113
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
5114
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
4819
5115
|
}, {
|
|
4820
5116
|
disabled: boolean;
|
|
4821
|
-
|
|
4822
|
-
openOnHover: boolean;
|
|
4823
|
-
openDelay: number;
|
|
5117
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
4824
5118
|
closeDelay: number;
|
|
4825
|
-
|
|
4826
|
-
|
|
4827
|
-
|
|
4828
|
-
|
|
5119
|
+
openDelay: number;
|
|
5120
|
+
transition: string | (import('vue').TransitionProps & {
|
|
5121
|
+
is?: import('vue').Component | undefined;
|
|
5122
|
+
});
|
|
5123
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
5124
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
4829
5125
|
origin: string;
|
|
4830
5126
|
viewportMargin: string | number | unknown[];
|
|
4831
|
-
|
|
4832
|
-
|
|
4833
|
-
|
|
5127
|
+
zIndex: string | number;
|
|
5128
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5129
|
+
contentStyles: import('vue').CSSProperties;
|
|
5130
|
+
openOnHover: boolean;
|
|
5131
|
+
contained: boolean;
|
|
4834
5132
|
preventClip: boolean;
|
|
4835
5133
|
openOnClickBase: boolean;
|
|
4836
5134
|
closeCondition: boolean | Function;
|
|
4837
|
-
}, true, {}, {
|
|
5135
|
+
}, true, {}, SlotsType<{
|
|
5136
|
+
default: any;
|
|
5137
|
+
base: any;
|
|
5138
|
+
}>, {
|
|
4838
5139
|
P: {};
|
|
4839
5140
|
B: {};
|
|
4840
5141
|
D: {};
|
|
4841
5142
|
C: {};
|
|
4842
5143
|
M: {};
|
|
4843
5144
|
Defaults: {};
|
|
4844
|
-
}, Readonly<import(
|
|
5145
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
4845
5146
|
transition: {
|
|
4846
5147
|
default: string;
|
|
4847
|
-
type: PropType<string | (import(
|
|
4848
|
-
is?: import(
|
|
5148
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
5149
|
+
is?: import('vue').Component | undefined;
|
|
4849
5150
|
})>;
|
|
4850
5151
|
};
|
|
4851
5152
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -4855,19 +5156,27 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4855
5156
|
minHeight: PropType<string | number>;
|
|
4856
5157
|
height: PropType<string | number>;
|
|
4857
5158
|
maxHeight: PropType<string | number>;
|
|
5159
|
+
scrollStrategy: Omit<{
|
|
5160
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5161
|
+
default: string;
|
|
5162
|
+
validator: (val: any) => boolean;
|
|
5163
|
+
}, "default" | "type"> & {
|
|
5164
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
5165
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5166
|
+
};
|
|
4858
5167
|
coordinateStrategy: Omit<{
|
|
4859
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
5168
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
4860
5169
|
default: string;
|
|
4861
|
-
}, "
|
|
4862
|
-
type: PropType<
|
|
4863
|
-
default:
|
|
5170
|
+
}, "default" | "type"> & {
|
|
5171
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
5172
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
4864
5173
|
};
|
|
4865
5174
|
position: {
|
|
4866
|
-
type: PropType<"default" | "top" | "
|
|
5175
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
4867
5176
|
default: string;
|
|
4868
5177
|
};
|
|
4869
5178
|
align: {
|
|
4870
|
-
type: PropType<"top" | "
|
|
5179
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
4871
5180
|
default: string;
|
|
4872
5181
|
};
|
|
4873
5182
|
origin: {
|
|
@@ -4875,13 +5184,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4875
5184
|
default: string;
|
|
4876
5185
|
};
|
|
4877
5186
|
offset: {
|
|
4878
|
-
type: PropType<string | number |
|
|
5187
|
+
type: PropType<string | number | number[]>;
|
|
4879
5188
|
};
|
|
4880
5189
|
viewportMargin: {
|
|
4881
5190
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
4882
5191
|
default: number;
|
|
4883
5192
|
};
|
|
4884
|
-
|
|
5193
|
+
closeClickContent: {
|
|
5194
|
+
type: PropType<boolean>;
|
|
5195
|
+
};
|
|
5196
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
4885
5197
|
theme: PropType<string>;
|
|
4886
5198
|
modelValue: {
|
|
4887
5199
|
type: PropType<boolean>;
|
|
@@ -4896,16 +5208,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4896
5208
|
type: PropType<boolean>;
|
|
4897
5209
|
};
|
|
4898
5210
|
classes: {
|
|
4899
|
-
type: PropType<string |
|
|
5211
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4900
5212
|
};
|
|
4901
5213
|
contentClasses: {
|
|
4902
|
-
type: PropType<string |
|
|
5214
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4903
5215
|
};
|
|
4904
5216
|
closeClickScrim: {
|
|
4905
5217
|
type: PropType<boolean>;
|
|
4906
5218
|
};
|
|
4907
5219
|
contentStyles: {
|
|
4908
|
-
type: PropType<import(
|
|
5220
|
+
type: PropType<import('vue').CSSProperties>;
|
|
4909
5221
|
default: () => void;
|
|
4910
5222
|
};
|
|
4911
5223
|
disabled: {
|
|
@@ -4928,8 +5240,9 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4928
5240
|
type: PropType<string | number>;
|
|
4929
5241
|
default: number;
|
|
4930
5242
|
};
|
|
5243
|
+
contained: BooleanConstructor;
|
|
4931
5244
|
menuClasses: {
|
|
4932
|
-
type: PropType<string |
|
|
5245
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
4933
5246
|
};
|
|
4934
5247
|
openOnClickBase: {
|
|
4935
5248
|
type: PropType<boolean>;
|
|
@@ -4946,24 +5259,30 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4946
5259
|
}>> & {
|
|
4947
5260
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4948
5261
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
5262
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
4949
5263
|
}, {
|
|
4950
|
-
layer$: import(
|
|
5264
|
+
layer$: import('vue').Ref<import('vue').DefineComponent<{
|
|
4951
5265
|
minWidth: PropType<string | number>;
|
|
4952
5266
|
width: PropType<string | number>;
|
|
4953
5267
|
maxWidth: PropType<string | number>;
|
|
4954
5268
|
minHeight: PropType<string | number>;
|
|
4955
5269
|
height: PropType<string | number>;
|
|
4956
5270
|
maxHeight: PropType<string | number>;
|
|
5271
|
+
scrollStrategy: {
|
|
5272
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
5273
|
+
default: string;
|
|
5274
|
+
validator: (val: any) => boolean;
|
|
5275
|
+
};
|
|
4957
5276
|
coordinateStrategy: {
|
|
4958
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
5277
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
4959
5278
|
default: string;
|
|
4960
5279
|
};
|
|
4961
5280
|
position: {
|
|
4962
|
-
type: PropType<"default" | "top" | "
|
|
5281
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
4963
5282
|
default: string;
|
|
4964
5283
|
};
|
|
4965
5284
|
align: {
|
|
4966
|
-
type: PropType<"top" | "
|
|
5285
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
4967
5286
|
default: string;
|
|
4968
5287
|
};
|
|
4969
5288
|
origin: {
|
|
@@ -4971,16 +5290,19 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4971
5290
|
default: string;
|
|
4972
5291
|
};
|
|
4973
5292
|
offset: {
|
|
4974
|
-
type: PropType<string | number |
|
|
5293
|
+
type: PropType<string | number | number[]>;
|
|
4975
5294
|
};
|
|
4976
5295
|
viewportMargin: {
|
|
4977
5296
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
4978
5297
|
default: number;
|
|
4979
5298
|
};
|
|
4980
|
-
|
|
5299
|
+
closeClickContent: {
|
|
5300
|
+
type: PropType<boolean>;
|
|
5301
|
+
};
|
|
5302
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
4981
5303
|
transition: {
|
|
4982
|
-
type: PropType<string | (import(
|
|
4983
|
-
is?: import(
|
|
5304
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
5305
|
+
is?: import('vue').Component | undefined;
|
|
4984
5306
|
})>;
|
|
4985
5307
|
default: string;
|
|
4986
5308
|
};
|
|
@@ -4998,16 +5320,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
4998
5320
|
type: PropType<boolean>;
|
|
4999
5321
|
};
|
|
5000
5322
|
classes: {
|
|
5001
|
-
type: PropType<string |
|
|
5323
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
5002
5324
|
};
|
|
5003
5325
|
contentClasses: {
|
|
5004
|
-
type: PropType<string |
|
|
5326
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
5005
5327
|
};
|
|
5006
5328
|
closeClickScrim: {
|
|
5007
5329
|
type: PropType<boolean>;
|
|
5008
5330
|
};
|
|
5009
5331
|
contentStyles: {
|
|
5010
|
-
type: PropType<import(
|
|
5332
|
+
type: PropType<import('vue').CSSProperties>;
|
|
5011
5333
|
default: () => void;
|
|
5012
5334
|
};
|
|
5013
5335
|
disabled: {
|
|
@@ -5030,6 +5352,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5030
5352
|
type: PropType<string | number>;
|
|
5031
5353
|
default: number;
|
|
5032
5354
|
};
|
|
5355
|
+
contained: BooleanConstructor;
|
|
5033
5356
|
modal: PropType<boolean>;
|
|
5034
5357
|
}, {
|
|
5035
5358
|
complementClickOption: {
|
|
@@ -5037,22 +5360,22 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5037
5360
|
determine?: ((event: Event) => boolean) | undefined;
|
|
5038
5361
|
include?: (() => (HTMLElement | undefined)[]) | undefined;
|
|
5039
5362
|
};
|
|
5040
|
-
layerGroup: import(
|
|
5041
|
-
active: import(
|
|
5042
|
-
finish: import(
|
|
5043
|
-
rendered: import(
|
|
5044
|
-
lazyValue: import(
|
|
5363
|
+
layerGroup: import('vue').ComputedRef<HTMLElement>;
|
|
5364
|
+
active: import('vue').WritableComputedRef<boolean>;
|
|
5365
|
+
finish: import('vue').ShallowRef<boolean>;
|
|
5366
|
+
rendered: import('vue').ComputedRef<boolean>;
|
|
5367
|
+
lazyValue: import('vue').ComputedRef<any>;
|
|
5045
5368
|
onAfterUpdate: () => void;
|
|
5046
|
-
scrim$: import(
|
|
5047
|
-
content$: import(
|
|
5048
|
-
base$: import(
|
|
5049
|
-
baseEl: import(
|
|
5050
|
-
baseFromSlotEl: import(
|
|
5051
|
-
polyTransitionBindProps: import(
|
|
5369
|
+
scrim$: import('vue').Ref<HTMLElement | undefined>;
|
|
5370
|
+
content$: import('vue').Ref<HTMLElement | undefined>;
|
|
5371
|
+
base$: import('vue').Ref<any>;
|
|
5372
|
+
baseEl: import('vue').Ref<HTMLElement | undefined>;
|
|
5373
|
+
baseFromSlotEl: import('vue').ComputedRef<any>;
|
|
5374
|
+
polyTransitionBindProps: import('vue').ComputedRef<{
|
|
5052
5375
|
is: any;
|
|
5053
5376
|
transitionProps: any;
|
|
5054
5377
|
}>;
|
|
5055
|
-
coordinateStyles: import(
|
|
5378
|
+
coordinateStyles: import('vue').Ref<{
|
|
5056
5379
|
[x: `--${string}`]: string | number | undefined;
|
|
5057
5380
|
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
5058
5381
|
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
@@ -5429,7 +5752,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5429
5752
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
5430
5753
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
5431
5754
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
5432
|
-
all?: import(
|
|
5755
|
+
all?: import('csstype').Globals | undefined;
|
|
5433
5756
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
5434
5757
|
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
5435
5758
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
@@ -6647,28 +6970,33 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6647
6970
|
"vector-effect"?: import("csstype").Property.VectorEffect | undefined;
|
|
6648
6971
|
}>;
|
|
6649
6972
|
layerGroupState: WeakMap<HTMLElement, Set<any>>;
|
|
6650
|
-
getActiveLayers: () => import(
|
|
6651
|
-
}, unknown, {}, {}, import(
|
|
6973
|
+
getActiveLayers: () => import('vue').ComponentInternalInstance[];
|
|
6974
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6652
6975
|
'update:modelValue': (value: boolean) => true;
|
|
6653
6976
|
'click:complement': (mouseEvent: MouseEvent) => true;
|
|
6654
6977
|
afterLeave: () => true;
|
|
6655
|
-
}, string, import(
|
|
6978
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
6656
6979
|
minWidth: PropType<string | number>;
|
|
6657
6980
|
width: PropType<string | number>;
|
|
6658
6981
|
maxWidth: PropType<string | number>;
|
|
6659
6982
|
minHeight: PropType<string | number>;
|
|
6660
6983
|
height: PropType<string | number>;
|
|
6661
6984
|
maxHeight: PropType<string | number>;
|
|
6985
|
+
scrollStrategy: {
|
|
6986
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
6987
|
+
default: string;
|
|
6988
|
+
validator: (val: any) => boolean;
|
|
6989
|
+
};
|
|
6662
6990
|
coordinateStrategy: {
|
|
6663
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
6991
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
6664
6992
|
default: string;
|
|
6665
6993
|
};
|
|
6666
6994
|
position: {
|
|
6667
|
-
type: PropType<"default" | "top" | "
|
|
6995
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
6668
6996
|
default: string;
|
|
6669
6997
|
};
|
|
6670
6998
|
align: {
|
|
6671
|
-
type: PropType<"top" | "
|
|
6999
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
6672
7000
|
default: string;
|
|
6673
7001
|
};
|
|
6674
7002
|
origin: {
|
|
@@ -6676,16 +7004,19 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6676
7004
|
default: string;
|
|
6677
7005
|
};
|
|
6678
7006
|
offset: {
|
|
6679
|
-
type: PropType<string | number |
|
|
7007
|
+
type: PropType<string | number | number[]>;
|
|
6680
7008
|
};
|
|
6681
7009
|
viewportMargin: {
|
|
6682
7010
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
6683
7011
|
default: number;
|
|
6684
7012
|
};
|
|
6685
|
-
|
|
7013
|
+
closeClickContent: {
|
|
7014
|
+
type: PropType<boolean>;
|
|
7015
|
+
};
|
|
7016
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
6686
7017
|
transition: {
|
|
6687
|
-
type: PropType<string | (import(
|
|
6688
|
-
is?: import(
|
|
7018
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
7019
|
+
is?: import('vue').Component | undefined;
|
|
6689
7020
|
})>;
|
|
6690
7021
|
default: string;
|
|
6691
7022
|
};
|
|
@@ -6703,16 +7034,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6703
7034
|
type: PropType<boolean>;
|
|
6704
7035
|
};
|
|
6705
7036
|
classes: {
|
|
6706
|
-
type: PropType<string |
|
|
7037
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
6707
7038
|
};
|
|
6708
7039
|
contentClasses: {
|
|
6709
|
-
type: PropType<string |
|
|
7040
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
6710
7041
|
};
|
|
6711
7042
|
closeClickScrim: {
|
|
6712
7043
|
type: PropType<boolean>;
|
|
6713
7044
|
};
|
|
6714
7045
|
contentStyles: {
|
|
6715
|
-
type: PropType<import(
|
|
7046
|
+
type: PropType<import('vue').CSSProperties>;
|
|
6716
7047
|
default: () => void;
|
|
6717
7048
|
};
|
|
6718
7049
|
disabled: {
|
|
@@ -6735,6 +7066,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6735
7066
|
type: PropType<string | number>;
|
|
6736
7067
|
default: number;
|
|
6737
7068
|
};
|
|
7069
|
+
contained: BooleanConstructor;
|
|
6738
7070
|
modal: PropType<boolean>;
|
|
6739
7071
|
}>> & {
|
|
6740
7072
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -6742,74 +7074,83 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6742
7074
|
"onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
|
|
6743
7075
|
}, {
|
|
6744
7076
|
disabled: boolean;
|
|
6745
|
-
|
|
6746
|
-
openOnHover: boolean;
|
|
6747
|
-
openDelay: number;
|
|
7077
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
6748
7078
|
closeDelay: number;
|
|
6749
|
-
|
|
6750
|
-
|
|
6751
|
-
|
|
6752
|
-
|
|
7079
|
+
openDelay: number;
|
|
7080
|
+
transition: string | (import('vue').TransitionProps & {
|
|
7081
|
+
is?: import('vue').Component | undefined;
|
|
7082
|
+
});
|
|
7083
|
+
coordinateStrategy: "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
7084
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
6753
7085
|
origin: string;
|
|
6754
7086
|
viewportMargin: string | number | unknown[];
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
7087
|
+
zIndex: string | number;
|
|
7088
|
+
scrollStrategy: "close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition";
|
|
7089
|
+
contentStyles: import('vue').CSSProperties;
|
|
7090
|
+
openOnHover: boolean;
|
|
7091
|
+
contained: boolean;
|
|
6758
7092
|
}, SlotsType<{
|
|
6759
7093
|
base: any;
|
|
6760
7094
|
default: any;
|
|
6761
7095
|
}>> | undefined>;
|
|
6762
|
-
baseEl: import(
|
|
6763
|
-
classes: import(
|
|
7096
|
+
baseEl: import('vue').ComputedRef<any>;
|
|
7097
|
+
classes: import('vue').ComputedRef<{
|
|
6764
7098
|
'y-menu': boolean;
|
|
6765
7099
|
}>;
|
|
6766
|
-
children: import(
|
|
6767
|
-
parent: import(
|
|
6768
|
-
active: import(
|
|
6769
|
-
|
|
7100
|
+
children: import('vue').ShallowRef<any[]>;
|
|
7101
|
+
parent: import('../layer/active-stack').ActiveStackProvide | null;
|
|
7102
|
+
active: import('vue').Ref<any> & {
|
|
7103
|
+
readonly rxValue: any;
|
|
7104
|
+
};
|
|
7105
|
+
hovered: import('vue').ComputedRef<boolean>;
|
|
6770
7106
|
}, {}, {}, {}, {
|
|
6771
7107
|
disabled: boolean;
|
|
6772
|
-
|
|
6773
|
-
openOnHover: boolean;
|
|
6774
|
-
openDelay: number;
|
|
7108
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
6775
7109
|
closeDelay: number;
|
|
6776
|
-
|
|
6777
|
-
|
|
6778
|
-
|
|
6779
|
-
|
|
7110
|
+
openDelay: number;
|
|
7111
|
+
transition: string | (import('vue').TransitionProps & {
|
|
7112
|
+
is?: import('vue').Component | undefined;
|
|
7113
|
+
});
|
|
7114
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
7115
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
6780
7116
|
origin: string;
|
|
6781
7117
|
viewportMargin: string | number | unknown[];
|
|
6782
|
-
|
|
6783
|
-
|
|
6784
|
-
|
|
7118
|
+
zIndex: string | number;
|
|
7119
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
7120
|
+
contentStyles: import('vue').CSSProperties;
|
|
7121
|
+
openOnHover: boolean;
|
|
7122
|
+
contained: boolean;
|
|
6785
7123
|
preventClip: boolean;
|
|
6786
7124
|
openOnClickBase: boolean;
|
|
6787
7125
|
closeCondition: boolean | Function;
|
|
6788
7126
|
}> | undefined>;
|
|
6789
|
-
baseEl: import(
|
|
6790
|
-
|
|
7127
|
+
baseEl: import('vue').ComputedRef<any>;
|
|
7128
|
+
opened: import('vue').Ref<any> & {
|
|
7129
|
+
readonly rxValue: any;
|
|
7130
|
+
};
|
|
7131
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6791
7132
|
'update:modelValue': (value: any) => boolean;
|
|
6792
7133
|
'update:opened': (opened: boolean) => boolean;
|
|
6793
7134
|
'click:item': (item: any, e: MouseEvent) => boolean;
|
|
6794
|
-
}, string, import(
|
|
6795
|
-
|
|
6796
|
-
type: PropType<"
|
|
7135
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
7136
|
+
align: {
|
|
7137
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
6797
7138
|
default: string;
|
|
6798
|
-
}, "type" | "default"> & {
|
|
6799
|
-
type: PropType<NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">>;
|
|
6800
|
-
default: NonNullable<"default" | "top" | "end" | "right" | "bottom" | "left" | "start">;
|
|
6801
7139
|
};
|
|
6802
|
-
|
|
6803
|
-
type: PropType<
|
|
7140
|
+
offset: {
|
|
7141
|
+
type: PropType<string | number | number[]>;
|
|
7142
|
+
};
|
|
7143
|
+
position: Omit<{
|
|
7144
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
6804
7145
|
default: string;
|
|
7146
|
+
}, "default" | "type"> & {
|
|
7147
|
+
type: PropType<NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">>;
|
|
7148
|
+
default: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
6805
7149
|
};
|
|
6806
7150
|
origin: {
|
|
6807
7151
|
type: StringConstructor;
|
|
6808
7152
|
default: string;
|
|
6809
7153
|
};
|
|
6810
|
-
offset: {
|
|
6811
|
-
type: PropType<string | number | string[]>;
|
|
6812
|
-
};
|
|
6813
7154
|
viewportMargin: {
|
|
6814
7155
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
6815
7156
|
default: number;
|
|
@@ -6820,7 +7161,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6820
7161
|
readonly: PropType<boolean>;
|
|
6821
7162
|
disabled: PropType<boolean>;
|
|
6822
7163
|
status: {
|
|
6823
|
-
type: PropType<"error" | "
|
|
7164
|
+
type: PropType<"error" | "warning" | "success" | undefined>;
|
|
6824
7165
|
validator(value: string): boolean;
|
|
6825
7166
|
};
|
|
6826
7167
|
helperText: StringConstructor;
|
|
@@ -6888,7 +7229,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6888
7229
|
itemKey: Omit<{
|
|
6889
7230
|
type: PropType<string>;
|
|
6890
7231
|
default: string;
|
|
6891
|
-
}, "
|
|
7232
|
+
}, "default" | "type"> & {
|
|
6892
7233
|
type: PropType<string>;
|
|
6893
7234
|
default: string;
|
|
6894
7235
|
};
|
|
@@ -6899,7 +7240,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6899
7240
|
itemChildren: Omit<{
|
|
6900
7241
|
type: PropType<string | boolean>;
|
|
6901
7242
|
default: string;
|
|
6902
|
-
}, "
|
|
7243
|
+
}, "default" | "type"> & {
|
|
6903
7244
|
type: PropType<NonNullable<string | boolean>>;
|
|
6904
7245
|
default: NonNullable<string | boolean>;
|
|
6905
7246
|
};
|
|
@@ -6914,65 +7255,71 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6914
7255
|
menuProps: {
|
|
6915
7256
|
type: PropType<Partial<{
|
|
6916
7257
|
disabled: boolean;
|
|
6917
|
-
|
|
6918
|
-
openOnHover: boolean;
|
|
6919
|
-
openDelay: number;
|
|
7258
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
6920
7259
|
closeDelay: number;
|
|
6921
|
-
|
|
6922
|
-
|
|
6923
|
-
|
|
6924
|
-
|
|
7260
|
+
openDelay: number;
|
|
7261
|
+
transition: string | (import('vue').TransitionProps & {
|
|
7262
|
+
is?: import('vue').Component | undefined;
|
|
7263
|
+
});
|
|
7264
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
7265
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
6925
7266
|
origin: string;
|
|
6926
7267
|
viewportMargin: string | number | unknown[];
|
|
6927
|
-
|
|
6928
|
-
|
|
6929
|
-
|
|
7268
|
+
zIndex: string | number;
|
|
7269
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
7270
|
+
contentStyles: import('vue').CSSProperties;
|
|
7271
|
+
openOnHover: boolean;
|
|
7272
|
+
contained: boolean;
|
|
6930
7273
|
preventClip: boolean;
|
|
6931
7274
|
openOnClickBase: boolean;
|
|
6932
7275
|
closeCondition: boolean | Function;
|
|
6933
7276
|
}> & Omit<{
|
|
6934
7277
|
readonly disabled: boolean;
|
|
6935
|
-
readonly
|
|
6936
|
-
readonly openOnHover: boolean;
|
|
6937
|
-
readonly openDelay: number;
|
|
7278
|
+
readonly align: "top" | "bottom" | "start" | "end" | "center";
|
|
6938
7279
|
readonly closeDelay: number;
|
|
6939
|
-
readonly
|
|
6940
|
-
readonly
|
|
6941
|
-
|
|
6942
|
-
|
|
7280
|
+
readonly openDelay: number;
|
|
7281
|
+
readonly transition: string | (import('vue').TransitionProps & {
|
|
7282
|
+
is?: import('vue').Component | undefined;
|
|
7283
|
+
});
|
|
7284
|
+
readonly coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
7285
|
+
readonly position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
6943
7286
|
readonly origin: string;
|
|
6944
7287
|
readonly viewportMargin: string | number | unknown[];
|
|
6945
|
-
readonly
|
|
6946
|
-
|
|
6947
|
-
|
|
7288
|
+
readonly zIndex: string | number;
|
|
7289
|
+
readonly scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
7290
|
+
readonly contentStyles: import('vue').CSSProperties;
|
|
7291
|
+
readonly openOnHover: boolean;
|
|
7292
|
+
readonly contained: boolean;
|
|
6948
7293
|
readonly preventClip: boolean;
|
|
6949
7294
|
readonly openOnClickBase: boolean;
|
|
6950
|
-
readonly
|
|
6951
|
-
readonly
|
|
7295
|
+
readonly base?: import('../layer/base').BaseType;
|
|
7296
|
+
readonly modelValue?: boolean | undefined;
|
|
6952
7297
|
readonly width?: string | number | undefined;
|
|
6953
7298
|
readonly height?: string | number | undefined;
|
|
6954
|
-
readonly
|
|
6955
|
-
readonly classes?: string |
|
|
7299
|
+
readonly theme?: string | undefined;
|
|
7300
|
+
readonly classes?: string | Record<string, any> | string[] | undefined;
|
|
7301
|
+
readonly minWidth?: string | number | undefined;
|
|
7302
|
+
readonly offset?: string | number | number[] | undefined;
|
|
7303
|
+
readonly minHeight?: string | number | undefined;
|
|
7304
|
+
readonly maxWidth?: string | number | undefined;
|
|
7305
|
+
readonly maxHeight?: string | number | undefined;
|
|
7306
|
+
readonly closeClickContent?: boolean | undefined;
|
|
6956
7307
|
readonly scrim?: boolean | undefined;
|
|
6957
7308
|
readonly scrimOpacity?: number | undefined;
|
|
6958
7309
|
readonly eager?: boolean | undefined;
|
|
6959
|
-
readonly contentClasses?: string |
|
|
7310
|
+
readonly contentClasses?: string | Record<string, any> | string[] | undefined;
|
|
6960
7311
|
readonly closeClickScrim?: boolean | undefined;
|
|
6961
|
-
readonly offset?: string | number | string[] | undefined;
|
|
6962
|
-
readonly minWidth?: string | number | undefined;
|
|
6963
|
-
readonly maxWidth?: string | number | undefined;
|
|
6964
|
-
readonly minHeight?: string | number | undefined;
|
|
6965
|
-
readonly maxHeight?: string | number | undefined;
|
|
6966
7312
|
readonly preventCloseBubble?: boolean | undefined;
|
|
6967
|
-
readonly menuClasses?: string |
|
|
7313
|
+
readonly menuClasses?: string | Record<string, any> | string[] | undefined;
|
|
6968
7314
|
readonly closeCondition?: boolean | Function | undefined;
|
|
6969
7315
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6970
7316
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
6971
|
-
|
|
7317
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
7318
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & Readonly<import('vue').ExtractPropTypes<{
|
|
6972
7319
|
transition: {
|
|
6973
7320
|
default: string;
|
|
6974
|
-
type: PropType<string | (import(
|
|
6975
|
-
is?: import(
|
|
7321
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
7322
|
+
is?: import('vue').Component | undefined;
|
|
6976
7323
|
})>;
|
|
6977
7324
|
};
|
|
6978
7325
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -6982,19 +7329,27 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
6982
7329
|
minHeight: PropType<string | number>;
|
|
6983
7330
|
height: PropType<string | number>;
|
|
6984
7331
|
maxHeight: PropType<string | number>;
|
|
7332
|
+
scrollStrategy: Omit<{
|
|
7333
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
7334
|
+
default: string;
|
|
7335
|
+
validator: (val: any) => boolean;
|
|
7336
|
+
}, "default" | "type"> & {
|
|
7337
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
7338
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
7339
|
+
};
|
|
6985
7340
|
coordinateStrategy: Omit<{
|
|
6986
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
7341
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
6987
7342
|
default: string;
|
|
6988
|
-
}, "
|
|
6989
|
-
type: PropType<
|
|
6990
|
-
default:
|
|
7343
|
+
}, "default" | "type"> & {
|
|
7344
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
7345
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
6991
7346
|
};
|
|
6992
7347
|
position: {
|
|
6993
|
-
type: PropType<"default" | "top" | "
|
|
7348
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
6994
7349
|
default: string;
|
|
6995
7350
|
};
|
|
6996
7351
|
align: {
|
|
6997
|
-
type: PropType<"top" | "
|
|
7352
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
6998
7353
|
default: string;
|
|
6999
7354
|
};
|
|
7000
7355
|
origin: {
|
|
@@ -7002,13 +7357,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
7002
7357
|
default: string;
|
|
7003
7358
|
};
|
|
7004
7359
|
offset: {
|
|
7005
|
-
type: PropType<string | number |
|
|
7360
|
+
type: PropType<string | number | number[]>;
|
|
7006
7361
|
};
|
|
7007
7362
|
viewportMargin: {
|
|
7008
7363
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
7009
7364
|
default: number;
|
|
7010
7365
|
};
|
|
7011
|
-
|
|
7366
|
+
closeClickContent: {
|
|
7367
|
+
type: PropType<boolean>;
|
|
7368
|
+
};
|
|
7369
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
7012
7370
|
theme: PropType<string>;
|
|
7013
7371
|
modelValue: {
|
|
7014
7372
|
type: PropType<boolean>;
|
|
@@ -7023,16 +7381,16 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
7023
7381
|
type: PropType<boolean>;
|
|
7024
7382
|
};
|
|
7025
7383
|
classes: {
|
|
7026
|
-
type: PropType<string |
|
|
7384
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
7027
7385
|
};
|
|
7028
7386
|
contentClasses: {
|
|
7029
|
-
type: PropType<string |
|
|
7387
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
7030
7388
|
};
|
|
7031
7389
|
closeClickScrim: {
|
|
7032
7390
|
type: PropType<boolean>;
|
|
7033
7391
|
};
|
|
7034
7392
|
contentStyles: {
|
|
7035
|
-
type: PropType<import(
|
|
7393
|
+
type: PropType<import('vue').CSSProperties>;
|
|
7036
7394
|
default: () => void;
|
|
7037
7395
|
};
|
|
7038
7396
|
disabled: {
|
|
@@ -7055,8 +7413,9 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
7055
7413
|
type: PropType<string | number>;
|
|
7056
7414
|
default: number;
|
|
7057
7415
|
};
|
|
7416
|
+
contained: BooleanConstructor;
|
|
7058
7417
|
menuClasses: {
|
|
7059
|
-
type: PropType<string |
|
|
7418
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
7060
7419
|
};
|
|
7061
7420
|
openOnClickBase: {
|
|
7062
7421
|
type: PropType<boolean>;
|
|
@@ -7073,7 +7432,8 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
7073
7432
|
}>> & {
|
|
7074
7433
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7075
7434
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
7076
|
-
|
|
7435
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
7436
|
+
}, "disabled" | "align" | "closeDelay" | "openDelay" | "transition" | "coordinateStrategy" | "position" | "origin" | "viewportMargin" | "zIndex" | "scrollStrategy" | "contentStyles" | "openOnHover" | "contained" | "preventClip" | "openOnClickBase" | "closeCondition">>;
|
|
7077
7437
|
};
|
|
7078
7438
|
maxHeight: {
|
|
7079
7439
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -7097,28 +7457,28 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
7097
7457
|
"onClick:item"?: ((item: any, e: MouseEvent) => any) | undefined;
|
|
7098
7458
|
}, {
|
|
7099
7459
|
type: string;
|
|
7460
|
+
multiple: boolean;
|
|
7461
|
+
returnItem: boolean;
|
|
7462
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
7100
7463
|
variation: string;
|
|
7464
|
+
focused: boolean;
|
|
7465
|
+
maxErrors: string | number;
|
|
7101
7466
|
displayTag: string;
|
|
7102
7467
|
autoSelect: boolean;
|
|
7103
7468
|
floating: boolean;
|
|
7104
7469
|
floated: boolean;
|
|
7105
|
-
maxErrors: string | number;
|
|
7106
|
-
focused: boolean;
|
|
7107
7470
|
tabindex: string;
|
|
7108
|
-
openDelay: number;
|
|
7109
7471
|
closeDelay: number;
|
|
7110
|
-
|
|
7111
|
-
|
|
7472
|
+
openDelay: number;
|
|
7473
|
+
maxHeight: string | number;
|
|
7474
|
+
position: NonNullable<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
7112
7475
|
origin: string;
|
|
7113
7476
|
viewportMargin: string | number | unknown[];
|
|
7114
|
-
maxHeight: string | number;
|
|
7115
7477
|
items: any[];
|
|
7116
7478
|
itemKey: string;
|
|
7117
7479
|
itemText: string;
|
|
7118
7480
|
itemChildren: NonNullable<string | boolean>;
|
|
7119
|
-
returnItem: boolean;
|
|
7120
7481
|
dropdownIcon: YIconIconProp;
|
|
7121
|
-
multiple: boolean;
|
|
7122
7482
|
weakEquals: boolean;
|
|
7123
7483
|
valueEquals: SelectEquals;
|
|
7124
7484
|
defaultSelect: boolean;
|