@nimbus-ds/components 5.21.3 → 5.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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/Textarea/index.d.ts +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
|
|
4
4
|
|
|
5
|
+
## 2025-09-15 `5.22.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added `ai-generative` appearance to `Textarea` component. ([#351](https://github.com/TiendaNube/nimbus-design-system/pull/351) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-15 `5.21.3`
|
|
6
12
|
|
|
7
13
|
#### 🐛 Bug fixes
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
|
|
4
4
|
|
|
5
|
+
## 2025-09-15 `5.22.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added `ai-generative` appearance to `Textarea` component. ([#351](https://github.com/TiendaNube/nimbus-design-system/pull/351) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-15 `5.21.3`
|
|
6
12
|
|
|
7
13
|
#### 🐛 Bug fixes
|
package/dist/Textarea/index.d.ts
CHANGED
|
@@ -33,7 +33,7 @@ export interface TextareaProperties {
|
|
|
33
33
|
* Change the visual style of the textarea.
|
|
34
34
|
* @default neutral
|
|
35
35
|
*/
|
|
36
|
-
appearance?: "neutral" | "success" | "warning" | "danger";
|
|
36
|
+
appearance?: "neutral" | "success" | "warning" | "danger" | "ai-generative";
|
|
37
37
|
/**
|
|
38
38
|
* Number of lines to be rendered for the user to input text
|
|
39
39
|
* @default 2
|