@scbt-ecom/ui 0.142.0 → 0.143.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/lib/shared/style.css +1 -1
- package/dist/lib/shared/ui/modal/Modal.js +1 -1
- package/dist/lib/shared/ui/modal/Modal.js.map +1 -1
- package/dist/lib/widgets/errorPage/ErrorPage.js +1 -1
- package/dist/lib/widgets/errorPage/ErrorPage.js.map +1 -1
- package/dist/lib/widgets/model/helpers.js +2 -2
- package/dist/lib/widgets/model/helpers.js.map +1 -1
- package/dist/stats.html +1 -1
- package/dist/types/lib/widgets/errorPage/ErrorPage.d.ts +1 -0
- package/dist/types/lib/widgets/model/helpers.d.ts +2 -1
- package/package.json +1 -1
|
@@ -10,3 +10,4 @@ export interface ErrorPageProps extends TextContainerProps {
|
|
|
10
10
|
backgroundColor?: BackgroundBannerColors;
|
|
11
11
|
}
|
|
12
12
|
export declare const ErrorPage: ({ errorText, title, subtitle, buttonProps, links, images, backgroundColor }: ErrorPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default ErrorPage;
|
|
@@ -16,6 +16,7 @@ export declare const WIDGET_LIST_MAP: {
|
|
|
16
16
|
readonly userFeedback: import('react').LazyExoticComponent<(props: import('..').UserFeedbackProps) => import("react/jsx-runtime").JSX.Element>;
|
|
17
17
|
readonly infoTable: import('react').LazyExoticComponent<(<Key extends string, TData extends Record<Key, unknown>>(props: import('..').TableProps<Key, TData>) => import("react/jsx-runtime").JSX.Element)>;
|
|
18
18
|
readonly conditionBlock: import('react').LazyExoticComponent<(<WithImages extends boolean>({ headline, classes, conditions, conditionsWithCTA }: import('../conditionBlock/ConditionBlock').ConditionBlockClassesProps<WithImages>) => import("react/jsx-runtime").JSX.Element)>;
|
|
19
|
+
readonly errorPage: import('react').LazyExoticComponent<({ errorText, title, subtitle, buttonProps, links, images, backgroundColor }: import('..').ErrorPageProps) => import("react/jsx-runtime").JSX.Element>;
|
|
19
20
|
};
|
|
20
21
|
export declare const KEYS_OF_WIDGET_LIST: readonly AllowedWidgets[];
|
|
21
|
-
export declare const widgetIds: Record<"header" | "seoHeader" | "banner" | "calculator" | "form" | "formDialog" | "stepper" | "benefit" | "longBanner" | "usefulInfo" | "interLinking" | "footer" | "infoBlock" | "userFeedback" | "infoTable" | "conditionBlock", "header" | "seoHeader" | "banner" | "calculator" | "form" | "formDialog" | "stepper" | "benefit" | "longBanner" | "usefulInfo" | "interLinking" | "footer" | "infoBlock" | "userFeedback" | "infoTable" | "conditionBlock">;
|
|
22
|
+
export declare const widgetIds: Record<"header" | "seoHeader" | "banner" | "calculator" | "form" | "formDialog" | "stepper" | "benefit" | "longBanner" | "usefulInfo" | "interLinking" | "footer" | "infoBlock" | "userFeedback" | "infoTable" | "conditionBlock" | "errorPage", "header" | "seoHeader" | "banner" | "calculator" | "form" | "formDialog" | "stepper" | "benefit" | "longBanner" | "usefulInfo" | "interLinking" | "footer" | "infoBlock" | "userFeedback" | "infoTable" | "conditionBlock" | "errorPage">;
|