mayak-common-library 0.0.798 → 0.0.800
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 +142 -142
- package/dist/index.d.ts +142 -142
- package/dist/index.js +5 -7
- package/dist/index.mjs +5 -7
- package/i18n/routing.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -82,11 +82,11 @@ interface IAboutCompanyMain {
|
|
|
82
82
|
text2?: string;
|
|
83
83
|
box?: IBoxItem$6[];
|
|
84
84
|
workerCeo?: IWorker$2;
|
|
85
|
-
|
|
85
|
+
className?: string;
|
|
86
86
|
site?: Site;
|
|
87
87
|
actionButton?: ReactNode;
|
|
88
88
|
}
|
|
89
|
-
declare function AboutCompanyMain({ title, text1, text2, box, workerCeo,
|
|
89
|
+
declare function AboutCompanyMain({ title, text1, text2, box, workerCeo, className, site, actionButton, }: IAboutCompanyMain): react_jsx_runtime.JSX.Element;
|
|
90
90
|
|
|
91
91
|
interface IBox {
|
|
92
92
|
title?: string;
|
|
@@ -96,7 +96,7 @@ interface IBox {
|
|
|
96
96
|
}[];
|
|
97
97
|
}
|
|
98
98
|
interface IAboutUsFirstBlockProps {
|
|
99
|
-
|
|
99
|
+
className?: string;
|
|
100
100
|
title?: string;
|
|
101
101
|
text1?: string;
|
|
102
102
|
text2?: string;
|
|
@@ -105,7 +105,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
105
105
|
box: IBox;
|
|
106
106
|
actionButton?: ReactNode;
|
|
107
107
|
}
|
|
108
|
-
declare function AboutUsFirstBlock({
|
|
108
|
+
declare function AboutUsFirstBlock({ className, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
109
109
|
|
|
110
110
|
interface IBoxItem$5 {
|
|
111
111
|
icon?: string;
|
|
@@ -113,11 +113,11 @@ interface IBoxItem$5 {
|
|
|
113
113
|
text?: string;
|
|
114
114
|
}
|
|
115
115
|
interface IAmenitiesBlockProps {
|
|
116
|
-
|
|
116
|
+
className?: string;
|
|
117
117
|
title?: string;
|
|
118
118
|
box?: IBoxItem$5[];
|
|
119
119
|
}
|
|
120
|
-
declare function AmenitiesBlock({
|
|
120
|
+
declare function AmenitiesBlock({ className, box, title, }: IAmenitiesBlockProps): react_jsx_runtime.JSX.Element;
|
|
121
121
|
|
|
122
122
|
interface IAnyLevelBlock {
|
|
123
123
|
block1: {
|
|
@@ -130,13 +130,13 @@ interface IAnyLevelBlock {
|
|
|
130
130
|
imageUrl?: string;
|
|
131
131
|
text1?: string;
|
|
132
132
|
};
|
|
133
|
-
|
|
133
|
+
className?: string;
|
|
134
134
|
}
|
|
135
|
-
declare function AnyLevelBlock({ block1, block2,
|
|
135
|
+
declare function AnyLevelBlock({ block1, block2, className, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
136
136
|
|
|
137
137
|
interface AnyQuestionsBlockProps {
|
|
138
138
|
worker?: IWorker$2;
|
|
139
|
-
|
|
139
|
+
className?: string;
|
|
140
140
|
title?: string;
|
|
141
141
|
}
|
|
142
142
|
declare const AnyQuestionsBlock: FC<PropsWithChildren & AnyQuestionsBlockProps>;
|
|
@@ -148,10 +148,10 @@ interface IArticleContent {
|
|
|
148
148
|
date?: string;
|
|
149
149
|
slugs?: LanguageSlugsType;
|
|
150
150
|
href?: string;
|
|
151
|
-
|
|
151
|
+
className?: string;
|
|
152
152
|
contactComponent?: ReactNode;
|
|
153
153
|
}
|
|
154
|
-
declare function ArticleContent({ title, text, imageUrl, date, slugs, href,
|
|
154
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, href, className, contactComponent, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
155
155
|
|
|
156
156
|
interface IArticle {
|
|
157
157
|
imageUrl?: string;
|
|
@@ -161,13 +161,13 @@ interface IArticle {
|
|
|
161
161
|
href: string;
|
|
162
162
|
}
|
|
163
163
|
interface IArticleCard extends IArticle {
|
|
164
|
-
|
|
164
|
+
className?: string;
|
|
165
165
|
}
|
|
166
|
-
declare function ArticleCard({ imageUrl,
|
|
166
|
+
declare function ArticleCard({ imageUrl, className, title, text, slug, href, }: IArticleCard): react_jsx_runtime.JSX.Element;
|
|
167
167
|
|
|
168
168
|
interface ArticlesBlockProps {
|
|
169
169
|
title: string;
|
|
170
|
-
|
|
170
|
+
className?: string;
|
|
171
171
|
button?: boolean;
|
|
172
172
|
titlePosition?: TitlePosition;
|
|
173
173
|
articles?: IArticle[];
|
|
@@ -176,19 +176,19 @@ interface ArticlesBlockProps {
|
|
|
176
176
|
declare const ArticlesBlock: FC<ArticlesBlockProps>;
|
|
177
177
|
|
|
178
178
|
interface IArticlesFull$1 {
|
|
179
|
-
|
|
179
|
+
className?: string;
|
|
180
180
|
title?: string;
|
|
181
181
|
articles?: IArticle[];
|
|
182
182
|
totalArticles?: number;
|
|
183
183
|
href: string;
|
|
184
184
|
}
|
|
185
|
-
declare function ArticlesFull({ title, articles,
|
|
185
|
+
declare function ArticlesFull({ title, articles, className, href, totalArticles, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
|
|
186
186
|
|
|
187
187
|
interface BannerBlockProps {
|
|
188
188
|
videoLink?: string;
|
|
189
189
|
bigText?: string;
|
|
190
190
|
smallText?: string;
|
|
191
|
-
|
|
191
|
+
className?: string;
|
|
192
192
|
imgLink?: string;
|
|
193
193
|
view?: 'column' | 'row';
|
|
194
194
|
}
|
|
@@ -199,9 +199,9 @@ interface IBannerBlock2 {
|
|
|
199
199
|
bigText?: string;
|
|
200
200
|
text1?: string;
|
|
201
201
|
text2?: string;
|
|
202
|
-
|
|
202
|
+
className?: string;
|
|
203
203
|
}
|
|
204
|
-
declare function BannerBlock2({ image_url, bigText, text1, text2,
|
|
204
|
+
declare function BannerBlock2({ image_url, bigText, text1, text2, className, }: IBannerBlock2): react_jsx_runtime.JSX.Element;
|
|
205
205
|
|
|
206
206
|
interface IBoxItem$4 {
|
|
207
207
|
text1?: string;
|
|
@@ -209,7 +209,7 @@ interface IBoxItem$4 {
|
|
|
209
209
|
icon?: string;
|
|
210
210
|
}
|
|
211
211
|
interface IBannerReferralProgram {
|
|
212
|
-
|
|
212
|
+
className?: string;
|
|
213
213
|
imgPerson?: string;
|
|
214
214
|
imgBack?: string;
|
|
215
215
|
strongText?: string;
|
|
@@ -218,16 +218,16 @@ interface IBannerReferralProgram {
|
|
|
218
218
|
personWidth: string;
|
|
219
219
|
personHeight: string;
|
|
220
220
|
}
|
|
221
|
-
declare function BannerReferralProgram({
|
|
221
|
+
declare function BannerReferralProgram({ className, box, imgBack, imgPerson, strongText, text, personWidth, personHeight, }: IBannerReferralProgram): react_jsx_runtime.JSX.Element;
|
|
222
222
|
|
|
223
223
|
interface IBecomePartnerProps {
|
|
224
|
-
|
|
224
|
+
className?: string;
|
|
225
225
|
title?: string;
|
|
226
226
|
text1?: string;
|
|
227
227
|
text2?: string;
|
|
228
228
|
img?: string;
|
|
229
229
|
}
|
|
230
|
-
declare function BecomePartner({
|
|
230
|
+
declare function BecomePartner({ className, title, text2, text1, }: IBecomePartnerProps): react_jsx_runtime.JSX.Element;
|
|
231
231
|
|
|
232
232
|
interface IBenefit$1 {
|
|
233
233
|
imageUrl?: string;
|
|
@@ -237,9 +237,9 @@ interface IBenefit$1 {
|
|
|
237
237
|
interface IBenefitsBlock {
|
|
238
238
|
benefits?: IBenefit$1[];
|
|
239
239
|
title?: string;
|
|
240
|
-
|
|
240
|
+
className?: string;
|
|
241
241
|
}
|
|
242
|
-
declare function BenefitsBlock({ benefits,
|
|
242
|
+
declare function BenefitsBlock({ benefits, className, title, }: IBenefitsBlock): react_jsx_runtime.JSX.Element;
|
|
243
243
|
|
|
244
244
|
interface IBenefit {
|
|
245
245
|
imageUrl?: string;
|
|
@@ -250,7 +250,7 @@ interface IBenefit {
|
|
|
250
250
|
interface BenefitsVacanciesBlockProps {
|
|
251
251
|
title?: string;
|
|
252
252
|
benefits?: (IBenefit | null)[];
|
|
253
|
-
|
|
253
|
+
className?: string;
|
|
254
254
|
inlineItem?: boolean;
|
|
255
255
|
}
|
|
256
256
|
declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
|
|
@@ -268,15 +268,15 @@ interface IBlockAboutCareer {
|
|
|
268
268
|
boxTitle?: string;
|
|
269
269
|
boxItems?: IComponentItem[];
|
|
270
270
|
careerItems?: IComponentItem[];
|
|
271
|
-
|
|
271
|
+
className?: string;
|
|
272
272
|
videoLink?: string;
|
|
273
273
|
}
|
|
274
|
-
declare function BlockAboutCareer({ title,
|
|
274
|
+
declare function BlockAboutCareer({ title, className, videoLink, }: IBlockAboutCareer): react_jsx_runtime.JSX.Element;
|
|
275
275
|
|
|
276
276
|
interface IBlockChoiceLinkGoToCatalog {
|
|
277
|
-
|
|
277
|
+
className?: string;
|
|
278
278
|
}
|
|
279
|
-
declare function BlockChoiceLinkGoToCatalog({
|
|
279
|
+
declare function BlockChoiceLinkGoToCatalog({ className, }: IBlockChoiceLinkGoToCatalog): react_jsx_runtime.JSX.Element;
|
|
280
280
|
|
|
281
281
|
interface IOfficeItem {
|
|
282
282
|
phone?: string;
|
|
@@ -290,12 +290,12 @@ interface IOfficeItem {
|
|
|
290
290
|
telegram?: string;
|
|
291
291
|
}
|
|
292
292
|
interface IBlockContacts {
|
|
293
|
-
|
|
293
|
+
className?: string;
|
|
294
294
|
title?: string;
|
|
295
295
|
text?: string;
|
|
296
296
|
offices?: IOfficeItem[];
|
|
297
297
|
}
|
|
298
|
-
declare function BlockContacts({
|
|
298
|
+
declare function BlockContacts({ className, offices, title, text, children, }: IBlockContacts & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
299
299
|
|
|
300
300
|
interface ILink {
|
|
301
301
|
label: string;
|
|
@@ -308,11 +308,11 @@ interface IGroupLinks {
|
|
|
308
308
|
declare function BlockGroupLinks({ title, links }: IGroupLinks): react_jsx_runtime.JSX.Element;
|
|
309
309
|
|
|
310
310
|
interface BlockImagesProps {
|
|
311
|
-
|
|
311
|
+
className?: string;
|
|
312
312
|
images?: string[];
|
|
313
313
|
title?: string;
|
|
314
314
|
}
|
|
315
|
-
declare function BlockImages({
|
|
315
|
+
declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
|
316
316
|
|
|
317
317
|
interface IWorker$1 {
|
|
318
318
|
imageUrl?: string;
|
|
@@ -332,10 +332,10 @@ interface IBlockOurTeam$1 {
|
|
|
332
332
|
title?: string;
|
|
333
333
|
text?: string;
|
|
334
334
|
team?: IWorker$1[];
|
|
335
|
-
|
|
335
|
+
className?: string;
|
|
336
336
|
full?: boolean;
|
|
337
337
|
}
|
|
338
|
-
declare function BlockOurTeam({ team, title, text,
|
|
338
|
+
declare function BlockOurTeam({ team, title, text, className, full, }: IBlockOurTeam$1): react_jsx_runtime.JSX.Element | null;
|
|
339
339
|
|
|
340
340
|
interface IWorker {
|
|
341
341
|
imageUrl?: string;
|
|
@@ -355,28 +355,28 @@ interface IBlockOurTeam {
|
|
|
355
355
|
title?: string;
|
|
356
356
|
text?: string;
|
|
357
357
|
team?: IWorker[];
|
|
358
|
-
|
|
358
|
+
className?: string;
|
|
359
359
|
}
|
|
360
|
-
declare function BlockOurTeamGrid({ team, title, text,
|
|
360
|
+
declare function BlockOurTeamGrid({ team, title, text, className, }: IBlockOurTeam): react_jsx_runtime.JSX.Element | null;
|
|
361
361
|
|
|
362
362
|
interface IBlockTabsGroupLinks {
|
|
363
363
|
title: string;
|
|
364
|
-
|
|
364
|
+
className?: string;
|
|
365
365
|
tabs: string[];
|
|
366
366
|
contents: IGroupLinks[][];
|
|
367
367
|
}
|
|
368
|
-
declare function BlockTabsGroupLinks({ title,
|
|
368
|
+
declare function BlockTabsGroupLinks({ title, className, tabs, contents, }: IBlockTabsGroupLinks): react_jsx_runtime.JSX.Element;
|
|
369
369
|
|
|
370
370
|
interface ICallConsult {
|
|
371
|
-
|
|
371
|
+
className?: string;
|
|
372
372
|
title?: string;
|
|
373
373
|
}
|
|
374
|
-
declare function CallConsult({
|
|
374
|
+
declare function CallConsult({ className, title }: ICallConsult): react_jsx_runtime.JSX.Element;
|
|
375
375
|
|
|
376
376
|
interface ICallMeBlock {
|
|
377
|
-
|
|
377
|
+
className?: string;
|
|
378
378
|
}
|
|
379
|
-
declare function CallMeBlock({
|
|
379
|
+
declare function CallMeBlock({ className }: ICallMeBlock): react_jsx_runtime.JSX.Element;
|
|
380
380
|
|
|
381
381
|
interface ICaseItem {
|
|
382
382
|
imageUrl?: string;
|
|
@@ -384,10 +384,10 @@ interface ICaseItem {
|
|
|
384
384
|
text2?: string;
|
|
385
385
|
}
|
|
386
386
|
interface ICasesBlock {
|
|
387
|
-
|
|
387
|
+
className?: string;
|
|
388
388
|
caseItems?: ICaseItem[];
|
|
389
389
|
}
|
|
390
|
-
declare function CasesBlock({ caseItems,
|
|
390
|
+
declare function CasesBlock({ caseItems, className }: ICasesBlock): react_jsx_runtime.JSX.Element;
|
|
391
391
|
|
|
392
392
|
interface ICategoryCard {
|
|
393
393
|
imageUrl?: string;
|
|
@@ -398,9 +398,9 @@ interface ICategoryCard {
|
|
|
398
398
|
interface CatalogCategoriesBlockProps {
|
|
399
399
|
title?: string;
|
|
400
400
|
categories?: ICategoryCard[];
|
|
401
|
-
|
|
401
|
+
className?: string;
|
|
402
402
|
}
|
|
403
|
-
declare function CatalogCategoriesBlock({ title, categories,
|
|
403
|
+
declare function CatalogCategoriesBlock({ title, categories, className, }: CatalogCategoriesBlockProps): react_jsx_runtime.JSX.Element;
|
|
404
404
|
|
|
405
405
|
interface IBoxItem$3 {
|
|
406
406
|
label?: string;
|
|
@@ -408,16 +408,16 @@ interface IBoxItem$3 {
|
|
|
408
408
|
text?: string;
|
|
409
409
|
}
|
|
410
410
|
interface IClientTransferProcessProps {
|
|
411
|
-
|
|
411
|
+
className?: string;
|
|
412
412
|
title?: string;
|
|
413
413
|
text?: string;
|
|
414
414
|
box?: IBoxItem$3[];
|
|
415
415
|
actionComponent?: ReactNode;
|
|
416
416
|
}
|
|
417
|
-
declare function ClientTransferProcess({
|
|
417
|
+
declare function ClientTransferProcess({ className, box, title, text, actionComponent, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
418
418
|
|
|
419
419
|
interface IContactUsBlock {
|
|
420
|
-
|
|
420
|
+
className?: string;
|
|
421
421
|
phone: string;
|
|
422
422
|
manager: {
|
|
423
423
|
name: string;
|
|
@@ -425,7 +425,7 @@ interface IContactUsBlock {
|
|
|
425
425
|
position: string;
|
|
426
426
|
};
|
|
427
427
|
}
|
|
428
|
-
declare function ContactUsBlock({
|
|
428
|
+
declare function ContactUsBlock({ className, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
429
429
|
|
|
430
430
|
interface IExpertiseBlock {
|
|
431
431
|
block1: {
|
|
@@ -438,24 +438,24 @@ interface IExpertiseBlock {
|
|
|
438
438
|
text1?: string;
|
|
439
439
|
text2?: string;
|
|
440
440
|
};
|
|
441
|
-
|
|
441
|
+
className?: string;
|
|
442
442
|
}
|
|
443
|
-
declare function ExpertiseBlock({ block1, block2,
|
|
443
|
+
declare function ExpertiseBlock({ block1, block2, className, }: IExpertiseBlock): react_jsx_runtime.JSX.Element;
|
|
444
444
|
|
|
445
445
|
interface IFAQProps {
|
|
446
|
-
|
|
446
|
+
className?: string;
|
|
447
447
|
title?: string;
|
|
448
448
|
items?: {
|
|
449
449
|
question?: string;
|
|
450
450
|
answer?: string;
|
|
451
451
|
}[];
|
|
452
452
|
}
|
|
453
|
-
declare function FAQ({
|
|
453
|
+
declare function FAQ({ className, items, title }: IFAQProps): react_jsx_runtime.JSX.Element;
|
|
454
454
|
|
|
455
455
|
interface IFormBlock {
|
|
456
|
-
|
|
456
|
+
className?: string;
|
|
457
457
|
}
|
|
458
|
-
declare function FormBlock({
|
|
458
|
+
declare function FormBlock({ className }: IFormBlock): react_jsx_runtime.JSX.Element;
|
|
459
459
|
|
|
460
460
|
interface GalleryProps {
|
|
461
461
|
images: {
|
|
@@ -472,10 +472,10 @@ declare const Gallery: FC<GalleryProps>;
|
|
|
472
472
|
interface IJoinTeamBlock {
|
|
473
473
|
imageUrl?: string;
|
|
474
474
|
title?: string;
|
|
475
|
-
|
|
475
|
+
className?: string;
|
|
476
476
|
text?: string;
|
|
477
477
|
}
|
|
478
|
-
declare function JoinTeamBlock({ imageUrl, text, title,
|
|
478
|
+
declare function JoinTeamBlock({ imageUrl, text, title, className, }: IJoinTeamBlock): react_jsx_runtime.JSX.Element;
|
|
479
479
|
|
|
480
480
|
interface IItem$1 {
|
|
481
481
|
text1?: string;
|
|
@@ -486,23 +486,23 @@ interface ILegalSupport {
|
|
|
486
486
|
imageUrl?: string;
|
|
487
487
|
title2?: string;
|
|
488
488
|
items?: IItem$1[];
|
|
489
|
-
|
|
489
|
+
className?: string;
|
|
490
490
|
}
|
|
491
|
-
declare function LegalSupport({ title2, title, items, text, imageUrl,
|
|
491
|
+
declare function LegalSupport({ title2, title, items, text, imageUrl, className, }: ILegalSupport): react_jsx_runtime.JSX.Element;
|
|
492
492
|
|
|
493
493
|
interface IOffices {
|
|
494
494
|
offices?: IOfficeItem[];
|
|
495
|
-
|
|
495
|
+
className?: string;
|
|
496
496
|
}
|
|
497
|
-
declare function Offices({
|
|
497
|
+
declare function Offices({ className, offices }: IOffices): react_jsx_runtime.JSX.Element;
|
|
498
498
|
|
|
499
499
|
interface IOfficesBlock {
|
|
500
500
|
text?: string;
|
|
501
|
-
|
|
501
|
+
className?: string;
|
|
502
502
|
offices?: IOfficeItem[];
|
|
503
503
|
title?: string;
|
|
504
504
|
}
|
|
505
|
-
declare function OfficesBlock({ text, offices,
|
|
505
|
+
declare function OfficesBlock({ text, offices, className, title, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
506
506
|
|
|
507
507
|
interface IVacancy {
|
|
508
508
|
slug?: string;
|
|
@@ -518,46 +518,46 @@ interface IVacancy {
|
|
|
518
518
|
}
|
|
519
519
|
interface IOpenVacancies {
|
|
520
520
|
title?: string;
|
|
521
|
-
|
|
521
|
+
className?: string;
|
|
522
522
|
vacancies?: IVacancy[];
|
|
523
523
|
href: string;
|
|
524
524
|
}
|
|
525
|
-
declare function OpenVacancies({ title, vacancies,
|
|
525
|
+
declare function OpenVacancies({ title, vacancies, className, href, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
526
526
|
|
|
527
527
|
interface IOtherVacancies {
|
|
528
528
|
vacancies?: IVacancy[];
|
|
529
|
-
|
|
529
|
+
className?: string;
|
|
530
530
|
href: string;
|
|
531
531
|
}
|
|
532
|
-
declare function OtherVacancies({ vacancies,
|
|
532
|
+
declare function OtherVacancies({ vacancies, className, href, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
533
533
|
|
|
534
534
|
interface IBlock {
|
|
535
535
|
strongText?: string;
|
|
536
536
|
text?: string;
|
|
537
537
|
}
|
|
538
538
|
interface IOurAdvantagesProps {
|
|
539
|
-
|
|
539
|
+
className?: string;
|
|
540
540
|
title?: string;
|
|
541
541
|
text1?: string;
|
|
542
542
|
text2?: string;
|
|
543
543
|
images?: string[];
|
|
544
544
|
block?: IBlock;
|
|
545
545
|
}
|
|
546
|
-
declare function OurAdvantages({
|
|
546
|
+
declare function OurAdvantages({ className, block, title, text2, text1, }: IOurAdvantagesProps): react_jsx_runtime.JSX.Element;
|
|
547
547
|
|
|
548
548
|
interface IOurServicesItem {
|
|
549
549
|
text1?: string;
|
|
550
550
|
text2?: string;
|
|
551
551
|
}
|
|
552
552
|
interface IOurServices {
|
|
553
|
-
|
|
553
|
+
className?: string;
|
|
554
554
|
items?: IOurServicesItem[];
|
|
555
555
|
title?: string;
|
|
556
556
|
}
|
|
557
|
-
declare function OurServices({ title, items,
|
|
557
|
+
declare function OurServices({ title, items, className }: IOurServices): react_jsx_runtime.JSX.Element;
|
|
558
558
|
|
|
559
559
|
interface IPopularAreasProps {
|
|
560
|
-
|
|
560
|
+
className?: string;
|
|
561
561
|
title?: string;
|
|
562
562
|
items?: {
|
|
563
563
|
label?: string;
|
|
@@ -569,7 +569,7 @@ interface IPopularAreasProps {
|
|
|
569
569
|
}[];
|
|
570
570
|
href: string;
|
|
571
571
|
}
|
|
572
|
-
declare function PopularAreas({
|
|
572
|
+
declare function PopularAreas({ className, items, title, href, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
573
573
|
|
|
574
574
|
declare const ObjectProperties: FC<PropsWithChildren>;
|
|
575
575
|
|
|
@@ -583,12 +583,12 @@ interface IBoxItem$2 {
|
|
|
583
583
|
income?: string;
|
|
584
584
|
}
|
|
585
585
|
interface IPortfoliosProps {
|
|
586
|
-
|
|
586
|
+
className?: string;
|
|
587
587
|
title?: string;
|
|
588
588
|
box?: IBoxItem$2[];
|
|
589
589
|
actionComponent?: ReactNode;
|
|
590
590
|
}
|
|
591
|
-
declare function Portfolios({
|
|
591
|
+
declare function Portfolios({ className, box, title, actionComponent, }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
592
592
|
|
|
593
593
|
interface IBoxItem$1 {
|
|
594
594
|
text1?: string;
|
|
@@ -600,10 +600,10 @@ interface IReferralProgramFirstBlockProps {
|
|
|
600
600
|
text1?: string;
|
|
601
601
|
text2?: string;
|
|
602
602
|
box?: IBoxItem$1[];
|
|
603
|
-
|
|
603
|
+
className?: string;
|
|
604
604
|
actionComponent?: ReactNode;
|
|
605
605
|
}
|
|
606
|
-
declare function ReferralProgramFirstBlock({ title, box, text1,
|
|
606
|
+
declare function ReferralProgramFirstBlock({ title, box, text1, className, subtitle, text2, actionComponent, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
607
607
|
|
|
608
608
|
interface IServicesTexts {
|
|
609
609
|
title?: string;
|
|
@@ -612,20 +612,20 @@ interface IServicesTexts {
|
|
|
612
612
|
text2?: string;
|
|
613
613
|
title2?: string;
|
|
614
614
|
text3?: string;
|
|
615
|
-
|
|
615
|
+
className?: string;
|
|
616
616
|
}
|
|
617
|
-
declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle,
|
|
617
|
+
declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle, className, }: IServicesTexts): react_jsx_runtime.JSX.Element;
|
|
618
618
|
|
|
619
619
|
interface SocialBlockProps {
|
|
620
|
-
|
|
620
|
+
className?: string;
|
|
621
621
|
instagram?: string;
|
|
622
622
|
whatsapp?: string;
|
|
623
623
|
telegram?: string;
|
|
624
624
|
}
|
|
625
|
-
declare function SocialBlock({
|
|
625
|
+
declare function SocialBlock({ className, telegram, whatsapp, instagram, }: SocialBlockProps): react_jsx_runtime.JSX.Element;
|
|
626
626
|
|
|
627
627
|
interface SocialBlockMainProps {
|
|
628
|
-
|
|
628
|
+
className?: string;
|
|
629
629
|
instagram?: string;
|
|
630
630
|
facebook?: string;
|
|
631
631
|
youtube?: string;
|
|
@@ -648,23 +648,23 @@ interface ITeamWorkerBlock {
|
|
|
648
648
|
declare function TeamWorkerBlock({ image_url, name, position, social, text, turn, }: ITeamWorkerBlock): react_jsx_runtime.JSX.Element;
|
|
649
649
|
|
|
650
650
|
interface ITextBlock {
|
|
651
|
-
|
|
651
|
+
className?: string;
|
|
652
652
|
title?: string;
|
|
653
653
|
text?: string;
|
|
654
654
|
}
|
|
655
|
-
declare function TextBlock({
|
|
655
|
+
declare function TextBlock({ className, text, title }: ITextBlock): react_jsx_runtime.JSX.Element;
|
|
656
656
|
|
|
657
657
|
declare const ThanksBlock: () => react_jsx_runtime.JSX.Element;
|
|
658
658
|
|
|
659
659
|
interface ITitleBlock extends TypographyProps {
|
|
660
660
|
title: string;
|
|
661
661
|
titlePosition?: 'center' | 'left';
|
|
662
|
-
|
|
662
|
+
className?: string;
|
|
663
663
|
}
|
|
664
664
|
declare function TitleBlock(props: ITitleBlock): react_jsx_runtime.JSX.Element;
|
|
665
665
|
|
|
666
666
|
interface IDeveloperCardProps {
|
|
667
|
-
|
|
667
|
+
className?: string;
|
|
668
668
|
img?: string;
|
|
669
669
|
title?: string;
|
|
670
670
|
price?: string;
|
|
@@ -673,20 +673,20 @@ interface IDeveloperCardProps {
|
|
|
673
673
|
}
|
|
674
674
|
|
|
675
675
|
interface TopDevelopersProps {
|
|
676
|
-
|
|
676
|
+
className?: string;
|
|
677
677
|
developers?: IDeveloperCardProps[];
|
|
678
678
|
title?: string;
|
|
679
679
|
}
|
|
680
|
-
declare function TopDevelopers({
|
|
680
|
+
declare function TopDevelopers({ className, title, developers, }: TopDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
681
681
|
|
|
682
682
|
interface ITrustUs {
|
|
683
|
-
|
|
683
|
+
className?: string;
|
|
684
684
|
title?: string;
|
|
685
685
|
text?: string;
|
|
686
686
|
numbers?: INumberText[];
|
|
687
687
|
imageUrl?: string;
|
|
688
688
|
}
|
|
689
|
-
declare function TrustUs({
|
|
689
|
+
declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustUs): react_jsx_runtime.JSX.Element;
|
|
690
690
|
|
|
691
691
|
interface IVacancyBoxInfo {
|
|
692
692
|
updatedAt?: string;
|
|
@@ -694,11 +694,11 @@ interface IVacancyBoxInfo {
|
|
|
694
694
|
country?: string;
|
|
695
695
|
city?: string;
|
|
696
696
|
button?: boolean;
|
|
697
|
-
|
|
697
|
+
className?: string;
|
|
698
698
|
slug?: string;
|
|
699
699
|
href?: string;
|
|
700
700
|
}
|
|
701
|
-
declare function VacancyBoxInfo({ updatedAt,
|
|
701
|
+
declare function VacancyBoxInfo({ updatedAt, className, pay, city, button, country, slug, href, }: IVacancyBoxInfo): react_jsx_runtime.JSX.Element;
|
|
702
702
|
|
|
703
703
|
interface IVacancyContent {
|
|
704
704
|
title?: string;
|
|
@@ -711,13 +711,13 @@ interface IVacancyContent {
|
|
|
711
711
|
country?: string;
|
|
712
712
|
city?: string;
|
|
713
713
|
slugs?: LanguageSlugsType;
|
|
714
|
-
|
|
714
|
+
className?: string;
|
|
715
715
|
phone?: string;
|
|
716
716
|
email?: string;
|
|
717
717
|
manager?: any;
|
|
718
718
|
href?: string;
|
|
719
719
|
}
|
|
720
|
-
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs,
|
|
720
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
721
721
|
|
|
722
722
|
interface IItem {
|
|
723
723
|
text1?: string;
|
|
@@ -731,30 +731,30 @@ interface IWeOffer {
|
|
|
731
731
|
sellerItems?: IBlockItems;
|
|
732
732
|
buyerItems?: IBlockItems;
|
|
733
733
|
imageUrl: string;
|
|
734
|
-
|
|
734
|
+
className?: string;
|
|
735
735
|
}
|
|
736
|
-
declare function WeOffer({ title, sellerItems, buyerItems, imageUrl,
|
|
736
|
+
declare function WeOffer({ title, sellerItems, buyerItems, imageUrl, className, }: IWeOffer): react_jsx_runtime.JSX.Element;
|
|
737
737
|
|
|
738
738
|
interface IWeTakeFullProps {
|
|
739
|
-
|
|
739
|
+
className?: string;
|
|
740
740
|
imgSrc?: string;
|
|
741
741
|
title?: string;
|
|
742
742
|
text?: string;
|
|
743
743
|
actionComponent?: ReactNode;
|
|
744
744
|
}
|
|
745
|
-
declare function WeTakeFull({
|
|
745
|
+
declare function WeTakeFull({ className, text, imgSrc, title, actionComponent, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
746
746
|
|
|
747
747
|
interface IWhatIsYourProps {
|
|
748
|
-
|
|
748
|
+
className?: string;
|
|
749
749
|
title?: string;
|
|
750
750
|
text1?: string;
|
|
751
751
|
text2?: string;
|
|
752
752
|
text3?: string;
|
|
753
753
|
}
|
|
754
|
-
declare function WhatIsYour({
|
|
754
|
+
declare function WhatIsYour({ className, text3, text2, text1, title, }: IWhatIsYourProps): react_jsx_runtime.JSX.Element;
|
|
755
755
|
|
|
756
756
|
interface TextImageTileBlockProps {
|
|
757
|
-
|
|
757
|
+
className?: string;
|
|
758
758
|
title?: string | null;
|
|
759
759
|
text?: Document | string | null;
|
|
760
760
|
image?: string;
|
|
@@ -769,13 +769,13 @@ interface IBoxItem {
|
|
|
769
769
|
text?: string;
|
|
770
770
|
}
|
|
771
771
|
interface IWhyShouldWorkProps {
|
|
772
|
-
|
|
772
|
+
className?: string;
|
|
773
773
|
title?: string;
|
|
774
774
|
text?: string;
|
|
775
775
|
box?: IBoxItem[];
|
|
776
776
|
actionComponent?: ReactNode;
|
|
777
777
|
}
|
|
778
|
-
declare function WhyShouldWork({
|
|
778
|
+
declare function WhyShouldWork({ className, box, title, text, actionComponent, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
779
779
|
|
|
780
780
|
interface IWheWeItem {
|
|
781
781
|
imageUrl?: string;
|
|
@@ -784,11 +784,11 @@ interface IWheWeItem {
|
|
|
784
784
|
}
|
|
785
785
|
interface IWhyWe {
|
|
786
786
|
imageUrl?: string;
|
|
787
|
-
|
|
787
|
+
className?: string;
|
|
788
788
|
title?: string;
|
|
789
789
|
items?: IWheWeItem[];
|
|
790
790
|
}
|
|
791
|
-
declare function WhyWe({ items, title,
|
|
791
|
+
declare function WhyWe({ items, title, className, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
|
|
792
792
|
|
|
793
793
|
interface ObjectInfoBlockProps {
|
|
794
794
|
title: string | null;
|
|
@@ -798,7 +798,7 @@ interface ObjectInfoBlockProps {
|
|
|
798
798
|
desc?: string | null;
|
|
799
799
|
href?: string;
|
|
800
800
|
}[];
|
|
801
|
-
|
|
801
|
+
className?: string;
|
|
802
802
|
actionComponent?: ReactNode;
|
|
803
803
|
}
|
|
804
804
|
declare const ObjectInfoBlock: FC<ObjectInfoBlockProps>;
|
|
@@ -828,7 +828,7 @@ interface FullScreenImageProps {
|
|
|
828
828
|
declare const FullScreenImage: FC<FullScreenImageProps>;
|
|
829
829
|
|
|
830
830
|
interface GalleryBlockProps {
|
|
831
|
-
|
|
831
|
+
className?: string;
|
|
832
832
|
images?: string[];
|
|
833
833
|
imagePlaceholders?: string[];
|
|
834
834
|
imageAlt?: string;
|
|
@@ -837,7 +837,7 @@ interface GalleryBlockProps {
|
|
|
837
837
|
declare const GalleryBlock: FC<GalleryBlockProps>;
|
|
838
838
|
|
|
839
839
|
declare const ContactDubaiBlock: FC<{
|
|
840
|
-
|
|
840
|
+
className?: string;
|
|
841
841
|
actionComponent?: ReactNode;
|
|
842
842
|
}>;
|
|
843
843
|
|
|
@@ -850,18 +850,18 @@ interface IArea {
|
|
|
850
850
|
href: string;
|
|
851
851
|
}
|
|
852
852
|
interface AreaCardProps extends IArea {
|
|
853
|
-
|
|
853
|
+
className?: string;
|
|
854
854
|
}
|
|
855
855
|
declare const AreaCard: FC<AreaCardProps>;
|
|
856
856
|
|
|
857
857
|
interface IArticlesFull {
|
|
858
|
-
|
|
858
|
+
className?: string;
|
|
859
859
|
title?: string;
|
|
860
860
|
areas?: IArea[];
|
|
861
861
|
totalAreas?: number;
|
|
862
862
|
href: string;
|
|
863
863
|
}
|
|
864
|
-
declare function AreasFull({ title, areas,
|
|
864
|
+
declare function AreasFull({ title, areas, className, href, children, }: IArticlesFull & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
865
865
|
|
|
866
866
|
interface NewProjectCardProps {
|
|
867
867
|
slug?: string;
|
|
@@ -877,35 +877,35 @@ interface NewProjectCardProps {
|
|
|
877
877
|
declare const NewProjectCard: FC<NewProjectCardProps>;
|
|
878
878
|
|
|
879
879
|
interface ICatalogNewProjectsProps {
|
|
880
|
-
|
|
880
|
+
className?: string;
|
|
881
881
|
href: string;
|
|
882
882
|
newProjects?: NewProjectCardProps[];
|
|
883
883
|
}
|
|
884
|
-
declare function CatalogNewProjects({
|
|
884
|
+
declare function CatalogNewProjects({ className, href, newProjects, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
|
|
885
885
|
|
|
886
886
|
interface IProjectsSliderProps$1 {
|
|
887
|
-
|
|
887
|
+
className?: string;
|
|
888
888
|
projects?: NewProjectCardProps[];
|
|
889
889
|
title: string;
|
|
890
890
|
href: string;
|
|
891
891
|
}
|
|
892
|
-
declare function ProjectsSlider({
|
|
892
|
+
declare function ProjectsSlider({ className, projects, title, href, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
|
|
893
893
|
|
|
894
894
|
interface IProjectsSliderProps {
|
|
895
|
-
|
|
895
|
+
className?: string;
|
|
896
896
|
areas?: IArea[];
|
|
897
897
|
title: string;
|
|
898
898
|
href: string;
|
|
899
899
|
}
|
|
900
|
-
declare function AreasSlider({
|
|
900
|
+
declare function AreasSlider({ className, areas, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
|
|
901
901
|
|
|
902
902
|
interface IDevelopersSliderProps {
|
|
903
|
-
|
|
903
|
+
className?: string;
|
|
904
904
|
developers?: IDeveloperCardProps[];
|
|
905
905
|
title: string;
|
|
906
906
|
href: string;
|
|
907
907
|
}
|
|
908
|
-
declare function DevelopersSlider({
|
|
908
|
+
declare function DevelopersSlider({ className, developers, title, href, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
909
909
|
|
|
910
910
|
interface IDeveloperItem {
|
|
911
911
|
img?: string;
|
|
@@ -914,13 +914,13 @@ interface IDeveloperItem {
|
|
|
914
914
|
slug?: string;
|
|
915
915
|
}
|
|
916
916
|
interface IDevelopersFull {
|
|
917
|
-
|
|
917
|
+
className?: string;
|
|
918
918
|
title?: string;
|
|
919
919
|
devs?: IDeveloperItem[];
|
|
920
920
|
totalAreas?: number;
|
|
921
921
|
href: string;
|
|
922
922
|
}
|
|
923
|
-
declare function DevelopersFull({ title, devs,
|
|
923
|
+
declare function DevelopersFull({ title, devs, className, href, children, }: IDevelopersFull & PropsWithChildren): react_jsx_runtime.JSX.Element;
|
|
924
924
|
|
|
925
925
|
interface IServiceItem {
|
|
926
926
|
imageUrl?: string;
|
|
@@ -930,23 +930,23 @@ interface IServiceItem {
|
|
|
930
930
|
href: string;
|
|
931
931
|
}
|
|
932
932
|
interface IServicesFull {
|
|
933
|
-
|
|
933
|
+
className?: string;
|
|
934
934
|
title?: string;
|
|
935
935
|
services?: IServiceItem[];
|
|
936
936
|
totalServices?: number;
|
|
937
937
|
href: string;
|
|
938
938
|
}
|
|
939
|
-
declare function ServicesFull({ title, services,
|
|
939
|
+
declare function ServicesFull({ title, services, className, href, }: IServicesFull): react_jsx_runtime.JSX.Element;
|
|
940
940
|
|
|
941
941
|
interface IDeveloperBannerProps {
|
|
942
|
-
|
|
942
|
+
className?: string;
|
|
943
943
|
imgBanner?: string;
|
|
944
944
|
imgLogo?: string;
|
|
945
945
|
}
|
|
946
|
-
declare function DeveloperBanner({
|
|
946
|
+
declare function DeveloperBanner({ className, imgBanner, imgLogo, }: IDeveloperBannerProps): react_jsx_runtime.JSX.Element;
|
|
947
947
|
|
|
948
948
|
interface IDeveloperTwoBlocks {
|
|
949
|
-
|
|
949
|
+
className?: string;
|
|
950
950
|
title?: string;
|
|
951
951
|
text?: string;
|
|
952
952
|
block: {
|
|
@@ -955,16 +955,16 @@ interface IDeveloperTwoBlocks {
|
|
|
955
955
|
begin?: string;
|
|
956
956
|
};
|
|
957
957
|
}
|
|
958
|
-
declare function DeveloperTwoBlocks({
|
|
958
|
+
declare function DeveloperTwoBlocks({ className, block, text, title, }: IDeveloperTwoBlocks): react_jsx_runtime.JSX.Element;
|
|
959
959
|
|
|
960
960
|
interface ImageAndTextBlockProps {
|
|
961
|
-
|
|
961
|
+
className?: string;
|
|
962
962
|
imgSrc?: string;
|
|
963
963
|
}
|
|
964
964
|
declare const ImageAndTextBlock: FC<PropsWithChildren & ImageAndTextBlockProps>;
|
|
965
965
|
|
|
966
966
|
interface TwoTextColumnProps {
|
|
967
|
-
|
|
967
|
+
className?: string;
|
|
968
968
|
info: {
|
|
969
969
|
title: string;
|
|
970
970
|
text: string;
|
|
@@ -1062,7 +1062,7 @@ interface CatalogContainerProps {
|
|
|
1062
1062
|
declare const CatalogContainer: FC<CatalogContainerProps & PropsWithChildren>;
|
|
1063
1063
|
|
|
1064
1064
|
interface SliderContainerProps {
|
|
1065
|
-
|
|
1065
|
+
className?: string;
|
|
1066
1066
|
buttonText?: string;
|
|
1067
1067
|
buttonHref?: string;
|
|
1068
1068
|
title?: string;
|
|
@@ -1179,9 +1179,9 @@ declare const HeaderMob: FC<PropsWithChildren & {
|
|
|
1179
1179
|
|
|
1180
1180
|
interface IMainBoxProps {
|
|
1181
1181
|
children: ReactNode;
|
|
1182
|
-
|
|
1182
|
+
className?: string;
|
|
1183
1183
|
}
|
|
1184
|
-
declare function Main({ children,
|
|
1184
|
+
declare function Main({ children, className }: IMainBoxProps): react_jsx_runtime.JSX.Element;
|
|
1185
1185
|
|
|
1186
1186
|
interface CustomButtonProps extends ButtonProps, PropsWithChildren {
|
|
1187
1187
|
bolt?: boolean;
|
|
@@ -1195,7 +1195,7 @@ declare const Button: FC<CustomButtonProps>;
|
|
|
1195
1195
|
|
|
1196
1196
|
interface ButtonDarkProps {
|
|
1197
1197
|
title: string;
|
|
1198
|
-
|
|
1198
|
+
className?: string;
|
|
1199
1199
|
view?: 'dark' | 'transparent' | 'header';
|
|
1200
1200
|
icon?: ReactNode;
|
|
1201
1201
|
}
|
|
@@ -1354,7 +1354,7 @@ interface ButtonBadgeProps {
|
|
|
1354
1354
|
declare const ButtonBadge: FC<SelectChildrenProps & ButtonBadgeProps>;
|
|
1355
1355
|
|
|
1356
1356
|
interface LogoBlockProps {
|
|
1357
|
-
|
|
1357
|
+
className?: string;
|
|
1358
1358
|
small?: boolean;
|
|
1359
1359
|
locale: string;
|
|
1360
1360
|
homePage: string;
|
|
@@ -1420,21 +1420,21 @@ interface ILinkOut {
|
|
|
1420
1420
|
data?: string;
|
|
1421
1421
|
type: outLinkType;
|
|
1422
1422
|
title: string | ReactNode;
|
|
1423
|
-
|
|
1423
|
+
className?: string;
|
|
1424
1424
|
blank?: boolean;
|
|
1425
1425
|
}
|
|
1426
|
-
declare function LinkOut({ data, type, title,
|
|
1426
|
+
declare function LinkOut({ data, type, title, className, blank, }: ILinkOut): react_jsx_runtime.JSX.Element;
|
|
1427
1427
|
|
|
1428
1428
|
interface ILinkIconBorder {
|
|
1429
1429
|
title: string;
|
|
1430
1430
|
icon: ReactNode;
|
|
1431
|
-
|
|
1431
|
+
className?: string;
|
|
1432
1432
|
classesText?: string;
|
|
1433
1433
|
color?: 'dark' | 'gray';
|
|
1434
1434
|
onClick?: Function;
|
|
1435
1435
|
href?: string;
|
|
1436
1436
|
}
|
|
1437
|
-
declare function LinkIconBorder({ icon, title,
|
|
1437
|
+
declare function LinkIconBorder({ icon, title, className, classesText, color, onClick, href, }: ILinkIconBorder): react_jsx_runtime.JSX.Element;
|
|
1438
1438
|
|
|
1439
1439
|
interface CustomSwitchProps {
|
|
1440
1440
|
beforeText?: string;
|
|
@@ -1678,7 +1678,7 @@ interface RealtyCardProps {
|
|
|
1678
1678
|
address?: string;
|
|
1679
1679
|
addressWithIcon?: boolean;
|
|
1680
1680
|
metro?: string[];
|
|
1681
|
-
|
|
1681
|
+
className?: string;
|
|
1682
1682
|
title?: string;
|
|
1683
1683
|
subTitle?: string;
|
|
1684
1684
|
imageAlt?: string;
|