@maltjoy/core-vue 6.1.0 → 6.1.2
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 +4 -12
- package/dist/components/JoyProductTour/VJoyProductTourInner.vue.d.ts +1 -3
- package/dist/core-vue.js +874 -878
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +4 -4
- package/dist/stories/tokens/tokens.d.ts +0 -1
- package/dist/style.css +1 -1
- package/package.json +4 -4
|
@@ -35,9 +35,7 @@ export declare const productTourState: {
|
|
|
35
35
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
36
36
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
37
37
|
}>, {
|
|
38
|
-
hide: (
|
|
39
|
-
fireHideEvent?: boolean | undefined;
|
|
40
|
-
} | undefined) => void;
|
|
38
|
+
hide: () => void;
|
|
41
39
|
show: () => void;
|
|
42
40
|
isOpen: import("vue").Ref<boolean, boolean>;
|
|
43
41
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -83,9 +81,7 @@ export declare const productTourState: {
|
|
|
83
81
|
}> & Omit<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
84
82
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
85
83
|
}>, "isOpen" | "hide" | "show" | ("open" | "maxWidth" | "position" | "step" | "disableOverlay" | "steps" | "spotlightPadding" | "closeButton")> & import("vue").ShallowUnwrapRef<{
|
|
86
|
-
hide: (
|
|
87
|
-
fireHideEvent?: boolean | undefined;
|
|
88
|
-
} | undefined) => void;
|
|
84
|
+
hide: () => void;
|
|
89
85
|
show: () => void;
|
|
90
86
|
isOpen: import("vue").Ref<boolean, boolean>;
|
|
91
87
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -123,9 +119,7 @@ export declare const productTourState: {
|
|
|
123
119
|
$options: import("vue").ComponentOptionsBase<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
124
120
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
125
121
|
}>, {
|
|
126
|
-
hide: (
|
|
127
|
-
fireHideEvent?: boolean | undefined;
|
|
128
|
-
} | undefined) => void;
|
|
122
|
+
hide: () => void;
|
|
129
123
|
show: () => void;
|
|
130
124
|
isOpen: import("vue").Ref<boolean, boolean>;
|
|
131
125
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -171,9 +165,7 @@ export declare const productTourState: {
|
|
|
171
165
|
}> & Omit<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
172
166
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
173
167
|
}>, "isOpen" | "hide" | "show" | ("open" | "maxWidth" | "position" | "step" | "disableOverlay" | "steps" | "spotlightPadding" | "closeButton")> & import("vue").ShallowUnwrapRef<{
|
|
174
|
-
hide: (
|
|
175
|
-
fireHideEvent?: boolean | undefined;
|
|
176
|
-
} | undefined) => void;
|
|
168
|
+
hide: () => void;
|
|
177
169
|
show: () => void;
|
|
178
170
|
isOpen: import("vue").Ref<boolean, boolean>;
|
|
179
171
|
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
import type { VJoyProductTourProps, VJoyProductTourSlots } from './JoyProductTour.types';
|
|
2
2
|
declare function show(): void;
|
|
3
|
-
declare function hide(
|
|
4
|
-
fireHideEvent?: boolean;
|
|
5
|
-
}): void;
|
|
3
|
+
declare function hide(): void;
|
|
6
4
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<VJoyProductTourProps, {
|
|
7
5
|
hide: typeof hide;
|
|
8
6
|
show: typeof show;
|