yuyeon 0.0.46 → 0.0.47-rc.3
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 +1607 -1570
- package/dist/yuyeon.umd.cjs +5 -5
- package/lib/components/layer/YLayer.mjs +5 -3
- package/lib/components/layer/YLayer.mjs.map +1 -1
- package/lib/components/layer/base.mjs +40 -5
- package/lib/components/layer/base.mjs.map +1 -1
- package/lib/components/pagination/YPagination.mjs +13 -1
- package/lib/components/pagination/YPagination.mjs.map +1 -1
- package/lib/composables/coordinate/arrangement.mjs +1 -1
- package/lib/composables/coordinate/arrangement.mjs.map +1 -1
- package/lib/composables/coordinate/levitation.mjs +15 -10
- package/lib/composables/coordinate/levitation.mjs.map +1 -1
- package/lib/composables/coordinate/types.mjs.map +1 -1
- package/package.json +1 -1
- package/types/components/dialog/YDialog.d.ts +9 -0
- package/types/components/layer/YLayer.d.ts +7 -0
- package/types/components/layer/base.d.ts +11 -4
- package/types/components/menu/YMenu.d.ts +5 -0
- package/types/components/pagination/YPagination.d.ts +7 -0
- package/types/components/select/YSelect.d.ts +21 -0
- package/types/components/tooltip/YTooltip.d.ts +4 -0
- package/types/composables/coordinate/types.d.ts +1 -1
|
@@ -14,6 +14,7 @@ export declare const pressYDialogPropsOptions: <Defaults extends {
|
|
|
14
14
|
openOnHover?: unknown;
|
|
15
15
|
openDelay?: unknown;
|
|
16
16
|
closeDelay?: unknown;
|
|
17
|
+
base?: unknown;
|
|
17
18
|
coordinateStrategy?: unknown;
|
|
18
19
|
position?: unknown;
|
|
19
20
|
align?: unknown;
|
|
@@ -145,6 +146,10 @@ export declare const pressYDialogPropsOptions: <Defaults extends {
|
|
|
145
146
|
type: PropType<unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"]>;
|
|
146
147
|
default: unknown extends Defaults["closeDelay"] ? number : number | Defaults["closeDelay"];
|
|
147
148
|
};
|
|
149
|
+
base: unknown extends Defaults["base"] ? PropType<import("../layer/base").BaseType> : {
|
|
150
|
+
type: PropType<unknown extends Defaults["base"] ? import("../layer/base").BaseType : Defaults["base"] | NonNullable<import("../layer/base").BaseType>>;
|
|
151
|
+
default: unknown extends Defaults["base"] ? import("../layer/base").BaseType : Defaults["base"] | NonNullable<import("../layer/base").BaseType>;
|
|
152
|
+
};
|
|
148
153
|
coordinateStrategy: unknown extends Defaults["coordinateStrategy"] ? {
|
|
149
154
|
type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
|
|
150
155
|
default: string;
|
|
@@ -309,6 +314,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
309
314
|
type: PropType<number>;
|
|
310
315
|
default: number;
|
|
311
316
|
};
|
|
317
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
312
318
|
coordinateStrategy: {
|
|
313
319
|
type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
|
|
314
320
|
default: string;
|
|
@@ -384,6 +390,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
384
390
|
type: NumberConstructor;
|
|
385
391
|
default: number;
|
|
386
392
|
};
|
|
393
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
387
394
|
transition: {
|
|
388
395
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
389
396
|
is?: import("vue").Component | undefined;
|
|
@@ -2050,6 +2057,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
2050
2057
|
type: NumberConstructor;
|
|
2051
2058
|
default: number;
|
|
2052
2059
|
};
|
|
2060
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
2053
2061
|
transition: {
|
|
2054
2062
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
2055
2063
|
is?: import("vue").Component | undefined;
|
|
@@ -2170,6 +2178,7 @@ export declare const YDialog: import("vue").DefineComponent<{
|
|
|
2170
2178
|
type: PropType<number>;
|
|
2171
2179
|
default: number;
|
|
2172
2180
|
};
|
|
2181
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
2173
2182
|
coordinateStrategy: {
|
|
2174
2183
|
type: PropType<"levitation" | "arrangement" | import("../../composables/coordinate").CoordinateStrategyFn>;
|
|
2175
2184
|
default: string;
|
|
@@ -12,6 +12,7 @@ export declare const pressYLayerProps: <Defaults extends {
|
|
|
12
12
|
origin?: unknown;
|
|
13
13
|
offset?: unknown;
|
|
14
14
|
viewportMargin?: unknown;
|
|
15
|
+
base?: unknown;
|
|
15
16
|
transition?: unknown;
|
|
16
17
|
theme?: unknown;
|
|
17
18
|
modelValue?: unknown;
|
|
@@ -109,6 +110,10 @@ export declare const pressYLayerProps: <Defaults extends {
|
|
|
109
110
|
type: PropType<unknown extends Defaults["viewportMargin"] ? number : number | Defaults["viewportMargin"]>;
|
|
110
111
|
default: unknown extends Defaults["viewportMargin"] ? number : number | Defaults["viewportMargin"];
|
|
111
112
|
};
|
|
113
|
+
base: unknown extends Defaults["base"] ? PropType<import("./base").BaseType> : {
|
|
114
|
+
type: PropType<unknown extends Defaults["base"] ? import("./base").BaseType : NonNullable<import("./base").BaseType> | Defaults["base"]>;
|
|
115
|
+
default: unknown extends Defaults["base"] ? import("./base").BaseType : NonNullable<import("./base").BaseType> | Defaults["base"];
|
|
116
|
+
};
|
|
112
117
|
transition: unknown extends Defaults["transition"] ? {
|
|
113
118
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
114
119
|
is?: import("vue").Component | undefined;
|
|
@@ -272,6 +277,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
272
277
|
type: NumberConstructor;
|
|
273
278
|
default: number;
|
|
274
279
|
};
|
|
280
|
+
base: PropType<import("./base").BaseType>;
|
|
275
281
|
transition: {
|
|
276
282
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
277
283
|
is?: import("vue").Component | undefined;
|
|
@@ -1938,6 +1944,7 @@ export declare const YLayer: import("vue").DefineComponent<{
|
|
|
1938
1944
|
type: NumberConstructor;
|
|
1939
1945
|
default: number;
|
|
1940
1946
|
};
|
|
1947
|
+
base: PropType<import("./base").BaseType>;
|
|
1941
1948
|
transition: {
|
|
1942
1949
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
1943
1950
|
is?: import("vue").Component | undefined;
|
|
@@ -1,13 +1,20 @@
|
|
|
1
|
+
import { ComponentPublicInstance, PropType } from 'vue';
|
|
2
|
+
export type BaseType = string | Element | ComponentPublicInstance | [x: number, y: number] | undefined;
|
|
1
3
|
export declare const pressBasePropsOptions: <Defaults extends {
|
|
2
4
|
base?: unknown;
|
|
3
5
|
} = {}>(defaults?: Defaults | undefined) => {
|
|
4
|
-
base: unknown extends Defaults["base"] ?
|
|
5
|
-
type:
|
|
6
|
-
default: unknown extends Defaults["base"] ?
|
|
6
|
+
base: unknown extends Defaults["base"] ? PropType<BaseType> : {
|
|
7
|
+
type: PropType<unknown extends Defaults["base"] ? BaseType : NonNullable<BaseType> | Defaults["base"]>;
|
|
8
|
+
default: unknown extends Defaults["base"] ? BaseType : NonNullable<BaseType> | Defaults["base"];
|
|
7
9
|
};
|
|
8
10
|
};
|
|
9
|
-
|
|
11
|
+
interface BaseProps {
|
|
12
|
+
base: BaseType;
|
|
13
|
+
}
|
|
14
|
+
export declare function useBase(props: BaseProps): {
|
|
10
15
|
base$: import("vue").Ref<any>;
|
|
11
16
|
baseEl: import("vue").Ref<HTMLElement | undefined>;
|
|
12
17
|
baseSlot: import("vue").Ref<any>;
|
|
18
|
+
base: import("vue").ComputedRef<any>;
|
|
13
19
|
};
|
|
20
|
+
export {};
|
|
@@ -36,6 +36,7 @@ export declare const YMenuPropOptions: {
|
|
|
36
36
|
type: NumberConstructor;
|
|
37
37
|
default: number;
|
|
38
38
|
};
|
|
39
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
39
40
|
transition: {
|
|
40
41
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
41
42
|
is?: import("vue").Component | undefined;
|
|
@@ -146,6 +147,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
146
147
|
type: NumberConstructor;
|
|
147
148
|
default: number;
|
|
148
149
|
};
|
|
150
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
149
151
|
theme: PropType<string>;
|
|
150
152
|
modelValue: {
|
|
151
153
|
type: PropType<boolean>;
|
|
@@ -237,6 +239,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
237
239
|
type: NumberConstructor;
|
|
238
240
|
default: number;
|
|
239
241
|
};
|
|
242
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
240
243
|
transition: {
|
|
241
244
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
242
245
|
is?: import("vue").Component | undefined;
|
|
@@ -1906,6 +1909,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
1906
1909
|
type: NumberConstructor;
|
|
1907
1910
|
default: number;
|
|
1908
1911
|
};
|
|
1912
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
1909
1913
|
transition: {
|
|
1910
1914
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
1911
1915
|
is?: import("vue").Component | undefined;
|
|
@@ -2028,6 +2032,7 @@ export declare const YMenu: import("vue").DefineComponent<{
|
|
|
2028
2032
|
type: NumberConstructor;
|
|
2029
2033
|
default: number;
|
|
2030
2034
|
};
|
|
2035
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
2031
2036
|
theme: PropType<string>;
|
|
2032
2037
|
modelValue: {
|
|
2033
2038
|
type: PropType<boolean>;
|
|
@@ -5,6 +5,7 @@ export declare const pressYPaginationProps: <Defaults extends {
|
|
|
5
5
|
disabled?: unknown;
|
|
6
6
|
length?: unknown;
|
|
7
7
|
totalVisible?: unknown;
|
|
8
|
+
maxVisible?: unknown;
|
|
8
9
|
showEndButton?: unknown;
|
|
9
10
|
gap?: unknown;
|
|
10
11
|
color?: unknown;
|
|
@@ -52,6 +53,10 @@ export declare const pressYPaginationProps: <Defaults extends {
|
|
|
52
53
|
type: PropType<unknown extends Defaults["totalVisible"] ? string | number : NonNullable<string | number> | Defaults["totalVisible"]>;
|
|
53
54
|
default: unknown extends Defaults["totalVisible"] ? string | number : NonNullable<string | number> | Defaults["totalVisible"];
|
|
54
55
|
};
|
|
56
|
+
maxVisible: unknown extends Defaults["maxVisible"] ? (StringConstructor | NumberConstructor)[] : {
|
|
57
|
+
type: PropType<unknown extends Defaults["maxVisible"] ? string | number : NonNullable<string | number> | Defaults["maxVisible"]>;
|
|
58
|
+
default: unknown extends Defaults["maxVisible"] ? string | number : NonNullable<string | number> | Defaults["maxVisible"];
|
|
59
|
+
};
|
|
55
60
|
showEndButton: unknown extends Defaults["showEndButton"] ? BooleanConstructor : {
|
|
56
61
|
type: PropType<unknown extends Defaults["showEndButton"] ? boolean : boolean | Defaults["showEndButton"]>;
|
|
57
62
|
default: unknown extends Defaults["showEndButton"] ? boolean : boolean | Defaults["showEndButton"];
|
|
@@ -105,6 +110,7 @@ export declare const YPagination: import("vue").DefineComponent<{
|
|
|
105
110
|
validator: (val: number) => boolean;
|
|
106
111
|
};
|
|
107
112
|
totalVisible: (StringConstructor | NumberConstructor)[];
|
|
113
|
+
maxVisible: (StringConstructor | NumberConstructor)[];
|
|
108
114
|
showEndButton: BooleanConstructor;
|
|
109
115
|
gap: {
|
|
110
116
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -142,6 +148,7 @@ export declare const YPagination: import("vue").DefineComponent<{
|
|
|
142
148
|
validator: (val: number) => boolean;
|
|
143
149
|
};
|
|
144
150
|
totalVisible: (StringConstructor | NumberConstructor)[];
|
|
151
|
+
maxVisible: (StringConstructor | NumberConstructor)[];
|
|
145
152
|
showEndButton: BooleanConstructor;
|
|
146
153
|
gap: {
|
|
147
154
|
type: (StringConstructor | NumberConstructor)[];
|
|
@@ -129,6 +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 base?: import("../layer/base").BaseType;
|
|
132
133
|
readonly offset?: string | number | string[] | undefined;
|
|
133
134
|
readonly minWidth?: string | number | undefined;
|
|
134
135
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -211,6 +212,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
211
212
|
readonly eager?: boolean | undefined;
|
|
212
213
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
213
214
|
readonly closeClickScrim?: boolean | undefined;
|
|
215
|
+
readonly base?: import("../layer/base").BaseType;
|
|
214
216
|
readonly offset?: string | number | string[] | undefined;
|
|
215
217
|
readonly minWidth?: string | number | undefined;
|
|
216
218
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -293,6 +295,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
293
295
|
readonly eager?: boolean | undefined;
|
|
294
296
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
295
297
|
readonly closeClickScrim?: boolean | undefined;
|
|
298
|
+
readonly base?: import("../layer/base").BaseType;
|
|
296
299
|
readonly offset?: string | number | string[] | undefined;
|
|
297
300
|
readonly minWidth?: string | number | undefined;
|
|
298
301
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -373,6 +376,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
373
376
|
readonly eager?: boolean | undefined;
|
|
374
377
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
375
378
|
readonly closeClickScrim?: boolean | undefined;
|
|
379
|
+
readonly base?: import("../layer/base").BaseType;
|
|
376
380
|
readonly offset?: string | number | string[] | undefined;
|
|
377
381
|
readonly minWidth?: string | number | undefined;
|
|
378
382
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -454,6 +458,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
454
458
|
readonly eager?: boolean | undefined;
|
|
455
459
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
456
460
|
readonly closeClickScrim?: boolean | undefined;
|
|
461
|
+
readonly base?: import("../layer/base").BaseType;
|
|
457
462
|
readonly offset?: string | number | string[] | undefined;
|
|
458
463
|
readonly minWidth?: string | number | undefined;
|
|
459
464
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -534,6 +539,7 @@ export declare const pressSelectPropsOptions: <Defaults extends {
|
|
|
534
539
|
readonly eager?: boolean | undefined;
|
|
535
540
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
536
541
|
readonly closeClickScrim?: boolean | undefined;
|
|
542
|
+
readonly base?: import("../layer/base").BaseType;
|
|
537
543
|
readonly offset?: string | number | string[] | undefined;
|
|
538
544
|
readonly minWidth?: string | number | undefined;
|
|
539
545
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1002,6 +1008,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1002
1008
|
readonly eager?: boolean | undefined;
|
|
1003
1009
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1004
1010
|
readonly closeClickScrim?: boolean | undefined;
|
|
1011
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1005
1012
|
readonly offset?: string | number | string[] | undefined;
|
|
1006
1013
|
readonly minWidth?: string | number | undefined;
|
|
1007
1014
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1084,6 +1091,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1084
1091
|
readonly eager?: boolean | undefined;
|
|
1085
1092
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1086
1093
|
readonly closeClickScrim?: boolean | undefined;
|
|
1094
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1087
1095
|
readonly offset?: string | number | string[] | undefined;
|
|
1088
1096
|
readonly minWidth?: string | number | undefined;
|
|
1089
1097
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1166,6 +1174,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1166
1174
|
readonly eager?: boolean | undefined;
|
|
1167
1175
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1168
1176
|
readonly closeClickScrim?: boolean | undefined;
|
|
1177
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1169
1178
|
readonly offset?: string | number | string[] | undefined;
|
|
1170
1179
|
readonly minWidth?: string | number | undefined;
|
|
1171
1180
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1246,6 +1255,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1246
1255
|
readonly eager?: boolean | undefined;
|
|
1247
1256
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1248
1257
|
readonly closeClickScrim?: boolean | undefined;
|
|
1258
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1249
1259
|
readonly offset?: string | number | string[] | undefined;
|
|
1250
1260
|
readonly minWidth?: string | number | undefined;
|
|
1251
1261
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1327,6 +1337,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1327
1337
|
readonly eager?: boolean | undefined;
|
|
1328
1338
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1329
1339
|
readonly closeClickScrim?: boolean | undefined;
|
|
1340
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1330
1341
|
readonly offset?: string | number | string[] | undefined;
|
|
1331
1342
|
readonly minWidth?: string | number | undefined;
|
|
1332
1343
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1407,6 +1418,7 @@ export declare const pressYSelectPropsOptions: <Defaults extends {
|
|
|
1407
1418
|
readonly eager?: boolean | undefined;
|
|
1408
1419
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1409
1420
|
readonly closeClickScrim?: boolean | undefined;
|
|
1421
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1410
1422
|
readonly offset?: string | number | string[] | undefined;
|
|
1411
1423
|
readonly minWidth?: string | number | undefined;
|
|
1412
1424
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1650,6 +1662,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1650
1662
|
readonly eager?: boolean | undefined;
|
|
1651
1663
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1652
1664
|
readonly closeClickScrim?: boolean | undefined;
|
|
1665
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1653
1666
|
readonly offset?: string | number | string[] | undefined;
|
|
1654
1667
|
readonly minWidth?: string | number | undefined;
|
|
1655
1668
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1758,6 +1771,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1758
1771
|
readonly eager?: boolean | undefined;
|
|
1759
1772
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
1760
1773
|
readonly closeClickScrim?: boolean | undefined;
|
|
1774
|
+
readonly base?: import("../layer/base").BaseType;
|
|
1761
1775
|
readonly offset?: string | number | string[] | undefined;
|
|
1762
1776
|
readonly minWidth?: string | number | undefined;
|
|
1763
1777
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -1863,6 +1877,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1863
1877
|
type: NumberConstructor;
|
|
1864
1878
|
default: number;
|
|
1865
1879
|
};
|
|
1880
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
1866
1881
|
theme: PropType<string>;
|
|
1867
1882
|
modelValue: {
|
|
1868
1883
|
type: PropType<boolean>;
|
|
@@ -1954,6 +1969,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
1954
1969
|
type: NumberConstructor;
|
|
1955
1970
|
default: number;
|
|
1956
1971
|
};
|
|
1972
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
1957
1973
|
transition: {
|
|
1958
1974
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
1959
1975
|
is?: import("vue").Component | undefined;
|
|
@@ -3620,6 +3636,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3620
3636
|
type: NumberConstructor;
|
|
3621
3637
|
default: number;
|
|
3622
3638
|
};
|
|
3639
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
3623
3640
|
transition: {
|
|
3624
3641
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
3625
3642
|
is?: import("vue").Component | undefined;
|
|
@@ -3776,6 +3793,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3776
3793
|
type: NumberConstructor;
|
|
3777
3794
|
default: number;
|
|
3778
3795
|
};
|
|
3796
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
3779
3797
|
theme: PropType<string>;
|
|
3780
3798
|
modelValue: {
|
|
3781
3799
|
type: PropType<boolean>;
|
|
@@ -3867,6 +3885,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
3867
3885
|
type: NumberConstructor;
|
|
3868
3886
|
default: number;
|
|
3869
3887
|
};
|
|
3888
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
3870
3889
|
transition: {
|
|
3871
3890
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
3872
3891
|
is?: import("vue").Component | undefined;
|
|
@@ -5533,6 +5552,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5533
5552
|
type: NumberConstructor;
|
|
5534
5553
|
default: number;
|
|
5535
5554
|
};
|
|
5555
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
5536
5556
|
transition: {
|
|
5537
5557
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
5538
5558
|
is?: import("vue").Component | undefined;
|
|
@@ -5767,6 +5787,7 @@ export declare const YSelect: import("vue").DefineComponent<{
|
|
|
5767
5787
|
readonly eager?: boolean | undefined;
|
|
5768
5788
|
readonly contentClasses?: string | string[] | Record<string, any> | undefined;
|
|
5769
5789
|
readonly closeClickScrim?: boolean | undefined;
|
|
5790
|
+
readonly base?: import("../layer/base").BaseType;
|
|
5770
5791
|
readonly offset?: string | number | string[] | undefined;
|
|
5771
5792
|
readonly minWidth?: string | number | undefined;
|
|
5772
5793
|
readonly maxWidth?: string | number | undefined;
|
|
@@ -47,6 +47,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
47
47
|
type: NumberConstructor;
|
|
48
48
|
default: number;
|
|
49
49
|
};
|
|
50
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
50
51
|
theme: PropType<string>;
|
|
51
52
|
modelValue: {
|
|
52
53
|
type: PropType<boolean>;
|
|
@@ -131,6 +132,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
131
132
|
type: NumberConstructor;
|
|
132
133
|
default: number;
|
|
133
134
|
};
|
|
135
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
134
136
|
transition: {
|
|
135
137
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
136
138
|
is?: import("vue").Component | undefined;
|
|
@@ -1797,6 +1799,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
1797
1799
|
type: NumberConstructor;
|
|
1798
1800
|
default: number;
|
|
1799
1801
|
};
|
|
1802
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
1800
1803
|
transition: {
|
|
1801
1804
|
type: PropType<string | (import("vue").TransitionProps & {
|
|
1802
1805
|
is?: import("vue").Component | undefined;
|
|
@@ -1916,6 +1919,7 @@ export declare const YTooltip: import("vue").DefineComponent<{
|
|
|
1916
1919
|
type: NumberConstructor;
|
|
1917
1920
|
default: number;
|
|
1918
1921
|
};
|
|
1922
|
+
base: PropType<import("../layer/base").BaseType>;
|
|
1919
1923
|
theme: PropType<string>;
|
|
1920
1924
|
modelValue: {
|
|
1921
1925
|
type: PropType<boolean>;
|