mayak-common-library 0.0.367 → 0.0.369
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 +90 -54
- package/dist/index.d.ts +90 -54
- package/dist/index.js +9 -9
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -50,10 +50,6 @@ declare const SITE: {
|
|
|
50
50
|
};
|
|
51
51
|
type Site = (typeof SITE)[keyof typeof SITE];
|
|
52
52
|
type TitlePosition = 'center' | 'left';
|
|
53
|
-
type BreadCrumbsItem = {
|
|
54
|
-
name: string;
|
|
55
|
-
path: string;
|
|
56
|
-
};
|
|
57
53
|
|
|
58
54
|
interface IWorker$1 {
|
|
59
55
|
imageUrl?: string;
|
|
@@ -955,6 +951,93 @@ interface TwoTextColumnProps {
|
|
|
955
951
|
}
|
|
956
952
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
957
953
|
|
|
954
|
+
interface RealtyTitleProps {
|
|
955
|
+
title: string;
|
|
956
|
+
article: string;
|
|
957
|
+
}
|
|
958
|
+
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
959
|
+
|
|
960
|
+
interface RealtyPriceProps {
|
|
961
|
+
realtyForRent?: boolean;
|
|
962
|
+
price: string;
|
|
963
|
+
currencySwitcher?: ReactNode;
|
|
964
|
+
}
|
|
965
|
+
declare const RealtyPrice: FC<RealtyPriceProps>;
|
|
966
|
+
|
|
967
|
+
declare enum ESTagEnum {
|
|
968
|
+
Borough = "borough",
|
|
969
|
+
District = "district",
|
|
970
|
+
City = "city",
|
|
971
|
+
Metro = "metro",
|
|
972
|
+
Street = "street",
|
|
973
|
+
Complex = "complex",
|
|
974
|
+
Region = "region",
|
|
975
|
+
Property = "property",
|
|
976
|
+
Town = "town",
|
|
977
|
+
County = "county"
|
|
978
|
+
}
|
|
979
|
+
type ESTag = 'borough' | 'district' | 'city' | 'metro' | 'street' | 'housing' | 'region' | 'property';
|
|
980
|
+
interface ESObject {
|
|
981
|
+
id: number;
|
|
982
|
+
slug: string;
|
|
983
|
+
tag: ESTag;
|
|
984
|
+
value_en: string;
|
|
985
|
+
value_ru: string;
|
|
986
|
+
value_uk: string;
|
|
987
|
+
}
|
|
988
|
+
interface ESGlobalObject extends ESObject {
|
|
989
|
+
crmId?: number;
|
|
990
|
+
countryId?: number;
|
|
991
|
+
boroughId?: number;
|
|
992
|
+
borough_crmid?: number;
|
|
993
|
+
borough_en?: string;
|
|
994
|
+
borough_ru?: string;
|
|
995
|
+
borough_ua?: string;
|
|
996
|
+
cityId?: number;
|
|
997
|
+
city_crmid?: number;
|
|
998
|
+
city_en?: string;
|
|
999
|
+
city_ru?: string;
|
|
1000
|
+
city_uk?: string;
|
|
1001
|
+
districtId?: number;
|
|
1002
|
+
district_crmid?: number;
|
|
1003
|
+
district_en?: string;
|
|
1004
|
+
district_ru?: string;
|
|
1005
|
+
district_uk?: string;
|
|
1006
|
+
regionId?: number;
|
|
1007
|
+
region_crmid?: number;
|
|
1008
|
+
region_en?: string;
|
|
1009
|
+
region_ru?: string;
|
|
1010
|
+
region_uk?: string;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
type MenuItem = {
|
|
1014
|
+
path: string;
|
|
1015
|
+
title: string;
|
|
1016
|
+
};
|
|
1017
|
+
interface IFooter {
|
|
1018
|
+
instagram?: string;
|
|
1019
|
+
facebook?: string;
|
|
1020
|
+
youtube?: string;
|
|
1021
|
+
linkedIn?: string;
|
|
1022
|
+
menuItems: MenuItem[];
|
|
1023
|
+
mainPhone?: string;
|
|
1024
|
+
site: Site;
|
|
1025
|
+
homePage: string;
|
|
1026
|
+
}
|
|
1027
|
+
type BreadCrumbsItem = {
|
|
1028
|
+
label: string;
|
|
1029
|
+
path: string;
|
|
1030
|
+
tag?: ESTagEnum;
|
|
1031
|
+
};
|
|
1032
|
+
|
|
1033
|
+
interface RealtyAddressProps {
|
|
1034
|
+
address: string;
|
|
1035
|
+
addressLinks: BreadCrumbsItem[];
|
|
1036
|
+
metros: BreadCrumbsItem[];
|
|
1037
|
+
city: BreadCrumbsItem;
|
|
1038
|
+
}
|
|
1039
|
+
declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
1040
|
+
|
|
958
1041
|
interface CatalogContainerProps {
|
|
959
1042
|
className?: string;
|
|
960
1043
|
}
|
|
@@ -1020,21 +1103,6 @@ type Modal = ModalSlice & ModalActions;
|
|
|
1020
1103
|
declare const createModalSlice: StateCreator<Modal>;
|
|
1021
1104
|
declare const useLayoutStore: zustand.UseBoundStore<zustand.StoreApi<Modal>>;
|
|
1022
1105
|
|
|
1023
|
-
type MenuItem = {
|
|
1024
|
-
path: string;
|
|
1025
|
-
title: string;
|
|
1026
|
-
};
|
|
1027
|
-
interface IFooter {
|
|
1028
|
-
instagram?: string;
|
|
1029
|
-
facebook?: string;
|
|
1030
|
-
youtube?: string;
|
|
1031
|
-
linkedIn?: string;
|
|
1032
|
-
menuItems: MenuItem[];
|
|
1033
|
-
mainPhone?: string;
|
|
1034
|
-
site: Site;
|
|
1035
|
-
homePage: string;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
1106
|
interface IHeaderProps {
|
|
1039
1107
|
menuItems: MenuItem[];
|
|
1040
1108
|
mainPhone?: string;
|
|
@@ -1106,40 +1174,6 @@ interface CustomIconButtonProps extends IconButtonProps, PropsWithChildren {
|
|
|
1106
1174
|
}
|
|
1107
1175
|
declare const IconButton: FC<CustomIconButtonProps>;
|
|
1108
1176
|
|
|
1109
|
-
type ESTag = 'borough' | 'district' | 'city' | 'metro' | 'street' | 'housing' | 'region' | 'property';
|
|
1110
|
-
interface ESObject {
|
|
1111
|
-
id: number;
|
|
1112
|
-
slug: string;
|
|
1113
|
-
tag: ESTag;
|
|
1114
|
-
value_en: string;
|
|
1115
|
-
value_ru: string;
|
|
1116
|
-
value_uk: string;
|
|
1117
|
-
}
|
|
1118
|
-
interface ESGlobalObject extends ESObject {
|
|
1119
|
-
crmId?: number;
|
|
1120
|
-
countryId?: number;
|
|
1121
|
-
boroughId?: number;
|
|
1122
|
-
borough_crmid?: number;
|
|
1123
|
-
borough_en?: string;
|
|
1124
|
-
borough_ru?: string;
|
|
1125
|
-
borough_ua?: string;
|
|
1126
|
-
cityId?: number;
|
|
1127
|
-
city_crmid?: number;
|
|
1128
|
-
city_en?: string;
|
|
1129
|
-
city_ru?: string;
|
|
1130
|
-
city_uk?: string;
|
|
1131
|
-
districtId?: number;
|
|
1132
|
-
district_crmid?: number;
|
|
1133
|
-
district_en?: string;
|
|
1134
|
-
district_ru?: string;
|
|
1135
|
-
district_uk?: string;
|
|
1136
|
-
regionId?: number;
|
|
1137
|
-
region_crmid?: number;
|
|
1138
|
-
region_en?: string;
|
|
1139
|
-
region_ru?: string;
|
|
1140
|
-
region_uk?: string;
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
1177
|
declare enum MACHINE_NAME {
|
|
1144
1178
|
RESIDENTIAL = "residential",
|
|
1145
1179
|
COMMERCE = "commerce",
|
|
@@ -1448,6 +1482,8 @@ interface HProps extends PropsWithChildren {
|
|
|
1448
1482
|
smallerXs?: boolean;
|
|
1449
1483
|
leftXs?: boolean;
|
|
1450
1484
|
bold?: boolean;
|
|
1485
|
+
uppercase?: boolean;
|
|
1486
|
+
catalog?: boolean;
|
|
1451
1487
|
}
|
|
1452
1488
|
|
|
1453
1489
|
declare const H1: FC<HProps>;
|
|
@@ -1568,4 +1604,4 @@ interface FeedbackCardProps {
|
|
|
1568
1604
|
}
|
|
1569
1605
|
declare const FeedbackCard: FC<FeedbackCardProps>;
|
|
1570
1606
|
|
|
1571
|
-
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreaCard, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, BreadCrumbs, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogCategoriesBlock, CatalogContainer, CatalogNewProjects, CatalogViewSwitch, CategoryCard, Checkbox, Chip, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FeedbackCard, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, Gallery, 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, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
|
1607
|
+
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreaCard, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, BreadCrumbs, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogCategoriesBlock, CatalogContainer, CatalogNewProjects, CatalogViewSwitch, CategoryCard, Checkbox, Chip, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FeedbackCard, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, Gallery, 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, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyAddress, RealtyCard, RealtyPrice, RealtyTitle, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -50,10 +50,6 @@ declare const SITE: {
|
|
|
50
50
|
};
|
|
51
51
|
type Site = (typeof SITE)[keyof typeof SITE];
|
|
52
52
|
type TitlePosition = 'center' | 'left';
|
|
53
|
-
type BreadCrumbsItem = {
|
|
54
|
-
name: string;
|
|
55
|
-
path: string;
|
|
56
|
-
};
|
|
57
53
|
|
|
58
54
|
interface IWorker$1 {
|
|
59
55
|
imageUrl?: string;
|
|
@@ -955,6 +951,93 @@ interface TwoTextColumnProps {
|
|
|
955
951
|
}
|
|
956
952
|
declare const TwoTextColumn: FC<TwoTextColumnProps>;
|
|
957
953
|
|
|
954
|
+
interface RealtyTitleProps {
|
|
955
|
+
title: string;
|
|
956
|
+
article: string;
|
|
957
|
+
}
|
|
958
|
+
declare const RealtyTitle: FC<RealtyTitleProps>;
|
|
959
|
+
|
|
960
|
+
interface RealtyPriceProps {
|
|
961
|
+
realtyForRent?: boolean;
|
|
962
|
+
price: string;
|
|
963
|
+
currencySwitcher?: ReactNode;
|
|
964
|
+
}
|
|
965
|
+
declare const RealtyPrice: FC<RealtyPriceProps>;
|
|
966
|
+
|
|
967
|
+
declare enum ESTagEnum {
|
|
968
|
+
Borough = "borough",
|
|
969
|
+
District = "district",
|
|
970
|
+
City = "city",
|
|
971
|
+
Metro = "metro",
|
|
972
|
+
Street = "street",
|
|
973
|
+
Complex = "complex",
|
|
974
|
+
Region = "region",
|
|
975
|
+
Property = "property",
|
|
976
|
+
Town = "town",
|
|
977
|
+
County = "county"
|
|
978
|
+
}
|
|
979
|
+
type ESTag = 'borough' | 'district' | 'city' | 'metro' | 'street' | 'housing' | 'region' | 'property';
|
|
980
|
+
interface ESObject {
|
|
981
|
+
id: number;
|
|
982
|
+
slug: string;
|
|
983
|
+
tag: ESTag;
|
|
984
|
+
value_en: string;
|
|
985
|
+
value_ru: string;
|
|
986
|
+
value_uk: string;
|
|
987
|
+
}
|
|
988
|
+
interface ESGlobalObject extends ESObject {
|
|
989
|
+
crmId?: number;
|
|
990
|
+
countryId?: number;
|
|
991
|
+
boroughId?: number;
|
|
992
|
+
borough_crmid?: number;
|
|
993
|
+
borough_en?: string;
|
|
994
|
+
borough_ru?: string;
|
|
995
|
+
borough_ua?: string;
|
|
996
|
+
cityId?: number;
|
|
997
|
+
city_crmid?: number;
|
|
998
|
+
city_en?: string;
|
|
999
|
+
city_ru?: string;
|
|
1000
|
+
city_uk?: string;
|
|
1001
|
+
districtId?: number;
|
|
1002
|
+
district_crmid?: number;
|
|
1003
|
+
district_en?: string;
|
|
1004
|
+
district_ru?: string;
|
|
1005
|
+
district_uk?: string;
|
|
1006
|
+
regionId?: number;
|
|
1007
|
+
region_crmid?: number;
|
|
1008
|
+
region_en?: string;
|
|
1009
|
+
region_ru?: string;
|
|
1010
|
+
region_uk?: string;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
type MenuItem = {
|
|
1014
|
+
path: string;
|
|
1015
|
+
title: string;
|
|
1016
|
+
};
|
|
1017
|
+
interface IFooter {
|
|
1018
|
+
instagram?: string;
|
|
1019
|
+
facebook?: string;
|
|
1020
|
+
youtube?: string;
|
|
1021
|
+
linkedIn?: string;
|
|
1022
|
+
menuItems: MenuItem[];
|
|
1023
|
+
mainPhone?: string;
|
|
1024
|
+
site: Site;
|
|
1025
|
+
homePage: string;
|
|
1026
|
+
}
|
|
1027
|
+
type BreadCrumbsItem = {
|
|
1028
|
+
label: string;
|
|
1029
|
+
path: string;
|
|
1030
|
+
tag?: ESTagEnum;
|
|
1031
|
+
};
|
|
1032
|
+
|
|
1033
|
+
interface RealtyAddressProps {
|
|
1034
|
+
address: string;
|
|
1035
|
+
addressLinks: BreadCrumbsItem[];
|
|
1036
|
+
metros: BreadCrumbsItem[];
|
|
1037
|
+
city: BreadCrumbsItem;
|
|
1038
|
+
}
|
|
1039
|
+
declare const RealtyAddress: FC<RealtyAddressProps>;
|
|
1040
|
+
|
|
958
1041
|
interface CatalogContainerProps {
|
|
959
1042
|
className?: string;
|
|
960
1043
|
}
|
|
@@ -1020,21 +1103,6 @@ type Modal = ModalSlice & ModalActions;
|
|
|
1020
1103
|
declare const createModalSlice: StateCreator<Modal>;
|
|
1021
1104
|
declare const useLayoutStore: zustand.UseBoundStore<zustand.StoreApi<Modal>>;
|
|
1022
1105
|
|
|
1023
|
-
type MenuItem = {
|
|
1024
|
-
path: string;
|
|
1025
|
-
title: string;
|
|
1026
|
-
};
|
|
1027
|
-
interface IFooter {
|
|
1028
|
-
instagram?: string;
|
|
1029
|
-
facebook?: string;
|
|
1030
|
-
youtube?: string;
|
|
1031
|
-
linkedIn?: string;
|
|
1032
|
-
menuItems: MenuItem[];
|
|
1033
|
-
mainPhone?: string;
|
|
1034
|
-
site: Site;
|
|
1035
|
-
homePage: string;
|
|
1036
|
-
}
|
|
1037
|
-
|
|
1038
1106
|
interface IHeaderProps {
|
|
1039
1107
|
menuItems: MenuItem[];
|
|
1040
1108
|
mainPhone?: string;
|
|
@@ -1106,40 +1174,6 @@ interface CustomIconButtonProps extends IconButtonProps, PropsWithChildren {
|
|
|
1106
1174
|
}
|
|
1107
1175
|
declare const IconButton: FC<CustomIconButtonProps>;
|
|
1108
1176
|
|
|
1109
|
-
type ESTag = 'borough' | 'district' | 'city' | 'metro' | 'street' | 'housing' | 'region' | 'property';
|
|
1110
|
-
interface ESObject {
|
|
1111
|
-
id: number;
|
|
1112
|
-
slug: string;
|
|
1113
|
-
tag: ESTag;
|
|
1114
|
-
value_en: string;
|
|
1115
|
-
value_ru: string;
|
|
1116
|
-
value_uk: string;
|
|
1117
|
-
}
|
|
1118
|
-
interface ESGlobalObject extends ESObject {
|
|
1119
|
-
crmId?: number;
|
|
1120
|
-
countryId?: number;
|
|
1121
|
-
boroughId?: number;
|
|
1122
|
-
borough_crmid?: number;
|
|
1123
|
-
borough_en?: string;
|
|
1124
|
-
borough_ru?: string;
|
|
1125
|
-
borough_ua?: string;
|
|
1126
|
-
cityId?: number;
|
|
1127
|
-
city_crmid?: number;
|
|
1128
|
-
city_en?: string;
|
|
1129
|
-
city_ru?: string;
|
|
1130
|
-
city_uk?: string;
|
|
1131
|
-
districtId?: number;
|
|
1132
|
-
district_crmid?: number;
|
|
1133
|
-
district_en?: string;
|
|
1134
|
-
district_ru?: string;
|
|
1135
|
-
district_uk?: string;
|
|
1136
|
-
regionId?: number;
|
|
1137
|
-
region_crmid?: number;
|
|
1138
|
-
region_en?: string;
|
|
1139
|
-
region_ru?: string;
|
|
1140
|
-
region_uk?: string;
|
|
1141
|
-
}
|
|
1142
|
-
|
|
1143
1177
|
declare enum MACHINE_NAME {
|
|
1144
1178
|
RESIDENTIAL = "residential",
|
|
1145
1179
|
COMMERCE = "commerce",
|
|
@@ -1448,6 +1482,8 @@ interface HProps extends PropsWithChildren {
|
|
|
1448
1482
|
smallerXs?: boolean;
|
|
1449
1483
|
leftXs?: boolean;
|
|
1450
1484
|
bold?: boolean;
|
|
1485
|
+
uppercase?: boolean;
|
|
1486
|
+
catalog?: boolean;
|
|
1451
1487
|
}
|
|
1452
1488
|
|
|
1453
1489
|
declare const H1: FC<HProps>;
|
|
@@ -1568,4 +1604,4 @@ interface FeedbackCardProps {
|
|
|
1568
1604
|
}
|
|
1569
1605
|
declare const FeedbackCard: FC<FeedbackCardProps>;
|
|
1570
1606
|
|
|
1571
|
-
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreaCard, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, BreadCrumbs, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogCategoriesBlock, CatalogContainer, CatalogNewProjects, CatalogViewSwitch, CategoryCard, Checkbox, Chip, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FeedbackCard, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, Gallery, 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, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
|
1607
|
+
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreaCard, AreasFull, AreasSlider, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, BreadCrumbs, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogCategoriesBlock, CatalogContainer, CatalogNewProjects, CatalogViewSwitch, CategoryCard, Checkbox, Chip, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, DevelopersFull, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FeedbackCard, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, Gallery, 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, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyAddress, RealtyCard, RealtyPrice, RealtyTitle, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|