mayak-common-library 0.0.192 → 0.0.194
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 +23 -2
- package/dist/index.d.ts +23 -2
- package/dist/index.js +7 -7
- package/dist/index.mjs +7 -7
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -926,8 +926,9 @@ interface IHeaderProps {
|
|
|
926
926
|
site: Site;
|
|
927
927
|
homePage: string;
|
|
928
928
|
whatsUp?: boolean;
|
|
929
|
+
defLocale: string;
|
|
929
930
|
}
|
|
930
|
-
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
931
|
+
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, defLocale }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
931
932
|
|
|
932
933
|
interface HeaderContactButtonProps {
|
|
933
934
|
onClick: MouseEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -1269,4 +1270,24 @@ interface IPaginatorSimpleProps {
|
|
|
1269
1270
|
}
|
|
1270
1271
|
declare function PaginatorSimple({ total }: IPaginatorSimpleProps): react_jsx_runtime.JSX.Element;
|
|
1271
1272
|
|
|
1272
|
-
|
|
1273
|
+
interface HProps extends PropsWithChildren {
|
|
1274
|
+
className?: string;
|
|
1275
|
+
smallerXs?: boolean;
|
|
1276
|
+
leftXs?: boolean;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
declare const H1: FC<HProps>;
|
|
1280
|
+
|
|
1281
|
+
declare const H1Big: FC<HProps>;
|
|
1282
|
+
|
|
1283
|
+
declare const H2: FC<HProps>;
|
|
1284
|
+
|
|
1285
|
+
declare const H3: FC<HProps>;
|
|
1286
|
+
|
|
1287
|
+
declare const H4: FC<HProps>;
|
|
1288
|
+
|
|
1289
|
+
declare const H5: FC<HProps>;
|
|
1290
|
+
|
|
1291
|
+
declare const H6: FC<HProps>;
|
|
1292
|
+
|
|
1293
|
+
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, Developers, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FloorPlansBlock, Footer, Footer2, FormBlock, FullScreenImage, GalleryBlock, GalleryRealty, H1, H1Big, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JoinTeamBlock, type LayoutStore, LegalSupport, 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, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, ThanksBlockWithButton, 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
|
@@ -926,8 +926,9 @@ interface IHeaderProps {
|
|
|
926
926
|
site: Site;
|
|
927
927
|
homePage: string;
|
|
928
928
|
whatsUp?: boolean;
|
|
929
|
+
defLocale: string;
|
|
929
930
|
}
|
|
930
|
-
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
931
|
+
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, defLocale }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
931
932
|
|
|
932
933
|
interface HeaderContactButtonProps {
|
|
933
934
|
onClick: MouseEventHandler<HTMLButtonElement> | undefined;
|
|
@@ -1269,4 +1270,24 @@ interface IPaginatorSimpleProps {
|
|
|
1269
1270
|
}
|
|
1270
1271
|
declare function PaginatorSimple({ total }: IPaginatorSimpleProps): react_jsx_runtime.JSX.Element;
|
|
1271
1272
|
|
|
1272
|
-
|
|
1273
|
+
interface HProps extends PropsWithChildren {
|
|
1274
|
+
className?: string;
|
|
1275
|
+
smallerXs?: boolean;
|
|
1276
|
+
leftXs?: boolean;
|
|
1277
|
+
}
|
|
1278
|
+
|
|
1279
|
+
declare const H1: FC<HProps>;
|
|
1280
|
+
|
|
1281
|
+
declare const H1Big: FC<HProps>;
|
|
1282
|
+
|
|
1283
|
+
declare const H2: FC<HProps>;
|
|
1284
|
+
|
|
1285
|
+
declare const H3: FC<HProps>;
|
|
1286
|
+
|
|
1287
|
+
declare const H4: FC<HProps>;
|
|
1288
|
+
|
|
1289
|
+
declare const H5: FC<HProps>;
|
|
1290
|
+
|
|
1291
|
+
declare const H6: FC<HProps>;
|
|
1292
|
+
|
|
1293
|
+
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, Developers, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FloorPlansBlock, Footer, Footer2, FormBlock, FullScreenImage, GalleryBlock, GalleryRealty, H1, H1Big, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JoinTeamBlock, type LayoutStore, LegalSupport, 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, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|