@fileverse/ui 4.1.1-patch-4 → 4.1.1-patch-6
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.css +16 -0
- package/dist/index.es.d.ts +10 -2
- package/dist/index.es.js +8168 -7991
- package/package.json +2 -1
package/dist/index.css
CHANGED
|
@@ -621,6 +621,10 @@ video {
|
|
|
621
621
|
color: hsl(var(--color-text-link));
|
|
622
622
|
}
|
|
623
623
|
|
|
624
|
+
.\!color-text-inverse {
|
|
625
|
+
color: hsl(var(--color-text-inverse)) !important;
|
|
626
|
+
}
|
|
627
|
+
|
|
624
628
|
.color-text-inverse {
|
|
625
629
|
color: hsl(var(--color-text-inverse));
|
|
626
630
|
}
|
|
@@ -685,6 +689,10 @@ video {
|
|
|
685
689
|
background-color: hsl(var(--color-bg-success-light));
|
|
686
690
|
}
|
|
687
691
|
|
|
692
|
+
.\!color-bg-default-inverse {
|
|
693
|
+
background-color: hsl(var(--color-bg-default-inverse)) !important;
|
|
694
|
+
}
|
|
695
|
+
|
|
688
696
|
.color-bg-default-inverse {
|
|
689
697
|
background-color: hsl(var(--color-bg-default-inverse));
|
|
690
698
|
}
|
|
@@ -1358,6 +1366,9 @@ video {
|
|
|
1358
1366
|
.w-6 {
|
|
1359
1367
|
width: 1.5rem;
|
|
1360
1368
|
}
|
|
1369
|
+
.w-64 {
|
|
1370
|
+
width: 16rem;
|
|
1371
|
+
}
|
|
1361
1372
|
.w-72 {
|
|
1362
1373
|
width: 18rem;
|
|
1363
1374
|
}
|
|
@@ -2126,6 +2137,11 @@ video {
|
|
|
2126
2137
|
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
|
|
2127
2138
|
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2128
2139
|
}
|
|
2140
|
+
.shadow-md {
|
|
2141
|
+
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
|
|
2142
|
+
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
|
|
2143
|
+
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
|
|
2144
|
+
}
|
|
2129
2145
|
.shadow-none {
|
|
2130
2146
|
--tw-shadow: 0 0 #0000;
|
|
2131
2147
|
--tw-shadow-colored: 0 0 #0000;
|
package/dist/index.es.d.ts
CHANGED
|
@@ -9,6 +9,7 @@ import { Drawer as Drawer_2 } from 'vaul';
|
|
|
9
9
|
import { EmojiClickData } from 'emoji-picker-react';
|
|
10
10
|
import { ForwardRefExoticComponent } from 'react';
|
|
11
11
|
import { GridProps as GridProps_2 } from '@radix-ui/themes';
|
|
12
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
12
13
|
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
13
14
|
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
14
15
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
@@ -324,7 +325,7 @@ export declare const DrawerTitle: React_2.ForwardRefExoticComponent<Omit<DialogP
|
|
|
324
325
|
|
|
325
326
|
export declare const DrawerTrigger: React_2.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
326
327
|
|
|
327
|
-
export declare const DynamicAlert: ({ title, description, variant, icon, className, ...props }: DynamicAlertProps) => JSX_2.Element;
|
|
328
|
+
export declare const DynamicAlert: ({ title, description, variant, icon, className, iconClassName, ...props }: DynamicAlertProps) => JSX_2.Element;
|
|
328
329
|
|
|
329
330
|
export declare interface DynamicAlertProps {
|
|
330
331
|
title?: string;
|
|
@@ -332,6 +333,7 @@ export declare interface DynamicAlertProps {
|
|
|
332
333
|
variant: "default" | "danger";
|
|
333
334
|
icon?: LucideIconProps["name"];
|
|
334
335
|
className?: string;
|
|
336
|
+
iconClassName?: string;
|
|
335
337
|
}
|
|
336
338
|
|
|
337
339
|
export declare const DynamicContentController: ForwardRefExoticComponent<DynamicContentControllerProps & RefAttributes<HTMLDivElement>>;
|
|
@@ -447,6 +449,12 @@ export declare const GridLayout: (props: GridProps) => JSX_2.Element;
|
|
|
447
449
|
|
|
448
450
|
export declare type GridProps = GridProps_2;
|
|
449
451
|
|
|
452
|
+
export declare const HoverCard: React_2.FC<HoverCardPrimitive.HoverCardProps>;
|
|
453
|
+
|
|
454
|
+
export declare const HoverCardContent: React_2.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
455
|
+
|
|
456
|
+
export declare const HoverCardTrigger: React_2.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React_2.RefAttributes<HTMLAnchorElement>>;
|
|
457
|
+
|
|
450
458
|
export declare const Icon: default_2.ForwardRefExoticComponent<Omit<IconProps, "ref"> & default_2.RefAttributes<SVGSVGElement>>;
|
|
451
459
|
|
|
452
460
|
export declare const IconButton: ForwardRefExoticComponent<IconButtonProps & RefAttributes<HTMLButtonElement>>;
|
|
@@ -794,7 +802,7 @@ declare const tooltipVariants: (props?: ({
|
|
|
794
802
|
defaultVariants?: "variant" | "beakPosition" | null | undefined;
|
|
795
803
|
} & ClassProp) | undefined) => string;
|
|
796
804
|
|
|
797
|
-
declare const UltimateIcons: any;
|
|
805
|
+
export declare const UltimateIcons: any;
|
|
798
806
|
|
|
799
807
|
export declare const useHoverAndLongPress: ({ delay, }: UseHoverAndLongPressProps) => {
|
|
800
808
|
onMouseEnter: () => void;
|