@nimbus-ds/components 5.5.3 → 5.5.4-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,12 @@
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
+ ## 2024-04-22 `5.5.4`
6
+
7
+ ### 💡 Others
8
+
9
+ - Trigger `onClick` only when close icon is pressed on `Chip` component. ([#110](https://github.com/TiendaNube/nimbus-design-system/pull/240) by [@nachozullo](https://github.com/nachozullo))
10
+
5
11
  ## 2024-03-18 `5.5.3`
6
12
 
7
13
  ### 🐛 Bug fixes
package/dist/index.d.ts CHANGED
@@ -2241,7 +2241,7 @@ export interface ChipProperties {
2241
2241
  */
2242
2242
  removable?: boolean;
2243
2243
  }
2244
- export type ChipProps = ChipProperties & ButtonHTMLAttributes<HTMLButtonElement>;
2244
+ export type ChipProps = ChipProperties & ButtonHTMLAttributes<HTMLButtonElement | HTMLDivElement>;
2245
2245
  export declare const Chip: React.FC<ChipProps> & ChipComponents;
2246
2246
  export type FileUploaderSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & Partial<Pick<FileUploaderProps, "aspectRatio">> & {
2247
2247
  /**