yuyeon 0.1.0-rc.2 → 0.1.0-rc.20
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 +4816 -4204
- 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/date-picker/YDatePicker.mjs +1 -0
- package/lib/components/date-picker/YDatePicker.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 +4 -0
- 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.mjs +6 -6
- package/lib/components/input/YInput.mjs.map +1 -1
- package/lib/components/input/YInput.scss +2 -3
- 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 +35 -13
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/layer/base.mjs +6 -2
- 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 +4 -10
- package/lib/components/menu/YMenu.mjs.map +1 -1
- package/lib/components/select/YSelect.mjs +55 -10
- package/lib/components/select/YSelect.mjs.map +1 -1
- package/lib/components/switch/YSwitch.mjs +2 -1
- package/lib/components/switch/YSwitch.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 +25 -1
- package/lib/components/table/YDataTableRow.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/types/common.mjs.map +1 -1
- package/lib/components/table/types/header.mjs.map +1 -1
- package/lib/components/text-ellipsis/YTextEllipsis.mjs +61 -0
- package/lib/components/text-ellipsis/YTextEllipsis.mjs.map +1 -0
- package/lib/components/text-ellipsis/YTextEllipsis.scss +43 -0
- package/lib/components/text-ellipsis/index.mjs +2 -0
- package/lib/components/text-ellipsis/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 +13 -23
- 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/package.json +11 -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 +47 -41
- 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 -334
- package/types/components/divider/YDivider.d.ts +4 -3
- package/types/components/dropdown/YDropdown.d.ts +495 -61
- package/types/components/field-input/YFieldInput.d.ts +29 -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 +23 -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 -105
- package/types/components/layer/active-stack.d.ts +3 -2
- package/types/components/layer/base.d.ts +8 -6
- 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 +166 -124
- 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 +1254 -942
- package/types/components/snackbar/YSnackbar.d.ts +12 -11
- 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 +63 -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 +63 -62
- package/types/components/table/YTable.d.ts +7 -6
- package/types/components/table/composibles/header.d.ts +10 -9
- 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 +4 -3
- 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 +15 -0
- package/types/components/text-ellipsis/index.d.ts +1 -0
- package/types/components/text-highlighter/YTextHighlighter.d.ts +3 -2
- package/types/components/text-highlighter/index.d.ts +1 -0
- package/types/components/textarea/YTextarea.d.ts +41 -39
- package/types/components/toggle-button/YToggleButton.d.ts +1 -0
- package/types/components/tooltip/YTooltip.d.ts +1975 -103
- 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 +4 -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/reactivity.d.ts +3 -2
- package/types/util/vue-component.d.ts +4 -3
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { PropType, SlotsType } from 'vue';
|
|
2
|
+
|
|
2
3
|
export declare const YMenuPropOptions: {
|
|
3
4
|
preventCloseBubble: PropType<boolean>;
|
|
4
5
|
minWidth: PropType<string | number>;
|
|
@@ -7,19 +8,24 @@ export declare const YMenuPropOptions: {
|
|
|
7
8
|
minHeight: PropType<string | number>;
|
|
8
9
|
height: PropType<string | number>;
|
|
9
10
|
maxHeight: PropType<string | number>;
|
|
11
|
+
scrollStrategy: {
|
|
12
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
13
|
+
default: string;
|
|
14
|
+
validator: (val: any) => boolean;
|
|
15
|
+
};
|
|
10
16
|
coordinateStrategy: Omit<{
|
|
11
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
17
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
12
18
|
default: string;
|
|
13
|
-
}, "
|
|
14
|
-
type: PropType<string | import(
|
|
15
|
-
default: string | import(
|
|
19
|
+
}, "default" | "type"> & {
|
|
20
|
+
type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
21
|
+
default: string | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
16
22
|
};
|
|
17
23
|
position: {
|
|
18
|
-
type: PropType<"default" | "top" | "
|
|
24
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
19
25
|
default: string;
|
|
20
26
|
};
|
|
21
27
|
align: {
|
|
22
|
-
type: PropType<"top" | "
|
|
28
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
23
29
|
default: string;
|
|
24
30
|
};
|
|
25
31
|
origin: {
|
|
@@ -27,19 +33,19 @@ export declare const YMenuPropOptions: {
|
|
|
27
33
|
default: string;
|
|
28
34
|
};
|
|
29
35
|
offset: {
|
|
30
|
-
|
|
31
|
-
* # Component
|
|
32
|
-
*/
|
|
33
|
-
type: PropType<string | number | string[]>;
|
|
36
|
+
type: PropType<string | number | number[]>;
|
|
34
37
|
};
|
|
35
38
|
viewportMargin: {
|
|
36
39
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
37
40
|
default: number;
|
|
38
41
|
};
|
|
39
|
-
|
|
42
|
+
closeClickContent: {
|
|
43
|
+
type: PropType<boolean>;
|
|
44
|
+
};
|
|
45
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
40
46
|
transition: {
|
|
41
|
-
type: PropType<string | (import(
|
|
42
|
-
is?: import(
|
|
47
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
48
|
+
is?: import('vue').Component | undefined;
|
|
43
49
|
})>;
|
|
44
50
|
default: string;
|
|
45
51
|
};
|
|
@@ -57,16 +63,16 @@ export declare const YMenuPropOptions: {
|
|
|
57
63
|
type: PropType<boolean>;
|
|
58
64
|
};
|
|
59
65
|
classes: {
|
|
60
|
-
type: PropType<string |
|
|
66
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
61
67
|
};
|
|
62
68
|
contentClasses: {
|
|
63
|
-
type: PropType<string |
|
|
69
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
64
70
|
};
|
|
65
71
|
closeClickScrim: {
|
|
66
72
|
type: PropType<boolean>;
|
|
67
73
|
};
|
|
68
74
|
contentStyles: {
|
|
69
|
-
type: PropType<import(
|
|
75
|
+
type: PropType<import('vue').CSSProperties>;
|
|
70
76
|
default: () => void;
|
|
71
77
|
};
|
|
72
78
|
disabled: {
|
|
@@ -89,8 +95,9 @@ export declare const YMenuPropOptions: {
|
|
|
89
95
|
type: PropType<string | number>;
|
|
90
96
|
default: number;
|
|
91
97
|
};
|
|
98
|
+
contained: BooleanConstructor;
|
|
92
99
|
menuClasses: {
|
|
93
|
-
type: PropType<string |
|
|
100
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
94
101
|
};
|
|
95
102
|
openOnClickBase: {
|
|
96
103
|
type: PropType<boolean>;
|
|
@@ -108,11 +115,11 @@ export declare const YMenuPropOptions: {
|
|
|
108
115
|
/**
|
|
109
116
|
* # Component
|
|
110
117
|
*/
|
|
111
|
-
export declare const YMenu: import(
|
|
118
|
+
export declare const YMenu: import('vue').DefineComponent<{
|
|
112
119
|
transition: {
|
|
113
120
|
default: string;
|
|
114
|
-
type: PropType<string | (import(
|
|
115
|
-
is?: import(
|
|
121
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
122
|
+
is?: import('vue').Component | undefined;
|
|
116
123
|
})>;
|
|
117
124
|
};
|
|
118
125
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -122,19 +129,24 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
122
129
|
minHeight: PropType<string | number>;
|
|
123
130
|
height: PropType<string | number>;
|
|
124
131
|
maxHeight: PropType<string | number>;
|
|
132
|
+
scrollStrategy: {
|
|
133
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
134
|
+
default: string;
|
|
135
|
+
validator: (val: any) => boolean;
|
|
136
|
+
};
|
|
125
137
|
coordinateStrategy: Omit<{
|
|
126
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
138
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
127
139
|
default: string;
|
|
128
|
-
}, "
|
|
129
|
-
type: PropType<string | import(
|
|
130
|
-
default: string | import(
|
|
140
|
+
}, "default" | "type"> & {
|
|
141
|
+
type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
142
|
+
default: string | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
131
143
|
};
|
|
132
144
|
position: {
|
|
133
|
-
type: PropType<"default" | "top" | "
|
|
145
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
134
146
|
default: string;
|
|
135
147
|
};
|
|
136
148
|
align: {
|
|
137
|
-
type: PropType<"top" | "
|
|
149
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
138
150
|
default: string;
|
|
139
151
|
};
|
|
140
152
|
origin: {
|
|
@@ -142,16 +154,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
142
154
|
default: string;
|
|
143
155
|
};
|
|
144
156
|
offset: {
|
|
145
|
-
|
|
146
|
-
* # Component
|
|
147
|
-
*/
|
|
148
|
-
type: PropType<string | number | string[]>;
|
|
157
|
+
type: PropType<string | number | number[]>;
|
|
149
158
|
};
|
|
150
159
|
viewportMargin: {
|
|
151
160
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
152
161
|
default: number;
|
|
153
162
|
};
|
|
154
|
-
|
|
163
|
+
closeClickContent: {
|
|
164
|
+
type: PropType<boolean>;
|
|
165
|
+
};
|
|
166
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
155
167
|
theme: PropType<string>;
|
|
156
168
|
modelValue: {
|
|
157
169
|
type: PropType<boolean>;
|
|
@@ -166,16 +178,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
166
178
|
type: PropType<boolean>;
|
|
167
179
|
};
|
|
168
180
|
classes: {
|
|
169
|
-
type: PropType<string |
|
|
181
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
170
182
|
};
|
|
171
183
|
contentClasses: {
|
|
172
|
-
type: PropType<string |
|
|
184
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
173
185
|
};
|
|
174
186
|
closeClickScrim: {
|
|
175
187
|
type: PropType<boolean>;
|
|
176
188
|
};
|
|
177
189
|
contentStyles: {
|
|
178
|
-
type: PropType<import(
|
|
190
|
+
type: PropType<import('vue').CSSProperties>;
|
|
179
191
|
default: () => void;
|
|
180
192
|
};
|
|
181
193
|
disabled: {
|
|
@@ -198,8 +210,9 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
198
210
|
type: PropType<string | number>;
|
|
199
211
|
default: number;
|
|
200
212
|
};
|
|
213
|
+
contained: BooleanConstructor;
|
|
201
214
|
menuClasses: {
|
|
202
|
-
type: PropType<string |
|
|
215
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
203
216
|
};
|
|
204
217
|
openOnClickBase: {
|
|
205
218
|
type: PropType<boolean>;
|
|
@@ -214,23 +227,28 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
214
227
|
default: boolean;
|
|
215
228
|
};
|
|
216
229
|
}, {
|
|
217
|
-
layer$: import(
|
|
230
|
+
layer$: import('vue').Ref<import('vue').DefineComponent<{
|
|
218
231
|
minWidth: PropType<string | number>;
|
|
219
232
|
width: PropType<string | number>;
|
|
220
233
|
maxWidth: PropType<string | number>;
|
|
221
234
|
minHeight: PropType<string | number>;
|
|
222
235
|
height: PropType<string | number>;
|
|
223
236
|
maxHeight: PropType<string | number>;
|
|
237
|
+
scrollStrategy: {
|
|
238
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
239
|
+
default: string;
|
|
240
|
+
validator: (val: any) => boolean;
|
|
241
|
+
};
|
|
224
242
|
coordinateStrategy: {
|
|
225
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
243
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
226
244
|
default: string;
|
|
227
245
|
};
|
|
228
246
|
position: {
|
|
229
|
-
type: PropType<"default" | "top" | "
|
|
247
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
230
248
|
default: string;
|
|
231
249
|
};
|
|
232
250
|
align: {
|
|
233
|
-
type: PropType<"top" | "
|
|
251
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
234
252
|
default: string;
|
|
235
253
|
};
|
|
236
254
|
origin: {
|
|
@@ -238,19 +256,19 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
238
256
|
default: string;
|
|
239
257
|
};
|
|
240
258
|
offset: {
|
|
241
|
-
|
|
242
|
-
* # Component
|
|
243
|
-
*/
|
|
244
|
-
type: PropType<string | number | string[]>;
|
|
259
|
+
type: PropType<string | number | number[]>;
|
|
245
260
|
};
|
|
246
261
|
viewportMargin: {
|
|
247
262
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
248
263
|
default: number;
|
|
249
264
|
};
|
|
250
|
-
|
|
265
|
+
closeClickContent: {
|
|
266
|
+
type: PropType<boolean>;
|
|
267
|
+
};
|
|
268
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
251
269
|
transition: {
|
|
252
|
-
type: PropType<string | (import(
|
|
253
|
-
is?: import(
|
|
270
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
271
|
+
is?: import('vue').Component | undefined;
|
|
254
272
|
})>;
|
|
255
273
|
default: string;
|
|
256
274
|
};
|
|
@@ -268,16 +286,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
268
286
|
type: PropType<boolean>;
|
|
269
287
|
};
|
|
270
288
|
classes: {
|
|
271
|
-
type: PropType<string |
|
|
289
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
272
290
|
};
|
|
273
291
|
contentClasses: {
|
|
274
|
-
type: PropType<string |
|
|
292
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
275
293
|
};
|
|
276
294
|
closeClickScrim: {
|
|
277
295
|
type: PropType<boolean>;
|
|
278
296
|
};
|
|
279
297
|
contentStyles: {
|
|
280
|
-
type: PropType<import(
|
|
298
|
+
type: PropType<import('vue').CSSProperties>;
|
|
281
299
|
default: () => void;
|
|
282
300
|
};
|
|
283
301
|
disabled: {
|
|
@@ -300,6 +318,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
300
318
|
type: PropType<string | number>;
|
|
301
319
|
default: number;
|
|
302
320
|
};
|
|
321
|
+
contained: BooleanConstructor;
|
|
303
322
|
modal: PropType<boolean>;
|
|
304
323
|
}, {
|
|
305
324
|
complementClickOption: {
|
|
@@ -307,21 +326,22 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
307
326
|
determine?: ((event: Event) => boolean) | undefined;
|
|
308
327
|
include?: (() => (HTMLElement | undefined)[]) | undefined;
|
|
309
328
|
};
|
|
310
|
-
layerGroup: import(
|
|
311
|
-
active: import(
|
|
312
|
-
finish: import(
|
|
313
|
-
rendered: import(
|
|
314
|
-
lazyValue: import(
|
|
329
|
+
layerGroup: import('vue').ComputedRef<HTMLElement>;
|
|
330
|
+
active: import('vue').WritableComputedRef<boolean>;
|
|
331
|
+
finish: import('vue').ShallowRef<boolean>;
|
|
332
|
+
rendered: import('vue').ComputedRef<boolean>;
|
|
333
|
+
lazyValue: import('vue').ComputedRef<any>;
|
|
315
334
|
onAfterUpdate: () => void;
|
|
316
|
-
scrim$: import(
|
|
317
|
-
content$: import(
|
|
318
|
-
base$: import(
|
|
319
|
-
baseEl: import(
|
|
320
|
-
|
|
335
|
+
scrim$: import('vue').Ref<HTMLElement | undefined>;
|
|
336
|
+
content$: import('vue').Ref<HTMLElement | undefined>;
|
|
337
|
+
base$: import('vue').Ref<any>;
|
|
338
|
+
baseEl: import('vue').Ref<HTMLElement | undefined>;
|
|
339
|
+
baseFromSlotEl: import('vue').ComputedRef<any>;
|
|
340
|
+
polyTransitionBindProps: import('vue').ComputedRef<{
|
|
321
341
|
is: any;
|
|
322
342
|
transitionProps: any;
|
|
323
343
|
}>;
|
|
324
|
-
coordinateStyles: import(
|
|
344
|
+
coordinateStyles: import('vue').Ref<{
|
|
325
345
|
[x: `--${string}`]: string | number | undefined;
|
|
326
346
|
accentColor?: import("csstype").Property.AccentColor | undefined;
|
|
327
347
|
alignContent?: import("csstype").Property.AlignContent | undefined;
|
|
@@ -698,7 +718,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
698
718
|
writingMode?: import("csstype").Property.WritingMode | undefined;
|
|
699
719
|
zIndex?: import("csstype").Property.ZIndex | undefined;
|
|
700
720
|
zoom?: import("csstype").Property.Zoom | undefined;
|
|
701
|
-
all?: import(
|
|
721
|
+
all?: import('csstype').Globals | undefined;
|
|
702
722
|
animation?: import("csstype").Property.Animation<string & {}> | undefined;
|
|
703
723
|
animationRange?: import("csstype").Property.AnimationRange<string | number> | undefined;
|
|
704
724
|
background?: import("csstype").Property.Background<string | number> | undefined;
|
|
@@ -1916,28 +1936,33 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1916
1936
|
"vector-effect"?: import("csstype").Property.VectorEffect | undefined;
|
|
1917
1937
|
}>;
|
|
1918
1938
|
layerGroupState: WeakMap<HTMLElement, Set<any>>;
|
|
1919
|
-
getActiveLayers: () => import(
|
|
1920
|
-
}, unknown, {}, {}, import(
|
|
1939
|
+
getActiveLayers: () => import('vue').ComponentInternalInstance[];
|
|
1940
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
1921
1941
|
'update:modelValue': (value: boolean) => true;
|
|
1922
1942
|
'click:complement': (mouseEvent: MouseEvent) => true;
|
|
1923
1943
|
afterLeave: () => true;
|
|
1924
|
-
}, string, import(
|
|
1944
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1925
1945
|
minWidth: PropType<string | number>;
|
|
1926
1946
|
width: PropType<string | number>;
|
|
1927
1947
|
maxWidth: PropType<string | number>;
|
|
1928
1948
|
minHeight: PropType<string | number>;
|
|
1929
1949
|
height: PropType<string | number>;
|
|
1930
1950
|
maxHeight: PropType<string | number>;
|
|
1951
|
+
scrollStrategy: {
|
|
1952
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
1953
|
+
default: string;
|
|
1954
|
+
validator: (val: any) => boolean;
|
|
1955
|
+
};
|
|
1931
1956
|
coordinateStrategy: {
|
|
1932
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
1957
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
1933
1958
|
default: string;
|
|
1934
1959
|
};
|
|
1935
1960
|
position: {
|
|
1936
|
-
type: PropType<"default" | "top" | "
|
|
1961
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
1937
1962
|
default: string;
|
|
1938
1963
|
};
|
|
1939
1964
|
align: {
|
|
1940
|
-
type: PropType<"top" | "
|
|
1965
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
1941
1966
|
default: string;
|
|
1942
1967
|
};
|
|
1943
1968
|
origin: {
|
|
@@ -1945,19 +1970,19 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1945
1970
|
default: string;
|
|
1946
1971
|
};
|
|
1947
1972
|
offset: {
|
|
1948
|
-
|
|
1949
|
-
* # Component
|
|
1950
|
-
*/
|
|
1951
|
-
type: PropType<string | number | string[]>;
|
|
1973
|
+
type: PropType<string | number | number[]>;
|
|
1952
1974
|
};
|
|
1953
1975
|
viewportMargin: {
|
|
1954
1976
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
1955
1977
|
default: number;
|
|
1956
1978
|
};
|
|
1957
|
-
|
|
1979
|
+
closeClickContent: {
|
|
1980
|
+
type: PropType<boolean>;
|
|
1981
|
+
};
|
|
1982
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
1958
1983
|
transition: {
|
|
1959
|
-
type: PropType<string | (import(
|
|
1960
|
-
is?: import(
|
|
1984
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
1985
|
+
is?: import('vue').Component | undefined;
|
|
1961
1986
|
})>;
|
|
1962
1987
|
default: string;
|
|
1963
1988
|
};
|
|
@@ -1975,16 +2000,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1975
2000
|
type: PropType<boolean>;
|
|
1976
2001
|
};
|
|
1977
2002
|
classes: {
|
|
1978
|
-
type: PropType<string |
|
|
2003
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1979
2004
|
};
|
|
1980
2005
|
contentClasses: {
|
|
1981
|
-
type: PropType<string |
|
|
2006
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
1982
2007
|
};
|
|
1983
2008
|
closeClickScrim: {
|
|
1984
2009
|
type: PropType<boolean>;
|
|
1985
2010
|
};
|
|
1986
2011
|
contentStyles: {
|
|
1987
|
-
type: PropType<import(
|
|
2012
|
+
type: PropType<import('vue').CSSProperties>;
|
|
1988
2013
|
default: () => void;
|
|
1989
2014
|
};
|
|
1990
2015
|
disabled: {
|
|
@@ -2007,6 +2032,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2007
2032
|
type: PropType<string | number>;
|
|
2008
2033
|
default: number;
|
|
2009
2034
|
};
|
|
2035
|
+
contained: BooleanConstructor;
|
|
2010
2036
|
modal: PropType<boolean>;
|
|
2011
2037
|
}>> & {
|
|
2012
2038
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
@@ -2014,36 +2040,40 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2014
2040
|
"onClick:complement"?: ((mouseEvent: MouseEvent) => any) | undefined;
|
|
2015
2041
|
}, {
|
|
2016
2042
|
disabled: boolean;
|
|
2017
|
-
|
|
2018
|
-
openOnHover: boolean;
|
|
2019
|
-
openDelay: number;
|
|
2043
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2020
2044
|
closeDelay: number;
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2045
|
+
openDelay: number;
|
|
2046
|
+
transition: string | (import('vue').TransitionProps & {
|
|
2047
|
+
is?: import('vue').Component | undefined;
|
|
2048
|
+
});
|
|
2049
|
+
coordinateStrategy: "levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
2050
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2025
2051
|
origin: string;
|
|
2026
2052
|
viewportMargin: string | number | unknown[];
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2053
|
+
zIndex: string | number;
|
|
2054
|
+
scrollStrategy: "close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition";
|
|
2055
|
+
contentStyles: import('vue').CSSProperties;
|
|
2056
|
+
openOnHover: boolean;
|
|
2057
|
+
contained: boolean;
|
|
2058
|
+
}, SlotsType<{
|
|
2031
2059
|
base: any;
|
|
2032
2060
|
default: any;
|
|
2033
2061
|
}>> | undefined>;
|
|
2034
|
-
baseEl: import(
|
|
2035
|
-
classes: import(
|
|
2062
|
+
baseEl: import('vue').ComputedRef<any>;
|
|
2063
|
+
classes: import('vue').ComputedRef<{
|
|
2036
2064
|
'y-menu': boolean;
|
|
2037
2065
|
}>;
|
|
2038
|
-
children: import(
|
|
2039
|
-
parent: import(
|
|
2040
|
-
active: import(
|
|
2041
|
-
|
|
2042
|
-
}
|
|
2066
|
+
children: import('vue').ShallowRef<any[]>;
|
|
2067
|
+
parent: import('../layer/active-stack').ActiveStackProvide | null;
|
|
2068
|
+
active: import('vue').Ref<any> & {
|
|
2069
|
+
readonly rxValue: any;
|
|
2070
|
+
};
|
|
2071
|
+
hovered: import('vue').ComputedRef<boolean>;
|
|
2072
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("update:modelValue" | "afterLeave" | "hoverContent")[], "update:modelValue" | "afterLeave" | "hoverContent", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
2043
2073
|
transition: {
|
|
2044
2074
|
default: string;
|
|
2045
|
-
type: PropType<string | (import(
|
|
2046
|
-
is?: import(
|
|
2075
|
+
type: PropType<string | (import('vue').TransitionProps & {
|
|
2076
|
+
is?: import('vue').Component | undefined;
|
|
2047
2077
|
})>;
|
|
2048
2078
|
};
|
|
2049
2079
|
preventCloseBubble: PropType<boolean>;
|
|
@@ -2053,19 +2083,24 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2053
2083
|
minHeight: PropType<string | number>;
|
|
2054
2084
|
height: PropType<string | number>;
|
|
2055
2085
|
maxHeight: PropType<string | number>;
|
|
2086
|
+
scrollStrategy: {
|
|
2087
|
+
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2088
|
+
default: string;
|
|
2089
|
+
validator: (val: any) => boolean;
|
|
2090
|
+
};
|
|
2056
2091
|
coordinateStrategy: Omit<{
|
|
2057
|
-
type: PropType<"levitation" | "arrangement" | import(
|
|
2092
|
+
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2058
2093
|
default: string;
|
|
2059
|
-
}, "
|
|
2060
|
-
type: PropType<string | import(
|
|
2061
|
-
default: string | import(
|
|
2094
|
+
}, "default" | "type"> & {
|
|
2095
|
+
type: PropType<string | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2096
|
+
default: string | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
2062
2097
|
};
|
|
2063
2098
|
position: {
|
|
2064
|
-
type: PropType<"default" | "top" | "
|
|
2099
|
+
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
2065
2100
|
default: string;
|
|
2066
2101
|
};
|
|
2067
2102
|
align: {
|
|
2068
|
-
type: PropType<"top" | "
|
|
2103
|
+
type: PropType<"top" | "bottom" | "start" | "end" | "center">;
|
|
2069
2104
|
default: string;
|
|
2070
2105
|
};
|
|
2071
2106
|
origin: {
|
|
@@ -2073,16 +2108,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2073
2108
|
default: string;
|
|
2074
2109
|
};
|
|
2075
2110
|
offset: {
|
|
2076
|
-
|
|
2077
|
-
* # Component
|
|
2078
|
-
*/
|
|
2079
|
-
type: PropType<string | number | string[]>;
|
|
2111
|
+
type: PropType<string | number | number[]>;
|
|
2080
2112
|
};
|
|
2081
2113
|
viewportMargin: {
|
|
2082
2114
|
type: (ArrayConstructor | StringConstructor | NumberConstructor)[];
|
|
2083
2115
|
default: number;
|
|
2084
2116
|
};
|
|
2085
|
-
|
|
2117
|
+
closeClickContent: {
|
|
2118
|
+
type: PropType<boolean>;
|
|
2119
|
+
};
|
|
2120
|
+
base: PropType<import('../layer/base').BaseType>;
|
|
2086
2121
|
theme: PropType<string>;
|
|
2087
2122
|
modelValue: {
|
|
2088
2123
|
type: PropType<boolean>;
|
|
@@ -2097,16 +2132,16 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2097
2132
|
type: PropType<boolean>;
|
|
2098
2133
|
};
|
|
2099
2134
|
classes: {
|
|
2100
|
-
type: PropType<string |
|
|
2135
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2101
2136
|
};
|
|
2102
2137
|
contentClasses: {
|
|
2103
|
-
type: PropType<string |
|
|
2138
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2104
2139
|
};
|
|
2105
2140
|
closeClickScrim: {
|
|
2106
2141
|
type: PropType<boolean>;
|
|
2107
2142
|
};
|
|
2108
2143
|
contentStyles: {
|
|
2109
|
-
type: PropType<import(
|
|
2144
|
+
type: PropType<import('vue').CSSProperties>;
|
|
2110
2145
|
default: () => void;
|
|
2111
2146
|
};
|
|
2112
2147
|
disabled: {
|
|
@@ -2129,8 +2164,9 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2129
2164
|
type: PropType<string | number>;
|
|
2130
2165
|
default: number;
|
|
2131
2166
|
};
|
|
2167
|
+
contained: BooleanConstructor;
|
|
2132
2168
|
menuClasses: {
|
|
2133
|
-
type: PropType<string |
|
|
2169
|
+
type: PropType<string | Record<string, any> | string[]>;
|
|
2134
2170
|
};
|
|
2135
2171
|
openOnClickBase: {
|
|
2136
2172
|
type: PropType<boolean>;
|
|
@@ -2147,23 +2183,29 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2147
2183
|
}>> & {
|
|
2148
2184
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2149
2185
|
onAfterLeave?: ((...args: any[]) => any) | undefined;
|
|
2186
|
+
onHoverContent?: ((...args: any[]) => any) | undefined;
|
|
2150
2187
|
}, {
|
|
2151
2188
|
disabled: boolean;
|
|
2152
|
-
|
|
2153
|
-
openOnHover: boolean;
|
|
2154
|
-
openDelay: number;
|
|
2189
|
+
align: "top" | "bottom" | "start" | "end" | "center";
|
|
2155
2190
|
closeDelay: number;
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2191
|
+
openDelay: number;
|
|
2192
|
+
transition: string | (import('vue').TransitionProps & {
|
|
2193
|
+
is?: import('vue').Component | undefined;
|
|
2194
|
+
});
|
|
2195
|
+
coordinateStrategy: string | import('../../composables/coordinate').CoordinateStrategyFn;
|
|
2196
|
+
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2160
2197
|
origin: string;
|
|
2161
2198
|
viewportMargin: string | number | unknown[];
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2199
|
+
zIndex: string | number;
|
|
2200
|
+
scrollStrategy: "close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition";
|
|
2201
|
+
contentStyles: import('vue').CSSProperties;
|
|
2202
|
+
openOnHover: boolean;
|
|
2203
|
+
contained: boolean;
|
|
2165
2204
|
preventClip: boolean;
|
|
2166
2205
|
openOnClickBase: boolean;
|
|
2167
2206
|
closeCondition: boolean | Function;
|
|
2168
|
-
}, {
|
|
2207
|
+
}, SlotsType<{
|
|
2208
|
+
default: any;
|
|
2209
|
+
base: any;
|
|
2210
|
+
}>>;
|
|
2169
2211
|
export type YMenu = InstanceType<typeof YMenu>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const YNavigation: import('vue').DefineComponent<{}, import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{}>>, {}, {}>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './YNavigation';
|