@siemens/ix-react 0.0.0-pr-1724-20250305102750 → 0.0.0-pr-1974-20250624072317
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 +460 -0
- package/dist/components.js +1032 -0
- package/dist/components.js.map +1 -0
- package/dist/components.server.js +2080 -0
- package/dist/components.server.js.map +1 -0
- package/dist/context/application-context.js +22 -0
- package/dist/context/application-context.js.map +1 -0
- package/dist/context/context.js +14 -0
- package/dist/context/context.js.map +1 -0
- package/dist/delegate.js +77 -0
- package/dist/delegate.js.map +1 -0
- package/dist/index.js +9 -855
- package/dist/index.js.map +1 -0
- package/dist/internal-components.js +13 -0
- package/dist/internal-components.js.map +1 -0
- package/dist/ix-icon.js +15 -0
- package/dist/ix-icon.js.map +1 -0
- package/dist/modal/index.js +17 -0
- package/dist/modal/index.js.map +1 -0
- package/dist/modal/modal.js +21 -0
- package/dist/modal/modal.js.map +1 -0
- package/dist/modal/portal.js +64 -0
- package/dist/modal/portal.js.map +1 -0
- package/dist/toast/toast.js +30 -0
- package/dist/toast/toast.js.map +1 -0
- package/dist/tree/internal-tree.js +21 -0
- package/dist/tree/internal-tree.js.map +1 -0
- package/dist/tree/tree.js +38 -0
- package/dist/tree/tree.js.map +1 -0
- package/dist/types/components/IxApplicationHeader.d.ts +12 -0
- package/dist/types/components/IxDateInput.d.ts +13 -0
- package/dist/types/components/IxFlipTile.d.ts +11 -0
- package/dist/types/components/IxMenu.d.ts +15 -0
- package/dist/types/components/IxMenuAbout.d.ts +13 -0
- package/dist/types/components/IxMenuSettings.d.ts +13 -0
- package/dist/types/components/IxMessageBar.d.ts +12 -0
- package/dist/types/components.d.ts +476 -104
- package/dist/types/components.server.d.ts +478 -0
- package/dist/types/context/application-context.d.ts +1 -1
- package/dist/types/ix-icon.d.ts +3 -3
- package/dist/types/modal/index.d.ts +0 -1
- package/dist/types/modal/modal.d.ts +1 -1
- package/dist/types/modal/portal.d.ts +2 -3
- package/dist/types/toast/toast.d.ts +0 -1
- package/dist/types/tree/internal-tree.d.ts +14 -0
- package/dist/types/tree/tree.d.ts +7 -6
- package/package.json +40 -33
- package/dist/index.esm.js +0 -737
- package/dist/types/react-component-lib/createComponent.d.ts +0 -10
- package/dist/types/react-component-lib/createOverlayComponent.d.ts +0 -21
- package/dist/types/react-component-lib/index.d.ts +0 -2
- package/dist/types/react-component-lib/interfaces.d.ts +0 -29
- package/dist/types/react-component-lib/utils/attachProps.d.ts +0 -16
- package/dist/types/react-component-lib/utils/case.d.ts +0 -2
- package/dist/types/react-component-lib/utils/dev.d.ts +0 -2
- package/dist/types/react-component-lib/utils/index.d.ts +0 -10
- package/dist/types/tests/toast/toast.d.ts +0 -3
- package/dist/types/tests/toast/toast.spec.d.ts +0 -1
- package/dist/types/tests/undefined-error/undefined-error.d.ts +0 -3
- package/dist/types/tests/undefined-error/undefined-error.spec.d.ts +0 -1
- package/dist/types/tests/validation-tooltip-null-error/validation-tooltip-null-error.d.ts +0 -3
- package/dist/types/tests/validation-tooltip-null-error/validation-tooltip-null-error.spec.d.ts +0 -1
package/package.json
CHANGED
|
@@ -7,60 +7,67 @@
|
|
|
7
7
|
"url": "https://github.com/siemens/ix",
|
|
8
8
|
"directory": "packages/react"
|
|
9
9
|
},
|
|
10
|
-
"version": "0.0.0-pr-
|
|
10
|
+
"version": "0.0.0-pr-1974-20250624072317",
|
|
11
11
|
"description": "Siemens iX for React",
|
|
12
|
-
"main": "dist/index.js",
|
|
13
|
-
"module": "dist/index.esm.js",
|
|
14
|
-
"types": "dist/types/index.d.ts",
|
|
15
12
|
"files": [
|
|
16
13
|
"LICENSE",
|
|
17
14
|
"README.md",
|
|
15
|
+
"READMEOSS.html",
|
|
18
16
|
"dist"
|
|
19
17
|
],
|
|
18
|
+
"type": "module",
|
|
19
|
+
"module": "dist/index.js",
|
|
20
|
+
"types": "dist/types/index.d.ts",
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"import": "./dist/index.js",
|
|
24
|
+
"types": "./dist/types/index.d.ts",
|
|
25
|
+
"node": "./dist/components.server.js"
|
|
26
|
+
},
|
|
27
|
+
"./server": {
|
|
28
|
+
"import": "./dist/components.server.js",
|
|
29
|
+
"types": "./dist/types/components.server.d.ts"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
20
32
|
"author": "",
|
|
21
33
|
"license": "MIT",
|
|
22
34
|
"devDependencies": {
|
|
23
|
-
"@rollup/plugin-typescript": "^8.
|
|
24
|
-
"@testing-library/
|
|
25
|
-
"@
|
|
26
|
-
"@types/
|
|
27
|
-
"@types/react": "18
|
|
28
|
-
"@
|
|
29
|
-
"babel-jest": "^29.7.0",
|
|
35
|
+
"@rollup/plugin-typescript": "^8.5.0",
|
|
36
|
+
"@testing-library/react": "^16.0.1",
|
|
37
|
+
"@types/node": "^20.16.0",
|
|
38
|
+
"@types/react": "^18",
|
|
39
|
+
"@types/react-dom": "^18",
|
|
40
|
+
"@vitejs/plugin-react": "^4.3.2",
|
|
30
41
|
"eslint": "~8.21.0",
|
|
31
|
-
"eslint-plugin-react": "^7.
|
|
32
|
-
"happy-dom": "^
|
|
33
|
-
"
|
|
34
|
-
"jest": "^29.
|
|
35
|
-
"
|
|
36
|
-
"react": "^18
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"rollup": "^2.78.1",
|
|
41
|
-
"rollup-plugin-dts": "^4.2.0",
|
|
42
|
-
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
43
|
-
"rollup-plugin-sourcemaps": "^0.6.3",
|
|
44
|
-
"rollup-plugin-terser": "^7.0.2",
|
|
42
|
+
"eslint-plugin-react": "^7.35.0",
|
|
43
|
+
"happy-dom": "^17.4.7",
|
|
44
|
+
"jest": "^29.7.0",
|
|
45
|
+
"jest-environment-jsdom": "^29.7.0",
|
|
46
|
+
"react": "^18",
|
|
47
|
+
"react-dom": "^18",
|
|
48
|
+
"rimraf": "^6.0.1",
|
|
49
|
+
"rollup": "^4.24.0",
|
|
50
|
+
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
45
51
|
"shadow-dom-testing-library": "^1.11.2",
|
|
46
|
-
"typescript": "^
|
|
47
|
-
"vitest": "^1.3
|
|
48
|
-
"@siemens/ix": "0.0.0-pr-
|
|
52
|
+
"typescript": "^5.6.3",
|
|
53
|
+
"vitest": "^2.1.3",
|
|
54
|
+
"@siemens/ix": "0.0.0-pr-1974-20250624072317",
|
|
49
55
|
"eslint-config-ix": "1.0.0"
|
|
50
56
|
},
|
|
51
57
|
"peerDependencies": {
|
|
52
|
-
"@siemens/ix-icons": "^
|
|
53
|
-
"react": "
|
|
54
|
-
"react-dom": "
|
|
58
|
+
"@siemens/ix-icons": "^3.0.0",
|
|
59
|
+
"react": "^18 || ^19",
|
|
60
|
+
"react-dom": "^18 || ^19"
|
|
55
61
|
},
|
|
56
62
|
"dependencies": {
|
|
57
|
-
"@siemens/ix": "0.0.0-pr-
|
|
63
|
+
"@siemens/ix": "0.0.0-pr-1974-20250624072317",
|
|
64
|
+
"@stencil/react-output-target": "^1.1.0",
|
|
65
|
+
"tslib": "*"
|
|
58
66
|
},
|
|
59
67
|
"scripts": {
|
|
60
68
|
"build": "npm run clean && npm run compile",
|
|
61
69
|
"clean": "rimraf dist && rimraf dist-transpiled",
|
|
62
70
|
"compile": "rollup -c",
|
|
63
|
-
"tsc": "tsc -p .",
|
|
64
71
|
"lint": "eslint src",
|
|
65
72
|
"test": "vitest run",
|
|
66
73
|
"test:watch": "vitest"
|