@nimbus-ds/components 4.1.1-rc.1 → 4.2.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 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
+ ## 2023-04-24 `4.2.0`
6
+
7
+ #### 🎉 New features
8
+
9
+ - Added `ref` property to `Input` component API. ([#151](https://github.com/TiendaNube/nimbus-design-system/pull/151) by [@juniorconquista](https://github.com/juniorconquista)).
10
+
5
11
  ## 2023-04-13 `4.1.1`
6
12
 
7
13
  #### 🎉 New features
package/dist/index.d.ts CHANGED
@@ -1694,7 +1694,7 @@ export interface InputProperties {
1694
1694
  "data-testid"?: string;
1695
1695
  }
1696
1696
  export type InputProps = InputProperties & InputHTMLAttributes<HTMLInputElement>;
1697
- export declare const Input: React.FC<InputProps> & InputComponents;
1697
+ export declare const Input: React.ForwardRefExoticComponent<InputProps> & InputComponents;
1698
1698
  export type LabelSkeletonProperties = Partial<Pick<SkeletonProps, "width">> & Partial<Pick<SkeletonProps, "height">> & {
1699
1699
  /**
1700
1700
  * This is an attribute used to identify a DOM node for testing purposes.