@maltjoy/core-vue 4.8.0 → 5.0.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/JoyAvatar/JoyAvatar.types.d.ts +1 -7
- package/dist/components/JoyAvatar/VJoyAvatar.vue.d.ts +41 -16
- package/dist/components/JoyButton/JoyButton.types.d.ts +1 -1
- package/dist/components/JoyCheckbox/VJoyCheckbox.vue.d.ts +2 -8
- package/dist/components/JoyMenu/VJoyMenu.vue.d.ts +6 -4
- package/dist/components/JoyMenuItem/JoyMenuItem.types.d.ts +13 -0
- package/dist/components/JoyMenuItem/VJoyMenuItem.vue.d.ts +73 -0
- package/dist/components/JoySelectableItem/VJoySelectableItem.types.d.ts +0 -1
- package/dist/components/JoySelectableItem/VJoySelectableItem.vue.d.ts +0 -4
- package/dist/components/JoySelectableItemGroup/VJoySelectableItemGroup.vue.d.ts +6 -0
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +3 -3
- package/dist/components/JoyTagsList/VJoyTagsList.vue.d.ts +1 -1
- package/dist/components/JoyTooltip/VJoyTooltip.vue.d.ts +10 -14
- package/dist/components/components.types.d.ts +1 -1
- package/dist/components/index.d.ts +2 -3
- package/dist/core-vue.js +1672 -1640
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +6 -7
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -2
- package/package.json +7 -6
- package/dist/components/JoyDividerCta/VJoyDividerCta.vue.d.ts +0 -29
- package/dist/components/JoyHeader/VJoyHeader.vue.d.ts +0 -13
- package/dist/components/JoyTooltip/JoyTooltip.types.d.ts +0 -6
package/joy-components.d.ts
CHANGED
|
@@ -18,7 +18,6 @@ declare module 'vue' {
|
|
|
18
18
|
VJoyCounter: typeof import('./dist/components/JoyCounter/VJoyCounter.vue')['default'];
|
|
19
19
|
VJoyDialog: typeof import('./dist/components/JoyDialog/VJoyDialog.vue')['default'];
|
|
20
20
|
VJoyDialogTrigger: typeof import('./dist/components/JoyDialogTrigger/VJoyDialogTrigger.vue')['default'];
|
|
21
|
-
VJoyDividerCta: typeof import('./dist/components/JoyDividerCta/VJoyDividerCta.vue')['default'];
|
|
22
21
|
VJoyDot: typeof import('./dist/components/JoyDot/VJoyDot.vue')['default'];
|
|
23
22
|
VJoyDrawer: typeof import('./dist/components/JoyDrawer/VJoyDrawer.vue')['default'];
|
|
24
23
|
VJoyDrawerTrigger: typeof import('./dist/components/JoyDrawerTrigger/VJoyDrawerTrigger.vue')['default'];
|
|
@@ -32,7 +31,6 @@ declare module 'vue' {
|
|
|
32
31
|
VJoyFunnel: typeof import('./dist/components/JoyFunnel/VJoyFunnel.vue')['default'];
|
|
33
32
|
VJoyFunnelFooter: typeof import('./dist/components/JoyFunnelFooter/VJoyFunnelFooter.vue')['default'];
|
|
34
33
|
VJoyFunnelHeader: typeof import('./dist/components/JoyFunnelHeader/VJoyFunnelHeader.vue')['default'];
|
|
35
|
-
VJoyHeader: typeof import('./dist/components/JoyHeader/VJoyHeader.vue')['default'];
|
|
36
34
|
VJoyHighlight: typeof import('./dist/components/JoyHighlight/VJoyHighlight.vue')['default'];
|
|
37
35
|
VJoyIcon: typeof import('./dist/components/JoyIcon/VJoyIcon.vue')['default'];
|
|
38
36
|
VJoyIndicator: typeof import('./dist/components/JoyIndicator/VJoyIndicator.vue')['default'];
|
|
@@ -42,6 +40,7 @@ declare module 'vue' {
|
|
|
42
40
|
VJoyLink: typeof import('./dist/components/JoyLink/VJoyLink.vue')['default'];
|
|
43
41
|
VJoyListItem: typeof import('./dist/components/JoyListItem/VJoyListItem.vue')['default'];
|
|
44
42
|
VJoyMenu: typeof import('./dist/components/JoyMenu/VJoyMenu.vue')['default'];
|
|
43
|
+
VJoyMenuItem: typeof import('./dist/components/JoyMenuItem/VJoyMenuItem.vue')['default'];
|
|
45
44
|
VJoyMultiCheckbox: typeof import('./dist/components/JoyMultiCheckbox/VJoyMultiCheckbox.vue')['default'];
|
|
46
45
|
VJoyPagination: typeof import('./dist/components/JoyPagination/VJoyPagination.vue')['default'];
|
|
47
46
|
VJoyPanel: typeof import('./dist/components/JoyPanel/VJoyPanel.vue')['default'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -27,11 +27,14 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@floating-ui/dom": "1.5.3",
|
|
29
29
|
"@floating-ui/vue": "^1.0.2",
|
|
30
|
-
"@maltjoy/css": "
|
|
31
|
-
"@maltjoy/icons": "
|
|
32
|
-
"@maltjoy/themes": "
|
|
30
|
+
"@maltjoy/css": "5.0.0",
|
|
31
|
+
"@maltjoy/icons": "5.0.0",
|
|
32
|
+
"@maltjoy/themes": "5.0.0",
|
|
33
33
|
"@vueuse/components": "10.8.0",
|
|
34
34
|
"@vueuse/core": "10.8.0",
|
|
35
|
+
"@vue/runtime-core": "3.5.13",
|
|
36
|
+
"@vue/runtime-dom": "3.5.13",
|
|
37
|
+
"@vue/shared": "3.5.13",
|
|
35
38
|
"mitt": "3.0.1",
|
|
36
39
|
"vue": "3.5.13",
|
|
37
40
|
"vue-bind-once": "^0.2.1",
|
|
@@ -55,8 +58,6 @@
|
|
|
55
58
|
"@vitejs/plugin-react": "^4.3.4",
|
|
56
59
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
57
60
|
"@vitest/coverage-istanbul": "^0.28.4",
|
|
58
|
-
"@vue/runtime-core": "3.5.13",
|
|
59
|
-
"@vue/runtime-dom": "3.5.13",
|
|
60
61
|
"@vue/test-utils": "^2.2.10",
|
|
61
62
|
"chromatic": "11.3.0",
|
|
62
63
|
"eslint": "8.42.0",
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
|
-
disabled: {
|
|
3
|
-
type: BooleanConstructor;
|
|
4
|
-
default: boolean;
|
|
5
|
-
};
|
|
6
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
-
disabled: {
|
|
8
|
-
type: BooleanConstructor;
|
|
9
|
-
default: boolean;
|
|
10
|
-
};
|
|
11
|
-
}>> & Readonly<{}>, {
|
|
12
|
-
disabled: boolean;
|
|
13
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
|
|
14
|
-
/** Title of the component */
|
|
15
|
-
default(): any;
|
|
16
|
-
/** Component main content, below the title */
|
|
17
|
-
'divider-content': () => any;
|
|
18
|
-
}> & {
|
|
19
|
-
/** Title of the component */
|
|
20
|
-
default(): any;
|
|
21
|
-
/** Component main content, below the title */
|
|
22
|
-
'divider-content': () => any;
|
|
23
|
-
}>;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
-
new (): {
|
|
27
|
-
$slots: S;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Readonly<{
|
|
2
|
-
'header-left': () => any;
|
|
3
|
-
'header-right': () => any;
|
|
4
|
-
}> & {
|
|
5
|
-
'header-left': () => any;
|
|
6
|
-
'header-right': () => any;
|
|
7
|
-
}>;
|
|
8
|
-
export default _default;
|
|
9
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
|
-
new (): {
|
|
11
|
-
$slots: S;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { ProductColors } from '../../types';
|
|
2
|
-
/**
|
|
3
|
-
* @deprecated
|
|
4
|
-
* Secondary will be removed in the next major version, making primary the only possible variant and then, the property obsolete.
|
|
5
|
-
*/
|
|
6
|
-
export type TJoyTooltipVariants = Extract<ProductColors, 'primary' | 'secondary'>;
|