1mpacto-react-ui 0.0.31 → 0.0.32
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,4 +1,4 @@
|
|
1
1
|
import { IInputFloatingInner } from '../../interfaces/components/Input/index';
|
2
2
|
|
3
|
-
declare const InputFloatingInner: import('react').ForwardRefExoticComponent<IInputFloatingInner & import('react').RefAttributes<HTMLInputElement>>;
|
3
|
+
declare const InputFloatingInner: import('react').ForwardRefExoticComponent<Omit<IInputFloatingInner, "ref"> & import('react').RefAttributes<HTMLInputElement>>;
|
4
4
|
export default InputFloatingInner;
|
@@ -1,4 +1,4 @@
|
|
1
1
|
import { IInputReguler } from '../../interfaces/components/Input/index';
|
2
2
|
|
3
|
-
declare const InputReguler: import('react').ForwardRefExoticComponent<IInputReguler & import('react').RefAttributes<HTMLInputElement>>;
|
3
|
+
declare const InputReguler: import('react').ForwardRefExoticComponent<Omit<IInputReguler, "ref"> & import('react').RefAttributes<HTMLInputElement>>;
|
4
4
|
export default InputReguler;
|
@@ -10,6 +10,7 @@ export interface IInputFloatingInner extends InputHTMLAttributes<HTMLInputElemen
|
|
10
10
|
error?: string | undefined;
|
11
11
|
sizeInput?: 'reguler';
|
12
12
|
classNameLabelError?: string | undefined;
|
13
|
+
[key: string]: unknown;
|
13
14
|
}
|
14
15
|
export interface IInputReguler extends InputHTMLAttributes<HTMLInputElement> {
|
15
16
|
classNameContainer?: string | undefined;
|
@@ -22,4 +23,5 @@ export interface IInputReguler extends InputHTMLAttributes<HTMLInputElement> {
|
|
22
23
|
sizeInput?: 'large' | 'medium' | 'small';
|
23
24
|
classNameLabel?: string | undefined;
|
24
25
|
classNameLabelError?: string | undefined;
|
26
|
+
[key: string]: unknown;
|
25
27
|
}
|