@maltjoy/core-vue 3.35.0 → 3.36.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/dist/components/JoyProductTour/JoyProductTour.store.d.ts +16 -1
- package/dist/components/JoyProductTour/JoyProductTour.types.d.ts +1 -0
- package/dist/components/JoyProductTour/VJoyProductTour.vue.d.ts +17 -3
- package/dist/components/JoyProductTour/VJoyProductTourInner.vue.d.ts +3 -0
- package/dist/components/JoyProductTourTrigger/VJoyProductTourTrigger.vue.d.ts +76 -42
- package/dist/components/JoyStep/VJoyStep.vue.d.ts +9 -0
- package/dist/components/JoyStepper/VJoyStepper.vue.d.ts +19 -0
- package/dist/components/JoyTag/VJoyTag.vue.d.ts +2 -2
- package/dist/components.cjs +1 -1
- package/dist/components.js +2 -2
- package/dist/joy-core-vue-manifest.json +1 -1
- package/dist/main.cjs +1 -1
- package/dist/main.js +2 -2
- package/dist/pages/FunnelAndStepper.vue.d.ts +2 -0
- package/dist/style-DiEVDLd0.cjs +16 -0
- package/dist/{style-Qw6Zqas5.js → style-DqUSTCzR.js} +1321 -1302
- package/dist/style.css +1 -1
- package/package.json +4 -4
- package/dist/style-cjYkNXrS.cjs +0 -16
|
@@ -13,6 +13,7 @@ export declare const productTourState: {
|
|
|
13
13
|
maxWidth: number;
|
|
14
14
|
disableOverlay: boolean;
|
|
15
15
|
spotlightPadding: number;
|
|
16
|
+
closeButton: boolean;
|
|
16
17
|
}> & Omit<{
|
|
17
18
|
readonly step: number;
|
|
18
19
|
readonly open: boolean;
|
|
@@ -22,6 +23,7 @@ export declare const productTourState: {
|
|
|
22
23
|
readonly disableOverlay: boolean;
|
|
23
24
|
readonly spotlightPadding: number;
|
|
24
25
|
readonly spotlightSelector: string;
|
|
26
|
+
readonly closeButton: boolean;
|
|
25
27
|
readonly icon?: import("@maltjoy/icons").JoyIconsId | undefined;
|
|
26
28
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
27
29
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -60,9 +62,13 @@ export declare const productTourState: {
|
|
|
60
62
|
type: import("vue").PropType<string>;
|
|
61
63
|
required: true;
|
|
62
64
|
};
|
|
65
|
+
closeButton: {
|
|
66
|
+
type: import("vue").PropType<boolean>;
|
|
67
|
+
default: boolean;
|
|
68
|
+
};
|
|
63
69
|
}>> & {
|
|
64
70
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
65
|
-
}, "step" | "open" | "steps" | "position" | "maxWidth" | "disableOverlay" | "spotlightPadding">;
|
|
71
|
+
}, "step" | "open" | "steps" | "position" | "maxWidth" | "disableOverlay" | "spotlightPadding" | "closeButton">;
|
|
66
72
|
$attrs: {
|
|
67
73
|
[x: string]: unknown;
|
|
68
74
|
};
|
|
@@ -112,6 +118,10 @@ export declare const productTourState: {
|
|
|
112
118
|
type: import("vue").PropType<string>;
|
|
113
119
|
required: true;
|
|
114
120
|
};
|
|
121
|
+
closeButton: {
|
|
122
|
+
type: import("vue").PropType<boolean>;
|
|
123
|
+
default: boolean;
|
|
124
|
+
};
|
|
115
125
|
}>> & {
|
|
116
126
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
117
127
|
}, {
|
|
@@ -128,6 +138,7 @@ export declare const productTourState: {
|
|
|
128
138
|
maxWidth: number;
|
|
129
139
|
disableOverlay: boolean;
|
|
130
140
|
spotlightPadding: number;
|
|
141
|
+
closeButton: boolean;
|
|
131
142
|
}, {}, string, {}> & {
|
|
132
143
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
133
144
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -184,6 +195,10 @@ export declare const productTourState: {
|
|
|
184
195
|
type: import("vue").PropType<string>;
|
|
185
196
|
required: true;
|
|
186
197
|
};
|
|
198
|
+
closeButton: {
|
|
199
|
+
type: import("vue").PropType<boolean>;
|
|
200
|
+
default: boolean;
|
|
201
|
+
};
|
|
187
202
|
}>> & {
|
|
188
203
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
189
204
|
}, "hide" | "show" | "isOpen"> & import("vue").ShallowUnwrapRef<{
|
|
@@ -3,15 +3,29 @@ declare function show(): void;
|
|
|
3
3
|
declare function hide(options?: {
|
|
4
4
|
fireHideEvent: boolean;
|
|
5
5
|
}): void;
|
|
6
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToOption<VJoyProductTourProps>, {
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<VJoyProductTourProps>, {
|
|
7
|
+
closeButton: boolean;
|
|
8
|
+
}>, {
|
|
7
9
|
show: typeof show;
|
|
8
10
|
hide: typeof hide;
|
|
9
11
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
12
|
"product-tour:hide": () => void;
|
|
11
|
-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToOption<VJoyProductTourProps
|
|
13
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<VJoyProductTourProps>, {
|
|
14
|
+
closeButton: boolean;
|
|
15
|
+
}>>> & {
|
|
12
16
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
13
|
-
}, {
|
|
17
|
+
}, {
|
|
18
|
+
closeButton: boolean;
|
|
19
|
+
}, {}>, Readonly<VJoyProductTourSlots> & VJoyProductTourSlots>;
|
|
14
20
|
export default _default;
|
|
21
|
+
type __VLS_WithDefaults<P, D> = {
|
|
22
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
23
|
+
default: D[K];
|
|
24
|
+
}> : P[K];
|
|
25
|
+
};
|
|
26
|
+
type __VLS_Prettify<T> = {
|
|
27
|
+
[K in keyof T]: T[K];
|
|
28
|
+
} & {};
|
|
15
29
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
16
30
|
new (): {
|
|
17
31
|
$slots: S;
|
|
@@ -9,6 +9,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
9
9
|
maxWidth: number;
|
|
10
10
|
disableOverlay: boolean;
|
|
11
11
|
spotlightPadding: number;
|
|
12
|
+
closeButton: boolean;
|
|
12
13
|
}>, {
|
|
13
14
|
hide: typeof hide;
|
|
14
15
|
show: typeof show;
|
|
@@ -23,6 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
23
24
|
maxWidth: number;
|
|
24
25
|
disableOverlay: boolean;
|
|
25
26
|
spotlightPadding: number;
|
|
27
|
+
closeButton: boolean;
|
|
26
28
|
}>>> & {
|
|
27
29
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
28
30
|
}, {
|
|
@@ -33,6 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
33
35
|
maxWidth: number;
|
|
34
36
|
disableOverlay: boolean;
|
|
35
37
|
spotlightPadding: number;
|
|
38
|
+
closeButton: boolean;
|
|
36
39
|
}, {}>, Readonly<VJoyProductTourSlots> & VJoyProductTourSlots>;
|
|
37
40
|
export default _default;
|
|
38
41
|
type __VLS_WithDefaults<P, D> = {
|
|
@@ -3,8 +3,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
3
3
|
productTour: ({
|
|
4
4
|
$: import("vue").ComponentInternalInstance;
|
|
5
5
|
$data: {};
|
|
6
|
-
$props: Partial<{
|
|
6
|
+
$props: Partial<{
|
|
7
|
+
closeButton: boolean;
|
|
8
|
+
}> & Omit<{
|
|
7
9
|
readonly spotlightSelector: string;
|
|
10
|
+
readonly closeButton: boolean;
|
|
8
11
|
readonly step?: number | undefined;
|
|
9
12
|
readonly icon?: import("@maltjoy/icons").JoyIconsId | undefined;
|
|
10
13
|
readonly open?: boolean | undefined;
|
|
@@ -15,21 +18,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
15
18
|
readonly spotlightPadding?: number | undefined;
|
|
16
19
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
17
20
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
21
|
+
step: {
|
|
22
|
+
type: import("vue").PropType<number>;
|
|
23
|
+
};
|
|
18
24
|
icon: {
|
|
19
25
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
20
26
|
};
|
|
21
|
-
|
|
22
|
-
type: import("vue").PropType<
|
|
27
|
+
open: {
|
|
28
|
+
type: import("vue").PropType<boolean>;
|
|
23
29
|
};
|
|
24
|
-
|
|
30
|
+
steps: {
|
|
25
31
|
type: import("vue").PropType<number>;
|
|
26
32
|
};
|
|
27
33
|
position: {
|
|
28
34
|
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
29
35
|
};
|
|
30
|
-
open: {
|
|
31
|
-
type: import("vue").PropType<boolean>;
|
|
32
|
-
};
|
|
33
36
|
maxWidth: {
|
|
34
37
|
type: import("vue").PropType<number>;
|
|
35
38
|
};
|
|
@@ -43,9 +46,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
43
46
|
type: import("vue").PropType<string>;
|
|
44
47
|
required: true;
|
|
45
48
|
};
|
|
49
|
+
closeButton: {
|
|
50
|
+
type: import("vue").PropType<boolean>;
|
|
51
|
+
default: boolean;
|
|
52
|
+
};
|
|
46
53
|
}>> & {
|
|
47
54
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
48
|
-
},
|
|
55
|
+
}, "closeButton">;
|
|
49
56
|
$attrs: {
|
|
50
57
|
[x: string]: unknown;
|
|
51
58
|
};
|
|
@@ -60,21 +67,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
60
67
|
$emit: (event: "product-tour:hide") => void;
|
|
61
68
|
$el: any;
|
|
62
69
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
70
|
+
step: {
|
|
71
|
+
type: import("vue").PropType<number>;
|
|
72
|
+
};
|
|
63
73
|
icon: {
|
|
64
74
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
65
75
|
};
|
|
66
|
-
|
|
67
|
-
type: import("vue").PropType<
|
|
76
|
+
open: {
|
|
77
|
+
type: import("vue").PropType<boolean>;
|
|
68
78
|
};
|
|
69
|
-
|
|
79
|
+
steps: {
|
|
70
80
|
type: import("vue").PropType<number>;
|
|
71
81
|
};
|
|
72
82
|
position: {
|
|
73
83
|
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
74
84
|
};
|
|
75
|
-
open: {
|
|
76
|
-
type: import("vue").PropType<boolean>;
|
|
77
|
-
};
|
|
78
85
|
maxWidth: {
|
|
79
86
|
type: import("vue").PropType<number>;
|
|
80
87
|
};
|
|
@@ -88,6 +95,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
88
95
|
type: import("vue").PropType<string>;
|
|
89
96
|
required: true;
|
|
90
97
|
};
|
|
98
|
+
closeButton: {
|
|
99
|
+
type: import("vue").PropType<boolean>;
|
|
100
|
+
default: boolean;
|
|
101
|
+
};
|
|
91
102
|
}>> & {
|
|
92
103
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
93
104
|
}, {
|
|
@@ -97,7 +108,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
97
108
|
}) => void;
|
|
98
109
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
99
110
|
"product-tour:hide": () => void;
|
|
100
|
-
}, string, {
|
|
111
|
+
}, string, {
|
|
112
|
+
closeButton: boolean;
|
|
113
|
+
}, {}, string, {}> & {
|
|
101
114
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
102
115
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
103
116
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -118,21 +131,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
118
131
|
$nextTick: typeof import("vue").nextTick;
|
|
119
132
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
120
133
|
} & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
134
|
+
step: {
|
|
135
|
+
type: import("vue").PropType<number>;
|
|
136
|
+
};
|
|
121
137
|
icon: {
|
|
122
138
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
123
139
|
};
|
|
124
|
-
|
|
125
|
-
type: import("vue").PropType<
|
|
140
|
+
open: {
|
|
141
|
+
type: import("vue").PropType<boolean>;
|
|
126
142
|
};
|
|
127
|
-
|
|
143
|
+
steps: {
|
|
128
144
|
type: import("vue").PropType<number>;
|
|
129
145
|
};
|
|
130
146
|
position: {
|
|
131
147
|
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
132
148
|
};
|
|
133
|
-
open: {
|
|
134
|
-
type: import("vue").PropType<boolean>;
|
|
135
|
-
};
|
|
136
149
|
maxWidth: {
|
|
137
150
|
type: import("vue").PropType<number>;
|
|
138
151
|
};
|
|
@@ -146,6 +159,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
146
159
|
type: import("vue").PropType<string>;
|
|
147
160
|
required: true;
|
|
148
161
|
};
|
|
162
|
+
closeButton: {
|
|
163
|
+
type: import("vue").PropType<boolean>;
|
|
164
|
+
default: boolean;
|
|
165
|
+
};
|
|
149
166
|
}>> & {
|
|
150
167
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
151
168
|
}, "hide" | "show"> & import("vue").ShallowUnwrapRef<{
|
|
@@ -163,8 +180,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
163
180
|
productTour: ({
|
|
164
181
|
$: import("vue").ComponentInternalInstance;
|
|
165
182
|
$data: {};
|
|
166
|
-
$props: Partial<{
|
|
183
|
+
$props: Partial<{
|
|
184
|
+
closeButton: boolean;
|
|
185
|
+
}> & Omit<{
|
|
167
186
|
readonly spotlightSelector: string;
|
|
187
|
+
readonly closeButton: boolean;
|
|
168
188
|
readonly step?: number | undefined;
|
|
169
189
|
readonly icon?: import("@maltjoy/icons").JoyIconsId | undefined;
|
|
170
190
|
readonly open?: boolean | undefined;
|
|
@@ -175,21 +195,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
175
195
|
readonly spotlightPadding?: number | undefined;
|
|
176
196
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
177
197
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & Readonly<import("vue").ExtractPropTypes<{
|
|
198
|
+
step: {
|
|
199
|
+
type: import("vue").PropType<number>;
|
|
200
|
+
};
|
|
178
201
|
icon: {
|
|
179
202
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
180
203
|
};
|
|
181
|
-
|
|
182
|
-
type: import("vue").PropType<
|
|
204
|
+
open: {
|
|
205
|
+
type: import("vue").PropType<boolean>;
|
|
183
206
|
};
|
|
184
|
-
|
|
207
|
+
steps: {
|
|
185
208
|
type: import("vue").PropType<number>;
|
|
186
209
|
};
|
|
187
210
|
position: {
|
|
188
211
|
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
189
212
|
};
|
|
190
|
-
open: {
|
|
191
|
-
type: import("vue").PropType<boolean>;
|
|
192
|
-
};
|
|
193
213
|
maxWidth: {
|
|
194
214
|
type: import("vue").PropType<number>;
|
|
195
215
|
};
|
|
@@ -203,9 +223,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
203
223
|
type: import("vue").PropType<string>;
|
|
204
224
|
required: true;
|
|
205
225
|
};
|
|
226
|
+
closeButton: {
|
|
227
|
+
type: import("vue").PropType<boolean>;
|
|
228
|
+
default: boolean;
|
|
229
|
+
};
|
|
206
230
|
}>> & {
|
|
207
231
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
208
|
-
},
|
|
232
|
+
}, "closeButton">;
|
|
209
233
|
$attrs: {
|
|
210
234
|
[x: string]: unknown;
|
|
211
235
|
};
|
|
@@ -220,21 +244,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
220
244
|
$emit: (event: "product-tour:hide") => void;
|
|
221
245
|
$el: any;
|
|
222
246
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
247
|
+
step: {
|
|
248
|
+
type: import("vue").PropType<number>;
|
|
249
|
+
};
|
|
223
250
|
icon: {
|
|
224
251
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
225
252
|
};
|
|
226
|
-
|
|
227
|
-
type: import("vue").PropType<
|
|
253
|
+
open: {
|
|
254
|
+
type: import("vue").PropType<boolean>;
|
|
228
255
|
};
|
|
229
|
-
|
|
256
|
+
steps: {
|
|
230
257
|
type: import("vue").PropType<number>;
|
|
231
258
|
};
|
|
232
259
|
position: {
|
|
233
260
|
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
234
261
|
};
|
|
235
|
-
open: {
|
|
236
|
-
type: import("vue").PropType<boolean>;
|
|
237
|
-
};
|
|
238
262
|
maxWidth: {
|
|
239
263
|
type: import("vue").PropType<number>;
|
|
240
264
|
};
|
|
@@ -248,6 +272,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
248
272
|
type: import("vue").PropType<string>;
|
|
249
273
|
required: true;
|
|
250
274
|
};
|
|
275
|
+
closeButton: {
|
|
276
|
+
type: import("vue").PropType<boolean>;
|
|
277
|
+
default: boolean;
|
|
278
|
+
};
|
|
251
279
|
}>> & {
|
|
252
280
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
253
281
|
}, {
|
|
@@ -257,7 +285,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
257
285
|
}) => void;
|
|
258
286
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
259
287
|
"product-tour:hide": () => void;
|
|
260
|
-
}, string, {
|
|
288
|
+
}, string, {
|
|
289
|
+
closeButton: boolean;
|
|
290
|
+
}, {}, string, {}> & {
|
|
261
291
|
beforeCreate?: ((() => void) | (() => void)[]) | undefined;
|
|
262
292
|
created?: ((() => void) | (() => void)[]) | undefined;
|
|
263
293
|
beforeMount?: ((() => void) | (() => void)[]) | undefined;
|
|
@@ -278,21 +308,21 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
278
308
|
$nextTick: typeof import("vue").nextTick;
|
|
279
309
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R, args_2: (cleanupFn: () => void) => void) => any : (args_0: any, args_1: any, args_2: (cleanupFn: () => void) => void) => any, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
|
|
280
310
|
} & Omit<Readonly<import("vue").ExtractPropTypes<{
|
|
311
|
+
step: {
|
|
312
|
+
type: import("vue").PropType<number>;
|
|
313
|
+
};
|
|
281
314
|
icon: {
|
|
282
315
|
type: import("vue").PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
283
316
|
};
|
|
284
|
-
|
|
285
|
-
type: import("vue").PropType<
|
|
317
|
+
open: {
|
|
318
|
+
type: import("vue").PropType<boolean>;
|
|
286
319
|
};
|
|
287
|
-
|
|
320
|
+
steps: {
|
|
288
321
|
type: import("vue").PropType<number>;
|
|
289
322
|
};
|
|
290
323
|
position: {
|
|
291
324
|
type: import("vue").PropType<"left" | "right" | "bottom" | "top">;
|
|
292
325
|
};
|
|
293
|
-
open: {
|
|
294
|
-
type: import("vue").PropType<boolean>;
|
|
295
|
-
};
|
|
296
326
|
maxWidth: {
|
|
297
327
|
type: import("vue").PropType<number>;
|
|
298
328
|
};
|
|
@@ -306,6 +336,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
306
336
|
type: import("vue").PropType<string>;
|
|
307
337
|
required: true;
|
|
308
338
|
};
|
|
339
|
+
closeButton: {
|
|
340
|
+
type: import("vue").PropType<boolean>;
|
|
341
|
+
default: boolean;
|
|
342
|
+
};
|
|
309
343
|
}>> & {
|
|
310
344
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
311
345
|
}, "hide" | "show"> & import("vue").ShallowUnwrapRef<{
|
|
@@ -25,6 +25,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
25
25
|
type: StringConstructor;
|
|
26
26
|
default: string;
|
|
27
27
|
};
|
|
28
|
+
showLabel: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
default: boolean;
|
|
31
|
+
};
|
|
28
32
|
}, {
|
|
29
33
|
progress: import("vue").ComputedRef<string>;
|
|
30
34
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -54,6 +58,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
54
58
|
type: StringConstructor;
|
|
55
59
|
default: string;
|
|
56
60
|
};
|
|
61
|
+
showLabel: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
default: boolean;
|
|
64
|
+
};
|
|
57
65
|
}>> & {
|
|
58
66
|
"onUpdate:subSteps"?: (() => any) | undefined;
|
|
59
67
|
}, {
|
|
@@ -62,6 +70,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
70
|
completed: boolean;
|
|
63
71
|
currentSubStep: number;
|
|
64
72
|
subSteps: number;
|
|
73
|
+
showLabel: boolean;
|
|
65
74
|
}, {}>, Readonly<{
|
|
66
75
|
/** Label of the step. For text only */
|
|
67
76
|
default(): any;
|
|
@@ -33,6 +33,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
33
33
|
type: StringConstructor;
|
|
34
34
|
default: string;
|
|
35
35
|
};
|
|
36
|
+
showLabel: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
default: boolean;
|
|
39
|
+
};
|
|
36
40
|
}>> & {
|
|
37
41
|
"onUpdate:subSteps"?: (() => any) | undefined;
|
|
38
42
|
}, {
|
|
@@ -60,6 +64,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
60
64
|
type: StringConstructor;
|
|
61
65
|
default: string;
|
|
62
66
|
};
|
|
67
|
+
showLabel: {
|
|
68
|
+
type: BooleanConstructor;
|
|
69
|
+
default: boolean;
|
|
70
|
+
};
|
|
63
71
|
}>> & {
|
|
64
72
|
"onUpdate:subSteps"?: (() => any) | undefined;
|
|
65
73
|
}, {
|
|
@@ -68,6 +76,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
68
76
|
completed: boolean;
|
|
69
77
|
currentSubStep: number;
|
|
70
78
|
subSteps: number;
|
|
79
|
+
showLabel: boolean;
|
|
71
80
|
}, true, {}, {}, {
|
|
72
81
|
P: {};
|
|
73
82
|
B: {};
|
|
@@ -96,6 +105,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
96
105
|
type: StringConstructor;
|
|
97
106
|
default: string;
|
|
98
107
|
};
|
|
108
|
+
showLabel: {
|
|
109
|
+
type: BooleanConstructor;
|
|
110
|
+
default: boolean;
|
|
111
|
+
};
|
|
99
112
|
}>> & {
|
|
100
113
|
"onUpdate:subSteps"?: (() => any) | undefined;
|
|
101
114
|
}, {
|
|
@@ -106,6 +119,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
106
119
|
completed: boolean;
|
|
107
120
|
currentSubStep: number;
|
|
108
121
|
subSteps: number;
|
|
122
|
+
showLabel: boolean;
|
|
109
123
|
}>;
|
|
110
124
|
__isFragment?: undefined;
|
|
111
125
|
__isTeleport?: undefined;
|
|
@@ -131,6 +145,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
131
145
|
type: StringConstructor;
|
|
132
146
|
default: string;
|
|
133
147
|
};
|
|
148
|
+
showLabel: {
|
|
149
|
+
type: BooleanConstructor;
|
|
150
|
+
default: boolean;
|
|
151
|
+
};
|
|
134
152
|
}>> & {
|
|
135
153
|
"onUpdate:subSteps"?: (() => any) | undefined;
|
|
136
154
|
}, {
|
|
@@ -143,6 +161,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
143
161
|
completed: boolean;
|
|
144
162
|
currentSubStep: number;
|
|
145
163
|
subSteps: number;
|
|
164
|
+
showLabel: boolean;
|
|
146
165
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
|
|
147
166
|
$slots: Readonly<{
|
|
148
167
|
default(): any;
|
|
@@ -22,7 +22,7 @@ interface Props {
|
|
|
22
22
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
23
23
|
size: string;
|
|
24
24
|
variant: string;
|
|
25
|
-
value:
|
|
25
|
+
value: undefined;
|
|
26
26
|
draggable: boolean;
|
|
27
27
|
link: boolean;
|
|
28
28
|
removable: boolean;
|
|
@@ -35,7 +35,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
35
35
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToOption<Props>, {
|
|
36
36
|
size: string;
|
|
37
37
|
variant: string;
|
|
38
|
-
value:
|
|
38
|
+
value: undefined;
|
|
39
39
|
draggable: boolean;
|
|
40
40
|
link: boolean;
|
|
41
41
|
removable: boolean;
|
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-DiEVDLd0.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.VJoyListItem=o.VJoyListItem;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.VJoyWalkthrough=o.VJoyWalkthrough;exports.VJoyWalkthroughTrigger=o.VJoyWalkthroughTrigger;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 { ak as o, al as s } from "./style-
|
|
2
|
-
import { V as r, a as t, b as i, c as n, d as l, e as p, f as g, _ as u, g as c, h as d, i as S, j as T, k as m, l as h, m as b, n as k, o as B, p as C, q as D, r as F, s as I, J as L, t as v, u as P, v as f, w, x, y as A, z as R, A as W, B as j, C as G, D as H, E as M, F as z, G as E, H as U, 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 ua, a8 as ca, a9 as da, aa as Sa, ab as Ta, ac as ma, ad as ha, ae as ba, af as ka, ag as Ba, ah as Ca, ai as Da, aj as Fa, am as Ia, an as La } from "./style-
|
|
1
|
+
import { ak as o, al as s } from "./style-DqUSTCzR.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 u, g as c, h as d, i as S, j as T, k as m, l as h, m as b, n as k, o as B, p as C, q as D, r as F, s as I, J as L, t as v, u as P, v as f, w, x, y as A, z as R, A as W, B as j, C as G, D as H, E as M, F as z, G as E, H as U, 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 ua, a8 as ca, a9 as da, aa as Sa, ab as Ta, ac as ma, ad as ha, ae as ba, af as ka, ag as Ba, ah as Ca, ai as Da, aj as Fa, am as Ia, an as La } from "./style-DqUSTCzR.js";
|
|
3
3
|
const y = {
|
|
4
4
|
install: (a) => {
|
|
5
5
|
typeof window < "u" && o(), a.directive("joy-ripple", s);
|
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-DiEVDLd0.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,VJoyListItem:o.VJoyListItem,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,VJoyWalkthrough:o.VJoyWalkthrough,VJoyWalkthroughTrigger:o.VJoyWalkthroughTrigger,VJoyWrapper:o.VJoyWrapper},Symbol.toStringTag,{value:"Module"})),t={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.VJoyListItem=o.VJoyListItem;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.VJoyWalkthrough=o.VJoyWalkthrough;exports.VJoyWalkthroughTrigger=o.VJoyWalkthroughTrigger;exports.VJoyWrapper=o.VJoyWrapper;exports.createAllSnackbarsContainer=o.createAllSnackbarsContainer;exports.pushVJoySnackbar=o.pushVJoySnackbar;exports.resetCount=o.resetCount;exports.vJoyRipple=o.vJoyRipple;exports.JoyVuePlugin=t;
|
package/dist/main.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { V as e, a as r, b as y, c as J, d as t, e as V, f as i, _ as n, g as l, h as g, i as c, j as p, k as u, l as d, m, n as T, o as S, p as b, q as _, r as f, s as h, J as D, t as k, u as B, v as C, w as I, x as L, y as P, z as v, A as w, B as F, C as x, D as j, E as A, F as $, G as R, H as M, I as O, K as W, L as z, M as E, N as G, O as H, P as U, Q as q, R as K, S as N, T as Q, U as X, W as Y, X as Z, Y as aa, Z as oa, $ as sa, a0 as ea, a1 as ra, a2 as ya, a3 as Ja, a4 as ta, a5 as Va, a6 as ia, a7 as na, a8 as la, a9 as ga, aa as ca, ab as pa, ac as ua, ad as da, ae as ma, af as Ta, ag as Sa, ah as ba, ai as _a, aj as fa, ak as ha, al as Da } from "./style-
|
|
2
|
-
import { am as Pa, an as va } from "./style-
|
|
1
|
+
import { V as e, a as r, b as y, c as J, d as t, e as V, f as i, _ as n, g as l, h as g, i as c, j as p, k as u, l as d, m, n as T, o as S, p as b, q as _, r as f, s as h, J as D, t as k, u as B, v as C, w as I, x as L, y as P, z as v, A as w, B as F, C as x, D as j, E as A, F as $, G as R, H as M, I as O, K as W, L as z, M as E, N as G, O as H, P as U, Q as q, R as K, S as N, T as Q, U as X, W as Y, X as Z, Y as aa, Z as oa, $ as sa, a0 as ea, a1 as ra, a2 as ya, a3 as Ja, a4 as ta, a5 as Va, a6 as ia, a7 as na, a8 as la, a9 as ga, aa as ca, ab as pa, ac as ua, ad as da, ae as ma, af as Ta, ag as Sa, ah as ba, ai as _a, aj as fa, ak as ha, al as Da } from "./style-DqUSTCzR.js";
|
|
2
|
+
import { am as Pa, an as va } from "./style-DqUSTCzR.js";
|
|
3
3
|
const ka = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
4
4
|
__proto__: null,
|
|
5
5
|
VJoyAvailability: e,
|