asma-ui-table 1.3.0 → 1.4.0
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/asma-ui-table.es.js
CHANGED
|
@@ -12463,8 +12463,12 @@ function selectColumn(isFixed2, rowHeight) {
|
|
|
12463
12463
|
style: { height: rowHeight ? rowHeight : "auto" },
|
|
12464
12464
|
className: "pl-2 flex w-full items-center justify-start m-0 p-0",
|
|
12465
12465
|
disabled,
|
|
12466
|
-
onClick: () =>
|
|
12467
|
-
|
|
12466
|
+
onClick: () => {
|
|
12467
|
+
if (disabled)
|
|
12468
|
+
return;
|
|
12469
|
+
cell.row.toggleSelected();
|
|
12470
|
+
},
|
|
12471
|
+
children: /* @__PURE__ */ jsxRuntimeExports.jsx(StyledTooltip, { arrow: true, placement: "top-start", title: cell.row.getRowSelectionTooltip(), children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: disabled ? "cursor-not-allowed-red" : "", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
|
|
12468
12472
|
StyledCheckbox,
|
|
12469
12473
|
{
|
|
12470
12474
|
size: "small",
|