@nimbus-ds/components 5.5.4 → 5.5.5

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,14 @@
2
2
 
3
3
  Nimbus is an open-source Design System created by Tiendanube / Nuvesmhop’s team to empower and enhance more stories every day, with simplicity, accessibility, consistency and performance.
4
4
 
5
+ ## 2024-12-18 `5.5.5`
6
+
7
+ #### 🐛 Bug fixes
8
+
9
+ - We detected that the content of the Tabs, when set to full, was not centered but aligned to the left. ([#261](https://github.com/TiendaNube/nimbus-design-system/pull/261) by [@harrytiendanube](https://github.com/harrytiendanube) )
10
+ - Made `onDismiss` property optional for `Modal` component. If `onDismiss` is not provided, the modal can no longer be closed by clicking outside or pressing the close button
11
+ - Removed the close button (X) from `Modal` component when `onDismiss` is not provided. ([#246](https://github.com/TiendaNube/nimbus-design-system/pull/246) by [@dommirr](https://github.com/dommirr))
12
+
5
13
  ## 2024-04-22 `5.5.4`
6
14
 
7
15
  ### 💡 Others
package/dist/index.d.ts CHANGED
@@ -3232,7 +3232,7 @@ export interface ModalProperties extends ModalSprinkle {
3232
3232
  * Callback fired when the component requests to be closed.
3233
3233
  * @TJS-type (open: boolean) => void;
3234
3234
  */
3235
- onDismiss: (open: boolean) => void;
3235
+ onDismiss?: (open: boolean) => void;
3236
3236
  /**
3237
3237
  * Id to be embedded in the portal element
3238
3238
  */