mayak-common-library 0.0.188 → 0.0.189
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 +1272 -0
- package/dist/index.d.ts +1272 -0
- package/dist/index.js +8 -8
- package/dist/index.mjs +8 -8
- package/package.json +1 -1
package/dist/index.d.mts
ADDED
|
@@ -0,0 +1,1272 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as react from 'react';
|
|
3
|
+
import { FC, ReactNode, MouseEventHandler, PropsWithChildren, MouseEvent, ReactElement } from 'react';
|
|
4
|
+
import { TypographyProps } from '@mui/material/Typography/Typography';
|
|
5
|
+
import * as zustand from 'zustand';
|
|
6
|
+
import { StateCreator } from 'zustand';
|
|
7
|
+
import { ButtonProps } from '@mui/material/Button';
|
|
8
|
+
import { LoadingButtonProps } from '@mui/lab/LoadingButton/LoadingButton';
|
|
9
|
+
import { IconButtonProps } from '@mui/material/IconButton/IconButton';
|
|
10
|
+
import * as _emotion_styled from '@emotion/styled';
|
|
11
|
+
import * as _emotion_react from '@emotion/react';
|
|
12
|
+
import * as _mui_material_OverridableComponent from '@mui/material/OverridableComponent';
|
|
13
|
+
import * as _mui_material from '@mui/material';
|
|
14
|
+
import { ToggleButtonProps, ToggleButtonGroupProps as ToggleButtonGroupProps$1, PaginationItemOwnProps } from '@mui/material';
|
|
15
|
+
import * as _mui_material_Button_Button from '@mui/material/Button/Button';
|
|
16
|
+
import { UseControllerProps, FieldValues } from 'react-hook-form';
|
|
17
|
+
import { SystemStyleObject } from '@mui/system';
|
|
18
|
+
import { SwitchProps } from '@mui/material/Switch/Switch';
|
|
19
|
+
import { ListProps } from '@mui/material/List/List';
|
|
20
|
+
import { InputProps } from '@mui/material/Input/Input';
|
|
21
|
+
import { AccordionProps } from '@mui/material/Accordion/Accordion';
|
|
22
|
+
|
|
23
|
+
interface IWorker$1 {
|
|
24
|
+
imageUrl?: string;
|
|
25
|
+
description?: string;
|
|
26
|
+
firstName?: string;
|
|
27
|
+
lastName?: string;
|
|
28
|
+
fullName?: string;
|
|
29
|
+
position?: string;
|
|
30
|
+
instagram?: string;
|
|
31
|
+
facebook?: string;
|
|
32
|
+
youTube?: string;
|
|
33
|
+
linkedIn?: string;
|
|
34
|
+
phone?: string;
|
|
35
|
+
email?: string;
|
|
36
|
+
bgImageSrc?: string;
|
|
37
|
+
}
|
|
38
|
+
interface INumberText {
|
|
39
|
+
number?: number;
|
|
40
|
+
text?: string;
|
|
41
|
+
}
|
|
42
|
+
interface IBoxItem$6 {
|
|
43
|
+
text1?: string;
|
|
44
|
+
text2?: string;
|
|
45
|
+
text3?: string;
|
|
46
|
+
}
|
|
47
|
+
interface IAboutCompanyMain {
|
|
48
|
+
title?: string;
|
|
49
|
+
text1?: string;
|
|
50
|
+
text2?: string;
|
|
51
|
+
box?: IBoxItem$6[];
|
|
52
|
+
workerCeo?: IWorker$1;
|
|
53
|
+
classes?: string;
|
|
54
|
+
}
|
|
55
|
+
declare function AboutCompanyMain({ title, text1, text2, box, workerCeo, classes, }: IAboutCompanyMain): react_jsx_runtime.JSX.Element;
|
|
56
|
+
|
|
57
|
+
interface IBox {
|
|
58
|
+
title?: string;
|
|
59
|
+
items?: {
|
|
60
|
+
text1?: string;
|
|
61
|
+
text2?: string;
|
|
62
|
+
}[];
|
|
63
|
+
}
|
|
64
|
+
interface IAboutUsFirstBlockProps {
|
|
65
|
+
classes?: string;
|
|
66
|
+
title?: string;
|
|
67
|
+
text1?: string;
|
|
68
|
+
text2?: string;
|
|
69
|
+
box?: IBox;
|
|
70
|
+
}
|
|
71
|
+
declare function AboutUsFirstBlock({ classes, box, text1, text2, title, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
72
|
+
|
|
73
|
+
interface IBoxItem$5 {
|
|
74
|
+
icon?: string;
|
|
75
|
+
label?: string;
|
|
76
|
+
text?: string;
|
|
77
|
+
}
|
|
78
|
+
interface IAmenitiesBlockProps {
|
|
79
|
+
classes?: string;
|
|
80
|
+
title?: string;
|
|
81
|
+
box?: IBoxItem$5[];
|
|
82
|
+
}
|
|
83
|
+
declare function AmenitiesBlock({ classes, box, title, }: IAmenitiesBlockProps): react_jsx_runtime.JSX.Element;
|
|
84
|
+
|
|
85
|
+
interface IAnyLevelBlock {
|
|
86
|
+
block1: {
|
|
87
|
+
title?: string;
|
|
88
|
+
text1?: string;
|
|
89
|
+
text2?: string;
|
|
90
|
+
text3?: string;
|
|
91
|
+
};
|
|
92
|
+
block2: {
|
|
93
|
+
imageUrl?: string;
|
|
94
|
+
text1?: string;
|
|
95
|
+
};
|
|
96
|
+
classes?: string;
|
|
97
|
+
}
|
|
98
|
+
declare function AnyLevelBlock({ block1, block2, classes, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
99
|
+
|
|
100
|
+
interface IAnyQuestionsBlock {
|
|
101
|
+
worker?: IWorker$1;
|
|
102
|
+
classes?: string;
|
|
103
|
+
}
|
|
104
|
+
declare function AnyQuestionsBlock({ worker, classes, }: IAnyQuestionsBlock): react_jsx_runtime.JSX.Element;
|
|
105
|
+
|
|
106
|
+
type SelectChildrenProps = {
|
|
107
|
+
ref?: any;
|
|
108
|
+
onClick?: any;
|
|
109
|
+
onClose?: any;
|
|
110
|
+
collapse?: any;
|
|
111
|
+
collapseParent?: any;
|
|
112
|
+
};
|
|
113
|
+
type LanguageSlugsType = {
|
|
114
|
+
[key: string]: string;
|
|
115
|
+
};
|
|
116
|
+
type localesProps = {
|
|
117
|
+
label: string;
|
|
118
|
+
locale: string;
|
|
119
|
+
}[];
|
|
120
|
+
interface LocaleSwitcherProps {
|
|
121
|
+
locales: localesProps;
|
|
122
|
+
homePage: string;
|
|
123
|
+
defLocale: string;
|
|
124
|
+
}
|
|
125
|
+
type Site = 'kyiv' | 'dubai';
|
|
126
|
+
type TitlePosition$1 = 'center' | 'left';
|
|
127
|
+
|
|
128
|
+
interface IArticleContent {
|
|
129
|
+
title?: string;
|
|
130
|
+
text?: any;
|
|
131
|
+
imageUrl?: string;
|
|
132
|
+
date?: string;
|
|
133
|
+
slugs?: LanguageSlugsType;
|
|
134
|
+
}
|
|
135
|
+
declare function ArticleContent({ title, text, imageUrl, date, slugs, }: IArticleContent): react_jsx_runtime.JSX.Element;
|
|
136
|
+
|
|
137
|
+
interface IArticle {
|
|
138
|
+
imageUrl?: string;
|
|
139
|
+
title?: string;
|
|
140
|
+
text?: string;
|
|
141
|
+
slug?: string;
|
|
142
|
+
href: string;
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
interface IArticlesBlock {
|
|
146
|
+
title: string;
|
|
147
|
+
classes?: string;
|
|
148
|
+
button?: boolean;
|
|
149
|
+
titlePosition?: TitlePosition$1;
|
|
150
|
+
articles?: IArticle[];
|
|
151
|
+
href: string;
|
|
152
|
+
}
|
|
153
|
+
declare function ArticlesBlock({ title, classes, button, articles, href, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
|
|
154
|
+
|
|
155
|
+
interface IArticlesFull$1 {
|
|
156
|
+
classes?: string;
|
|
157
|
+
title?: string;
|
|
158
|
+
articles?: IArticle[];
|
|
159
|
+
totalArticles?: number;
|
|
160
|
+
href: string;
|
|
161
|
+
}
|
|
162
|
+
declare function ArticlesFull({ title, articles, classes, href, totalArticles, }: IArticlesFull$1): react_jsx_runtime.JSX.Element;
|
|
163
|
+
|
|
164
|
+
interface IBannerBlock {
|
|
165
|
+
videoLink?: string;
|
|
166
|
+
bigText?: string;
|
|
167
|
+
smallText?: string;
|
|
168
|
+
classes?: string;
|
|
169
|
+
}
|
|
170
|
+
declare function BannerBlock({ bigText, smallText, classes, videoLink, }: IBannerBlock): react_jsx_runtime.JSX.Element;
|
|
171
|
+
|
|
172
|
+
interface IBannerBlock2 {
|
|
173
|
+
image_url?: string;
|
|
174
|
+
bigText?: string;
|
|
175
|
+
text1?: string;
|
|
176
|
+
text2?: string;
|
|
177
|
+
classes?: string;
|
|
178
|
+
}
|
|
179
|
+
declare function BannerBlock2({ image_url, bigText, text1, text2, classes, }: IBannerBlock2): react_jsx_runtime.JSX.Element;
|
|
180
|
+
|
|
181
|
+
interface IBoxItem$4 {
|
|
182
|
+
text1?: string;
|
|
183
|
+
text2?: string;
|
|
184
|
+
icon?: string;
|
|
185
|
+
}
|
|
186
|
+
interface IBannerReferralProgram {
|
|
187
|
+
classes?: string;
|
|
188
|
+
imgPerson?: string;
|
|
189
|
+
imgBack?: string;
|
|
190
|
+
strongText?: string;
|
|
191
|
+
text?: string;
|
|
192
|
+
box?: IBoxItem$4[];
|
|
193
|
+
personWidth: string;
|
|
194
|
+
personHeight: string;
|
|
195
|
+
}
|
|
196
|
+
declare function BannerReferralProgram({ classes, box, imgBack, imgPerson, strongText, text, personWidth, personHeight, }: IBannerReferralProgram): react_jsx_runtime.JSX.Element;
|
|
197
|
+
|
|
198
|
+
interface IBecomePartnerProps {
|
|
199
|
+
classes?: string;
|
|
200
|
+
title?: string;
|
|
201
|
+
text1?: string;
|
|
202
|
+
text2?: string;
|
|
203
|
+
img?: string;
|
|
204
|
+
}
|
|
205
|
+
declare function BecomePartner({ classes, title, text2, text1, }: IBecomePartnerProps): react_jsx_runtime.JSX.Element;
|
|
206
|
+
|
|
207
|
+
interface IBenefit$1 {
|
|
208
|
+
imageUrl?: string;
|
|
209
|
+
text1?: string;
|
|
210
|
+
text2?: string;
|
|
211
|
+
}
|
|
212
|
+
interface IBenefitsBlock {
|
|
213
|
+
benefits?: IBenefit$1[];
|
|
214
|
+
title?: string;
|
|
215
|
+
classes?: string;
|
|
216
|
+
}
|
|
217
|
+
declare function BenefitsBlock({ benefits, classes, title, }: IBenefitsBlock): Promise<react_jsx_runtime.JSX.Element>;
|
|
218
|
+
|
|
219
|
+
interface IBenefit {
|
|
220
|
+
imageUrl?: string;
|
|
221
|
+
text1?: string;
|
|
222
|
+
text2?: string;
|
|
223
|
+
}
|
|
224
|
+
interface BenefitsVacanciesBlockProps {
|
|
225
|
+
title?: string;
|
|
226
|
+
benefits?: (IBenefit | null)[];
|
|
227
|
+
classes?: string;
|
|
228
|
+
inlineItem?: boolean;
|
|
229
|
+
}
|
|
230
|
+
declare function BenefitsVacanciesBlock({ title, benefits, classes, inlineItem, }: BenefitsVacanciesBlockProps): react_jsx_runtime.JSX.Element;
|
|
231
|
+
|
|
232
|
+
interface IComponentItem {
|
|
233
|
+
text1?: string;
|
|
234
|
+
text2?: string;
|
|
235
|
+
text3?: string;
|
|
236
|
+
}
|
|
237
|
+
interface IBlockAboutCareer {
|
|
238
|
+
title?: string;
|
|
239
|
+
subtitle?: string;
|
|
240
|
+
text1?: string;
|
|
241
|
+
text2?: string;
|
|
242
|
+
boxTitle?: string;
|
|
243
|
+
boxItems?: IComponentItem[];
|
|
244
|
+
careerItems?: IComponentItem[];
|
|
245
|
+
classes?: string;
|
|
246
|
+
videoLink?: string;
|
|
247
|
+
}
|
|
248
|
+
declare function BlockAboutCareer({ title, classes, videoLink, }: IBlockAboutCareer): react_jsx_runtime.JSX.Element;
|
|
249
|
+
|
|
250
|
+
interface IBlockChoiceLinkGoToCatalog {
|
|
251
|
+
classes?: string;
|
|
252
|
+
}
|
|
253
|
+
declare function BlockChoiceLinkGoToCatalog({ classes, }: IBlockChoiceLinkGoToCatalog): react_jsx_runtime.JSX.Element;
|
|
254
|
+
|
|
255
|
+
interface IOfficeItem {
|
|
256
|
+
phone?: string;
|
|
257
|
+
city?: string;
|
|
258
|
+
address?: string;
|
|
259
|
+
workTime?: string;
|
|
260
|
+
email?: string;
|
|
261
|
+
site?: string;
|
|
262
|
+
instagram?: string;
|
|
263
|
+
whatsapp?: string;
|
|
264
|
+
telegram?: string;
|
|
265
|
+
}
|
|
266
|
+
interface IBlockContacts {
|
|
267
|
+
classes?: string;
|
|
268
|
+
title?: string;
|
|
269
|
+
text?: string;
|
|
270
|
+
offices?: IOfficeItem[];
|
|
271
|
+
}
|
|
272
|
+
declare function BlockContacts({ classes, offices, title, text, }: IBlockContacts): react_jsx_runtime.JSX.Element;
|
|
273
|
+
|
|
274
|
+
interface ILink {
|
|
275
|
+
label: string;
|
|
276
|
+
path: string;
|
|
277
|
+
}
|
|
278
|
+
interface IGroupLinks {
|
|
279
|
+
title: string;
|
|
280
|
+
links: ILink[];
|
|
281
|
+
}
|
|
282
|
+
declare function BlockGroupLinks({ title, links }: IGroupLinks): react_jsx_runtime.JSX.Element;
|
|
283
|
+
|
|
284
|
+
interface BlockImagesProps {
|
|
285
|
+
classes?: string;
|
|
286
|
+
images?: string[];
|
|
287
|
+
title?: string;
|
|
288
|
+
}
|
|
289
|
+
declare function BlockImages({ classes, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
|
290
|
+
|
|
291
|
+
interface IWorker {
|
|
292
|
+
imageUrl?: string;
|
|
293
|
+
description?: string;
|
|
294
|
+
firstName?: string;
|
|
295
|
+
lastName?: string;
|
|
296
|
+
fullName?: string;
|
|
297
|
+
position?: string;
|
|
298
|
+
instagram?: string;
|
|
299
|
+
facebook?: string;
|
|
300
|
+
youTube?: string;
|
|
301
|
+
linkedIn?: string;
|
|
302
|
+
phone?: string;
|
|
303
|
+
email?: string;
|
|
304
|
+
}
|
|
305
|
+
interface IBlockOurTeam {
|
|
306
|
+
title?: string;
|
|
307
|
+
text?: string;
|
|
308
|
+
team?: IWorker[];
|
|
309
|
+
classes?: string;
|
|
310
|
+
full?: boolean;
|
|
311
|
+
}
|
|
312
|
+
declare function BlockOurTeam({ team, title, text, classes, full, }: IBlockOurTeam): react_jsx_runtime.JSX.Element;
|
|
313
|
+
|
|
314
|
+
interface IBlockTabsGroupLinks {
|
|
315
|
+
title: string;
|
|
316
|
+
classes?: string;
|
|
317
|
+
tabs: string[];
|
|
318
|
+
contents: IGroupLinks[][];
|
|
319
|
+
}
|
|
320
|
+
declare function BlockTabsGroupLinks({ title, classes, tabs, contents, }: IBlockTabsGroupLinks): react_jsx_runtime.JSX.Element;
|
|
321
|
+
|
|
322
|
+
interface ICallConsult {
|
|
323
|
+
classes?: string;
|
|
324
|
+
title?: string;
|
|
325
|
+
}
|
|
326
|
+
declare function CallConsult({ classes, title }: ICallConsult): react_jsx_runtime.JSX.Element;
|
|
327
|
+
|
|
328
|
+
interface ICallMeBlock {
|
|
329
|
+
classes?: string;
|
|
330
|
+
}
|
|
331
|
+
declare function CallMeBlock({ classes }: ICallMeBlock): react_jsx_runtime.JSX.Element;
|
|
332
|
+
|
|
333
|
+
interface ICaseItem {
|
|
334
|
+
imageUrl?: string;
|
|
335
|
+
text1?: string;
|
|
336
|
+
text2?: string;
|
|
337
|
+
}
|
|
338
|
+
interface ICasesBlock {
|
|
339
|
+
classes?: string;
|
|
340
|
+
caseItems?: ICaseItem[];
|
|
341
|
+
}
|
|
342
|
+
declare function CasesBlock({ caseItems, classes }: ICasesBlock): react_jsx_runtime.JSX.Element;
|
|
343
|
+
|
|
344
|
+
interface ICategoryCard {
|
|
345
|
+
imageUrl?: string;
|
|
346
|
+
title?: string;
|
|
347
|
+
text?: string;
|
|
348
|
+
link?: string;
|
|
349
|
+
}
|
|
350
|
+
interface ICatalogRealtiesBlock {
|
|
351
|
+
title?: string;
|
|
352
|
+
categories?: ICategoryCard[];
|
|
353
|
+
classes?: string;
|
|
354
|
+
}
|
|
355
|
+
declare function CatalogRealtiesBlock({ title, categories, classes, }: ICatalogRealtiesBlock): react_jsx_runtime.JSX.Element;
|
|
356
|
+
|
|
357
|
+
interface IBoxItem$3 {
|
|
358
|
+
label?: string;
|
|
359
|
+
icon?: string;
|
|
360
|
+
text?: string;
|
|
361
|
+
}
|
|
362
|
+
interface IClientTransferProcessProps {
|
|
363
|
+
classes?: string;
|
|
364
|
+
title?: string;
|
|
365
|
+
text?: string;
|
|
366
|
+
box?: IBoxItem$3[];
|
|
367
|
+
}
|
|
368
|
+
declare function ClientTransferProcess({ classes, box, title, text, }: IClientTransferProcessProps): react_jsx_runtime.JSX.Element;
|
|
369
|
+
|
|
370
|
+
interface IContactUsBlock {
|
|
371
|
+
classes?: string;
|
|
372
|
+
}
|
|
373
|
+
declare function ContactUsBlock({ classes }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
374
|
+
|
|
375
|
+
interface IExpertiseBlock {
|
|
376
|
+
block1: {
|
|
377
|
+
title?: string;
|
|
378
|
+
text1?: string;
|
|
379
|
+
text2?: string;
|
|
380
|
+
};
|
|
381
|
+
block2: {
|
|
382
|
+
imageUrl?: string;
|
|
383
|
+
text1?: string;
|
|
384
|
+
text2?: string;
|
|
385
|
+
};
|
|
386
|
+
classes?: string;
|
|
387
|
+
}
|
|
388
|
+
declare function ExpertiseBlock({ block1, block2, classes, }: IExpertiseBlock): react_jsx_runtime.JSX.Element;
|
|
389
|
+
|
|
390
|
+
interface IFAQProps {
|
|
391
|
+
classes?: string;
|
|
392
|
+
title?: string;
|
|
393
|
+
items?: {
|
|
394
|
+
question?: string;
|
|
395
|
+
answer?: string;
|
|
396
|
+
}[];
|
|
397
|
+
}
|
|
398
|
+
declare function FAQ({ classes, items, title }: IFAQProps): react_jsx_runtime.JSX.Element;
|
|
399
|
+
|
|
400
|
+
interface IFormBlock {
|
|
401
|
+
classes?: string;
|
|
402
|
+
}
|
|
403
|
+
declare function FormBlock({ classes }: IFormBlock): react_jsx_runtime.JSX.Element;
|
|
404
|
+
|
|
405
|
+
interface IImage {
|
|
406
|
+
id: number;
|
|
407
|
+
url: string;
|
|
408
|
+
realtyId: number;
|
|
409
|
+
}
|
|
410
|
+
interface IGalleryRealty {
|
|
411
|
+
images: IImage[];
|
|
412
|
+
}
|
|
413
|
+
declare function GalleryRealty({ images }: IGalleryRealty): react_jsx_runtime.JSX.Element;
|
|
414
|
+
|
|
415
|
+
interface IJoinTeamBlock {
|
|
416
|
+
imageUrl?: string;
|
|
417
|
+
title?: string;
|
|
418
|
+
classes?: string;
|
|
419
|
+
text?: string;
|
|
420
|
+
}
|
|
421
|
+
declare function JoinTeamBlock({ imageUrl, text, title, classes, }: IJoinTeamBlock): react_jsx_runtime.JSX.Element;
|
|
422
|
+
|
|
423
|
+
interface IItem$1 {
|
|
424
|
+
text1?: string;
|
|
425
|
+
}
|
|
426
|
+
interface ILegalSupport {
|
|
427
|
+
title?: string;
|
|
428
|
+
text?: string;
|
|
429
|
+
imageUrl?: string;
|
|
430
|
+
title2?: string;
|
|
431
|
+
items?: IItem$1[];
|
|
432
|
+
classes?: string;
|
|
433
|
+
}
|
|
434
|
+
declare function LegalSupport({ title2, title, items, text, imageUrl, classes, }: ILegalSupport): react_jsx_runtime.JSX.Element;
|
|
435
|
+
|
|
436
|
+
interface IOffices {
|
|
437
|
+
offices?: IOfficeItem[];
|
|
438
|
+
classes?: string;
|
|
439
|
+
}
|
|
440
|
+
declare function Offices({ classes, offices }: IOffices): react_jsx_runtime.JSX.Element;
|
|
441
|
+
|
|
442
|
+
interface IOfficesBlock {
|
|
443
|
+
text?: string;
|
|
444
|
+
classes?: string;
|
|
445
|
+
offices?: IOfficeItem[];
|
|
446
|
+
title?: string;
|
|
447
|
+
}
|
|
448
|
+
declare function OfficesBlock({ text, offices, classes, title, }: IOfficesBlock): react_jsx_runtime.JSX.Element;
|
|
449
|
+
|
|
450
|
+
interface IVacancy {
|
|
451
|
+
slug?: string;
|
|
452
|
+
position?: string;
|
|
453
|
+
pay?: string;
|
|
454
|
+
country?: string;
|
|
455
|
+
city?: string;
|
|
456
|
+
updated?: string;
|
|
457
|
+
offerText?: any;
|
|
458
|
+
additionalText?: any;
|
|
459
|
+
requirementsText?: any;
|
|
460
|
+
qualitiesText?: any;
|
|
461
|
+
}
|
|
462
|
+
interface IOpenVacancies {
|
|
463
|
+
title?: string;
|
|
464
|
+
classes?: string;
|
|
465
|
+
vacancies?: IVacancy[];
|
|
466
|
+
href: string;
|
|
467
|
+
}
|
|
468
|
+
declare function OpenVacancies({ title, vacancies, classes, href, }: IOpenVacancies): react_jsx_runtime.JSX.Element;
|
|
469
|
+
|
|
470
|
+
interface IOtherVacancies {
|
|
471
|
+
vacancies?: IVacancy[];
|
|
472
|
+
classes?: string;
|
|
473
|
+
href: string;
|
|
474
|
+
}
|
|
475
|
+
declare function OtherVacancies({ vacancies, classes, href, }: IOtherVacancies): react_jsx_runtime.JSX.Element;
|
|
476
|
+
|
|
477
|
+
interface IBlock {
|
|
478
|
+
strongText?: string;
|
|
479
|
+
text?: string;
|
|
480
|
+
}
|
|
481
|
+
interface IOurAdvantagesProps {
|
|
482
|
+
classes?: string;
|
|
483
|
+
title?: string;
|
|
484
|
+
text1?: string;
|
|
485
|
+
text2?: string;
|
|
486
|
+
images?: string[];
|
|
487
|
+
block?: IBlock;
|
|
488
|
+
}
|
|
489
|
+
declare function OurAdvantages({ classes, block, title, text2, text1, }: IOurAdvantagesProps): react_jsx_runtime.JSX.Element;
|
|
490
|
+
|
|
491
|
+
interface IOurServicesItem {
|
|
492
|
+
text1?: string;
|
|
493
|
+
text2?: string;
|
|
494
|
+
}
|
|
495
|
+
interface IOurServices {
|
|
496
|
+
classes?: string;
|
|
497
|
+
items?: IOurServicesItem[];
|
|
498
|
+
title?: string;
|
|
499
|
+
}
|
|
500
|
+
declare function OurServices({ title, items, classes }: IOurServices): react_jsx_runtime.JSX.Element;
|
|
501
|
+
|
|
502
|
+
interface IPopularAreasProps {
|
|
503
|
+
classes?: string;
|
|
504
|
+
title?: string;
|
|
505
|
+
items?: {
|
|
506
|
+
label?: string;
|
|
507
|
+
text?: string;
|
|
508
|
+
imgSrc?: string;
|
|
509
|
+
rows?: number;
|
|
510
|
+
cols?: number;
|
|
511
|
+
slug?: string;
|
|
512
|
+
}[];
|
|
513
|
+
href: string;
|
|
514
|
+
}
|
|
515
|
+
declare function PopularAreas({ classes, items, title, href, }: IPopularAreasProps): react_jsx_runtime.JSX.Element;
|
|
516
|
+
|
|
517
|
+
interface IBoxItem$2 {
|
|
518
|
+
img?: string;
|
|
519
|
+
label?: string;
|
|
520
|
+
from?: string;
|
|
521
|
+
to?: string;
|
|
522
|
+
description?: string[];
|
|
523
|
+
date?: string;
|
|
524
|
+
income?: string;
|
|
525
|
+
}
|
|
526
|
+
interface IPortfoliosProps {
|
|
527
|
+
classes?: string;
|
|
528
|
+
title?: string;
|
|
529
|
+
box?: IBoxItem$2[];
|
|
530
|
+
}
|
|
531
|
+
declare function Portfolios({ classes, box, title }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
|
|
532
|
+
|
|
533
|
+
interface IBoxItem$1 {
|
|
534
|
+
text1?: string;
|
|
535
|
+
text2?: string;
|
|
536
|
+
}
|
|
537
|
+
interface IReferralProgramFirstBlockProps {
|
|
538
|
+
title?: string;
|
|
539
|
+
subtitle?: string;
|
|
540
|
+
text1?: string;
|
|
541
|
+
text2?: string;
|
|
542
|
+
box?: IBoxItem$1[];
|
|
543
|
+
classes?: string;
|
|
544
|
+
}
|
|
545
|
+
declare function ReferralProgramFirstBlock({ title, box, text1, classes, subtitle, text2, }: IReferralProgramFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
546
|
+
|
|
547
|
+
interface IServicesTexts {
|
|
548
|
+
title?: string;
|
|
549
|
+
subtitle?: string;
|
|
550
|
+
text1?: string;
|
|
551
|
+
text2?: string;
|
|
552
|
+
title2?: string;
|
|
553
|
+
text3?: string;
|
|
554
|
+
classes?: string;
|
|
555
|
+
}
|
|
556
|
+
declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle, classes, }: IServicesTexts): react_jsx_runtime.JSX.Element;
|
|
557
|
+
|
|
558
|
+
interface SocialBlockProps {
|
|
559
|
+
classes?: string;
|
|
560
|
+
instagram?: string;
|
|
561
|
+
whatsapp?: string;
|
|
562
|
+
telegram?: string;
|
|
563
|
+
}
|
|
564
|
+
declare function SocialBlock({ classes, telegram, whatsapp, instagram, }: SocialBlockProps): react_jsx_runtime.JSX.Element;
|
|
565
|
+
|
|
566
|
+
interface SocialBlockMainProps {
|
|
567
|
+
classes?: string;
|
|
568
|
+
instagram?: string;
|
|
569
|
+
facebook?: string;
|
|
570
|
+
youtube?: string;
|
|
571
|
+
linkedIn?: string;
|
|
572
|
+
}
|
|
573
|
+
declare const SocialBlockMain: FC<SocialBlockMainProps>;
|
|
574
|
+
|
|
575
|
+
interface ITeamWorkerBlock {
|
|
576
|
+
image_url?: string;
|
|
577
|
+
text?: string;
|
|
578
|
+
name?: string;
|
|
579
|
+
position?: string;
|
|
580
|
+
social?: {
|
|
581
|
+
path?: string;
|
|
582
|
+
icon?: ReactNode;
|
|
583
|
+
}[];
|
|
584
|
+
turn?: 'right' | 'left';
|
|
585
|
+
bgSrc?: string;
|
|
586
|
+
}
|
|
587
|
+
declare function TeamWorkerBlock({ image_url, name, position, social, text, turn, }: ITeamWorkerBlock): react_jsx_runtime.JSX.Element;
|
|
588
|
+
|
|
589
|
+
interface ITextBlock {
|
|
590
|
+
classes?: string;
|
|
591
|
+
title?: string;
|
|
592
|
+
text?: string;
|
|
593
|
+
}
|
|
594
|
+
declare function TextBlock({ classes, text, title }: ITextBlock): react_jsx_runtime.JSX.Element;
|
|
595
|
+
|
|
596
|
+
declare const ThanksBlock: () => react_jsx_runtime.JSX.Element;
|
|
597
|
+
|
|
598
|
+
declare const ThanksBlockWithButton: () => react_jsx_runtime.JSX.Element;
|
|
599
|
+
|
|
600
|
+
type TitlePosition = 'center' | 'left';
|
|
601
|
+
|
|
602
|
+
interface ITitleBlock extends TypographyProps {
|
|
603
|
+
title: string;
|
|
604
|
+
titlePosition?: TitlePosition;
|
|
605
|
+
classes?: string;
|
|
606
|
+
}
|
|
607
|
+
declare function TitleBlock(props: ITitleBlock): react_jsx_runtime.JSX.Element;
|
|
608
|
+
|
|
609
|
+
interface IDeveloperCardProps {
|
|
610
|
+
classes?: string;
|
|
611
|
+
img?: string;
|
|
612
|
+
title?: string;
|
|
613
|
+
price?: string;
|
|
614
|
+
slug?: string;
|
|
615
|
+
href: string;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
interface TopDevelopersProps {
|
|
619
|
+
classes?: string;
|
|
620
|
+
developers?: IDeveloperCardProps[];
|
|
621
|
+
title?: string;
|
|
622
|
+
}
|
|
623
|
+
declare function TopDevelopers({ classes, title, developers, }: TopDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
624
|
+
|
|
625
|
+
interface ITrustUs {
|
|
626
|
+
classes?: string;
|
|
627
|
+
title?: string;
|
|
628
|
+
text?: string;
|
|
629
|
+
numbers?: INumberText[];
|
|
630
|
+
imageUrl?: string;
|
|
631
|
+
}
|
|
632
|
+
declare function TrustUs({ classes, title, text, numbers, imageUrl, }: ITrustUs): react_jsx_runtime.JSX.Element;
|
|
633
|
+
|
|
634
|
+
interface IVacancyBoxInfo {
|
|
635
|
+
updatedAt?: string;
|
|
636
|
+
pay?: string;
|
|
637
|
+
country?: string;
|
|
638
|
+
city?: string;
|
|
639
|
+
button?: boolean;
|
|
640
|
+
classes?: string;
|
|
641
|
+
slug?: string;
|
|
642
|
+
}
|
|
643
|
+
declare function VacancyBoxInfo({ updatedAt, classes, pay, city, button, country, slug, }: IVacancyBoxInfo): react_jsx_runtime.JSX.Element;
|
|
644
|
+
|
|
645
|
+
interface IVacancyContent {
|
|
646
|
+
title?: string;
|
|
647
|
+
offer?: any;
|
|
648
|
+
additional?: any;
|
|
649
|
+
requirements?: any;
|
|
650
|
+
qualities?: any;
|
|
651
|
+
date?: string;
|
|
652
|
+
pay?: string;
|
|
653
|
+
country?: string;
|
|
654
|
+
city?: string;
|
|
655
|
+
slugs?: LanguageSlugsType;
|
|
656
|
+
}
|
|
657
|
+
declare function VacancyContent({ title, pay, date, offer, qualities, requirements, country, city, additional, slugs, }: IVacancyContent): react_jsx_runtime.JSX.Element;
|
|
658
|
+
|
|
659
|
+
interface IItem {
|
|
660
|
+
text1?: string;
|
|
661
|
+
}
|
|
662
|
+
interface IBlockItems {
|
|
663
|
+
title?: string;
|
|
664
|
+
items?: IItem[];
|
|
665
|
+
}
|
|
666
|
+
interface IWeOffer {
|
|
667
|
+
title?: string;
|
|
668
|
+
sellerItems?: IBlockItems;
|
|
669
|
+
buyerItems?: IBlockItems;
|
|
670
|
+
imageUrl: string;
|
|
671
|
+
classes?: string;
|
|
672
|
+
}
|
|
673
|
+
declare function WeOffer({ title, sellerItems, buyerItems, imageUrl, classes, }: IWeOffer): react_jsx_runtime.JSX.Element;
|
|
674
|
+
|
|
675
|
+
interface IWeTakeFullProps {
|
|
676
|
+
classes?: string;
|
|
677
|
+
imgSrc?: string;
|
|
678
|
+
title?: string;
|
|
679
|
+
text?: string;
|
|
680
|
+
}
|
|
681
|
+
declare function WeTakeFull({ classes, text, imgSrc, title, }: IWeTakeFullProps): react_jsx_runtime.JSX.Element;
|
|
682
|
+
|
|
683
|
+
interface IWhatIsYourProps {
|
|
684
|
+
classes?: string;
|
|
685
|
+
title?: string;
|
|
686
|
+
text1?: string;
|
|
687
|
+
text2?: string;
|
|
688
|
+
text3?: string;
|
|
689
|
+
}
|
|
690
|
+
declare function WhatIsYour({ classes, text3, text2, text1, title, }: IWhatIsYourProps): react_jsx_runtime.JSX.Element;
|
|
691
|
+
|
|
692
|
+
interface TextImageTileBlockProps {
|
|
693
|
+
classes?: string;
|
|
694
|
+
title1?: string;
|
|
695
|
+
title2?: string;
|
|
696
|
+
text1?: string;
|
|
697
|
+
text2?: string;
|
|
698
|
+
images?: string[];
|
|
699
|
+
withButton?: boolean;
|
|
700
|
+
}
|
|
701
|
+
declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
|
|
702
|
+
|
|
703
|
+
interface IBoxItem {
|
|
704
|
+
number?: number;
|
|
705
|
+
label?: string;
|
|
706
|
+
text?: string;
|
|
707
|
+
}
|
|
708
|
+
interface IWhyShouldWorkProps {
|
|
709
|
+
classes?: string;
|
|
710
|
+
title?: string;
|
|
711
|
+
text?: string;
|
|
712
|
+
box?: IBoxItem[];
|
|
713
|
+
}
|
|
714
|
+
declare function WhyShouldWork({ classes, box, title, text, }: IWhyShouldWorkProps): react_jsx_runtime.JSX.Element;
|
|
715
|
+
|
|
716
|
+
interface IWheWeItem {
|
|
717
|
+
imageUrl?: string;
|
|
718
|
+
text1?: string;
|
|
719
|
+
text2?: string;
|
|
720
|
+
}
|
|
721
|
+
interface IWhyWe {
|
|
722
|
+
imageUrl?: string;
|
|
723
|
+
classes?: string;
|
|
724
|
+
title?: string;
|
|
725
|
+
items?: IWheWeItem[];
|
|
726
|
+
}
|
|
727
|
+
declare function WhyWe({ items, title, classes, imageUrl }: IWhyWe): react_jsx_runtime.JSX.Element;
|
|
728
|
+
|
|
729
|
+
interface ObjectInfoBlockProps {
|
|
730
|
+
title: string;
|
|
731
|
+
text1: string;
|
|
732
|
+
properties: {
|
|
733
|
+
title: string;
|
|
734
|
+
desc: string;
|
|
735
|
+
}[];
|
|
736
|
+
classes?: string;
|
|
737
|
+
}
|
|
738
|
+
declare const ObjectInfoBlock: FC<ObjectInfoBlockProps>;
|
|
739
|
+
|
|
740
|
+
interface PaymentPlanBlockProps {
|
|
741
|
+
}
|
|
742
|
+
declare const PaymentPlanBlock: FC<PaymentPlanBlockProps>;
|
|
743
|
+
|
|
744
|
+
interface FloorPlansBlockProps {
|
|
745
|
+
}
|
|
746
|
+
declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
|
|
747
|
+
|
|
748
|
+
interface FullScreenImageProps {
|
|
749
|
+
src: string;
|
|
750
|
+
tags?: string[];
|
|
751
|
+
classes?: string;
|
|
752
|
+
}
|
|
753
|
+
declare const FullScreenImage: FC<FullScreenImageProps>;
|
|
754
|
+
|
|
755
|
+
interface GalleryBlockProps {
|
|
756
|
+
classes?: string;
|
|
757
|
+
images?: string[];
|
|
758
|
+
title?: string;
|
|
759
|
+
}
|
|
760
|
+
declare const GalleryBlock: FC<GalleryBlockProps>;
|
|
761
|
+
|
|
762
|
+
interface ContactDubaiBlockProps {
|
|
763
|
+
classes?: string;
|
|
764
|
+
}
|
|
765
|
+
declare function ContactDubaiBlock({ classes }: ContactDubaiBlockProps): react_jsx_runtime.JSX.Element;
|
|
766
|
+
|
|
767
|
+
interface IArea {
|
|
768
|
+
imageUrl?: string;
|
|
769
|
+
title?: string;
|
|
770
|
+
price?: string;
|
|
771
|
+
slug?: string;
|
|
772
|
+
whiteBottom?: boolean;
|
|
773
|
+
href: string;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
interface IArticlesFull {
|
|
777
|
+
classes?: string;
|
|
778
|
+
title?: string;
|
|
779
|
+
areas?: IArea[];
|
|
780
|
+
totalAreas?: number;
|
|
781
|
+
href: string;
|
|
782
|
+
}
|
|
783
|
+
declare function AreasFull({ title, areas, classes, href, }: IArticlesFull): react_jsx_runtime.JSX.Element;
|
|
784
|
+
|
|
785
|
+
interface NewProjectCardProps {
|
|
786
|
+
slug?: string;
|
|
787
|
+
imgSrc?: string;
|
|
788
|
+
title?: string;
|
|
789
|
+
address?: string;
|
|
790
|
+
price?: string;
|
|
791
|
+
developer?: string;
|
|
792
|
+
houseTypes?: string[];
|
|
793
|
+
href: string;
|
|
794
|
+
}
|
|
795
|
+
|
|
796
|
+
interface ICatalogNewProjectsProps {
|
|
797
|
+
classes?: string;
|
|
798
|
+
href: string;
|
|
799
|
+
newProjects?: NewProjectCardProps[];
|
|
800
|
+
}
|
|
801
|
+
declare function CatalogNewProjects({ classes, href, newProjects, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
|
|
802
|
+
|
|
803
|
+
interface IProjectsSliderProps$1 {
|
|
804
|
+
classes?: string;
|
|
805
|
+
projects?: NewProjectCardProps[];
|
|
806
|
+
title: string;
|
|
807
|
+
href: string;
|
|
808
|
+
}
|
|
809
|
+
declare function ProjectsSlider({ classes, projects, title, href, }: IProjectsSliderProps$1): react_jsx_runtime.JSX.Element;
|
|
810
|
+
|
|
811
|
+
interface IProjectsSliderProps {
|
|
812
|
+
classes?: string;
|
|
813
|
+
areas?: IArea[];
|
|
814
|
+
title: string;
|
|
815
|
+
href: string;
|
|
816
|
+
}
|
|
817
|
+
declare function AreasSlider({ classes, areas, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
|
|
818
|
+
|
|
819
|
+
interface IDevelopersSliderProps {
|
|
820
|
+
classes?: string;
|
|
821
|
+
developers?: IDeveloperCardProps[];
|
|
822
|
+
title: string;
|
|
823
|
+
href: string;
|
|
824
|
+
}
|
|
825
|
+
declare function DevelopersSlider({ classes, developers, title, href, }: IDevelopersSliderProps): react_jsx_runtime.JSX.Element;
|
|
826
|
+
|
|
827
|
+
interface IDeveloperItem {
|
|
828
|
+
img?: string;
|
|
829
|
+
title?: string;
|
|
830
|
+
text?: string;
|
|
831
|
+
slug?: string;
|
|
832
|
+
}
|
|
833
|
+
interface IDevelopersProps {
|
|
834
|
+
classes?: string;
|
|
835
|
+
title?: string;
|
|
836
|
+
items?: IDeveloperItem[];
|
|
837
|
+
href: string;
|
|
838
|
+
}
|
|
839
|
+
declare function Developers({ classes, items, title, href, }: IDevelopersProps): react_jsx_runtime.JSX.Element;
|
|
840
|
+
|
|
841
|
+
interface IDeveloperBannerProps {
|
|
842
|
+
classes?: string;
|
|
843
|
+
imgBanner?: string;
|
|
844
|
+
imgLogo?: string;
|
|
845
|
+
}
|
|
846
|
+
declare function DeveloperBanner({ classes, imgBanner, imgLogo, }: IDeveloperBannerProps): react_jsx_runtime.JSX.Element;
|
|
847
|
+
|
|
848
|
+
interface IDeveloperTwoBlocks {
|
|
849
|
+
classes?: string;
|
|
850
|
+
title?: string;
|
|
851
|
+
text?: string;
|
|
852
|
+
block: {
|
|
853
|
+
projects?: string;
|
|
854
|
+
priceFrom?: string;
|
|
855
|
+
begin?: string;
|
|
856
|
+
};
|
|
857
|
+
}
|
|
858
|
+
declare function DeveloperTwoBlocks({ classes, block, text, title, }: IDeveloperTwoBlocks): react_jsx_runtime.JSX.Element;
|
|
859
|
+
|
|
860
|
+
declare const useWindowSize: () => {
|
|
861
|
+
windowSize: number;
|
|
862
|
+
xs: boolean;
|
|
863
|
+
md: boolean;
|
|
864
|
+
lg: boolean;
|
|
865
|
+
xl: boolean;
|
|
866
|
+
sm: boolean;
|
|
867
|
+
loading: boolean;
|
|
868
|
+
};
|
|
869
|
+
|
|
870
|
+
declare enum hrefSlugPrefix {
|
|
871
|
+
CATALOG = "/catalog/object/",
|
|
872
|
+
NEWS = "/news/",
|
|
873
|
+
VACANCY = "/vacancies/"
|
|
874
|
+
}
|
|
875
|
+
interface LocaleSlugSlice {
|
|
876
|
+
slugs: LanguageSlugsType | undefined;
|
|
877
|
+
hrefPrefix: hrefSlugPrefix | undefined;
|
|
878
|
+
}
|
|
879
|
+
interface LocaleSlugActions {
|
|
880
|
+
setLocaleSlugs: (_slugs?: LanguageSlugsType, hrefPrefix?: hrefSlugPrefix) => void;
|
|
881
|
+
}
|
|
882
|
+
type LocaleSlug = LocaleSlugSlice & LocaleSlugActions;
|
|
883
|
+
declare const createLocaleSlugSlice: StateCreator<LocaleSlug>;
|
|
884
|
+
declare const useLocaleSlugStore: zustand.UseBoundStore<zustand.StoreApi<LocaleSlug>>;
|
|
885
|
+
|
|
886
|
+
type LayoutStore = Modal;
|
|
887
|
+
declare enum MODAL_COMPONENT {
|
|
888
|
+
GENERAL = "GENERAL",
|
|
889
|
+
THANKS = "THANKS",
|
|
890
|
+
REQUEST = "REQUEST"
|
|
891
|
+
}
|
|
892
|
+
declare const MODAL_COMPONENTS: any;
|
|
893
|
+
declare const MODAL_TITLES: any;
|
|
894
|
+
interface ModalSlice {
|
|
895
|
+
openModal: boolean;
|
|
896
|
+
typeModal?: MODAL_COMPONENT;
|
|
897
|
+
dataModal?: any;
|
|
898
|
+
}
|
|
899
|
+
interface ModalActions {
|
|
900
|
+
showModal: (type: MODAL_COMPONENT, data?: any) => void;
|
|
901
|
+
hideModal: () => void;
|
|
902
|
+
}
|
|
903
|
+
type Modal = ModalSlice & ModalActions;
|
|
904
|
+
declare const createModalSlice: StateCreator<Modal>;
|
|
905
|
+
declare const useLayoutStore: zustand.UseBoundStore<zustand.StoreApi<Modal>>;
|
|
906
|
+
|
|
907
|
+
type MenuItem = {
|
|
908
|
+
path: string;
|
|
909
|
+
title: string;
|
|
910
|
+
};
|
|
911
|
+
interface IFooter {
|
|
912
|
+
instagram?: string;
|
|
913
|
+
facebook?: string;
|
|
914
|
+
youtube?: string;
|
|
915
|
+
linkedIn?: string;
|
|
916
|
+
menuItems: MenuItem[];
|
|
917
|
+
mainPhone?: string;
|
|
918
|
+
site: Site;
|
|
919
|
+
homePage: string;
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
interface IHeaderProps {
|
|
923
|
+
menuItems: MenuItem[];
|
|
924
|
+
mainPhone?: string;
|
|
925
|
+
locales: localesProps;
|
|
926
|
+
site: Site;
|
|
927
|
+
homePage: string;
|
|
928
|
+
whatsUp?: boolean;
|
|
929
|
+
}
|
|
930
|
+
declare function Header({ menuItems, mainPhone, locales, site, homePage, whatsUp, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
931
|
+
|
|
932
|
+
interface HeaderContactButtonProps {
|
|
933
|
+
onClick: MouseEventHandler<HTMLButtonElement> | undefined;
|
|
934
|
+
title: string;
|
|
935
|
+
homePage: string;
|
|
936
|
+
}
|
|
937
|
+
declare const _default: react.NamedExoticComponent<HeaderContactButtonProps>;
|
|
938
|
+
|
|
939
|
+
declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, }: IFooter): react_jsx_runtime.JSX.Element;
|
|
940
|
+
|
|
941
|
+
interface IFooter2 {
|
|
942
|
+
instagram?: string;
|
|
943
|
+
facebook?: string;
|
|
944
|
+
youtube?: string;
|
|
945
|
+
linkedIn?: string;
|
|
946
|
+
menuItems: MenuItem[];
|
|
947
|
+
mainPhone?: string;
|
|
948
|
+
site: Site;
|
|
949
|
+
homePage: string;
|
|
950
|
+
additionalMenu: {
|
|
951
|
+
title: string;
|
|
952
|
+
items: {
|
|
953
|
+
path: string;
|
|
954
|
+
title: string;
|
|
955
|
+
}[];
|
|
956
|
+
};
|
|
957
|
+
}
|
|
958
|
+
declare function Footer2({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, additionalMenu, }: IFooter2): react_jsx_runtime.JSX.Element;
|
|
959
|
+
|
|
960
|
+
declare function HeaderMob({ menuItems, mainPhone, locales, site, homePage, }: IHeaderProps): react_jsx_runtime.JSX.Element;
|
|
961
|
+
|
|
962
|
+
interface IMainBoxProps {
|
|
963
|
+
children: ReactNode;
|
|
964
|
+
classes?: string;
|
|
965
|
+
}
|
|
966
|
+
declare function Main({ children, classes }: IMainBoxProps): react_jsx_runtime.JSX.Element;
|
|
967
|
+
|
|
968
|
+
interface CustomButtonProps extends ButtonProps, PropsWithChildren {
|
|
969
|
+
bolt?: boolean;
|
|
970
|
+
border?: boolean;
|
|
971
|
+
base?: boolean;
|
|
972
|
+
small?: boolean;
|
|
973
|
+
large?: boolean;
|
|
974
|
+
medium?: boolean;
|
|
975
|
+
}
|
|
976
|
+
declare const Button: FC<CustomButtonProps>;
|
|
977
|
+
|
|
978
|
+
interface ButtonDarkProps {
|
|
979
|
+
title: string;
|
|
980
|
+
classes?: string;
|
|
981
|
+
view?: 'dark' | 'transparent';
|
|
982
|
+
icon?: ReactNode;
|
|
983
|
+
}
|
|
984
|
+
declare const ButtonDark: FC<ButtonDarkProps & LoadingButtonProps>;
|
|
985
|
+
|
|
986
|
+
interface CustomIconButtonProps extends IconButtonProps, PropsWithChildren {
|
|
987
|
+
isBlack?: boolean;
|
|
988
|
+
}
|
|
989
|
+
declare const IconButton: FC<CustomIconButtonProps>;
|
|
990
|
+
|
|
991
|
+
type ESTag = 'borough' | 'district' | 'city' | 'metro' | 'street' | 'housing' | 'region' | 'property';
|
|
992
|
+
interface ESObject {
|
|
993
|
+
id: number;
|
|
994
|
+
slug: string;
|
|
995
|
+
tag: ESTag;
|
|
996
|
+
value_en: string;
|
|
997
|
+
value_ru: string;
|
|
998
|
+
value_uk: string;
|
|
999
|
+
}
|
|
1000
|
+
interface ESGlobalObject extends ESObject {
|
|
1001
|
+
crmId?: number;
|
|
1002
|
+
countryId?: number;
|
|
1003
|
+
boroughId?: number;
|
|
1004
|
+
borough_crmid?: number;
|
|
1005
|
+
borough_en?: string;
|
|
1006
|
+
borough_ru?: string;
|
|
1007
|
+
borough_ua?: string;
|
|
1008
|
+
cityId?: number;
|
|
1009
|
+
city_crmid?: number;
|
|
1010
|
+
city_en?: string;
|
|
1011
|
+
city_ru?: string;
|
|
1012
|
+
city_uk?: string;
|
|
1013
|
+
districtId?: number;
|
|
1014
|
+
district_crmid?: number;
|
|
1015
|
+
district_en?: string;
|
|
1016
|
+
district_ru?: string;
|
|
1017
|
+
district_uk?: string;
|
|
1018
|
+
regionId?: number;
|
|
1019
|
+
region_crmid?: number;
|
|
1020
|
+
region_en?: string;
|
|
1021
|
+
region_ru?: string;
|
|
1022
|
+
region_uk?: string;
|
|
1023
|
+
}
|
|
1024
|
+
|
|
1025
|
+
declare enum MACHINE_NAME {
|
|
1026
|
+
RESIDENTIAL = "residential",
|
|
1027
|
+
COMMERCE = "commerce",
|
|
1028
|
+
LAND = "land",
|
|
1029
|
+
SALE = "sale",
|
|
1030
|
+
RENT = "rent",
|
|
1031
|
+
DAILY = "daily",
|
|
1032
|
+
FLAT = "flat",
|
|
1033
|
+
HOUSE = "house",
|
|
1034
|
+
OFFICE = "office",
|
|
1035
|
+
TRADE_AREA = "trade_area",
|
|
1036
|
+
WAREHOUSE = "warehouse",
|
|
1037
|
+
PRODUCTION_FACILITY = "production_facility",
|
|
1038
|
+
FOOD_SERVICE_OBJECT = "food_service_object",
|
|
1039
|
+
SERVICE_OBJECT = "service_object",
|
|
1040
|
+
OTHER_OBJECT = "other_object",
|
|
1041
|
+
HOTEL_ROOM = "hotel_room",
|
|
1042
|
+
SHOP = "shop",
|
|
1043
|
+
WHOLE_BUILDING = "whole_building",
|
|
1044
|
+
LAND_IND_CONSTRUCTION = "ind_construction",
|
|
1045
|
+
LAND_GARDEN = "garden",
|
|
1046
|
+
LAND_AGRICULTURAL = "agricultural",
|
|
1047
|
+
LAND_COMMERCIAL = "commercial",
|
|
1048
|
+
APARTMENTS = "apartments",
|
|
1049
|
+
VILLA = "villa",
|
|
1050
|
+
PENTHOUSE = "penthouse",
|
|
1051
|
+
TOWNHOUSE = "townhouse",
|
|
1052
|
+
DUPLEX = "duplex",
|
|
1053
|
+
FLAT_RENT = "flats-rent",
|
|
1054
|
+
HOUSE_RENT = "houses-rent",
|
|
1055
|
+
ROOM_RENT = "rooms-rent",
|
|
1056
|
+
COMMERCIAL_RENT = "commercial-rent",
|
|
1057
|
+
FLAT_SALE = "flats-sale",
|
|
1058
|
+
HOUSE_SALE = "houses-sale",
|
|
1059
|
+
ROOM_SALE = "rooms-sale",
|
|
1060
|
+
COMMERCIAL_SALE = "commercial-sale",
|
|
1061
|
+
LAND_SALE = "land-sale",
|
|
1062
|
+
VALUE_1 = "VALUE_1",
|
|
1063
|
+
VALUE_2 = "VALUE_2",
|
|
1064
|
+
VALUE_3 = "VALUE_3",
|
|
1065
|
+
VALUE_4 = "VALUE_4",
|
|
1066
|
+
VALUE_5 = "VALUE_5",
|
|
1067
|
+
VALUE_6 = "VALUE_6",
|
|
1068
|
+
PRICE_UP = "price-up",
|
|
1069
|
+
PRICE_DOWN = "price-down",
|
|
1070
|
+
NEW = "new",
|
|
1071
|
+
OLD = "old",
|
|
1072
|
+
P_HOUSE_TYPE = "tip-budinku",
|
|
1073
|
+
P_WALL_MATERIAL = "material-stin",
|
|
1074
|
+
P_REPAIR = "remont",
|
|
1075
|
+
P_LAYOUT = "planuvannya",
|
|
1076
|
+
P_CLASS_OF_HOUSING = "klas-zhitla",
|
|
1077
|
+
P_ROOM_LAYOUT = "shema-kimnat",
|
|
1078
|
+
CITY = "city"
|
|
1079
|
+
}
|
|
1080
|
+
type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
|
|
1081
|
+
declare enum SORT_NAME {
|
|
1082
|
+
'price' = "price",
|
|
1083
|
+
'novelty' = "novelty"
|
|
1084
|
+
}
|
|
1085
|
+
|
|
1086
|
+
interface ToggleSortProps {
|
|
1087
|
+
name: SORT_NAME;
|
|
1088
|
+
label: string;
|
|
1089
|
+
value?: SortKeysType;
|
|
1090
|
+
selected: boolean;
|
|
1091
|
+
flip: boolean;
|
|
1092
|
+
defFlip?: boolean;
|
|
1093
|
+
}
|
|
1094
|
+
declare const ToggleSort: FC<ToggleSortProps>;
|
|
1095
|
+
|
|
1096
|
+
declare const StyledButton: _emotion_styled.StyledComponent<_mui_material_Button_Button.ButtonOwnProps & Omit<_mui_material.ButtonBaseOwnProps, "classes"> & _mui_material_OverridableComponent.CommonProps & Omit<Omit<react.DetailedHTMLProps<react.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> & {
|
|
1097
|
+
ref?: ((instance: HTMLButtonElement | null) => void | react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES[keyof react.DO_NOT_USE_OR_YOU_WILL_BE_FIRED_CALLBACK_REF_RETURN_VALUES]) | react.RefObject<HTMLButtonElement> | null | undefined;
|
|
1098
|
+
}, "style" | "className" | "classes" | "action" | "centerRipple" | "children" | "disabled" | "disableRipple" | "disableTouchRipple" | "focusRipple" | "focusVisibleClassName" | "LinkComponent" | "onFocusVisible" | "sx" | "tabIndex" | "TouchRippleProps" | "touchRippleRef" | "href" | "color" | "disableElevation" | "disableFocusRipple" | "endIcon" | "fullWidth" | "size" | "startIcon" | "variant"> & {
|
|
1099
|
+
theme?: _emotion_react.Theme;
|
|
1100
|
+
}, {}, {}>;
|
|
1101
|
+
|
|
1102
|
+
declare const SubmitSelectButton: (props: SelectChildrenProps) => react_jsx_runtime.JSX.Element;
|
|
1103
|
+
|
|
1104
|
+
declare const ToggleButton: FC<ToggleButtonProps & {
|
|
1105
|
+
textView?: boolean;
|
|
1106
|
+
}>;
|
|
1107
|
+
|
|
1108
|
+
interface ToggleButtonGroupProps extends ToggleButtonGroupProps$1 {
|
|
1109
|
+
textView?: boolean;
|
|
1110
|
+
flexDirection?: "row" | "col";
|
|
1111
|
+
onChange: (event: MouseEvent<HTMLElement>, value: any) => void;
|
|
1112
|
+
value: any;
|
|
1113
|
+
}
|
|
1114
|
+
declare const ToggleButtonGroup: FC<ToggleButtonGroupProps & PropsWithChildren>;
|
|
1115
|
+
|
|
1116
|
+
interface ToggleButtonsMultipleProps$1 extends ToggleButtonGroupProps$1 {
|
|
1117
|
+
values: {
|
|
1118
|
+
value: string | number[];
|
|
1119
|
+
title: string;
|
|
1120
|
+
}[];
|
|
1121
|
+
textView?: boolean;
|
|
1122
|
+
collapseOnClick?: boolean;
|
|
1123
|
+
collapseParent?: () => void;
|
|
1124
|
+
label?: string;
|
|
1125
|
+
}
|
|
1126
|
+
declare const ToggleButtonsMultiple: FC<ToggleButtonsMultipleProps$1 & UseControllerProps<any>>;
|
|
1127
|
+
|
|
1128
|
+
type Values = {
|
|
1129
|
+
value: string | number[];
|
|
1130
|
+
title: string;
|
|
1131
|
+
}[];
|
|
1132
|
+
interface ToggleButtonsMultipleProps extends ToggleButtonGroupProps$1 {
|
|
1133
|
+
values: Values;
|
|
1134
|
+
textView?: boolean;
|
|
1135
|
+
collapseOnClick?: boolean;
|
|
1136
|
+
collapseParent?: () => void;
|
|
1137
|
+
label?: string;
|
|
1138
|
+
flexDirection?: 'row' | 'col';
|
|
1139
|
+
fixWidth?: boolean;
|
|
1140
|
+
arrayValueFormat?: boolean;
|
|
1141
|
+
name: any;
|
|
1142
|
+
}
|
|
1143
|
+
declare const ToggleButtonsWithLabel: FC<ToggleButtonsMultipleProps>;
|
|
1144
|
+
|
|
1145
|
+
interface LogoBlockProps {
|
|
1146
|
+
classes?: string;
|
|
1147
|
+
small?: boolean;
|
|
1148
|
+
locale: string;
|
|
1149
|
+
homePage: string;
|
|
1150
|
+
}
|
|
1151
|
+
declare const LogoBlock: FC<LogoBlockProps>;
|
|
1152
|
+
|
|
1153
|
+
interface LogoBlockWhiteProps {
|
|
1154
|
+
classes?: string;
|
|
1155
|
+
}
|
|
1156
|
+
declare const LogoBlockWhite: FC<LogoBlockWhiteProps>;
|
|
1157
|
+
|
|
1158
|
+
declare const StyledBadge: FC;
|
|
1159
|
+
declare const StyledBadgeDesc: FC;
|
|
1160
|
+
|
|
1161
|
+
interface SelectProProps$1 {
|
|
1162
|
+
placeholder?: string;
|
|
1163
|
+
childTitle?: string;
|
|
1164
|
+
colorBorder?: boolean;
|
|
1165
|
+
clickComponent?: ReactElement;
|
|
1166
|
+
btnStartIcon?: ReactElement;
|
|
1167
|
+
actionsComponent?: ReactElement;
|
|
1168
|
+
intermediateChild?: ReactElement;
|
|
1169
|
+
startIcon?: ReactElement;
|
|
1170
|
+
disableCloseButton?: boolean;
|
|
1171
|
+
fullContainerWidth?: boolean;
|
|
1172
|
+
overButton?: boolean;
|
|
1173
|
+
small?: boolean;
|
|
1174
|
+
fullWidth?: boolean;
|
|
1175
|
+
freeChildWidth?: boolean;
|
|
1176
|
+
btnStyles?: string;
|
|
1177
|
+
whiteArrow?: boolean;
|
|
1178
|
+
childContainerSx?: SystemStyleObject;
|
|
1179
|
+
paperSx?: SystemStyleObject;
|
|
1180
|
+
openUp?: boolean;
|
|
1181
|
+
controlled?: boolean;
|
|
1182
|
+
}
|
|
1183
|
+
declare const Select: FC<PropsWithChildren & SelectProProps$1>;
|
|
1184
|
+
|
|
1185
|
+
interface SelectProProps {
|
|
1186
|
+
placeholder?: string;
|
|
1187
|
+
fullContainerWidth?: boolean;
|
|
1188
|
+
overButton?: boolean;
|
|
1189
|
+
small?: boolean;
|
|
1190
|
+
upperCase?: boolean;
|
|
1191
|
+
bold?: boolean;
|
|
1192
|
+
}
|
|
1193
|
+
declare const SimpleSelect: FC<PropsWithChildren & SelectProProps>;
|
|
1194
|
+
|
|
1195
|
+
type outLinkType = 'viber' | 'telegram' | 'tel' | 'googleMaps' | 'mail' | 'link' | 'whatsapp';
|
|
1196
|
+
|
|
1197
|
+
interface ILinkOut {
|
|
1198
|
+
data?: string;
|
|
1199
|
+
type: outLinkType;
|
|
1200
|
+
title: string | ReactNode;
|
|
1201
|
+
classes?: string;
|
|
1202
|
+
blank?: boolean;
|
|
1203
|
+
}
|
|
1204
|
+
declare function LinkOut({ data, type, title, classes, blank, }: ILinkOut): react_jsx_runtime.JSX.Element;
|
|
1205
|
+
|
|
1206
|
+
interface CustomSwitchProps {
|
|
1207
|
+
beforeText?: string;
|
|
1208
|
+
afterText?: string;
|
|
1209
|
+
}
|
|
1210
|
+
declare const Switch: FC<CustomSwitchProps & SwitchProps>;
|
|
1211
|
+
|
|
1212
|
+
declare const LocaleSwitch: FC<LocaleSwitcherProps>;
|
|
1213
|
+
|
|
1214
|
+
declare const LocaleSwitchToggle: FC<LocaleSwitcherProps>;
|
|
1215
|
+
|
|
1216
|
+
declare const CatalogViewSwitch: () => react_jsx_runtime.JSX.Element;
|
|
1217
|
+
|
|
1218
|
+
declare const List: FC<ListProps>;
|
|
1219
|
+
|
|
1220
|
+
interface ListItemProps {
|
|
1221
|
+
icon?: ReactElement;
|
|
1222
|
+
title: string;
|
|
1223
|
+
value: MACHINE_NAME | string;
|
|
1224
|
+
bold?: boolean;
|
|
1225
|
+
onClick?: (value: MACHINE_NAME | string) => void;
|
|
1226
|
+
}
|
|
1227
|
+
declare const ListItem: FC<ListItemProps>;
|
|
1228
|
+
|
|
1229
|
+
interface ErrorMessageProps {
|
|
1230
|
+
errorMessage?: string;
|
|
1231
|
+
}
|
|
1232
|
+
declare const ErrorMessage: FC<ErrorMessageProps>;
|
|
1233
|
+
|
|
1234
|
+
declare const Input: FC<InputProps>;
|
|
1235
|
+
|
|
1236
|
+
interface PhoneNumberInputProps {
|
|
1237
|
+
name: string;
|
|
1238
|
+
border?: boolean;
|
|
1239
|
+
showError?: boolean;
|
|
1240
|
+
fullWidth?: boolean;
|
|
1241
|
+
centerText?: boolean;
|
|
1242
|
+
white?: boolean;
|
|
1243
|
+
format: string;
|
|
1244
|
+
placeholder: string;
|
|
1245
|
+
}
|
|
1246
|
+
declare const PhoneNumberInput: FC<PhoneNumberInputProps>;
|
|
1247
|
+
|
|
1248
|
+
interface SearchInputProps {
|
|
1249
|
+
onClick?: (event: MouseEvent<HTMLDivElement>) => void;
|
|
1250
|
+
collapse?: boolean;
|
|
1251
|
+
chips: ({
|
|
1252
|
+
label: string;
|
|
1253
|
+
} & ESGlobalObject)[] | undefined;
|
|
1254
|
+
}
|
|
1255
|
+
declare const SearchInput: <T extends FieldValues>(props: SearchInputProps & UseControllerProps<T>) => react_jsx_runtime.JSX.Element;
|
|
1256
|
+
|
|
1257
|
+
declare const StyledAccordion: FC<AccordionProps & {
|
|
1258
|
+
isFirst: boolean;
|
|
1259
|
+
}>;
|
|
1260
|
+
declare const StyledAccordionSummary: FC;
|
|
1261
|
+
declare const StyledAccordionDetails: FC;
|
|
1262
|
+
|
|
1263
|
+
declare const Paginator: () => react_jsx_runtime.JSX.Element | null;
|
|
1264
|
+
|
|
1265
|
+
declare const PaginationItem: FC<PaginationItemOwnProps>;
|
|
1266
|
+
|
|
1267
|
+
interface IPaginatorSimpleProps {
|
|
1268
|
+
total?: number;
|
|
1269
|
+
}
|
|
1270
|
+
declare function PaginatorSimple({ total }: IPaginatorSimpleProps): react_jsx_runtime.JSX.Element;
|
|
1271
|
+
|
|
1272
|
+
export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreasFull, AreasSlider, ArticleContent, ArticlesBlock, ArticlesFull, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockChoiceLinkGoToCatalog, BlockContacts, BlockGroupLinks, BlockImages, BlockOurTeam, BlockTabsGroupLinks, Button, ButtonDark, CallConsult, CallMeBlock, CasesBlock, CatalogNewProjects, CatalogRealtiesBlock, CatalogViewSwitch, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperTwoBlocks, Developers, DevelopersSlider, ErrorMessage, ExpertiseBlock, FAQ, FloorPlansBlock, Footer, Footer2, FormBlock, FullScreenImage, GalleryBlock, GalleryRealty, Header, _default as HeaderContactButton, HeaderMob, IconButton, Input, JoinTeamBlock, type LayoutStore, LegalSupport, LinkOut, List, ListItem, type LocaleSlug, LocaleSwitch, LocaleSwitchToggle, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, type Modal, ObjectInfoBlock, Offices, OfficesBlock, OpenVacancies, OtherVacancies, OurAdvantages, OurServices, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneNumberInput, PopularAreas, Portfolios, ProjectsSlider, ReferralProgramFirstBlock, SearchInput, Select, ServicesTexts, SimpleSelect, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, StyledBadge, StyledBadgeDesc, StyledButton, SubmitSelectButton, Switch, TeamWorkerBlock, TextBlock, TextImageTileBlock, ThanksBlock, ThanksBlockWithButton, TitleBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TopDevelopers, TrustUs, VacancyBoxInfo, VacancyContent, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };
|