yuyeon 0.1.0-rc.21 → 0.1.0-rc.23
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 +2071 -2065
- package/dist/yuyeon.umd.cjs +11 -11
- package/lib/components/input/YInput.scss +1 -1
- package/lib/components/menu/YMenu.mjs +2 -1
- package/lib/components/menu/YMenu.mjs.map +1 -1
- package/lib/components/snackbar/YSnackbar.mjs +42 -37
- package/lib/components/snackbar/YSnackbar.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/sorting.mjs.map +1 -1
- package/lib/components/tooltip/YTooltip.mjs +1 -0
- package/lib/components/tooltip/YTooltip.mjs.map +1 -1
- package/package.json +1 -1
- package/types/components/dropdown/YDropdown.d.ts +19 -7
- package/types/components/layer/scroll-strategies.d.ts +2 -2
- package/types/components/menu/YMenu.d.ts +20 -11
- package/types/components/select/YSelect.d.ts +162 -111
- package/types/components/snackbar/YSnackbar.d.ts +483 -20
- package/types/components/table/YDataTable.d.ts +176 -14
- package/types/components/table/YDataTableServer.d.ts +176 -14
- package/types/components/table/composibles/header.d.ts +95 -5
- package/types/components/table/composibles/sorting.d.ts +22 -4
- package/types/components/tooltip/YTooltip.d.ts +14 -8
|
@@ -8,17 +8,20 @@ export declare const YMenuPropOptions: {
|
|
|
8
8
|
minHeight: PropType<string | number>;
|
|
9
9
|
height: PropType<string | number>;
|
|
10
10
|
maxHeight: PropType<string | number>;
|
|
11
|
-
scrollStrategy: {
|
|
11
|
+
scrollStrategy: Omit<{
|
|
12
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
13
|
default: string;
|
|
14
14
|
validator: (val: any) => boolean;
|
|
15
|
+
}, "default" | "type"> & {
|
|
16
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
17
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
15
18
|
};
|
|
16
19
|
coordinateStrategy: Omit<{
|
|
17
20
|
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
18
21
|
default: string;
|
|
19
22
|
}, "default" | "type"> & {
|
|
20
|
-
type: PropType<
|
|
21
|
-
default:
|
|
23
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
24
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
22
25
|
};
|
|
23
26
|
position: {
|
|
24
27
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
@@ -129,17 +132,20 @@ export declare const YMenu: import('vue').DefineComponent<{
|
|
|
129
132
|
minHeight: PropType<string | number>;
|
|
130
133
|
height: PropType<string | number>;
|
|
131
134
|
maxHeight: PropType<string | number>;
|
|
132
|
-
scrollStrategy: {
|
|
135
|
+
scrollStrategy: Omit<{
|
|
133
136
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
134
137
|
default: string;
|
|
135
138
|
validator: (val: any) => boolean;
|
|
139
|
+
}, "default" | "type"> & {
|
|
140
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
141
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
136
142
|
};
|
|
137
143
|
coordinateStrategy: Omit<{
|
|
138
144
|
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
139
145
|
default: string;
|
|
140
146
|
}, "default" | "type"> & {
|
|
141
|
-
type: PropType<
|
|
142
|
-
default:
|
|
147
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
148
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
143
149
|
};
|
|
144
150
|
position: {
|
|
145
151
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
@@ -2083,17 +2089,20 @@ export declare const YMenu: import('vue').DefineComponent<{
|
|
|
2083
2089
|
minHeight: PropType<string | number>;
|
|
2084
2090
|
height: PropType<string | number>;
|
|
2085
2091
|
maxHeight: PropType<string | number>;
|
|
2086
|
-
scrollStrategy: {
|
|
2092
|
+
scrollStrategy: Omit<{
|
|
2087
2093
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2088
2094
|
default: string;
|
|
2089
2095
|
validator: (val: any) => boolean;
|
|
2096
|
+
}, "default" | "type"> & {
|
|
2097
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
2098
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2090
2099
|
};
|
|
2091
2100
|
coordinateStrategy: Omit<{
|
|
2092
2101
|
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2093
2102
|
default: string;
|
|
2094
2103
|
}, "default" | "type"> & {
|
|
2095
|
-
type: PropType<
|
|
2096
|
-
default:
|
|
2104
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
2105
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2097
2106
|
};
|
|
2098
2107
|
position: {
|
|
2099
2108
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
@@ -2192,12 +2201,12 @@ export declare const YMenu: import('vue').DefineComponent<{
|
|
|
2192
2201
|
transition: string | (import('vue').TransitionProps & {
|
|
2193
2202
|
is?: import('vue').Component | undefined;
|
|
2194
2203
|
});
|
|
2195
|
-
coordinateStrategy:
|
|
2204
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
2196
2205
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
2197
2206
|
origin: string;
|
|
2198
2207
|
viewportMargin: string | number | unknown[];
|
|
2199
2208
|
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"
|
|
2209
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
2201
2210
|
contentStyles: import('vue').CSSProperties;
|
|
2202
2211
|
openOnHover: boolean;
|
|
2203
2212
|
contained: boolean;
|