singularity-components 0.1.87 → 0.1.88
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/main.cjs +20 -6
- package/dist/main.cjs.map +1 -1
- package/dist/main.css +9 -3
- package/dist/main.css.map +1 -1
- package/dist/main.d.cts +3 -2
- package/dist/main.d.ts +3 -2
- package/dist/main.js +20 -6
- package/dist/main.js.map +1 -1
- package/package.json +1 -1
package/dist/main.cjs
CHANGED
|
@@ -20562,11 +20562,11 @@ var textBodyVariants = classVarianceAuthority.cva("", {
|
|
|
20562
20562
|
},
|
|
20563
20563
|
foreground: {
|
|
20564
20564
|
default: "sg:text-foreground",
|
|
20565
|
-
|
|
20565
|
+
black: "sg:text-black",
|
|
20566
|
+
white: "sg:text-white",
|
|
20567
|
+
gray: "sg:text-gray",
|
|
20566
20568
|
primary: "sg:text-primary",
|
|
20567
|
-
secondary: "sg:text-secondary
|
|
20568
|
-
destructive: "sg:text-destructive",
|
|
20569
|
-
accent: "sg:text-accent-foreground"
|
|
20569
|
+
secondary: "sg:text-secondary"
|
|
20570
20570
|
},
|
|
20571
20571
|
weight: {
|
|
20572
20572
|
normal: "sg:font-normal",
|
|
@@ -20612,6 +20612,14 @@ var textDisplayVariants = classVarianceAuthority.cva("sg:block sg:font-bold sg:t
|
|
|
20612
20612
|
md: "sg:text-5xl",
|
|
20613
20613
|
lg: "sg:text-6xl"
|
|
20614
20614
|
},
|
|
20615
|
+
foreground: {
|
|
20616
|
+
default: "sg:text-foreground",
|
|
20617
|
+
black: "sg:text-black",
|
|
20618
|
+
white: "sg:text-white",
|
|
20619
|
+
gray: "sg:text-gray",
|
|
20620
|
+
primary: "sg:text-primary",
|
|
20621
|
+
secondary: "sg:text-secondary"
|
|
20622
|
+
},
|
|
20615
20623
|
gradient: {
|
|
20616
20624
|
none: "",
|
|
20617
20625
|
true: "sg:text-transparent sg:bg-clip-text sg:bg-gradient-to-r sg:from-blue sg:via-orange sg:to-red"
|
|
@@ -20619,6 +20627,7 @@ var textDisplayVariants = classVarianceAuthority.cva("sg:block sg:font-bold sg:t
|
|
|
20619
20627
|
},
|
|
20620
20628
|
defaultVariants: {
|
|
20621
20629
|
size: "md",
|
|
20630
|
+
foreground: "default",
|
|
20622
20631
|
gradient: "none"
|
|
20623
20632
|
}
|
|
20624
20633
|
});
|
|
@@ -20626,6 +20635,7 @@ var TextDisplay = ({
|
|
|
20626
20635
|
children,
|
|
20627
20636
|
size,
|
|
20628
20637
|
gradient,
|
|
20638
|
+
foreground,
|
|
20629
20639
|
className,
|
|
20630
20640
|
...props
|
|
20631
20641
|
}) => {
|
|
@@ -20636,6 +20646,7 @@ var TextDisplay = ({
|
|
|
20636
20646
|
textDisplayVariants({
|
|
20637
20647
|
size,
|
|
20638
20648
|
gradient,
|
|
20649
|
+
foreground,
|
|
20639
20650
|
className
|
|
20640
20651
|
})
|
|
20641
20652
|
),
|
|
@@ -20654,8 +20665,11 @@ var textHeadingVariants = classVarianceAuthority.cva("", {
|
|
|
20654
20665
|
},
|
|
20655
20666
|
foreground: {
|
|
20656
20667
|
default: "sg:text-foreground",
|
|
20657
|
-
|
|
20658
|
-
|
|
20668
|
+
black: "sg:text-black",
|
|
20669
|
+
white: "sg:text-white",
|
|
20670
|
+
gray: "sg:text-gray",
|
|
20671
|
+
primary: "sg:text-primary",
|
|
20672
|
+
secondary: "sg:text-secondary"
|
|
20659
20673
|
}
|
|
20660
20674
|
},
|
|
20661
20675
|
defaultVariants: {
|