mayak-common-library-payload 0.1.15 → 0.1.17

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/index.d.mts CHANGED
@@ -77,24 +77,22 @@ interface AboutCompanyMainProps {
77
77
  }
78
78
  declare function AboutCompanyMain({ title, content, box, workerCeo, className, site, actionButton, }: AboutCompanyMainProps): react_jsx_runtime.JSX.Element;
79
79
 
80
- interface IBox {
81
- title?: string;
82
- items: {
83
- text1?: string;
84
- text2?: string;
85
- }[];
86
- }
87
80
  interface IAboutUsFirstBlockProps {
88
81
  className?: string;
89
82
  title?: string;
90
- text1?: string;
91
- text2?: string;
92
- text3?: string;
93
- textWithBorder?: string;
94
- box: IBox;
83
+ content?: ReactNode;
84
+ additionalContent?: ReactNode;
85
+ box: {
86
+ title?: string;
87
+ items: {
88
+ label?: string;
89
+ content?: ReactNode;
90
+ }[];
91
+ };
95
92
  actionButton?: ReactNode;
93
+ videoLink?: string | null;
96
94
  }
97
- declare function AboutUsFirstBlock({ className, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
95
+ declare function AboutUsFirstBlock({ className, box, content, additionalContent, title, actionButton, videoLink, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
98
96
 
99
97
  interface IBoxItem$5 {
100
98
  icon?: string;
@@ -161,8 +159,8 @@ declare function ArticlesFull({ title, className, totalArticles, }: IArticlesFul
161
159
 
162
160
  interface BannerBlockProps {
163
161
  videoLink?: string;
164
- bigText?: string;
165
- smallText?: string;
162
+ title?: string | null;
163
+ subTitle?: ReactNode;
166
164
  className?: string;
167
165
  imgLink?: string;
168
166
  view?: 'column' | 'row';
package/dist/index.d.ts CHANGED
@@ -77,24 +77,22 @@ interface AboutCompanyMainProps {
77
77
  }
78
78
  declare function AboutCompanyMain({ title, content, box, workerCeo, className, site, actionButton, }: AboutCompanyMainProps): react_jsx_runtime.JSX.Element;
79
79
 
80
- interface IBox {
81
- title?: string;
82
- items: {
83
- text1?: string;
84
- text2?: string;
85
- }[];
86
- }
87
80
  interface IAboutUsFirstBlockProps {
88
81
  className?: string;
89
82
  title?: string;
90
- text1?: string;
91
- text2?: string;
92
- text3?: string;
93
- textWithBorder?: string;
94
- box: IBox;
83
+ content?: ReactNode;
84
+ additionalContent?: ReactNode;
85
+ box: {
86
+ title?: string;
87
+ items: {
88
+ label?: string;
89
+ content?: ReactNode;
90
+ }[];
91
+ };
95
92
  actionButton?: ReactNode;
93
+ videoLink?: string | null;
96
94
  }
97
- declare function AboutUsFirstBlock({ className, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
95
+ declare function AboutUsFirstBlock({ className, box, content, additionalContent, title, actionButton, videoLink, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
98
96
 
99
97
  interface IBoxItem$5 {
100
98
  icon?: string;
@@ -161,8 +159,8 @@ declare function ArticlesFull({ title, className, totalArticles, }: IArticlesFul
161
159
 
162
160
  interface BannerBlockProps {
163
161
  videoLink?: string;
164
- bigText?: string;
165
- smallText?: string;
162
+ title?: string | null;
163
+ subTitle?: ReactNode;
166
164
  className?: string;
167
165
  imgLink?: string;
168
166
  view?: 'column' | 'row';