react-table-edit 0.2.1 → 0.2.3

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 CHANGED
@@ -977,7 +977,7 @@ var EditForm = (0, import_react9.forwardRef)((props, ref) => {
977
977
  return /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
978
978
  "div",
979
979
  {
980
- className: "from-edit",
980
+ className: "form-edit",
981
981
  ref,
982
982
  id,
983
983
  children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)("div", { ref: editFormRef, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(
@@ -1010,7 +1010,7 @@ var EditForm = (0, import_react9.forwardRef)((props, ref) => {
1010
1010
  width: menuWidth ? menuWidth : "min-content",
1011
1011
  maxWidth: innerWidth > 1280 ? 1280 : innerWidth,
1012
1012
  borderRadius: 8,
1013
- zIndex: 1060
1013
+ zIndex: 1056
1014
1014
  },
1015
1015
  children: /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(import_reactstrap6.DropdownItem, { className: "p-0", style: { borderRadius: "6px" }, tag: "div", header: true, children: /* @__PURE__ */ (0, import_jsx_runtime8.jsxs)(import_reactstrap6.Form, { className: "todo-modal", onKeyDown: (e) => formKeyDown(e, handleSubmit(handleOnSubmit)), children: [
1016
1016
  /* @__PURE__ */ (0, import_jsx_runtime8.jsx)(
@@ -2492,7 +2492,7 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
2492
2492
  "div",
2493
2493
  {
2494
2494
  id: indexFocus === indexRow && typeDis !== 1 ? `${idTable}-col${indexCol + 1}-row${indexRow + 1}` : "",
2495
- className: (0, import_classnames9.default)("r-rowcell-content", { "is-invalid": errorMessage }),
2495
+ className: (0, import_classnames9.default)("r-rowcell-content", { "r-is-invalid": errorMessage }),
2496
2496
  style: {
2497
2497
  padding: typeDis !== 1 && errorMessage ? "6px 10px" : 0,
2498
2498
  margin: typeDis !== 1 && !errorMessage ? "6px 10px" : 2
@@ -2723,7 +2723,7 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
2723
2723
  return renderHeaderCol(col, index, indexParent);
2724
2724
  }) }, indexParent);
2725
2725
  }) }),
2726
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("tbody", { className: "r-gridcontent", style: { overflowY: "scroll" }, children: dataSource?.map((row, indexRow) => {
2726
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("tbody", { className: "r-gridcontent", children: dataSource?.map((row, indexRow) => {
2727
2727
  const isSelected = selectedRows?.some((x) => x[fieldKey] === row[fieldKey]);
2728
2728
  return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
2729
2729
  "tr",
package/dist/index.mjs CHANGED
@@ -943,7 +943,7 @@ var EditForm = forwardRef((props, ref) => {
943
943
  return /* @__PURE__ */ jsx8(
944
944
  "div",
945
945
  {
946
- className: "from-edit",
946
+ className: "form-edit",
947
947
  ref,
948
948
  id,
949
949
  children: /* @__PURE__ */ jsx8("div", { ref: editFormRef, children: /* @__PURE__ */ jsxs7(
@@ -976,7 +976,7 @@ var EditForm = forwardRef((props, ref) => {
976
976
  width: menuWidth ? menuWidth : "min-content",
977
977
  maxWidth: innerWidth > 1280 ? 1280 : innerWidth,
978
978
  borderRadius: 8,
979
- zIndex: 1060
979
+ zIndex: 1056
980
980
  },
981
981
  children: /* @__PURE__ */ jsx8(DropdownItem, { className: "p-0", style: { borderRadius: "6px" }, tag: "div", header: true, children: /* @__PURE__ */ jsxs7(Form, { className: "todo-modal", onKeyDown: (e) => formKeyDown(e, handleSubmit(handleOnSubmit)), children: [
982
982
  /* @__PURE__ */ jsx8(
@@ -2466,7 +2466,7 @@ var TableEdit = forwardRef2((props, ref) => {
2466
2466
  "div",
2467
2467
  {
2468
2468
  id: indexFocus === indexRow && typeDis !== 1 ? `${idTable}-col${indexCol + 1}-row${indexRow + 1}` : "",
2469
- className: classnames5("r-rowcell-content", { "is-invalid": errorMessage }),
2469
+ className: classnames5("r-rowcell-content", { "r-is-invalid": errorMessage }),
2470
2470
  style: {
2471
2471
  padding: typeDis !== 1 && errorMessage ? "6px 10px" : 0,
2472
2472
  margin: typeDis !== 1 && !errorMessage ? "6px 10px" : 2
@@ -2697,7 +2697,7 @@ var TableEdit = forwardRef2((props, ref) => {
2697
2697
  return renderHeaderCol(col, index, indexParent);
2698
2698
  }) }, indexParent);
2699
2699
  }) }),
2700
- /* @__PURE__ */ jsx12("tbody", { className: "r-gridcontent", style: { overflowY: "scroll" }, children: dataSource?.map((row, indexRow) => {
2700
+ /* @__PURE__ */ jsx12("tbody", { className: "r-gridcontent", children: dataSource?.map((row, indexRow) => {
2701
2701
  const isSelected = selectedRows?.some((x) => x[fieldKey] === row[fieldKey]);
2702
2702
  return /* @__PURE__ */ jsx12(
2703
2703
  "tr",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
3
  "license": "MIT",
4
- "version": "0.2.1",
4
+ "version": "0.2.3",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",