@nimbus-ds/textarea 2.4.0 → 2.5.0-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/CHANGELOG.md +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
The Textarea component allows the user to enter or edit information in long text format.
|
|
4
4
|
|
|
5
|
+
## 2025-09-17 `2.4.1`
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug fixes
|
|
8
|
+
|
|
9
|
+
- Fixed `ai-generative` appearance to match Nimbus AI gradient style. ([#351](https://github.com/TiendaNube/nimbus-design-system/pull/351) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-15 `2.4.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
The Textarea component allows the user to enter or edit information in long text format.
|
|
4
4
|
|
|
5
|
+
## 2025-09-17 `2.4.1`
|
|
6
|
+
|
|
7
|
+
#### 🐛 Bug fixes
|
|
8
|
+
|
|
9
|
+
- Fixed `ai-generative` appearance to match Nimbus AI gradient style. ([#351](https://github.com/TiendaNube/nimbus-design-system/pull/351) by [@joacotornello](https://github.com/joacotornello))
|
|
10
|
+
|
|
5
11
|
## 2025-09-15 `2.4.0`
|
|
6
12
|
|
|
7
13
|
#### 🎉 New features
|
package/dist/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" | "ai-generative";
|
|
36
|
+
appearance?: "neutral" | "success" | "warning" | "danger" | "ai-generative" | "transparent";
|
|
37
37
|
/**
|
|
38
38
|
* Number of lines to be rendered for the user to input text
|
|
39
39
|
* @default 2
|