mayak-common-library 0.0.832 → 0.0.834
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 +25 -17
- package/dist/index.d.ts +25 -17
- package/dist/index.js +5 -5
- package/dist/index.mjs +5 -5
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { ReactNode, FC, PropsWithChildren, MouseEventHandler, MouseEvent, ReactElement, DetailedHTMLProps, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
|
|
4
|
-
import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
5
4
|
import { Document } from '@contentful/rich-text-types';
|
|
5
|
+
import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
6
6
|
import * as zustand from 'zustand';
|
|
7
7
|
import { StateCreator } from 'zustand';
|
|
8
8
|
import { ButtonProps } from '@mui/material/Button';
|
|
@@ -22,6 +22,7 @@ import { CountryIso2 } from 'react-international-phone';
|
|
|
22
22
|
import { AccordionProps } from '@mui/material/Accordion/Accordion';
|
|
23
23
|
import { OptionsType } from '@fancyapps/ui/types/Fancybox/options';
|
|
24
24
|
import { KeenSliderOptions } from 'keen-slider/react';
|
|
25
|
+
import { Document as Document$1 } from '@contentful/rich-text-types/dist/types/types';
|
|
25
26
|
|
|
26
27
|
type SelectChildrenProps = {
|
|
27
28
|
ref?: any;
|
|
@@ -508,14 +509,12 @@ declare function OfficesBlock({ text, offices, className, }: IOfficesBlock): rea
|
|
|
508
509
|
interface IVacancy {
|
|
509
510
|
slug?: string;
|
|
510
511
|
position?: string;
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
updated?: string;
|
|
515
|
-
offerText?: any;
|
|
516
|
-
additionalText?: any;
|
|
517
|
-
requirementsText?: any;
|
|
512
|
+
salary?: string;
|
|
513
|
+
location?: string;
|
|
514
|
+
updatedAt?: string;
|
|
518
515
|
qualitiesText?: any;
|
|
516
|
+
shortDescription?: Document;
|
|
517
|
+
fullDescription?: Document;
|
|
519
518
|
}
|
|
520
519
|
interface IOpenVacancies {
|
|
521
520
|
title?: string;
|
|
@@ -691,15 +690,14 @@ declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustU
|
|
|
691
690
|
|
|
692
691
|
interface IVacancyBoxInfo {
|
|
693
692
|
updatedAt?: string;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
city?: string;
|
|
693
|
+
salary?: string;
|
|
694
|
+
location?: string;
|
|
697
695
|
button?: boolean;
|
|
698
696
|
className?: string;
|
|
699
697
|
slug?: string;
|
|
700
698
|
href?: string;
|
|
701
699
|
}
|
|
702
|
-
declare function VacancyBoxInfo({ updatedAt, className,
|
|
700
|
+
declare function VacancyBoxInfo({ updatedAt, className, salary, button, location, slug, href, }: IVacancyBoxInfo): react_jsx_runtime.JSX.Element;
|
|
703
701
|
|
|
704
702
|
interface IVacancyContent {
|
|
705
703
|
title?: string;
|
|
@@ -708,9 +706,8 @@ interface IVacancyContent {
|
|
|
708
706
|
requirements?: any;
|
|
709
707
|
qualities?: any;
|
|
710
708
|
date?: string;
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
city?: string;
|
|
709
|
+
salary?: string;
|
|
710
|
+
location?: string;
|
|
714
711
|
slugs?: LanguageSlugsType;
|
|
715
712
|
className?: string;
|
|
716
713
|
phone?: string;
|
|
@@ -718,7 +715,7 @@ interface IVacancyContent {
|
|
|
718
715
|
manager?: any;
|
|
719
716
|
href?: string;
|
|
720
717
|
}
|
|
721
|
-
declare function VacancyContent({ title,
|
|
718
|
+
declare function VacancyContent({ title, salary, date, offer, qualities, requirements, location, additional, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
722
719
|
|
|
723
720
|
interface IItem {
|
|
724
721
|
text1?: string;
|
|
@@ -1709,4 +1706,15 @@ interface FeedbackCardProps {
|
|
|
1709
1706
|
}
|
|
1710
1707
|
declare const FeedbackCard: FC<FeedbackCardProps>;
|
|
1711
1708
|
|
|
1712
|
-
|
|
1709
|
+
interface VacancyCardProps {
|
|
1710
|
+
shortDescription?: Document$1;
|
|
1711
|
+
position?: string;
|
|
1712
|
+
salary?: string;
|
|
1713
|
+
location?: string;
|
|
1714
|
+
updatedAt?: string;
|
|
1715
|
+
slug?: string;
|
|
1716
|
+
title?: ReactElement;
|
|
1717
|
+
}
|
|
1718
|
+
declare const VacancyCard: FC<VacancyCardProps>;
|
|
1719
|
+
|
|
1720
|
+
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, BlockOurTeamGrid, BlockTabsGroupLinks, BreadCrumbs, Button, ButtonBadge, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CasesSlider, 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, H1, 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, MainContainer, type Modal, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PageContainer, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyAddress, RealtyCard, RealtyDescription, RealtyDetails, RealtyPrice, RealtyTitle, ReferralProgramFirstBlock, ScrollButton, SearchInput, SearchPlaceInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TermList, TextAreaInput, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyCard, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as react from 'react';
|
|
3
3
|
import { ReactNode, FC, PropsWithChildren, MouseEventHandler, MouseEvent, ReactElement, DetailedHTMLProps, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
|
|
4
|
-
import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
5
4
|
import { Document } from '@contentful/rich-text-types';
|
|
5
|
+
import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
6
6
|
import * as zustand from 'zustand';
|
|
7
7
|
import { StateCreator } from 'zustand';
|
|
8
8
|
import { ButtonProps } from '@mui/material/Button';
|
|
@@ -22,6 +22,7 @@ import { CountryIso2 } from 'react-international-phone';
|
|
|
22
22
|
import { AccordionProps } from '@mui/material/Accordion/Accordion';
|
|
23
23
|
import { OptionsType } from '@fancyapps/ui/types/Fancybox/options';
|
|
24
24
|
import { KeenSliderOptions } from 'keen-slider/react';
|
|
25
|
+
import { Document as Document$1 } from '@contentful/rich-text-types/dist/types/types';
|
|
25
26
|
|
|
26
27
|
type SelectChildrenProps = {
|
|
27
28
|
ref?: any;
|
|
@@ -508,14 +509,12 @@ declare function OfficesBlock({ text, offices, className, }: IOfficesBlock): rea
|
|
|
508
509
|
interface IVacancy {
|
|
509
510
|
slug?: string;
|
|
510
511
|
position?: string;
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
updated?: string;
|
|
515
|
-
offerText?: any;
|
|
516
|
-
additionalText?: any;
|
|
517
|
-
requirementsText?: any;
|
|
512
|
+
salary?: string;
|
|
513
|
+
location?: string;
|
|
514
|
+
updatedAt?: string;
|
|
518
515
|
qualitiesText?: any;
|
|
516
|
+
shortDescription?: Document;
|
|
517
|
+
fullDescription?: Document;
|
|
519
518
|
}
|
|
520
519
|
interface IOpenVacancies {
|
|
521
520
|
title?: string;
|
|
@@ -691,15 +690,14 @@ declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustU
|
|
|
691
690
|
|
|
692
691
|
interface IVacancyBoxInfo {
|
|
693
692
|
updatedAt?: string;
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
city?: string;
|
|
693
|
+
salary?: string;
|
|
694
|
+
location?: string;
|
|
697
695
|
button?: boolean;
|
|
698
696
|
className?: string;
|
|
699
697
|
slug?: string;
|
|
700
698
|
href?: string;
|
|
701
699
|
}
|
|
702
|
-
declare function VacancyBoxInfo({ updatedAt, className,
|
|
700
|
+
declare function VacancyBoxInfo({ updatedAt, className, salary, button, location, slug, href, }: IVacancyBoxInfo): react_jsx_runtime.JSX.Element;
|
|
703
701
|
|
|
704
702
|
interface IVacancyContent {
|
|
705
703
|
title?: string;
|
|
@@ -708,9 +706,8 @@ interface IVacancyContent {
|
|
|
708
706
|
requirements?: any;
|
|
709
707
|
qualities?: any;
|
|
710
708
|
date?: string;
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
city?: string;
|
|
709
|
+
salary?: string;
|
|
710
|
+
location?: string;
|
|
714
711
|
slugs?: LanguageSlugsType;
|
|
715
712
|
className?: string;
|
|
716
713
|
phone?: string;
|
|
@@ -718,7 +715,7 @@ interface IVacancyContent {
|
|
|
718
715
|
manager?: any;
|
|
719
716
|
href?: string;
|
|
720
717
|
}
|
|
721
|
-
declare function VacancyContent({ title,
|
|
718
|
+
declare function VacancyContent({ title, salary, date, offer, qualities, requirements, location, additional, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
722
719
|
|
|
723
720
|
interface IItem {
|
|
724
721
|
text1?: string;
|
|
@@ -1709,4 +1706,15 @@ interface FeedbackCardProps {
|
|
|
1709
1706
|
}
|
|
1710
1707
|
declare const FeedbackCard: FC<FeedbackCardProps>;
|
|
1711
1708
|
|
|
1712
|
-
|
|
1709
|
+
interface VacancyCardProps {
|
|
1710
|
+
shortDescription?: Document$1;
|
|
1711
|
+
position?: string;
|
|
1712
|
+
salary?: string;
|
|
1713
|
+
location?: string;
|
|
1714
|
+
updatedAt?: string;
|
|
1715
|
+
slug?: string;
|
|
1716
|
+
title?: ReactElement;
|
|
1717
|
+
}
|
|
1718
|
+
declare const VacancyCard: FC<VacancyCardProps>;
|
|
1719
|
+
|
|
1720
|
+
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, BlockOurTeamGrid, BlockTabsGroupLinks, BreadCrumbs, Button, ButtonBadge, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CasesSlider, 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, H1, 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, MainContainer, type Modal, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PageContainer, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyAddress, RealtyCard, RealtyDescription, RealtyDetails, RealtyPrice, RealtyTitle, ReferralProgramFirstBlock, ScrollButton, SearchInput, SearchPlaceInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SliderObject, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TermList, TextAreaInput, TextBlock, TextImageTileBlock, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyCard, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|