@maltjoy/core-vue 3.11.0 → 3.13.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/JoyBadgeLevel/JoyBadgeLevel.types.d.ts +12 -0
- package/dist/components/JoyBadgeLevel/VJoyBadgeLevel.vue.d.ts +45 -0
- package/dist/components/JoyCompanyAvatar/JoyCompanyAvatar.types.d.ts +3 -0
- package/dist/components/JoyCompanyAvatar/VJoyCompanyAvatar.vue.d.ts +22 -0
- package/dist/components/JoyDividerCta/VJoyDividerCta.vue.d.ts +22 -0
- package/dist/components/JoyDropdown/VJoyDropdown.vue.d.ts +31 -7
- package/dist/components/JoyDropdownList/VJoyDropdownList.vue.d.ts +29 -9
- package/dist/components/JoyFilterBar/VJoyFilterBar.vue.d.ts +13 -0
- package/dist/components/JoyFilterBarButton/VJoyFilterBarButton.vue.d.ts +31 -0
- package/dist/components/JoyRatingStars/JoyRatingStars.types.d.ts +3 -0
- package/dist/components/JoyRatingStars/VJoyRatingStars.vue.d.ts +43 -0
- package/dist/components/JoySelect/VJoySelect.vue.d.ts +2 -0
- package/dist/components/JoySeparator/JoySeparator.types.d.ts +4 -0
- package/dist/components/JoySeparator/VJoySeparator.vue.d.ts +24 -0
- package/dist/components/JoyTemplate/VJoyTemplate.vue.d.ts +9 -0
- package/dist/components/JoyTemplateShape/VJoyTemplateShape.vue.d.ts +2 -0
- package/dist/components/components.types.d.ts +3 -0
- package/dist/components/index.d.ts +9 -1
- package/dist/joy-vue.js +1725 -1274
- package/dist/joy-vue.umd.cjs +1 -1
- package/dist/style.css +1 -1
- package/dist/tests/__utils__/index.d.ts +1 -0
- package/joy-components.d.ts +8 -0
- package/package.json +19 -16
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export declare enum JoyBadgeLevelEnum {
|
|
2
|
+
HIGH_POTENTIAL = "highpotential",
|
|
3
|
+
HIGH_POTENTIAL_AUTO = "high-potential-auto",
|
|
4
|
+
MALT_LINKER = "maltlinker",
|
|
5
|
+
NEW = "new",
|
|
6
|
+
SUPER_MALTER = "supermalter",
|
|
7
|
+
VERIFIED = "verified"
|
|
8
|
+
}
|
|
9
|
+
export declare enum JoyBadgeProgramEnum {
|
|
10
|
+
HIGH_POTENTIAL = "program_high-potential"
|
|
11
|
+
}
|
|
12
|
+
export type BadgesTypes = `${JoyBadgeLevelEnum | JoyBadgeProgramEnum}`;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
3
|
+
/** Badge type. HIGH_POTENTIAL, SUPERMALTER, etc... */
|
|
4
|
+
type: {
|
|
5
|
+
type: PropType<"highpotential" | "high-potential-auto" | "maltlinker" | "new" | "supermalter" | "verified" | "program_high-potential">;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
/** If supermalter type is given, specify the level (from 1 to 3) */
|
|
9
|
+
superMalterLevel: {
|
|
10
|
+
type: NumberConstructor;
|
|
11
|
+
default: number;
|
|
12
|
+
};
|
|
13
|
+
/** Display the default badge label */
|
|
14
|
+
visibleText: {
|
|
15
|
+
type: BooleanConstructor;
|
|
16
|
+
default: boolean;
|
|
17
|
+
};
|
|
18
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
/** Badge type. HIGH_POTENTIAL, SUPERMALTER, etc... */
|
|
20
|
+
type: {
|
|
21
|
+
type: PropType<"highpotential" | "high-potential-auto" | "maltlinker" | "new" | "supermalter" | "verified" | "program_high-potential">;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
/** If supermalter type is given, specify the level (from 1 to 3) */
|
|
25
|
+
superMalterLevel: {
|
|
26
|
+
type: NumberConstructor;
|
|
27
|
+
default: number;
|
|
28
|
+
};
|
|
29
|
+
/** Display the default badge label */
|
|
30
|
+
visibleText: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: boolean;
|
|
33
|
+
};
|
|
34
|
+
}>>, {
|
|
35
|
+
superMalterLevel: number;
|
|
36
|
+
visibleText: boolean;
|
|
37
|
+
}, {}>, {
|
|
38
|
+
default: (_: {}) => any;
|
|
39
|
+
}>;
|
|
40
|
+
export default _default;
|
|
41
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
42
|
+
new (): {
|
|
43
|
+
$slots: S;
|
|
44
|
+
};
|
|
45
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { CompanyAvatarSizes } from './JoyCompanyAvatar.types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
imgSrc: StringConstructor;
|
|
5
|
+
imgAlt: StringConstructor;
|
|
6
|
+
companyName: StringConstructor;
|
|
7
|
+
size: {
|
|
8
|
+
type: PropType<CompanyAvatarSizes>;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
imgSrc: StringConstructor;
|
|
13
|
+
imgAlt: StringConstructor;
|
|
14
|
+
companyName: StringConstructor;
|
|
15
|
+
size: {
|
|
16
|
+
type: PropType<CompanyAvatarSizes>;
|
|
17
|
+
default: string;
|
|
18
|
+
};
|
|
19
|
+
}>>, {
|
|
20
|
+
size: CompanyAvatarSizes;
|
|
21
|
+
}, {}>;
|
|
22
|
+
export default _default;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
disabled: {
|
|
3
|
+
type: BooleanConstructor;
|
|
4
|
+
default: boolean;
|
|
5
|
+
};
|
|
6
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
+
disabled: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
}>>, {
|
|
12
|
+
disabled: boolean;
|
|
13
|
+
}, {}>, {
|
|
14
|
+
default: (_: {}) => any;
|
|
15
|
+
'divider-content': (_: {}) => any;
|
|
16
|
+
}>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
@@ -60,6 +60,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
60
60
|
default: string;
|
|
61
61
|
validator(size: DropdownListSizes): boolean;
|
|
62
62
|
};
|
|
63
|
+
/** Use v-model */
|
|
63
64
|
modelValue: {
|
|
64
65
|
type: StringConstructor;
|
|
65
66
|
default: string;
|
|
@@ -85,21 +86,29 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
85
86
|
type: StringConstructor;
|
|
86
87
|
default: string;
|
|
87
88
|
};
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
89
|
+
/**
|
|
90
|
+
* Display a reset CTA on top of the dropdown list. Useful when using a VJoyMultiCheckbox.
|
|
91
|
+
* Please note that is does not automatically apply changes to you models, it simply fires a **dropdown:reset** custom event
|
|
92
|
+
* */
|
|
93
|
+
reset: {
|
|
94
|
+
type: BooleanConstructor;
|
|
95
|
+
default: boolean;
|
|
95
96
|
};
|
|
97
|
+
/** Label of the reset CTA. Depends on reset property activation */
|
|
98
|
+
resetLabel: {
|
|
99
|
+
type: StringConstructor;
|
|
100
|
+
};
|
|
101
|
+
}, {
|
|
96
102
|
showDropdownList: import("vue").Ref<boolean>;
|
|
103
|
+
generatedId: string;
|
|
97
104
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
98
105
|
"update:modelValue": (value: string | undefined) => void;
|
|
99
106
|
} & {
|
|
100
107
|
"dropdown:open": () => void;
|
|
101
108
|
} & {
|
|
102
109
|
"dropdown:hide": () => void;
|
|
110
|
+
} & {
|
|
111
|
+
"dropdown:reset": () => void;
|
|
103
112
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
104
113
|
/** DOM valid selector to give to Vue3 Teleport "to" property */
|
|
105
114
|
appendTo: {
|
|
@@ -145,6 +154,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
145
154
|
default: string;
|
|
146
155
|
validator(size: DropdownListSizes): boolean;
|
|
147
156
|
};
|
|
157
|
+
/** Use v-model */
|
|
148
158
|
modelValue: {
|
|
149
159
|
type: StringConstructor;
|
|
150
160
|
default: string;
|
|
@@ -170,13 +180,27 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
170
180
|
type: StringConstructor;
|
|
171
181
|
default: string;
|
|
172
182
|
};
|
|
183
|
+
/**
|
|
184
|
+
* Display a reset CTA on top of the dropdown list. Useful when using a VJoyMultiCheckbox.
|
|
185
|
+
* Please note that is does not automatically apply changes to you models, it simply fires a **dropdown:reset** custom event
|
|
186
|
+
* */
|
|
187
|
+
reset: {
|
|
188
|
+
type: BooleanConstructor;
|
|
189
|
+
default: boolean;
|
|
190
|
+
};
|
|
191
|
+
/** Label of the reset CTA. Depends on reset property activation */
|
|
192
|
+
resetLabel: {
|
|
193
|
+
type: StringConstructor;
|
|
194
|
+
};
|
|
173
195
|
}>> & {
|
|
174
196
|
"onUpdate:modelValue"?: ((value: string | undefined) => any) | undefined;
|
|
175
197
|
"onDropdown:open"?: (() => any) | undefined;
|
|
176
198
|
"onDropdown:hide"?: (() => any) | undefined;
|
|
199
|
+
"onDropdown:reset"?: (() => any) | undefined;
|
|
177
200
|
}, {
|
|
178
201
|
size: DropdownListSizes;
|
|
179
202
|
modelValue: string;
|
|
203
|
+
reset: boolean;
|
|
180
204
|
options: Option[];
|
|
181
205
|
width: string;
|
|
182
206
|
height: string;
|
|
@@ -41,13 +41,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
41
41
|
type: StringConstructor;
|
|
42
42
|
default: string;
|
|
43
43
|
};
|
|
44
|
+
reset: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
default: boolean;
|
|
47
|
+
};
|
|
48
|
+
resetLabel: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
};
|
|
51
|
+
ariaLabelledBy: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
};
|
|
54
|
+
ariaLabel: {
|
|
55
|
+
type: StringConstructor;
|
|
56
|
+
};
|
|
44
57
|
}, {
|
|
45
58
|
isSelected: import("vue").ComputedRef<(option: Option) => boolean>;
|
|
46
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
47
|
-
"update:modelValue": (value: string | undefined) => void;
|
|
48
|
-
} & {
|
|
49
|
-
"close:dropdownList": () => void;
|
|
50
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
59
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
51
60
|
/**
|
|
52
61
|
* In order to make it work with v-model, you need to pass for each option, a value or an ID.
|
|
53
62
|
*/
|
|
@@ -73,11 +82,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
73
82
|
type: StringConstructor;
|
|
74
83
|
default: string;
|
|
75
84
|
};
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
85
|
+
reset: {
|
|
86
|
+
type: BooleanConstructor;
|
|
87
|
+
default: boolean;
|
|
88
|
+
};
|
|
89
|
+
resetLabel: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
};
|
|
92
|
+
ariaLabelledBy: {
|
|
93
|
+
type: StringConstructor;
|
|
94
|
+
};
|
|
95
|
+
ariaLabel: {
|
|
96
|
+
type: StringConstructor;
|
|
97
|
+
};
|
|
98
|
+
}>>, {
|
|
80
99
|
size: DropdownListSizes;
|
|
100
|
+
reset: boolean;
|
|
81
101
|
options: Option[];
|
|
82
102
|
width: string;
|
|
83
103
|
height: string;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
ariaLabel: StringConstructor;
|
|
3
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
4
|
+
ariaLabel: StringConstructor;
|
|
5
|
+
}>>, {}, {}>, {
|
|
6
|
+
default: (_: {}) => any;
|
|
7
|
+
}>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
+
new (): {
|
|
11
|
+
$slots: S;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
2
|
+
label: StringConstructor;
|
|
3
|
+
value: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
active: {
|
|
8
|
+
type: BooleanConstructor;
|
|
9
|
+
default: boolean;
|
|
10
|
+
};
|
|
11
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
label: StringConstructor;
|
|
13
|
+
value: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
active: {
|
|
18
|
+
type: BooleanConstructor;
|
|
19
|
+
default: boolean;
|
|
20
|
+
};
|
|
21
|
+
}>>, {
|
|
22
|
+
active: boolean;
|
|
23
|
+
}, {}>, {
|
|
24
|
+
default: (_: {}) => any;
|
|
25
|
+
}>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { RatingStarsSizes } from './JoyRatingStars.types';
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
4
|
+
ratingValue: {
|
|
5
|
+
type: NumberConstructor;
|
|
6
|
+
default: number;
|
|
7
|
+
};
|
|
8
|
+
reviewCount: {
|
|
9
|
+
type: NumberConstructor;
|
|
10
|
+
default: number;
|
|
11
|
+
};
|
|
12
|
+
size: {
|
|
13
|
+
type: PropType<RatingStarsSizes>;
|
|
14
|
+
default: string;
|
|
15
|
+
};
|
|
16
|
+
}, {
|
|
17
|
+
setStars: import("vue").ComputedRef<string[]>;
|
|
18
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
ratingValue: {
|
|
20
|
+
type: NumberConstructor;
|
|
21
|
+
default: number;
|
|
22
|
+
};
|
|
23
|
+
reviewCount: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
size: {
|
|
28
|
+
type: PropType<RatingStarsSizes>;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
}>>, {
|
|
32
|
+
size: RatingStarsSizes;
|
|
33
|
+
ratingValue: number;
|
|
34
|
+
reviewCount: number;
|
|
35
|
+
}, {}>, {
|
|
36
|
+
'rating-stars-content': (_: {}) => any;
|
|
37
|
+
}>;
|
|
38
|
+
export default _default;
|
|
39
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
40
|
+
new (): {
|
|
41
|
+
$slots: S;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
@@ -28,6 +28,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
28
28
|
type: BooleanConstructor;
|
|
29
29
|
default: boolean;
|
|
30
30
|
};
|
|
31
|
+
/** Made to use the built-in v-model */
|
|
31
32
|
modelValue: {
|
|
32
33
|
type: (StringConstructor | NumberConstructor)[];
|
|
33
34
|
};
|
|
@@ -65,6 +66,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
65
66
|
type: BooleanConstructor;
|
|
66
67
|
default: boolean;
|
|
67
68
|
};
|
|
69
|
+
/** Made to use the built-in v-model */
|
|
68
70
|
modelValue: {
|
|
69
71
|
type: (StringConstructor | NumberConstructor)[];
|
|
70
72
|
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { SeparatorSizes } from './JoySeparator.types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<{
|
|
4
|
+
/** Main text to apply in the central area */
|
|
5
|
+
text: {
|
|
6
|
+
type: StringConstructor;
|
|
7
|
+
};
|
|
8
|
+
size: {
|
|
9
|
+
type: PropType<SeparatorSizes>;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
13
|
+
/** Main text to apply in the central area */
|
|
14
|
+
text: {
|
|
15
|
+
type: StringConstructor;
|
|
16
|
+
};
|
|
17
|
+
size: {
|
|
18
|
+
type: PropType<SeparatorSizes>;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>>, {
|
|
22
|
+
size: SeparatorSizes;
|
|
23
|
+
}, {}>;
|
|
24
|
+
export default _default;
|
|
@@ -16,6 +16,10 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
16
16
|
type: PropType<"dark" | "light">;
|
|
17
17
|
default: string;
|
|
18
18
|
};
|
|
19
|
+
shapes: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
19
23
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
20
24
|
full: {
|
|
21
25
|
type: BooleanConstructor;
|
|
@@ -33,11 +37,16 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
33
37
|
type: PropType<"dark" | "light">;
|
|
34
38
|
default: string;
|
|
35
39
|
};
|
|
40
|
+
shapes: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: boolean;
|
|
43
|
+
};
|
|
36
44
|
}>>, {
|
|
37
45
|
loading: boolean;
|
|
38
46
|
loadingColor: "dark" | "light";
|
|
39
47
|
full: boolean;
|
|
40
48
|
sidebar: "left" | "right";
|
|
49
|
+
shapes: boolean;
|
|
41
50
|
}, {}>, {
|
|
42
51
|
'template-back': (_: {}) => any;
|
|
43
52
|
'template-title': (_: {}) => any;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
export * from './JoyAvailability/JoyAvailability.types';
|
|
2
2
|
export * from './JoyAvatar/JoyAvatar.types';
|
|
3
3
|
export * from './JoyBadge/JoyBadge.types';
|
|
4
|
+
export * from './JoyBadgeLevel/JoyBadgeLevel.types';
|
|
4
5
|
export * from './JoyButton/JoyButton.types';
|
|
6
|
+
export * from './JoyCompanyAvatar/JoyCompanyAvatar.types';
|
|
5
7
|
export * from './JoyDropdown/JoyDropdown.types';
|
|
6
8
|
export * from './JoyDropdownList/JoyDropdownList.types';
|
|
7
9
|
export * from './JoyHighlight/JoyHighlight.types';
|
|
@@ -16,6 +18,7 @@ export * from './JoyRadio/JoyRadio.types';
|
|
|
16
18
|
export * from './JoyRadioGroup/JoyRadioGroup.types';
|
|
17
19
|
export * from './JoyScreenLoader/VJoyScreenLoader.types';
|
|
18
20
|
export * from './JoySelect/JoySelect.types';
|
|
21
|
+
export * from './JoySeparator/JoySeparator.types';
|
|
19
22
|
export * from './JoySpinner/JoySpinner.types';
|
|
20
23
|
export * from './JoyTag/JoyTag.types';
|
|
21
24
|
export * from './JoyTagsList/JoyTagsList.types';
|
|
@@ -2,11 +2,16 @@ import VJoyAvailability from '@/components/JoyAvailability/VJoyAvailability.vue'
|
|
|
2
2
|
import VJoyAvatar from '@/components/JoyAvatar/VJoyAvatar.vue';
|
|
3
3
|
import VJoyAvatarsList from '@/components/JoyAvatarsList/VJoyAvatarsList.vue';
|
|
4
4
|
import VJoyBadge from '@/components/JoyBadge/VJoyBadge.vue';
|
|
5
|
+
import VJoyBadgeLevel from '@/components/JoyBadgeLevel/VJoyBadgeLevel.vue';
|
|
5
6
|
import VJoyButton from '@/components/JoyButton/VJoyButton.vue';
|
|
6
7
|
import VJoyCheckbox from '@/components/JoyCheckbox/VJoyCheckbox.vue';
|
|
8
|
+
import VJoyCompanyAvatar from '@/components/JoyCompanyAvatar/VJoyCompanyAvatar.vue';
|
|
7
9
|
import VJoyCounter from '@/components/JoyCounter/VJoyCounter.vue';
|
|
10
|
+
import VJoyDividerCta from '@/components/JoyDividerCta/VJoyDividerCta.vue';
|
|
8
11
|
import VJoyDropdown from '@/components/JoyDropdown/VJoyDropdown.vue';
|
|
9
12
|
import VJoyDropdownList from '@/components/JoyDropdownList/VJoyDropdownList.vue';
|
|
13
|
+
import VJoyFilterBar from '@/components/JoyFilterBar/VJoyFilterBar.vue';
|
|
14
|
+
import VJoyFilterBarButton from '@/components/JoyFilterBarButton/VJoyFilterBarButton.vue';
|
|
10
15
|
import VJoyFormError from '@/components/JoyFormError/VJoyFormError.vue';
|
|
11
16
|
import VJoyHighlight from '@/components/JoyHighlight/VJoyHighlight.vue';
|
|
12
17
|
import VJoyIcon from '@/components/JoyIcon/VJoyIcon.vue';
|
|
@@ -18,15 +23,18 @@ import VJoyPanel from '@/components/JoyPanel/VJoyPanel.vue';
|
|
|
18
23
|
import VJoyPanelSection from '@/components/JoyPanelSection/VJoyPanelSection.vue';
|
|
19
24
|
import VJoyRadio from '@/components/JoyRadio/VJoyRadio.vue';
|
|
20
25
|
import VJoyRadioGroup from '@/components/JoyRadioGroup/VJoyRadioGroup.vue';
|
|
26
|
+
import VJoyRatingStars from '@/components/JoyRatingStars/VJoyRatingStars.vue';
|
|
21
27
|
import VJoyScreenLoader from '@/components/JoyScreenLoader/VJoyScreenLoader.vue';
|
|
22
28
|
import VJoySelect from '@/components/JoySelect/VJoySelect.vue';
|
|
23
29
|
import VJoySelectableItem from '@/components/JoySelectableItem/VJoySelectableItem.vue';
|
|
24
30
|
import VJoySelectableItemGroup from '@/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue';
|
|
31
|
+
import VJoySeparator from '@/components/JoySeparator/VJoySeparator.vue';
|
|
25
32
|
import VJoySpinner from '@/components/JoySpinner/VJoySpinner.vue';
|
|
26
33
|
import VJoyWrapper from '@/components/JoyWrapper/VJoyWrapper.vue';
|
|
27
34
|
import VJoyTag from '@/components/JoyTag/VJoyTag.vue';
|
|
28
35
|
import VJoyTagsList from '@/components/JoyTagsList/VJoyTagsList.vue';
|
|
29
36
|
import VJoyTemplate from '@/components/JoyTemplate/VJoyTemplate.vue';
|
|
37
|
+
import VJoyTemplateShape from '@/components/JoyTemplateShape/VJoyTemplateShape.vue';
|
|
30
38
|
import VJoyTextarea from '@/components/JoyTextarea/VJoyTextarea.vue';
|
|
31
39
|
import VJoyToggle from '@/components/JoyToggle/VJoyToggle.vue';
|
|
32
|
-
export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyButton, VJoyCheckbox, VJoyCounter, VJoyDropdown, VJoyDropdownList, VJoyFormError, VJoyHighlight, VJoyIcon, VJoyInput, VJoyLabel, VJoyLink, VJoyMultiCheckbox, VJoyPanel, VJoyPanelSection, VJoyRadio, VJoyRadioGroup, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySpinner, VJoyTag, VJoyTagsList, VJoyTemplate, VJoyTextarea, VJoyToggle, VJoyWrapper, };
|
|
40
|
+
export { VJoyAvailability, VJoyAvatar, VJoyAvatarsList, VJoyBadge, VJoyBadgeLevel, VJoyButton, VJoyCheckbox, VJoyCompanyAvatar, VJoyCounter, VJoyDividerCta, VJoyDropdown, VJoyDropdownList, VJoyFilterBar, VJoyFilterBarButton, VJoyFormError, VJoyHighlight, VJoyIcon, VJoyInput, VJoyLabel, VJoyLink, VJoyMultiCheckbox, VJoyPanel, VJoyPanelSection, VJoyRadio, VJoyRadioGroup, VJoyRatingStars, VJoyScreenLoader, VJoySelect, VJoySelectableItem, VJoySelectableItemGroup, VJoySeparator, VJoySpinner, VJoyTag, VJoyTagsList, VJoyTemplate, VJoyTemplateShape, VJoyTextarea, VJoyToggle, VJoyWrapper, };
|