@sikka/hawa 0.1.96 → 0.1.97

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.d.mts CHANGED
@@ -217,6 +217,7 @@ type TableTypes = {
217
217
  columns: ColTypes[];
218
218
  actions?: MenuItemType[];
219
219
  actionsWidth?: "default" | "sm" | "lg" | "parent";
220
+ actionsSize?: "default" | "sm";
220
221
  direction?: "rtl" | "ltr";
221
222
  rows?: RowTypes[][];
222
223
  handleActionClick?: any;
package/dist/index.d.ts CHANGED
@@ -217,6 +217,7 @@ type TableTypes = {
217
217
  columns: ColTypes[];
218
218
  actions?: MenuItemType[];
219
219
  actionsWidth?: "default" | "sm" | "lg" | "parent";
220
+ actionsSize?: "default" | "sm";
220
221
  direction?: "rtl" | "ltr";
221
222
  rows?: RowTypes[][];
222
223
  handleActionClick?: any;
package/dist/index.js CHANGED
@@ -1396,7 +1396,7 @@ var HawaTable = function(_param) {
1396
1396
  page
1397
1397
  ]);
1398
1398
  return /* @__PURE__ */ React6.default.createElement("div", {
1399
- className: "relative flex flex-col gap-2 bg-background "
1399
+ className: "relative flex flex-col gap-2 "
1400
1400
  }, /* @__PURE__ */ React6.default.createElement("div", {
1401
1401
  className: "overflow-x-auto rounded bg-".concat(headerColor)
1402
1402
  }, props.headerTools && /* @__PURE__ */ React6.default.createElement("div", {
@@ -1496,6 +1496,7 @@ var HawaTable = function(_param) {
1496
1496
  className: "flex items-center justify-center"
1497
1497
  }, /* @__PURE__ */ React6.default.createElement(DropdownMenu, {
1498
1498
  width: props.actionsWidth,
1499
+ size: props.actionsSize,
1499
1500
  direction: direction,
1500
1501
  side: "right",
1501
1502
  items: props.actions,