@pactor-app/ui 1.3.0 → 1.7.0
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/{chunk-UKA7C3JP.js → chunk-E2TD6JD2.js} +3 -3
- package/dist/{chunk-TDVG7MZ5.js → chunk-FJPRXEKQ.js} +1 -1
- package/dist/{chunk-P54Y23AP.js → chunk-PMYLC26E.js} +584 -280
- package/dist/{chunk-EVGIS2ZE.js → chunk-ZM3WJZZ7.js} +119 -6
- package/dist/components/index.cjs +1006 -602
- package/dist/components/index.d.cts +86 -2
- package/dist/components/index.d.ts +86 -2
- package/dist/components/index.js +5 -3
- package/dist/index.cjs +1159 -755
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +6 -4
- package/dist/layout/index.cjs +122 -10
- package/dist/layout/index.js +2 -2
- package/dist/ui/index.cjs +3 -3
- package/dist/ui/index.js +1 -1
- package/package.json +5 -5
- package/styles.css +41 -9
|
@@ -459,11 +459,11 @@ function Calendar({
|
|
|
459
459
|
defaultClassNames.day_button
|
|
460
460
|
),
|
|
461
461
|
selected: cn(
|
|
462
|
-
"[&>button]:bg-(--calendar-selected-background) [&>button]:text-(--calendar-selected-foreground) [&>button]:hover:bg-(--calendar-selected-background)",
|
|
462
|
+
"[&>button]:bg-(--calendar-selected-background) [&>button]:text-(--calendar-selected-foreground) [&>button]:hover:bg-(--calendar-selected-background) [&>button]:hover:text-(--calendar-selected-foreground)",
|
|
463
463
|
defaultClassNames.selected
|
|
464
464
|
),
|
|
465
465
|
today: cn(
|
|
466
|
-
"[&>button]:bg-(--calendar-today-background) [&>button]:text-(--calendar-today-foreground)",
|
|
466
|
+
"[&>button]:bg-(--calendar-today-background) [&>button]:text-(--calendar-today-foreground) [&>button]:hover:bg-(--calendar-today-background) [&>button]:hover:text-(--calendar-today-foreground) [&>button]:border [&>button]:border-(--calendar-today-border)",
|
|
467
467
|
defaultClassNames.today
|
|
468
468
|
),
|
|
469
469
|
outside: cn(
|
|
@@ -2562,7 +2562,7 @@ function ToggleGroup({
|
|
|
2562
2562
|
"data-variant": variant,
|
|
2563
2563
|
"data-size": size,
|
|
2564
2564
|
className: cn(
|
|
2565
|
-
"group/toggle-group flex w-fit items-center
|
|
2565
|
+
"group/toggle-group flex w-fit items-center gap-1 rounded-md",
|
|
2566
2566
|
className
|
|
2567
2567
|
),
|
|
2568
2568
|
...props,
|