@moontra/moonui-pro 2.25.8 → 2.25.9
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/README.md +100 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.global.js +74 -74
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +2 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -73703,6 +73703,7 @@ function DataTable({
|
|
|
73703
73703
|
selectable = false,
|
|
73704
73704
|
pagination = true,
|
|
73705
73705
|
pageSize = 10,
|
|
73706
|
+
pageSizeOptions = [5, 10, 20, 50, 100],
|
|
73706
73707
|
className,
|
|
73707
73708
|
onRowSelect,
|
|
73708
73709
|
onExport,
|
|
@@ -74116,7 +74117,7 @@ function DataTable({
|
|
|
74116
74117
|
},
|
|
74117
74118
|
className: "h-8 w-[70px] rounded border border-input bg-background px-3 py-1 text-sm",
|
|
74118
74119
|
disabled: isPaginationLoading,
|
|
74119
|
-
children:
|
|
74120
|
+
children: pageSizeOptions.map((size4) => /* @__PURE__ */ jsx("option", { value: size4, children: size4 }, size4))
|
|
74120
74121
|
}
|
|
74121
74122
|
)
|
|
74122
74123
|
] }),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.25.
|
|
3
|
+
"version": "2.25.9",
|
|
4
4
|
"description": "Premium React components for MoonUI - Advanced UI library with 50+ pro components including performance, interactive, and gesture components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.mjs",
|