mayak-common-library 0.0.163 → 0.0.165

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React from 'react';
3
- import React__default, { FC, ReactNode, MouseEventHandler, PropsWithChildren, MouseEvent, ReactElement } from 'react';
2
+ import * as react from 'react';
3
+ import react__default, { FC, ReactNode, MouseEventHandler, PropsWithChildren, MouseEvent, ReactElement } from 'react';
4
4
  import { TypographyProps } from '@mui/material/Typography/Typography';
5
5
  import { ButtonProps } from '@mui/material/Button';
6
6
  import { IconButtonProps } from '@mui/material/IconButton/IconButton';
@@ -124,21 +124,21 @@ interface IArticle {
124
124
  }
125
125
 
126
126
  interface IArticlesBlock {
127
- title?: string;
127
+ title: string;
128
128
  classes?: string;
129
129
  button?: boolean;
130
130
  titlePosition?: TitlePosition$1;
131
131
  articles?: IArticle[];
132
132
  }
133
- declare function ArticlesBlock({ title, classes, button, titlePosition, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
133
+ declare function ArticlesBlock({ title, classes, button, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
134
134
 
135
- interface IArticlesFull {
135
+ interface IArticlesFull$1 {
136
136
  classes?: string;
137
137
  title?: string;
138
138
  articles?: IArticle[];
139
139
  totalArticles?: number;
140
140
  }
141
- declare function ArticlesFull({ title, articles, classes, }: IArticlesFull): react_jsx_runtime.JSX.Element;
141
+ declare function ArticlesFull({ title, articles, classes, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
142
142
 
143
143
  interface IBannerBlock {
144
144
  videoLink?: string;
@@ -200,12 +200,13 @@ interface IBenefit {
200
200
  text1?: string;
201
201
  text2?: string;
202
202
  }
203
- interface IBenefitsVacanciesBlock {
203
+ interface BenefitsVacanciesBlockProps {
204
204
  title?: string;
205
205
  benefits?: IBenefit[];
206
206
  classes?: string;
207
+ inlineItem?: boolean;
207
208
  }
208
- declare function BenefitsVacanciesBlock({ title, benefits, classes, }: IBenefitsVacanciesBlock): react_jsx_runtime.JSX.Element;
209
+ declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
209
210
 
210
211
  interface IComponentItem {
211
212
  text1?: string;
@@ -664,15 +665,16 @@ interface IWhatIsYourProps {
664
665
  }
665
666
  declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYourProps): react_jsx_runtime.JSX.Element;
666
667
 
667
- interface IWhyDubaiProps {
668
+ interface TextImageTileBlockProps {
668
669
  classes?: string;
669
670
  title1?: string;
670
671
  title2?: string;
671
672
  text1?: string;
672
673
  text2?: string;
673
674
  images?: string[];
675
+ withButton?: boolean;
674
676
  }
675
- declare function WhyDubai({ classes, title1, title2, text2, text1, }: IWhyDubaiProps): react_jsx_runtime.JSX.Element;
677
+ declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
676
678
 
677
679
  interface IBoxItem {
678
680
  number?: number;
@@ -700,6 +702,136 @@ interface IWhyWe {
700
702
  }
701
703
  declare function WhyWe({ items, title, classes, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
702
704
 
705
+ interface ObjectInfoBlockProps {
706
+ title: string;
707
+ text1: string;
708
+ text2: string;
709
+ properties: {
710
+ title: string;
711
+ desc: string;
712
+ }[];
713
+ classes?: string;
714
+ }
715
+ declare const ObjectInfoBlock: FC<ObjectInfoBlockProps>;
716
+
717
+ interface PaymentPlanBlockProps {
718
+ }
719
+ declare const PaymentPlanBlock: FC<PaymentPlanBlockProps>;
720
+
721
+ interface FloorPlansBlockProps {
722
+ }
723
+ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
724
+
725
+ interface FullScreenImageProps {
726
+ src: string;
727
+ tags?: string[];
728
+ classes?: string;
729
+ }
730
+ declare const FullScreenImage: FC<FullScreenImageProps>;
731
+
732
+ interface GalleryBlockProps {
733
+ classes?: string;
734
+ images?: string[];
735
+ title?: string;
736
+ }
737
+ declare const GalleryBlock: FC<GalleryBlockProps>;
738
+
739
+ interface ContactDubaiBlockProps {
740
+ classes?: string;
741
+ }
742
+ declare function ContactDubaiBlock({ classes }: ContactDubaiBlockProps): react_jsx_runtime.JSX.Element;
743
+
744
+ interface IArea {
745
+ imageUrl?: string;
746
+ title?: string;
747
+ price?: string;
748
+ slug?: string;
749
+ whiteBottom?: boolean;
750
+ }
751
+
752
+ interface IArticlesFull {
753
+ classes?: string;
754
+ title?: string;
755
+ areas?: IArea[];
756
+ totalAreas?: number;
757
+ }
758
+ declare function AreasFull({ title, areas, classes }: IArticlesFull): react_jsx_runtime.JSX.Element;
759
+
760
+ interface ICatalogNewProjectsProps {
761
+ classes?: string;
762
+ }
763
+ declare function CatalogNewProjects({ classes, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
764
+
765
+ interface NewProjectCardProps {
766
+ slug: string;
767
+ imgSrc: string;
768
+ title: string;
769
+ address: string;
770
+ price: string;
771
+ developer: string;
772
+ houseTypes: string[];
773
+ }
774
+
775
+ interface IProjectsSliderProps$1 {
776
+ classes?: string;
777
+ projects?: NewProjectCardProps[];
778
+ title: string;
779
+ }
780
+ declare function ProjectsSlider({ classes, projects, title, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
781
+
782
+ interface IProjectsSliderProps {
783
+ classes?: string;
784
+ areas?: IArea[];
785
+ title: string;
786
+ }
787
+ declare function AreasSlider({ classes, areas, title, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
788
+
789
+ interface IDeveloperCardProps {
790
+ classes?: string;
791
+ img: string;
792
+ title: string;
793
+ text: string;
794
+ slug: string;
795
+ }
796
+
797
+ interface IDevelopersSliderProps {
798
+ classes?: string;
799
+ developers?: IDeveloperCardProps[];
800
+ title: string;
801
+ }
802
+ declare function DevelopersSlider({ classes, developers, title, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
803
+
804
+ interface IDeveloperItem {
805
+ img: string;
806
+ title: string;
807
+ text: string;
808
+ }
809
+ interface IDevelopersProps {
810
+ classes?: string;
811
+ title?: string;
812
+ items?: IDeveloperItem[];
813
+ }
814
+ declare function Developers({ classes, items, title, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
815
+
816
+ interface IDeveloperBannerProps {
817
+ classes?: string;
818
+ imgBanner?: string;
819
+ imgLogo?: string;
820
+ }
821
+ declare function DeveloperBanner({ classes, imgBanner, imgLogo, }: IDeveloperBannerProps): react_jsx_runtime.JSX.Element;
822
+
823
+ interface IDeveloperTwoBlocks {
824
+ classes?: string;
825
+ title?: string;
826
+ text?: string;
827
+ block: {
828
+ projects?: string;
829
+ priceFrom?: string;
830
+ begin?: string;
831
+ };
832
+ }
833
+ declare function DeveloperTwoBlocks({ classes, block, text, title, }: IDeveloperTwoBlocks): react_jsx_runtime.JSX.Element;
834
+
703
835
  type MenuItem = {
704
836
  path: string;
705
837
  title: string;
@@ -730,7 +862,7 @@ interface HeaderContactButtonProps {
730
862
  title: string;
731
863
  homePage: string;
732
864
  }
733
- declare const _default: React.NamedExoticComponent<HeaderContactButtonProps>;
865
+ declare const _default: react.NamedExoticComponent<HeaderContactButtonProps>;
734
866
 
735
867
  declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, }: IFooter): react_jsx_runtime.JSX.Element;
736
868
 
@@ -924,9 +1056,9 @@ interface CustomRadioProps {
924
1056
  label?: string;
925
1057
  value?: string;
926
1058
  }
927
- declare const CustomRadio: React__default.FC<CustomRadioProps>;
1059
+ declare const CustomRadio: React.FC<CustomRadioProps>;
928
1060
 
929
- declare const CustomRadioGroup: React__default.FC<RadioGroupProps & PropsWithChildren>;
1061
+ declare const CustomRadioGroup: react__default.FC<RadioGroupProps & PropsWithChildren>;
930
1062
 
931
1063
  declare const Input: FC<InputProps>;
932
1064
 
@@ -1023,4 +1155,4 @@ interface ListItemProps {
1023
1155
  }
1024
1156
  declare const ListItem: FC<ListItemProps>;
1025
1157
 
1026
- 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 };
1158
+ export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, Developers, DevelopersSlider, ExpertiseBlock, FAQ, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FromToInput, FullScreenImage, GalleryBlock, 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, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PaymentPlanBlock, PhoneInput, PopularAreas, Portfolios, ProjectsSlider, CustomRadio as Radio, CustomRadioGroup as RadioGroup, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, CustomSelect as Select, SelectPro, ServicesTexts, SimpleSelect, SocialBlock, SocialBlockMain, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React from 'react';
3
- import React__default, { FC, ReactNode, MouseEventHandler, PropsWithChildren, MouseEvent, ReactElement } from 'react';
2
+ import * as react from 'react';
3
+ import react__default, { FC, ReactNode, MouseEventHandler, PropsWithChildren, MouseEvent, ReactElement } from 'react';
4
4
  import { TypographyProps } from '@mui/material/Typography/Typography';
5
5
  import { ButtonProps } from '@mui/material/Button';
6
6
  import { IconButtonProps } from '@mui/material/IconButton/IconButton';
@@ -124,21 +124,21 @@ interface IArticle {
124
124
  }
125
125
 
126
126
  interface IArticlesBlock {
127
- title?: string;
127
+ title: string;
128
128
  classes?: string;
129
129
  button?: boolean;
130
130
  titlePosition?: TitlePosition$1;
131
131
  articles?: IArticle[];
132
132
  }
133
- declare function ArticlesBlock({ title, classes, button, titlePosition, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
133
+ declare function ArticlesBlock({ title, classes, button, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
134
134
 
135
- interface IArticlesFull {
135
+ interface IArticlesFull$1 {
136
136
  classes?: string;
137
137
  title?: string;
138
138
  articles?: IArticle[];
139
139
  totalArticles?: number;
140
140
  }
141
- declare function ArticlesFull({ title, articles, classes, }: IArticlesFull): react_jsx_runtime.JSX.Element;
141
+ declare function ArticlesFull({ title, articles, classes, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
142
142
 
143
143
  interface IBannerBlock {
144
144
  videoLink?: string;
@@ -200,12 +200,13 @@ interface IBenefit {
200
200
  text1?: string;
201
201
  text2?: string;
202
202
  }
203
- interface IBenefitsVacanciesBlock {
203
+ interface BenefitsVacanciesBlockProps {
204
204
  title?: string;
205
205
  benefits?: IBenefit[];
206
206
  classes?: string;
207
+ inlineItem?: boolean;
207
208
  }
208
- declare function BenefitsVacanciesBlock({ title, benefits, classes, }: IBenefitsVacanciesBlock): react_jsx_runtime.JSX.Element;
209
+ declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
209
210
 
210
211
  interface IComponentItem {
211
212
  text1?: string;
@@ -664,15 +665,16 @@ interface IWhatIsYourProps {
664
665
  }
665
666
  declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYourProps): react_jsx_runtime.JSX.Element;
666
667
 
667
- interface IWhyDubaiProps {
668
+ interface TextImageTileBlockProps {
668
669
  classes?: string;
669
670
  title1?: string;
670
671
  title2?: string;
671
672
  text1?: string;
672
673
  text2?: string;
673
674
  images?: string[];
675
+ withButton?: boolean;
674
676
  }
675
- declare function WhyDubai({ classes, title1, title2, text2, text1, }: IWhyDubaiProps): react_jsx_runtime.JSX.Element;
677
+ declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
676
678
 
677
679
  interface IBoxItem {
678
680
  number?: number;
@@ -700,6 +702,136 @@ interface IWhyWe {
700
702
  }
701
703
  declare function WhyWe({ items, title, classes, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
702
704
 
705
+ interface ObjectInfoBlockProps {
706
+ title: string;
707
+ text1: string;
708
+ text2: string;
709
+ properties: {
710
+ title: string;
711
+ desc: string;
712
+ }[];
713
+ classes?: string;
714
+ }
715
+ declare const ObjectInfoBlock: FC<ObjectInfoBlockProps>;
716
+
717
+ interface PaymentPlanBlockProps {
718
+ }
719
+ declare const PaymentPlanBlock: FC<PaymentPlanBlockProps>;
720
+
721
+ interface FloorPlansBlockProps {
722
+ }
723
+ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
724
+
725
+ interface FullScreenImageProps {
726
+ src: string;
727
+ tags?: string[];
728
+ classes?: string;
729
+ }
730
+ declare const FullScreenImage: FC<FullScreenImageProps>;
731
+
732
+ interface GalleryBlockProps {
733
+ classes?: string;
734
+ images?: string[];
735
+ title?: string;
736
+ }
737
+ declare const GalleryBlock: FC<GalleryBlockProps>;
738
+
739
+ interface ContactDubaiBlockProps {
740
+ classes?: string;
741
+ }
742
+ declare function ContactDubaiBlock({ classes }: ContactDubaiBlockProps): react_jsx_runtime.JSX.Element;
743
+
744
+ interface IArea {
745
+ imageUrl?: string;
746
+ title?: string;
747
+ price?: string;
748
+ slug?: string;
749
+ whiteBottom?: boolean;
750
+ }
751
+
752
+ interface IArticlesFull {
753
+ classes?: string;
754
+ title?: string;
755
+ areas?: IArea[];
756
+ totalAreas?: number;
757
+ }
758
+ declare function AreasFull({ title, areas, classes }: IArticlesFull): react_jsx_runtime.JSX.Element;
759
+
760
+ interface ICatalogNewProjectsProps {
761
+ classes?: string;
762
+ }
763
+ declare function CatalogNewProjects({ classes, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
764
+
765
+ interface NewProjectCardProps {
766
+ slug: string;
767
+ imgSrc: string;
768
+ title: string;
769
+ address: string;
770
+ price: string;
771
+ developer: string;
772
+ houseTypes: string[];
773
+ }
774
+
775
+ interface IProjectsSliderProps$1 {
776
+ classes?: string;
777
+ projects?: NewProjectCardProps[];
778
+ title: string;
779
+ }
780
+ declare function ProjectsSlider({ classes, projects, title, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
781
+
782
+ interface IProjectsSliderProps {
783
+ classes?: string;
784
+ areas?: IArea[];
785
+ title: string;
786
+ }
787
+ declare function AreasSlider({ classes, areas, title, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
788
+
789
+ interface IDeveloperCardProps {
790
+ classes?: string;
791
+ img: string;
792
+ title: string;
793
+ text: string;
794
+ slug: string;
795
+ }
796
+
797
+ interface IDevelopersSliderProps {
798
+ classes?: string;
799
+ developers?: IDeveloperCardProps[];
800
+ title: string;
801
+ }
802
+ declare function DevelopersSlider({ classes, developers, title, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
803
+
804
+ interface IDeveloperItem {
805
+ img: string;
806
+ title: string;
807
+ text: string;
808
+ }
809
+ interface IDevelopersProps {
810
+ classes?: string;
811
+ title?: string;
812
+ items?: IDeveloperItem[];
813
+ }
814
+ declare function Developers({ classes, items, title, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
815
+
816
+ interface IDeveloperBannerProps {
817
+ classes?: string;
818
+ imgBanner?: string;
819
+ imgLogo?: string;
820
+ }
821
+ declare function DeveloperBanner({ classes, imgBanner, imgLogo, }: IDeveloperBannerProps): react_jsx_runtime.JSX.Element;
822
+
823
+ interface IDeveloperTwoBlocks {
824
+ classes?: string;
825
+ title?: string;
826
+ text?: string;
827
+ block: {
828
+ projects?: string;
829
+ priceFrom?: string;
830
+ begin?: string;
831
+ };
832
+ }
833
+ declare function DeveloperTwoBlocks({ classes, block, text, title, }: IDeveloperTwoBlocks): react_jsx_runtime.JSX.Element;
834
+
703
835
  type MenuItem = {
704
836
  path: string;
705
837
  title: string;
@@ -730,7 +862,7 @@ interface HeaderContactButtonProps {
730
862
  title: string;
731
863
  homePage: string;
732
864
  }
733
- declare const _default: React.NamedExoticComponent<HeaderContactButtonProps>;
865
+ declare const _default: react.NamedExoticComponent<HeaderContactButtonProps>;
734
866
 
735
867
  declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, }: IFooter): react_jsx_runtime.JSX.Element;
736
868
 
@@ -924,9 +1056,9 @@ interface CustomRadioProps {
924
1056
  label?: string;
925
1057
  value?: string;
926
1058
  }
927
- declare const CustomRadio: React__default.FC<CustomRadioProps>;
1059
+ declare const CustomRadio: React.FC<CustomRadioProps>;
928
1060
 
929
- declare const CustomRadioGroup: React__default.FC<RadioGroupProps & PropsWithChildren>;
1061
+ declare const CustomRadioGroup: react__default.FC<RadioGroupProps & PropsWithChildren>;
930
1062
 
931
1063
  declare const Input: FC<InputProps>;
932
1064
 
@@ -1023,4 +1155,4 @@ interface ListItemProps {
1023
1155
  }
1024
1156
  declare const ListItem: FC<ListItemProps>;
1025
1157
 
1026
- 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 };
1158
+ export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, Developers, DevelopersSlider, ExpertiseBlock, FAQ, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FromToInput, FullScreenImage, GalleryBlock, 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, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PaymentPlanBlock, PhoneInput, PopularAreas, Portfolios, ProjectsSlider, CustomRadio as Radio, CustomRadioGroup as RadioGroup, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, CustomSelect as Select, SelectPro, ServicesTexts, SimpleSelect, SocialBlock, SocialBlockMain, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };