@moontra/moonui-pro 2.17.3 → 2.17.4
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
|
@@ -12008,7 +12008,7 @@ END:VCALENDAR`;
|
|
|
12008
12008
|
] })
|
|
12009
12009
|
] }),
|
|
12010
12010
|
/* @__PURE__ */ jsx(MoonUICardContentPro, { children: /* @__PURE__ */ jsxs("div", { className: "grid grid-cols-7 gap-1 text-xs", children: [
|
|
12011
|
-
["S", "M", "T", "W", "T", "F", "S"].map((day) => /* @__PURE__ */ jsx("div", { className: "text-center text-muted-foreground p-1", children: day }, day)),
|
|
12011
|
+
["S", "M", "T", "W", "T", "F", "S"].map((day, index2) => /* @__PURE__ */ jsx("div", { className: "text-center text-muted-foreground p-1", children: day }, `${day}-${index2}`)),
|
|
12012
12012
|
Array.from({ length: getDay(startOfMonth(month)) }, (_, i) => /* @__PURE__ */ jsx("div", {}, `empty-${i}`)),
|
|
12013
12013
|
Array.from({ length: getDaysInMonth(month) }, (_, i) => {
|
|
12014
12014
|
const day = new Date(month.getFullYear(), month.getMonth(), i + 1);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@moontra/moonui-pro",
|
|
3
|
-
"version": "2.17.
|
|
3
|
+
"version": "2.17.4",
|
|
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",
|
|
@@ -1057,8 +1057,8 @@ END:VCALENDAR`
|
|
|
1057
1057
|
</CardHeader>
|
|
1058
1058
|
<CardContent>
|
|
1059
1059
|
<div className="grid grid-cols-7 gap-1 text-xs">
|
|
1060
|
-
{['S', 'M', 'T', 'W', 'T', 'F', 'S'].map(day => (
|
|
1061
|
-
<div key={day} className="text-center text-muted-foreground p-1">
|
|
1060
|
+
{['S', 'M', 'T', 'W', 'T', 'F', 'S'].map((day, index) => (
|
|
1061
|
+
<div key={`${day}-${index}`} className="text-center text-muted-foreground p-1">
|
|
1062
1062
|
{day}
|
|
1063
1063
|
</div>
|
|
1064
1064
|
))}
|