@mindly/ui-components 3.29.0 → 3.29.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.
@@ -1,7 +1,3 @@
1
1
  import React from 'react';
2
- declare type ImageInputProps = {
3
- ref?: React.Ref<HTMLInputElement> | null;
4
- dimension?: number;
5
- } & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
6
- declare const ImageInput: React.FC<ImageInputProps>;
2
+ declare const ImageInput: React.FC;
7
3
  export default ImageInput;
@@ -1,7 +1,3 @@
1
1
  import React from 'react';
2
- declare type PasswordInputProps = {
3
- ref?: React.Ref<HTMLInputElement> | null;
4
- error?: string | null;
5
- } & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
6
- declare const PasswordInput: React.FC<PasswordInputProps>;
2
+ declare const PasswordInput: React.FC;
7
3
  export default PasswordInput;
@@ -1,6 +1,3 @@
1
1
  import React from 'react';
2
- declare type TextInputProps = {
3
- ref?: React.Ref<HTMLInputElement> | null;
4
- } & Omit<React.InputHTMLAttributes<HTMLInputElement>, 'type'>;
5
- declare const TextInput: React.FC<TextInputProps>;
2
+ declare const TextInput: React.FC;
6
3
  export default TextInput;