@nimbus-ds/components 5.27.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 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-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
+
5
11
  ## 2025-09-23 `5.27.0`
6
12
 
7
13
  #### 🎉 New features
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-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
+
5
11
  ## 2025-09-23 `5.27.0`
6
12
 
7
13
  #### 🎉 New features
@@ -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>;