react-table-edit 0.1.9 → 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 +11 -11
- package/dist/index.mjs +11 -11
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -65,7 +65,7 @@ var ReactInput = (props) => {
|
|
|
65
65
|
setValue("");
|
|
66
66
|
setSearchTerm("");
|
|
67
67
|
};
|
|
68
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.
|
|
68
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsxs)(import_react.Fragment, { children: [
|
|
69
69
|
/* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
70
70
|
import_reactstrap.Input,
|
|
71
71
|
{
|
|
@@ -80,7 +80,7 @@ var ReactInput = (props) => {
|
|
|
80
80
|
}
|
|
81
81
|
),
|
|
82
82
|
value ? /* @__PURE__ */ (0, import_jsx_runtime.jsx)(import_becoxy_icons.X, { className: "input__clear-icon", onClick: handelClear, strokeWidth: 3, fontSize: 16 }) : ""
|
|
83
|
-
] })
|
|
83
|
+
] });
|
|
84
84
|
};
|
|
85
85
|
var react_input_default = ReactInput;
|
|
86
86
|
|
|
@@ -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
|
|
1489
|
-
const ele = { ...item, visible: item.invisibleDisable ? item.visible :
|
|
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);
|
|
@@ -1569,7 +1569,7 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
|
|
|
1569
1569
|
}
|
|
1570
1570
|
};
|
|
1571
1571
|
const searchTemplate = () => {
|
|
1572
|
-
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_react12.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "me-50", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1572
|
+
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_react12.Fragment, { children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "me-50 r-search", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
1573
1573
|
react_input_default,
|
|
1574
1574
|
{
|
|
1575
1575
|
style: { width: "230px" },
|
|
@@ -2308,7 +2308,7 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
|
|
|
2308
2308
|
}, [selectedItem]);
|
|
2309
2309
|
const renderContentCol = (col, row, indexRow, indexCol, isSelected) => {
|
|
2310
2310
|
if (col.field === "command") {
|
|
2311
|
-
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2311
|
+
return col.visible !== false && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2312
2312
|
"td",
|
|
2313
2313
|
{
|
|
2314
2314
|
className: (0, import_classnames9.default)(
|
|
@@ -2326,7 +2326,7 @@ var TableEdit = (0, import_react12.forwardRef)((props, ref) => {
|
|
|
2326
2326
|
`col-${indexRow}-${indexCol}`
|
|
2327
2327
|
);
|
|
2328
2328
|
} else if (col.field === "#") {
|
|
2329
|
-
return /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2329
|
+
return col.visible !== false && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
|
|
2330
2330
|
"td",
|
|
2331
2331
|
{
|
|
2332
2332
|
className: (0, import_classnames9.default)(`r-rowcell p-0 cursor-pointer fix-${col.fixedType}`, { "cell-fixed": col.fixedType }, { "r-active": isSelected && editDisable || indexFocus === indexRow }),
|
|
@@ -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
|
-
|
|
2498
|
-
|
|
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
|
@@ -21,7 +21,7 @@ var ReactInput = (props) => {
|
|
|
21
21
|
setValue("");
|
|
22
22
|
setSearchTerm("");
|
|
23
23
|
};
|
|
24
|
-
return /* @__PURE__ */
|
|
24
|
+
return /* @__PURE__ */ jsxs(Fragment, { children: [
|
|
25
25
|
/* @__PURE__ */ jsx(
|
|
26
26
|
Input,
|
|
27
27
|
{
|
|
@@ -36,7 +36,7 @@ var ReactInput = (props) => {
|
|
|
36
36
|
}
|
|
37
37
|
),
|
|
38
38
|
value ? /* @__PURE__ */ jsx(X, { className: "input__clear-icon", onClick: handelClear, strokeWidth: 3, fontSize: 16 }) : ""
|
|
39
|
-
] })
|
|
39
|
+
] });
|
|
40
40
|
};
|
|
41
41
|
var react_input_default = ReactInput;
|
|
42
42
|
|
|
@@ -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
|
|
1463
|
-
const ele = { ...item, visible: item.invisibleDisable ? item.visible :
|
|
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);
|
|
@@ -1543,7 +1543,7 @@ var TableEdit = forwardRef2((props, ref) => {
|
|
|
1543
1543
|
}
|
|
1544
1544
|
};
|
|
1545
1545
|
const searchTemplate = () => {
|
|
1546
|
-
return /* @__PURE__ */ jsx12(Fragment12, { children: /* @__PURE__ */ jsx12("div", { className: "me-50", children: /* @__PURE__ */ jsx12(
|
|
1546
|
+
return /* @__PURE__ */ jsx12(Fragment12, { children: /* @__PURE__ */ jsx12("div", { className: "me-50 r-search", children: /* @__PURE__ */ jsx12(
|
|
1547
1547
|
react_input_default,
|
|
1548
1548
|
{
|
|
1549
1549
|
style: { width: "230px" },
|
|
@@ -2282,7 +2282,7 @@ var TableEdit = forwardRef2((props, ref) => {
|
|
|
2282
2282
|
}, [selectedItem]);
|
|
2283
2283
|
const renderContentCol = (col, row, indexRow, indexCol, isSelected) => {
|
|
2284
2284
|
if (col.field === "command") {
|
|
2285
|
-
return /* @__PURE__ */ jsx12(
|
|
2285
|
+
return col.visible !== false && /* @__PURE__ */ jsx12(
|
|
2286
2286
|
"td",
|
|
2287
2287
|
{
|
|
2288
2288
|
className: classnames5(
|
|
@@ -2300,7 +2300,7 @@ var TableEdit = forwardRef2((props, ref) => {
|
|
|
2300
2300
|
`col-${indexRow}-${indexCol}`
|
|
2301
2301
|
);
|
|
2302
2302
|
} else if (col.field === "#") {
|
|
2303
|
-
return /* @__PURE__ */ jsx12(
|
|
2303
|
+
return col.visible !== false && /* @__PURE__ */ jsx12(
|
|
2304
2304
|
"td",
|
|
2305
2305
|
{
|
|
2306
2306
|
className: classnames5(`r-rowcell p-0 cursor-pointer fix-${col.fixedType}`, { "cell-fixed": col.fixedType }, { "r-active": isSelected && editDisable || indexFocus === indexRow }),
|
|
@@ -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
|
-
|
|
2472
|
-
|
|
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
|
) })
|