@maltjoy/core-vue 5.21.0 → 5.22.0-next
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/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +10 -14
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +10 -14
- package/dist/components/JoyDropzone/VJoyDropzone.vue.d.ts +27 -9
- package/dist/components/JoyDropzone/VJoyDropzoneFileItem.vue.d.ts +3 -0
- package/dist/components/JoyDropzone/VJoyDropzoneIcon.vue.d.ts +14 -1
- package/dist/components/JoyMenuItem/VJoyMenuItem.vue.d.ts +18 -12
- package/dist/components/JoyProductTour/JoyProductTour.store.d.ts +8 -12
- package/dist/components/JoyProductTourTrigger/VJoyProductTourTrigger.vue.d.ts +6 -10
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +9 -10
- package/dist/core-vue.js +2313 -2291
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +4 -4
- package/dist/style.css +1 -1
- package/package.json +41 -41
- package/LICENSE +0 -21
- package/dist/stories/figma/JoyFigmaCoverageView.vue.d.ts +0 -2
|
@@ -39,9 +39,7 @@ 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:
|
|
43
|
-
[x: string]: unknown;
|
|
44
|
-
};
|
|
42
|
+
$attrs: import("vue").Attrs;
|
|
45
43
|
$refs: {
|
|
46
44
|
[x: string]: unknown;
|
|
47
45
|
};
|
|
@@ -245,14 +243,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
245
243
|
"onDialog:after-hide"?: (() => any) | undefined;
|
|
246
244
|
"onDialog:before-unmount"?: (() => any) | undefined;
|
|
247
245
|
"onDialog:confirm"?: (() => any) | undefined;
|
|
248
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> &
|
|
249
|
-
hasFooterSlots:
|
|
246
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> & {
|
|
247
|
+
hasFooterSlots: boolean;
|
|
250
248
|
hide: (options?: {
|
|
251
249
|
fireHideEvent: boolean;
|
|
252
250
|
}) => Promise<void>;
|
|
253
|
-
isOpen:
|
|
251
|
+
isOpen: boolean;
|
|
254
252
|
show: () => Promise<void>;
|
|
255
|
-
}
|
|
253
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
256
254
|
$slots: Readonly<{
|
|
257
255
|
'dialog-preheader': () => any;
|
|
258
256
|
'dialog-header': () => any;
|
|
@@ -314,9 +312,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
314
312
|
readonly "onDialog:before-unmount"?: (() => any) | undefined;
|
|
315
313
|
readonly "onDialog:confirm"?: (() => any) | undefined;
|
|
316
314
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight">;
|
|
317
|
-
$attrs:
|
|
318
|
-
[x: string]: unknown;
|
|
319
|
-
};
|
|
315
|
+
$attrs: import("vue").Attrs;
|
|
320
316
|
$refs: {
|
|
321
317
|
[x: string]: unknown;
|
|
322
318
|
};
|
|
@@ -520,14 +516,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
520
516
|
"onDialog:after-hide"?: (() => any) | undefined;
|
|
521
517
|
"onDialog:before-unmount"?: (() => any) | undefined;
|
|
522
518
|
"onDialog:confirm"?: (() => any) | undefined;
|
|
523
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> &
|
|
524
|
-
hasFooterSlots:
|
|
519
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "patternConfirm" | "patternBrand" | "buttonSize" | "bannerHeight")> & {
|
|
520
|
+
hasFooterSlots: boolean;
|
|
525
521
|
hide: (options?: {
|
|
526
522
|
fireHideEvent: boolean;
|
|
527
523
|
}) => Promise<void>;
|
|
528
|
-
isOpen:
|
|
524
|
+
isOpen: boolean;
|
|
529
525
|
show: () => Promise<void>;
|
|
530
|
-
}
|
|
526
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
531
527
|
$slots: Readonly<{
|
|
532
528
|
'dialog-preheader': () => any;
|
|
533
529
|
'dialog-header': () => any;
|
|
@@ -34,9 +34,7 @@ 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:
|
|
38
|
-
[x: string]: unknown;
|
|
39
|
-
};
|
|
37
|
+
$attrs: import("vue").Attrs;
|
|
40
38
|
$refs: {
|
|
41
39
|
[x: string]: unknown;
|
|
42
40
|
};
|
|
@@ -214,14 +212,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
214
212
|
"onDrawer:after-hide"?: (() => any) | undefined;
|
|
215
213
|
"onDrawer:before-unmount"?: (() => any) | undefined;
|
|
216
214
|
"onDrawer:confirm"?: (() => any) | undefined;
|
|
217
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> &
|
|
218
|
-
hasFooterSlots:
|
|
215
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> & {
|
|
216
|
+
hasFooterSlots: boolean;
|
|
219
217
|
hide: (options?: {
|
|
220
218
|
fireHideEvent: boolean;
|
|
221
219
|
}) => Promise<void>;
|
|
222
|
-
isOpen:
|
|
220
|
+
isOpen: boolean;
|
|
223
221
|
show: () => Promise<void>;
|
|
224
|
-
}
|
|
222
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
225
223
|
$slots: Readonly<{
|
|
226
224
|
'drawer-preheader': () => any;
|
|
227
225
|
'drawer-header': () => any;
|
|
@@ -276,9 +274,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
276
274
|
readonly "onDrawer:before-unmount"?: (() => any) | undefined;
|
|
277
275
|
readonly "onDrawer:confirm"?: (() => any) | undefined;
|
|
278
276
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated">;
|
|
279
|
-
$attrs:
|
|
280
|
-
[x: string]: unknown;
|
|
281
|
-
};
|
|
277
|
+
$attrs: import("vue").Attrs;
|
|
282
278
|
$refs: {
|
|
283
279
|
[x: string]: unknown;
|
|
284
280
|
};
|
|
@@ -456,14 +452,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
456
452
|
"onDrawer:after-hide"?: (() => any) | undefined;
|
|
457
453
|
"onDrawer:before-unmount"?: (() => any) | undefined;
|
|
458
454
|
"onDrawer:confirm"?: (() => any) | undefined;
|
|
459
|
-
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> &
|
|
460
|
-
hasFooterSlots:
|
|
455
|
+
}>, "isOpen" | "hide" | "show" | "hasFooterSlots" | ("size" | "open" | "closeLabel" | "preventBodyScroll" | "teleport" | "disableTeleport" | "demoMode" | "buttonSize" | "elevated")> & {
|
|
456
|
+
hasFooterSlots: boolean;
|
|
461
457
|
hide: (options?: {
|
|
462
458
|
fireHideEvent: boolean;
|
|
463
459
|
}) => Promise<void>;
|
|
464
|
-
isOpen:
|
|
460
|
+
isOpen: boolean;
|
|
465
461
|
show: () => Promise<void>;
|
|
466
|
-
}
|
|
462
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
467
463
|
$slots: Readonly<{
|
|
468
464
|
'drawer-preheader': () => any;
|
|
469
465
|
'drawer-header': () => any;
|
|
@@ -13,12 +13,16 @@ declare const _default: <T extends {
|
|
|
13
13
|
errorTextMaxSize?: string | undefined;
|
|
14
14
|
errorTextFormatAndMaxSize?: string | undefined;
|
|
15
15
|
canDelete?: boolean | undefined;
|
|
16
|
+
disabled?: boolean | undefined;
|
|
17
|
+
invalid?: boolean | undefined;
|
|
16
18
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
17
19
|
slots: Readonly<{
|
|
18
20
|
/** Legend displayed at the bottom of the dropzone */
|
|
19
21
|
'dropzone-legend'?: (() => any) | undefined;
|
|
20
22
|
/** Block description of the dropzone */
|
|
21
23
|
'dropzone-description'?: (() => any) | undefined;
|
|
24
|
+
/** Block subtitle of the dropzone */
|
|
25
|
+
'dropzone-subtitle'?: (() => any) | undefined;
|
|
22
26
|
/** Add information under the file name */
|
|
23
27
|
'file-information'?: (() => any) | undefined;
|
|
24
28
|
/** Add file actions next to the update button */
|
|
@@ -28,6 +32,8 @@ declare const _default: <T extends {
|
|
|
28
32
|
'dropzone-legend'?: (() => any) | undefined;
|
|
29
33
|
/** Block description of the dropzone */
|
|
30
34
|
'dropzone-description'?: (() => any) | undefined;
|
|
35
|
+
/** Block subtitle of the dropzone */
|
|
36
|
+
'dropzone-subtitle'?: (() => any) | undefined;
|
|
31
37
|
/** Add information under the file name */
|
|
32
38
|
'file-information'?: (() => any) | undefined;
|
|
33
39
|
/** Add file actions next to the update button */
|
|
@@ -37,9 +43,9 @@ declare const _default: <T extends {
|
|
|
37
43
|
emit: {
|
|
38
44
|
'update:modelValue': [modelValue: (File | T)[]];
|
|
39
45
|
};
|
|
40
|
-
} | undefined, __VLS_expose?: ((exposed:
|
|
41
|
-
invalid:
|
|
42
|
-
}
|
|
46
|
+
} | undefined, __VLS_expose?: ((exposed: {
|
|
47
|
+
invalid: boolean;
|
|
48
|
+
}) => void) | undefined, __VLS_setup?: Promise<{
|
|
43
49
|
props: {
|
|
44
50
|
readonly "onUpdate:modelValue"?: ((modelValue: (File | T)[]) => any) | undefined;
|
|
45
51
|
modelValue: (File | T)[];
|
|
@@ -53,16 +59,20 @@ declare const _default: <T extends {
|
|
|
53
59
|
errorTextMaxSize?: string | undefined;
|
|
54
60
|
errorTextFormatAndMaxSize?: string | undefined;
|
|
55
61
|
canDelete?: boolean | undefined;
|
|
62
|
+
disabled?: boolean | undefined;
|
|
63
|
+
invalid?: boolean | undefined;
|
|
56
64
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
57
|
-
expose(exposed:
|
|
58
|
-
invalid:
|
|
59
|
-
}
|
|
65
|
+
expose(exposed: {
|
|
66
|
+
invalid: boolean;
|
|
67
|
+
}): void;
|
|
60
68
|
attrs: any;
|
|
61
69
|
slots: Readonly<{
|
|
62
70
|
/** Legend displayed at the bottom of the dropzone */
|
|
63
71
|
'dropzone-legend'?: (() => any) | undefined;
|
|
64
72
|
/** Block description of the dropzone */
|
|
65
73
|
'dropzone-description'?: (() => any) | undefined;
|
|
74
|
+
/** Block subtitle of the dropzone */
|
|
75
|
+
'dropzone-subtitle'?: (() => any) | undefined;
|
|
66
76
|
/** Add information under the file name */
|
|
67
77
|
'file-information'?: (() => any) | undefined;
|
|
68
78
|
/** Add file actions next to the update button */
|
|
@@ -72,6 +82,8 @@ declare const _default: <T extends {
|
|
|
72
82
|
'dropzone-legend'?: (() => any) | undefined;
|
|
73
83
|
/** Block description of the dropzone */
|
|
74
84
|
'dropzone-description'?: (() => any) | undefined;
|
|
85
|
+
/** Block subtitle of the dropzone */
|
|
86
|
+
'dropzone-subtitle'?: (() => any) | undefined;
|
|
75
87
|
/** Add information under the file name */
|
|
76
88
|
'file-information'?: (() => any) | undefined;
|
|
77
89
|
/** Add file actions next to the update button */
|
|
@@ -97,16 +109,20 @@ declare const _default: <T extends {
|
|
|
97
109
|
errorTextMaxSize?: string | undefined;
|
|
98
110
|
errorTextFormatAndMaxSize?: string | undefined;
|
|
99
111
|
canDelete?: boolean | undefined;
|
|
112
|
+
disabled?: boolean | undefined;
|
|
113
|
+
invalid?: boolean | undefined;
|
|
100
114
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
101
|
-
expose(exposed:
|
|
102
|
-
invalid:
|
|
103
|
-
}
|
|
115
|
+
expose(exposed: {
|
|
116
|
+
invalid: boolean;
|
|
117
|
+
}): void;
|
|
104
118
|
attrs: any;
|
|
105
119
|
slots: Readonly<{
|
|
106
120
|
/** Legend displayed at the bottom of the dropzone */
|
|
107
121
|
'dropzone-legend'?: (() => any) | undefined;
|
|
108
122
|
/** Block description of the dropzone */
|
|
109
123
|
'dropzone-description'?: (() => any) | undefined;
|
|
124
|
+
/** Block subtitle of the dropzone */
|
|
125
|
+
'dropzone-subtitle'?: (() => any) | undefined;
|
|
110
126
|
/** Add information under the file name */
|
|
111
127
|
'file-information'?: (() => any) | undefined;
|
|
112
128
|
/** Add file actions next to the update button */
|
|
@@ -116,6 +132,8 @@ declare const _default: <T extends {
|
|
|
116
132
|
'dropzone-legend'?: (() => any) | undefined;
|
|
117
133
|
/** Block description of the dropzone */
|
|
118
134
|
'dropzone-description'?: (() => any) | undefined;
|
|
135
|
+
/** Block subtitle of the dropzone */
|
|
136
|
+
'dropzone-subtitle'?: (() => any) | undefined;
|
|
119
137
|
/** Add information under the file name */
|
|
120
138
|
'file-information'?: (() => any) | undefined;
|
|
121
139
|
/** Add file actions next to the update button */
|
|
@@ -8,6 +8,7 @@ declare const _default: <T extends {
|
|
|
8
8
|
updateLabel: string;
|
|
9
9
|
error?: string | undefined;
|
|
10
10
|
canDelete?: boolean | undefined;
|
|
11
|
+
disabled?: boolean | undefined;
|
|
11
12
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
12
13
|
slots: Readonly<{
|
|
13
14
|
/** Information under the file name */
|
|
@@ -31,6 +32,7 @@ declare const _default: <T extends {
|
|
|
31
32
|
updateLabel: string;
|
|
32
33
|
error?: string | undefined;
|
|
33
34
|
canDelete?: boolean | undefined;
|
|
35
|
+
disabled?: boolean | undefined;
|
|
34
36
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
35
37
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
36
38
|
attrs: any;
|
|
@@ -58,6 +60,7 @@ declare const _default: <T extends {
|
|
|
58
60
|
updateLabel: string;
|
|
59
61
|
error?: string | undefined;
|
|
60
62
|
canDelete?: boolean | undefined;
|
|
63
|
+
disabled?: boolean | undefined;
|
|
61
64
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
62
65
|
expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
|
|
63
66
|
attrs: any;
|
|
@@ -1,13 +1,26 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
|
+
import type { TJoyIconsColors } from '../JoyIcon/JoyIcon.types';
|
|
2
3
|
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
4
|
name: {
|
|
4
5
|
type: PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
5
6
|
required: true;
|
|
6
7
|
};
|
|
8
|
+
color: {
|
|
9
|
+
type: PropType<TJoyIconsColors>;
|
|
10
|
+
required: false;
|
|
11
|
+
default: string;
|
|
12
|
+
};
|
|
7
13
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
8
14
|
name: {
|
|
9
15
|
type: PropType<import("@maltjoy/icons").JoyIconsId>;
|
|
10
16
|
required: true;
|
|
11
17
|
};
|
|
12
|
-
|
|
18
|
+
color: {
|
|
19
|
+
type: PropType<TJoyIconsColors>;
|
|
20
|
+
required: false;
|
|
21
|
+
default: string;
|
|
22
|
+
};
|
|
23
|
+
}>> & Readonly<{}>, {
|
|
24
|
+
color: TJoyIconsColors;
|
|
25
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
13
26
|
export default _default;
|
|
@@ -16,11 +16,13 @@ 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: {
|
|
20
|
+
getProps: {
|
|
21
21
|
href: string | undefined;
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
class?: import("vue").ClassValue;
|
|
23
|
+
style?: import("vue").StyleValue;
|
|
24
|
+
} | ComponentProps<T> | undefined;
|
|
25
|
+
}) => void) | undefined, __VLS_setup?: Promise<{
|
|
24
26
|
props: {
|
|
25
27
|
readonly onClick?: (() => any) | undefined;
|
|
26
28
|
label: string;
|
|
@@ -33,11 +35,13 @@ declare const _default: <T extends "a" | "button" | Component>(__VLS_props: {
|
|
|
33
35
|
type?: T | undefined;
|
|
34
36
|
linkProps?: ComponentProps<T> | undefined;
|
|
35
37
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
36
|
-
expose(exposed:
|
|
37
|
-
getProps:
|
|
38
|
+
expose(exposed: {
|
|
39
|
+
getProps: {
|
|
38
40
|
href: string | undefined;
|
|
39
|
-
|
|
40
|
-
|
|
41
|
+
class?: import("vue").ClassValue;
|
|
42
|
+
style?: import("vue").StyleValue;
|
|
43
|
+
} | ComponentProps<T> | undefined;
|
|
44
|
+
}): void;
|
|
41
45
|
attrs: any;
|
|
42
46
|
slots: {};
|
|
43
47
|
emit: (e: 'click') => void;
|
|
@@ -57,11 +61,13 @@ declare const _default: <T extends "a" | "button" | Component>(__VLS_props: {
|
|
|
57
61
|
type?: T | undefined;
|
|
58
62
|
linkProps?: ComponentProps<T> | undefined;
|
|
59
63
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
60
|
-
expose(exposed:
|
|
61
|
-
getProps:
|
|
64
|
+
expose(exposed: {
|
|
65
|
+
getProps: {
|
|
62
66
|
href: string | undefined;
|
|
63
|
-
|
|
64
|
-
|
|
67
|
+
class?: import("vue").ClassValue;
|
|
68
|
+
style?: import("vue").StyleValue;
|
|
69
|
+
} | ComponentProps<T> | undefined;
|
|
70
|
+
}): void;
|
|
65
71
|
attrs: any;
|
|
66
72
|
slots: {};
|
|
67
73
|
emit: (e: 'click') => void;
|
|
@@ -18,9 +18,7 @@ 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:
|
|
22
|
-
[x: string]: unknown;
|
|
23
|
-
};
|
|
21
|
+
$attrs: import("vue").Attrs;
|
|
24
22
|
$refs: {
|
|
25
23
|
[x: string]: unknown;
|
|
26
24
|
};
|
|
@@ -80,11 +78,11 @@ export declare const productTourState: {
|
|
|
80
78
|
closeButton: boolean;
|
|
81
79
|
}> & Omit<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
82
80
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
83
|
-
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> &
|
|
81
|
+
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> & {
|
|
84
82
|
hide: () => void;
|
|
85
83
|
show: () => void;
|
|
86
|
-
isOpen:
|
|
87
|
-
}
|
|
84
|
+
isOpen: boolean;
|
|
85
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
88
86
|
$slots: Readonly<import("./JoyProductTour.types.js").VJoyProductTourSlots> & import("./JoyProductTour.types.js").VJoyProductTourSlots;
|
|
89
87
|
}) | null, ({
|
|
90
88
|
$: import("vue").ComponentInternalInstance;
|
|
@@ -102,9 +100,7 @@ export declare const productTourState: {
|
|
|
102
100
|
readonly closeButton?: boolean | undefined;
|
|
103
101
|
readonly "onProduct-tour:hide"?: (() => any) | undefined;
|
|
104
102
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
105
|
-
$attrs:
|
|
106
|
-
[x: string]: unknown;
|
|
107
|
-
};
|
|
103
|
+
$attrs: import("vue").Attrs;
|
|
108
104
|
$refs: {
|
|
109
105
|
[x: string]: unknown;
|
|
110
106
|
};
|
|
@@ -164,11 +160,11 @@ export declare const productTourState: {
|
|
|
164
160
|
closeButton: boolean;
|
|
165
161
|
}> & Omit<Readonly<import("./JoyProductTour.types.js").VJoyProductTourProps> & Readonly<{
|
|
166
162
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
167
|
-
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> &
|
|
163
|
+
}>, "isOpen" | "hide" | "show" | ("disableOverlay" | "steps" | "step" | "position" | "open" | "maxWidth" | "spotlightPadding" | "closeButton")> & {
|
|
168
164
|
hide: () => void;
|
|
169
165
|
show: () => void;
|
|
170
|
-
isOpen:
|
|
171
|
-
}
|
|
166
|
+
isOpen: boolean;
|
|
167
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
172
168
|
$slots: Readonly<import("./JoyProductTour.types.js").VJoyProductTourSlots> & import("./JoyProductTour.types.js").VJoyProductTourSlots;
|
|
173
169
|
}) | null>;
|
|
174
170
|
};
|
|
@@ -16,9 +16,7 @@ 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:
|
|
20
|
-
[x: string]: unknown;
|
|
21
|
-
};
|
|
19
|
+
$attrs: import("vue").Attrs;
|
|
22
20
|
$refs: {
|
|
23
21
|
[x: string]: unknown;
|
|
24
22
|
};
|
|
@@ -65,12 +63,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
65
63
|
closeButton: boolean;
|
|
66
64
|
}> & Omit<Readonly<import("../components.types.js").VJoyProductTourProps> & Readonly<{
|
|
67
65
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
68
|
-
}>, "closeButton" | "hide" | "show"> &
|
|
66
|
+
}>, "closeButton" | "hide" | "show"> & {
|
|
69
67
|
show: () => void;
|
|
70
68
|
hide: (options?: {
|
|
71
69
|
fireHideEvent: boolean;
|
|
72
70
|
}) => void;
|
|
73
|
-
}
|
|
71
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
74
72
|
$slots: Readonly<import("../components.types.js").VJoyProductTourSlots> & import("../components.types.js").VJoyProductTourSlots;
|
|
75
73
|
}) | null | undefined;
|
|
76
74
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
@@ -93,9 +91,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
93
91
|
readonly closeButton?: boolean | undefined;
|
|
94
92
|
readonly "onProduct-tour:hide"?: (() => any) | undefined;
|
|
95
93
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
96
|
-
$attrs:
|
|
97
|
-
[x: string]: unknown;
|
|
98
|
-
};
|
|
94
|
+
$attrs: import("vue").Attrs;
|
|
99
95
|
$refs: {
|
|
100
96
|
[x: string]: unknown;
|
|
101
97
|
};
|
|
@@ -142,12 +138,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
142
138
|
closeButton: boolean;
|
|
143
139
|
}> & Omit<Readonly<import("../components.types.js").VJoyProductTourProps> & Readonly<{
|
|
144
140
|
"onProduct-tour:hide"?: (() => any) | undefined;
|
|
145
|
-
}>, "closeButton" | "hide" | "show"> &
|
|
141
|
+
}>, "closeButton" | "hide" | "show"> & {
|
|
146
142
|
show: () => void;
|
|
147
143
|
hide: (options?: {
|
|
148
144
|
fireHideEvent: boolean;
|
|
149
145
|
}) => void;
|
|
150
|
-
}
|
|
146
|
+
} & {} & import("vue").ComponentCustomProperties & {} & {
|
|
151
147
|
$slots: Readonly<import("../components.types.js").VJoyProductTourSlots> & import("../components.types.js").VJoyProductTourSlots;
|
|
152
148
|
}) | null | undefined;
|
|
153
149
|
}> & Readonly<{
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type { Ref } from 'vue';
|
|
2
1
|
import { TAGS_INPUT_ERRORS } from './JoyTagsInput.types';
|
|
3
2
|
import type { TJoyTagVariants, TJoyTagSizes } from '../JoyTag/JoyTag.types';
|
|
4
3
|
declare const _default: <T extends string>(__VLS_props: {
|
|
@@ -34,10 +33,10 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
34
33
|
(e: 'update:modelValue', values: T[]): void;
|
|
35
34
|
(e: 'validation:error', type: TAGS_INPUT_ERRORS): void;
|
|
36
35
|
};
|
|
37
|
-
} | undefined, __VLS_expose?: ((exposed:
|
|
38
|
-
isInvalid:
|
|
36
|
+
} | undefined, __VLS_expose?: ((exposed: {
|
|
37
|
+
isInvalid: boolean;
|
|
39
38
|
hasDuplicates: () => boolean;
|
|
40
|
-
}
|
|
39
|
+
}) => void) | undefined, __VLS_setup?: Promise<{
|
|
41
40
|
props: {
|
|
42
41
|
readonly "onUpdate:modelValue"?: ((values: T[]) => any) | undefined;
|
|
43
42
|
readonly "onValidation:error"?: ((type: TAGS_INPUT_ERRORS) => any) | undefined;
|
|
@@ -51,10 +50,10 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
51
50
|
duplicationError?: string | undefined;
|
|
52
51
|
invalidEmailError?: string | undefined;
|
|
53
52
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
54
|
-
expose(exposed:
|
|
55
|
-
isInvalid:
|
|
53
|
+
expose(exposed: {
|
|
54
|
+
isInvalid: boolean;
|
|
56
55
|
hasDuplicates: () => boolean;
|
|
57
|
-
}
|
|
56
|
+
}): void;
|
|
58
57
|
attrs: any;
|
|
59
58
|
slots: Readonly<{
|
|
60
59
|
/** DEPRECATED. Label of the component. Use VJoyLabel */
|
|
@@ -92,10 +91,10 @@ declare const _default: <T extends string>(__VLS_props: {
|
|
|
92
91
|
duplicationError?: string | undefined;
|
|
93
92
|
invalidEmailError?: string | undefined;
|
|
94
93
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
95
|
-
expose(exposed:
|
|
96
|
-
isInvalid:
|
|
94
|
+
expose(exposed: {
|
|
95
|
+
isInvalid: boolean;
|
|
97
96
|
hasDuplicates: () => boolean;
|
|
98
|
-
}
|
|
97
|
+
}): void;
|
|
99
98
|
attrs: any;
|
|
100
99
|
slots: Readonly<{
|
|
101
100
|
/** DEPRECATED. Label of the component. Use VJoyLabel */
|