mayak-common-library 0.0.131 → 0.0.133
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 +561 -9
- package/dist/index.d.ts +561 -9
- package/dist/index.js +12 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
2
|
import * as React from 'react';
|
|
3
|
-
import React__default, { FC,
|
|
3
|
+
import React__default, { FC, ReactNode, MouseEventHandler, PropsWithChildren, MouseEvent, ReactElement } from 'react';
|
|
4
4
|
import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
5
5
|
import { ButtonProps } from '@mui/material/Button';
|
|
6
6
|
import { IconButtonProps } from '@mui/material/IconButton/IconButton';
|
|
@@ -66,6 +66,40 @@ export { default as YouTubeIcon } from '@/components/images/icons/youtube.svg';
|
|
|
66
66
|
export { default as SendIcon } from '@/components/images/icons/send.svg';
|
|
67
67
|
export { default as WhatsUp } from '@/components/images/icons/whatsup.svg';
|
|
68
68
|
|
|
69
|
+
interface IWorker$1 {
|
|
70
|
+
imageUrl?: string;
|
|
71
|
+
description?: string;
|
|
72
|
+
firstName?: string;
|
|
73
|
+
lastName?: string;
|
|
74
|
+
fullName?: string;
|
|
75
|
+
position?: string;
|
|
76
|
+
instagram?: string;
|
|
77
|
+
facebook?: string;
|
|
78
|
+
youTube?: string;
|
|
79
|
+
linkedIn?: string;
|
|
80
|
+
phone?: string;
|
|
81
|
+
email?: string;
|
|
82
|
+
bgImageSrc?: string;
|
|
83
|
+
}
|
|
84
|
+
interface INumberText {
|
|
85
|
+
number?: number;
|
|
86
|
+
text?: string;
|
|
87
|
+
}
|
|
88
|
+
interface IBoxItem$6 {
|
|
89
|
+
text1?: string;
|
|
90
|
+
text2?: string;
|
|
91
|
+
text3?: string;
|
|
92
|
+
}
|
|
93
|
+
interface IAboutCompanyMain {
|
|
94
|
+
title?: string;
|
|
95
|
+
text1?: string;
|
|
96
|
+
text2?: string;
|
|
97
|
+
box?: IBoxItem$6[];
|
|
98
|
+
workerCeo?: IWorker$1;
|
|
99
|
+
classes?: string;
|
|
100
|
+
}
|
|
101
|
+
declare function AboutCompanyMain({ title, text1, text2, box, workerCeo, classes, }: IAboutCompanyMain): react_jsx_runtime.JSX.Element;
|
|
102
|
+
|
|
69
103
|
interface IBox {
|
|
70
104
|
title?: string;
|
|
71
105
|
items?: {
|
|
@@ -82,6 +116,79 @@ interface IAboutUsFirstBlockProps {
|
|
|
82
116
|
}
|
|
83
117
|
declare function AboutUsFirstBlock({ classes, box, text1, text2, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
84
118
|
|
|
119
|
+
interface IBoxItem$5 {
|
|
120
|
+
icon?: string;
|
|
121
|
+
label?: string;
|
|
122
|
+
text?: string;
|
|
123
|
+
}
|
|
124
|
+
interface IAmenitiesBlockProps {
|
|
125
|
+
classes?: string;
|
|
126
|
+
title?: string;
|
|
127
|
+
box?: IBoxItem$5[];
|
|
128
|
+
}
|
|
129
|
+
declare function AmenitiesBlock({ classes, box, title, }: IAmenitiesBlockProps): react_jsx_runtime.JSX.Element;
|
|
130
|
+
|
|
131
|
+
interface IAnyLevelBlock {
|
|
132
|
+
block1: {
|
|
133
|
+
title?: string;
|
|
134
|
+
text1?: string;
|
|
135
|
+
text2?: string;
|
|
136
|
+
text3?: string;
|
|
137
|
+
};
|
|
138
|
+
block2: {
|
|
139
|
+
imageUrl?: string;
|
|
140
|
+
text1?: string;
|
|
141
|
+
};
|
|
142
|
+
classes?: string;
|
|
143
|
+
}
|
|
144
|
+
declare function AnyLevelBlock({ block1, block2, classes, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
145
|
+
|
|
146
|
+
interface IAnyQuestionsBlock {
|
|
147
|
+
worker?: IWorker$1;
|
|
148
|
+
classes?: string;
|
|
149
|
+
}
|
|
150
|
+
declare function AnyQuestionsBlock({ worker, classes, }: IAnyQuestionsBlock): react_jsx_runtime.JSX.Element;
|
|
151
|
+
|
|
152
|
+
type LanguageSlugsType = {
|
|
153
|
+
[key: string]: string;
|
|
154
|
+
};
|
|
155
|
+
type outLinkType = 'viber' | 'telegram' | 'tel' | 'googleMaps' | 'mail' | 'link' | 'whatsapp';
|
|
156
|
+
type Site = 'kyiv' | 'dubai';
|
|
157
|
+
|
|
158
|
+
interface IArticleContent {
|
|
159
|
+
title?: string;
|
|
160
|
+
text?: any;
|
|
161
|
+
imageUrl?: string;
|
|
162
|
+
date?: string;
|
|
163
|
+
slugs?: LanguageSlugsType;
|
|
164
|
+
}
|
|
165
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
166
|
+
|
|
167
|
+
interface IArticle {
|
|
168
|
+
imageUrl?: string;
|
|
169
|
+
title?: string;
|
|
170
|
+
text?: string;
|
|
171
|
+
slug?: string;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
type TitlePosition$1 = 'center' | 'left';
|
|
175
|
+
interface IArticlesBlock {
|
|
176
|
+
title?: string;
|
|
177
|
+
classes?: string;
|
|
178
|
+
button?: boolean;
|
|
179
|
+
titlePosition?: TitlePosition$1;
|
|
180
|
+
articles?: IArticle[];
|
|
181
|
+
}
|
|
182
|
+
declare function ArticlesBlock({ title, classes, button, titlePosition, articles, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
|
|
183
|
+
|
|
184
|
+
interface IArticlesFull {
|
|
185
|
+
classes?: string;
|
|
186
|
+
title?: string;
|
|
187
|
+
articles?: IArticle[];
|
|
188
|
+
totalArticles?: number;
|
|
189
|
+
}
|
|
190
|
+
declare function ArticlesFull({ title, articles, classes, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
191
|
+
|
|
85
192
|
interface IBannerBlock {
|
|
86
193
|
videoLink?: string;
|
|
87
194
|
bigText?: string;
|
|
@@ -90,18 +197,96 @@ interface IBannerBlock {
|
|
|
90
197
|
}
|
|
91
198
|
declare function BannerBlock({ bigText, smallText, classes, videoLink, }: IBannerBlock): react_jsx_runtime.JSX.Element;
|
|
92
199
|
|
|
93
|
-
interface
|
|
200
|
+
interface IBannerBlock2 {
|
|
201
|
+
image_url?: string;
|
|
202
|
+
bigText?: string;
|
|
203
|
+
text1?: string;
|
|
204
|
+
text2?: string;
|
|
205
|
+
classes?: string;
|
|
206
|
+
}
|
|
207
|
+
declare function BannerBlock2({ image_url, bigText, text1, text2, classes, }: IBannerBlock2): react_jsx_runtime.JSX.Element;
|
|
208
|
+
|
|
209
|
+
interface IBoxItem$4 {
|
|
210
|
+
text1?: string;
|
|
211
|
+
text2?: string;
|
|
212
|
+
icon?: string;
|
|
213
|
+
}
|
|
214
|
+
interface IBannerReferralProgram {
|
|
215
|
+
classes?: string;
|
|
216
|
+
imgPerson?: string;
|
|
217
|
+
imgBack?: string;
|
|
218
|
+
strongText?: string;
|
|
219
|
+
text?: string;
|
|
220
|
+
box?: IBoxItem$4[];
|
|
221
|
+
}
|
|
222
|
+
declare function BannerReferralProgram({ classes, box, imgBack, imgPerson, strongText, text, }: IBannerReferralProgram): react_jsx_runtime.JSX.Element;
|
|
223
|
+
|
|
224
|
+
interface IBecomePartnerProps {
|
|
225
|
+
classes?: string;
|
|
226
|
+
title?: string;
|
|
227
|
+
text1?: string;
|
|
228
|
+
text2?: string;
|
|
229
|
+
img?: string;
|
|
230
|
+
}
|
|
231
|
+
declare function BecomePartner({ classes, title, text2, text1, }: IBecomePartnerProps): react_jsx_runtime.JSX.Element;
|
|
232
|
+
|
|
233
|
+
interface IBenefit$1 {
|
|
94
234
|
imageUrl?: string;
|
|
95
235
|
text1?: string;
|
|
96
236
|
text2?: string;
|
|
97
237
|
}
|
|
98
238
|
interface IBenefitsBlock {
|
|
99
|
-
benefits?: IBenefit[];
|
|
239
|
+
benefits?: IBenefit$1[];
|
|
100
240
|
title?: string;
|
|
101
241
|
classes?: string;
|
|
102
242
|
}
|
|
103
243
|
declare function BenefitsBlock({ benefits, classes, title, }: IBenefitsBlock): Promise<react_jsx_runtime.JSX.Element>;
|
|
104
244
|
|
|
245
|
+
interface IBenefit {
|
|
246
|
+
imageUrl?: string;
|
|
247
|
+
text1?: string;
|
|
248
|
+
text2?: string;
|
|
249
|
+
}
|
|
250
|
+
interface IBenefitsVacanciesBlock {
|
|
251
|
+
title?: string;
|
|
252
|
+
benefits?: IBenefit[];
|
|
253
|
+
classes?: string;
|
|
254
|
+
}
|
|
255
|
+
declare function BenefitsVacanciesBlock({ title, benefits, classes, }: IBenefitsVacanciesBlock): react_jsx_runtime.JSX.Element;
|
|
256
|
+
|
|
257
|
+
interface IComponentItem {
|
|
258
|
+
text1?: string;
|
|
259
|
+
text2?: string;
|
|
260
|
+
text3?: string;
|
|
261
|
+
}
|
|
262
|
+
interface IBlockAboutCareer {
|
|
263
|
+
title?: string;
|
|
264
|
+
subtitle?: string;
|
|
265
|
+
text1?: string;
|
|
266
|
+
text2?: string;
|
|
267
|
+
boxTitle?: string;
|
|
268
|
+
boxItems?: IComponentItem[];
|
|
269
|
+
careerItems?: IComponentItem[];
|
|
270
|
+
classes?: string;
|
|
271
|
+
videoLink?: string;
|
|
272
|
+
}
|
|
273
|
+
declare function BlockAboutCareer({ title, classes, videoLink, }: IBlockAboutCareer): react_jsx_runtime.JSX.Element;
|
|
274
|
+
|
|
275
|
+
interface IBlockCardContent {
|
|
276
|
+
classes?: string;
|
|
277
|
+
turn?: 'right' | 'left';
|
|
278
|
+
title?: string;
|
|
279
|
+
text?: string;
|
|
280
|
+
imageUrl?: string;
|
|
281
|
+
buttonLink?: boolean;
|
|
282
|
+
}
|
|
283
|
+
declare function BlockCardContent({ classes, turn, title, imageUrl, text, buttonLink, }: IBlockCardContent): react_jsx_runtime.JSX.Element;
|
|
284
|
+
|
|
285
|
+
interface IBlockChoiceLinkGoToCatalog {
|
|
286
|
+
classes?: string;
|
|
287
|
+
}
|
|
288
|
+
declare function BlockChoiceLinkGoToCatalog({ classes, }: IBlockChoiceLinkGoToCatalog): react_jsx_runtime.JSX.Element;
|
|
289
|
+
|
|
105
290
|
interface IOfficeItem {
|
|
106
291
|
phone?: string;
|
|
107
292
|
city?: string;
|
|
@@ -121,6 +306,16 @@ interface IBlockContacts {
|
|
|
121
306
|
}
|
|
122
307
|
declare function BlockContacts({ classes, offices, title, text, }: IBlockContacts): react_jsx_runtime.JSX.Element;
|
|
123
308
|
|
|
309
|
+
interface ILink {
|
|
310
|
+
label: string;
|
|
311
|
+
path: string;
|
|
312
|
+
}
|
|
313
|
+
interface IGroupLinks {
|
|
314
|
+
title: string;
|
|
315
|
+
links: ILink[];
|
|
316
|
+
}
|
|
317
|
+
declare function BlockGroupLinks({ title, links }: IGroupLinks): react_jsx_runtime.JSX.Element;
|
|
318
|
+
|
|
124
319
|
interface BlockImagesProps {
|
|
125
320
|
classes?: string;
|
|
126
321
|
images?: string[];
|
|
@@ -151,11 +346,137 @@ interface IBlockOurTeam {
|
|
|
151
346
|
}
|
|
152
347
|
declare function BlockOurTeam({ team, title, text, classes, full, }: IBlockOurTeam): react_jsx_runtime.JSX.Element;
|
|
153
348
|
|
|
349
|
+
interface IBlockTabsGroupLinks {
|
|
350
|
+
title: string;
|
|
351
|
+
classes?: string;
|
|
352
|
+
tabs: string[];
|
|
353
|
+
contents: IGroupLinks[][];
|
|
354
|
+
}
|
|
355
|
+
declare function BlockTabsGroupLinks({ title, classes, tabs, contents, }: IBlockTabsGroupLinks): react_jsx_runtime.JSX.Element;
|
|
356
|
+
|
|
357
|
+
interface ICallConsult {
|
|
358
|
+
classes?: string;
|
|
359
|
+
title?: string;
|
|
360
|
+
}
|
|
361
|
+
declare function CallConsult({ classes, title }: ICallConsult): react_jsx_runtime.JSX.Element;
|
|
362
|
+
|
|
363
|
+
interface ICallMeBlock {
|
|
364
|
+
classes?: string;
|
|
365
|
+
}
|
|
366
|
+
declare function CallMeBlock({ classes }: ICallMeBlock): react_jsx_runtime.JSX.Element;
|
|
367
|
+
|
|
368
|
+
interface ICaseItem {
|
|
369
|
+
imageUrl?: string;
|
|
370
|
+
text1?: string;
|
|
371
|
+
text2?: string;
|
|
372
|
+
}
|
|
373
|
+
interface ICasesBlock {
|
|
374
|
+
classes?: string;
|
|
375
|
+
caseItems?: ICaseItem[];
|
|
376
|
+
}
|
|
377
|
+
declare function CasesBlock({ caseItems, classes }: ICasesBlock): react_jsx_runtime.JSX.Element;
|
|
378
|
+
|
|
379
|
+
interface ICategoryCard {
|
|
380
|
+
imageUrl?: string;
|
|
381
|
+
title?: string;
|
|
382
|
+
text?: string;
|
|
383
|
+
link?: string;
|
|
384
|
+
}
|
|
385
|
+
interface ICatalogRealtiesBlock {
|
|
386
|
+
title?: string;
|
|
387
|
+
categories?: ICategoryCard[];
|
|
388
|
+
classes?: string;
|
|
389
|
+
}
|
|
390
|
+
declare function CatalogRealtiesBlock({ title, categories, classes, }: ICatalogRealtiesBlock): react_jsx_runtime.JSX.Element;
|
|
391
|
+
|
|
392
|
+
interface IBoxItem$3 {
|
|
393
|
+
label?: string;
|
|
394
|
+
icon?: string;
|
|
395
|
+
text?: string;
|
|
396
|
+
}
|
|
397
|
+
interface IClientTransferProcessProps {
|
|
398
|
+
classes?: string;
|
|
399
|
+
title?: string;
|
|
400
|
+
text?: string;
|
|
401
|
+
box?: IBoxItem$3[];
|
|
402
|
+
}
|
|
403
|
+
declare function ClientTransferProcess({ classes, box, title, text, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
404
|
+
|
|
405
|
+
interface IContactsContent {
|
|
406
|
+
title?: string;
|
|
407
|
+
classes?: string;
|
|
408
|
+
offices?: IOfficeItem[];
|
|
409
|
+
videoLink?: string;
|
|
410
|
+
text?: string;
|
|
411
|
+
}
|
|
412
|
+
declare function ContactsContent({ classes, offices, text, title, }: IContactsContent): react_jsx_runtime.JSX.Element;
|
|
413
|
+
|
|
414
|
+
interface IContactUsBlock {
|
|
415
|
+
classes?: string;
|
|
416
|
+
}
|
|
417
|
+
declare function ContactUsBlock({ classes }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
418
|
+
|
|
419
|
+
interface IExpertiseBlock {
|
|
420
|
+
block1: {
|
|
421
|
+
title?: string;
|
|
422
|
+
text1?: string;
|
|
423
|
+
text2?: string;
|
|
424
|
+
};
|
|
425
|
+
block2: {
|
|
426
|
+
imageUrl?: string;
|
|
427
|
+
text1?: string;
|
|
428
|
+
text2?: string;
|
|
429
|
+
};
|
|
430
|
+
classes?: string;
|
|
431
|
+
}
|
|
432
|
+
declare function ExpertiseBlock({ block1, block2, classes, }: IExpertiseBlock): react_jsx_runtime.JSX.Element;
|
|
433
|
+
|
|
434
|
+
interface IFAQProps {
|
|
435
|
+
classes?: string;
|
|
436
|
+
title?: string;
|
|
437
|
+
items?: {
|
|
438
|
+
question?: string;
|
|
439
|
+
answer?: string;
|
|
440
|
+
}[];
|
|
441
|
+
}
|
|
442
|
+
declare function FAQ({ classes, items, title }: IFAQProps): react_jsx_runtime.JSX.Element;
|
|
443
|
+
|
|
154
444
|
interface IFormBlock {
|
|
155
445
|
classes?: string;
|
|
156
446
|
}
|
|
157
447
|
declare function FormBlock({ classes }: IFormBlock): react_jsx_runtime.JSX.Element;
|
|
158
448
|
|
|
449
|
+
interface IImage {
|
|
450
|
+
id: number;
|
|
451
|
+
url: string;
|
|
452
|
+
realtyId: number;
|
|
453
|
+
}
|
|
454
|
+
interface IGalleryRealty {
|
|
455
|
+
images: IImage[];
|
|
456
|
+
}
|
|
457
|
+
declare function GalleryRealty({ images }: IGalleryRealty): react_jsx_runtime.JSX.Element;
|
|
458
|
+
|
|
459
|
+
interface IJoinTeamBlock {
|
|
460
|
+
imageUrl?: string;
|
|
461
|
+
title?: string;
|
|
462
|
+
classes?: string;
|
|
463
|
+
text?: string;
|
|
464
|
+
}
|
|
465
|
+
declare function JoinTeamBlock({ imageUrl, text, title, classes, }: IJoinTeamBlock): react_jsx_runtime.JSX.Element;
|
|
466
|
+
|
|
467
|
+
interface IItem$1 {
|
|
468
|
+
text1?: string;
|
|
469
|
+
}
|
|
470
|
+
interface ILegalSupport {
|
|
471
|
+
title?: string;
|
|
472
|
+
text?: string;
|
|
473
|
+
imageUrl?: string;
|
|
474
|
+
title2?: string;
|
|
475
|
+
items?: IItem$1[];
|
|
476
|
+
classes?: string;
|
|
477
|
+
}
|
|
478
|
+
declare function LegalSupport({ title2, title, items, text, imageUrl, classes, }: ILegalSupport): react_jsx_runtime.JSX.Element;
|
|
479
|
+
|
|
159
480
|
interface IOffices {
|
|
160
481
|
offices?: IOfficeItem[];
|
|
161
482
|
classes?: string;
|
|
@@ -169,6 +490,110 @@ interface IOfficesBlock {
|
|
|
169
490
|
}
|
|
170
491
|
declare function OfficesBlock({ text, offices, classes, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
171
492
|
|
|
493
|
+
interface IVacancy {
|
|
494
|
+
slug?: string;
|
|
495
|
+
position?: string;
|
|
496
|
+
pay?: string;
|
|
497
|
+
country?: string;
|
|
498
|
+
city?: string;
|
|
499
|
+
updated?: string;
|
|
500
|
+
offerText?: any;
|
|
501
|
+
additionalText?: any;
|
|
502
|
+
requirementsText?: any;
|
|
503
|
+
qualitiesText?: any;
|
|
504
|
+
}
|
|
505
|
+
interface IOpenVacancies {
|
|
506
|
+
title?: string;
|
|
507
|
+
classes?: string;
|
|
508
|
+
vacancies?: IVacancy[];
|
|
509
|
+
}
|
|
510
|
+
declare function OpenVacancies({ title, vacancies, classes, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
511
|
+
|
|
512
|
+
interface IOtherVacancies {
|
|
513
|
+
vacancies?: IVacancy[];
|
|
514
|
+
classes?: string;
|
|
515
|
+
}
|
|
516
|
+
declare function OtherVacancies({ vacancies, classes, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
517
|
+
|
|
518
|
+
interface IBlock {
|
|
519
|
+
strongText?: string;
|
|
520
|
+
text?: string;
|
|
521
|
+
}
|
|
522
|
+
interface IOurAdvantagesProps {
|
|
523
|
+
classes?: string;
|
|
524
|
+
title?: string;
|
|
525
|
+
text1?: string;
|
|
526
|
+
text2?: string;
|
|
527
|
+
images?: string[];
|
|
528
|
+
block?: IBlock;
|
|
529
|
+
}
|
|
530
|
+
declare function OurAdvantages({ classes, block, title, text2, text1, }: IOurAdvantagesProps): react_jsx_runtime.JSX.Element;
|
|
531
|
+
|
|
532
|
+
interface IOurServicesItem {
|
|
533
|
+
text1?: string;
|
|
534
|
+
text2?: string;
|
|
535
|
+
}
|
|
536
|
+
interface IOurServices {
|
|
537
|
+
classes?: string;
|
|
538
|
+
items?: IOurServicesItem[];
|
|
539
|
+
title?: string;
|
|
540
|
+
}
|
|
541
|
+
declare function OurServices({ title, items, classes }: IOurServices): react_jsx_runtime.JSX.Element;
|
|
542
|
+
|
|
543
|
+
interface IPopularAreasProps {
|
|
544
|
+
classes?: string;
|
|
545
|
+
title?: string;
|
|
546
|
+
items?: {
|
|
547
|
+
label?: string;
|
|
548
|
+
text?: string;
|
|
549
|
+
imgSrc?: string;
|
|
550
|
+
rows?: number;
|
|
551
|
+
cols?: number;
|
|
552
|
+
}[];
|
|
553
|
+
}
|
|
554
|
+
declare function PopularAreas({ classes, items, title, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
555
|
+
|
|
556
|
+
interface IBoxItem$2 {
|
|
557
|
+
img?: string;
|
|
558
|
+
label?: string;
|
|
559
|
+
from?: string;
|
|
560
|
+
to?: string;
|
|
561
|
+
description?: string[];
|
|
562
|
+
date?: string;
|
|
563
|
+
income?: string;
|
|
564
|
+
}
|
|
565
|
+
interface IPortfoliosProps {
|
|
566
|
+
classes?: string;
|
|
567
|
+
title?: string;
|
|
568
|
+
box?: IBoxItem$2[];
|
|
569
|
+
}
|
|
570
|
+
declare function Portfolios({ classes, box, title }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
571
|
+
|
|
572
|
+
interface IBoxItem$1 {
|
|
573
|
+
text1?: string;
|
|
574
|
+
text2?: string;
|
|
575
|
+
}
|
|
576
|
+
interface IReferralProgramFirstBlockProps {
|
|
577
|
+
title?: string;
|
|
578
|
+
subtitle?: string;
|
|
579
|
+
text1?: string;
|
|
580
|
+
text2?: string;
|
|
581
|
+
box?: IBoxItem$1[];
|
|
582
|
+
classes?: string;
|
|
583
|
+
}
|
|
584
|
+
declare function ReferralProgramFirstBlock({ title, box, subtitle, text2, text1, classes, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
585
|
+
|
|
586
|
+
interface IServicesTexts {
|
|
587
|
+
title?: string;
|
|
588
|
+
subtitle?: string;
|
|
589
|
+
text1?: string;
|
|
590
|
+
text2?: string;
|
|
591
|
+
title2?: string;
|
|
592
|
+
text3?: string;
|
|
593
|
+
classes?: string;
|
|
594
|
+
}
|
|
595
|
+
declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle, classes, }: IServicesTexts): react_jsx_runtime.JSX.Element;
|
|
596
|
+
|
|
172
597
|
interface SocialBlockProps {
|
|
173
598
|
classes?: string;
|
|
174
599
|
instagram?: string;
|
|
@@ -186,8 +611,31 @@ interface SocialBlockMainProps {
|
|
|
186
611
|
}
|
|
187
612
|
declare const SocialBlockMain: FC<SocialBlockMainProps>;
|
|
188
613
|
|
|
614
|
+
interface ITeamWorkerBlock {
|
|
615
|
+
image_url?: string;
|
|
616
|
+
text?: string;
|
|
617
|
+
name?: string;
|
|
618
|
+
position?: string;
|
|
619
|
+
social?: {
|
|
620
|
+
path?: string;
|
|
621
|
+
icon?: ReactNode;
|
|
622
|
+
}[];
|
|
623
|
+
turn?: 'right' | 'left';
|
|
624
|
+
bgSrc?: string;
|
|
625
|
+
}
|
|
626
|
+
declare function TeamWorkerBlock({ image_url, name, position, social, text, turn, }: ITeamWorkerBlock): react_jsx_runtime.JSX.Element;
|
|
627
|
+
|
|
628
|
+
interface ITextBlock {
|
|
629
|
+
classes?: string;
|
|
630
|
+
title?: string;
|
|
631
|
+
text?: string;
|
|
632
|
+
}
|
|
633
|
+
declare function TextBlock({ classes, text, title }: ITextBlock): react_jsx_runtime.JSX.Element;
|
|
634
|
+
|
|
189
635
|
declare const ThanksBlock: () => react_jsx_runtime.JSX.Element;
|
|
190
636
|
|
|
637
|
+
declare const ThanksBlockWithButton: () => react_jsx_runtime.JSX.Element;
|
|
638
|
+
|
|
191
639
|
type TitlePosition = 'center' | 'left';
|
|
192
640
|
|
|
193
641
|
interface ITitleBlock extends TypographyProps {
|
|
@@ -197,11 +645,115 @@ interface ITitleBlock extends TypographyProps {
|
|
|
197
645
|
}
|
|
198
646
|
declare function TitleBlock(props: ITitleBlock): react_jsx_runtime.JSX.Element;
|
|
199
647
|
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
648
|
+
interface ITopDeveopersProps {
|
|
649
|
+
classes?: string;
|
|
650
|
+
images?: string[];
|
|
651
|
+
title?: string;
|
|
652
|
+
}
|
|
653
|
+
declare function TopDevelopers({ classes, title }: ITopDeveopersProps): react_jsx_runtime.JSX.Element;
|
|
654
|
+
|
|
655
|
+
interface ITrustUs {
|
|
656
|
+
classes?: string;
|
|
657
|
+
title?: string;
|
|
658
|
+
text?: string;
|
|
659
|
+
numbers?: INumberText[];
|
|
660
|
+
imageUrl?: string;
|
|
661
|
+
}
|
|
662
|
+
declare function TrustUs({ classes, title, text, numbers, imageUrl, }: ITrustUs): react_jsx_runtime.JSX.Element;
|
|
663
|
+
|
|
664
|
+
interface IVacancyBoxInfo {
|
|
665
|
+
updatedAt?: string;
|
|
666
|
+
pay?: string;
|
|
667
|
+
country?: string;
|
|
668
|
+
city?: string;
|
|
669
|
+
button?: boolean;
|
|
670
|
+
classes?: string;
|
|
671
|
+
slug?: string;
|
|
672
|
+
}
|
|
673
|
+
declare function VacancyBoxInfo({ updatedAt, classes, pay, city, button, country, slug, }: IVacancyBoxInfo): react_jsx_runtime.JSX.Element;
|
|
674
|
+
|
|
675
|
+
interface IVacancyContent {
|
|
676
|
+
title?: string;
|
|
677
|
+
offer?: any;
|
|
678
|
+
additional?: any;
|
|
679
|
+
requirements?: any;
|
|
680
|
+
qualities?: any;
|
|
681
|
+
date?: string;
|
|
682
|
+
pay?: string;
|
|
683
|
+
country?: string;
|
|
684
|
+
city?: string;
|
|
685
|
+
slugs?: LanguageSlugsType;
|
|
686
|
+
}
|
|
687
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
688
|
+
|
|
689
|
+
interface IItem {
|
|
690
|
+
text1?: string;
|
|
691
|
+
}
|
|
692
|
+
interface IBlockItems {
|
|
693
|
+
title?: string;
|
|
694
|
+
items?: IItem[];
|
|
695
|
+
}
|
|
696
|
+
interface IWeOffer {
|
|
697
|
+
title?: string;
|
|
698
|
+
sellerItems?: IBlockItems;
|
|
699
|
+
buyerItems?: IBlockItems;
|
|
700
|
+
imageUrl: string;
|
|
701
|
+
classes?: string;
|
|
702
|
+
}
|
|
703
|
+
declare function WeOffer({ title, sellerItems, buyerItems, imageUrl, classes, }: IWeOffer): react_jsx_runtime.JSX.Element;
|
|
704
|
+
|
|
705
|
+
interface IWeTakeFullProps {
|
|
706
|
+
classes?: string;
|
|
707
|
+
imgSrc?: string;
|
|
708
|
+
title?: string;
|
|
709
|
+
text?: string;
|
|
710
|
+
}
|
|
711
|
+
declare function WeTakeFull({ classes, text, imgSrc, title, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
712
|
+
|
|
713
|
+
interface IWhatIsYourProps {
|
|
714
|
+
classes?: string;
|
|
715
|
+
title?: string;
|
|
716
|
+
text1?: string;
|
|
717
|
+
text2?: string;
|
|
718
|
+
text3?: string;
|
|
719
|
+
}
|
|
720
|
+
declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYourProps): react_jsx_runtime.JSX.Element;
|
|
721
|
+
|
|
722
|
+
interface IWhyDubaiProps {
|
|
723
|
+
classes?: string;
|
|
724
|
+
title1?: string;
|
|
725
|
+
title2?: string;
|
|
726
|
+
text1?: string;
|
|
727
|
+
text2?: string;
|
|
728
|
+
images?: string[];
|
|
729
|
+
}
|
|
730
|
+
declare function WhyDubai({ classes, title1, title2, text2, text1, }: IWhyDubaiProps): react_jsx_runtime.JSX.Element;
|
|
731
|
+
|
|
732
|
+
interface IBoxItem {
|
|
733
|
+
number?: number;
|
|
734
|
+
label?: string;
|
|
735
|
+
text?: string;
|
|
736
|
+
}
|
|
737
|
+
interface IWhyShouldWorkProps {
|
|
738
|
+
classes?: string;
|
|
739
|
+
title?: string;
|
|
740
|
+
text?: string;
|
|
741
|
+
box?: IBoxItem[];
|
|
742
|
+
}
|
|
743
|
+
declare function WhyShouldWork({ classes, box, title, text, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
744
|
+
|
|
745
|
+
interface IWheWeItem {
|
|
746
|
+
imageUrl?: string;
|
|
747
|
+
text1?: string;
|
|
748
|
+
text2?: string;
|
|
749
|
+
}
|
|
750
|
+
interface IWhyWe {
|
|
751
|
+
imageUrl?: string;
|
|
752
|
+
classes?: string;
|
|
753
|
+
title?: string;
|
|
754
|
+
items?: IWheWeItem[];
|
|
755
|
+
}
|
|
756
|
+
declare function WhyWe({ items, title, classes, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
|
|
205
757
|
|
|
206
758
|
type MenuItem = {
|
|
207
759
|
path: string;
|
|
@@ -504,4 +1056,4 @@ interface ListItemProps {
|
|
|
504
1056
|
}
|
|
505
1057
|
declare const ListItem: FC<ListItemProps>;
|
|
506
1058
|
|
|
507
|
-
export { AboutUsFirstBlock, ArticleCard, BannerBlock, BenefitsBlock, BlockContacts, BlockImages, BlockOurTeam, Button, ButtonDark, CategoryCard, Footer, FormBlock, FormInput, FromToInput, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JobCard, type LayoutStore, LinkOut, List, ListItem, type LocaleSlug, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ModalContainer, Offices, OfficesBlock, PhoneInput, CustomRadio as Radio, CustomRadioGroup as RadioGroup, RealtorCard, RealtyCard, SearchInput, CustomSelect as Select, SelectPro, SimpleSelect, SocialBlock, SocialBlockMain, ThanksBlock, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsWithLabel, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|
|
1059
|
+
export { AboutCompanyMain, AboutUsFirstBlock, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockCardContent, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogRealtiesBlock, CategoryCard, ClientTransferProcess, ContactUsBlock, ContactsContent, ExpertiseBlock, FAQ, Footer, FormBlock, FormInput, FromToInput, GalleryRealty, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JobCard, JoinTeamBlock, type LayoutStore, LegalSupport, LinkOut, List, ListItem, type LocaleSlug, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ModalContainer, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, PhoneInput, PopularAreas, Portfolios, CustomRadio as Radio, CustomRadioGroup as RadioGroup, RealtorCard, RealtyCard, ReferralProgramFirstBlock, SearchInput, CustomSelect as Select, SelectPro, ServicesTexts, SimpleSelect, SocialBlock, SocialBlockMain, TeamWorkerBlock, TextBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyDubai, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|