@nimbus-ds/components 5.3.1-rc.4 โ†’ 5.3.2-rc.2

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,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
@@ -2491,9 +2491,9 @@ export interface ListProperties {
2491
2491
  }
2492
2492
  export type ListProps = ListProperties & HTMLAttributes<HTMLUListElement | HTMLOListElement>;
2493
2493
  export declare const List: React.FC<ListProps> & ListComponents;
2494
- export type MultiSelectSkeletonSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2495
- export type MultiSelectSkeletonSkeletonProps = MultiSelectSkeletonSkeletonProperties & HTMLAttributes<HTMLDivElement>;
2496
- declare const MultiSelectSkeleton: React.FC<MultiSelectSkeletonSkeletonProps>;
2494
+ export type MultiSelectSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
2495
+ export type MultiSelectSkeletonProps = MultiSelectSkeletonProperties & HTMLAttributes<HTMLDivElement>;
2496
+ declare const MultiSelectSkeleton: React.FC<MultiSelectSkeletonProps>;
2497
2497
  export interface MultiSelectComponents {
2498
2498
  Skeleton: typeof MultiSelectSkeleton;
2499
2499
  }
@@ -2536,7 +2536,7 @@ export interface MultiSelectProperties {
2536
2536
  /**
2537
2537
  * ZIndex of the MultiSelect
2538
2538
  */
2539
- zIndex: keyof typeof multiSelect.properties.zIndex;
2539
+ zIndex?: keyof typeof multiSelect.properties.zIndex;
2540
2540
  }
2541
2541
  export type MultiSelectBaseProps = MultiSelectProperties & Omit<InputHTMLAttributes<HTMLInputElement>, "children" | "value">;
2542
2542
  export declare const MultiSelect: React.FC<MultiSelectBaseProps> & MultiSelectComponents;