@nimbus-ds/components 5.49.1 → 5.50.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 +6 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/Toast/index.d.ts +7 -0
- package/dist/Toast/index.js +1 -1
- package/dist/components-props.json +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.js +1 -1
- package/package.json +1 -1
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-02-03 `5.50.0`
|
|
7
|
+
|
|
8
|
+
#### 🎉 New features
|
|
9
|
+
|
|
10
|
+
- `Toast`: Added `offset` prop to `ToastProvider` to control vertical positioning from the bottom. Use `"high"` for mobile apps with bottom navigation bars. ([#416](https://github.com/TiendaNube/nimbus-design-system/pull/416) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
6
12
|
## 2026-01-23 `5.49.1`
|
|
7
13
|
|
|
8
14
|
#### 🐛 Bug fixes
|
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-02-03 `5.50.0`
|
|
7
|
+
|
|
8
|
+
#### 🎉 New features
|
|
9
|
+
|
|
10
|
+
- `Toast`: Added `offset` prop to `ToastProvider` to control vertical positioning from the bottom. Use `"high"` for mobile apps with bottom navigation bars. ([#416](https://github.com/TiendaNube/nimbus-design-system/pull/416) by [@joacotornello](https://github.com/joacotornello))
|
|
11
|
+
|
|
6
12
|
## 2026-01-23 `5.49.1`
|
|
7
13
|
|
|
8
14
|
#### 🐛 Bug fixes
|
package/dist/Toast/index.d.ts
CHANGED
|
@@ -3,11 +3,18 @@
|
|
|
3
3
|
import React from 'react';
|
|
4
4
|
import { HTMLAttributes, ReactNode } from 'react';
|
|
5
5
|
|
|
6
|
+
export type ToastOffset = "default" | "high";
|
|
6
7
|
export interface ToastProviderProperties {
|
|
7
8
|
/**
|
|
8
9
|
* @TJS-type React.ReactNode
|
|
9
10
|
*/
|
|
10
11
|
children: ReactNode;
|
|
12
|
+
/**
|
|
13
|
+
* Controls the vertical offset of the toast container from the bottom.
|
|
14
|
+
* Use "high" for mobile apps with bottom navigation bars.
|
|
15
|
+
* @default "default"
|
|
16
|
+
*/
|
|
17
|
+
offset?: ToastOffset;
|
|
11
18
|
}
|
|
12
19
|
export type ToastProviderProps = ToastProviderProperties;
|
|
13
20
|
export declare const ToastProvider: React.FC<ToastProviderProps>;
|