@deviceinsight/ng-ui-components 7.1.0 → 7.3.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/dist/index.cjs +3902 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2798 -1939
- package/dist/index.js.map +1 -1
- package/dist/style.css +2378 -1
- package/package.json +16 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deviceinsight/ng-ui-components",
|
|
3
|
-
"version": "7.
|
|
3
|
+
"version": "7.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"repository": {
|
|
@@ -22,9 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"./style.css": "./dist/style.css"
|
|
24
24
|
},
|
|
25
|
-
"files": [
|
|
26
|
-
"dist/"
|
|
27
|
-
],
|
|
25
|
+
"files": ["dist/"],
|
|
28
26
|
"scripts": {
|
|
29
27
|
"scan": "npx --registry=https://registry.npmjs.org audit-ci@^6 --low true --skip-dev --config scan-config.json5",
|
|
30
28
|
"clean": "rimraf dist",
|
|
@@ -40,8 +38,8 @@
|
|
|
40
38
|
"build-storybook": "storybook build"
|
|
41
39
|
},
|
|
42
40
|
"dependencies": {
|
|
43
|
-
"@deviceinsight/ng-ui-api-client": "10.43.0",
|
|
44
|
-
"@deviceinsight/ng-ui-basic-components": "7.0.0",
|
|
41
|
+
"@deviceinsight/ng-ui-api-client": "^10.43.0",
|
|
42
|
+
"@deviceinsight/ng-ui-basic-components": "^7.0.0",
|
|
45
43
|
"@dnd-kit/core": "^6.0.5",
|
|
46
44
|
"@dnd-kit/modifiers": "^9.0.0",
|
|
47
45
|
"@dnd-kit/sortable": "^10.0.0",
|
|
@@ -53,7 +51,7 @@
|
|
|
53
51
|
"dayjs": "^1.11.18",
|
|
54
52
|
"highcharts": "^12.4.0",
|
|
55
53
|
"highcharts-react-official": "^3.1.0",
|
|
56
|
-
"lodash": "^4.
|
|
54
|
+
"lodash": "^4.18.1",
|
|
57
55
|
"nanoid": "^5.1.6",
|
|
58
56
|
"pure-color": "^1.3.0",
|
|
59
57
|
"react-colorful": "^5.5.1",
|
|
@@ -79,11 +77,11 @@
|
|
|
79
77
|
"@testing-library/jest-dom": "^6.9.1",
|
|
80
78
|
"@testing-library/react": "^16.3.0",
|
|
81
79
|
"@testing-library/user-event": "^14.6.1",
|
|
82
|
-
"@types/lodash": "^4.17.
|
|
83
|
-
"@types/node": "22.13.13",
|
|
80
|
+
"@types/lodash": "^4.17.24",
|
|
81
|
+
"@types/node": "^22.13.13",
|
|
84
82
|
"@types/react": "^19.2.2",
|
|
85
83
|
"@types/react-dom": "^19.2.2",
|
|
86
|
-
"@types/react-router-dom": "5.3.3",
|
|
84
|
+
"@types/react-router-dom": "^5.3.3",
|
|
87
85
|
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
88
86
|
"@typescript-eslint/parser": "^8.46.2",
|
|
89
87
|
"@vitejs/plugin-react": "^5.1.0",
|
|
@@ -98,23 +96,22 @@
|
|
|
98
96
|
"react": "^19.2.0",
|
|
99
97
|
"react-dom": "^19.2.0",
|
|
100
98
|
"react-i18next": "^15.7.4",
|
|
101
|
-
"react-router-dom": "5.3.
|
|
99
|
+
"react-router-dom": "^5.3.4",
|
|
102
100
|
"rimraf": "^6.1.0",
|
|
103
101
|
"storybook": "^10.0.8",
|
|
104
102
|
"tsc-watch": "^7.2.0",
|
|
105
|
-
"typescript": "5.9.3",
|
|
103
|
+
"typescript": "^5.9.3",
|
|
106
104
|
"vitest": "^4.0.5",
|
|
107
|
-
"eslint-plugin-storybook": "10.0.8"
|
|
105
|
+
"eslint-plugin-storybook": "^10.0.8"
|
|
106
|
+
},
|
|
107
|
+
"overrides": {
|
|
108
|
+
"yaml": ">=2.8.3"
|
|
108
109
|
},
|
|
109
110
|
"lint-staged": {
|
|
110
|
-
"{src/**/*.{ts,tsx},package.json,package-lock.json}": [
|
|
111
|
-
"prettier --write"
|
|
112
|
-
]
|
|
111
|
+
"{src/**/*.{ts,tsx},package.json,package-lock.json}": ["prettier --write"]
|
|
113
112
|
},
|
|
114
113
|
"eslintConfig": {
|
|
115
|
-
"extends": [
|
|
116
|
-
"plugin:storybook/recommended"
|
|
117
|
-
]
|
|
114
|
+
"extends": ["plugin:storybook/recommended"]
|
|
118
115
|
},
|
|
119
116
|
"engines": {
|
|
120
117
|
"node": "^24.13.1",
|