@rarui/styles 1.21.0 → 1.22.0
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 +8 -2
- package/dist/index.css +1 -1
- package/dist/index.d.ts +31 -2
- package/dist/index.js +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -7782,9 +7782,10 @@ declare const styles$2: {
|
|
|
7782
7782
|
ghost: {
|
|
7783
7783
|
backgroundColor: "transparent";
|
|
7784
7784
|
textDecoration: "underline";
|
|
7785
|
-
|
|
7785
|
+
borderColor: "transparent";
|
|
7786
7786
|
borderRadius: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7787
7787
|
":hover": {
|
|
7788
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7788
7789
|
borderRadius: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7789
7790
|
};
|
|
7790
7791
|
":active": {
|
|
@@ -7854,9 +7855,10 @@ export declare const iconButton: {
|
|
|
7854
7855
|
ghost: {
|
|
7855
7856
|
backgroundColor: "transparent";
|
|
7856
7857
|
textDecoration: "underline";
|
|
7857
|
-
|
|
7858
|
+
borderColor: "transparent";
|
|
7858
7859
|
borderRadius: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7859
7860
|
":hover": {
|
|
7861
|
+
borderColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7860
7862
|
borderRadius: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
7861
7863
|
};
|
|
7862
7864
|
":active": {
|
|
@@ -9740,6 +9742,33 @@ export declare const tooltip: {
|
|
|
9740
9742
|
container: string;
|
|
9741
9743
|
};
|
|
9742
9744
|
};
|
|
9745
|
+
declare const breadcrumbStyles: {
|
|
9746
|
+
breadcrumb: string;
|
|
9747
|
+
breadcrumbItem: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9748
|
+
/**
|
|
9749
|
+
* Indicates whether the breadcrumb item is currently active.
|
|
9750
|
+
* An active item is typically styled differently to show that it represents the current page.
|
|
9751
|
+
*/
|
|
9752
|
+
active: {
|
|
9753
|
+
true: {
|
|
9754
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9755
|
+
};
|
|
9756
|
+
};
|
|
9757
|
+
}>;
|
|
9758
|
+
};
|
|
9759
|
+
export type BreadcrumbVariants = RecipeVariants<typeof breadcrumbStyles.breadcrumbItem>;
|
|
9760
|
+
export declare const breadcrumb: {
|
|
9761
|
+
classnames: {
|
|
9762
|
+
breadcrumb: string;
|
|
9763
|
+
breadcrumbItem: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9764
|
+
active: {
|
|
9765
|
+
true: {
|
|
9766
|
+
color: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
9767
|
+
};
|
|
9768
|
+
};
|
|
9769
|
+
}>;
|
|
9770
|
+
};
|
|
9771
|
+
};
|
|
9743
9772
|
declare const dropdownStyles: {
|
|
9744
9773
|
dropdown: import("@vanilla-extract/recipes").RuntimeFn<{
|
|
9745
9774
|
/**
|