@zealicsolutions/web-ui 0.2.22 → 0.2.23
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/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/organisms/Body/Body.d.ts +2 -1
- package/dist/cjs/src/organisms/SubscribePanel/type.d.ts +1 -0
- package/dist/esm/index.js +11 -11
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/organisms/Body/Body.d.ts +2 -1
- package/dist/esm/src/organisms/SubscribePanel/type.d.ts +1 -0
- package/dist/index.d.ts +3 -1
- package/package.json +1 -1
@@ -3,9 +3,10 @@ import { ColumnsProps, EmphasizedTextProps, HeroImageProps } from 'molecules';
|
|
3
3
|
import { FeedContentContainerProps } from 'organisms/FeedContentContainer/FeedContentContainer';
|
4
4
|
import { CSSProperties } from 'styled-components';
|
5
5
|
import { HeroSliderProps } from 'organisms';
|
6
|
+
import { SubscribePanelProps } from 'organisms/SubscribePanel/type';
|
6
7
|
export declare type BodyProps = {
|
7
8
|
elements: {
|
8
|
-
data: (HeroImageProps | HeroSliderProps | ColumnsProps | EmphasizedTextProps | FeedContentContainerProps)[];
|
9
|
+
data: (HeroImageProps | HeroSliderProps | SubscribePanelProps | ColumnsProps | EmphasizedTextProps | FeedContentContainerProps)[];
|
9
10
|
spacer?: number;
|
10
11
|
};
|
11
12
|
horizontalPaddings?: number;
|
@@ -10,6 +10,7 @@ export declare type SubscribePanelTemplateProps = {
|
|
10
10
|
control: Control<SubscribePanelForm>;
|
11
11
|
};
|
12
12
|
export declare type SubscribePanelProps = Omit<SubscribePanelTemplateProps, 'isMobile' | 'control' | 'subscribeHandler'> & {
|
13
|
+
type: 'subscribe_panel';
|
13
14
|
template: SubscribePanelTemplateKeys;
|
14
15
|
onSubscribe: (email: string) => void;
|
15
16
|
};
|
package/dist/index.d.ts
CHANGED
@@ -28,6 +28,7 @@ import { FooterAProps } from 'organisms/Footer/FooterA';
|
|
28
28
|
import { FooterBProps } from 'organisms/Footer/FooterB';
|
29
29
|
import { FooterCProps } from 'organisms/Footer/FooterC';
|
30
30
|
import { FeedContentContainerProps as FeedContentContainerProps$1 } from 'organisms/FeedContentContainer/FeedContentContainer';
|
31
|
+
import { SubscribePanelProps as SubscribePanelProps$1 } from 'organisms/SubscribePanel/type';
|
31
32
|
import { ISIAProps } from 'organisms/ISI/ISIA';
|
32
33
|
import { HeaderAProps as HeaderAProps$1 } from 'organisms/Header/HeaderA';
|
33
34
|
import { AlertProps as AlertProps$2 } from 'molecules/Alert/Alert';
|
@@ -823,7 +824,7 @@ declare const ForgotPasswordForm: ({ logoUrl, onBack, onSubmit, isLoading, }: Fo
|
|
823
824
|
|
824
825
|
declare type BodyProps = {
|
825
826
|
elements: {
|
826
|
-
data: (HeroImageProps$1 | HeroSliderProps$1 | ColumnsProps$1 | EmphasizedTextProps$1 | FeedContentContainerProps$1)[];
|
827
|
+
data: (HeroImageProps$1 | HeroSliderProps$1 | SubscribePanelProps$1 | ColumnsProps$1 | EmphasizedTextProps$1 | FeedContentContainerProps$1)[];
|
827
828
|
spacer?: number;
|
828
829
|
};
|
829
830
|
horizontalPaddings?: number;
|
@@ -962,6 +963,7 @@ declare type SubscribePanelTemplateProps = {
|
|
962
963
|
control: Control$1<SubscribePanelForm>;
|
963
964
|
};
|
964
965
|
declare type SubscribePanelProps = Omit<SubscribePanelTemplateProps, 'isMobile' | 'control' | 'subscribeHandler'> & {
|
966
|
+
type: 'subscribe_panel';
|
965
967
|
template: SubscribePanelTemplateKeys;
|
966
968
|
onSubscribe: (email: string) => void;
|
967
969
|
};
|