@fileverse/ui 4.1.1-patch-7 → 4.1.1-patch-8
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 +13 -0
- package/dist/index.es.d.ts +4 -2
- package/dist/index.es.js +4634 -4580
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -1049,6 +1049,9 @@ video {
|
|
|
1049
1049
|
.bottom-0 {
|
|
1050
1050
|
bottom: 0px;
|
|
1051
1051
|
}
|
|
1052
|
+
.bottom-2 {
|
|
1053
|
+
bottom: 0.5rem;
|
|
1054
|
+
}
|
|
1052
1055
|
.bottom-5 {
|
|
1053
1056
|
bottom: 1.25rem;
|
|
1054
1057
|
}
|
|
@@ -1236,6 +1239,9 @@ video {
|
|
|
1236
1239
|
.\!h-auto {
|
|
1237
1240
|
height: auto !important;
|
|
1238
1241
|
}
|
|
1242
|
+
.h-1 {
|
|
1243
|
+
height: 0.25rem;
|
|
1244
|
+
}
|
|
1239
1245
|
.h-10 {
|
|
1240
1246
|
height: 2.5rem;
|
|
1241
1247
|
}
|
|
@@ -1475,6 +1481,9 @@ video {
|
|
|
1475
1481
|
.min-w-4 {
|
|
1476
1482
|
min-width: 1rem;
|
|
1477
1483
|
}
|
|
1484
|
+
.min-w-5 {
|
|
1485
|
+
min-width: 1.25rem;
|
|
1486
|
+
}
|
|
1478
1487
|
.min-w-9 {
|
|
1479
1488
|
min-width: 2.25rem;
|
|
1480
1489
|
}
|
|
@@ -1917,6 +1926,10 @@ video {
|
|
|
1917
1926
|
.\!bg-transparent {
|
|
1918
1927
|
background-color: transparent !important;
|
|
1919
1928
|
}
|
|
1929
|
+
.bg-green-700 {
|
|
1930
|
+
--tw-bg-opacity: 1;
|
|
1931
|
+
background-color: rgb(21 128 61 / var(--tw-bg-opacity));
|
|
1932
|
+
}
|
|
1920
1933
|
.bg-inherit {
|
|
1921
1934
|
background-color: inherit;
|
|
1922
1935
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -784,6 +784,8 @@ export declare const Toast: React_2.ForwardRefExoticComponent<Omit<ToastPrimitiv
|
|
|
784
784
|
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "center-top" | "center-bottom" | null | undefined;
|
|
785
785
|
} & ClassProp) | undefined) => string> & {
|
|
786
786
|
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "center-top" | "center-bottom";
|
|
787
|
+
duration?: number;
|
|
788
|
+
hasIcon?: boolean;
|
|
787
789
|
} & React_2.RefAttributes<HTMLLIElement>>;
|
|
788
790
|
|
|
789
791
|
export declare function toast({ ...props }: Toast_2): {
|
|
@@ -802,11 +804,11 @@ export declare const ToastClose: React_2.ForwardRefExoticComponent<Omit<ToastPri
|
|
|
802
804
|
|
|
803
805
|
export declare const ToastDescription: React_2.ForwardRefExoticComponent<Omit<ToastPrimitives.ToastDescriptionProps & React_2.RefAttributes<HTMLDivElement>, "ref"> & React_2.RefAttributes<HTMLDivElement>>;
|
|
804
806
|
|
|
805
|
-
export declare const Toaster: ({ position,
|
|
807
|
+
export declare const Toaster: ({ position, duration, }: ToasterProps) => JSX_2.Element;
|
|
806
808
|
|
|
807
809
|
export declare interface ToasterProps {
|
|
808
810
|
position?: "top-right" | "top-left" | "bottom-right" | "bottom-left" | "center-top" | "center-bottom";
|
|
809
|
-
|
|
811
|
+
duration?: number;
|
|
810
812
|
}
|
|
811
813
|
|
|
812
814
|
declare type ToasterToast = ToastProps & {
|