@moontra/moonui-pro 2.26.26 → 2.26.28

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
@@ -74003,7 +74003,8 @@ function DataTable({
74003
74003
  header: ({ table: table2 }) => /* @__PURE__ */ jsx(
74004
74004
  MoonUICheckboxPro,
74005
74005
  {
74006
- checked: table2.getIsAllPageRowsSelected() || table2.getIsSomePageRowsSelected() && "indeterminate",
74006
+ checked: table2.getIsAllPageRowsSelected(),
74007
+ indeterminate: table2.getIsSomePageRowsSelected(),
74007
74008
  onCheckedChange: (value) => table2.toggleAllPageRowsSelected(!!value),
74008
74009
  "aria-label": "Select all",
74009
74010
  className: "translate-y-[2px]"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moontra/moonui-pro",
3
- "version": "2.26.26",
3
+ "version": "2.26.28",
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",