isp-ui-kit 1.2.4 → 2.0.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/Layout/Column/Column.d.ts +1 -1
- package/dist/Layout/Column/ColumnActions.d.ts +3 -0
- package/dist/Layout/Column/ColumnContent.d.ts +14 -0
- package/dist/Layout/Column/ColumnHeaderTitle.d.ts +3 -0
- package/dist/Layout/Column/ColumnSortControls.d.ts +3 -0
- package/dist/Layout/Column/column.type.d.ts +39 -0
- package/dist/Layout/Column/column.utils.d.ts +11 -0
- package/dist/Layout/Column/useColumnGrouping.d.ts +19 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +33 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "isp-ui-kit",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "react ui lib for project",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -25,68 +25,68 @@
|
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"dayjs": "^1.11.
|
|
28
|
+
"dayjs": "^1.11.20",
|
|
29
29
|
"events": "^3.3.0",
|
|
30
30
|
"react-base16-styling": "~0.10.0",
|
|
31
31
|
"react-lifecycles-compat": "~3.0.4",
|
|
32
|
-
"react-resizable": "^3.
|
|
32
|
+
"react-resizable": "^3.1.3",
|
|
33
33
|
"react-textarea-autosize": "~8.5.9",
|
|
34
34
|
"simplebar-react": "^3.3.2"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@babel/core": "^7.
|
|
38
|
-
"@babel/
|
|
39
|
-
"@babel/preset-env": "^7.28.5",
|
|
37
|
+
"@babel/core": "^7.29.0",
|
|
38
|
+
"@babel/preset-env": "^7.29.5",
|
|
40
39
|
"@babel/preset-react": "^7.28.5",
|
|
41
40
|
"@babel/preset-typescript": "^7.28.5",
|
|
42
41
|
"@eslint/js": "^9.39.1",
|
|
43
42
|
"@monaco-editor/react": "^4.7.0",
|
|
44
|
-
"@rollup/plugin-babel": "^
|
|
45
|
-
"@rollup/plugin-commonjs": "^29.0.
|
|
43
|
+
"@rollup/plugin-babel": "^7.0.0",
|
|
44
|
+
"@rollup/plugin-commonjs": "^29.0.2",
|
|
46
45
|
"@rollup/plugin-image": "^3.0.3",
|
|
47
46
|
"@rollup/plugin-node-resolve": "^16.0.3",
|
|
48
|
-
"@rollup/plugin-terser": "^0.
|
|
47
|
+
"@rollup/plugin-terser": "^1.0.0",
|
|
49
48
|
"@rollup/plugin-typescript": "^12.3.0",
|
|
50
|
-
"@storybook/addon-docs": "^10.
|
|
51
|
-
"@storybook/react-vite": "^10.
|
|
52
|
-
"@types/
|
|
49
|
+
"@storybook/addon-docs": "^10.3.6",
|
|
50
|
+
"@storybook/react-vite": "^10.3.6",
|
|
51
|
+
"@types/node": "^24.10.1",
|
|
52
|
+
"@types/react": "^19.2.14",
|
|
53
53
|
"@types/react-resizable": "^3.0.8",
|
|
54
|
-
"@typescript-eslint/eslint-plugin": "^8.
|
|
55
|
-
"@typescript-eslint/parser": "^8.
|
|
56
|
-
"antd": "^
|
|
54
|
+
"@typescript-eslint/eslint-plugin": "^8.59.2",
|
|
55
|
+
"@typescript-eslint/parser": "^8.59.2",
|
|
56
|
+
"antd": "^6.3.7",
|
|
57
57
|
"eslint": "^9.39.1",
|
|
58
58
|
"eslint-config-prettier": "^10.1.8",
|
|
59
59
|
"eslint-plugin-import": "^2.32.0",
|
|
60
60
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
|
61
|
-
"eslint-plugin-prettier": "^5.5.
|
|
61
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
62
62
|
"eslint-plugin-react": "^7.37.5",
|
|
63
|
-
"eslint-plugin-storybook": "^
|
|
64
|
-
"globals": "^
|
|
63
|
+
"eslint-plugin-storybook": "^10.3.6",
|
|
64
|
+
"globals": "^17.6.0",
|
|
65
65
|
"husky": "^9.1.7",
|
|
66
|
-
"lint-staged": "^
|
|
67
|
-
"prettier": "^3.
|
|
68
|
-
"react": "^
|
|
69
|
-
"react-dom": "^
|
|
70
|
-
"react-hook-form": "^7.
|
|
71
|
-
"rollup": "^4.
|
|
72
|
-
"rollup-plugin-delete": "^3.0.
|
|
66
|
+
"lint-staged": "^17.0.2",
|
|
67
|
+
"prettier": "^3.8.3",
|
|
68
|
+
"react": "^19.2.6",
|
|
69
|
+
"react-dom": "^19.2.6",
|
|
70
|
+
"react-hook-form": "^7.75.0",
|
|
71
|
+
"rollup": "^4.60.3",
|
|
72
|
+
"rollup-plugin-delete": "^3.0.2",
|
|
73
73
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
74
74
|
"rollup-plugin-postcss": "^4.0.2",
|
|
75
|
-
"sass": "^1.
|
|
76
|
-
"storybook": "^10.
|
|
77
|
-
"typescript": "^
|
|
78
|
-
"typescript-eslint": "^8.
|
|
75
|
+
"sass": "^1.99.0",
|
|
76
|
+
"storybook": "^10.3.6",
|
|
77
|
+
"typescript": "^6.0.3",
|
|
78
|
+
"typescript-eslint": "^8.59.2"
|
|
79
79
|
},
|
|
80
80
|
"peerDependencies": {
|
|
81
81
|
"@monaco-editor/react": "^4.7.0",
|
|
82
|
-
"antd": ">=
|
|
82
|
+
"antd": ">=6",
|
|
83
83
|
"monaco-editor": "^0.55.1",
|
|
84
|
-
"react": ">=18",
|
|
85
|
-
"react-dom": ">=18",
|
|
84
|
+
"react": ">=18.0.0",
|
|
85
|
+
"react-dom": ">=18.0.0",
|
|
86
86
|
"react-hook-form": "^7.67.0"
|
|
87
87
|
},
|
|
88
88
|
"optionalDependencies": {
|
|
89
|
-
"@rollup/rollup-linux-x64-gnu": "^4.
|
|
89
|
+
"@rollup/rollup-linux-x64-gnu": "^4.60.3"
|
|
90
90
|
},
|
|
91
91
|
"scripts": {
|
|
92
92
|
"build": "rollup -c",
|