@nimbus-ds/components 5.5.2-rc.3 โ 5.5.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 +0 -10
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/package.json +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,16 +2,6 @@
|
|
|
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-03-18 `5.5.2`
|
|
6
|
-
|
|
7
|
-
### ๐ Bug fixes
|
|
8
|
-
|
|
9
|
-
- Added `RemoveScroll` component from `react-remove-scroll` library to prevent scroll resetting on the body of the `Sidebar` component.
|
|
10
|
-
|
|
11
|
-
### ๐ 3rd party library updates
|
|
12
|
-
|
|
13
|
-
- Added `react-remove-scroll@2.5.7` to `Sidebar` component.
|
|
14
|
-
|
|
15
5
|
## 2024-03-01 `5.4.2`
|
|
16
6
|
|
|
17
7
|
### ๐ New features
|
package/dist/index.d.ts
CHANGED
|
@@ -2177,7 +2177,7 @@ export interface ButtonProperties {
|
|
|
2177
2177
|
disabled?: boolean;
|
|
2178
2178
|
}
|
|
2179
2179
|
export type ButtonBaseProps = ButtonProperties & ButtonHTMLAttributes<HTMLButtonElement>;
|
|
2180
|
-
export declare const Button: PolymorphicForwardRefComponent<"
|
|
2180
|
+
export declare const Button: PolymorphicForwardRefComponent<"a" | "button", ButtonBaseProps> & ButtonComponents;
|
|
2181
2181
|
export type ButtonProps = ComponentPropsWithRef<typeof Button>;
|
|
2182
2182
|
export type CheckboxSkeletonProperties = Partial<Pick<SkeletonProps, "width" | "data-testid">>;
|
|
2183
2183
|
export type CheckboxSkeletonProps = CheckboxSkeletonProperties;
|
|
@@ -2445,7 +2445,7 @@ export interface LinkProperties {
|
|
|
2445
2445
|
lineHeight?: keyof typeof link.properties.lineHeight;
|
|
2446
2446
|
}
|
|
2447
2447
|
export type LinkBaseProps = LinkProperties & HTMLAttributes<HTMLElement>;
|
|
2448
|
-
export declare const Link: PolymorphicForwardRefComponent<"
|
|
2448
|
+
export declare const Link: PolymorphicForwardRefComponent<"a" | "button", LinkBaseProps> & LinkComponents;
|
|
2449
2449
|
export type LinkProps = ComponentPropsWithRef<typeof Link>;
|
|
2450
2450
|
export type ListSkeletonItemProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
|
|
2451
2451
|
/**
|