mayak-common-library 0.0.242 → 0.0.244
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 -4
- package/dist/index.d.ts +13 -4
- package/dist/index.js +6 -6
- 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: {
|
|
@@ -668,8 +675,9 @@ interface IVacancyContent {
|
|
|
668
675
|
phone?: string;
|
|
669
676
|
email?: string;
|
|
670
677
|
manager?: any;
|
|
678
|
+
href?: string;
|
|
671
679
|
}
|
|
672
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
680
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
673
681
|
|
|
674
682
|
interface IItem {
|
|
675
683
|
text1?: string;
|
|
@@ -914,7 +922,8 @@ declare enum hrefSlugPrefix {
|
|
|
914
922
|
CATALOG = "/catalog/object/",
|
|
915
923
|
NEWS = "/news/",
|
|
916
924
|
BLOG = "/blog/",
|
|
917
|
-
VACANCY = "/vacancies/"
|
|
925
|
+
VACANCY = "/vacancies/",
|
|
926
|
+
CAREERS = "/careers/"
|
|
918
927
|
}
|
|
919
928
|
interface LocaleSlugSlice {
|
|
920
929
|
slugs: LanguageSlugsType | undefined;
|
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: {
|
|
@@ -668,8 +675,9 @@ interface IVacancyContent {
|
|
|
668
675
|
phone?: string;
|
|
669
676
|
email?: string;
|
|
670
677
|
manager?: any;
|
|
678
|
+
href?: string;
|
|
671
679
|
}
|
|
672
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
680
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, classes, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
673
681
|
|
|
674
682
|
interface IItem {
|
|
675
683
|
text1?: string;
|
|
@@ -914,7 +922,8 @@ declare enum hrefSlugPrefix {
|
|
|
914
922
|
CATALOG = "/catalog/object/",
|
|
915
923
|
NEWS = "/news/",
|
|
916
924
|
BLOG = "/blog/",
|
|
917
|
-
VACANCY = "/vacancies/"
|
|
925
|
+
VACANCY = "/vacancies/",
|
|
926
|
+
CAREERS = "/careers/"
|
|
918
927
|
}
|
|
919
928
|
interface LocaleSlugSlice {
|
|
920
929
|
slugs: LanguageSlugsType | undefined;
|