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