@maltjoy/core-vue 4.4.0-next2 → 4.4.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/JoyAdminBanner/VJoyAdminBanner.vue.d.ts +7 -0
- package/dist/components/JoySelect/VJoySelect.vue.d.ts +8 -0
- package/dist/components/JoyToggle/VJoyToggle.vue.d.ts +10 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/core-vue.js +779 -748
- package/dist/core-vue.umd.cjs +2 -2
- package/dist/joy-core-vue-manifest.json +6 -5
- package/dist/style.css +1 -1
- package/joy-components.d.ts +1 -0
- package/package.json +28 -29
package/joy-components.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
// @ts-nocheck
|
|
2
2
|
declare module 'vue' {
|
|
3
3
|
interface GlobalComponents {
|
|
4
|
+
VJoyAdminBanner: typeof import('./dist/components/JoyAdminBanner/VJoyAdminBanner.vue')['default'];
|
|
4
5
|
VJoyAvailability: typeof import('./dist/components/JoyAvailability/VJoyAvailability.vue')['default'];
|
|
5
6
|
VJoyAvatar: typeof import('./dist/components/JoyAvatar/VJoyAvatar.vue')['default'];
|
|
6
7
|
VJoyAvatarsList: typeof import('./dist/components/JoyAvatarsList/VJoyAvatarsList.vue')['default'];
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
7
7
|
"*.d.ts"
|
|
8
8
|
],
|
|
9
|
-
"main": "./dist/core-vue.umd.
|
|
9
|
+
"main": "./dist/core-vue.umd.cjs",
|
|
10
10
|
"module": "./dist/core-vue.js",
|
|
11
11
|
"types": "./index.d.ts",
|
|
12
12
|
"exports": {
|
|
@@ -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": "4.
|
|
54
|
-
"@maltjoy/icons": "4.
|
|
55
|
-
"@maltjoy/themes": "4.
|
|
30
|
+
"@maltjoy/css": "4.4.1",
|
|
31
|
+
"@maltjoy/icons": "4.4.1",
|
|
32
|
+
"@maltjoy/themes": "4.4.1",
|
|
56
33
|
"@vueuse/components": "10.8.0",
|
|
57
34
|
"@vueuse/core": "10.8.0",
|
|
58
35
|
"mitt": "3.0.1",
|
|
@@ -95,5 +72,27 @@
|
|
|
95
72
|
"vitest": "^0.28.4",
|
|
96
73
|
"vue-component-type-helpers": "2.2.0",
|
|
97
74
|
"vue-tsc": "2.1.6"
|
|
75
|
+
},
|
|
76
|
+
"scripts": {
|
|
77
|
+
"dev": "pnpm prepare && vite",
|
|
78
|
+
"build:lib": "vite build",
|
|
79
|
+
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test && pnpm generate:manifest",
|
|
80
|
+
"preview": "vite preview",
|
|
81
|
+
"test": "vitest run --dom --coverage",
|
|
82
|
+
"test:dev": "vitest watch --dom",
|
|
83
|
+
"test:update": "vitest run --dom -u",
|
|
84
|
+
"lint": "eslint --ext .ts,.vue src",
|
|
85
|
+
"lint:fix": "eslint --ext .ts,.vue src --fix",
|
|
86
|
+
"lint:staged": "eslint --fix",
|
|
87
|
+
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
88
|
+
"format:staged": "prettier --write",
|
|
89
|
+
"storybook": "pnpm prepare && storybook dev --port=33725",
|
|
90
|
+
"typecheck": "vue-tsc --noEmit",
|
|
91
|
+
"build-storybook": "pnpm prepare && storybook build",
|
|
92
|
+
"preview-storybook": "pnpm storybook build && pnpm dlx http-server ./storybook-static/",
|
|
93
|
+
"generate:components-types": "node src/tasks/generate-components-types.mjs",
|
|
94
|
+
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs",
|
|
95
|
+
"generate:manifest": "node src/tasks/generate-manifest.mjs",
|
|
96
|
+
"copy:fonticon": "node src/tasks/copy-fonticon.mjs"
|
|
98
97
|
}
|
|
99
|
-
}
|
|
98
|
+
}
|