@davincihealthcare/elty-design-system-vue 1.9.4 → 1.10.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/README.md +35 -2
- package/dist/ElAvatar.vue.d.ts +10 -2
- package/dist/forms/utils.d.ts +1 -1
- package/dist/index.d.ts +0 -3
- package/dist/{index.mjs → index.js} +8394 -9528
- package/dist/index.js.map +1 -0
- package/dist/index.umd.cjs +33 -0
- package/dist/index.umd.cjs.map +1 -0
- package/dist/tailwind.plugin.d.ts +1 -2
- package/package.json +10 -8
- package/dist/ElFooter.vue.d.ts +0 -2
- package/dist/index.mjs.map +0 -1
- package/dist/index.umd.js +0 -37
- package/dist/index.umd.js.map +0 -1
- package/dist/routes.d.ts +0 -10
- /package/dist/{style.js → style.cjs} +0 -0
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
import type { Config } from 'tailwindcss/types/config';
|
|
2
1
|
declare const _default: {
|
|
3
2
|
handler: import("tailwindcss/types/config").PluginCreator;
|
|
4
|
-
config?: Partial<Config> | undefined;
|
|
3
|
+
config?: Partial<import("tailwindcss/types/config").Config> | undefined;
|
|
5
4
|
};
|
|
6
5
|
export default _default;
|
package/package.json
CHANGED
|
@@ -1,20 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@davincihealthcare/elty-design-system-vue",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"license": "UNLICENSED",
|
|
5
|
-
"main": "dist/index.umd.
|
|
5
|
+
"main": "dist/index.umd.cjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
|
-
"module": "dist/index.
|
|
7
|
+
"module": "dist/index.js",
|
|
8
8
|
"files": [
|
|
9
9
|
"dist"
|
|
10
10
|
],
|
|
11
|
+
"type": "module",
|
|
11
12
|
"scripts": {
|
|
12
13
|
"prepare": "husky install",
|
|
13
14
|
"commitlint": "commitlint --edit",
|
|
14
15
|
"histoire": "histoire dev",
|
|
16
|
+
"histoire:build": "histoire build",
|
|
17
|
+
"histoire:serve": "histoire preview",
|
|
15
18
|
"format": "prettier --write --config ../../.prettierrc.json --ignore-path ../../.prettierignore .",
|
|
16
19
|
"dev": "vue-tsc && vite dev",
|
|
17
|
-
"build": "vue-tsc && vite build && prejss
|
|
20
|
+
"build": "vue-tsc && vite build && yarn build-prejss",
|
|
21
|
+
"build-prejss": "prejss-cli dist/style.css --format commonjs && mv dist/style.js dist/style.cjs",
|
|
18
22
|
"ts-check": "vue-tsc --noEmit",
|
|
19
23
|
"lint": "eslint \"**/*.{ts,vue}\"",
|
|
20
24
|
"test": "vitest --run",
|
|
@@ -24,7 +28,7 @@
|
|
|
24
28
|
"devDependencies": {
|
|
25
29
|
"@commitlint/cli": "^18.4.4",
|
|
26
30
|
"@commitlint/config-conventional": "^18.4.4",
|
|
27
|
-
"@davincihealthcare/elty-design-system-
|
|
31
|
+
"@davincihealthcare/elty-design-system-foundations": "1.1.0",
|
|
28
32
|
"@histoire/plugin-vue": "^0.17.11",
|
|
29
33
|
"@semantic-release/commit-analyzer": "^11.1.0",
|
|
30
34
|
"@semantic-release/git": "^10.0.1",
|
|
@@ -65,7 +69,6 @@
|
|
|
65
69
|
"vite-plugin-dts": "^3.6.3",
|
|
66
70
|
"vitest": "^0.34.6",
|
|
67
71
|
"vue": "^3.4.21",
|
|
68
|
-
"vue-router": "^4.3.0",
|
|
69
72
|
"vue-tsc": "^1.8.25"
|
|
70
73
|
},
|
|
71
74
|
"dependencies": {
|
|
@@ -80,8 +83,7 @@
|
|
|
80
83
|
"@tailwindcss/typography": "^0.5.10",
|
|
81
84
|
"pinia": "^2.1.7",
|
|
82
85
|
"vee-validate": "^4.12.6",
|
|
83
|
-
"vue": "^3.4.15"
|
|
84
|
-
"vue-router": "^4.2.5"
|
|
86
|
+
"vue": "^3.4.15"
|
|
85
87
|
},
|
|
86
88
|
"lint-staged": {
|
|
87
89
|
"*.{js,tsx,ts,jsx,json,md,vue}": "prettier --write"
|
package/dist/ElFooter.vue.d.ts
DELETED