ia-table 0.8.10 → 0.9.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.js +19817 -14889
- package/package.json +30 -19
- package/dist/index.js.map +0 -1
- package/dist/locale-patch-applied.txt +0 -1
package/package.json
CHANGED
|
@@ -1,24 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ia-table",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"dependencies": {
|
|
6
|
-
"@testing-library/jest-dom": "^5.11.4",
|
|
7
|
-
"@testing-library/user-event": "^12.1.10",
|
|
8
|
-
"moment": "^2.30.1",
|
|
9
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
10
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
11
|
-
"react-router-dom": "^6.3.0",
|
|
12
|
-
"react-scripts": "5.0.1",
|
|
13
|
-
"typescript": "^4.7.4",
|
|
14
|
-
"web-vitals": "^2.1.4",
|
|
15
|
-
"xlsx": "^0.18.5"
|
|
16
|
-
},
|
|
5
|
+
"dependencies": {},
|
|
17
6
|
"main": "dist/index.js",
|
|
18
7
|
"module": "dist/index.js",
|
|
19
8
|
"types": "dist/index.d.ts",
|
|
20
9
|
"files": [
|
|
21
|
-
"dist"
|
|
10
|
+
"dist",
|
|
11
|
+
".npmrc"
|
|
22
12
|
],
|
|
23
13
|
"scripts": {
|
|
24
14
|
"start": "vite",
|
|
@@ -58,31 +48,52 @@
|
|
|
58
48
|
"@storybook/react-vite": "^9.0.18",
|
|
59
49
|
"@storybook/testing-library": "^0.2.1",
|
|
60
50
|
"@storybook/theming": "^9.0.0-alpha.1",
|
|
61
|
-
"@testing-library/
|
|
51
|
+
"@testing-library/jest-dom": "^6.1.5",
|
|
52
|
+
"@testing-library/react": "^14.1.2",
|
|
53
|
+
"@testing-library/user-event": "^14.5.1",
|
|
62
54
|
"@vitejs/plugin-react": "^4.6.0",
|
|
63
55
|
"@vitejs/plugin-react-refresh": "^1.3.6",
|
|
64
56
|
"eslint-plugin-storybook": "^0.6.15",
|
|
65
57
|
"jsdom": "^26.1.0",
|
|
66
|
-
"
|
|
58
|
+
"moment": "^2.30.1",
|
|
59
|
+
"react": "^18.0.0",
|
|
60
|
+
"react-dom": "^18.0.0",
|
|
61
|
+
"react-router-dom": "^6.3.0",
|
|
62
|
+
"react-scripts": "5.0.1",
|
|
67
63
|
"rollup-plugin-visualizer": "^6.0.3",
|
|
68
64
|
"sass": "^1.89.2",
|
|
69
65
|
"storybook": "^9.0.18",
|
|
66
|
+
"typescript": "^4.7.4",
|
|
70
67
|
"vite": "^6.3.5",
|
|
71
68
|
"vite-plugin-css-injected-by-js": "^3.3.0",
|
|
72
69
|
"vite-plugin-svgr": "^4.3.0",
|
|
73
70
|
"vitest": "^3.2.4",
|
|
74
|
-
"web-vitals": "^2.1.4"
|
|
71
|
+
"web-vitals": "^2.1.4",
|
|
72
|
+
"xlsx": "^0.18.5",
|
|
73
|
+
"zustand": "^4.5.2"
|
|
75
74
|
},
|
|
76
75
|
"peerDependencies": {
|
|
77
|
-
"
|
|
78
|
-
"react
|
|
76
|
+
"moment": "^2.0.0",
|
|
77
|
+
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
78
|
+
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
79
|
+
"xlsx": "^0.18.0",
|
|
80
|
+
"zustand": "^4.0.0"
|
|
79
81
|
},
|
|
80
82
|
"peerDependenciesMeta": {
|
|
83
|
+
"moment": {
|
|
84
|
+
"optional": false
|
|
85
|
+
},
|
|
81
86
|
"react": {
|
|
82
87
|
"optional": false
|
|
83
88
|
},
|
|
84
89
|
"react-dom": {
|
|
85
90
|
"optional": false
|
|
91
|
+
},
|
|
92
|
+
"xlsx": {
|
|
93
|
+
"optional": false
|
|
94
|
+
},
|
|
95
|
+
"zustand": {
|
|
96
|
+
"optional": false
|
|
86
97
|
}
|
|
87
98
|
},
|
|
88
99
|
"publishConfig": {
|