@muraldevkit/ui-toolkit 4.4.2 → 4.5.1
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/index.d.ts +0 -1
- package/dist/components/layout/error-page/MrlBrandColors/MrlBrandColors.d.ts +13 -0
- package/dist/components/layout/error-page/MrlErrorPage/MrlErrorPage.d.ts +20 -0
- package/dist/components/layout/error-page/MrlErrorPage/index.d.ts +1 -0
- package/dist/components/{error-page-template → layout/error-page}/index.d.ts +1 -0
- package/dist/components/layout/index.d.ts +1 -0
- package/dist/components/svg/config.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/styles/MrlErrorPage/module.scss +40 -0
- package/dist/styles/form/global.scss +1 -3
- package/dist/styles/modal/variables.scss +1 -1
- package/dist/styles.css +10 -9
- package/package.json +1 -1
- package/dist/components/error-page-template/MrlBrandColors/MrlBrandColors.d.ts +0 -6
- /package/dist/components/{error-page-template → layout/error-page}/MrlBrandColors/index.d.ts +0 -0
- /package/dist/src/components/{error-page-template → layout/error-page}/MrlBrandColors/MrlBrandColors.functions.scss +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export interface MrlBrandColorsProps {
|
|
2
|
+
/**
|
|
3
|
+
* Custom class name to be added to the component
|
|
4
|
+
*/
|
|
5
|
+
className?: string;
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* MrlBrandColors component
|
|
9
|
+
*
|
|
10
|
+
* @param props - MrlBrandColors component props
|
|
11
|
+
* @returns MrlBrandColors component
|
|
12
|
+
*/
|
|
13
|
+
export declare const MrlBrandColors: ({ className }: MrlBrandColorsProps) => JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from 'react';
|
|
2
|
+
export interface MrlErrorPageProps {
|
|
3
|
+
/**
|
|
4
|
+
* Children to be rendered within the main tag of the error page
|
|
5
|
+
*/
|
|
6
|
+
children?: React.ReactNode;
|
|
7
|
+
/**
|
|
8
|
+
* Title of the error page
|
|
9
|
+
*/
|
|
10
|
+
title: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* MrlErrorPage component
|
|
14
|
+
*
|
|
15
|
+
* @param props - MrlErrorPage component props
|
|
16
|
+
* @param props.children - Children to be rendered within the main tag of the error page
|
|
17
|
+
* @param props.title - Title of the error page
|
|
18
|
+
* @returns MrlErrorPage component
|
|
19
|
+
*/
|
|
20
|
+
export declare const MrlErrorPage: (props: MrlErrorPageProps) => JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './MrlErrorPage';
|