mayak-common-library 0.0.167 → 0.0.168
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 +27 -22
- package/dist/index.d.ts +27 -22
- package/dist/index.js +7 -7
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -121,6 +121,7 @@ interface IArticle {
|
|
|
121
121
|
title?: string;
|
|
122
122
|
text?: string;
|
|
123
123
|
slug?: string;
|
|
124
|
+
href: string;
|
|
124
125
|
}
|
|
125
126
|
|
|
126
127
|
interface IArticlesBlock {
|
|
@@ -129,16 +130,18 @@ interface IArticlesBlock {
|
|
|
129
130
|
button?: boolean;
|
|
130
131
|
titlePosition?: TitlePosition$1;
|
|
131
132
|
articles?: IArticle[];
|
|
133
|
+
href: string;
|
|
132
134
|
}
|
|
133
|
-
declare function ArticlesBlock({ title, classes, button, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
|
|
135
|
+
declare function ArticlesBlock({ title, classes, button, articles, href, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
|
|
134
136
|
|
|
135
137
|
interface IArticlesFull$1 {
|
|
136
138
|
classes?: string;
|
|
137
139
|
title?: string;
|
|
138
140
|
articles?: IArticle[];
|
|
139
141
|
totalArticles?: number;
|
|
142
|
+
href: string;
|
|
140
143
|
}
|
|
141
|
-
declare function ArticlesFull({ title, articles, classes, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
|
|
144
|
+
declare function ArticlesFull({ title, articles, classes, href, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
|
|
142
145
|
|
|
143
146
|
interface IBannerBlock {
|
|
144
147
|
videoLink?: string;
|
|
@@ -226,16 +229,6 @@ interface IBlockAboutCareer {
|
|
|
226
229
|
}
|
|
227
230
|
declare function BlockAboutCareer({ title, classes, videoLink, }: IBlockAboutCareer): react_jsx_runtime.JSX.Element;
|
|
228
231
|
|
|
229
|
-
interface IBlockCardContent {
|
|
230
|
-
classes?: string;
|
|
231
|
-
turn?: 'right' | 'left';
|
|
232
|
-
title?: string;
|
|
233
|
-
text?: string;
|
|
234
|
-
imageUrl?: string;
|
|
235
|
-
buttonLink?: boolean;
|
|
236
|
-
}
|
|
237
|
-
declare function BlockCardContent({ classes, turn, title, imageUrl, text, buttonLink, }: IBlockCardContent): react_jsx_runtime.JSX.Element;
|
|
238
|
-
|
|
239
232
|
interface IBlockChoiceLinkGoToCatalog {
|
|
240
233
|
classes?: string;
|
|
241
234
|
}
|
|
@@ -452,14 +445,16 @@ interface IOpenVacancies {
|
|
|
452
445
|
title?: string;
|
|
453
446
|
classes?: string;
|
|
454
447
|
vacancies?: IVacancy[];
|
|
448
|
+
href: string;
|
|
455
449
|
}
|
|
456
|
-
declare function OpenVacancies({ title, vacancies, classes, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
450
|
+
declare function OpenVacancies({ title, vacancies, classes, href, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
457
451
|
|
|
458
452
|
interface IOtherVacancies {
|
|
459
453
|
vacancies?: IVacancy[];
|
|
460
454
|
classes?: string;
|
|
455
|
+
href: string;
|
|
461
456
|
}
|
|
462
|
-
declare function OtherVacancies({ vacancies, classes, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
457
|
+
declare function OtherVacancies({ vacancies, classes, href, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
463
458
|
|
|
464
459
|
interface IBlock {
|
|
465
460
|
strongText?: string;
|
|
@@ -496,8 +491,9 @@ interface IPopularAreasProps {
|
|
|
496
491
|
rows?: number;
|
|
497
492
|
cols?: number;
|
|
498
493
|
}[];
|
|
494
|
+
href: string;
|
|
499
495
|
}
|
|
500
|
-
declare function PopularAreas({ classes, items, title, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
496
|
+
declare function PopularAreas({ classes, items, title, href, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
501
497
|
|
|
502
498
|
interface IBoxItem$2 {
|
|
503
499
|
img?: string;
|
|
@@ -747,6 +743,7 @@ interface IArea {
|
|
|
747
743
|
price?: string;
|
|
748
744
|
slug?: string;
|
|
749
745
|
whiteBottom?: boolean;
|
|
746
|
+
href: string;
|
|
750
747
|
}
|
|
751
748
|
|
|
752
749
|
interface IArticlesFull {
|
|
@@ -754,13 +751,15 @@ interface IArticlesFull {
|
|
|
754
751
|
title?: string;
|
|
755
752
|
areas?: IArea[];
|
|
756
753
|
totalAreas?: number;
|
|
754
|
+
href: string;
|
|
757
755
|
}
|
|
758
|
-
declare function AreasFull({ title, areas, classes }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
756
|
+
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
759
757
|
|
|
760
758
|
interface ICatalogNewProjectsProps {
|
|
761
759
|
classes?: string;
|
|
760
|
+
href: string;
|
|
762
761
|
}
|
|
763
|
-
declare function CatalogNewProjects({ classes, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
|
|
762
|
+
declare function CatalogNewProjects({ classes, href, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
|
|
764
763
|
|
|
765
764
|
interface NewProjectCardProps {
|
|
766
765
|
slug: string;
|
|
@@ -770,21 +769,24 @@ interface NewProjectCardProps {
|
|
|
770
769
|
price: string;
|
|
771
770
|
developer: string;
|
|
772
771
|
houseTypes: string[];
|
|
772
|
+
href: string;
|
|
773
773
|
}
|
|
774
774
|
|
|
775
775
|
interface IProjectsSliderProps$1 {
|
|
776
776
|
classes?: string;
|
|
777
777
|
projects?: NewProjectCardProps[];
|
|
778
778
|
title: string;
|
|
779
|
+
href: string;
|
|
779
780
|
}
|
|
780
|
-
declare function ProjectsSlider({ classes, projects, title, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
|
|
781
|
+
declare function ProjectsSlider({ classes, projects, title, href, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
|
|
781
782
|
|
|
782
783
|
interface IProjectsSliderProps {
|
|
783
784
|
classes?: string;
|
|
784
785
|
areas?: IArea[];
|
|
785
786
|
title: string;
|
|
787
|
+
href: string;
|
|
786
788
|
}
|
|
787
|
-
declare function AreasSlider({ classes, areas, title, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
|
|
789
|
+
declare function AreasSlider({ classes, areas, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
|
|
788
790
|
|
|
789
791
|
interface IDeveloperCardProps {
|
|
790
792
|
classes?: string;
|
|
@@ -792,14 +794,16 @@ interface IDeveloperCardProps {
|
|
|
792
794
|
title: string;
|
|
793
795
|
text: string;
|
|
794
796
|
slug: string;
|
|
797
|
+
href: string;
|
|
795
798
|
}
|
|
796
799
|
|
|
797
800
|
interface IDevelopersSliderProps {
|
|
798
801
|
classes?: string;
|
|
799
802
|
developers?: IDeveloperCardProps[];
|
|
800
803
|
title: string;
|
|
804
|
+
href: string;
|
|
801
805
|
}
|
|
802
|
-
declare function DevelopersSlider({ classes, developers, title, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
806
|
+
declare function DevelopersSlider({ classes, developers, title, href, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
803
807
|
|
|
804
808
|
interface IDeveloperItem {
|
|
805
809
|
img: string;
|
|
@@ -810,8 +814,9 @@ interface IDevelopersProps {
|
|
|
810
814
|
classes?: string;
|
|
811
815
|
title?: string;
|
|
812
816
|
items?: IDeveloperItem[];
|
|
817
|
+
href: string;
|
|
813
818
|
}
|
|
814
|
-
declare function Developers({ classes, items, title, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
819
|
+
declare function Developers({ classes, items, title, href, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
815
820
|
|
|
816
821
|
interface IDeveloperBannerProps {
|
|
817
822
|
classes?: string;
|
|
@@ -1155,4 +1160,4 @@ interface ListItemProps {
|
|
|
1155
1160
|
}
|
|
1156
1161
|
declare const ListItem: FC<ListItemProps>;
|
|
1157
1162
|
|
|
1158
|
-
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer,
|
|
1163
|
+
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, 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
|
@@ -121,6 +121,7 @@ interface IArticle {
|
|
|
121
121
|
title?: string;
|
|
122
122
|
text?: string;
|
|
123
123
|
slug?: string;
|
|
124
|
+
href: string;
|
|
124
125
|
}
|
|
125
126
|
|
|
126
127
|
interface IArticlesBlock {
|
|
@@ -129,16 +130,18 @@ interface IArticlesBlock {
|
|
|
129
130
|
button?: boolean;
|
|
130
131
|
titlePosition?: TitlePosition$1;
|
|
131
132
|
articles?: IArticle[];
|
|
133
|
+
href: string;
|
|
132
134
|
}
|
|
133
|
-
declare function ArticlesBlock({ title, classes, button, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
|
|
135
|
+
declare function ArticlesBlock({ title, classes, button, articles, href, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
|
|
134
136
|
|
|
135
137
|
interface IArticlesFull$1 {
|
|
136
138
|
classes?: string;
|
|
137
139
|
title?: string;
|
|
138
140
|
articles?: IArticle[];
|
|
139
141
|
totalArticles?: number;
|
|
142
|
+
href: string;
|
|
140
143
|
}
|
|
141
|
-
declare function ArticlesFull({ title, articles, classes, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
|
|
144
|
+
declare function ArticlesFull({ title, articles, classes, href, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
|
|
142
145
|
|
|
143
146
|
interface IBannerBlock {
|
|
144
147
|
videoLink?: string;
|
|
@@ -226,16 +229,6 @@ interface IBlockAboutCareer {
|
|
|
226
229
|
}
|
|
227
230
|
declare function BlockAboutCareer({ title, classes, videoLink, }: IBlockAboutCareer): react_jsx_runtime.JSX.Element;
|
|
228
231
|
|
|
229
|
-
interface IBlockCardContent {
|
|
230
|
-
classes?: string;
|
|
231
|
-
turn?: 'right' | 'left';
|
|
232
|
-
title?: string;
|
|
233
|
-
text?: string;
|
|
234
|
-
imageUrl?: string;
|
|
235
|
-
buttonLink?: boolean;
|
|
236
|
-
}
|
|
237
|
-
declare function BlockCardContent({ classes, turn, title, imageUrl, text, buttonLink, }: IBlockCardContent): react_jsx_runtime.JSX.Element;
|
|
238
|
-
|
|
239
232
|
interface IBlockChoiceLinkGoToCatalog {
|
|
240
233
|
classes?: string;
|
|
241
234
|
}
|
|
@@ -452,14 +445,16 @@ interface IOpenVacancies {
|
|
|
452
445
|
title?: string;
|
|
453
446
|
classes?: string;
|
|
454
447
|
vacancies?: IVacancy[];
|
|
448
|
+
href: string;
|
|
455
449
|
}
|
|
456
|
-
declare function OpenVacancies({ title, vacancies, classes, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
450
|
+
declare function OpenVacancies({ title, vacancies, classes, href, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
457
451
|
|
|
458
452
|
interface IOtherVacancies {
|
|
459
453
|
vacancies?: IVacancy[];
|
|
460
454
|
classes?: string;
|
|
455
|
+
href: string;
|
|
461
456
|
}
|
|
462
|
-
declare function OtherVacancies({ vacancies, classes, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
457
|
+
declare function OtherVacancies({ vacancies, classes, href, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
463
458
|
|
|
464
459
|
interface IBlock {
|
|
465
460
|
strongText?: string;
|
|
@@ -496,8 +491,9 @@ interface IPopularAreasProps {
|
|
|
496
491
|
rows?: number;
|
|
497
492
|
cols?: number;
|
|
498
493
|
}[];
|
|
494
|
+
href: string;
|
|
499
495
|
}
|
|
500
|
-
declare function PopularAreas({ classes, items, title, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
496
|
+
declare function PopularAreas({ classes, items, title, href, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
501
497
|
|
|
502
498
|
interface IBoxItem$2 {
|
|
503
499
|
img?: string;
|
|
@@ -747,6 +743,7 @@ interface IArea {
|
|
|
747
743
|
price?: string;
|
|
748
744
|
slug?: string;
|
|
749
745
|
whiteBottom?: boolean;
|
|
746
|
+
href: string;
|
|
750
747
|
}
|
|
751
748
|
|
|
752
749
|
interface IArticlesFull {
|
|
@@ -754,13 +751,15 @@ interface IArticlesFull {
|
|
|
754
751
|
title?: string;
|
|
755
752
|
areas?: IArea[];
|
|
756
753
|
totalAreas?: number;
|
|
754
|
+
href: string;
|
|
757
755
|
}
|
|
758
|
-
declare function AreasFull({ title, areas, classes }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
756
|
+
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
759
757
|
|
|
760
758
|
interface ICatalogNewProjectsProps {
|
|
761
759
|
classes?: string;
|
|
760
|
+
href: string;
|
|
762
761
|
}
|
|
763
|
-
declare function CatalogNewProjects({ classes, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
|
|
762
|
+
declare function CatalogNewProjects({ classes, href, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
|
|
764
763
|
|
|
765
764
|
interface NewProjectCardProps {
|
|
766
765
|
slug: string;
|
|
@@ -770,21 +769,24 @@ interface NewProjectCardProps {
|
|
|
770
769
|
price: string;
|
|
771
770
|
developer: string;
|
|
772
771
|
houseTypes: string[];
|
|
772
|
+
href: string;
|
|
773
773
|
}
|
|
774
774
|
|
|
775
775
|
interface IProjectsSliderProps$1 {
|
|
776
776
|
classes?: string;
|
|
777
777
|
projects?: NewProjectCardProps[];
|
|
778
778
|
title: string;
|
|
779
|
+
href: string;
|
|
779
780
|
}
|
|
780
|
-
declare function ProjectsSlider({ classes, projects, title, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
|
|
781
|
+
declare function ProjectsSlider({ classes, projects, title, href, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
|
|
781
782
|
|
|
782
783
|
interface IProjectsSliderProps {
|
|
783
784
|
classes?: string;
|
|
784
785
|
areas?: IArea[];
|
|
785
786
|
title: string;
|
|
787
|
+
href: string;
|
|
786
788
|
}
|
|
787
|
-
declare function AreasSlider({ classes, areas, title, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
|
|
789
|
+
declare function AreasSlider({ classes, areas, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
|
|
788
790
|
|
|
789
791
|
interface IDeveloperCardProps {
|
|
790
792
|
classes?: string;
|
|
@@ -792,14 +794,16 @@ interface IDeveloperCardProps {
|
|
|
792
794
|
title: string;
|
|
793
795
|
text: string;
|
|
794
796
|
slug: string;
|
|
797
|
+
href: string;
|
|
795
798
|
}
|
|
796
799
|
|
|
797
800
|
interface IDevelopersSliderProps {
|
|
798
801
|
classes?: string;
|
|
799
802
|
developers?: IDeveloperCardProps[];
|
|
800
803
|
title: string;
|
|
804
|
+
href: string;
|
|
801
805
|
}
|
|
802
|
-
declare function DevelopersSlider({ classes, developers, title, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
806
|
+
declare function DevelopersSlider({ classes, developers, title, href, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
803
807
|
|
|
804
808
|
interface IDeveloperItem {
|
|
805
809
|
img: string;
|
|
@@ -810,8 +814,9 @@ interface IDevelopersProps {
|
|
|
810
814
|
classes?: string;
|
|
811
815
|
title?: string;
|
|
812
816
|
items?: IDeveloperItem[];
|
|
817
|
+
href: string;
|
|
813
818
|
}
|
|
814
|
-
declare function Developers({ classes, items, title, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
819
|
+
declare function Developers({ classes, items, title, href, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
815
820
|
|
|
816
821
|
interface IDeveloperBannerProps {
|
|
817
822
|
classes?: string;
|
|
@@ -1155,4 +1160,4 @@ interface ListItemProps {
|
|
|
1155
1160
|
}
|
|
1156
1161
|
declare const ListItem: FC<ListItemProps>;
|
|
1157
1162
|
|
|
1158
|
-
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer,
|
|
1163
|
+
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, 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 };
|