@ynput/ayon-react-components 0.5.15 → 0.5.17

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.
@@ -1,2 +1,5 @@
1
1
  import { InputHTMLAttributes } from 'react';
2
- export declare const InputPassword: import("react").ForwardRefExoticComponent<InputHTMLAttributes<HTMLInputElement> & import("react").RefAttributes<HTMLInputElement>>;
2
+ export interface PasswordInputProps extends InputHTMLAttributes<HTMLInputElement> {
3
+ canRevealPassword?: boolean;
4
+ }
5
+ export declare const InputPassword: import("react").ForwardRefExoticComponent<PasswordInputProps & import("react").RefAttributes<HTMLInputElement>>;
@@ -1,2 +1,4 @@
1
- declare const StyledInput: import("styled-components").StyledComponent<"input", any, {}, never>;
2
- export default StyledInput;
1
+ export declare const StyledInput: import("styled-components").StyledComponent<"input", any, {
2
+ $isHidden?: boolean | undefined;
3
+ }, never>;
4
+ export declare const StyledToggleInput: import("styled-components").StyledComponent<"div", any, {}, never>;