@dpa-id-components/dpa-shared-components 16.0.0 → 16.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/README.md +2 -2
- package/dist/dpa-shared-components.js +302 -309
- package/dist/renovate.json +17 -0
- package/package.json +16 -14
- package/dist/fonts.css +0 -26
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
|
3
|
+
"rangeStrategy": "update-lockfile",
|
|
4
|
+
"schedule": ["before 4am on Monday"],
|
|
5
|
+
"extends": [
|
|
6
|
+
":automergePatch",
|
|
7
|
+
":automergeTypes",
|
|
8
|
+
":dependencyDashboard",
|
|
9
|
+
":ignoreModulesAndTests",
|
|
10
|
+
":rebaseStalePrs",
|
|
11
|
+
"group:monorepos",
|
|
12
|
+
"group:allNonMajor",
|
|
13
|
+
"npm:unpublishSafe",
|
|
14
|
+
"replacements:all",
|
|
15
|
+
"workarounds:all"
|
|
16
|
+
]
|
|
17
|
+
}
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dpa-id-components/dpa-shared-components",
|
|
3
|
-
"version": "16.0.
|
|
3
|
+
"version": "16.0.1",
|
|
4
4
|
"engines": {
|
|
5
|
-
"node": "
|
|
5
|
+
"node": "^23.11.0"
|
|
6
6
|
},
|
|
7
7
|
"description": "Shared Vue components library for dpa projects",
|
|
8
8
|
"files": [
|
|
@@ -31,14 +31,15 @@
|
|
|
31
31
|
"build-storybook": "run-s clean:storybook build:storybook",
|
|
32
32
|
"build:lib": "vite build",
|
|
33
33
|
"build:storybook": "storybook build",
|
|
34
|
-
"test": "vitest
|
|
34
|
+
"test:unit": "vitest run",
|
|
35
|
+
"test:unit:watch": "vitest",
|
|
35
36
|
"lint": "run-s lint:*",
|
|
37
|
+
"lint:code-quality": "eslint",
|
|
36
38
|
"lint:format": "prettier --check .",
|
|
37
|
-
"lint:js": "eslint",
|
|
38
39
|
"lint:types": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
|
|
39
40
|
"fix": "run-s fix:*",
|
|
41
|
+
"fix:code-quality": "eslint --fix",
|
|
40
42
|
"fix:format": "prettier --write .",
|
|
41
|
-
"fix:js": "eslint --fix",
|
|
42
43
|
"release:patch": "vite build && commit-and-tag-version --release-as patch && git push --follow-tags origin main && npm publish",
|
|
43
44
|
"release:minor": "vite build && commit-and-tag-version --release-as minor && git push --follow-tags origin main && npm publish",
|
|
44
45
|
"release:major": "vite build && commit-and-tag-version --release-as major && git push --follow-tags origin main && npm publish"
|
|
@@ -49,13 +50,14 @@
|
|
|
49
50
|
"@babel/core": "^7.20.5",
|
|
50
51
|
"@babel/preset-env": "^7.20.2",
|
|
51
52
|
"@eslint/js": "^9.26.0",
|
|
52
|
-
"@storybook/addon-docs": "^9.0.
|
|
53
|
-
"@storybook/addon-links": "^9.0.
|
|
54
|
-
"@storybook/addon-themes": "^9.0.
|
|
55
|
-
"@storybook/
|
|
53
|
+
"@storybook/addon-docs": "^9.0.17",
|
|
54
|
+
"@storybook/addon-links": "^9.0.17",
|
|
55
|
+
"@storybook/addon-themes": "^9.0.17",
|
|
56
|
+
"@storybook/builder-vite": "^9.0.17",
|
|
57
|
+
"@storybook/vue3-vite": "^9.0.17",
|
|
56
58
|
"@tailwindcss/typography": "^0.5.8",
|
|
57
59
|
"@types/jsdom": "^21.0.0",
|
|
58
|
-
"@types/node": "^
|
|
60
|
+
"@types/node": "^24.0.13",
|
|
59
61
|
"@types/uuid": "^10.0.0",
|
|
60
62
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
61
63
|
"@vue/test-utils": "^2.4.1",
|
|
@@ -63,7 +65,7 @@
|
|
|
63
65
|
"color": "^5.0.0",
|
|
64
66
|
"commit-and-tag-version": "^12.2.0",
|
|
65
67
|
"eslint": "^9.18.0",
|
|
66
|
-
"eslint-plugin-storybook": "^9.0.
|
|
68
|
+
"eslint-plugin-storybook": "^9.0.17",
|
|
67
69
|
"jsdom": "^26.0.0",
|
|
68
70
|
"npm-run-all2": "^8.0.4",
|
|
69
71
|
"postcss": "^8.4.27",
|
|
@@ -71,16 +73,16 @@
|
|
|
71
73
|
"prettier": "^3.5.3",
|
|
72
74
|
"rimraf": "^6.0.1",
|
|
73
75
|
"rollup-plugin-copy": "^3.4.0",
|
|
74
|
-
"storybook": "^9.0.
|
|
76
|
+
"storybook": "^9.0.17",
|
|
75
77
|
"tailwindcss": "^3.4.1",
|
|
76
78
|
"typescript": "^5.8.3",
|
|
77
|
-
"vite": "^
|
|
79
|
+
"vite": "^7.0.0",
|
|
78
80
|
"vite-plugin-dts": "^4.5.3",
|
|
79
81
|
"vite-svg-loader": "^5.1.0",
|
|
80
82
|
"vitest": "^3.1.1",
|
|
81
83
|
"vue": "^3.5.13",
|
|
82
84
|
"vue-router": "^4.5.1",
|
|
83
|
-
"vue-tsc": "^
|
|
85
|
+
"vue-tsc": "^3.0.0"
|
|
84
86
|
},
|
|
85
87
|
"dependencies": {
|
|
86
88
|
"@floating-ui/vue": "^1.0.4",
|
package/dist/fonts.css
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-family: "Inter";
|
|
3
|
-
font-style: normal;
|
|
4
|
-
font-weight: 400;
|
|
5
|
-
src:
|
|
6
|
-
url("@/assets/fonts/Inter-Regular.woff2") format("woff2"),
|
|
7
|
-
url("@/assets/fonts/Inter-Regular.woff") format("woff");
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
@font-face {
|
|
11
|
-
font-family: "Inter";
|
|
12
|
-
font-style: normal;
|
|
13
|
-
font-weight: 500;
|
|
14
|
-
src:
|
|
15
|
-
url("@/assets/fonts/Inter-Medium.woff2") format("woff2"),
|
|
16
|
-
url("@/assets/fonts/Inter-Medium.woff") format("woff");
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
@font-face {
|
|
20
|
-
font-family: "Inter";
|
|
21
|
-
font-style: normal;
|
|
22
|
-
font-weight: 700;
|
|
23
|
-
src:
|
|
24
|
-
url("@/assets/fonts/Inter-Bold.woff2") format("woff2"),
|
|
25
|
-
url("@/assets/fonts/Inter-Bold.woff") format("woff");
|
|
26
|
-
}
|