@moontra/moonui-pro 2.26.27 → 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.global.js +14 -14
- package/dist/index.global.js.map +1 -1
- package/dist/index.mjs +10 -19
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -74003,31 +74003,22 @@ function DataTable({
|
|
|
74003
74003
|
header: ({ table: table2 }) => /* @__PURE__ */ jsx(
|
|
74004
74004
|
MoonUICheckboxPro,
|
|
74005
74005
|
{
|
|
74006
|
-
checked: table2.getIsAllPageRowsSelected()
|
|
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]"
|
|
74010
74011
|
}
|
|
74011
74012
|
),
|
|
74012
|
-
cell: ({ row }) =>
|
|
74013
|
-
|
|
74014
|
-
|
|
74015
|
-
|
|
74016
|
-
|
|
74017
|
-
|
|
74018
|
-
|
|
74019
|
-
});
|
|
74013
|
+
cell: ({ row }) => /* @__PURE__ */ jsx(
|
|
74014
|
+
MoonUICheckboxPro,
|
|
74015
|
+
{
|
|
74016
|
+
checked: row.getIsSelected(),
|
|
74017
|
+
onCheckedChange: (value) => row.toggleSelected(!!value),
|
|
74018
|
+
"aria-label": "Select row",
|
|
74019
|
+
className: "translate-y-[2px]"
|
|
74020
74020
|
}
|
|
74021
|
-
|
|
74022
|
-
MoonUICheckboxPro,
|
|
74023
|
-
{
|
|
74024
|
-
checked: isSelected,
|
|
74025
|
-
onCheckedChange: (value) => row.toggleSelected(!!value),
|
|
74026
|
-
"aria-label": "Select row",
|
|
74027
|
-
className: "translate-y-[2px]"
|
|
74028
|
-
}
|
|
74029
|
-
);
|
|
74030
|
-
},
|
|
74021
|
+
),
|
|
74031
74022
|
enableSorting: false,
|
|
74032
74023
|
enableHiding: false,
|
|
74033
74024
|
size: 40,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.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",
|