@maltjoy/core-vue 5.0.0-alpha.1 → 5.0.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/index.d.ts +1 -2
- package/dist/core-vue.js +786 -787
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +2 -3
- package/dist/style.css +1 -1
- package/dist/tests/tests-helpers/index.d.ts +2 -0
- package/joy-components.d.ts +0 -1
- package/package.json +38 -39
- package/dist/components/JoyHeader/VJoyHeader.vue.d.ts +0 -13
|
@@ -1,2 +1,4 @@
|
|
|
1
1
|
import { config as cfg } from '@vue/test-utils';
|
|
2
|
+
import { Component } from 'vue';
|
|
2
3
|
export declare function setIdPrefix(config: typeof cfg): void;
|
|
4
|
+
export declare function expectFormFieldsToHaveSpecificAttribute(component: Component, options: Record<string, any>, selector?: string): void;
|
package/joy-components.d.ts
CHANGED
|
@@ -31,7 +31,6 @@ declare module 'vue' {
|
|
|
31
31
|
VJoyFunnel: typeof import('./dist/components/JoyFunnel/VJoyFunnel.vue')['default'];
|
|
32
32
|
VJoyFunnelFooter: typeof import('./dist/components/JoyFunnelFooter/VJoyFunnelFooter.vue')['default'];
|
|
33
33
|
VJoyFunnelHeader: typeof import('./dist/components/JoyFunnelHeader/VJoyFunnelHeader.vue')['default'];
|
|
34
|
-
VJoyHeader: typeof import('./dist/components/JoyHeader/VJoyHeader.vue')['default'];
|
|
35
34
|
VJoyHighlight: typeof import('./dist/components/JoyHighlight/VJoyHighlight.vue')['default'];
|
|
36
35
|
VJoyIcon: typeof import('./dist/components/JoyIcon/VJoyIcon.vue')['default'];
|
|
37
36
|
VJoyIndicator: typeof import('./dist/components/JoyIndicator/VJoyIndicator.vue')['default'];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -24,35 +24,12 @@
|
|
|
24
24
|
"./dist/style.css": "./dist/style.css",
|
|
25
25
|
"./dist/joy-core-vue-manifest.json": "./dist/joy-core-vue-manifest.json"
|
|
26
26
|
},
|
|
27
|
-
"scripts": {
|
|
28
|
-
"prepare": "pnpm generate:components-autoimports && pnpm generate:components-types && pnpm copy:fonticon",
|
|
29
|
-
"dev": "pnpm prepare && vite",
|
|
30
|
-
"build:lib": "vite build",
|
|
31
|
-
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test && pnpm generate:manifest",
|
|
32
|
-
"preview": "vite preview",
|
|
33
|
-
"test": "vitest run --dom --coverage",
|
|
34
|
-
"test:dev": "vitest watch --dom",
|
|
35
|
-
"test:update": "vitest run --dom -u",
|
|
36
|
-
"lint": "eslint --ext .ts,.vue src",
|
|
37
|
-
"lint:fix": "eslint --ext .ts,.vue src --fix",
|
|
38
|
-
"lint:staged": "eslint --fix",
|
|
39
|
-
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
40
|
-
"format:staged": "prettier --write",
|
|
41
|
-
"storybook": "pnpm prepare && storybook dev --port=33725",
|
|
42
|
-
"typecheck": "vue-tsc --noEmit",
|
|
43
|
-
"build-storybook": "pnpm prepare && storybook build",
|
|
44
|
-
"preview-storybook": "pnpm storybook build && pnpm dlx http-server ./storybook-static/",
|
|
45
|
-
"generate:components-types": "node src/tasks/generate-components-types.mjs",
|
|
46
|
-
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
|
|
47
|
-
"generate:manifest": "node src/tasks/generate-manifest.mjs",
|
|
48
|
-
"copy:fonticon": "node src/tasks/copy-fonticon.mjs"
|
|
49
|
-
},
|
|
50
27
|
"dependencies": {
|
|
51
28
|
"@floating-ui/dom": "1.5.3",
|
|
52
29
|
"@floating-ui/vue": "^1.0.2",
|
|
53
|
-
"@maltjoy/css": "
|
|
54
|
-
"@maltjoy/icons": "
|
|
55
|
-
"@maltjoy/themes": "
|
|
30
|
+
"@maltjoy/css": "5.0.1",
|
|
31
|
+
"@maltjoy/icons": "5.0.1",
|
|
32
|
+
"@maltjoy/themes": "5.0.1",
|
|
56
33
|
"@vueuse/components": "10.8.0",
|
|
57
34
|
"@vueuse/core": "10.8.0",
|
|
58
35
|
"@vue/runtime-core": "3.5.13",
|
|
@@ -67,16 +44,16 @@
|
|
|
67
44
|
"@babel/core": "7.20.12",
|
|
68
45
|
"@chromatic-com/storybook": "^1",
|
|
69
46
|
"@rushstack/eslint-patch": "^1.2.0",
|
|
70
|
-
"@storybook/addon-a11y": "8.6.
|
|
71
|
-
"@storybook/addon-docs": "8.6.
|
|
72
|
-
"@storybook/addon-essentials": "8.6.
|
|
73
|
-
"@storybook/addon-interactions": "8.6.
|
|
74
|
-
"@storybook/addon-links": "8.6.
|
|
75
|
-
"@storybook/addon-viewport": "8.6.
|
|
76
|
-
"@storybook/blocks": "8.6.
|
|
77
|
-
"@storybook/theming": "8.6.
|
|
78
|
-
"@storybook/vue3": "^8.6.
|
|
79
|
-
"@storybook/vue3-vite": "^8.6.
|
|
47
|
+
"@storybook/addon-a11y": "8.6.14",
|
|
48
|
+
"@storybook/addon-docs": "8.6.14",
|
|
49
|
+
"@storybook/addon-essentials": "8.6.14",
|
|
50
|
+
"@storybook/addon-interactions": "8.6.14",
|
|
51
|
+
"@storybook/addon-links": "8.6.14",
|
|
52
|
+
"@storybook/addon-viewport": "8.6.14",
|
|
53
|
+
"@storybook/blocks": "8.6.14",
|
|
54
|
+
"@storybook/theming": "8.6.14",
|
|
55
|
+
"@storybook/vue3": "^8.6.14",
|
|
56
|
+
"@storybook/vue3-vite": "^8.6.14",
|
|
80
57
|
"@typescript-eslint/parser": "5.59.11",
|
|
81
58
|
"@vitejs/plugin-react": "^4.3.4",
|
|
82
59
|
"@vitejs/plugin-vue": "^4.0.0",
|
|
@@ -90,11 +67,33 @@
|
|
|
90
67
|
"prettier": "2.8.8",
|
|
91
68
|
"pretty": "^2.0.0",
|
|
92
69
|
"sass": "1.77.8",
|
|
93
|
-
"storybook": "8.6.
|
|
70
|
+
"storybook": "8.6.14",
|
|
94
71
|
"typescript": "5.3.3",
|
|
95
72
|
"vite": "5.4.11",
|
|
96
73
|
"vitest": "^0.28.4",
|
|
97
74
|
"vue-component-type-helpers": "2.2.0",
|
|
98
75
|
"vue-tsc": "2.1.6"
|
|
76
|
+
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"dev": "pnpm prepare && vite",
|
|
79
|
+
"build:lib": "vite build",
|
|
80
|
+
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test && pnpm generate:manifest",
|
|
81
|
+
"preview": "vite preview",
|
|
82
|
+
"test": "vitest run --dom --coverage",
|
|
83
|
+
"test:dev": "vitest watch --dom",
|
|
84
|
+
"test:update": "vitest run --dom -u",
|
|
85
|
+
"lint": "eslint --ext .ts,.vue src",
|
|
86
|
+
"lint:fix": "eslint --ext .ts,.vue src --fix",
|
|
87
|
+
"lint:staged": "eslint --fix",
|
|
88
|
+
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
89
|
+
"format:staged": "prettier --write",
|
|
90
|
+
"storybook": "pnpm prepare && storybook dev --port=33725",
|
|
91
|
+
"typecheck": "vue-tsc --noEmit",
|
|
92
|
+
"build-storybook": "pnpm prepare && storybook build",
|
|
93
|
+
"preview-storybook": "pnpm storybook build && pnpm dlx http-server ./storybook-static/",
|
|
94
|
+
"generate:components-types": "node src/tasks/generate-components-types.mjs",
|
|
95
|
+
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
|
|
96
|
+
"generate:manifest": "node src/tasks/generate-manifest.mjs",
|
|
97
|
+
"copy:fonticon": "node src/tasks/copy-fonticon.mjs"
|
|
99
98
|
}
|
|
100
|
-
}
|
|
99
|
+
}
|
|
@@ -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
|
-
};
|