mayak-common-library 0.0.302 → 0.0.303
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 +83 -6
- package/dist/index.d.ts +83 -6
- package/dist/index.js +6 -6
- package/dist/index.mjs +6 -6
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -47,7 +47,7 @@ type BreadCrumbsItem = {
|
|
|
47
47
|
path: string;
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
-
interface IWorker$
|
|
50
|
+
interface IWorker$2 {
|
|
51
51
|
imageUrl?: string;
|
|
52
52
|
description?: string;
|
|
53
53
|
firstName?: string;
|
|
@@ -76,7 +76,7 @@ interface IAboutCompanyMain {
|
|
|
76
76
|
text1?: string;
|
|
77
77
|
text2?: string;
|
|
78
78
|
box?: IBoxItem$6[];
|
|
79
|
-
workerCeo?: IWorker$
|
|
79
|
+
workerCeo?: IWorker$2;
|
|
80
80
|
classes?: string;
|
|
81
81
|
site?: Site;
|
|
82
82
|
actionButton?: ReactNode;
|
|
@@ -130,7 +130,7 @@ interface IAnyLevelBlock {
|
|
|
130
130
|
declare function AnyLevelBlock({ block1, block2, classes, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
131
131
|
|
|
132
132
|
interface AnyQuestionsBlockProps {
|
|
133
|
-
worker?: IWorker$
|
|
133
|
+
worker?: IWorker$2;
|
|
134
134
|
classes?: string;
|
|
135
135
|
title?: string;
|
|
136
136
|
}
|
|
@@ -155,6 +155,10 @@ interface IArticle {
|
|
|
155
155
|
slug?: string;
|
|
156
156
|
href: string;
|
|
157
157
|
}
|
|
158
|
+
interface IArticleCard extends IArticle {
|
|
159
|
+
classes?: string;
|
|
160
|
+
}
|
|
161
|
+
declare function ArticleCard({ imageUrl, classes, title, text, slug, href, }: IArticleCard): react_jsx_runtime.JSX.Element;
|
|
158
162
|
|
|
159
163
|
interface IArticlesBlock {
|
|
160
164
|
title: string;
|
|
@@ -304,7 +308,7 @@ interface BlockImagesProps {
|
|
|
304
308
|
}
|
|
305
309
|
declare function BlockImages({ classes, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
|
306
310
|
|
|
307
|
-
interface IWorker {
|
|
311
|
+
interface IWorker$1 {
|
|
308
312
|
imageUrl?: string;
|
|
309
313
|
description?: string;
|
|
310
314
|
firstName?: string;
|
|
@@ -321,7 +325,7 @@ interface IWorker {
|
|
|
321
325
|
interface IBlockOurTeam {
|
|
322
326
|
title?: string;
|
|
323
327
|
text?: string;
|
|
324
|
-
team?: IWorker[];
|
|
328
|
+
team?: IWorker$1[];
|
|
325
329
|
classes?: string;
|
|
326
330
|
full?: boolean;
|
|
327
331
|
}
|
|
@@ -808,6 +812,10 @@ interface IArea {
|
|
|
808
812
|
whiteBottom?: boolean;
|
|
809
813
|
href: string;
|
|
810
814
|
}
|
|
815
|
+
interface AreaCardProps extends IArea {
|
|
816
|
+
classes?: string;
|
|
817
|
+
}
|
|
818
|
+
declare const AreaCard: FC<AreaCardProps>;
|
|
811
819
|
|
|
812
820
|
interface IArticlesFull {
|
|
813
821
|
classes?: string;
|
|
@@ -829,6 +837,7 @@ interface NewProjectCardProps {
|
|
|
829
837
|
href: string;
|
|
830
838
|
handover?: string;
|
|
831
839
|
}
|
|
840
|
+
declare const NewProjectCard: FC<NewProjectCardProps>;
|
|
832
841
|
|
|
833
842
|
interface ICatalogNewProjectsProps {
|
|
834
843
|
classes?: string;
|
|
@@ -1379,6 +1388,53 @@ interface HProps extends PropsWithChildren {
|
|
|
1379
1388
|
leftXs?: boolean;
|
|
1380
1389
|
bold?: boolean;
|
|
1381
1390
|
}
|
|
1391
|
+
interface IWorker {
|
|
1392
|
+
imageUrl?: string;
|
|
1393
|
+
description?: string;
|
|
1394
|
+
firstName?: string;
|
|
1395
|
+
lastName?: string;
|
|
1396
|
+
fullName?: string;
|
|
1397
|
+
position?: string;
|
|
1398
|
+
instagram?: string;
|
|
1399
|
+
facebook?: string;
|
|
1400
|
+
youTube?: string;
|
|
1401
|
+
linkedIn?: string;
|
|
1402
|
+
phone?: string;
|
|
1403
|
+
email?: string;
|
|
1404
|
+
}
|
|
1405
|
+
interface IRealty {
|
|
1406
|
+
imageUrl?: string;
|
|
1407
|
+
dealId?: number;
|
|
1408
|
+
price?: number;
|
|
1409
|
+
district?: string;
|
|
1410
|
+
metro?: string[];
|
|
1411
|
+
address?: string;
|
|
1412
|
+
id?: number;
|
|
1413
|
+
houseNumber?: string;
|
|
1414
|
+
city?: string;
|
|
1415
|
+
cityCrmId?: number;
|
|
1416
|
+
residentialComplexName?: string;
|
|
1417
|
+
rooms?: string;
|
|
1418
|
+
areaTotal?: string;
|
|
1419
|
+
areaLand?: string;
|
|
1420
|
+
areaLiving?: string;
|
|
1421
|
+
areaKitchen?: string;
|
|
1422
|
+
floor?: string;
|
|
1423
|
+
totalFloors?: string;
|
|
1424
|
+
slug?: string;
|
|
1425
|
+
title?: string;
|
|
1426
|
+
description?: string;
|
|
1427
|
+
realtor?: IWorker;
|
|
1428
|
+
borough?: string;
|
|
1429
|
+
region?: string;
|
|
1430
|
+
crmId?: string;
|
|
1431
|
+
article?: number;
|
|
1432
|
+
realtyType?: {
|
|
1433
|
+
machineName?: string;
|
|
1434
|
+
value?: string;
|
|
1435
|
+
};
|
|
1436
|
+
remont?: string;
|
|
1437
|
+
}
|
|
1382
1438
|
|
|
1383
1439
|
declare const H1: FC<HProps>;
|
|
1384
1440
|
|
|
@@ -1422,4 +1478,25 @@ interface BreadCrumbsProps {
|
|
|
1422
1478
|
}
|
|
1423
1479
|
declare const BreadCrumbs: FC<BreadCrumbsProps>;
|
|
1424
1480
|
|
|
1425
|
-
|
|
1481
|
+
interface ITeamPersonCard {
|
|
1482
|
+
image_url?: string;
|
|
1483
|
+
name?: string;
|
|
1484
|
+
position?: string;
|
|
1485
|
+
text?: string;
|
|
1486
|
+
}
|
|
1487
|
+
declare function TeamPersonCard({ image_url, name, position, text, }: ITeamPersonCard): react_jsx_runtime.JSX.Element;
|
|
1488
|
+
|
|
1489
|
+
interface IRealtorCard {
|
|
1490
|
+
realtor?: IWorker$2;
|
|
1491
|
+
}
|
|
1492
|
+
declare const RealtorCard: FC<IRealtorCard>;
|
|
1493
|
+
|
|
1494
|
+
interface IRealtyCard extends IRealty {
|
|
1495
|
+
classes?: string;
|
|
1496
|
+
titleClasses?: string;
|
|
1497
|
+
href: string;
|
|
1498
|
+
mainCityCrmId: number;
|
|
1499
|
+
}
|
|
1500
|
+
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, }: IRealtyCard): react_jsx_runtime.JSX.Element;
|
|
1501
|
+
|
|
1502
|
+
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, CatalogRealtiesBlock, CatalogViewSwitch, 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, 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
|
@@ -47,7 +47,7 @@ type BreadCrumbsItem = {
|
|
|
47
47
|
path: string;
|
|
48
48
|
};
|
|
49
49
|
|
|
50
|
-
interface IWorker$
|
|
50
|
+
interface IWorker$2 {
|
|
51
51
|
imageUrl?: string;
|
|
52
52
|
description?: string;
|
|
53
53
|
firstName?: string;
|
|
@@ -76,7 +76,7 @@ interface IAboutCompanyMain {
|
|
|
76
76
|
text1?: string;
|
|
77
77
|
text2?: string;
|
|
78
78
|
box?: IBoxItem$6[];
|
|
79
|
-
workerCeo?: IWorker$
|
|
79
|
+
workerCeo?: IWorker$2;
|
|
80
80
|
classes?: string;
|
|
81
81
|
site?: Site;
|
|
82
82
|
actionButton?: ReactNode;
|
|
@@ -130,7 +130,7 @@ interface IAnyLevelBlock {
|
|
|
130
130
|
declare function AnyLevelBlock({ block1, block2, classes, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
131
131
|
|
|
132
132
|
interface AnyQuestionsBlockProps {
|
|
133
|
-
worker?: IWorker$
|
|
133
|
+
worker?: IWorker$2;
|
|
134
134
|
classes?: string;
|
|
135
135
|
title?: string;
|
|
136
136
|
}
|
|
@@ -155,6 +155,10 @@ interface IArticle {
|
|
|
155
155
|
slug?: string;
|
|
156
156
|
href: string;
|
|
157
157
|
}
|
|
158
|
+
interface IArticleCard extends IArticle {
|
|
159
|
+
classes?: string;
|
|
160
|
+
}
|
|
161
|
+
declare function ArticleCard({ imageUrl, classes, title, text, slug, href, }: IArticleCard): react_jsx_runtime.JSX.Element;
|
|
158
162
|
|
|
159
163
|
interface IArticlesBlock {
|
|
160
164
|
title: string;
|
|
@@ -304,7 +308,7 @@ interface BlockImagesProps {
|
|
|
304
308
|
}
|
|
305
309
|
declare function BlockImages({ classes, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
|
306
310
|
|
|
307
|
-
interface IWorker {
|
|
311
|
+
interface IWorker$1 {
|
|
308
312
|
imageUrl?: string;
|
|
309
313
|
description?: string;
|
|
310
314
|
firstName?: string;
|
|
@@ -321,7 +325,7 @@ interface IWorker {
|
|
|
321
325
|
interface IBlockOurTeam {
|
|
322
326
|
title?: string;
|
|
323
327
|
text?: string;
|
|
324
|
-
team?: IWorker[];
|
|
328
|
+
team?: IWorker$1[];
|
|
325
329
|
classes?: string;
|
|
326
330
|
full?: boolean;
|
|
327
331
|
}
|
|
@@ -808,6 +812,10 @@ interface IArea {
|
|
|
808
812
|
whiteBottom?: boolean;
|
|
809
813
|
href: string;
|
|
810
814
|
}
|
|
815
|
+
interface AreaCardProps extends IArea {
|
|
816
|
+
classes?: string;
|
|
817
|
+
}
|
|
818
|
+
declare const AreaCard: FC<AreaCardProps>;
|
|
811
819
|
|
|
812
820
|
interface IArticlesFull {
|
|
813
821
|
classes?: string;
|
|
@@ -829,6 +837,7 @@ interface NewProjectCardProps {
|
|
|
829
837
|
href: string;
|
|
830
838
|
handover?: string;
|
|
831
839
|
}
|
|
840
|
+
declare const NewProjectCard: FC<NewProjectCardProps>;
|
|
832
841
|
|
|
833
842
|
interface ICatalogNewProjectsProps {
|
|
834
843
|
classes?: string;
|
|
@@ -1379,6 +1388,53 @@ interface HProps extends PropsWithChildren {
|
|
|
1379
1388
|
leftXs?: boolean;
|
|
1380
1389
|
bold?: boolean;
|
|
1381
1390
|
}
|
|
1391
|
+
interface IWorker {
|
|
1392
|
+
imageUrl?: string;
|
|
1393
|
+
description?: string;
|
|
1394
|
+
firstName?: string;
|
|
1395
|
+
lastName?: string;
|
|
1396
|
+
fullName?: string;
|
|
1397
|
+
position?: string;
|
|
1398
|
+
instagram?: string;
|
|
1399
|
+
facebook?: string;
|
|
1400
|
+
youTube?: string;
|
|
1401
|
+
linkedIn?: string;
|
|
1402
|
+
phone?: string;
|
|
1403
|
+
email?: string;
|
|
1404
|
+
}
|
|
1405
|
+
interface IRealty {
|
|
1406
|
+
imageUrl?: string;
|
|
1407
|
+
dealId?: number;
|
|
1408
|
+
price?: number;
|
|
1409
|
+
district?: string;
|
|
1410
|
+
metro?: string[];
|
|
1411
|
+
address?: string;
|
|
1412
|
+
id?: number;
|
|
1413
|
+
houseNumber?: string;
|
|
1414
|
+
city?: string;
|
|
1415
|
+
cityCrmId?: number;
|
|
1416
|
+
residentialComplexName?: string;
|
|
1417
|
+
rooms?: string;
|
|
1418
|
+
areaTotal?: string;
|
|
1419
|
+
areaLand?: string;
|
|
1420
|
+
areaLiving?: string;
|
|
1421
|
+
areaKitchen?: string;
|
|
1422
|
+
floor?: string;
|
|
1423
|
+
totalFloors?: string;
|
|
1424
|
+
slug?: string;
|
|
1425
|
+
title?: string;
|
|
1426
|
+
description?: string;
|
|
1427
|
+
realtor?: IWorker;
|
|
1428
|
+
borough?: string;
|
|
1429
|
+
region?: string;
|
|
1430
|
+
crmId?: string;
|
|
1431
|
+
article?: number;
|
|
1432
|
+
realtyType?: {
|
|
1433
|
+
machineName?: string;
|
|
1434
|
+
value?: string;
|
|
1435
|
+
};
|
|
1436
|
+
remont?: string;
|
|
1437
|
+
}
|
|
1382
1438
|
|
|
1383
1439
|
declare const H1: FC<HProps>;
|
|
1384
1440
|
|
|
@@ -1422,4 +1478,25 @@ interface BreadCrumbsProps {
|
|
|
1422
1478
|
}
|
|
1423
1479
|
declare const BreadCrumbs: FC<BreadCrumbsProps>;
|
|
1424
1480
|
|
|
1425
|
-
|
|
1481
|
+
interface ITeamPersonCard {
|
|
1482
|
+
image_url?: string;
|
|
1483
|
+
name?: string;
|
|
1484
|
+
position?: string;
|
|
1485
|
+
text?: string;
|
|
1486
|
+
}
|
|
1487
|
+
declare function TeamPersonCard({ image_url, name, position, text, }: ITeamPersonCard): react_jsx_runtime.JSX.Element;
|
|
1488
|
+
|
|
1489
|
+
interface IRealtorCard {
|
|
1490
|
+
realtor?: IWorker$2;
|
|
1491
|
+
}
|
|
1492
|
+
declare const RealtorCard: FC<IRealtorCard>;
|
|
1493
|
+
|
|
1494
|
+
interface IRealtyCard extends IRealty {
|
|
1495
|
+
classes?: string;
|
|
1496
|
+
titleClasses?: string;
|
|
1497
|
+
href: string;
|
|
1498
|
+
mainCityCrmId: number;
|
|
1499
|
+
}
|
|
1500
|
+
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, }: IRealtyCard): react_jsx_runtime.JSX.Element;
|
|
1501
|
+
|
|
1502
|
+
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, CatalogRealtiesBlock, CatalogViewSwitch, 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, 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 };
|