mayak-common-library 0.0.312 → 0.0.313
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 +10 -3
- package/dist/index.d.ts +10 -3
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -367,12 +367,12 @@ interface ICategoryCard {
|
|
|
367
367
|
text?: string;
|
|
368
368
|
link?: string;
|
|
369
369
|
}
|
|
370
|
-
interface
|
|
370
|
+
interface CatalogCategoriesBlockProps {
|
|
371
371
|
title?: string;
|
|
372
372
|
categories?: ICategoryCard[];
|
|
373
373
|
classes?: string;
|
|
374
374
|
}
|
|
375
|
-
declare function
|
|
375
|
+
declare function CatalogCategoriesBlock({ title, categories, classes, }: CatalogCategoriesBlockProps): react_jsx_runtime.JSX.Element;
|
|
376
376
|
|
|
377
377
|
interface IBoxItem$3 {
|
|
378
378
|
label?: string;
|
|
@@ -1505,6 +1505,13 @@ interface IRealtorCard {
|
|
|
1505
1505
|
}
|
|
1506
1506
|
declare const RealtorCard: FC<IRealtorCard>;
|
|
1507
1507
|
|
|
1508
|
+
interface CategoryCardProps {
|
|
1509
|
+
image_url: string;
|
|
1510
|
+
title: string;
|
|
1511
|
+
link: string;
|
|
1512
|
+
}
|
|
1513
|
+
declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
|
|
1514
|
+
|
|
1508
1515
|
interface IRealtyCard extends IRealty {
|
|
1509
1516
|
classes?: string;
|
|
1510
1517
|
titleClasses?: string;
|
|
@@ -1514,4 +1521,4 @@ interface IRealtyCard extends IRealty {
|
|
|
1514
1521
|
}
|
|
1515
1522
|
declare function RealtyCard({ classes, titleClasses, imageUrl, address, district, metro, price, dealId, houseNumber, residentialComplexName, areaTotal, totalFloors, floor, city, rooms, slug, borough, region, cityCrmId, areaLand, realtyType, title, href, mainCityCrmId, studio, tags, }: IRealtyCard): react_jsx_runtime.JSX.Element;
|
|
1516
1523
|
|
|
1517
|
-
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, CatalogContainer, CatalogNewProjects,
|
|
1524
|
+
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, Chip, 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, NewProjectCard, NumberInput, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, 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
|
@@ -367,12 +367,12 @@ interface ICategoryCard {
|
|
|
367
367
|
text?: string;
|
|
368
368
|
link?: string;
|
|
369
369
|
}
|
|
370
|
-
interface
|
|
370
|
+
interface CatalogCategoriesBlockProps {
|
|
371
371
|
title?: string;
|
|
372
372
|
categories?: ICategoryCard[];
|
|
373
373
|
classes?: string;
|
|
374
374
|
}
|
|
375
|
-
declare function
|
|
375
|
+
declare function CatalogCategoriesBlock({ title, categories, classes, }: CatalogCategoriesBlockProps): react_jsx_runtime.JSX.Element;
|
|
376
376
|
|
|
377
377
|
interface IBoxItem$3 {
|
|
378
378
|
label?: string;
|
|
@@ -1505,6 +1505,13 @@ interface IRealtorCard {
|
|
|
1505
1505
|
}
|
|
1506
1506
|
declare const RealtorCard: FC<IRealtorCard>;
|
|
1507
1507
|
|
|
1508
|
+
interface CategoryCardProps {
|
|
1509
|
+
image_url: string;
|
|
1510
|
+
title: string;
|
|
1511
|
+
link: string;
|
|
1512
|
+
}
|
|
1513
|
+
declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
|
|
1514
|
+
|
|
1508
1515
|
interface IRealtyCard extends IRealty {
|
|
1509
1516
|
classes?: string;
|
|
1510
1517
|
titleClasses?: string;
|
|
@@ -1514,4 +1521,4 @@ interface IRealtyCard extends IRealty {
|
|
|
1514
1521
|
}
|
|
1515
1522
|
declare function RealtyCard({ classes, titleClasses, imageUrl, address, district, metro, price, dealId, houseNumber, residentialComplexName, areaTotal, totalFloors, floor, city, rooms, slug, borough, region, cityCrmId, areaLand, realtyType, title, href, mainCityCrmId, studio, tags, }: IRealtyCard): react_jsx_runtime.JSX.Element;
|
|
1516
1523
|
|
|
1517
|
-
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, CatalogContainer, CatalogNewProjects,
|
|
1524
|
+
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, Chip, 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, NewProjectCard, NumberInput, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, Select, ServicesFull, ServicesTexts, SimpleSelect, 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 };
|