mayak-common-library-payload 0.1.16 → 0.1.18

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
- title?: string;
90
- text1?: string;
91
- text2?: string;
92
- text3?: string;
93
- textWithBorder?: string;
94
- box: IBox;
82
+ title?: string | null;
83
+ content?: ReactNode;
84
+ additionalContent?: ReactNode;
85
+ box: {
86
+ title?: string | null;
87
+ items: {
88
+ label?: string | null;
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;
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
- title?: string;
90
- text1?: string;
91
- text2?: string;
92
- text3?: string;
93
- textWithBorder?: string;
94
- box: IBox;
82
+ title?: string | null;
83
+ content?: ReactNode;
84
+ additionalContent?: ReactNode;
85
+ box: {
86
+ title?: string | null;
87
+ items: {
88
+ label?: string | null;
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;