@siemens/ix-vue 4.3.0 → 4.4.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/READMEOSS.html +394 -1613
- package/dist/components.js +21 -10
- package/dist/components.js.map +1 -1
- package/dist/context/IxApplicationContext.vue.js +2 -2
- package/dist/index.js +4 -4
- package/dist/modal/IxOverlay.vue.js +1 -1
- package/dist/modal/Modal.vue.js +2 -2
- package/dist/modal/index.d.ts +3 -1
- package/dist/modal/index.js +10 -10
- package/dist/modal/index.js.map +1 -1
- package/package.json +10 -10
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"homepage": "https://ix.siemens.io",
|
|
4
4
|
"author": "Siemens AG",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "4.
|
|
6
|
+
"version": "4.4.0",
|
|
7
7
|
"description": "Siemens iX for Vue",
|
|
8
8
|
"bugs": "https://github.com/siemens/ix/issues",
|
|
9
9
|
"repository": {
|
|
@@ -21,25 +21,25 @@
|
|
|
21
21
|
"dist"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@siemens/ix": "~4.
|
|
25
|
-
"@stencil/vue-output-target": "^0.
|
|
24
|
+
"@siemens/ix": "~4.4.0",
|
|
25
|
+
"@stencil/vue-output-target": "^0.12.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@testing-library/vue": "^8.1.0",
|
|
29
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
30
|
-
"@typescript-eslint/parser": "^
|
|
29
|
+
"@typescript-eslint/eslint-plugin": "^8.56.1",
|
|
30
|
+
"@typescript-eslint/parser": "^8.56.1",
|
|
31
31
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
32
32
|
"@vitest/browser": "^3.2.4",
|
|
33
|
-
"eslint": "
|
|
33
|
+
"eslint": "^9.39.3",
|
|
34
34
|
"eslint-plugin-vue": "^9.27.0",
|
|
35
|
-
"playwright": "^1.
|
|
36
|
-
"rimraf": "^
|
|
35
|
+
"playwright": "^1.57.0",
|
|
36
|
+
"rimraf": "^6.1.3",
|
|
37
37
|
"typescript": "^5.8.3",
|
|
38
38
|
"vite": "^7.3.1",
|
|
39
39
|
"vitest": "^3.2.4",
|
|
40
40
|
"vue": "^3.4.34",
|
|
41
41
|
"vue-tsc": "^2.2.10",
|
|
42
|
-
"@siemens/ix": "4.
|
|
42
|
+
"@siemens/ix": "4.4.0",
|
|
43
43
|
"eslint-config-ix": "1.0.0"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"scripts": {
|
|
50
50
|
"build": "pnpm clean && vite build && vue-tsc --declaration --emitDeclarationOnly --outDir dist",
|
|
51
51
|
"clean": "rimraf dist",
|
|
52
|
-
"lint": "eslint src",
|
|
52
|
+
"lint": "eslint src --ext .ts",
|
|
53
53
|
"test.setup": "playwright install chromium --with-deps",
|
|
54
54
|
"test": "vitest --config=vitest.config.ts run",
|
|
55
55
|
"test.watch": "vitest --config=vitest.config.ts"
|