pillardash-ui-react 0.1.99 → 0.1.101
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/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -116,7 +116,7 @@ interface FileViewProps {
|
|
|
116
116
|
}
|
|
117
117
|
declare const FileView: React$1.FC<FileViewProps>;
|
|
118
118
|
|
|
119
|
-
interface FileUploadProps {
|
|
119
|
+
interface FileUploadProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, "onChange"> {
|
|
120
120
|
onFileChange: (files: File[] | null) => void;
|
|
121
121
|
existingFiles?: FileItem[];
|
|
122
122
|
direction?: "row" | "col";
|