@fileverse/ui 4.1.2-patch-1 → 4.1.2-patch-3
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 +4 -9
- package/dist/index.es.d.ts +5 -1
- package/dist/index.es.js +4574 -4549
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1088,9 +1088,6 @@ video {
|
|
|
1088
1088
|
.right-5 {
|
|
1089
1089
|
right: 1.25rem;
|
|
1090
1090
|
}
|
|
1091
|
-
.right-6 {
|
|
1092
|
-
right: 1.5rem;
|
|
1093
|
-
}
|
|
1094
1091
|
.top-0 {
|
|
1095
1092
|
top: 0px;
|
|
1096
1093
|
}
|
|
@@ -1103,12 +1100,6 @@ video {
|
|
|
1103
1100
|
.top-3 {
|
|
1104
1101
|
top: 0.75rem;
|
|
1105
1102
|
}
|
|
1106
|
-
.top-5 {
|
|
1107
|
-
top: 1.25rem;
|
|
1108
|
-
}
|
|
1109
|
-
.top-6 {
|
|
1110
|
-
top: 1.5rem;
|
|
1111
|
-
}
|
|
1112
1103
|
.top-\[50\%\] {
|
|
1113
1104
|
top: 50%;
|
|
1114
1105
|
}
|
|
@@ -2164,6 +2155,10 @@ video {
|
|
|
2164
2155
|
--tw-text-opacity: 1;
|
|
2165
2156
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
2166
2157
|
}
|
|
2158
|
+
.text-white {
|
|
2159
|
+
--tw-text-opacity: 1;
|
|
2160
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2161
|
+
}
|
|
2167
2162
|
.underline {
|
|
2168
2163
|
text-decoration-line: underline;
|
|
2169
2164
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -306,6 +306,7 @@ export declare const DrawerContent: React_2.ForwardRefExoticComponent<DrawerCont
|
|
|
306
306
|
declare interface DrawerContentProps extends React_2.ComponentPropsWithoutRef<typeof Drawer_2.Content> {
|
|
307
307
|
hasCloseIcon?: boolean;
|
|
308
308
|
overlayClasses?: string;
|
|
309
|
+
onClose?: (open: boolean) => void;
|
|
309
310
|
}
|
|
310
311
|
|
|
311
312
|
export declare const DrawerDescription: React_2.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React_2.RefAttributes<HTMLParagraphElement>, "ref"> & React_2.RefAttributes<HTMLParagraphElement>>;
|
|
@@ -383,7 +384,7 @@ export declare const DynamicModal: ({ open, onOpenChange, title, description, co
|
|
|
383
384
|
export declare interface DynamicModalProps {
|
|
384
385
|
open: boolean;
|
|
385
386
|
onOpenChange: (open: boolean) => void;
|
|
386
|
-
title
|
|
387
|
+
title?: string | default_2.ReactNode;
|
|
387
388
|
description?: string;
|
|
388
389
|
content?: default_2.ReactNode;
|
|
389
390
|
primaryAction?: {
|
|
@@ -530,6 +531,8 @@ declare const iconVariants_2: (props?: ({
|
|
|
530
531
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
531
532
|
} & ClassProp) | undefined) => string;
|
|
532
533
|
|
|
534
|
+
export declare const isDarkColor: (color: string) => boolean;
|
|
535
|
+
|
|
533
536
|
export declare const Label: React_2.ForwardRefExoticComponent<LabelProps & React_2.RefAttributes<HTMLLabelElement>>;
|
|
534
537
|
|
|
535
538
|
export declare interface LabelProps extends React_2.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
|
|
@@ -742,6 +745,7 @@ export declare interface TagProps extends React_2.HTMLAttributes<HTMLDivElement>
|
|
|
742
745
|
isRemovable?: boolean;
|
|
743
746
|
onRemove?: (event?: React_2.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
744
747
|
icon?: any;
|
|
748
|
+
color?: string;
|
|
745
749
|
}
|
|
746
750
|
|
|
747
751
|
export declare interface TagType {
|