@rarui/styles 1.18.0-rc.2 → 1.18.0-rc.3
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 +18 -14
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +3 -4
package/dist/index.d.ts
CHANGED
|
@@ -9809,13 +9809,7 @@ declare const sideNavigationStyles: {
|
|
|
9809
9809
|
};
|
|
9810
9810
|
};
|
|
9811
9811
|
}>;
|
|
9812
|
-
sideNavigationItem:
|
|
9813
|
-
active: {
|
|
9814
|
-
true: {
|
|
9815
|
-
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9816
|
-
};
|
|
9817
|
-
};
|
|
9818
|
-
}>;
|
|
9812
|
+
sideNavigationItem: string;
|
|
9819
9813
|
name: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9820
9814
|
active: {
|
|
9821
9815
|
true: {
|
|
@@ -9835,6 +9829,14 @@ declare const sideNavigationStyles: {
|
|
|
9835
9829
|
};
|
|
9836
9830
|
};
|
|
9837
9831
|
}>;
|
|
9832
|
+
content: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9833
|
+
open: {
|
|
9834
|
+
true: {
|
|
9835
|
+
overflow: "visible";
|
|
9836
|
+
maxHeight: "100vh";
|
|
9837
|
+
};
|
|
9838
|
+
};
|
|
9839
|
+
}>;
|
|
9838
9840
|
};
|
|
9839
9841
|
export type SideNavigationVariants = RecipeVariants<typeof sideNavigationStyles.sideNavigation>;
|
|
9840
9842
|
export declare const sideNavigation: {
|
|
@@ -9866,13 +9868,7 @@ export declare const sideNavigation: {
|
|
|
9866
9868
|
};
|
|
9867
9869
|
};
|
|
9868
9870
|
}>;
|
|
9869
|
-
sideNavigationItem:
|
|
9870
|
-
active: {
|
|
9871
|
-
true: {
|
|
9872
|
-
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9873
|
-
};
|
|
9874
|
-
};
|
|
9875
|
-
}>;
|
|
9871
|
+
sideNavigationItem: string;
|
|
9876
9872
|
name: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9877
9873
|
active: {
|
|
9878
9874
|
true: {
|
|
@@ -9892,6 +9888,14 @@ export declare const sideNavigation: {
|
|
|
9892
9888
|
};
|
|
9893
9889
|
};
|
|
9894
9890
|
}>;
|
|
9891
|
+
content: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9892
|
+
open: {
|
|
9893
|
+
true: {
|
|
9894
|
+
overflow: "visible";
|
|
9895
|
+
maxHeight: "100vh";
|
|
9896
|
+
};
|
|
9897
|
+
};
|
|
9898
|
+
}>;
|
|
9895
9899
|
};
|
|
9896
9900
|
};
|
|
9897
9901
|
|