@maltjoy/core-vue 3.31.2-next → 3.32.0
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/LICENSE +21 -0
- package/dist/components/JoyDropzone/VJoyDropzone.vue.d.ts +3 -3
- package/dist/components/JoyFunnel/VJoyFunnel.vue.d.ts +6 -2
- package/dist/components/JoyFunnelFooter/VJoyFunnelFooter.vue.d.ts +13 -0
- package/dist/components/JoyProductTour/JoyProductTour.store.d.ts +14 -5
- package/dist/components/JoyProductTour/JoyProductTour.types.d.ts +5 -0
- package/dist/components/JoyProductTour/VJoyProductTour.vue.d.ts +8 -2
- package/dist/components/JoyProductTour/VJoyProductTourInner.vue.d.ts +6 -2
- package/dist/components/JoyProductTourTrigger/VJoyProductTourTrigger.vue.d.ts +40 -14
- package/dist/components/JoyTooltip/VJoyTooltip.vue.d.ts +3 -3
- package/dist/components/index.d.ts +2 -1
- package/dist/components.cjs +1 -1
- package/dist/components.js +51 -50
- package/dist/joy-core-vue-manifest.json +3 -0
- package/dist/main.cjs +1 -1
- package/dist/main.js +100 -98
- package/dist/style-BWowatTf.cjs +16 -0
- package/dist/{style-C-n3gSzF.js → style-CDukoN6C.js} +2173 -2088
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -0
- package/package.json +29 -28
- package/dist/style-By51Dcx1.cjs +0 -16
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2022 maltcommunity / apps
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -35,7 +35,7 @@ declare const _default: <T extends {
|
|
|
35
35
|
};
|
|
36
36
|
emit: (evt: "update:modelValue", modelValue: (File | T)[]) => void;
|
|
37
37
|
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
38
|
-
invalid: import("vue").
|
|
38
|
+
invalid: import("vue").Ref<boolean>;
|
|
39
39
|
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
40
40
|
props: {
|
|
41
41
|
"onUpdate:modelValue"?: ((modelValue: (File | T)[]) => any) | undefined;
|
|
@@ -51,7 +51,7 @@ declare const _default: <T extends {
|
|
|
51
51
|
errorTextFormatAndMaxSize?: string | undefined;
|
|
52
52
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
53
53
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
54
|
-
invalid: import("vue").
|
|
54
|
+
invalid: import("vue").Ref<boolean>;
|
|
55
55
|
}>): void;
|
|
56
56
|
attrs: any;
|
|
57
57
|
slots: Readonly<{
|
|
@@ -92,7 +92,7 @@ declare const _default: <T extends {
|
|
|
92
92
|
errorTextFormatAndMaxSize?: string | undefined;
|
|
93
93
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
94
94
|
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
95
|
-
invalid: import("vue").
|
|
95
|
+
invalid: import("vue").Ref<boolean>;
|
|
96
96
|
}>): void;
|
|
97
97
|
attrs: any;
|
|
98
98
|
slots: Readonly<{
|
|
@@ -47,7 +47,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
47
47
|
'funnel-header': () => any;
|
|
48
48
|
/** Use VJoyStepper here */
|
|
49
49
|
'funnel-stepper'?: (() => any) | undefined;
|
|
50
|
-
/**
|
|
50
|
+
/**
|
|
51
|
+
* Deprecated. Use VJoyFunnelFooter component directly within default slot.
|
|
52
|
+
* */
|
|
51
53
|
'funnel-footer'?: (() => any) | undefined;
|
|
52
54
|
}> & {
|
|
53
55
|
/** Use VJoyTemplate here */
|
|
@@ -56,7 +58,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
56
58
|
'funnel-header': () => any;
|
|
57
59
|
/** Use VJoyStepper here */
|
|
58
60
|
'funnel-stepper'?: (() => any) | undefined;
|
|
59
|
-
/**
|
|
61
|
+
/**
|
|
62
|
+
* Deprecated. Use VJoyFunnelFooter component directly within default slot.
|
|
63
|
+
* */
|
|
60
64
|
'funnel-footer'?: (() => any) | undefined;
|
|
61
65
|
}>;
|
|
62
66
|
export default _default;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>, Readonly<{
|
|
2
|
+
'footer-left': () => any;
|
|
3
|
+
'footer-right': () => any;
|
|
4
|
+
}> & {
|
|
5
|
+
'footer-left': () => any;
|
|
6
|
+
'footer-right': () => any;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -23,6 +23,7 @@ export declare const productTourState: {
|
|
|
23
23
|
readonly spotlightPadding: number;
|
|
24
24
|
readonly spotlightSelector: string;
|
|
25
25
|
readonly icon?: import("@maltjoy/icons").JoyIconsId | undefined;
|
|
26
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
26
27
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
27
28
|
step: {
|
|
28
29
|
type: import("vue").PropType<number>;
|
|
@@ -59,7 +60,9 @@ export declare const productTourState: {
|
|
|
59
60
|
type: import("vue").PropType<string>;
|
|
60
61
|
required: true;
|
|
61
62
|
};
|
|
62
|
-
}
|
|
63
|
+
}>> & {
|
|
64
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
65
|
+
}, "step" | "open" | "steps" | "position" | "maxWidth" | "disableOverlay" | "spotlightPadding">;
|
|
63
66
|
$attrs: {
|
|
64
67
|
[x: string]: unknown;
|
|
65
68
|
};
|
|
@@ -71,7 +74,7 @@ export declare const productTourState: {
|
|
|
71
74
|
}>;
|
|
72
75
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
73
76
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
74
|
-
$emit: (event:
|
|
77
|
+
$emit: (event: "product-tour:hide") => void;
|
|
75
78
|
$el: any;
|
|
76
79
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
77
80
|
step: {
|
|
@@ -109,11 +112,15 @@ export declare const productTourState: {
|
|
|
109
112
|
type: import("vue").PropType<string>;
|
|
110
113
|
required: true;
|
|
111
114
|
};
|
|
112
|
-
}
|
|
115
|
+
}>> & {
|
|
116
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
117
|
+
}, {
|
|
113
118
|
hide: () => void;
|
|
114
119
|
show: () => void;
|
|
115
120
|
isOpen: import("vue").Ref<boolean>;
|
|
116
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
121
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
122
|
+
"product-tour:hide": () => void;
|
|
123
|
+
}, string, {
|
|
117
124
|
step: number;
|
|
118
125
|
open: boolean;
|
|
119
126
|
steps: number;
|
|
@@ -177,7 +184,9 @@ export declare const productTourState: {
|
|
|
177
184
|
type: import("vue").PropType<string>;
|
|
178
185
|
required: true;
|
|
179
186
|
};
|
|
180
|
-
}
|
|
187
|
+
}>> & {
|
|
188
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
189
|
+
}, "hide" | "show" | "isOpen"> & import("vue").ShallowUnwrapRef<{
|
|
181
190
|
hide: () => void;
|
|
182
191
|
show: () => void;
|
|
183
192
|
isOpen: import("vue").Ref<boolean>;
|
|
@@ -19,6 +19,8 @@ export interface VJoyProductTourProps {
|
|
|
19
19
|
spotlightSelector: string;
|
|
20
20
|
}
|
|
21
21
|
export interface VJoyProductTourSlots {
|
|
22
|
+
/** Allows to inject an image above the title */
|
|
23
|
+
'product-tour-banner'?: () => any;
|
|
22
24
|
/** Most of the time we use it to display tags, or short content */
|
|
23
25
|
'product-tour-preheader'?: () => any;
|
|
24
26
|
/** Title of the component */
|
|
@@ -30,3 +32,6 @@ export interface VJoyProductTourSlots {
|
|
|
30
32
|
/** To display the main CTA. Component hiding needs to be made manually */
|
|
31
33
|
'product-tour-next'?: () => any;
|
|
32
34
|
}
|
|
35
|
+
export interface VJoyProductToursEvents {
|
|
36
|
+
'product-tour:hide': [];
|
|
37
|
+
}
|
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
import { VJoyProductTourProps, VJoyProductTourSlots } from './JoyProductTour.types';
|
|
2
2
|
declare function show(): void;
|
|
3
|
-
declare function hide(
|
|
3
|
+
declare function hide(options?: {
|
|
4
|
+
fireHideEvent: boolean;
|
|
5
|
+
}): void;
|
|
4
6
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<VJoyProductTourProps>, {
|
|
5
7
|
show: typeof show;
|
|
6
8
|
hide: typeof hide;
|
|
7
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
|
+
"product-tour:hide": () => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<VJoyProductTourProps>>> & {
|
|
12
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
13
|
+
}, {}, {}>, Readonly<VJoyProductTourSlots> & VJoyProductTourSlots>;
|
|
8
14
|
export default _default;
|
|
9
15
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
16
|
new (): {
|
|
@@ -13,7 +13,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
hide: typeof hide;
|
|
14
14
|
show: typeof show;
|
|
15
15
|
isOpen: import("vue").Ref<boolean>;
|
|
16
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
16
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
|
+
"product-tour:hide": () => void;
|
|
18
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<VJoyProductTourProps>, {
|
|
17
19
|
steps: number;
|
|
18
20
|
step: number;
|
|
19
21
|
position: string;
|
|
@@ -21,7 +23,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
21
23
|
maxWidth: number;
|
|
22
24
|
disableOverlay: boolean;
|
|
23
25
|
spotlightPadding: number;
|
|
24
|
-
}
|
|
26
|
+
}>>> & {
|
|
27
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
28
|
+
}, {
|
|
25
29
|
step: number;
|
|
26
30
|
open: boolean;
|
|
27
31
|
steps: number;
|
|
@@ -13,6 +13,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
readonly maxWidth?: number | undefined;
|
|
14
14
|
readonly disableOverlay?: boolean | undefined;
|
|
15
15
|
readonly spotlightPadding?: number | undefined;
|
|
16
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
16
17
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
17
18
|
icon: {
|
|
18
19
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
@@ -42,7 +43,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
42
43
|
type: import("vue").PropType<string>;
|
|
43
44
|
required: true;
|
|
44
45
|
};
|
|
45
|
-
}
|
|
46
|
+
}>> & {
|
|
47
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
48
|
+
}, never>;
|
|
46
49
|
$attrs: {
|
|
47
50
|
[x: string]: unknown;
|
|
48
51
|
};
|
|
@@ -54,7 +57,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
54
57
|
}>;
|
|
55
58
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
56
59
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
57
|
-
$emit: (event:
|
|
60
|
+
$emit: (event: "product-tour:hide") => void;
|
|
58
61
|
$el: any;
|
|
59
62
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
60
63
|
icon: {
|
|
@@ -85,10 +88,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
85
88
|
type: import("vue").PropType<string>;
|
|
86
89
|
required: true;
|
|
87
90
|
};
|
|
88
|
-
}
|
|
91
|
+
}>> & {
|
|
92
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
93
|
+
}, {
|
|
89
94
|
show: () => void;
|
|
90
|
-
hide: (
|
|
91
|
-
|
|
95
|
+
hide: (options?: {
|
|
96
|
+
fireHideEvent: boolean;
|
|
97
|
+
}) => void;
|
|
98
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
99
|
+
"product-tour:hide": () => void;
|
|
100
|
+
}, string, {}, {}, string, {}> & {
|
|
92
101
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
93
102
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
94
103
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -137,9 +146,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
137
146
|
type: import("vue").PropType<string>;
|
|
138
147
|
required: true;
|
|
139
148
|
};
|
|
140
|
-
}
|
|
149
|
+
}>> & {
|
|
150
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
151
|
+
}, "hide" | "show"> & import("vue").ShallowUnwrapRef<{
|
|
141
152
|
show: () => void;
|
|
142
|
-
hide: (
|
|
153
|
+
hide: (options?: {
|
|
154
|
+
fireHideEvent: boolean;
|
|
155
|
+
}) => void;
|
|
143
156
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
144
157
|
$slots: Readonly<import("../JoyProductTour/JoyProductTour.types.js").VJoyProductTourSlots> & import("../JoyProductTour/JoyProductTour.types.js").VJoyProductTourSlots;
|
|
145
158
|
}) | null | undefined;
|
|
@@ -160,6 +173,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
160
173
|
readonly maxWidth?: number | undefined;
|
|
161
174
|
readonly disableOverlay?: boolean | undefined;
|
|
162
175
|
readonly spotlightPadding?: number | undefined;
|
|
176
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
163
177
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
164
178
|
icon: {
|
|
165
179
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
@@ -189,7 +203,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
189
203
|
type: import("vue").PropType<string>;
|
|
190
204
|
required: true;
|
|
191
205
|
};
|
|
192
|
-
}
|
|
206
|
+
}>> & {
|
|
207
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
208
|
+
}, never>;
|
|
193
209
|
$attrs: {
|
|
194
210
|
[x: string]: unknown;
|
|
195
211
|
};
|
|
@@ -201,7 +217,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
201
217
|
}>;
|
|
202
218
|
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
203
219
|
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
|
|
204
|
-
$emit: (event:
|
|
220
|
+
$emit: (event: "product-tour:hide") => void;
|
|
205
221
|
$el: any;
|
|
206
222
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
207
223
|
icon: {
|
|
@@ -232,10 +248,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
232
248
|
type: import("vue").PropType<string>;
|
|
233
249
|
required: true;
|
|
234
250
|
};
|
|
235
|
-
}
|
|
251
|
+
}>> & {
|
|
252
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
253
|
+
}, {
|
|
236
254
|
show: () => void;
|
|
237
|
-
hide: (
|
|
238
|
-
|
|
255
|
+
hide: (options?: {
|
|
256
|
+
fireHideEvent: boolean;
|
|
257
|
+
}) => void;
|
|
258
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
259
|
+
"product-tour:hide": () => void;
|
|
260
|
+
}, string, {}, {}, string, {}> & {
|
|
239
261
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
240
262
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
241
263
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -284,9 +306,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
284
306
|
type: import("vue").PropType<string>;
|
|
285
307
|
required: true;
|
|
286
308
|
};
|
|
287
|
-
}
|
|
309
|
+
}>> & {
|
|
310
|
+
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
311
|
+
}, "hide" | "show"> & import("vue").ShallowUnwrapRef<{
|
|
288
312
|
show: () => void;
|
|
289
|
-
hide: (
|
|
313
|
+
hide: (options?: {
|
|
314
|
+
fireHideEvent: boolean;
|
|
315
|
+
}) => void;
|
|
290
316
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
291
317
|
$slots: Readonly<import("../JoyProductTour/JoyProductTour.types.js").VJoyProductTourSlots> & import("../JoyProductTour/JoyProductTour.types.js").VJoyProductTourSlots;
|
|
292
318
|
}) | null | undefined;
|
|
@@ -11,7 +11,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
11
11
|
};
|
|
12
12
|
/** It will automatically switch to another placement if there is not enough space. Please see https://floating-ui.com/docs/tutorial#placements for available values */
|
|
13
13
|
placement: {
|
|
14
|
-
type: PropType<import("@floating-ui/vue").
|
|
14
|
+
type: PropType<import("@floating-ui/vue").MaybeReadonlyRefOrGetter<import("@floating-ui/vue").Placement | undefined>>;
|
|
15
15
|
default: string;
|
|
16
16
|
};
|
|
17
17
|
/** Mouseenter (default) or click */
|
|
@@ -48,7 +48,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
48
48
|
};
|
|
49
49
|
/** It will automatically switch to another placement if there is not enough space. Please see https://floating-ui.com/docs/tutorial#placements for available values */
|
|
50
50
|
placement: {
|
|
51
|
-
type: PropType<import("@floating-ui/vue").
|
|
51
|
+
type: PropType<import("@floating-ui/vue").MaybeReadonlyRefOrGetter<import("@floating-ui/vue").Placement | undefined>>;
|
|
52
52
|
default: string;
|
|
53
53
|
};
|
|
54
54
|
/** Mouseenter (default) or click */
|
|
@@ -74,7 +74,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
74
74
|
}>>, {
|
|
75
75
|
variant: TJoyTooltipVariants;
|
|
76
76
|
show: boolean;
|
|
77
|
-
placement: import("@floating-ui/vue").
|
|
77
|
+
placement: import("@floating-ui/vue").MaybeReadonlyRefOrGetter<import("@floating-ui/vue").Placement | undefined>;
|
|
78
78
|
event: "click" | "mouseenter";
|
|
79
79
|
delay: number;
|
|
80
80
|
tooltipWidth: number;
|
|
@@ -27,6 +27,7 @@ import { default as VJoyFooter } from './JoyFooter/VJoyFooter.vue';
|
|
|
27
27
|
import { default as VJoyFormError } from './JoyFormError/VJoyFormError.vue';
|
|
28
28
|
import { default as VJoyFormFieldSkeleton } from './JoyFormFieldSkeleton/VJoyFormFieldSkeleton.vue';
|
|
29
29
|
import { default as VJoyFunnel } from './JoyFunnel/VJoyFunnel.vue';
|
|
30
|
+
import { default as VJoyFunnelFooter } from './JoyFunnelFooter/VJoyFunnelFooter.vue';
|
|
30
31
|
import { default as VJoyHeader } from './JoyHeader/VJoyHeader.vue';
|
|
31
32
|
import { default as VJoyHighlight } from './JoyHighlight/VJoyHighlight.vue';
|
|
32
33
|
import { default as VJoyIcon } from './JoyIcon/VJoyIcon.vue';
|
|
@@ -68,4 +69,4 @@ import { default as VJoyToggle } from './JoyToggle/VJoyToggle.vue';
|
|
|
68
69
|
import { default as VJoyTooltip } from './JoyTooltip/VJoyTooltip.vue';
|
|
69
70
|
import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
|
|
70
71
|
import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
|
|
71
|
-
export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFooter, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWrapper, };
|
|
72
|
+
export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDot, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyDropzone, VJoyFilterBar, VJoyFilterBarButton, VJoyFooter, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyFunnelFooter, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProductTour, VJoyProductTourTrigger, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWrapper, };
|
package/dist/components.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-BWowatTf.cjs"),y={install:e=>{typeof window<"u"&&o.createAllSnackbarsContainer(),e.directive("joy-ripple",o.vJoyRipple)}};exports.VJoyAvailability=o.VJoyAvailability;exports.VJoyAvatar=o.VJoyAvatar;exports.VJoyAvatarsList=o.VJoyAvatarsList;exports.VJoyBadge=o.VJoyBadge;exports.VJoyBadgeLevel=o.VJoyBadgeLevel;exports.VJoyBlockSkeleton=o.VJoyBlockSkeleton;exports.VJoyBottomSheet=o.VJoyBottomSheet;exports.VJoyBottomSheetTrigger=o._sfc_main;exports.VJoyButton=o.VJoyButton;exports.VJoyCheckbox=o.VJoyCheckbox;exports.VJoyCollapse=o.VJoyCollapse;exports.VJoyCollapseItem=o.VJoyCollapseItem;exports.VJoyCompanyAvatar=o.VJoyCompanyAvatar;exports.VJoyCounter=o.VJoyCounter;exports.VJoyDialog=o.VJoyDialog;exports.VJoyDialogTrigger=o._sfc_main$1;exports.VJoyDividerCta=o.VJoyDividerCta;exports.VJoyDot=o.VJoyDot;exports.VJoyDrawer=o.VJoyDrawer;exports.VJoyDrawerTrigger=o._sfc_main$2;exports.VJoyDropdown=o.VJoyDropdown;exports.VJoyDropdownList=o.JoyDropdownList;exports.VJoyDropzone=o.VJoyDropzone;exports.VJoyFilterBar=o.VJoyFilterBar;exports.VJoyFilterBarButton=o.VJoyFilterBarButton;exports.VJoyFooter=o.VJoyFooter;exports.VJoyFormError=o.VJoyFormError;exports.VJoyFormFieldSkeleton=o.VJoyFormFieldSkeleton;exports.VJoyFunnel=o.VJoyFunnel;exports.VJoyFunnelFooter=o.VJoyFunnelFooter;exports.VJoyHeader=o.VJoyHeader;exports.VJoyHighlight=o.VJoyHighlight;exports.VJoyIcon=o._sfc_main$3;exports.VJoyIndicator=o.VJoyIndicator;exports.VJoyIndicators=o.VJoyIndicators;exports.VJoyInput=o.VJoyInput;exports.VJoyLabel=o.VJoyLabel;exports.VJoyLink=o.VJoyLink;exports.VJoyMenu=o.VJoyMenu;exports.VJoyMultiCheckbox=o.VJoyMultiCheckbox;exports.VJoyPagination=o.VJoyPagination;exports.VJoyPanel=o.VJoyPanel;exports.VJoyPanelSection=o.VJoyPanelSection;exports.VJoyProductTour=o._sfc_main$4;exports.VJoyProductTourTrigger=o._sfc_main$5;exports.VJoyProgressBar=o.VJoyProgressBar;exports.VJoyRadio=o.VJoyRadio;exports.VJoyRadioGroup=o.VJoyRadioGroup;exports.VJoyRatingStars=o.VJoyRatingStars;exports.VJoyScreenLoader=o.VJoyScreenLoader;exports.VJoySelect=o.VJoySelect;exports.VJoySelectableItem=o.VJoySelectableItem;exports.VJoySelectableItemGroup=o.VJoySelectableItemGroup;exports.VJoySeparator=o.VJoySeparator;exports.VJoySnackbar=o.VJoySnackbar;exports.VJoySpinner=o.VJoySpinner;exports.VJoyStep=o.VJoyStep;exports.VJoyStepper=o.VJoyStepper;exports.VJoyTab=o.VJoyTab;exports.VJoyTabs=o.VJoyTabs;exports.VJoyTag=o.VJoyTag;exports.VJoyTagsInput=o.VJoyTagsInput;exports.VJoyTagsList=o.VJoyTagsList;exports.VJoyTemplate=o.VJoyTemplate;exports.VJoyTemplateShape=o.VJoyTemplateShape;exports.VJoyText=o.VJoyText;exports.VJoyTextarea=o.VJoyTextarea;exports.VJoyToggle=o.VJoyToggle;exports.VJoyTooltip=o.VJoyTooltip;exports.VJoyUserCard=o.VJoyUserCard;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVueLightPlugin=y;
|
package/dist/components.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { V as r, a as t, b as i, c as n, d as l, e as p, f as g, _ as c, g as d, h as u, i as S, j as T, k as m, l as b, m as h, n as
|
|
1
|
+
import { ah as o, ai as s } from "./style-CDukoN6C.js";
|
|
2
|
+
import { V as r, a as t, b as i, c as n, d as l, e as p, f as g, _ as c, g as d, h as u, i as S, j as T, k as m, l as b, m as h, n as k, o as B, p as C, q as D, r as F, s as v, J as I, t as L, u as P, v as f, w, x, y as A, z as R, A as j, B as G, C as H, D as M, E as z, F as E, G as U, H as W, I as q, K, L as N, M as O, N as Q, O as X, P as Y, Q as Z, R as _, S as $, T as aa, U as oa, W as sa, X as ea, Y as ya, Z as Ja, $ as Va, a0 as ra, a1 as ta, a2 as ia, a3 as na, a4 as la, a5 as pa, a6 as ga, a7 as ca, a8 as da, a9 as ua, aa as Sa, ab as Ta, ac as ma, ad as ba, ae as ha, af as ka, ag as Ba, aj as Ca, ak as Da } from "./style-CDukoN6C.js";
|
|
3
3
|
const y = {
|
|
4
4
|
install: (a) => {
|
|
5
5
|
typeof window < "u" && o(), a.directive("joy-ripple", s);
|
|
@@ -22,63 +22,64 @@ export {
|
|
|
22
22
|
m as VJoyCompanyAvatar,
|
|
23
23
|
b as VJoyCounter,
|
|
24
24
|
h as VJoyDialog,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
25
|
+
k as VJoyDialogTrigger,
|
|
26
|
+
B as VJoyDividerCta,
|
|
27
|
+
C as VJoyDot,
|
|
28
28
|
D as VJoyDrawer,
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
29
|
+
F as VJoyDrawerTrigger,
|
|
30
|
+
v as VJoyDropdown,
|
|
31
|
+
I as VJoyDropdownList,
|
|
32
|
+
L as VJoyDropzone,
|
|
33
33
|
P as VJoyFilterBar,
|
|
34
34
|
f as VJoyFilterBarButton,
|
|
35
35
|
w as VJoyFooter,
|
|
36
36
|
x as VJoyFormError,
|
|
37
37
|
A as VJoyFormFieldSkeleton,
|
|
38
38
|
R as VJoyFunnel,
|
|
39
|
-
j as
|
|
40
|
-
G as
|
|
41
|
-
H as
|
|
42
|
-
M as
|
|
43
|
-
z as
|
|
44
|
-
E as
|
|
45
|
-
U as
|
|
46
|
-
W as
|
|
47
|
-
q as
|
|
48
|
-
K as
|
|
49
|
-
N as
|
|
50
|
-
O as
|
|
51
|
-
Q as
|
|
52
|
-
X as
|
|
53
|
-
Y as
|
|
54
|
-
Z as
|
|
55
|
-
_ as
|
|
56
|
-
$ as
|
|
57
|
-
aa as
|
|
58
|
-
oa as
|
|
59
|
-
sa as
|
|
60
|
-
ea as
|
|
61
|
-
ya as
|
|
62
|
-
Ja as
|
|
63
|
-
Va as
|
|
64
|
-
ra as
|
|
65
|
-
ta as
|
|
66
|
-
ia as
|
|
67
|
-
na as
|
|
68
|
-
la as
|
|
69
|
-
pa as
|
|
70
|
-
ga as
|
|
71
|
-
ca as
|
|
72
|
-
da as
|
|
73
|
-
ua as
|
|
74
|
-
Sa as
|
|
75
|
-
Ta as
|
|
76
|
-
ma as
|
|
77
|
-
ba as
|
|
78
|
-
ha as
|
|
39
|
+
j as VJoyFunnelFooter,
|
|
40
|
+
G as VJoyHeader,
|
|
41
|
+
H as VJoyHighlight,
|
|
42
|
+
M as VJoyIcon,
|
|
43
|
+
z as VJoyIndicator,
|
|
44
|
+
E as VJoyIndicators,
|
|
45
|
+
U as VJoyInput,
|
|
46
|
+
W as VJoyLabel,
|
|
47
|
+
q as VJoyLink,
|
|
48
|
+
K as VJoyMenu,
|
|
49
|
+
N as VJoyMultiCheckbox,
|
|
50
|
+
O as VJoyPagination,
|
|
51
|
+
Q as VJoyPanel,
|
|
52
|
+
X as VJoyPanelSection,
|
|
53
|
+
Y as VJoyProductTour,
|
|
54
|
+
Z as VJoyProductTourTrigger,
|
|
55
|
+
_ as VJoyProgressBar,
|
|
56
|
+
$ as VJoyRadio,
|
|
57
|
+
aa as VJoyRadioGroup,
|
|
58
|
+
oa as VJoyRatingStars,
|
|
59
|
+
sa as VJoyScreenLoader,
|
|
60
|
+
ea as VJoySelect,
|
|
61
|
+
ya as VJoySelectableItem,
|
|
62
|
+
Ja as VJoySelectableItemGroup,
|
|
63
|
+
Va as VJoySeparator,
|
|
64
|
+
ra as VJoySnackbar,
|
|
65
|
+
ta as VJoySpinner,
|
|
66
|
+
ia as VJoyStep,
|
|
67
|
+
na as VJoyStepper,
|
|
68
|
+
la as VJoyTab,
|
|
69
|
+
pa as VJoyTabs,
|
|
70
|
+
ga as VJoyTag,
|
|
71
|
+
ca as VJoyTagsInput,
|
|
72
|
+
da as VJoyTagsList,
|
|
73
|
+
ua as VJoyTemplate,
|
|
74
|
+
Sa as VJoyTemplateShape,
|
|
75
|
+
Ta as VJoyText,
|
|
76
|
+
ma as VJoyTextarea,
|
|
77
|
+
ba as VJoyToggle,
|
|
78
|
+
ha as VJoyTooltip,
|
|
79
|
+
ka as VJoyUserCard,
|
|
79
80
|
Ba as VJoyWrapper,
|
|
80
81
|
o as createAllSnackbarsContainer,
|
|
81
82
|
Ca as pushVJoySnackbar,
|
|
82
|
-
|
|
83
|
+
Da as resetCount,
|
|
83
84
|
s as vJoyRipple
|
|
84
85
|
};
|
package/dist/main.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./style-BWowatTf.cjs"),V=Object.freeze(Object.defineProperty({__proto__:null,VJoyAvailability:o.VJoyAvailability,VJoyAvatar:o.VJoyAvatar,VJoyAvatarsList:o.VJoyAvatarsList,VJoyBadge:o.VJoyBadge,VJoyBadgeLevel:o.VJoyBadgeLevel,VJoyBlockSkeleton:o.VJoyBlockSkeleton,VJoyBottomSheet:o.VJoyBottomSheet,VJoyBottomSheetTrigger:o._sfc_main,VJoyButton:o.VJoyButton,VJoyCheckbox:o.VJoyCheckbox,VJoyCollapse:o.VJoyCollapse,VJoyCollapseItem:o.VJoyCollapseItem,VJoyCompanyAvatar:o.VJoyCompanyAvatar,VJoyCounter:o.VJoyCounter,VJoyDialog:o.VJoyDialog,VJoyDialogTrigger:o._sfc_main$1,VJoyDividerCta:o.VJoyDividerCta,VJoyDot:o.VJoyDot,VJoyDrawer:o.VJoyDrawer,VJoyDrawerTrigger:o._sfc_main$2,VJoyDropdown:o.VJoyDropdown,VJoyDropdownList:o.JoyDropdownList,VJoyDropzone:o.VJoyDropzone,VJoyFilterBar:o.VJoyFilterBar,VJoyFilterBarButton:o.VJoyFilterBarButton,VJoyFooter:o.VJoyFooter,VJoyFormError:o.VJoyFormError,VJoyFormFieldSkeleton:o.VJoyFormFieldSkeleton,VJoyFunnel:o.VJoyFunnel,VJoyFunnelFooter:o.VJoyFunnelFooter,VJoyHeader:o.VJoyHeader,VJoyHighlight:o.VJoyHighlight,VJoyIcon:o._sfc_main$3,VJoyIndicator:o.VJoyIndicator,VJoyIndicators:o.VJoyIndicators,VJoyInput:o.VJoyInput,VJoyLabel:o.VJoyLabel,VJoyLink:o.VJoyLink,VJoyMenu:o.VJoyMenu,VJoyMultiCheckbox:o.VJoyMultiCheckbox,VJoyPagination:o.VJoyPagination,VJoyPanel:o.VJoyPanel,VJoyPanelSection:o.VJoyPanelSection,VJoyProductTour:o._sfc_main$4,VJoyProductTourTrigger:o._sfc_main$5,VJoyProgressBar:o.VJoyProgressBar,VJoyRadio:o.VJoyRadio,VJoyRadioGroup:o.VJoyRadioGroup,VJoyRatingStars:o.VJoyRatingStars,VJoyScreenLoader:o.VJoyScreenLoader,VJoySelect:o.VJoySelect,VJoySelectableItem:o.VJoySelectableItem,VJoySelectableItemGroup:o.VJoySelectableItemGroup,VJoySeparator:o.VJoySeparator,VJoySnackbar:o.VJoySnackbar,VJoySpinner:o.VJoySpinner,VJoyStep:o.VJoyStep,VJoyStepper:o.VJoyStepper,VJoyTab:o.VJoyTab,VJoyTabs:o.VJoyTabs,VJoyTag:o.VJoyTag,VJoyTagsInput:o.VJoyTagsInput,VJoyTagsList:o.VJoyTagsList,VJoyTemplate:o.VJoyTemplate,VJoyTemplateShape:o.VJoyTemplateShape,VJoyText:o.VJoyText,VJoyTextarea:o.VJoyTextarea,VJoyToggle:o.VJoyToggle,VJoyTooltip:o.VJoyTooltip,VJoyUserCard:o.VJoyUserCard,VJoyWrapper:o.VJoyWrapper},Symbol.toStringTag,{value:"Module"})),a={install:e=>{Object.entries(V).forEach(([y,J])=>{e.component(y,J)}),typeof window<"u"&&o.createAllSnackbarsContainer(),e.directive("joy-ripple",o.vJoyRipple)}};exports.VJoyAvailability=o.VJoyAvailability;exports.VJoyAvatar=o.VJoyAvatar;exports.VJoyAvatarsList=o.VJoyAvatarsList;exports.VJoyBadge=o.VJoyBadge;exports.VJoyBadgeLevel=o.VJoyBadgeLevel;exports.VJoyBlockSkeleton=o.VJoyBlockSkeleton;exports.VJoyBottomSheet=o.VJoyBottomSheet;exports.VJoyBottomSheetTrigger=o._sfc_main;exports.VJoyButton=o.VJoyButton;exports.VJoyCheckbox=o.VJoyCheckbox;exports.VJoyCollapse=o.VJoyCollapse;exports.VJoyCollapseItem=o.VJoyCollapseItem;exports.VJoyCompanyAvatar=o.VJoyCompanyAvatar;exports.VJoyCounter=o.VJoyCounter;exports.VJoyDialog=o.VJoyDialog;exports.VJoyDialogTrigger=o._sfc_main$1;exports.VJoyDividerCta=o.VJoyDividerCta;exports.VJoyDot=o.VJoyDot;exports.VJoyDrawer=o.VJoyDrawer;exports.VJoyDrawerTrigger=o._sfc_main$2;exports.VJoyDropdown=o.VJoyDropdown;exports.VJoyDropdownList=o.JoyDropdownList;exports.VJoyDropzone=o.VJoyDropzone;exports.VJoyFilterBar=o.VJoyFilterBar;exports.VJoyFilterBarButton=o.VJoyFilterBarButton;exports.VJoyFooter=o.VJoyFooter;exports.VJoyFormError=o.VJoyFormError;exports.VJoyFormFieldSkeleton=o.VJoyFormFieldSkeleton;exports.VJoyFunnel=o.VJoyFunnel;exports.VJoyFunnelFooter=o.VJoyFunnelFooter;exports.VJoyHeader=o.VJoyHeader;exports.VJoyHighlight=o.VJoyHighlight;exports.VJoyIcon=o._sfc_main$3;exports.VJoyIndicator=o.VJoyIndicator;exports.VJoyIndicators=o.VJoyIndicators;exports.VJoyInput=o.VJoyInput;exports.VJoyLabel=o.VJoyLabel;exports.VJoyLink=o.VJoyLink;exports.VJoyMenu=o.VJoyMenu;exports.VJoyMultiCheckbox=o.VJoyMultiCheckbox;exports.VJoyPagination=o.VJoyPagination;exports.VJoyPanel=o.VJoyPanel;exports.VJoyPanelSection=o.VJoyPanelSection;exports.VJoyProductTour=o._sfc_main$4;exports.VJoyProductTourTrigger=o._sfc_main$5;exports.VJoyProgressBar=o.VJoyProgressBar;exports.VJoyRadio=o.VJoyRadio;exports.VJoyRadioGroup=o.VJoyRadioGroup;exports.VJoyRatingStars=o.VJoyRatingStars;exports.VJoyScreenLoader=o.VJoyScreenLoader;exports.VJoySelect=o.VJoySelect;exports.VJoySelectableItem=o.VJoySelectableItem;exports.VJoySelectableItemGroup=o.VJoySelectableItemGroup;exports.VJoySeparator=o.VJoySeparator;exports.VJoySnackbar=o.VJoySnackbar;exports.VJoySpinner=o.VJoySpinner;exports.VJoyStep=o.VJoyStep;exports.VJoyStepper=o.VJoyStepper;exports.VJoyTab=o.VJoyTab;exports.VJoyTabs=o.VJoyTabs;exports.VJoyTag=o.VJoyTag;exports.VJoyTagsInput=o.VJoyTagsInput;exports.VJoyTagsList=o.VJoyTagsList;exports.VJoyTemplate=o.VJoyTemplate;exports.VJoyTemplateShape=o.VJoyTemplateShape;exports.VJoyText=o.VJoyText;exports.VJoyTextarea=o.VJoyTextarea;exports.VJoyToggle=o.VJoyToggle;exports.VJoyTooltip=o.VJoyTooltip;exports.VJoyUserCard=o.VJoyUserCard;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVuePlugin=a;
|