react-table-edit 1.2.46 → 1.2.47
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 -1
- package/dist/index.mjs +1 -1
- package/package.json +7 -6
package/dist/index.js
CHANGED
|
@@ -1093,7 +1093,7 @@ var SelectTable = (0, import_react6.forwardRef)((props, ref) => {
|
|
|
1093
1093
|
e.preventDefault();
|
|
1094
1094
|
},
|
|
1095
1095
|
tag: "div",
|
|
1096
|
-
style: { width: width ? width :
|
|
1096
|
+
style: { width: width ? width : "auto" },
|
|
1097
1097
|
className: (0, import_classnames4.default)("select-table-control", { "r-select-is-disabled": isDisabled }, { "r-select-is-open": dropdownOpen }, { "r-select-is-focus": isFocus }, { "r-select-is-invalid": invalid }),
|
|
1098
1098
|
children: [
|
|
1099
1099
|
/* @__PURE__ */ (0, import_jsx_runtime5.jsxs)("div", { className: "select-table-container", children: [
|
package/dist/index.mjs
CHANGED
|
@@ -1055,7 +1055,7 @@ var SelectTable = forwardRef((props, ref) => {
|
|
|
1055
1055
|
e.preventDefault();
|
|
1056
1056
|
},
|
|
1057
1057
|
tag: "div",
|
|
1058
|
-
style: { width: width ? width :
|
|
1058
|
+
style: { width: width ? width : "auto" },
|
|
1059
1059
|
className: classnames3("select-table-control", { "r-select-is-disabled": isDisabled }, { "r-select-is-open": dropdownOpen }, { "r-select-is-focus": isFocus }, { "r-select-is-invalid": invalid }),
|
|
1060
1060
|
children: [
|
|
1061
1061
|
/* @__PURE__ */ jsxs5("div", { className: "select-table-container", children: [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-table-edit",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.47",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -23,22 +23,22 @@
|
|
|
23
23
|
"author": "hungnv",
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"@hookform/resolvers": "^2.8.10",
|
|
26
|
-
"@types/react-resizable": "^3.0.7",
|
|
27
26
|
"@types/react-datepicker": "^7.0.0",
|
|
27
|
+
"@types/react-resizable": "^3.0.7",
|
|
28
28
|
"becoxy-icons": "1.8.1",
|
|
29
29
|
"classnames": "2.3.1",
|
|
30
|
+
"i18next": "^21.8.2",
|
|
31
|
+
"react-datepicker": "^7.5.0",
|
|
30
32
|
"react-hook-form": "7.43.9",
|
|
31
33
|
"react-hot-toast": "2.2.0",
|
|
32
|
-
"i18next": "^21.8.2",
|
|
33
34
|
"react-i18next": "^11.16.9",
|
|
35
|
+
"react-input-mask": "^2.0.4",
|
|
36
|
+
"react-number-format": "^5.3.3",
|
|
34
37
|
"react-resizable": "^3.0.5",
|
|
35
38
|
"react-router-dom": "^6.3.0",
|
|
36
39
|
"reactstrap": "9.0.1",
|
|
37
40
|
"sweetalert2": "^11.4.14",
|
|
38
|
-
"react-datepicker": "^7.5.0",
|
|
39
41
|
"sweetalert2-react-content": "^5.0.0",
|
|
40
|
-
"react-input-mask": "^2.0.4",
|
|
41
|
-
"react-number-format": "^5.3.3",
|
|
42
42
|
"yup": "^0.32.11"
|
|
43
43
|
},
|
|
44
44
|
"peerDependencies": {
|
|
@@ -46,6 +46,7 @@
|
|
|
46
46
|
"react-dom": ">=16.8.6"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
+
"@types/react-input-mask": "^3.0.6",
|
|
49
50
|
"tsup": "^8.0.2",
|
|
50
51
|
"typescript": "^5.6.3"
|
|
51
52
|
}
|