ui-mathilde-web 0.0.10 → 0.0.11

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