@nimbus-ds/components 5.2.1 → 5.3.0-rc.1
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 +4 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +3 -1
- package/dist/index.js.LICENSE.txt +1185 -0
- package/dist/index.js.map +1 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
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
|
+
## 2023-10-30 `5.3.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
5
9
|
## 2023-10-13 `5.2.1`
|
|
6
10
|
|
|
7
11
|
#### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -1452,6 +1452,7 @@ declare const propertiesPopover: {
|
|
|
1452
1452
|
"800": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
1453
1453
|
"900": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
1454
1454
|
};
|
|
1455
|
+
overflow: Overflow[];
|
|
1455
1456
|
};
|
|
1456
1457
|
export type PopoverColorProperties = keyof typeof propertiesPopover.color;
|
|
1457
1458
|
export type PopoverBackgroundColorProperties = keyof typeof propertiesPopover.backgroundColor;
|
|
@@ -1491,6 +1492,10 @@ export interface PopoverSprinkle {
|
|
|
1491
1492
|
* @default base
|
|
1492
1493
|
*/
|
|
1493
1494
|
padding?: PopoverPaddingProperties | Conditions<PopoverPaddingProperties>;
|
|
1495
|
+
/**
|
|
1496
|
+
* The overflow shorthand property sets the desired behavior for an popover's content overflow.
|
|
1497
|
+
*/
|
|
1498
|
+
overflow?: Overflow | Conditions<Overflow>;
|
|
1494
1499
|
}
|
|
1495
1500
|
declare const spinner: {
|
|
1496
1501
|
sprinkle: ((props: {
|