ui-mathilde-web 0.6.1 → 0.6.3

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.
@@ -257,7 +257,11 @@ declare interface InputFormProps extends default_2.InputHTMLAttributes<HTMLInput
257
257
  maxLength?: number;
258
258
  }
259
259
 
260
- export declare const LayoutOutside: () => JSX_2.Element;
260
+ export declare const LayoutOutside: ({ content }: LayoutOutsideProps) => JSX_2.Element;
261
+
262
+ declare interface LayoutOutsideProps {
263
+ content: React.ReactNode;
264
+ }
261
265
 
262
266
  export declare const ListFile: default_2.FC<ListFileProps>;
263
267