@nimbus-ds/components 5.26.0 → 5.28.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 +12 -0
- package/dist/CHANGELOG.md +12 -0
- package/dist/Select/index.d.ts +7 -1
- package/dist/Select/index.js +1 -1
- package/dist/Textarea/index.d.ts +22 -1
- package/dist/Textarea/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +29 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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-25 `5.28.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added `ai-generative` appearance and `aiGenerated` property to `Select` component to match Nimbus AI gradient style. ([#361](https://github.com/TiendaNube/nimbus-design-system/pull/361) by [@contributor](https://github.com/contributor))
|
|
10
|
+
|
|
11
|
+
## 2025-09-23 `5.27.0`
|
|
12
|
+
|
|
13
|
+
#### 🎉 New features
|
|
14
|
+
|
|
15
|
+
- Added `autoGrow` property to `Textarea` component, which allows the textarea to grow with content up to the new `maxLines` limit (if provided) and then scroll. Also added `minLines` property to set the minimum height of the textarea to the given number of lines. ([#357](https://github.com/TiendaNube/nimbus-design-system/pull/357) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
|
|
5
17
|
## 2025-09-23 `5.26.0`
|
|
6
18
|
|
|
7
19
|
#### 🎉 New features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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-25 `5.28.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Added `ai-generative` appearance and `aiGenerated` property to `Select` component to match Nimbus AI gradient style. ([#361](https://github.com/TiendaNube/nimbus-design-system/pull/361) by [@contributor](https://github.com/contributor))
|
|
10
|
+
|
|
11
|
+
## 2025-09-23 `5.27.0`
|
|
12
|
+
|
|
13
|
+
#### 🎉 New features
|
|
14
|
+
|
|
15
|
+
- Added `autoGrow` property to `Textarea` component, which allows the textarea to grow with content up to the new `maxLines` limit (if provided) and then scroll. Also added `minLines` property to set the minimum height of the textarea to the given number of lines. ([#357](https://github.com/TiendaNube/nimbus-design-system/pull/357) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
|
|
5
17
|
## 2025-09-23 `5.26.0`
|
|
6
18
|
|
|
7
19
|
#### 🎉 New features
|
package/dist/Select/index.d.ts
CHANGED
|
@@ -73,7 +73,13 @@ export interface SelectProperties {
|
|
|
73
73
|
* Change the visual style of the select.
|
|
74
74
|
* @default neutral
|
|
75
75
|
*/
|
|
76
|
-
appearance?: "success" | "warning" | "danger" | "neutral";
|
|
76
|
+
appearance?: "success" | "warning" | "danger" | "neutral" | "ai-generative";
|
|
77
|
+
/**
|
|
78
|
+
* Shows ai-generative appearance with active ai focus shadow.
|
|
79
|
+
* When true, this styling takes precedence over `appearance`.
|
|
80
|
+
* @default false
|
|
81
|
+
*/
|
|
82
|
+
aiGenerated?: boolean;
|
|
77
83
|
}
|
|
78
84
|
export declare const Select: React.ForwardRefExoticComponent<SelectProperties & React.SelectHTMLAttributes<HTMLSelectElement> & React.InputHTMLAttributes<HTMLSelectElement> & React.RefAttributes<HTMLSelectElement>> & SelectComponents;
|
|
79
85
|
export type SelectProps = ComponentPropsWithRef<typeof Select>;
|