@rarui/typings 2.4.0 → 2.5.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 +6 -0
- package/dist/index.d.ts +11 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This package is intended for internal use in creating components with polymorphic typing.
|
|
4
4
|
|
|
5
|
+
## 2025-11-25 `2.25.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- **Banner Tonal Property**: Added support for `tonal` property in BannerProps type, enabling subdued color variants for all appearance types. Property is automatically inherited from BannerVariants in styles package. ([#149](https://git.rarolabs.com.br/frontend/rarui/-/merge_requests/149) by [@junior](https://git.rarolabs.com.br/junior))
|
|
10
|
+
|
|
5
11
|
## 2025-10-16 `2.24.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -16644,12 +16644,12 @@ declare const statusStyles: {
|
|
|
16644
16644
|
dot: RuntimeFn<{
|
|
16645
16645
|
size: {
|
|
16646
16646
|
normal: {
|
|
16647
|
-
|
|
16648
|
-
|
|
16647
|
+
minHeight: ".5rem";
|
|
16648
|
+
minWidth: ".5rem";
|
|
16649
16649
|
};
|
|
16650
16650
|
small: {
|
|
16651
|
-
|
|
16652
|
-
|
|
16651
|
+
minHeight: ".25rem";
|
|
16652
|
+
minWidth: ".25rem";
|
|
16653
16653
|
};
|
|
16654
16654
|
};
|
|
16655
16655
|
}>;
|
|
@@ -16702,6 +16702,13 @@ declare const bannerStyles: {
|
|
|
16702
16702
|
borderRadius: `var(--${string})` | `var(--${string}, ${string})`;
|
|
16703
16703
|
};
|
|
16704
16704
|
};
|
|
16705
|
+
/**
|
|
16706
|
+
* Enables subdued color variants for the banner. When true, uses softer, less vibrant versions of the appearance colors for a more subtle presentation.
|
|
16707
|
+
* @default false
|
|
16708
|
+
*/
|
|
16709
|
+
tonal: {
|
|
16710
|
+
true: {};
|
|
16711
|
+
};
|
|
16705
16712
|
}>;
|
|
16706
16713
|
};
|
|
16707
16714
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rarui/typings",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"url": "https://git.rarolabs.com.br/frontend/rarui/issues"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"@rarui/styles": "^3.
|
|
27
|
+
"@rarui/styles": "^3.3.0",
|
|
28
28
|
"@rarui/tools": "^1.0.0"
|
|
29
29
|
}
|
|
30
30
|
}
|