@muraldevkit/ui-toolkit 4.5.4 → 4.7.0
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/components/layout/error-page/MrlErrorPage/MrlErrorPage.d.ts +4 -0
- package/dist/components/svg/config.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/styles/MrlErrorPage/module.scss +3 -0
- package/dist/styles/MrlModal/module.scss +2 -2
- package/dist/styles.css +2 -2
- package/package.json +1 -1
|
@@ -12,6 +12,10 @@ export interface MrlErrorPageProps extends React.ComponentProps<'div'> {
|
|
|
12
12
|
* Title of the error page
|
|
13
13
|
*/
|
|
14
14
|
title: string;
|
|
15
|
+
/**
|
|
16
|
+
* Add custom components to the error page header
|
|
17
|
+
*/
|
|
18
|
+
headerUtils?: React.ReactNode;
|
|
15
19
|
}
|
|
16
20
|
/**
|
|
17
21
|
* MrlErrorPage component
|