@nimbus-ds/components 5.3.1 โ 5.3.2-rc.3
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 -0
- package/dist/index.d.ts +9 -5
- package/dist/index.js +1 -3
- package/package.json +4 -3
- package/dist/index.js.LICENSE.txt +0 -1211
- package/dist/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +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
|
+
## 2023-12-22 `5.3.2`
|
|
6
|
+
|
|
7
|
+
#### ๐ New features
|
|
8
|
+
|
|
9
|
+
- Update `Checkbox`, `Chip`, `IconButton`, `Radio`, `Toggle` and `Alert` packages with new color tokens from `@nimbus-ds/tokens` package. ([#213](https://github.com/TiendaNube/nimbus-design-system/pull/213) by [@juanchigallego](https://github.com/juanchigallego))
|
|
10
|
+
- Changed default color to `neutral-textHigh` and default weight to `bold` on `Title` component. ([#213](https://github.com/TiendaNube/nimbus-design-system/pull/213) by [@juanchigallego](https://github.com/juanchigallego))
|
|
11
|
+
- Changed default title size to `h4` on `CardHeader` and `ModalHeader` components. ([#213](https://github.com/TiendaNube/nimbus-design-system/pull/213) by [@juanchigallego](https://github.com/juanchigallego))
|
|
12
|
+
- Changed default title size to `h2` on `SidebarHeader` component. ([#213](https://github.com/TiendaNube/nimbus-design-system/pull/213) by [@juanchigallego](https://github.com/juanchigallego))
|
|
13
|
+
|
|
14
|
+
## 2023-12-15 `5.3.1`
|
|
15
|
+
|
|
16
|
+
#### ๐ Bug fixes
|
|
17
|
+
|
|
18
|
+
- Fixed bug where value was not being updated.([#203](https://github.com/TiendaNube/nimbus-design-system/pull/212) by [@vrlopess](https://github.com/vrlopess))
|
|
19
|
+
|
|
5
20
|
## 2023-10-30 `5.3.0`
|
|
6
21
|
|
|
7
22
|
#### ๐ New features
|
package/dist/index.d.ts
CHANGED
|
@@ -223,6 +223,7 @@ declare const propertiesBox: {
|
|
|
223
223
|
"danger-surfaceHighlight": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
224
224
|
"neutral-interactive": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
225
225
|
"neutral-surface": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
226
|
+
"neutral-surfaceDisabled": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
226
227
|
"neutral-surfaceHighlight": `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
227
228
|
transparent: string;
|
|
228
229
|
};
|
|
@@ -396,7 +397,10 @@ declare const propertiesBox: {
|
|
|
396
397
|
h4: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
397
398
|
h5: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
398
399
|
h6: `var(--${string})` | `var(--${string}, ${string})` | `var(--${string}, ${number})`;
|
|
399
|
-
};
|
|
400
|
+
}; /**
|
|
401
|
+
* The boxSizing property sets how the total width and height of an box is calculated.
|
|
402
|
+
* @default border-box
|
|
403
|
+
*/
|
|
400
404
|
};
|
|
401
405
|
export type BoxBorderColorProperties = keyof typeof propertiesBox.borderColor;
|
|
402
406
|
export type BoxBorderRadiusProperties = keyof typeof propertiesBox.borderRadius;
|
|
@@ -2491,9 +2495,9 @@ export interface ListProperties {
|
|
|
2491
2495
|
}
|
|
2492
2496
|
export type ListProps = ListProperties & HTMLAttributes<HTMLUListElement | HTMLOListElement>;
|
|
2493
2497
|
export declare const List: React.FC<ListProps> & ListComponents;
|
|
2494
|
-
export type
|
|
2495
|
-
export type
|
|
2496
|
-
declare const MultiSelectSkeleton: React.FC<
|
|
2498
|
+
export type MultiSelectSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
|
|
2499
|
+
export type MultiSelectSkeletonProps = MultiSelectSkeletonProperties & HTMLAttributes<HTMLDivElement>;
|
|
2500
|
+
declare const MultiSelectSkeleton: React.FC<MultiSelectSkeletonProps>;
|
|
2497
2501
|
export interface MultiSelectComponents {
|
|
2498
2502
|
Skeleton: typeof MultiSelectSkeleton;
|
|
2499
2503
|
}
|
|
@@ -2536,7 +2540,7 @@ export interface MultiSelectProperties {
|
|
|
2536
2540
|
/**
|
|
2537
2541
|
* ZIndex of the MultiSelect
|
|
2538
2542
|
*/
|
|
2539
|
-
zIndex
|
|
2543
|
+
zIndex?: keyof typeof multiSelect.properties.zIndex;
|
|
2540
2544
|
}
|
|
2541
2545
|
export type MultiSelectBaseProps = MultiSelectProperties & Omit<InputHTMLAttributes<HTMLInputElement>, "children" | "value">;
|
|
2542
2546
|
export declare const MultiSelect: React.FC<MultiSelectBaseProps> & MultiSelectComponents;
|