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.
@@ -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: () => cell.row.toggleSelected(),
12467
- children: /* @__PURE__ */ jsxRuntimeExports.jsx(StyledTooltip, { arrow: true, title: cell.row.getRowSelectionTooltip(), children: /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: disabled ? "cursor-not-allowed" : "", children: /* @__PURE__ */ jsxRuntimeExports.jsx(
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",
@@ -235,6 +235,9 @@ declare const _default: {
235
235
  "custom-grey-04": string;
236
236
  "custom-grey-06": string;
237
237
  };
238
+ cursor: {
239
+ 'not-allowed-red': string;
240
+ };
238
241
  };
239
242
  };
240
243
  plugins: any[];
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.0",
6
+ "version": "1.4.0",
7
7
  "type": "module",
8
8
  "files": [
9
9
  "dist/**/*",