@nimbus-ds/components 5.44.0 → 5.45.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
@@ -3,6 +3,12 @@
3
3
  Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories
4
4
  every day, with simplicity, accessibility, consistency and performance.
5
5
 
6
+ ## 2026-01-08 `5.45.0`
7
+
8
+ #### 🎉 New features
9
+
10
+ - `Modal`: Added `tag` property to `Modal.Header` component to display a tag next to the title. ([#401](https://github.com/TiendaNube/nimbus-design-system/pull/401) by [@joacotornello](https://github.com/joacotornello))
11
+
6
12
  ## 2025-12-23 `5.44.0`
7
13
 
8
14
  #### 🎉 New features
package/dist/CHANGELOG.md CHANGED
@@ -3,6 +3,12 @@
3
3
  Nimbus is an open-source Design System created by Tiendanube / Nuvemshop's team to empower and enhance more stories
4
4
  every day, with simplicity, accessibility, consistency and performance.
5
5
 
6
+ ## 2026-01-08 `5.45.0`
7
+
8
+ #### 🎉 New features
9
+
10
+ - `Modal`: Added `tag` property to `Modal.Header` component to display a tag next to the title. ([#401](https://github.com/TiendaNube/nimbus-design-system/pull/401) by [@joacotornello](https://github.com/joacotornello))
11
+
6
12
  ## 2025-12-23 `5.44.0`
7
13
 
8
14
  #### 🎉 New features
@@ -52,6 +52,7 @@ declare const modal: {
52
52
  none: string;
53
53
  };
54
54
  };
55
+ content: string;
55
56
  };
56
57
  body: {
57
58
  sprinkle: ((props: {
@@ -169,6 +170,11 @@ export interface ModalHeaderProperties {
169
170
  * The title to display in the modal header.
170
171
  */
171
172
  title?: string;
173
+ /**
174
+ * The tag to display next to the title.
175
+ * @TJS-type React.ReactNode
176
+ */
177
+ tag?: ReactNode;
172
178
  /**
173
179
  * The padding properties are used to generate space around an modal's header content area.
174
180
  * @default none