yuyeon 0.1.0-rc.21 → 0.1.0-rc.22
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/yuyeon.js +2071 -2065
- package/dist/yuyeon.umd.cjs +11 -11
- 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
|
@@ -16,17 +16,20 @@ export declare const YTooltip: import('vue').DefineComponent<{
|
|
|
16
16
|
minHeight: PropType<string | number>;
|
|
17
17
|
height: PropType<string | number>;
|
|
18
18
|
maxHeight: PropType<string | number>;
|
|
19
|
-
scrollStrategy: {
|
|
19
|
+
scrollStrategy: Omit<{
|
|
20
20
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
21
21
|
default: string;
|
|
22
22
|
validator: (val: any) => boolean;
|
|
23
|
+
}, "default" | "type"> & {
|
|
24
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
25
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
23
26
|
};
|
|
24
27
|
coordinateStrategy: Omit<{
|
|
25
28
|
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
26
29
|
default: string;
|
|
27
30
|
}, "default" | "type"> & {
|
|
28
|
-
type: PropType<
|
|
29
|
-
default:
|
|
31
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
32
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
30
33
|
};
|
|
31
34
|
position: {
|
|
32
35
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
@@ -3794,17 +3797,20 @@ export declare const YTooltip: import('vue').DefineComponent<{
|
|
|
3794
3797
|
minHeight: PropType<string | number>;
|
|
3795
3798
|
height: PropType<string | number>;
|
|
3796
3799
|
maxHeight: PropType<string | number>;
|
|
3797
|
-
scrollStrategy: {
|
|
3800
|
+
scrollStrategy: Omit<{
|
|
3798
3801
|
type: PropType<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
3799
3802
|
default: string;
|
|
3800
3803
|
validator: (val: any) => boolean;
|
|
3804
|
+
}, "default" | "type"> & {
|
|
3805
|
+
type: PropType<NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">>;
|
|
3806
|
+
default: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
3801
3807
|
};
|
|
3802
3808
|
coordinateStrategy: Omit<{
|
|
3803
3809
|
type: PropType<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
3804
3810
|
default: string;
|
|
3805
3811
|
}, "default" | "type"> & {
|
|
3806
|
-
type: PropType<
|
|
3807
|
-
default:
|
|
3812
|
+
type: PropType<NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>>;
|
|
3813
|
+
default: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
3808
3814
|
};
|
|
3809
3815
|
position: {
|
|
3810
3816
|
type: PropType<"default" | "top" | "bottom" | "start" | "end" | "left" | "right">;
|
|
@@ -3903,12 +3909,12 @@ export declare const YTooltip: import('vue').DefineComponent<{
|
|
|
3903
3909
|
is?: import('vue').Component | undefined;
|
|
3904
3910
|
});
|
|
3905
3911
|
offset: NonNullable<string | number | number[]>;
|
|
3906
|
-
coordinateStrategy:
|
|
3912
|
+
coordinateStrategy: NonNullable<"levitation" | "arrangement" | import('../../composables/coordinate').CoordinateStrategyFn>;
|
|
3907
3913
|
position: "default" | "top" | "bottom" | "start" | "end" | "left" | "right";
|
|
3908
3914
|
origin: string;
|
|
3909
3915
|
viewportMargin: string | number | unknown[];
|
|
3910
3916
|
zIndex: string | number;
|
|
3911
|
-
scrollStrategy: "close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition"
|
|
3917
|
+
scrollStrategy: NonNullable<"close" | "none" | "block" | ((data: import('../layer/scroll-strategies').ScrollStrategyData, props: import('../layer/scroll-strategies').StrategyProps, scope: import('vue').EffectScope) => void) | "reposition">;
|
|
3912
3918
|
contentStyles: import('vue').CSSProperties;
|
|
3913
3919
|
openOnHover: boolean;
|
|
3914
3920
|
contained: boolean;
|