@privateers/ui 0.3.19 → 0.3.20
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/dist/styles/brands/dis-creadis.css +12 -7
- package/dist/styles/library.css +1 -0
- package/dist/styles/tokens.css +8 -0
- package/dist/tailwind/preset.cjs +1 -0
- package/dist/tailwind/preset.cjs.map +1 -1
- package/dist/tailwind/preset.js +1 -0
- package/dist/tailwind/preset.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -105,7 +105,7 @@ function AvatarFallback({
|
|
|
105
105
|
{
|
|
106
106
|
"data-slot": "avatar-fallback",
|
|
107
107
|
className: cn(
|
|
108
|
-
"flex size-full items-center justify-center rounded-full
|
|
108
|
+
"bg-muted text-muted-foreground flex size-full items-center justify-center rounded-full text-sm font-medium",
|
|
109
109
|
className
|
|
110
110
|
),
|
|
111
111
|
...props
|
|
@@ -1132,7 +1132,7 @@ function SheetOverlay({
|
|
|
1132
1132
|
{
|
|
1133
1133
|
"data-slot": "sheet-overlay",
|
|
1134
1134
|
className: cn(
|
|
1135
|
-
"fixed inset-0 z-50 bg-
|
|
1135
|
+
"fixed inset-0 z-50 bg-overlay/80",
|
|
1136
1136
|
"data-[state=open]:animate-in data-[state=closed]:animate-out",
|
|
1137
1137
|
"data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
1138
1138
|
className
|
|
@@ -2495,7 +2495,7 @@ function AlertDialogOverlay({
|
|
|
2495
2495
|
AlertDialog$1.Overlay,
|
|
2496
2496
|
{
|
|
2497
2497
|
"data-slot": "alert-dialog-overlay",
|
|
2498
|
-
className: cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-
|
|
2498
|
+
className: cn("data-open:animate-in data-closed:animate-out data-closed:fade-out-0 data-open:fade-in-0 bg-overlay/10 duration-100 supports-backdrop-filter:backdrop-blur-xs fixed inset-0 z-50", className),
|
|
2499
2499
|
...props
|
|
2500
2500
|
}
|
|
2501
2501
|
);
|
|
@@ -2648,7 +2648,7 @@ function DialogOverlay({
|
|
|
2648
2648
|
{
|
|
2649
2649
|
"data-slot": "dialog-overlay",
|
|
2650
2650
|
className: cn(
|
|
2651
|
-
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 bg-
|
|
2651
|
+
"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 bg-overlay/50 fixed inset-0 z-50",
|
|
2652
2652
|
className
|
|
2653
2653
|
),
|
|
2654
2654
|
...props
|