@maltjoy/core-vue 3.23.1-next → 3.25.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/LICENSE +21 -0
- package/dist/components/JoyHighlight/JoyHighlight.types.d.ts +2 -0
- package/dist/components/JoyHighlight/VJoyHighlight.vue.d.ts +13 -0
- package/dist/components/JoyTag/JoyTag.types.d.ts +1 -1
- package/dist/components/JoyTag/VJoyTag.vue.d.ts +1 -1
- package/dist/components/JoyTagsInput/VJoyTagsInput.vue.d.ts +3 -3
- package/dist/components/JoyTagsList/VJoyTagsList.vue.d.ts +4 -4
- package/dist/joy-vue.js +694 -690
- package/dist/joy-vue.umd.cjs +3 -3
- package/dist/style.css +1 -1
- package/dist/types/index.d.ts +1 -0
- package/package.json +26 -25
package/dist/types/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
export declare const GENERIC_VARIANTS: readonly ["primary", "secondary"];
|
|
7
7
|
export declare const SIZES: readonly ["xlarge", "large", "medium", "small", "xsmall", "xxsmall"];
|
|
8
8
|
export declare const LEVELS: readonly ["neutral", "success", "info", "warning", "error"];
|
|
9
|
+
export declare const THEMES: readonly ["AI"];
|
|
9
10
|
export declare const POSITIONS: readonly ["left", "right"];
|
|
10
11
|
export type BrandColors = 'primary-brand' | 'secondary-brand';
|
|
11
12
|
export type FunctionalColors = Exclude<(typeof LEVELS)[number], 'neutral'>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@maltjoy/core-vue",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.25.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -13,36 +13,17 @@
|
|
|
13
13
|
"exports": {
|
|
14
14
|
".": {
|
|
15
15
|
"import": "./dist/joy-vue.js",
|
|
16
|
-
"require": "./dist/joy-vue.umd.cjs"
|
|
16
|
+
"require": "./dist/joy-vue.umd.cjs",
|
|
17
|
+
"types": "./index.d.ts"
|
|
17
18
|
},
|
|
18
19
|
"./dist/style.css": "./dist/style.css"
|
|
19
20
|
},
|
|
20
|
-
"scripts": {
|
|
21
|
-
"prepare": "pnpm generate:components-autoimports && pnpm generate:components-types",
|
|
22
|
-
"dev": "pnpm prepare && vite",
|
|
23
|
-
"build:lib": "vite build",
|
|
24
|
-
"build": "pnpm typecheck && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist && pnpm test",
|
|
25
|
-
"preview": "vite preview",
|
|
26
|
-
"test": "vitest run --dom --coverage",
|
|
27
|
-
"test:dev": "vitest watch --dom",
|
|
28
|
-
"test:update": "vitest run --dom -u",
|
|
29
|
-
"lint": "eslint --ext .ts,.vue src",
|
|
30
|
-
"lint:fix": "eslint --ext .ts,.vue src --fix",
|
|
31
|
-
"lint:staged": "eslint --fix",
|
|
32
|
-
"format": "prettier --write \"**/*.{js,ts,vue}\"",
|
|
33
|
-
"format:staged": "prettier --write",
|
|
34
|
-
"storybook": "pnpm prepare && storybook dev",
|
|
35
|
-
"typecheck": "vue-tsc --noEmit",
|
|
36
|
-
"build-storybook": "pnpm prepare && storybook build",
|
|
37
|
-
"preview-storybook": "pnpm build-storybook && pnpm dlx http-server ./storybook-static/",
|
|
38
|
-
"generate:components-types": "node src/tasks/generate-components-types.mjs",
|
|
39
|
-
"generate:components-autoimports": "node src/tasks/generate-components-autoimports.mjs"
|
|
40
|
-
},
|
|
41
21
|
"dependencies": {
|
|
42
22
|
"@floating-ui/dom": "1.5.3",
|
|
43
23
|
"@floating-ui/vue": "^1.0.2",
|
|
44
|
-
"@maltjoy/icons": "3.
|
|
45
|
-
"@maltjoy/themes": "3.
|
|
24
|
+
"@maltjoy/icons": "3.25.0",
|
|
25
|
+
"@maltjoy/themes": "3.25.0",
|
|
26
|
+
"@maltjoy/css": "3.25.0",
|
|
46
27
|
"@vueuse/components": "10.8.0",
|
|
47
28
|
"@vueuse/core": "10.8.0",
|
|
48
29
|
"@vueuse/integrations": "10.5.0",
|
|
@@ -91,5 +72,25 @@
|
|
|
91
72
|
"vite": "^4.0.0",
|
|
92
73
|
"vitest": "^0.28.4",
|
|
93
74
|
"vue-tsc": "1.8.27"
|
|
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",
|
|
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",
|
|
90
|
+
"typecheck": "vue-tsc --noEmit",
|
|
91
|
+
"build-storybook": "pnpm prepare && storybook build",
|
|
92
|
+
"preview-storybook": "pnpm build-storybook && 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"
|
|
94
95
|
}
|
|
95
96
|
}
|