@nimbus-ds/components 4.2.0-rc.1 → 4.2.0-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/dist/index.d.ts +1 -1
- package/package.json +1 -1
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.ForwardRefExoticComponent<
|
|
1697
|
+
export declare const Input: React.ForwardRefExoticComponent<InputProperties & React.InputHTMLAttributes<HTMLInputElement> & React.RefAttributes<HTMLInputElement>> & 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.
|