@tracktor/design-system 4.7.2 → 4.7.4
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 +6 -4
- package/dist/main.cjs +5 -5
- package/dist/main.js +132 -130
- package/dist/src/components/Inputs/File/File.d.ts +3 -4
- package/package.json +1 -1
|
@@ -21,9 +21,8 @@ export interface FileUploadProps {
|
|
|
21
21
|
};
|
|
22
22
|
onChange?(e: ChangeEvent<HTMLInputElement>): void;
|
|
23
23
|
}
|
|
24
|
-
export interface
|
|
25
|
-
|
|
26
|
-
reset: () => void;
|
|
24
|
+
export interface HTMLInputElementFile extends HTMLInputElement {
|
|
25
|
+
reset?: () => void;
|
|
27
26
|
}
|
|
28
|
-
declare const File: import('react').ForwardRefExoticComponent<FileUploadProps & import('react').RefAttributes<
|
|
27
|
+
declare const File: import('react').ForwardRefExoticComponent<FileUploadProps & import('react').RefAttributes<HTMLInputElementFile>>;
|
|
29
28
|
export default File;
|