react-table-edit 0.2.0 → 0.2.1

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
@@ -1485,8 +1485,8 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
1485
1485
  setContentColumns(arrContentColumns);
1486
1486
  }, [columns]);
1487
1487
  const getNestedChildren = (array, arrHeaderColumns, arrContentColumns, level, maxLevel) => {
1488
- array.forEach((item, index) => {
1489
- const ele = { ...item, visible: item.invisibleDisable ? item.visible : arrHeaderColumns[0][index]?.visible ?? item.visible, rowspan: 1, index: 0 };
1488
+ array.forEach((item) => {
1489
+ const ele = { ...item, visible: item.invisibleDisable ? item.visible : contentColumns[level]?.visible ?? item.visible, rowspan: 1, index: 0 };
1490
1490
  if (item.columns && item.columns?.length > 0) {
1491
1491
  const countLevel = getNestedChildren(item.columns, arrHeaderColumns, arrContentColumns, level + 1, maxLevel);
1492
1492
  arrHeaderColumns[maxLevel - 1 - countLevel].push(ele);
@@ -2494,12 +2494,12 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
2494
2494
  id: indexFocus === indexRow && typeDis !== 1 ? `${idTable}-col${indexCol + 1}-row${indexRow + 1}` : "",
2495
2495
  className: (0, import_classnames9.default)("r-rowcell-content", { "is-invalid": errorMessage }),
2496
2496
  style: {
2497
- margin: typeDis !== 1 && !errorMessage ? "6px 10px" : 2,
2498
- maxWidth: col.maxWidth ? col.maxWidth : col.width ? col.width : col.minWidth
2497
+ padding: typeDis !== 1 && errorMessage ? "6px 10px" : 0,
2498
+ margin: typeDis !== 1 && !errorMessage ? "6px 10px" : 2
2499
2499
  },
2500
2500
  children: [
2501
- typeDis === 1 && !refreshRow ? renderEdit(row, col, indexRow, indexCol) : typeDis === 2 ? col.template(row, indexRow) : value,
2502
- /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "icon-table", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_ej2_react_popups.TooltipComponent, { className: (0, import_classnames9.default)("cursor-pointer text-primary", { "d-none": !errorMessage }), content: errorMessage, children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_becoxy_icons4.AlertCircle, { fontSize: 16.5 }) }) })
2501
+ typeDis === 1 && !refreshRow ? renderEdit(row, col, indexRow, indexCol) : typeDis === 2 ? col.template(row, indexRow) : /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "r-cell-text", style: { maxWidth: col.maxWidth ? col.maxWidth : col.width ? col.width : col.minWidth }, children: value }),
2502
+ /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("span", { className: "icon-table", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_ej2_react_popups.TooltipComponent, { className: (0, import_classnames9.default)("cursor-pointer text-primary", { "d-none": !errorMessage }), content: errorMessage?.toString() ?? "", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_becoxy_icons4.AlertCircle, { fontSize: 16.5 }) }) })
2503
2503
  ]
2504
2504
  }
2505
2505
  ) })
package/dist/index.mjs CHANGED
@@ -1459,8 +1459,8 @@ var TableEdit = forwardRef2((props, ref) => {
1459
1459
  setContentColumns(arrContentColumns);
1460
1460
  }, [columns]);
1461
1461
  const getNestedChildren = (array, arrHeaderColumns, arrContentColumns, level, maxLevel) => {
1462
- array.forEach((item, index) => {
1463
- const ele = { ...item, visible: item.invisibleDisable ? item.visible : arrHeaderColumns[0][index]?.visible ?? item.visible, rowspan: 1, index: 0 };
1462
+ array.forEach((item) => {
1463
+ const ele = { ...item, visible: item.invisibleDisable ? item.visible : contentColumns[level]?.visible ?? item.visible, rowspan: 1, index: 0 };
1464
1464
  if (item.columns && item.columns?.length > 0) {
1465
1465
  const countLevel = getNestedChildren(item.columns, arrHeaderColumns, arrContentColumns, level + 1, maxLevel);
1466
1466
  arrHeaderColumns[maxLevel - 1 - countLevel].push(ele);
@@ -2468,12 +2468,12 @@ var TableEdit = forwardRef2((props, ref) => {
2468
2468
  id: indexFocus === indexRow && typeDis !== 1 ? `${idTable}-col${indexCol + 1}-row${indexRow + 1}` : "",
2469
2469
  className: classnames5("r-rowcell-content", { "is-invalid": errorMessage }),
2470
2470
  style: {
2471
- margin: typeDis !== 1 && !errorMessage ? "6px 10px" : 2,
2472
- maxWidth: col.maxWidth ? col.maxWidth : col.width ? col.width : col.minWidth
2471
+ padding: typeDis !== 1 && errorMessage ? "6px 10px" : 0,
2472
+ margin: typeDis !== 1 && !errorMessage ? "6px 10px" : 2
2473
2473
  },
2474
2474
  children: [
2475
- typeDis === 1 && !refreshRow ? renderEdit(row, col, indexRow, indexCol) : typeDis === 2 ? col.template(row, indexRow) : value,
2476
- /* @__PURE__ */ jsx12("span", { className: "icon-table", children: /* @__PURE__ */ jsx12(TooltipComponent, { className: classnames5("cursor-pointer text-primary", { "d-none": !errorMessage }), content: errorMessage, children: /* @__PURE__ */ jsx12(AlertCircle, { fontSize: 16.5 }) }) })
2475
+ typeDis === 1 && !refreshRow ? renderEdit(row, col, indexRow, indexCol) : typeDis === 2 ? col.template(row, indexRow) : /* @__PURE__ */ jsx12("div", { className: "r-cell-text", style: { maxWidth: col.maxWidth ? col.maxWidth : col.width ? col.width : col.minWidth }, children: value }),
2476
+ /* @__PURE__ */ jsx12("span", { className: "icon-table", children: /* @__PURE__ */ jsx12(TooltipComponent, { className: classnames5("cursor-pointer text-primary", { "d-none": !errorMessage }), content: errorMessage?.toString() ?? "", children: /* @__PURE__ */ jsx12(AlertCircle, { fontSize: 16.5 }) }) })
2477
2477
  ]
2478
2478
  }
2479
2479
  ) })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "react-table-edit",
3
3
  "license": "MIT",
4
- "version": "0.2.0",
4
+ "version": "0.2.1",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",