@rarui/styles 1.31.0 → 1.32.0-rc.1
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 +1 -1
- package/dist/index.d.ts +15 -0
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +6 -5
package/dist/index.d.ts
CHANGED
|
@@ -9089,6 +9089,16 @@ export declare const select: {
|
|
|
9089
9089
|
};
|
|
9090
9090
|
declare const styles$5: {
|
|
9091
9091
|
status: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9092
|
+
/**
|
|
9093
|
+
* Specifies whether the status should take up the full width of its container.
|
|
9094
|
+
* This variant is useful when you want to make a status span the entire width of its parent container.
|
|
9095
|
+
*
|
|
9096
|
+
*/
|
|
9097
|
+
full: {
|
|
9098
|
+
true: {
|
|
9099
|
+
width: "100%";
|
|
9100
|
+
};
|
|
9101
|
+
};
|
|
9092
9102
|
/**
|
|
9093
9103
|
* Determines the visual style of the status, influencing its color scheme.
|
|
9094
9104
|
*/
|
|
@@ -9156,6 +9166,11 @@ export type StatusVariants = RecipeVariants<typeof styles$5.status>;
|
|
|
9156
9166
|
declare const status$1: {
|
|
9157
9167
|
classnames: {
|
|
9158
9168
|
status: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9169
|
+
full: {
|
|
9170
|
+
true: {
|
|
9171
|
+
width: "100%";
|
|
9172
|
+
};
|
|
9173
|
+
};
|
|
9159
9174
|
appearance: {
|
|
9160
9175
|
success: {
|
|
9161
9176
|
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|