@nimbus-ds/components 5.18.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 +13 -0
- package/dist/CHANGELOG.md +13 -0
- package/dist/Chip/index.d.ts +5 -0
- package/dist/Chip/index.js +1 -1
- package/dist/Icon/index.d.ts +1 -1
- package/dist/Modal/index.d.ts +23 -1
- package/dist/Modal/index.js +1 -1
- package/dist/MultiSelect/index.js +1 -1
- package/dist/Sidebar/index.d.ts +23 -1
- package/dist/Sidebar/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +51 -3
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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
|
+
|
|
11
|
+
## 2025-08-25 `5.19.0`
|
|
12
|
+
|
|
13
|
+
#### 🎉 New features
|
|
14
|
+
|
|
15
|
+
- `Modal` and `Sidebar`: Add optional `root` prop to scope portal and backdrop rendering to a provided element. ([#336](https://github.com/TiendaNube/nimbus-design-system/pull/336) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
- `Modal` and `Sidebar`: Add `ignoreAttributeName` prop to allow customizing the attribute name used to ignore outside clicks. Also added `closeOnOutsidePress`, a function that receives the event and returns a boolean to determine if the event should be ignored. ([#336](https://github.com/TiendaNube/nimbus-design-system/pull/336) by [@joacotornello](https://github.com/joacotornello))
|
|
17
|
+
|
|
5
18
|
## 2025-08-20 `5.18.0`
|
|
6
19
|
|
|
7
20
|
#### 🎉 New features
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,19 @@
|
|
|
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
|
+
|
|
11
|
+
## 2025-08-25 `5.19.0`
|
|
12
|
+
|
|
13
|
+
#### 🎉 New features
|
|
14
|
+
|
|
15
|
+
- `Modal` and `Sidebar`: Add optional `root` prop to scope portal and backdrop rendering to a provided element. ([#336](https://github.com/TiendaNube/nimbus-design-system/pull/336) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
- `Modal` and `Sidebar`: Add `ignoreAttributeName` prop to allow customizing the attribute name used to ignore outside clicks. Also added `closeOnOutsidePress`, a function that receives the event and returns a boolean to determine if the event should be ignored. ([#336](https://github.com/TiendaNube/nimbus-design-system/pull/336) by [@joacotornello](https://github.com/joacotornello))
|
|
17
|
+
|
|
5
18
|
## 2025-08-20 `5.18.0`
|
|
6
19
|
|
|
7
20
|
#### 🎉 New features
|
package/dist/Chip/index.d.ts
CHANGED
|
@@ -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;
|