react-table-edit 0.8.7 → 0.8.9
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 +1 -0
- package/dist/index.mjs +1 -0
- package/package.json +17 -6
package/dist/index.js
CHANGED
|
@@ -2152,6 +2152,7 @@ var import_classnames12 = __toESM(require("classnames"));
|
|
|
2152
2152
|
var import_reactstrap9 = require("reactstrap");
|
|
2153
2153
|
var import_react_i18next10 = require("react-i18next");
|
|
2154
2154
|
var import_react_resizable = require("react-resizable");
|
|
2155
|
+
var import_styles = require("react-resizable/css/styles.css");
|
|
2155
2156
|
var import_jsx_runtime13 = require("react/jsx-runtime");
|
|
2156
2157
|
var HeaderTableCol = (props) => {
|
|
2157
2158
|
const {
|
package/dist/index.mjs
CHANGED
|
@@ -2117,6 +2117,7 @@ import classnames7 from "classnames";
|
|
|
2117
2117
|
import { Input as Input7 } from "reactstrap";
|
|
2118
2118
|
import { useTranslation as useTranslation10 } from "react-i18next";
|
|
2119
2119
|
import { Resizable } from "react-resizable";
|
|
2120
|
+
import "react-resizable/css/styles.css";
|
|
2120
2121
|
import { jsx as jsx13, jsxs as jsxs13 } from "react/jsx-runtime";
|
|
2121
2122
|
var HeaderTableCol = (props) => {
|
|
2122
2123
|
const {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-table-edit",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.9",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -23,24 +23,35 @@
|
|
|
23
23
|
],
|
|
24
24
|
"author": "hungnv",
|
|
25
25
|
"dependencies": {
|
|
26
|
+
"@babel/core": "^7.25.2",
|
|
27
|
+
"@babel/plugin-transform-modules-commonjs": "^7.24.8",
|
|
28
|
+
"@babel/preset-env": "^7.25.4",
|
|
29
|
+
"@babel/preset-react": "^7.24.7",
|
|
26
30
|
"@hookform/resolvers": "^2.8.10",
|
|
27
31
|
"@syncfusion/ej2-react-dropdowns": "20.2.36",
|
|
28
32
|
"@types/react-resizable": "^3.0.7",
|
|
29
|
-
"
|
|
33
|
+
"babel-loader": "^9.1.3",
|
|
30
34
|
"becoxy-icons": "1.8.1",
|
|
31
35
|
"bootstrap": "5.1.0",
|
|
32
36
|
"classnames": "2.3.1",
|
|
37
|
+
"css-loader": "^7.1.2",
|
|
33
38
|
"moment": "^2.29.3",
|
|
34
|
-
"react": "^18.
|
|
35
|
-
"react-dom": "^18.
|
|
36
|
-
"react-router-dom": "^6.3.0",
|
|
39
|
+
"react": "^18.1.0",
|
|
40
|
+
"react-dom": "^18.1.0",
|
|
37
41
|
"react-hook-form": "7.43.9",
|
|
38
42
|
"react-hot-toast": "2.2.0",
|
|
39
43
|
"react-i18next": "^11.16.9",
|
|
44
|
+
"react-resizable": "^3.0.5",
|
|
45
|
+
"react-router-dom": "^6.3.0",
|
|
40
46
|
"react-select": "^5.3.2",
|
|
41
47
|
"reactstrap": "9.0.1",
|
|
48
|
+
"style-loader": "^4.0.0",
|
|
42
49
|
"sweetalert2": "^11.4.14",
|
|
43
50
|
"sweetalert2-react-content": "^5.0.0",
|
|
51
|
+
"ts-loader": "^9.5.1",
|
|
52
|
+
"webpack": "^5.94.0",
|
|
53
|
+
"webpack-cli": "^5.1.4",
|
|
54
|
+
"webpack-dev-server": "^5.1.0",
|
|
44
55
|
"yup": "^0.32.11"
|
|
45
56
|
},
|
|
46
57
|
"peerDependencies": {
|
|
@@ -49,6 +60,6 @@
|
|
|
49
60
|
},
|
|
50
61
|
"devDependencies": {
|
|
51
62
|
"tsup": "^8.0.2",
|
|
52
|
-
"typescript": "^5.
|
|
63
|
+
"typescript": "^5.6.2"
|
|
53
64
|
}
|
|
54
65
|
}
|