mayak-common-library 0.0.160 → 0.0.162
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 +22 -11
- package/dist/index.d.ts +22 -11
- package/dist/index.js +8 -8
- package/dist/index.mjs +9 -9
- package/package.json +1 -1
- package/styles/common.scss +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -353,15 +353,6 @@ interface IClientTransferProcessProps {
|
|
|
353
353
|
}
|
|
354
354
|
declare function ClientTransferProcess({ classes, box, title, text, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
355
355
|
|
|
356
|
-
interface IContactsContent {
|
|
357
|
-
title?: string;
|
|
358
|
-
classes?: string;
|
|
359
|
-
offices?: IOfficeItem[];
|
|
360
|
-
videoLink?: string;
|
|
361
|
-
text?: string;
|
|
362
|
-
}
|
|
363
|
-
declare function ContactsContent({ classes, offices, text, title, }: IContactsContent): react_jsx_runtime.JSX.Element;
|
|
364
|
-
|
|
365
356
|
interface IContactUsBlock {
|
|
366
357
|
classes?: string;
|
|
367
358
|
}
|
|
@@ -438,8 +429,9 @@ interface IOfficesBlock {
|
|
|
438
429
|
text?: string;
|
|
439
430
|
classes?: string;
|
|
440
431
|
offices?: IOfficeItem[];
|
|
432
|
+
title?: string;
|
|
441
433
|
}
|
|
442
|
-
declare function OfficesBlock({ text, offices, classes, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
434
|
+
declare function OfficesBlock({ text, offices, classes, title, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
443
435
|
|
|
444
436
|
interface IVacancy {
|
|
445
437
|
slug?: string;
|
|
@@ -740,6 +732,25 @@ declare const _default: React.NamedExoticComponent<HeaderContactButtonProps>;
|
|
|
740
732
|
|
|
741
733
|
declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, }: IFooter): react_jsx_runtime.JSX.Element;
|
|
742
734
|
|
|
735
|
+
interface IFooter2 {
|
|
736
|
+
instagram?: string;
|
|
737
|
+
facebook?: string;
|
|
738
|
+
youtube?: string;
|
|
739
|
+
linkedIn?: string;
|
|
740
|
+
menuItems: MenuItem[];
|
|
741
|
+
mainPhone?: string;
|
|
742
|
+
site: Site;
|
|
743
|
+
homePage: string;
|
|
744
|
+
additionalMenu: {
|
|
745
|
+
title: string;
|
|
746
|
+
items: {
|
|
747
|
+
path: string;
|
|
748
|
+
title: string;
|
|
749
|
+
}[];
|
|
750
|
+
};
|
|
751
|
+
}
|
|
752
|
+
declare function Footer2({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, additionalMenu, }: IFooter2): react_jsx_runtime.JSX.Element;
|
|
753
|
+
|
|
743
754
|
declare function HeaderMob({ menuItems, mainPhone, locales, site, homePage, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
744
755
|
|
|
745
756
|
interface IMainBoxProps {
|
|
@@ -1010,4 +1021,4 @@ interface ListItemProps {
|
|
|
1010
1021
|
}
|
|
1011
1022
|
declare const ListItem: FC<ListItemProps>;
|
|
1012
1023
|
|
|
1013
|
-
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactUsBlock,
|
|
1024
|
+
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactUsBlock, ExpertiseBlock, FAQ, Footer, Footer2, FormBlock, FormInput, FromToInput, GalleryRealty, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JobCard, JoinTeamBlock, type LayoutStore, LegalSupport, LinkOut, List, ListItem, type LocaleSlug, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ModalContainer, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PhoneInput, PopularAreas, Portfolios, CustomRadio as Radio, CustomRadioGroup as RadioGroup, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, CustomSelect as Select, SelectPro, ServicesTexts, SimpleSelect, SocialBlock, SocialBlockMain, TeamWorkerBlock, TextBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyDubai, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -353,15 +353,6 @@ interface IClientTransferProcessProps {
|
|
|
353
353
|
}
|
|
354
354
|
declare function ClientTransferProcess({ classes, box, title, text, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
355
355
|
|
|
356
|
-
interface IContactsContent {
|
|
357
|
-
title?: string;
|
|
358
|
-
classes?: string;
|
|
359
|
-
offices?: IOfficeItem[];
|
|
360
|
-
videoLink?: string;
|
|
361
|
-
text?: string;
|
|
362
|
-
}
|
|
363
|
-
declare function ContactsContent({ classes, offices, text, title, }: IContactsContent): react_jsx_runtime.JSX.Element;
|
|
364
|
-
|
|
365
356
|
interface IContactUsBlock {
|
|
366
357
|
classes?: string;
|
|
367
358
|
}
|
|
@@ -438,8 +429,9 @@ interface IOfficesBlock {
|
|
|
438
429
|
text?: string;
|
|
439
430
|
classes?: string;
|
|
440
431
|
offices?: IOfficeItem[];
|
|
432
|
+
title?: string;
|
|
441
433
|
}
|
|
442
|
-
declare function OfficesBlock({ text, offices, classes, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
434
|
+
declare function OfficesBlock({ text, offices, classes, title, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
443
435
|
|
|
444
436
|
interface IVacancy {
|
|
445
437
|
slug?: string;
|
|
@@ -740,6 +732,25 @@ declare const _default: React.NamedExoticComponent<HeaderContactButtonProps>;
|
|
|
740
732
|
|
|
741
733
|
declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, }: IFooter): react_jsx_runtime.JSX.Element;
|
|
742
734
|
|
|
735
|
+
interface IFooter2 {
|
|
736
|
+
instagram?: string;
|
|
737
|
+
facebook?: string;
|
|
738
|
+
youtube?: string;
|
|
739
|
+
linkedIn?: string;
|
|
740
|
+
menuItems: MenuItem[];
|
|
741
|
+
mainPhone?: string;
|
|
742
|
+
site: Site;
|
|
743
|
+
homePage: string;
|
|
744
|
+
additionalMenu: {
|
|
745
|
+
title: string;
|
|
746
|
+
items: {
|
|
747
|
+
path: string;
|
|
748
|
+
title: string;
|
|
749
|
+
}[];
|
|
750
|
+
};
|
|
751
|
+
}
|
|
752
|
+
declare function Footer2({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, additionalMenu, }: IFooter2): react_jsx_runtime.JSX.Element;
|
|
753
|
+
|
|
743
754
|
declare function HeaderMob({ menuItems, mainPhone, locales, site, homePage, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
744
755
|
|
|
745
756
|
interface IMainBoxProps {
|
|
@@ -1010,4 +1021,4 @@ interface ListItemProps {
|
|
|
1010
1021
|
}
|
|
1011
1022
|
declare const ListItem: FC<ListItemProps>;
|
|
1012
1023
|
|
|
1013
|
-
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactUsBlock,
|
|
1024
|
+
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactUsBlock, ExpertiseBlock, FAQ, Footer, Footer2, FormBlock, FormInput, FromToInput, GalleryRealty, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JobCard, JoinTeamBlock, type LayoutStore, LegalSupport, LinkOut, List, ListItem, type LocaleSlug, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ModalContainer, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PhoneInput, PopularAreas, Portfolios, CustomRadio as Radio, CustomRadioGroup as RadioGroup, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, CustomSelect as Select, SelectPro, ServicesTexts, SimpleSelect, SocialBlock, SocialBlockMain, TeamWorkerBlock, TextBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyDubai, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|