@algorithm-shift/design-system 1.3.115 → 1.3.116

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.mjs CHANGED
@@ -4339,14 +4339,15 @@ function DataTable({
4339
4339
  Button,
4340
4340
  {
4341
4341
  size: "sm",
4342
- className: "bg-[#12715B] text-white text-xs h-auto py-2 px-3 cursor-pointer",
4342
+ variant: "outline",
4343
+ className: "px-3 py-1 text-xs cursor-pointer border-gray-300",
4343
4344
  onClick: async () => {
4344
4345
  setFetchLoading(true);
4345
4346
  await getRowCount?.();
4346
4347
  setFetchLoading(false);
4347
4348
  },
4348
4349
  disabled: fetchLoading,
4349
- children: fetchLoading ? "Fetching..." : "Get Total Records"
4350
+ children: fetchLoading ? "Fetching..." : "Get Count"
4350
4351
  }
4351
4352
  ),
4352
4353
  globalSearch && /* @__PURE__ */ jsxs30("div", { className: "flex items-center gap-2 w-full max-w-sm", children: [