@maltjoy/core-vue 5.22.0-next → 5.22.1
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/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +14 -10
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +14 -10
- package/dist/components/JoyDropzone/VJoyDropzone.vue.d.ts +9 -9
- package/dist/components/JoyInputNumber/VJoyInputNumber.vue.d.ts +9 -2
- package/dist/components/JoyMenuItem/VJoyMenuItem.vue.d.ts +12 -18
- package/dist/components/JoyProductTour/JoyProductTour.store.d.ts +12 -8
- package/dist/components/JoyProductTourTrigger/VJoyProductTourTrigger.vue.d.ts +10 -6
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +10 -9
- package/dist/core-vue.js +5 -2
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +3 -3
- package/dist/style.css +1 -1
- package/package.json +46 -44
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.
|
|
@@ -39,7 +39,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
39
39
|
readonly "onDialog:before-unmount"?: (() => any) | undefined;
|
|
40
40
|
readonly "onDialog:confirm"?: (() => any) | undefined;
|
|
41
41
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight">;
|
|
42
|
-
$attrs:
|
|
42
|
+
$attrs: {
|
|
43
|
+
[x: string]: unknown;
|
|
44
|
+
};
|
|
43
45
|
$refs: {
|
|
44
46
|
[x: string]: unknown;
|
|
45
47
|
};
|
|
@@ -243,14 +245,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
243
245
|
"onDialog:after-hide"?: (() => any) | undefined;
|
|
244
246
|
"onDialog:before-unmount"?: (() => any) | undefined;
|
|
245
247
|
"onDialog:confirm"?: (() => any) | undefined;
|
|
246
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> & {
|
|
247
|
-
hasFooterSlots: boolean
|
|
248
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> & import("vue").ShallowUnwrapRef<{
|
|
249
|
+
hasFooterSlots: import("vue").ComputedRef<boolean>;
|
|
248
250
|
hide: (options?: {
|
|
249
251
|
fireHideEvent: boolean;
|
|
250
252
|
}) => Promise<void>;
|
|
251
|
-
isOpen: boolean
|
|
253
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
252
254
|
show: () => Promise<void>;
|
|
253
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
255
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
254
256
|
$slots: Readonly<{
|
|
255
257
|
'dialog-preheader': () => any;
|
|
256
258
|
'dialog-header': () => any;
|
|
@@ -312,7 +314,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
312
314
|
readonly "onDialog:before-unmount"?: (() => any) | undefined;
|
|
313
315
|
readonly "onDialog:confirm"?: (() => any) | undefined;
|
|
314
316
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight">;
|
|
315
|
-
$attrs:
|
|
317
|
+
$attrs: {
|
|
318
|
+
[x: string]: unknown;
|
|
319
|
+
};
|
|
316
320
|
$refs: {
|
|
317
321
|
[x: string]: unknown;
|
|
318
322
|
};
|
|
@@ -516,14 +520,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
516
520
|
"onDialog:after-hide"?: (() => any) | undefined;
|
|
517
521
|
"onDialog:before-unmount"?: (() => any) | undefined;
|
|
518
522
|
"onDialog:confirm"?: (() => any) | undefined;
|
|
519
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> & {
|
|
520
|
-
hasFooterSlots: boolean
|
|
523
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> & import("vue").ShallowUnwrapRef<{
|
|
524
|
+
hasFooterSlots: import("vue").ComputedRef<boolean>;
|
|
521
525
|
hide: (options?: {
|
|
522
526
|
fireHideEvent: boolean;
|
|
523
527
|
}) => Promise<void>;
|
|
524
|
-
isOpen: boolean
|
|
528
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
525
529
|
show: () => Promise<void>;
|
|
526
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
530
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
527
531
|
$slots: Readonly<{
|
|
528
532
|
'dialog-preheader': () => any;
|
|
529
533
|
'dialog-header': () => any;
|
|
@@ -34,7 +34,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
34
34
|
readonly "onDrawer:before-unmount"?: (() => any) | undefined;
|
|
35
35
|
readonly "onDrawer:confirm"?: (() => any) | undefined;
|
|
36
36
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated">;
|
|
37
|
-
$attrs:
|
|
37
|
+
$attrs: {
|
|
38
|
+
[x: string]: unknown;
|
|
39
|
+
};
|
|
38
40
|
$refs: {
|
|
39
41
|
[x: string]: unknown;
|
|
40
42
|
};
|
|
@@ -212,14 +214,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
212
214
|
"onDrawer:after-hide"?: (() => any) | undefined;
|
|
213
215
|
"onDrawer:before-unmount"?: (() => any) | undefined;
|
|
214
216
|
"onDrawer:confirm"?: (() => any) | undefined;
|
|
215
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> & {
|
|
216
|
-
hasFooterSlots: boolean
|
|
217
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> & import("vue").ShallowUnwrapRef<{
|
|
218
|
+
hasFooterSlots: import("vue").ComputedRef<boolean>;
|
|
217
219
|
hide: (options?: {
|
|
218
220
|
fireHideEvent: boolean;
|
|
219
221
|
}) => Promise<void>;
|
|
220
|
-
isOpen: boolean
|
|
222
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
221
223
|
show: () => Promise<void>;
|
|
222
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
224
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
223
225
|
$slots: Readonly<{
|
|
224
226
|
'drawer-preheader': () => any;
|
|
225
227
|
'drawer-header': () => any;
|
|
@@ -274,7 +276,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
274
276
|
readonly "onDrawer:before-unmount"?: (() => any) | undefined;
|
|
275
277
|
readonly "onDrawer:confirm"?: (() => any) | undefined;
|
|
276
278
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated">;
|
|
277
|
-
$attrs:
|
|
279
|
+
$attrs: {
|
|
280
|
+
[x: string]: unknown;
|
|
281
|
+
};
|
|
278
282
|
$refs: {
|
|
279
283
|
[x: string]: unknown;
|
|
280
284
|
};
|
|
@@ -452,14 +456,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
452
456
|
"onDrawer:after-hide"?: (() => any) | undefined;
|
|
453
457
|
"onDrawer:before-unmount"?: (() => any) | undefined;
|
|
454
458
|
"onDrawer:confirm"?: (() => any) | undefined;
|
|
455
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> & {
|
|
456
|
-
hasFooterSlots: boolean
|
|
459
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> & import("vue").ShallowUnwrapRef<{
|
|
460
|
+
hasFooterSlots: import("vue").ComputedRef<boolean>;
|
|
457
461
|
hide: (options?: {
|
|
458
462
|
fireHideEvent: boolean;
|
|
459
463
|
}) => Promise<void>;
|
|
460
|
-
isOpen: boolean
|
|
464
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
461
465
|
show: () => Promise<void>;
|
|
462
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
466
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
463
467
|
$slots: Readonly<{
|
|
464
468
|
'drawer-preheader': () => any;
|
|
465
469
|
'drawer-header': () => any;
|
|
@@ -43,9 +43,9 @@ declare const _default: <T extends {
|
|
|
43
43
|
emit: {
|
|
44
44
|
'update:modelValue': [modelValue: (File | T)[]];
|
|
45
45
|
};
|
|
46
|
-
} | undefined, __VLS_expose?: ((exposed: {
|
|
47
|
-
invalid: boolean
|
|
48
|
-
}) => void) | undefined, __VLS_setup?: Promise<{
|
|
46
|
+
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
47
|
+
invalid: import("vue").Ref<boolean, boolean>;
|
|
48
|
+
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
49
49
|
props: {
|
|
50
50
|
readonly "onUpdate:modelValue"?: ((modelValue: (File | T)[]) => any) | undefined;
|
|
51
51
|
modelValue: (File | T)[];
|
|
@@ -62,9 +62,9 @@ declare const _default: <T extends {
|
|
|
62
62
|
disabled?: boolean | undefined;
|
|
63
63
|
invalid?: boolean | undefined;
|
|
64
64
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
65
|
-
expose(exposed: {
|
|
66
|
-
invalid: boolean
|
|
67
|
-
}): void;
|
|
65
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
66
|
+
invalid: import("vue").Ref<boolean, boolean>;
|
|
67
|
+
}>): void;
|
|
68
68
|
attrs: any;
|
|
69
69
|
slots: Readonly<{
|
|
70
70
|
/** Legend displayed at the bottom of the dropzone */
|
|
@@ -112,9 +112,9 @@ declare const _default: <T extends {
|
|
|
112
112
|
disabled?: boolean | undefined;
|
|
113
113
|
invalid?: boolean | undefined;
|
|
114
114
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
115
|
-
expose(exposed: {
|
|
116
|
-
invalid: boolean
|
|
117
|
-
}): void;
|
|
115
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
116
|
+
invalid: import("vue").Ref<boolean, boolean>;
|
|
117
|
+
}>): void;
|
|
118
118
|
attrs: any;
|
|
119
119
|
slots: Readonly<{
|
|
120
120
|
/** Legend displayed at the bottom of the dropzone */
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import type { VJoyInputProps } from '../JoyInput/JoyInput.types';
|
|
2
2
|
type VJoyInputNumberProps = Omit<VJoyInputProps, 'clearable' | 'clearAriaLabel'>;
|
|
3
3
|
declare function focus(): void;
|
|
4
|
-
declare const _default: import("vue").DefineComponent<VJoyInputNumberProps, {
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<VJoyInputNumberProps, {
|
|
5
5
|
focus: typeof focus;
|
|
6
6
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
7
|
"update:modelValue": (value: string) => any;
|
|
@@ -19,5 +19,12 @@ declare const _default: import("vue").DefineComponent<VJoyInputNumberProps, {
|
|
|
19
19
|
modelModifiers: Partial<Record<"number" | "trim" | "lazy", boolean>>;
|
|
20
20
|
unit: string;
|
|
21
21
|
readonly: boolean;
|
|
22
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any
|
|
22
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, {
|
|
23
|
+
default?(_: {}): any;
|
|
24
|
+
}>;
|
|
23
25
|
export default _default;
|
|
26
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
+
new (): {
|
|
28
|
+
$slots: S;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
@@ -16,13 +16,11 @@ declare const _default: <T extends "a" | "button" | Component>(__VLS_props: {
|
|
|
16
16
|
slots: {};
|
|
17
17
|
attrs: any;
|
|
18
18
|
emit: (e: 'click') => void;
|
|
19
|
-
} | undefined, __VLS_expose?: ((exposed: {
|
|
20
|
-
getProps: {
|
|
19
|
+
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
20
|
+
getProps: import("vue").ComputedRef<ComponentProps<T> | {
|
|
21
21
|
href: string | undefined;
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
} | ComponentProps<T> | undefined;
|
|
25
|
-
}) => void) | undefined, __VLS_setup?: Promise<{
|
|
22
|
+
} | undefined>;
|
|
23
|
+
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
26
24
|
props: {
|
|
27
25
|
readonly onClick?: (() => any) | undefined;
|
|
28
26
|
label: string;
|
|
@@ -35,13 +33,11 @@ declare const _default: <T extends "a" | "button" | Component>(__VLS_props: {
|
|
|
35
33
|
type?: T | undefined;
|
|
36
34
|
linkProps?: ComponentProps<T> | undefined;
|
|
37
35
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
38
|
-
expose(exposed: {
|
|
39
|
-
getProps: {
|
|
36
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
37
|
+
getProps: import("vue").ComputedRef<ComponentProps<T> | {
|
|
40
38
|
href: string | undefined;
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
} | ComponentProps<T> | undefined;
|
|
44
|
-
}): void;
|
|
39
|
+
} | undefined>;
|
|
40
|
+
}>): void;
|
|
45
41
|
attrs: any;
|
|
46
42
|
slots: {};
|
|
47
43
|
emit: (e: 'click') => void;
|
|
@@ -61,13 +57,11 @@ declare const _default: <T extends "a" | "button" | Component>(__VLS_props: {
|
|
|
61
57
|
type?: T | undefined;
|
|
62
58
|
linkProps?: ComponentProps<T> | undefined;
|
|
63
59
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
64
|
-
expose(exposed: {
|
|
65
|
-
getProps: {
|
|
60
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
61
|
+
getProps: import("vue").ComputedRef<ComponentProps<T> | {
|
|
66
62
|
href: string | undefined;
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
} | ComponentProps<T> | undefined;
|
|
70
|
-
}): void;
|
|
63
|
+
} | undefined>;
|
|
64
|
+
}>): void;
|
|
71
65
|
attrs: any;
|
|
72
66
|
slots: {};
|
|
73
67
|
emit: (e: 'click') => void;
|
|
@@ -18,7 +18,9 @@ export declare const productTourState: {
|
|
|
18
18
|
readonly closeButton?: boolean | undefined;
|
|
19
19
|
readonly "onProduct-tour:hide"?: (() => any) | undefined;
|
|
20
20
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
21
|
-
$attrs:
|
|
21
|
+
$attrs: {
|
|
22
|
+
[x: string]: unknown;
|
|
23
|
+
};
|
|
22
24
|
$refs: {
|
|
23
25
|
[x: string]: unknown;
|
|
24
26
|
};
|
|
@@ -78,11 +80,11 @@ export declare const productTourState: {
|
|
|
78
80
|
closeButton: boolean;
|
|
79
81
|
}> & Omit<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
80
82
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
81
|
-
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> & {
|
|
83
|
+
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> & import("vue").ShallowUnwrapRef<{
|
|
82
84
|
hide: () => void;
|
|
83
85
|
show: () => void;
|
|
84
|
-
isOpen: boolean
|
|
85
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
86
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
87
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
86
88
|
$slots: Readonly<import("./JoyProductTour.types.js").VJoyProductTourSlots> & import("./JoyProductTour.types.js").VJoyProductTourSlots;
|
|
87
89
|
}) | null, ({
|
|
88
90
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -100,7 +102,9 @@ export declare const productTourState: {
|
|
|
100
102
|
readonly closeButton?: boolean | undefined;
|
|
101
103
|
readonly "onProduct-tour:hide"?: (() => any) | undefined;
|
|
102
104
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
103
|
-
$attrs:
|
|
105
|
+
$attrs: {
|
|
106
|
+
[x: string]: unknown;
|
|
107
|
+
};
|
|
104
108
|
$refs: {
|
|
105
109
|
[x: string]: unknown;
|
|
106
110
|
};
|
|
@@ -160,11 +164,11 @@ export declare const productTourState: {
|
|
|
160
164
|
closeButton: boolean;
|
|
161
165
|
}> & Omit<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
162
166
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
163
|
-
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> & {
|
|
167
|
+
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> & import("vue").ShallowUnwrapRef<{
|
|
164
168
|
hide: () => void;
|
|
165
169
|
show: () => void;
|
|
166
|
-
isOpen: boolean
|
|
167
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
170
|
+
isOpen: import("vue").Ref<boolean, boolean>;
|
|
171
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
168
172
|
$slots: Readonly<import("./JoyProductTour.types.js").VJoyProductTourSlots> & import("./JoyProductTour.types.js").VJoyProductTourSlots;
|
|
169
173
|
}) | null>;
|
|
170
174
|
};
|
|
@@ -16,7 +16,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
16
16
|
readonly closeButton?: boolean | undefined;
|
|
17
17
|
readonly "onProduct-tour:hide"?: (() => any) | undefined;
|
|
18
18
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
19
|
-
$attrs:
|
|
19
|
+
$attrs: {
|
|
20
|
+
[x: string]: unknown;
|
|
21
|
+
};
|
|
20
22
|
$refs: {
|
|
21
23
|
[x: string]: unknown;
|
|
22
24
|
};
|
|
@@ -63,12 +65,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
63
65
|
closeButton: boolean;
|
|
64
66
|
}> & Omit<Readonly<import("../components.types.js").VJoyProductTourProps> & Readonly<{
|
|
65
67
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
66
|
-
}>, "closeButton" | "hide" | "show"> & {
|
|
68
|
+
}>, "closeButton" | "hide" | "show"> & import("vue").ShallowUnwrapRef<{
|
|
67
69
|
show: () => void;
|
|
68
70
|
hide: (options?: {
|
|
69
71
|
fireHideEvent: boolean;
|
|
70
72
|
}) => void;
|
|
71
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
73
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
72
74
|
$slots: Readonly<import("../components.types.js").VJoyProductTourSlots> & import("../components.types.js").VJoyProductTourSlots;
|
|
73
75
|
}) | null | undefined;
|
|
74
76
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -91,7 +93,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
91
93
|
readonly closeButton?: boolean | undefined;
|
|
92
94
|
readonly "onProduct-tour:hide"?: (() => any) | undefined;
|
|
93
95
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
94
|
-
$attrs:
|
|
96
|
+
$attrs: {
|
|
97
|
+
[x: string]: unknown;
|
|
98
|
+
};
|
|
95
99
|
$refs: {
|
|
96
100
|
[x: string]: unknown;
|
|
97
101
|
};
|
|
@@ -138,12 +142,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
138
142
|
closeButton: boolean;
|
|
139
143
|
}> & Omit<Readonly<import("../components.types.js").VJoyProductTourProps> & Readonly<{
|
|
140
144
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
141
|
-
}>, "closeButton" | "hide" | "show"> & {
|
|
145
|
+
}>, "closeButton" | "hide" | "show"> & import("vue").ShallowUnwrapRef<{
|
|
142
146
|
show: () => void;
|
|
143
147
|
hide: (options?: {
|
|
144
148
|
fireHideEvent: boolean;
|
|
145
149
|
}) => void;
|
|
146
|
-
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
150
|
+
}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
147
151
|
$slots: Readonly<import("../components.types.js").VJoyProductTourSlots> & import("../components.types.js").VJoyProductTourSlots;
|
|
148
152
|
}) | null | undefined;
|
|
149
153
|
}> & Readonly<{
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { Ref } from 'vue';
|
|
1
2
|
import { TAGS_INPUT_ERRORS } from './JoyTagsInput.types';
|
|
2
3
|
import type { TJoyTagVariants, TJoyTagSizes } from '../JoyTag/JoyTag.types';
|
|
3
4
|
declare const _default: <T extends string>(__VLS_props: {
|
|
@@ -33,10 +34,10 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
33
34
|
(e: 'update:modelValue', values: T[]): void;
|
|
34
35
|
(e: 'validation:error', type: TAGS_INPUT_ERRORS): void;
|
|
35
36
|
};
|
|
36
|
-
} | undefined, __VLS_expose?: ((exposed: {
|
|
37
|
-
isInvalid: boolean
|
|
37
|
+
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
38
|
+
isInvalid: Ref<boolean, boolean>;
|
|
38
39
|
hasDuplicates: () => boolean;
|
|
39
|
-
}) => void) | undefined, __VLS_setup?: Promise<{
|
|
40
|
+
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
40
41
|
props: {
|
|
41
42
|
readonly "onUpdate:modelValue"?: ((values: T[]) => any) | undefined;
|
|
42
43
|
readonly "onValidation:error"?: ((type: TAGS_INPUT_ERRORS) => any) | undefined;
|
|
@@ -50,10 +51,10 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
50
51
|
duplicationError?: string | undefined;
|
|
51
52
|
invalidEmailError?: string | undefined;
|
|
52
53
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
53
|
-
expose(exposed: {
|
|
54
|
-
isInvalid: boolean
|
|
54
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
55
|
+
isInvalid: Ref<boolean, boolean>;
|
|
55
56
|
hasDuplicates: () => boolean;
|
|
56
|
-
}): void;
|
|
57
|
+
}>): void;
|
|
57
58
|
attrs: any;
|
|
58
59
|
slots: Readonly<{
|
|
59
60
|
/** DEPRECATED. Label of the component. Use VJoyLabel */
|
|
@@ -91,10 +92,10 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
91
92
|
duplicationError?: string | undefined;
|
|
92
93
|
invalidEmailError?: string | undefined;
|
|
93
94
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
94
|
-
expose(exposed: {
|
|
95
|
-
isInvalid: boolean
|
|
95
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
96
|
+
isInvalid: Ref<boolean, boolean>;
|
|
96
97
|
hasDuplicates: () => boolean;
|
|
97
|
-
}): void;
|
|
98
|
+
}>): void;
|
|
98
99
|
attrs: any;
|
|
99
100
|
slots: Readonly<{
|
|
100
101
|
/** DEPRECATED. Label of the component. Use VJoyLabel */
|
package/dist/core-vue.js
CHANGED
|
@@ -5272,16 +5272,19 @@ const Va = /* @__PURE__ */ B({
|
|
|
5272
5272
|
}, { ...F(a), ...l }, {
|
|
5273
5273
|
"onUpdate:modelValue": s[0] || (s[0] = (m) => o("update:modelValue", m))
|
|
5274
5274
|
}), {
|
|
5275
|
+
default: z(() => [
|
|
5276
|
+
w(u.$slots, "default", {}, void 0, !0)
|
|
5277
|
+
]),
|
|
5275
5278
|
"right-action": z(() => [
|
|
5276
5279
|
e.unit ? (c(), v("div", Ii, [
|
|
5277
5280
|
h("span", Li, J(e.unit), 1)
|
|
5278
5281
|
])) : k("", !0)
|
|
5279
5282
|
]),
|
|
5280
|
-
_:
|
|
5283
|
+
_: 3
|
|
5281
5284
|
}, 16)
|
|
5282
5285
|
]));
|
|
5283
5286
|
}
|
|
5284
|
-
}), Uu = /* @__PURE__ */ E(Bi, [["__scopeId", "data-v-
|
|
5287
|
+
}), Uu = /* @__PURE__ */ E(Bi, [["__scopeId", "data-v-1c0b98ad"]]), Ai = { class: "joy-input-password" }, Ei = /* @__PURE__ */ B({
|
|
5285
5288
|
inheritAttrs: !1,
|
|
5286
5289
|
__name: "VJoyInputPassword",
|
|
5287
5290
|
props: {
|