@underverse-ui/underverse 1.0.87 → 1.0.88
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/api-reference.json +1 -1
- package/dist/index.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -8950,9 +8950,9 @@ var DateRangePicker = ({
|
|
|
8950
8950
|
type: "button",
|
|
8951
8951
|
onClick: () => setViewMode(viewMode === "year" ? "calendar" : "year"),
|
|
8952
8952
|
className: cn(
|
|
8953
|
-
"rounded-lg px-2 py-0.5 font-
|
|
8954
|
-
size === "sm" ? "text-
|
|
8955
|
-
viewMode === "year" ? "bg-primary/15 text-primary" : "text-
|
|
8953
|
+
"rounded-lg px-2 py-0.5 font-bold transition-colors duration-200",
|
|
8954
|
+
size === "sm" ? "text-xs" : size === "lg" ? "text-base" : "text-sm",
|
|
8955
|
+
viewMode === "year" ? "bg-primary/15 text-primary" : "text-foreground hover:bg-accent/50"
|
|
8956
8956
|
),
|
|
8957
8957
|
children: viewDate.getFullYear()
|
|
8958
8958
|
}
|