ui-mathilde-web 0.6.0 → 0.6.2
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/style.css +1 -1
- package/dist/ui-mathilde-web.d.ts +5 -1
- package/dist/ui-mathilde-web.js +2169 -2167
- package/dist/ui-mathilde-web.umd.cjs +39 -39
- package/package.json +1 -1
|
@@ -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
|
|