yuyeon 0.0.42-rc26 → 0.0.42-rc28
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 +2113 -2114
- package/dist/yuyeon.umd.cjs +6 -6
- package/lib/components/checkbox/YCheckbox.mjs +2 -1
- package/lib/components/checkbox/YCheckbox.mjs.map +1 -1
- package/lib/components/dialog/YDialog.mjs +4 -1
- package/lib/components/dialog/YDialog.mjs.map +1 -1
- package/lib/composables/layer-group.mjs +10 -3
- package/lib/composables/layer-group.mjs.map +1 -1
- package/lib/styles/util/_mixin.scss +0 -1
- package/package.json +1 -1
- package/types/components/dialog/YDialog.d.ts +416 -12
- package/types/components/dropdown/YDropdown.d.ts +6 -6
- package/types/components/layer/YLayer.d.ts +12 -12
- package/types/components/menu/YMenu.d.ts +5 -5
- package/types/components/select/YSelect.d.ts +27 -27
- package/types/components/tooltip/YTooltip.d.ts +9 -9
- package/types/composables/coordinate/index.d.ts +4 -4
|
@@ -129,7 +129,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
129
129
|
readonly eager?: boolean | undefined;
|
|
130
130
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
131
131
|
readonly closeClickScrim?: boolean | undefined;
|
|
132
|
-
readonly offset?: string | number |
|
|
132
|
+
readonly offset?: string | number | string[] | undefined;
|
|
133
133
|
readonly minWidth?: string | number | undefined;
|
|
134
134
|
readonly maxWidth?: string | number | undefined;
|
|
135
135
|
readonly minHeight?: string | number | undefined;
|
|
@@ -211,7 +211,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
211
211
|
readonly eager?: boolean | undefined;
|
|
212
212
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
213
213
|
readonly closeClickScrim?: boolean | undefined;
|
|
214
|
-
readonly offset?: string | number |
|
|
214
|
+
readonly offset?: string | number | string[] | undefined;
|
|
215
215
|
readonly minWidth?: string | number | undefined;
|
|
216
216
|
readonly maxWidth?: string | number | undefined;
|
|
217
217
|
readonly minHeight?: string | number | undefined;
|
|
@@ -293,7 +293,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
293
293
|
readonly eager?: boolean | undefined;
|
|
294
294
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
295
295
|
readonly closeClickScrim?: boolean | undefined;
|
|
296
|
-
readonly offset?: string | number |
|
|
296
|
+
readonly offset?: string | number | string[] | undefined;
|
|
297
297
|
readonly minWidth?: string | number | undefined;
|
|
298
298
|
readonly maxWidth?: string | number | undefined;
|
|
299
299
|
readonly minHeight?: string | number | undefined;
|
|
@@ -373,7 +373,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
373
373
|
readonly eager?: boolean | undefined;
|
|
374
374
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
375
375
|
readonly closeClickScrim?: boolean | undefined;
|
|
376
|
-
readonly offset?: string | number |
|
|
376
|
+
readonly offset?: string | number | string[] | undefined;
|
|
377
377
|
readonly minWidth?: string | number | undefined;
|
|
378
378
|
readonly maxWidth?: string | number | undefined;
|
|
379
379
|
readonly minHeight?: string | number | undefined;
|
|
@@ -454,7 +454,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
454
454
|
readonly eager?: boolean | undefined;
|
|
455
455
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
456
456
|
readonly closeClickScrim?: boolean | undefined;
|
|
457
|
-
readonly offset?: string | number |
|
|
457
|
+
readonly offset?: string | number | string[] | undefined;
|
|
458
458
|
readonly minWidth?: string | number | undefined;
|
|
459
459
|
readonly maxWidth?: string | number | undefined;
|
|
460
460
|
readonly minHeight?: string | number | undefined;
|
|
@@ -534,7 +534,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
534
534
|
readonly eager?: boolean | undefined;
|
|
535
535
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
536
536
|
readonly closeClickScrim?: boolean | undefined;
|
|
537
|
-
readonly offset?: string | number |
|
|
537
|
+
readonly offset?: string | number | string[] | undefined;
|
|
538
538
|
readonly minWidth?: string | number | undefined;
|
|
539
539
|
readonly maxWidth?: string | number | undefined;
|
|
540
540
|
readonly minHeight?: string | number | undefined;
|
|
@@ -679,12 +679,12 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
679
679
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
680
680
|
};
|
|
681
681
|
offset: unknown extends Defaults["offset"] ? {
|
|
682
|
-
type:
|
|
682
|
+
type: PropType<string | number | string[]>;
|
|
683
683
|
} : Omit<{
|
|
684
|
-
type:
|
|
684
|
+
type: PropType<string | number | string[]>;
|
|
685
685
|
}, "type" | "default"> & {
|
|
686
|
-
type: PropType<unknown extends Defaults["offset"] ? string | number |
|
|
687
|
-
default: unknown extends Defaults["offset"] ? string | number |
|
|
686
|
+
type: PropType<unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"]>;
|
|
687
|
+
default: unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"];
|
|
688
688
|
};
|
|
689
689
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
690
690
|
type: NumberConstructor;
|
|
@@ -1002,7 +1002,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1002
1002
|
readonly eager?: boolean | undefined;
|
|
1003
1003
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1004
1004
|
readonly closeClickScrim?: boolean | undefined;
|
|
1005
|
-
readonly offset?: string | number |
|
|
1005
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1006
1006
|
readonly minWidth?: string | number | undefined;
|
|
1007
1007
|
readonly maxWidth?: string | number | undefined;
|
|
1008
1008
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1084,7 +1084,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1084
1084
|
readonly eager?: boolean | undefined;
|
|
1085
1085
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1086
1086
|
readonly closeClickScrim?: boolean | undefined;
|
|
1087
|
-
readonly offset?: string | number |
|
|
1087
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1088
1088
|
readonly minWidth?: string | number | undefined;
|
|
1089
1089
|
readonly maxWidth?: string | number | undefined;
|
|
1090
1090
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1166,7 +1166,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1166
1166
|
readonly eager?: boolean | undefined;
|
|
1167
1167
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1168
1168
|
readonly closeClickScrim?: boolean | undefined;
|
|
1169
|
-
readonly offset?: string | number |
|
|
1169
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1170
1170
|
readonly minWidth?: string | number | undefined;
|
|
1171
1171
|
readonly maxWidth?: string | number | undefined;
|
|
1172
1172
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1246,7 +1246,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1246
1246
|
readonly eager?: boolean | undefined;
|
|
1247
1247
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1248
1248
|
readonly closeClickScrim?: boolean | undefined;
|
|
1249
|
-
readonly offset?: string | number |
|
|
1249
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1250
1250
|
readonly minWidth?: string | number | undefined;
|
|
1251
1251
|
readonly maxWidth?: string | number | undefined;
|
|
1252
1252
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1327,7 +1327,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1327
1327
|
readonly eager?: boolean | undefined;
|
|
1328
1328
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1329
1329
|
readonly closeClickScrim?: boolean | undefined;
|
|
1330
|
-
readonly offset?: string | number |
|
|
1330
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1331
1331
|
readonly minWidth?: string | number | undefined;
|
|
1332
1332
|
readonly maxWidth?: string | number | undefined;
|
|
1333
1333
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1407,7 +1407,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1407
1407
|
readonly eager?: boolean | undefined;
|
|
1408
1408
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1409
1409
|
readonly closeClickScrim?: boolean | undefined;
|
|
1410
|
-
readonly offset?: string | number |
|
|
1410
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1411
1411
|
readonly minWidth?: string | number | undefined;
|
|
1412
1412
|
readonly maxWidth?: string | number | undefined;
|
|
1413
1413
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1518,7 +1518,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1518
1518
|
default: string;
|
|
1519
1519
|
};
|
|
1520
1520
|
offset: {
|
|
1521
|
-
type:
|
|
1521
|
+
type: PropType<string | number | string[]>;
|
|
1522
1522
|
};
|
|
1523
1523
|
viewportMargin: {
|
|
1524
1524
|
type: NumberConstructor;
|
|
@@ -1650,7 +1650,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1650
1650
|
readonly eager?: boolean | undefined;
|
|
1651
1651
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1652
1652
|
readonly closeClickScrim?: boolean | undefined;
|
|
1653
|
-
readonly offset?: string | number |
|
|
1653
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1654
1654
|
readonly minWidth?: string | number | undefined;
|
|
1655
1655
|
readonly maxWidth?: string | number | undefined;
|
|
1656
1656
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1758,7 +1758,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1758
1758
|
readonly eager?: boolean | undefined;
|
|
1759
1759
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1760
1760
|
readonly closeClickScrim?: boolean | undefined;
|
|
1761
|
-
readonly offset?: string | number |
|
|
1761
|
+
readonly offset?: string | number | string[] | undefined;
|
|
1762
1762
|
readonly minWidth?: string | number | undefined;
|
|
1763
1763
|
readonly maxWidth?: string | number | undefined;
|
|
1764
1764
|
readonly minHeight?: string | number | undefined;
|
|
@@ -1857,7 +1857,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1857
1857
|
default: string;
|
|
1858
1858
|
};
|
|
1859
1859
|
offset: {
|
|
1860
|
-
type:
|
|
1860
|
+
type: PropType<string | number | string[]>;
|
|
1861
1861
|
};
|
|
1862
1862
|
viewportMargin: {
|
|
1863
1863
|
type: NumberConstructor;
|
|
@@ -1948,7 +1948,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1948
1948
|
default: string;
|
|
1949
1949
|
};
|
|
1950
1950
|
offset: {
|
|
1951
|
-
type:
|
|
1951
|
+
type: PropType<string | number | string[]>;
|
|
1952
1952
|
};
|
|
1953
1953
|
viewportMargin: {
|
|
1954
1954
|
type: NumberConstructor;
|
|
@@ -3614,7 +3614,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3614
3614
|
default: string;
|
|
3615
3615
|
};
|
|
3616
3616
|
offset: {
|
|
3617
|
-
type:
|
|
3617
|
+
type: PropType<string | number | string[]>;
|
|
3618
3618
|
};
|
|
3619
3619
|
viewportMargin: {
|
|
3620
3620
|
type: NumberConstructor;
|
|
@@ -3770,7 +3770,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3770
3770
|
default: string;
|
|
3771
3771
|
};
|
|
3772
3772
|
offset: {
|
|
3773
|
-
type:
|
|
3773
|
+
type: PropType<string | number | string[]>;
|
|
3774
3774
|
};
|
|
3775
3775
|
viewportMargin: {
|
|
3776
3776
|
type: NumberConstructor;
|
|
@@ -3861,7 +3861,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3861
3861
|
default: string;
|
|
3862
3862
|
};
|
|
3863
3863
|
offset: {
|
|
3864
|
-
type:
|
|
3864
|
+
type: PropType<string | number | string[]>;
|
|
3865
3865
|
};
|
|
3866
3866
|
viewportMargin: {
|
|
3867
3867
|
type: NumberConstructor;
|
|
@@ -5527,7 +5527,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5527
5527
|
default: string;
|
|
5528
5528
|
};
|
|
5529
5529
|
offset: {
|
|
5530
|
-
type:
|
|
5530
|
+
type: PropType<string | number | string[]>;
|
|
5531
5531
|
};
|
|
5532
5532
|
viewportMargin: {
|
|
5533
5533
|
type: NumberConstructor;
|
|
@@ -5635,7 +5635,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5635
5635
|
default: string;
|
|
5636
5636
|
};
|
|
5637
5637
|
offset: {
|
|
5638
|
-
type:
|
|
5638
|
+
type: PropType<string | number | string[]>;
|
|
5639
5639
|
};
|
|
5640
5640
|
viewportMargin: {
|
|
5641
5641
|
type: NumberConstructor;
|
|
@@ -5767,7 +5767,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5767
5767
|
readonly eager?: boolean | undefined;
|
|
5768
5768
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
5769
5769
|
readonly closeClickScrim?: boolean | undefined;
|
|
5770
|
-
readonly offset?: string | number |
|
|
5770
|
+
readonly offset?: string | number | string[] | undefined;
|
|
5771
5771
|
readonly minWidth?: string | number | undefined;
|
|
5772
5772
|
readonly maxWidth?: string | number | undefined;
|
|
5773
5773
|
readonly minHeight?: string | number | undefined;
|
|
@@ -38,10 +38,10 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
38
38
|
default: string;
|
|
39
39
|
};
|
|
40
40
|
offset: Omit<{
|
|
41
|
-
type:
|
|
41
|
+
type: PropType<string | number | string[]>;
|
|
42
42
|
}, "type" | "default"> & {
|
|
43
|
-
type: PropType<NonNullable<string | number |
|
|
44
|
-
default: NonNullable<string | number |
|
|
43
|
+
type: PropType<NonNullable<string | number | string[]>>;
|
|
44
|
+
default: NonNullable<string | number | string[]>;
|
|
45
45
|
};
|
|
46
46
|
viewportMargin: {
|
|
47
47
|
type: NumberConstructor;
|
|
@@ -125,7 +125,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
125
125
|
default: string;
|
|
126
126
|
};
|
|
127
127
|
offset: {
|
|
128
|
-
type:
|
|
128
|
+
type: PropType<string | number | string[]>;
|
|
129
129
|
};
|
|
130
130
|
viewportMargin: {
|
|
131
131
|
type: NumberConstructor;
|
|
@@ -1791,7 +1791,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
1791
1791
|
default: string;
|
|
1792
1792
|
};
|
|
1793
1793
|
offset: {
|
|
1794
|
-
type:
|
|
1794
|
+
type: PropType<string | number | string[]>;
|
|
1795
1795
|
};
|
|
1796
1796
|
viewportMargin: {
|
|
1797
1797
|
type: NumberConstructor;
|
|
@@ -1907,10 +1907,10 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
1907
1907
|
default: string;
|
|
1908
1908
|
};
|
|
1909
1909
|
offset: Omit<{
|
|
1910
|
-
type:
|
|
1910
|
+
type: PropType<string | number | string[]>;
|
|
1911
1911
|
}, "type" | "default"> & {
|
|
1912
|
-
type: PropType<NonNullable<string | number |
|
|
1913
|
-
default: NonNullable<string | number |
|
|
1912
|
+
type: PropType<NonNullable<string | number | string[]>>;
|
|
1913
|
+
default: NonNullable<string | number | string[]>;
|
|
1914
1914
|
};
|
|
1915
1915
|
viewportMargin: {
|
|
1916
1916
|
type: NumberConstructor;
|
|
@@ -1980,7 +1980,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
1980
1980
|
position: "default" | "top" | "end" | "right" | "bottom" | "left" | "start";
|
|
1981
1981
|
align: string;
|
|
1982
1982
|
origin: string;
|
|
1983
|
-
offset: NonNullable<string | number |
|
|
1983
|
+
offset: NonNullable<string | number | string[]>;
|
|
1984
1984
|
viewportMargin: number;
|
|
1985
1985
|
transition: string | (import("vue").TransitionProps & {
|
|
1986
1986
|
is?: import("vue").Component | undefined;
|
|
@@ -53,12 +53,12 @@ export declare const pressCoordinateProps: <Defaults extends {
|
|
|
53
53
|
default: unknown extends Defaults["origin"] ? string : string | Defaults["origin"];
|
|
54
54
|
};
|
|
55
55
|
offset: unknown extends Defaults["offset"] ? {
|
|
56
|
-
type:
|
|
56
|
+
type: PropType<string | number | string[]>;
|
|
57
57
|
} : Omit<{
|
|
58
|
-
type:
|
|
58
|
+
type: PropType<string | number | string[]>;
|
|
59
59
|
}, "type" | "default"> & {
|
|
60
|
-
type: PropType<unknown extends Defaults["offset"] ? string | number |
|
|
61
|
-
default: unknown extends Defaults["offset"] ? string | number |
|
|
60
|
+
type: PropType<unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"]>;
|
|
61
|
+
default: unknown extends Defaults["offset"] ? string | number | string[] : NonNullable<string | number | string[]> | Defaults["offset"];
|
|
62
62
|
};
|
|
63
63
|
viewportMargin: unknown extends Defaults["viewportMargin"] ? {
|
|
64
64
|
type: NumberConstructor;
|