@nimbus-ds/components 5.19.0 → 5.20.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-04 `5.20.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - `Chip`: Added `aiGenerated` boolean prop to highlight AI-generated content using Nimbus AI gradient border and AI focus ring, aligned with `Input` behavior. ([#339](https://github.com/TiendaNube/nimbus-design-system/pull/339) by [@joacotornello](https://github.com/joacotornello))
10
+
5
11
  ## 2025-08-25 `5.19.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-04 `5.20.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - `Chip`: Added `aiGenerated` boolean prop to highlight AI-generated content using Nimbus AI gradient border and AI focus ring, aligned with `Input` behavior. ([#339](https://github.com/TiendaNube/nimbus-design-system/pull/339) by [@joacotornello](https://github.com/joacotornello))
10
+
5
11
  ## 2025-08-25 `5.19.0`
6
12
 
7
13
  #### 🎉 New features
@@ -47,6 +47,11 @@ export interface ChipProperties {
47
47
  * Informs whether the close icon should be displayed.
48
48
  */
49
49
  removable?: boolean;
50
+ /**
51
+ * Highlights the chip to indicate its value was generated by AI.
52
+ * Applies AI gradient border and an AI outline.
53
+ */
54
+ aiGenerated?: boolean;
50
55
  }
51
56
  export type ChipProps = ChipProperties & ButtonHTMLAttributes<HTMLButtonElement | HTMLDivElement>;
52
57
  export declare const Chip: React.FC<ChipProps> & ChipComponents;