mayak-common-library 0.0.224 → 0.0.225
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 +31 -9
- package/dist/index.d.ts +31 -9
- package/dist/index.js +6 -6
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -96,7 +96,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
96
96
|
box?: IBox;
|
|
97
97
|
actionButton?: ReactNode;
|
|
98
98
|
}
|
|
99
|
-
declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
99
|
+
declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
100
100
|
|
|
101
101
|
interface IBoxItem$5 {
|
|
102
102
|
icon?: string;
|
|
@@ -278,7 +278,7 @@ interface IBlockContacts {
|
|
|
278
278
|
text?: string;
|
|
279
279
|
offices?: IOfficeItem[];
|
|
280
280
|
}
|
|
281
|
-
declare function BlockContacts({ classes, offices, title, text, }: IBlockContacts): react_jsx_runtime.JSX.Element;
|
|
281
|
+
declare function BlockContacts({ classes, offices, title, text, children, }: IBlockContacts & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
282
282
|
|
|
283
283
|
interface ILink {
|
|
284
284
|
label: string;
|
|
@@ -373,8 +373,9 @@ interface IClientTransferProcessProps {
|
|
|
373
373
|
title?: string;
|
|
374
374
|
text?: string;
|
|
375
375
|
box?: IBoxItem$3[];
|
|
376
|
+
actionComponent?: ReactNode;
|
|
376
377
|
}
|
|
377
|
-
declare function ClientTransferProcess({ classes, box, title, text, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
378
|
+
declare function ClientTransferProcess({ classes, box, title, text, actionComponent, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
378
379
|
|
|
379
380
|
interface IContactUsBlock {
|
|
380
381
|
classes?: string;
|
|
@@ -536,8 +537,9 @@ interface IPortfoliosProps {
|
|
|
536
537
|
classes?: string;
|
|
537
538
|
title?: string;
|
|
538
539
|
box?: IBoxItem$2[];
|
|
540
|
+
actionComponent?: ReactNode;
|
|
539
541
|
}
|
|
540
|
-
declare function Portfolios({ classes, box, title }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
542
|
+
declare function Portfolios({ classes, box, title, actionComponent, }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
541
543
|
|
|
542
544
|
interface IBoxItem$1 {
|
|
543
545
|
text1?: string;
|
|
@@ -550,8 +552,9 @@ interface IReferralProgramFirstBlockProps {
|
|
|
550
552
|
text2?: string;
|
|
551
553
|
box?: IBoxItem$1[];
|
|
552
554
|
classes?: string;
|
|
555
|
+
actionComponent?: ReactNode;
|
|
553
556
|
}
|
|
554
|
-
declare function ReferralProgramFirstBlock({ title, box, text1, classes, subtitle, text2, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
557
|
+
declare function ReferralProgramFirstBlock({ title, box, text1, classes, subtitle, text2, actionComponent, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
555
558
|
|
|
556
559
|
interface IServicesTexts {
|
|
557
560
|
title?: string;
|
|
@@ -684,8 +687,9 @@ interface IWeTakeFullProps {
|
|
|
684
687
|
imgSrc?: string;
|
|
685
688
|
title?: string;
|
|
686
689
|
text?: string;
|
|
690
|
+
actionComponent?: ReactNode;
|
|
687
691
|
}
|
|
688
|
-
declare function WeTakeFull({ classes, text, imgSrc, title, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
692
|
+
declare function WeTakeFull({ classes, text, imgSrc, title, actionComponent, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
689
693
|
|
|
690
694
|
interface IWhatIsYourProps {
|
|
691
695
|
classes?: string;
|
|
@@ -703,7 +707,7 @@ interface TextImageTileBlockProps {
|
|
|
703
707
|
text1?: string;
|
|
704
708
|
text2?: string;
|
|
705
709
|
images?: string[];
|
|
706
|
-
|
|
710
|
+
actionComponent?: ReactNode;
|
|
707
711
|
}
|
|
708
712
|
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
709
713
|
|
|
@@ -717,8 +721,9 @@ interface IWhyShouldWorkProps {
|
|
|
717
721
|
title?: string;
|
|
718
722
|
text?: string;
|
|
719
723
|
box?: IBoxItem[];
|
|
724
|
+
actionComponent?: ReactNode;
|
|
720
725
|
}
|
|
721
|
-
declare function WhyShouldWork({ classes, box, title, text, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
726
|
+
declare function WhyShouldWork({ classes, box, title, text, actionComponent, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
722
727
|
|
|
723
728
|
interface IWheWeItem {
|
|
724
729
|
imageUrl?: string;
|
|
@@ -742,6 +747,7 @@ interface ObjectInfoBlockProps {
|
|
|
742
747
|
href?: string;
|
|
743
748
|
}[];
|
|
744
749
|
classes?: string;
|
|
750
|
+
actionComponent?: ReactNode;
|
|
745
751
|
}
|
|
746
752
|
declare const ObjectInfoBlock: FC<ObjectInfoBlockProps>;
|
|
747
753
|
|
|
@@ -846,6 +852,22 @@ interface IDevelopersFull {
|
|
|
846
852
|
}
|
|
847
853
|
declare function DevelopersFull({ title, devs, classes, href, }: IDevelopersFull): react_jsx_runtime.JSX.Element;
|
|
848
854
|
|
|
855
|
+
interface IServiceItem {
|
|
856
|
+
imageUrl?: string;
|
|
857
|
+
title?: string;
|
|
858
|
+
text?: string;
|
|
859
|
+
slug?: string;
|
|
860
|
+
href: string;
|
|
861
|
+
}
|
|
862
|
+
interface IServicesFull {
|
|
863
|
+
classes?: string;
|
|
864
|
+
title?: string;
|
|
865
|
+
services?: IServiceItem[];
|
|
866
|
+
totalServices?: number;
|
|
867
|
+
href: string;
|
|
868
|
+
}
|
|
869
|
+
declare function ServicesFull({ title, services, classes, href, totalServices, }: IServicesFull): react_jsx_runtime.JSX.Element;
|
|
870
|
+
|
|
849
871
|
interface IDeveloperBannerProps {
|
|
850
872
|
classes?: string;
|
|
851
873
|
imgBanner?: string;
|
|
@@ -1348,4 +1370,4 @@ interface ISliderObject {
|
|
|
1348
1370
|
}
|
|
1349
1371
|
declare const SliderObject: ({ images }: ISliderObject) => react_jsx_runtime.JSX.Element;
|
|
1350
1372
|
|
|
1351
|
-
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CatalogViewSwitch, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, GalleryBlock, GalleryRealty, H1, H1Big, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, ImageAndTextBlock, Input, JoinTeamBlock, type LayoutStore, LegalSupport, LinkIconBorder, LinkOut, List, ListItem, type LocaleSlug, LocaleSwitch, LocaleSwitchToggle, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, ReferralProgramFirstBlock, SearchInput, Select, ServicesTexts, SimpleSelect, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
|
1373
|
+
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CatalogViewSwitch, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, GalleryBlock, GalleryRealty, H1, H1Big, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, ImageAndTextBlock, Input, JoinTeamBlock, type LayoutStore, LegalSupport, LinkIconBorder, LinkOut, List, ListItem, type LocaleSlug, LocaleSwitch, LocaleSwitchToggle, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -96,7 +96,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
96
96
|
box?: IBox;
|
|
97
97
|
actionButton?: ReactNode;
|
|
98
98
|
}
|
|
99
|
-
declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
99
|
+
declare function AboutUsFirstBlock({ classes, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
100
100
|
|
|
101
101
|
interface IBoxItem$5 {
|
|
102
102
|
icon?: string;
|
|
@@ -278,7 +278,7 @@ interface IBlockContacts {
|
|
|
278
278
|
text?: string;
|
|
279
279
|
offices?: IOfficeItem[];
|
|
280
280
|
}
|
|
281
|
-
declare function BlockContacts({ classes, offices, title, text, }: IBlockContacts): react_jsx_runtime.JSX.Element;
|
|
281
|
+
declare function BlockContacts({ classes, offices, title, text, children, }: IBlockContacts & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
282
282
|
|
|
283
283
|
interface ILink {
|
|
284
284
|
label: string;
|
|
@@ -373,8 +373,9 @@ interface IClientTransferProcessProps {
|
|
|
373
373
|
title?: string;
|
|
374
374
|
text?: string;
|
|
375
375
|
box?: IBoxItem$3[];
|
|
376
|
+
actionComponent?: ReactNode;
|
|
376
377
|
}
|
|
377
|
-
declare function ClientTransferProcess({ classes, box, title, text, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
378
|
+
declare function ClientTransferProcess({ classes, box, title, text, actionComponent, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
378
379
|
|
|
379
380
|
interface IContactUsBlock {
|
|
380
381
|
classes?: string;
|
|
@@ -536,8 +537,9 @@ interface IPortfoliosProps {
|
|
|
536
537
|
classes?: string;
|
|
537
538
|
title?: string;
|
|
538
539
|
box?: IBoxItem$2[];
|
|
540
|
+
actionComponent?: ReactNode;
|
|
539
541
|
}
|
|
540
|
-
declare function Portfolios({ classes, box, title }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
542
|
+
declare function Portfolios({ classes, box, title, actionComponent, }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
541
543
|
|
|
542
544
|
interface IBoxItem$1 {
|
|
543
545
|
text1?: string;
|
|
@@ -550,8 +552,9 @@ interface IReferralProgramFirstBlockProps {
|
|
|
550
552
|
text2?: string;
|
|
551
553
|
box?: IBoxItem$1[];
|
|
552
554
|
classes?: string;
|
|
555
|
+
actionComponent?: ReactNode;
|
|
553
556
|
}
|
|
554
|
-
declare function ReferralProgramFirstBlock({ title, box, text1, classes, subtitle, text2, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
557
|
+
declare function ReferralProgramFirstBlock({ title, box, text1, classes, subtitle, text2, actionComponent, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
555
558
|
|
|
556
559
|
interface IServicesTexts {
|
|
557
560
|
title?: string;
|
|
@@ -684,8 +687,9 @@ interface IWeTakeFullProps {
|
|
|
684
687
|
imgSrc?: string;
|
|
685
688
|
title?: string;
|
|
686
689
|
text?: string;
|
|
690
|
+
actionComponent?: ReactNode;
|
|
687
691
|
}
|
|
688
|
-
declare function WeTakeFull({ classes, text, imgSrc, title, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
692
|
+
declare function WeTakeFull({ classes, text, imgSrc, title, actionComponent, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
689
693
|
|
|
690
694
|
interface IWhatIsYourProps {
|
|
691
695
|
classes?: string;
|
|
@@ -703,7 +707,7 @@ interface TextImageTileBlockProps {
|
|
|
703
707
|
text1?: string;
|
|
704
708
|
text2?: string;
|
|
705
709
|
images?: string[];
|
|
706
|
-
|
|
710
|
+
actionComponent?: ReactNode;
|
|
707
711
|
}
|
|
708
712
|
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
709
713
|
|
|
@@ -717,8 +721,9 @@ interface IWhyShouldWorkProps {
|
|
|
717
721
|
title?: string;
|
|
718
722
|
text?: string;
|
|
719
723
|
box?: IBoxItem[];
|
|
724
|
+
actionComponent?: ReactNode;
|
|
720
725
|
}
|
|
721
|
-
declare function WhyShouldWork({ classes, box, title, text, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
726
|
+
declare function WhyShouldWork({ classes, box, title, text, actionComponent, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
722
727
|
|
|
723
728
|
interface IWheWeItem {
|
|
724
729
|
imageUrl?: string;
|
|
@@ -742,6 +747,7 @@ interface ObjectInfoBlockProps {
|
|
|
742
747
|
href?: string;
|
|
743
748
|
}[];
|
|
744
749
|
classes?: string;
|
|
750
|
+
actionComponent?: ReactNode;
|
|
745
751
|
}
|
|
746
752
|
declare const ObjectInfoBlock: FC<ObjectInfoBlockProps>;
|
|
747
753
|
|
|
@@ -846,6 +852,22 @@ interface IDevelopersFull {
|
|
|
846
852
|
}
|
|
847
853
|
declare function DevelopersFull({ title, devs, classes, href, }: IDevelopersFull): react_jsx_runtime.JSX.Element;
|
|
848
854
|
|
|
855
|
+
interface IServiceItem {
|
|
856
|
+
imageUrl?: string;
|
|
857
|
+
title?: string;
|
|
858
|
+
text?: string;
|
|
859
|
+
slug?: string;
|
|
860
|
+
href: string;
|
|
861
|
+
}
|
|
862
|
+
interface IServicesFull {
|
|
863
|
+
classes?: string;
|
|
864
|
+
title?: string;
|
|
865
|
+
services?: IServiceItem[];
|
|
866
|
+
totalServices?: number;
|
|
867
|
+
href: string;
|
|
868
|
+
}
|
|
869
|
+
declare function ServicesFull({ title, services, classes, href, totalServices, }: IServicesFull): react_jsx_runtime.JSX.Element;
|
|
870
|
+
|
|
849
871
|
interface IDeveloperBannerProps {
|
|
850
872
|
classes?: string;
|
|
851
873
|
imgBanner?: string;
|
|
@@ -1348,4 +1370,4 @@ interface ISliderObject {
|
|
|
1348
1370
|
}
|
|
1349
1371
|
declare const SliderObject: ({ images }: ISliderObject) => react_jsx_runtime.JSX.Element;
|
|
1350
1372
|
|
|
1351
|
-
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CatalogViewSwitch, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, GalleryBlock, GalleryRealty, H1, H1Big, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, ImageAndTextBlock, Input, JoinTeamBlock, type LayoutStore, LegalSupport, LinkIconBorder, LinkOut, List, ListItem, type LocaleSlug, LocaleSwitch, LocaleSwitchToggle, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, ReferralProgramFirstBlock, SearchInput, Select, ServicesTexts, SimpleSelect, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
|
1373
|
+
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CatalogViewSwitch, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, GalleryBlock, GalleryRealty, H1, H1Big, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, ImageAndTextBlock, Input, JoinTeamBlock, type LayoutStore, LegalSupport, LinkIconBorder, LinkOut, List, ListItem, type LocaleSlug, LocaleSwitch, LocaleSwitchToggle, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|