@underverse-ui/underverse 0.2.70 → 0.2.71
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.cjs +4 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -5848,7 +5848,7 @@ var DatePicker = ({
|
|
|
5848
5848
|
},
|
|
5849
5849
|
className: cn(
|
|
5850
5850
|
size === "sm" ? "w-7 h-7 text-[12px]" : "w-8 h-8 text-sm",
|
|
5851
|
-
"datepicker-day rounded-lg focus:outline-none relative",
|
|
5851
|
+
"datepicker-day rounded-lg focus:outline-none relative cursor-pointer",
|
|
5852
5852
|
"transition-all duration-200 font-medium",
|
|
5853
5853
|
isPastDate && "opacity-30 cursor-not-allowed text-muted-foreground",
|
|
5854
5854
|
isSelected ? "bg-linear-to-br from-primary to-primary/80 text-primary-foreground font-bold shadow-lg shadow-primary/30 scale-110 z-10 hover:from-primary hover:to-primary/70" : !isPastDate && "hover:bg-accent/80 hover:text-accent-foreground hover:scale-105 focus:bg-accent focus:text-accent-foreground",
|
|
@@ -6285,7 +6285,7 @@ var DateRangePicker = ({ startDate, endDate, onChange, placeholder = "Select dat
|
|
|
6285
6285
|
onMouseEnter: () => !isPastDate && tempStart && !tempEnd && setHoveredDate(date),
|
|
6286
6286
|
onMouseLeave: () => tempStart && !tempEnd && setHoveredDate(null),
|
|
6287
6287
|
className: cn(
|
|
6288
|
-
"transition-all duration-200 focus:outline-none relative font-medium",
|
|
6288
|
+
"transition-all duration-200 focus:outline-none relative font-medium cursor-pointer",
|
|
6289
6289
|
size === "sm" ? "w-6 h-6 text-xs" : "w-8 h-8 text-sm",
|
|
6290
6290
|
// Disabled/past date state
|
|
6291
6291
|
isPastDate && "opacity-30 cursor-not-allowed text-muted-foreground",
|
|
@@ -6634,7 +6634,7 @@ function Calendar2({
|
|
|
6634
6634
|
onClick: () => handleClickDay(d),
|
|
6635
6635
|
disabled,
|
|
6636
6636
|
className: cn(
|
|
6637
|
-
"rounded-lg flex items-center justify-center relative",
|
|
6637
|
+
"rounded-lg flex items-center justify-center relative cursor-pointer",
|
|
6638
6638
|
sz.day,
|
|
6639
6639
|
!inMonth && "text-muted-foreground/60",
|
|
6640
6640
|
disabled && "opacity-40 cursor-not-allowed",
|
|
@@ -6714,7 +6714,7 @@ function Calendar2({
|
|
|
6714
6714
|
onClick: () => handleClickDay(d),
|
|
6715
6715
|
disabled,
|
|
6716
6716
|
className: cn(
|
|
6717
|
-
"rounded-lg flex items-center justify-center relative",
|
|
6717
|
+
"rounded-lg flex items-center justify-center relative cursor-pointer",
|
|
6718
6718
|
sz.day,
|
|
6719
6719
|
disabled && "opacity-40 cursor-not-allowed",
|
|
6720
6720
|
isToday2 && !selectedDay && "ring-1 ring-primary/50",
|