@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.
@@ -29,4 +29,3 @@ export * from './callout';
29
29
  export * from './panel';
30
30
  export * from './rovingTabindex';
31
31
  export * from './toolbar';
32
- export * from './error-page-template';
@@ -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';
@@ -1 +1,2 @@
1
+ export * from './MrlErrorPage';
1
2
  export * from './MrlBrandColors';
@@ -2,3 +2,4 @@ export * from './MrlMain';
2
2
  export * from './MrlPage';
3
3
  export * from './MrlTopbar';
4
4
  export * from './MrlSidebar';
5
+ export * from './error-page';
@@ -80,7 +80,7 @@ export declare const colorPictoStoryData: {
80
80
  export declare const animateStoryData: {
81
81
  args: {
82
82
  delay: number;
83
- state: "stop" | "play";
83
+ state: "play" | "stop";
84
84
  };
85
85
  argTypes: {
86
86
  delay: {