@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 +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/elements/HawaTable.tsx +3 -1
package/dist/index.mjs
CHANGED
|
@@ -1319,7 +1319,7 @@ var HawaTable = ({
|
|
|
1319
1319
|
useEffect6(() => {
|
|
1320
1320
|
changePage();
|
|
1321
1321
|
}, [slice, page]);
|
|
1322
|
-
return /* @__PURE__ */ React20.createElement("div", { className: "relative flex flex-col gap-2
|
|
1322
|
+
return /* @__PURE__ */ React20.createElement("div", { className: "relative flex flex-col gap-2 " }, /* @__PURE__ */ React20.createElement("div", { className: `overflow-x-auto rounded bg-${headerColor}` }, props.headerTools && /* @__PURE__ */ React20.createElement("div", { className: "flex flex-row items-center justify-between gap-2 border bg-background px-2 py-2" }, props.headerTools), /* @__PURE__ */ React20.createElement(
|
|
1323
1323
|
"table",
|
|
1324
1324
|
{
|
|
1325
1325
|
className: clsx7(
|
|
@@ -1427,6 +1427,7 @@ var HawaTable = ({
|
|
|
1427
1427
|
DropdownMenu,
|
|
1428
1428
|
{
|
|
1429
1429
|
width: props.actionsWidth,
|
|
1430
|
+
size: props.actionsSize,
|
|
1430
1431
|
direction,
|
|
1431
1432
|
side: "right",
|
|
1432
1433
|
items: props.actions,
|