ui-mathilde-web 0.0.10 → 0.0.12

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.
@@ -62,6 +62,12 @@ declare interface Column {
62
62
  cell?: (row: Record<string, unknown>) => React_2.ReactNode;
63
63
  }
64
64
 
65
+ export declare const Dropzone: React.FC<DropzoneProps>;
66
+
67
+ declare interface DropzoneProps {
68
+ onChange?: () => void;
69
+ }
70
+
65
71
  export declare const ImageFormat: ({ src, alt, width, height, classIm, }: {
66
72
  src: string;
67
73
  alt: string;
@@ -87,6 +93,12 @@ declare interface InputFormProps extends default_2.InputHTMLAttributes<HTMLInput
87
93
 
88
94
  export declare const LayoutOutside: () => JSX_2.Element;
89
95
 
96
+ export declare const ListFile: default_2.FC<ListFileProps>;
97
+
98
+ declare interface ListFileProps {
99
+ files: File[];
100
+ }
101
+
90
102
  declare interface MenuItem {
91
103
  id: string;
92
104
  title: string;