mayak-common-library 0.0.253 → 0.0.254

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
@@ -85,7 +85,7 @@ declare function AboutCompanyMain({ title, text1, text2, box, workerCeo, classes
85
85
 
86
86
  interface IBox {
87
87
  title?: string;
88
- items?: {
88
+ items: {
89
89
  text1?: string;
90
90
  text2?: string;
91
91
  }[];
@@ -97,7 +97,7 @@ interface IAboutUsFirstBlockProps {
97
97
  text2?: string;
98
98
  text3?: string;
99
99
  textWithBorder?: string;
100
- box?: IBox;
100
+ box: IBox;
101
101
  actionButton?: ReactNode;
102
102
  }
103
103
  declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
package/dist/index.d.ts CHANGED
@@ -85,7 +85,7 @@ declare function AboutCompanyMain({ title, text1, text2, box, workerCeo, classes
85
85
 
86
86
  interface IBox {
87
87
  title?: string;
88
- items?: {
88
+ items: {
89
89
  text1?: string;
90
90
  text2?: string;
91
91
  }[];
@@ -97,7 +97,7 @@ interface IAboutUsFirstBlockProps {
97
97
  text2?: string;
98
98
  text3?: string;
99
99
  textWithBorder?: string;
100
- box?: IBox;
100
+ box: IBox;
101
101
  actionButton?: ReactNode;
102
102
  }
103
103
  declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;