@nimbus-ds/components 5.6.0-rc.1 โ 5.7.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 +15 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +1 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,21 @@
|
|
|
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
|
-
##
|
|
5
|
+
## 2025-03-03 `5.5.7`
|
|
6
|
+
|
|
7
|
+
### ๐ New features
|
|
8
|
+
|
|
9
|
+
- The `renderItem` property is added to the `Pagination` component, to be able to have the link functionality in the buttons. ([#269](https://github.com/TiendaNube/nimbus-design-system/pull/269) by [@hrchioest](https://github.com/hrchioest))
|
|
10
|
+
|
|
11
|
+
## 2025-02-27 `5.5.6`
|
|
12
|
+
|
|
13
|
+
#### ๐ Bug fixes
|
|
14
|
+
|
|
15
|
+
- Fixed `Tooltip` overflow when screen size is small enough. ([#268](https://github.com/TiendaNube/nimbus-design-system/pull/268) by [@joacotornello](https://github.com/joacotornello))
|
|
16
|
+
|
|
17
|
+
#### ๐ New features
|
|
18
|
+
|
|
19
|
+
- `Tooltip`: Adds support for maxWidth prop. ([#268](https://github.com/TiendaNube/nimbus-design-system/pull/268) by [@joacotornello](https://github.com/joacotornello))
|
|
6
20
|
|
|
7
21
|
## 2024-12-18 `5.5.5`
|
|
8
22
|
|
package/dist/index.d.ts
CHANGED
|
@@ -1587,6 +1587,12 @@ declare const link: {
|
|
|
1587
1587
|
appearance: Record<"primary" | "danger" | "neutral" | "neutral-background", string>;
|
|
1588
1588
|
};
|
|
1589
1589
|
};
|
|
1590
|
+
export interface TooltipSprinkle {
|
|
1591
|
+
/**
|
|
1592
|
+
* The maxWidth property specifies the maximum width of a popover's content area.
|
|
1593
|
+
*/
|
|
1594
|
+
maxWidth?: string | Conditions<string>;
|
|
1595
|
+
}
|
|
1590
1596
|
declare const thumbnail: {
|
|
1591
1597
|
sprinkle: ((props: {
|
|
1592
1598
|
aspectRatio?: AspectRatio | undefined;
|
|
@@ -2904,7 +2910,7 @@ export interface ToggleProperties {
|
|
|
2904
2910
|
}
|
|
2905
2911
|
export type ToggleProps = ToggleProperties & InputHTMLAttributes<HTMLInputElement>;
|
|
2906
2912
|
export declare const Toggle: React.FC<ToggleProps> & ToggleComponents;
|
|
2907
|
-
export interface TooltipProperties {
|
|
2913
|
+
export interface TooltipProperties extends TooltipSprinkle {
|
|
2908
2914
|
/**
|
|
2909
2915
|
* An HTML element, or a function that returns one. It's used to set the position of the tooltip.
|
|
2910
2916
|
* @TJS-type React.ReactNode
|