@rarui/typings 2.0.1 → 2.0.2-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.ts +2 -7
- package/package.json +4 -3
package/dist/index.ts
CHANGED
|
@@ -15619,12 +15619,12 @@ declare const paginationStyles: {
|
|
|
15619
15619
|
backgroundColor: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
15620
15620
|
};
|
|
15621
15621
|
small: {
|
|
15622
|
-
|
|
15622
|
+
minWidth: "2.5rem";
|
|
15623
15623
|
height: "2.5rem";
|
|
15624
15624
|
fontSize: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
15625
15625
|
};
|
|
15626
15626
|
large: {
|
|
15627
|
-
|
|
15627
|
+
minWidth: "2.75rem";
|
|
15628
15628
|
height: "2.75rem";
|
|
15629
15629
|
fontSize: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
15630
15630
|
};
|
|
@@ -16047,11 +16047,6 @@ interface ToastTyping {
|
|
|
16047
16047
|
*
|
|
16048
16048
|
*/
|
|
16049
16049
|
onClose?: () => void;
|
|
16050
|
-
/**
|
|
16051
|
-
* Specifies the width of the toast.
|
|
16052
|
-
* @default "420px"
|
|
16053
|
-
*/
|
|
16054
|
-
width?: string;
|
|
16055
16050
|
}
|
|
16056
16051
|
export type ToastProps = ToastTyping & ToastVariants & ToastSprinkle;
|
|
16057
16052
|
export interface ToastProviderProps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rarui/typings",
|
|
3
|
-
"version": "2.0.1",
|
|
3
|
+
"version": "2.0.2-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"url": "https://git.rarolabs.com.br/frontend/rarui/issues"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@rarui/webpack": "^1.
|
|
27
|
-
}
|
|
26
|
+
"@rarui/webpack": "^1.4.0"
|
|
27
|
+
},
|
|
28
|
+
"stableVersion": "2.0.1"
|
|
28
29
|
}
|