@fileverse/ui 4.1.2-patch-2 → 4.1.2-patch-4
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 -0
- package/dist/index.es.d.ts +3 -0
- package/dist/index.es.js +4488 -4483
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -2155,6 +2155,10 @@ video {
|
|
|
2155
2155
|
--tw-text-opacity: 1;
|
|
2156
2156
|
color: rgb(239 68 68 / var(--tw-text-opacity));
|
|
2157
2157
|
}
|
|
2158
|
+
.text-white {
|
|
2159
|
+
--tw-text-opacity: 1;
|
|
2160
|
+
color: rgb(255 255 255 / var(--tw-text-opacity));
|
|
2161
|
+
}
|
|
2158
2162
|
.underline {
|
|
2159
2163
|
text-decoration-line: underline;
|
|
2160
2164
|
}
|
package/dist/index.es.d.ts
CHANGED
|
@@ -531,6 +531,8 @@ declare const iconVariants_2: (props?: ({
|
|
|
531
531
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
532
532
|
} & ClassProp) | undefined) => string;
|
|
533
533
|
|
|
534
|
+
export declare const isDarkColor: (color: string) => boolean;
|
|
535
|
+
|
|
534
536
|
export declare const Label: React_2.ForwardRefExoticComponent<LabelProps & React_2.RefAttributes<HTMLLabelElement>>;
|
|
535
537
|
|
|
536
538
|
export declare interface LabelProps extends React_2.ComponentPropsWithoutRef<typeof LabelPrimitive.Root>, VariantProps<typeof labelVariants> {
|
|
@@ -743,6 +745,7 @@ export declare interface TagProps extends React_2.HTMLAttributes<HTMLDivElement>
|
|
|
743
745
|
isRemovable?: boolean;
|
|
744
746
|
onRemove?: (event?: React_2.MouseEvent<HTMLButtonElement, MouseEvent>) => void;
|
|
745
747
|
icon?: any;
|
|
748
|
+
color?: string;
|
|
746
749
|
}
|
|
747
750
|
|
|
748
751
|
export declare interface TagType {
|