@digitalservicebund/ris-ui 1.0.1 → 1.2.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/README.md +77 -4
- package/dist/components/RisAutoComplete/RisAutoComplete.vue.d.ts +20 -0
- package/dist/components/RisAutoComplete/index.d.ts +2 -0
- package/dist/components/RisSingleAccordion/RisSingleAccordion.vue.d.ts +23 -0
- package/dist/components/RisSingleAccordion/index.d.ts +2 -0
- package/dist/components/index.cjs +758 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/index.js +5844 -0
- package/dist/config/locale.d.ts +2 -0
- package/dist/mockServiceWorker.js +284 -0
- package/dist/primevue/autocomplete/autocomplete.d.ts +3 -0
- package/dist/primevue/checkbox/checkbox.d.ts +3 -0
- package/dist/primevue/confirmDialog/confirmDialog.d.ts +3 -0
- package/dist/primevue/dialog/dialog.d.ts +4 -0
- package/dist/primevue/fileUpload/fileUpload.d.ts +3 -0
- package/dist/primevue/index.cjs +1 -1
- package/dist/primevue/index.d.ts +14 -1
- package/dist/primevue/index.js +424 -48
- package/dist/primevue/inputText/inputText.d.ts +5 -0
- package/dist/primevue/message/message.d.ts +3 -0
- package/dist/primevue/progressSpinner/progressSpinner.d.ts +3 -0
- package/dist/primevue/radioButton/radioButton.d.ts +3 -0
- package/dist/primevue/textarea/textarea.d.ts +4 -0
- package/dist/primevue/toast/toast.d.ts +3 -0
- package/dist/style.css +1 -1
- package/package.json +22 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@digitalservicebund/ris-ui",
|
3
|
-
"version": "1.0
|
3
|
+
"version": "1.2.0",
|
4
4
|
"description": "Component library for NeuRIS",
|
5
5
|
"author": "digitalservicebund",
|
6
6
|
"license": "GPL-3.0-only",
|
@@ -28,6 +28,11 @@
|
|
28
28
|
},
|
29
29
|
"./fonts.css": {
|
30
30
|
"import": "./dist/fonts.css"
|
31
|
+
},
|
32
|
+
"./components": {
|
33
|
+
"require": "./dist/components/index.cjs",
|
34
|
+
"import": "./dist/components/index.js",
|
35
|
+
"types": "./dist/components/index.d.ts"
|
31
36
|
}
|
32
37
|
},
|
33
38
|
"scripts": {
|
@@ -42,7 +47,9 @@
|
|
42
47
|
"eslint:fix": "npm run eslint:check -- --fix",
|
43
48
|
"audit:licenses": "license-checker --production --excludePrivatePackages --excludePackages @digitalservicebund/ris-ui@$(cat package.json | jq -r '.version') --onlyAllow \"$(. ./parse-allowed-licenses.sh)\" --csv --out ./frontend-license-report.csv",
|
44
49
|
"typecheck": "vue-tsc",
|
45
|
-
"sync-fonts": "rm ./public/fonts/*.woff ./public/fonts/*.woff2; cp ./node_modules/@digitalservice4germany/angie/fonts/* ./public/fonts/; cp ./node_modules/@digitalservice4germany/angie/fonts.css ./public/"
|
50
|
+
"sync-fonts": "rm ./public/fonts/*.woff ./public/fonts/*.woff2; cp ./node_modules/@digitalservice4germany/angie/fonts/* ./public/fonts/; cp ./node_modules/@digitalservice4germany/angie/fonts.css ./public/",
|
51
|
+
"test": "vitest run",
|
52
|
+
"test:watch": "vitest watch"
|
46
53
|
},
|
47
54
|
"peerDependencies": {
|
48
55
|
"primevue": "^4.0.0",
|
@@ -55,7 +62,9 @@
|
|
55
62
|
"@digitalservice4germany/style-dictionary": "~2.0.0",
|
56
63
|
"@eslint/compat": "~1.1.1",
|
57
64
|
"@eslint/js": "~9.9.0",
|
58
|
-
"@iconify-json/
|
65
|
+
"@iconify-json/mdi": "^1.2.0",
|
66
|
+
"@iconify-json/material-symbols": "^1.2.1",
|
67
|
+
"@iconify/vue": "^4.1.2",
|
59
68
|
"@storybook/addon-essentials": "~8.2.9",
|
60
69
|
"@storybook/addon-interactions": "~8.2.9",
|
61
70
|
"@storybook/addon-links": "~8.2.9",
|
@@ -67,11 +76,15 @@
|
|
67
76
|
"@storybook/vue3": "~8.2.9",
|
68
77
|
"@storybook/vue3-vite": "~8.2.9",
|
69
78
|
"@vitejs/plugin-vue": "~5.1.2",
|
79
|
+
"@vue/test-utils": "^2.4.6",
|
70
80
|
"autoprefixer": "~10.4.20",
|
71
81
|
"eslint": "~9.9.0",
|
72
82
|
"eslint-config-prettier": "~9.1.0",
|
73
83
|
"globals": "~15.9.0",
|
84
|
+
"jsdom": "^25.0.1",
|
74
85
|
"license-checker": "~25.0.1",
|
86
|
+
"msw": "^2.4.5",
|
87
|
+
"msw-storybook-addon": "^2.0.3",
|
75
88
|
"noop-tag": "~2.0.0",
|
76
89
|
"prettier": "~3.3.3",
|
77
90
|
"prettier-plugin-tailwindcss": "~0.6.6",
|
@@ -81,6 +94,12 @@
|
|
81
94
|
"typescript-eslint": "~8.2.0",
|
82
95
|
"unplugin-icons": "~0.19.2",
|
83
96
|
"vite": "~5.4.1",
|
97
|
+
"vitest": "^2.1.1",
|
84
98
|
"vue-tsc": "~2.0.29"
|
99
|
+
},
|
100
|
+
"msw": {
|
101
|
+
"workerDirectory": [
|
102
|
+
"public"
|
103
|
+
]
|
85
104
|
}
|
86
105
|
}
|