@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/client.js +13 -2
- package/dist/client.js.map +1 -1
- package/dist/client.mjs +13 -2
- package/dist/client.mjs.map +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4339,14 +4339,15 @@ function DataTable({
|
|
|
4339
4339
|
Button,
|
|
4340
4340
|
{
|
|
4341
4341
|
size: "sm",
|
|
4342
|
-
|
|
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
|
|
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: [
|