globalfy-design-system 0.47.0 → 0.48.0
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.
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
import { ReactNode } from "react";
|
|
2
|
+
export type TagColor = "red" | "orange" | "lightGreen" | "violet" | "blue" | "darkGreen" | "gray" | "yellow";
|
|
2
3
|
export type TagProps = {
|
|
3
4
|
children: ReactNode;
|
|
4
5
|
className?: string;
|
|
5
6
|
variant?: "light" | "dark" | "ghost";
|
|
6
|
-
color?:
|
|
7
|
+
color?: TagColor;
|
|
7
8
|
"data-testid"?: string;
|
|
8
9
|
};
|
|
@@ -24363,7 +24363,8 @@ const Y8 = (e) => {
|
|
|
24363
24363
|
violet: "text-complementary-violet-500",
|
|
24364
24364
|
blue: "text-complementary-blue-500",
|
|
24365
24365
|
darkGreen: "text-primary-green-500",
|
|
24366
|
-
yellow: "text-complementary-yellow-500"
|
|
24366
|
+
yellow: "text-complementary-yellow-500",
|
|
24367
|
+
gray: "text-primary-grey-800"
|
|
24367
24368
|
}
|
|
24368
24369
|
},
|
|
24369
24370
|
compoundVariants: [
|
|
@@ -24438,6 +24439,11 @@ const Y8 = (e) => {
|
|
|
24438
24439
|
variant: "light",
|
|
24439
24440
|
color: "yellow",
|
|
24440
24441
|
class: "bg-complementary-yellow-50 text-complementary-yellow-500"
|
|
24442
|
+
},
|
|
24443
|
+
{
|
|
24444
|
+
variant: "light",
|
|
24445
|
+
color: "gray",
|
|
24446
|
+
class: "bg-primary-grey-500 text-primary-grey-800"
|
|
24441
24447
|
}
|
|
24442
24448
|
]
|
|
24443
24449
|
}), a = Ie({
|