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 +13 -15
- package/dist/index.d.ts +13 -15
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
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,
|
|
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
|
-
|
|
165
|
-
|
|
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
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
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,
|
|
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
|
-
|
|
165
|
-
|
|
162
|
+
title?: string | null;
|
|
163
|
+
subTitle?: ReactNode;
|
|
166
164
|
className?: string;
|
|
167
165
|
imgLink?: string;
|
|
168
166
|
view?: 'column' | 'row';
|