mayak-common-library 0.0.243 → 0.0.245
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 +9 -3
- package/dist/index.d.ts +9 -3
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -140,8 +140,9 @@ interface IArticleContent {
|
|
|
140
140
|
slugs?: LanguageSlugsType;
|
|
141
141
|
href?: string;
|
|
142
142
|
classes?: string;
|
|
143
|
+
contactComponent?: ReactNode;
|
|
143
144
|
}
|
|
144
|
-
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, classes, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
145
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, classes, contactComponent, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
145
146
|
|
|
146
147
|
interface IArticle {
|
|
147
148
|
imageUrl?: string;
|
|
@@ -381,8 +382,14 @@ declare function ClientTransferProcess({ classes, box, title, text, actionCompon
|
|
|
381
382
|
|
|
382
383
|
interface IContactUsBlock {
|
|
383
384
|
classes?: string;
|
|
385
|
+
phone: string;
|
|
386
|
+
manager: {
|
|
387
|
+
name: string;
|
|
388
|
+
imageUrl: string;
|
|
389
|
+
position: string;
|
|
390
|
+
};
|
|
384
391
|
}
|
|
385
|
-
declare function ContactUsBlock({ classes }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare function ContactUsBlock({ classes, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
386
393
|
|
|
387
394
|
interface IExpertiseBlock {
|
|
388
395
|
block1: {
|
|
@@ -997,7 +1004,6 @@ interface IFooter2 {
|
|
|
997
1004
|
site: Site;
|
|
998
1005
|
homePage: string;
|
|
999
1006
|
additionalMenu: {
|
|
1000
|
-
title: string;
|
|
1001
1007
|
items: {
|
|
1002
1008
|
path: string;
|
|
1003
1009
|
title: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -140,8 +140,9 @@ interface IArticleContent {
|
|
|
140
140
|
slugs?: LanguageSlugsType;
|
|
141
141
|
href?: string;
|
|
142
142
|
classes?: string;
|
|
143
|
+
contactComponent?: ReactNode;
|
|
143
144
|
}
|
|
144
|
-
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, classes, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
145
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, classes, contactComponent, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
145
146
|
|
|
146
147
|
interface IArticle {
|
|
147
148
|
imageUrl?: string;
|
|
@@ -381,8 +382,14 @@ declare function ClientTransferProcess({ classes, box, title, text, actionCompon
|
|
|
381
382
|
|
|
382
383
|
interface IContactUsBlock {
|
|
383
384
|
classes?: string;
|
|
385
|
+
phone: string;
|
|
386
|
+
manager: {
|
|
387
|
+
name: string;
|
|
388
|
+
imageUrl: string;
|
|
389
|
+
position: string;
|
|
390
|
+
};
|
|
384
391
|
}
|
|
385
|
-
declare function ContactUsBlock({ classes }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
392
|
+
declare function ContactUsBlock({ classes, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
386
393
|
|
|
387
394
|
interface IExpertiseBlock {
|
|
388
395
|
block1: {
|
|
@@ -997,7 +1004,6 @@ interface IFooter2 {
|
|
|
997
1004
|
site: Site;
|
|
998
1005
|
homePage: string;
|
|
999
1006
|
additionalMenu: {
|
|
1000
|
-
title: string;
|
|
1001
1007
|
items: {
|
|
1002
1008
|
path: string;
|
|
1003
1009
|
title: string;
|