mayak-common-library 0.0.207 → 0.0.209
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 +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -90,9 +90,11 @@ interface IAboutUsFirstBlockProps {
|
|
|
90
90
|
title?: string;
|
|
91
91
|
text1?: string;
|
|
92
92
|
text2?: string;
|
|
93
|
+
text3?: string;
|
|
94
|
+
textWithBorder?: string;
|
|
93
95
|
box?: IBox;
|
|
94
96
|
}
|
|
95
|
-
declare function AboutUsFirstBlock({ classes, box, text1, text2, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
96
98
|
|
|
97
99
|
interface IBoxItem$5 {
|
|
98
100
|
icon?: string;
|
|
@@ -736,7 +738,7 @@ interface ObjectInfoBlockProps {
|
|
|
736
738
|
text1: string;
|
|
737
739
|
properties: {
|
|
738
740
|
title: string;
|
|
739
|
-
desc
|
|
741
|
+
desc?: string;
|
|
740
742
|
href?: string;
|
|
741
743
|
}[];
|
|
742
744
|
classes?: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -90,9 +90,11 @@ interface IAboutUsFirstBlockProps {
|
|
|
90
90
|
title?: string;
|
|
91
91
|
text1?: string;
|
|
92
92
|
text2?: string;
|
|
93
|
+
text3?: string;
|
|
94
|
+
textWithBorder?: string;
|
|
93
95
|
box?: IBox;
|
|
94
96
|
}
|
|
95
|
-
declare function AboutUsFirstBlock({ classes, box, text1, text2, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
97
|
+
declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
96
98
|
|
|
97
99
|
interface IBoxItem$5 {
|
|
98
100
|
icon?: string;
|
|
@@ -736,7 +738,7 @@ interface ObjectInfoBlockProps {
|
|
|
736
738
|
text1: string;
|
|
737
739
|
properties: {
|
|
738
740
|
title: string;
|
|
739
|
-
desc
|
|
741
|
+
desc?: string;
|
|
740
742
|
href?: string;
|
|
741
743
|
}[];
|
|
742
744
|
classes?: string;
|