@rarui/styles 1.18.0-rc.2 → 1.18.0-rc.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 +1 -1
- package/dist/index.d.ts +24 -12
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -9808,14 +9808,11 @@ declare const sideNavigationStyles: {
|
|
|
9808
9808
|
};
|
|
9809
9809
|
};
|
|
9810
9810
|
};
|
|
9811
|
-
|
|
9812
|
-
|
|
9813
|
-
active: {
|
|
9814
|
-
true: {
|
|
9815
|
-
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9816
|
-
};
|
|
9811
|
+
open: {
|
|
9812
|
+
true: {};
|
|
9817
9813
|
};
|
|
9818
9814
|
}>;
|
|
9815
|
+
sideNavigationItem: string;
|
|
9819
9816
|
name: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9820
9817
|
active: {
|
|
9821
9818
|
true: {
|
|
@@ -9835,6 +9832,15 @@ declare const sideNavigationStyles: {
|
|
|
9835
9832
|
};
|
|
9836
9833
|
};
|
|
9837
9834
|
}>;
|
|
9835
|
+
content: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9836
|
+
open: {
|
|
9837
|
+
true: {
|
|
9838
|
+
overflow: "visible";
|
|
9839
|
+
maxHeight: "100vh";
|
|
9840
|
+
marginTop: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9841
|
+
};
|
|
9842
|
+
};
|
|
9843
|
+
}>;
|
|
9838
9844
|
};
|
|
9839
9845
|
export type SideNavigationVariants = RecipeVariants<typeof sideNavigationStyles.sideNavigation>;
|
|
9840
9846
|
export declare const sideNavigation: {
|
|
@@ -9865,14 +9871,11 @@ export declare const sideNavigation: {
|
|
|
9865
9871
|
};
|
|
9866
9872
|
};
|
|
9867
9873
|
};
|
|
9868
|
-
|
|
9869
|
-
|
|
9870
|
-
active: {
|
|
9871
|
-
true: {
|
|
9872
|
-
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9873
|
-
};
|
|
9874
|
+
open: {
|
|
9875
|
+
true: {};
|
|
9874
9876
|
};
|
|
9875
9877
|
}>;
|
|
9878
|
+
sideNavigationItem: string;
|
|
9876
9879
|
name: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9877
9880
|
active: {
|
|
9878
9881
|
true: {
|
|
@@ -9892,6 +9895,15 @@ export declare const sideNavigation: {
|
|
|
9892
9895
|
};
|
|
9893
9896
|
};
|
|
9894
9897
|
}>;
|
|
9898
|
+
content: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9899
|
+
open: {
|
|
9900
|
+
true: {
|
|
9901
|
+
overflow: "visible";
|
|
9902
|
+
maxHeight: "100vh";
|
|
9903
|
+
marginTop: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9904
|
+
};
|
|
9905
|
+
};
|
|
9906
|
+
}>;
|
|
9895
9907
|
};
|
|
9896
9908
|
};
|
|
9897
9909
|
|