@rarui/styles 1.31.0-rc.7 → 1.31.0-rc.8
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/CHANGELOG.md +6 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +30 -3
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -11266,7 +11266,22 @@ declare const sideNavigationStyles: {
|
|
|
11266
11266
|
};
|
|
11267
11267
|
};
|
|
11268
11268
|
}>;
|
|
11269
|
-
sideNavigationItem:
|
|
11269
|
+
sideNavigationItem: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
11270
|
+
/**
|
|
11271
|
+
* Determines the level of nesting for the item.
|
|
11272
|
+
*/
|
|
11273
|
+
level: {
|
|
11274
|
+
0: {
|
|
11275
|
+
paddingLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11276
|
+
};
|
|
11277
|
+
1: {
|
|
11278
|
+
paddingLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11279
|
+
};
|
|
11280
|
+
2: {
|
|
11281
|
+
paddingLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11282
|
+
};
|
|
11283
|
+
};
|
|
11284
|
+
}>;
|
|
11270
11285
|
name: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
11271
11286
|
active: {
|
|
11272
11287
|
true: {
|
|
@@ -11296,7 +11311,7 @@ declare const sideNavigationStyles: {
|
|
|
11296
11311
|
};
|
|
11297
11312
|
}>;
|
|
11298
11313
|
};
|
|
11299
|
-
export type SideNavigationVariants = RecipeVariants<typeof sideNavigationStyles.sideNavigation
|
|
11314
|
+
export type SideNavigationVariants = NonNullable<RecipeVariants<typeof sideNavigationStyles.sideNavigation> & RecipeVariants<typeof sideNavigationStyles.sideNavigationItem>>;
|
|
11300
11315
|
export declare const sideNavigation: {
|
|
11301
11316
|
classnames: {
|
|
11302
11317
|
sideNavigation: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
@@ -11325,7 +11340,19 @@ export declare const sideNavigation: {
|
|
|
11325
11340
|
};
|
|
11326
11341
|
};
|
|
11327
11342
|
}>;
|
|
11328
|
-
sideNavigationItem:
|
|
11343
|
+
sideNavigationItem: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
11344
|
+
level: {
|
|
11345
|
+
0: {
|
|
11346
|
+
paddingLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11347
|
+
};
|
|
11348
|
+
1: {
|
|
11349
|
+
paddingLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11350
|
+
};
|
|
11351
|
+
2: {
|
|
11352
|
+
paddingLeft: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
11353
|
+
};
|
|
11354
|
+
};
|
|
11355
|
+
}>;
|
|
11329
11356
|
name: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
11330
11357
|
active: {
|
|
11331
11358
|
true: {
|