@maltjoy/core-vue 3.20.0 → 3.21.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/JoyBottomSheetTrigger/VJoyBottomSheetTrigger.vue.d.ts +72 -103
- package/dist/components/JoyCollapse/VJoyCollapse.vue.d.ts +23 -47
- package/dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue.d.ts +160 -111
- package/dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue.d.ts +136 -109
- package/dist/components/JoyStepper/VJoyStepper.vue.d.ts +36 -51
- package/dist/components/JoyTabs/VJoyTabs.vue.d.ts +22 -48
- package/dist/components/JoyTag/JoyTag.types.d.ts +4 -1
- package/dist/components/JoyTag/VJoyTag.vue.d.ts +48 -79
- package/dist/components/JoyTagsInput/JoyTagsInput.service.d.ts +5 -0
- package/dist/components/JoyTagsInput/JoyTagsInput.types.d.ts +4 -0
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +97 -0
- package/dist/components/JoyTagsList/VJoyTagsList.vue.d.ts +6 -8
- package/dist/components/components.types.d.ts +1 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/joy-vue.js +2785 -2655
- package/dist/joy-vue.umd.cjs +4 -4
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -0
- package/package.json +25 -24
- package/LICENSE +0 -21
- package/dist/components/JoyTooltip/VJoyTooltip.vue.d.ts +0 -91
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import type { Ref } from 'vue';
|
|
2
|
+
import { TAGS_INPUT_ERRORS } from './JoyTagsInput.types';
|
|
3
|
+
import type { TJoyTagSizes } from '../JoyTag/JoyTag.types';
|
|
4
|
+
declare const _default: <T extends string>(__VLS_props: {
|
|
5
|
+
size?: TJoyTagSizes | undefined;
|
|
6
|
+
name?: string | undefined;
|
|
7
|
+
variant?: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special" | undefined;
|
|
8
|
+
invalid?: boolean | undefined;
|
|
9
|
+
modelValue?: T[] | undefined;
|
|
10
|
+
"onUpdate:modelValue"?: ((values: T[]) => any) | undefined;
|
|
11
|
+
placeholder?: string | undefined;
|
|
12
|
+
"onValidation:error"?: ((type: TAGS_INPUT_ERRORS) => any) | undefined;
|
|
13
|
+
validation?: "none" | "email" | undefined;
|
|
14
|
+
duplicationError?: string | undefined;
|
|
15
|
+
invalidEmailError?: string | undefined;
|
|
16
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: {
|
|
17
|
+
attrs: any;
|
|
18
|
+
slots: {
|
|
19
|
+
default?(_: {}): any;
|
|
20
|
+
tag?(_: {
|
|
21
|
+
name: T;
|
|
22
|
+
}): any;
|
|
23
|
+
};
|
|
24
|
+
emit: {
|
|
25
|
+
(e: 'update:modelValue', values: T[]): void;
|
|
26
|
+
(e: 'validation:error', type: TAGS_INPUT_ERRORS): void;
|
|
27
|
+
};
|
|
28
|
+
} | undefined, __VLS_expose?: ((exposed: import("vue").ShallowUnwrapRef<{
|
|
29
|
+
isInvalid: Ref<boolean>;
|
|
30
|
+
hasDuplicates: () => boolean;
|
|
31
|
+
}>) => void) | undefined, __VLS_setup?: Promise<{
|
|
32
|
+
props: {
|
|
33
|
+
size?: TJoyTagSizes | undefined;
|
|
34
|
+
name?: string | undefined;
|
|
35
|
+
variant?: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special" | undefined;
|
|
36
|
+
invalid?: boolean | undefined;
|
|
37
|
+
modelValue?: T[] | undefined;
|
|
38
|
+
"onUpdate:modelValue"?: ((values: T[]) => any) | undefined;
|
|
39
|
+
placeholder?: string | undefined;
|
|
40
|
+
"onValidation:error"?: ((type: TAGS_INPUT_ERRORS) => any) | undefined;
|
|
41
|
+
validation?: "none" | "email" | undefined;
|
|
42
|
+
duplicationError?: string | undefined;
|
|
43
|
+
invalidEmailError?: string | undefined;
|
|
44
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
45
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
46
|
+
isInvalid: Ref<boolean>;
|
|
47
|
+
hasDuplicates: () => boolean;
|
|
48
|
+
}>): void;
|
|
49
|
+
attrs: any;
|
|
50
|
+
slots: {
|
|
51
|
+
default?(_: {}): any;
|
|
52
|
+
tag?(_: {
|
|
53
|
+
name: T;
|
|
54
|
+
}): any;
|
|
55
|
+
};
|
|
56
|
+
emit: {
|
|
57
|
+
(e: 'update:modelValue', values: T[]): void;
|
|
58
|
+
(e: 'validation:error', type: TAGS_INPUT_ERRORS): void;
|
|
59
|
+
};
|
|
60
|
+
}>) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
61
|
+
[key: string]: any;
|
|
62
|
+
}> & {
|
|
63
|
+
__ctx?: {
|
|
64
|
+
props: {
|
|
65
|
+
size?: TJoyTagSizes | undefined;
|
|
66
|
+
name?: string | undefined;
|
|
67
|
+
variant?: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special" | undefined;
|
|
68
|
+
invalid?: boolean | undefined;
|
|
69
|
+
modelValue?: T[] | undefined;
|
|
70
|
+
"onUpdate:modelValue"?: ((values: T[]) => any) | undefined;
|
|
71
|
+
placeholder?: string | undefined;
|
|
72
|
+
"onValidation:error"?: ((type: TAGS_INPUT_ERRORS) => any) | undefined;
|
|
73
|
+
validation?: "none" | "email" | undefined;
|
|
74
|
+
duplicationError?: string | undefined;
|
|
75
|
+
invalidEmailError?: string | undefined;
|
|
76
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
77
|
+
expose(exposed: import("vue").ShallowUnwrapRef<{
|
|
78
|
+
isInvalid: Ref<boolean>;
|
|
79
|
+
hasDuplicates: () => boolean;
|
|
80
|
+
}>): void;
|
|
81
|
+
attrs: any;
|
|
82
|
+
slots: {
|
|
83
|
+
default?(_: {}): any;
|
|
84
|
+
tag?(_: {
|
|
85
|
+
name: T;
|
|
86
|
+
}): any;
|
|
87
|
+
};
|
|
88
|
+
emit: {
|
|
89
|
+
(e: 'update:modelValue', values: T[]): void;
|
|
90
|
+
(e: 'validation:error', type: TAGS_INPUT_ERRORS): void;
|
|
91
|
+
};
|
|
92
|
+
} | undefined;
|
|
93
|
+
};
|
|
94
|
+
export default _default;
|
|
95
|
+
type __VLS_Prettify<T> = {
|
|
96
|
+
[K in keyof T]: T[K];
|
|
97
|
+
} & {};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { TJoyTagsListModel, TJoyTagsList } from './JoyTagsList.types';
|
|
3
|
-
import { IJoyTagSelected } from '../JoyTag/JoyTag.types';
|
|
3
|
+
import { IJoyTagRemoved, IJoyTagSelected } from '../JoyTag/JoyTag.types';
|
|
4
4
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
5
5
|
align: {
|
|
6
6
|
type: PropType<"left" | "right" | "center">;
|
|
@@ -31,7 +31,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
31
31
|
};
|
|
32
32
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
33
33
|
"update:modelValue": (tags: TJoyTagsListModel) => void;
|
|
34
|
-
removeTag: (tagValue: string) => void;
|
|
34
|
+
removeTag: (tagValue: string | number | undefined) => void;
|
|
35
35
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
36
36
|
align: {
|
|
37
37
|
type: PropType<"left" | "right" | "center">;
|
|
@@ -62,12 +62,12 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
62
62
|
};
|
|
63
63
|
}>> & {
|
|
64
64
|
"onUpdate:modelValue"?: ((tags: TJoyTagsListModel) => any) | undefined;
|
|
65
|
-
onRemoveTag?: ((tagValue: string) => any) | undefined;
|
|
65
|
+
onRemoveTag?: ((tagValue: string | number | undefined) => any) | undefined;
|
|
66
66
|
}, {
|
|
67
67
|
variant: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special";
|
|
68
68
|
align: "left" | "right" | "center";
|
|
69
|
-
selectable: boolean;
|
|
70
69
|
removable: boolean;
|
|
70
|
+
selectable: boolean;
|
|
71
71
|
tags: TJoyTagsList;
|
|
72
72
|
}, {}>, {
|
|
73
73
|
tag?(_: {
|
|
@@ -77,7 +77,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
77
77
|
link?: boolean | undefined;
|
|
78
78
|
size?: import("../JoyTag/JoyTag.types").TJoyTagSizes | undefined;
|
|
79
79
|
variant?: "primary" | "secondary" | "important" | "inactive" | "pending" | "pricing" | "special" | undefined;
|
|
80
|
-
value?: string | undefined;
|
|
80
|
+
value?: string | number | undefined;
|
|
81
81
|
draggable?: boolean | undefined;
|
|
82
82
|
label?: string | undefined;
|
|
83
83
|
style?: unknown;
|
|
@@ -126,9 +126,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
126
126
|
[key: string]: any;
|
|
127
127
|
}>) => void)[] | undefined;
|
|
128
128
|
onSelected?: ((tag: IJoyTagSelected) => any) | undefined;
|
|
129
|
-
onRemove?: ((value:
|
|
130
|
-
value: string;
|
|
131
|
-
}) => any) | undefined;
|
|
129
|
+
onRemove?: ((value: IJoyTagRemoved) => any) | undefined;
|
|
132
130
|
}): any;
|
|
133
131
|
}>;
|
|
134
132
|
export default _default;
|
|
@@ -29,6 +29,7 @@ export * from './JoySeparator/JoySeparator.types';
|
|
|
29
29
|
export * from './JoySnackbar/JoySnackbar.types';
|
|
30
30
|
export * from './JoySpinner/JoySpinner.types';
|
|
31
31
|
export * from './JoyTag/JoyTag.types';
|
|
32
|
+
export * from './JoyTagsInput/JoyTagsInput.types';
|
|
32
33
|
export * from './JoyTagsList/JoyTagsList.types';
|
|
33
34
|
export * from './JoyTemplate/JoyTemplate.types';
|
|
34
35
|
export * from './JoyText/JoyText.types';
|
|
@@ -54,6 +54,7 @@ import { default as VJoyStepper } from './JoyStepper/VJoyStepper.vue';
|
|
|
54
54
|
import { default as VJoyTab } from './JoyTab/VJoyTab.vue';
|
|
55
55
|
import { default as VJoyTabs } from './JoyTabs/VJoyTabs.vue';
|
|
56
56
|
import { default as VJoyTag } from './JoyTag/VJoyTag.vue';
|
|
57
|
+
import { default as VJoyTagsInput } from './JoyTagsInput/VJoyTagsInput.vue';
|
|
57
58
|
import { default as VJoyTagsList } from './JoyTagsList/VJoyTagsList.vue';
|
|
58
59
|
import { default as VJoyTemplate } from './JoyTemplate/VJoyTemplate.vue';
|
|
59
60
|
import { default as VJoyTemplateShape } from './JoyTemplateShape/VJoyTemplateShape.vue';
|
|
@@ -63,4 +64,4 @@ import { default as VJoyToggle } from './JoyToggle/VJoyToggle.vue';
|
|
|
63
64
|
import { default as VJoyTooltip } from './JoyTooltip/VJoyTooltip.vue';
|
|
64
65
|
import { default as VJoyUserCard } from './JoyUserCard/VJoyUserCard.vue';
|
|
65
66
|
import { default as VJoyWrapper } from './JoyWrapper/VJoyWrapper.vue';
|
|
66
|
-
export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyFilterBar, VJoyFilterBarButton, VJoyFooter, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWrapper, };
|
|
67
|
+
export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyBlockSkeleton, VJoyBottomSheet, VJoyBottomSheetTrigger, VJoyButton, VJoyCheckbox, VJoyCollapse, VJoyCollapseItem, VJoyCompanyAvatar, VJoyCounter, VJoyDialog, VJoyDialogTrigger, VJoyDividerCta, VJoyDrawer, VJoyDrawerTrigger, VJoyDropdown, VJoyDropdownList, VJoyFilterBar, VJoyFilterBarButton, VJoyFooter, VJoyFormError, VJoyFormFieldSkeleton, VJoyFunnel, VJoyHeader, VJoyHighlight, VJoyIcon, VJoyIndicator, VJoyIndicators, VJoyInput, VJoyLabel, VJoyLink, VJoyMenu, VJoyMultiCheckbox, VJoyPagination, VJoyPanel, VJoyPanelSection, VJoyProgressBar, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySnackbar, VJoySpinner, VJoyStep, VJoyStepper, VJoyTab, VJoyTabs, VJoyTag, VJoyTagsInput, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyText, VJoyTextarea, VJoyToggle, VJoyTooltip, VJoyUserCard, VJoyWrapper, };
|