mayak-common-library 0.0.222 → 0.0.224
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 +7 -7
- package/dist/index.d.ts +7 -7
- package/dist/index.js +7 -7
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
- package/styles/common.scss +4 -0
- package/tailwind.config.js +2 -0
package/dist/index.d.mts
CHANGED
|
@@ -767,10 +767,9 @@ interface GalleryBlockProps {
|
|
|
767
767
|
}
|
|
768
768
|
declare const GalleryBlock: FC<GalleryBlockProps>;
|
|
769
769
|
|
|
770
|
-
|
|
770
|
+
declare function ContactDubaiBlock({ classes }: {
|
|
771
771
|
classes?: string;
|
|
772
|
-
}
|
|
773
|
-
declare function ContactDubaiBlock({ classes }: ContactDubaiBlockProps): react_jsx_runtime.JSX.Element;
|
|
772
|
+
}): react_jsx_runtime.JSX.Element;
|
|
774
773
|
|
|
775
774
|
interface IArea {
|
|
776
775
|
imageUrl?: string;
|
|
@@ -838,13 +837,14 @@ interface IDeveloperItem {
|
|
|
838
837
|
text?: string;
|
|
839
838
|
slug?: string;
|
|
840
839
|
}
|
|
841
|
-
interface
|
|
840
|
+
interface IDevelopersFull {
|
|
842
841
|
classes?: string;
|
|
843
842
|
title?: string;
|
|
844
|
-
|
|
843
|
+
devs?: IDeveloperItem[];
|
|
844
|
+
totalAreas?: number;
|
|
845
845
|
href: string;
|
|
846
846
|
}
|
|
847
|
-
declare function
|
|
847
|
+
declare function DevelopersFull({ title, devs, classes, href, }: IDevelopersFull): react_jsx_runtime.JSX.Element;
|
|
848
848
|
|
|
849
849
|
interface IDeveloperBannerProps {
|
|
850
850
|
classes?: string;
|
|
@@ -1348,4 +1348,4 @@ interface ISliderObject {
|
|
|
1348
1348
|
}
|
|
1349
1349
|
declare const SliderObject: ({ images }: ISliderObject) => react_jsx_runtime.JSX.Element;
|
|
1350
1350
|
|
|
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,
|
|
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -767,10 +767,9 @@ interface GalleryBlockProps {
|
|
|
767
767
|
}
|
|
768
768
|
declare const GalleryBlock: FC<GalleryBlockProps>;
|
|
769
769
|
|
|
770
|
-
|
|
770
|
+
declare function ContactDubaiBlock({ classes }: {
|
|
771
771
|
classes?: string;
|
|
772
|
-
}
|
|
773
|
-
declare function ContactDubaiBlock({ classes }: ContactDubaiBlockProps): react_jsx_runtime.JSX.Element;
|
|
772
|
+
}): react_jsx_runtime.JSX.Element;
|
|
774
773
|
|
|
775
774
|
interface IArea {
|
|
776
775
|
imageUrl?: string;
|
|
@@ -838,13 +837,14 @@ interface IDeveloperItem {
|
|
|
838
837
|
text?: string;
|
|
839
838
|
slug?: string;
|
|
840
839
|
}
|
|
841
|
-
interface
|
|
840
|
+
interface IDevelopersFull {
|
|
842
841
|
classes?: string;
|
|
843
842
|
title?: string;
|
|
844
|
-
|
|
843
|
+
devs?: IDeveloperItem[];
|
|
844
|
+
totalAreas?: number;
|
|
845
845
|
href: string;
|
|
846
846
|
}
|
|
847
|
-
declare function
|
|
847
|
+
declare function DevelopersFull({ title, devs, classes, href, }: IDevelopersFull): react_jsx_runtime.JSX.Element;
|
|
848
848
|
|
|
849
849
|
interface IDeveloperBannerProps {
|
|
850
850
|
classes?: string;
|
|
@@ -1348,4 +1348,4 @@ interface ISliderObject {
|
|
|
1348
1348
|
}
|
|
1349
1349
|
declare const SliderObject: ({ images }: ISliderObject) => react_jsx_runtime.JSX.Element;
|
|
1350
1350
|
|
|
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,
|
|
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 };
|