akeyless-client-commons 1.1.88 → 1.1.89
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/components/index.js
CHANGED
|
@@ -5555,11 +5555,15 @@ var DisplayAllRowsButton = (0, import_react11.memo)(function() {
|
|
|
5555
5555
|
};
|
|
5556
5556
|
var title = displayAllRows ? dataToRender.renderedData.length : maxRows;
|
|
5557
5557
|
return /* @__PURE__ */ (0, import_jsx_runtime18.jsxs)("button", _object_spread_props(_object_spread({}, displayAllRowsButtonProps || {}), {
|
|
5558
|
-
className: cn("bg-[#547f22] text-white px-
|
|
5558
|
+
className: cn("bg-[#547f22] text-white px-3 py-1.5 rounded-md hover:bg-[#3e671f] focus:outline-none flex gap-1", displayAllRowsButtonProps === null || displayAllRowsButtonProps === void 0 ? void 0 : displayAllRowsButtonProps.className),
|
|
5559
5559
|
onClick: toggleDisplayAmount,
|
|
5560
5560
|
children: [
|
|
5561
|
-
|
|
5562
|
-
|
|
5561
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", {
|
|
5562
|
+
children: displayAllRowsButtonLabel || "Display:"
|
|
5563
|
+
}),
|
|
5564
|
+
/* @__PURE__ */ (0, import_jsx_runtime18.jsx)("span", {
|
|
5565
|
+
children: title
|
|
5566
|
+
})
|
|
5563
5567
|
]
|
|
5564
5568
|
}));
|
|
5565
5569
|
}, renderOnce);
|
|
@@ -5330,11 +5330,15 @@ var DisplayAllRowsButton = memo(function() {
|
|
|
5330
5330
|
};
|
|
5331
5331
|
var title = displayAllRows ? dataToRender.renderedData.length : maxRows;
|
|
5332
5332
|
return /* @__PURE__ */ jsxs12("button", _object_spread_props(_object_spread({}, displayAllRowsButtonProps || {}), {
|
|
5333
|
-
className: cn("bg-[#547f22] text-white px-
|
|
5333
|
+
className: cn("bg-[#547f22] text-white px-3 py-1.5 rounded-md hover:bg-[#3e671f] focus:outline-none flex gap-1", displayAllRowsButtonProps === null || displayAllRowsButtonProps === void 0 ? void 0 : displayAllRowsButtonProps.className),
|
|
5334
5334
|
onClick: toggleDisplayAmount,
|
|
5335
5335
|
children: [
|
|
5336
|
-
|
|
5337
|
-
|
|
5336
|
+
/* @__PURE__ */ jsx18("span", {
|
|
5337
|
+
children: displayAllRowsButtonLabel || "Display:"
|
|
5338
|
+
}),
|
|
5339
|
+
/* @__PURE__ */ jsx18("span", {
|
|
5340
|
+
children: title
|
|
5341
|
+
})
|
|
5338
5342
|
]
|
|
5339
5343
|
}));
|
|
5340
5344
|
}, renderOnce);
|