mayak-common-library-payload 0.1.25 → 0.1.27
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 +15 -25
- package/dist/index.d.ts +15 -25
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -50,7 +50,7 @@ interface HProps extends PropsWithChildren {
|
|
|
50
50
|
uppercase?: boolean;
|
|
51
51
|
catalog?: boolean;
|
|
52
52
|
}
|
|
53
|
-
interface IWorker
|
|
53
|
+
interface IWorker {
|
|
54
54
|
imageUrl?: string | null;
|
|
55
55
|
description?: ReactNode | null;
|
|
56
56
|
fullName?: string | null;
|
|
@@ -77,7 +77,7 @@ interface AboutCompanyMainProps {
|
|
|
77
77
|
title?: string | null;
|
|
78
78
|
content: ReactNode;
|
|
79
79
|
box?: IBoxItem$6[] | null;
|
|
80
|
-
workerCeo?: IWorker
|
|
80
|
+
workerCeo?: IWorker | null;
|
|
81
81
|
className?: string;
|
|
82
82
|
site?: Site;
|
|
83
83
|
actionButton?: ReactNode | null;
|
|
@@ -129,7 +129,7 @@ interface IAnyLevelBlock {
|
|
|
129
129
|
declare function AnyLevelBlock({ block1, block2, className, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
130
130
|
|
|
131
131
|
interface AnyQuestionsBlockProps {
|
|
132
|
-
worker?: IWorker
|
|
132
|
+
worker?: IWorker | null;
|
|
133
133
|
className?: string;
|
|
134
134
|
title?: string;
|
|
135
135
|
}
|
|
@@ -261,9 +261,13 @@ interface IOfficeItem {
|
|
|
261
261
|
weekend?: boolean;
|
|
262
262
|
email?: string;
|
|
263
263
|
site?: string;
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
workTimeLabel?: string;
|
|
265
|
+
workingHoursLabel?: string;
|
|
266
|
+
weekendLabel?: string;
|
|
267
|
+
weekendSubLabel?: string;
|
|
268
|
+
instagram?: string | null;
|
|
269
|
+
whatsapp?: string | null;
|
|
270
|
+
telegram?: string | null;
|
|
267
271
|
}
|
|
268
272
|
interface BlockContactsProps {
|
|
269
273
|
className?: string;
|
|
@@ -280,20 +284,6 @@ interface BlockImagesProps {
|
|
|
280
284
|
}
|
|
281
285
|
declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
|
282
286
|
|
|
283
|
-
interface IWorker {
|
|
284
|
-
imageUrl?: string | null;
|
|
285
|
-
description?: ReactNode | null;
|
|
286
|
-
firstName?: string | null;
|
|
287
|
-
lastName?: string | null;
|
|
288
|
-
fullName?: string | null;
|
|
289
|
-
position?: string | null;
|
|
290
|
-
instagram?: string | null;
|
|
291
|
-
facebook?: string | null;
|
|
292
|
-
youTube?: string | null;
|
|
293
|
-
linkedIn?: string | null;
|
|
294
|
-
phone?: string | null;
|
|
295
|
-
email?: string | null;
|
|
296
|
-
}
|
|
297
287
|
interface BlockOurTeamProps {
|
|
298
288
|
title?: string | null;
|
|
299
289
|
text?: string | null;
|
|
@@ -307,7 +297,7 @@ interface IBlockOurTeam {
|
|
|
307
297
|
title?: string;
|
|
308
298
|
text?: string | null;
|
|
309
299
|
btnLabel?: string;
|
|
310
|
-
team?: IWorker
|
|
300
|
+
team?: IWorker[];
|
|
311
301
|
className?: string | null;
|
|
312
302
|
}
|
|
313
303
|
declare function BlockOurTeamGrid({ team, title, text, className, btnLabel, }: IBlockOurTeam): react_jsx_runtime.JSX.Element | null;
|
|
@@ -553,9 +543,9 @@ declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle, c
|
|
|
553
543
|
|
|
554
544
|
interface SocialBlockProps {
|
|
555
545
|
className?: string;
|
|
556
|
-
instagram?: string;
|
|
557
|
-
whatsapp?: string;
|
|
558
|
-
telegram?: string;
|
|
546
|
+
instagram?: string | null;
|
|
547
|
+
whatsapp?: string | null;
|
|
548
|
+
telegram?: string | null;
|
|
559
549
|
}
|
|
560
550
|
declare const SocialBlock: FC<SocialBlockProps>;
|
|
561
551
|
|
|
@@ -1526,7 +1516,7 @@ interface AreaCardProps extends IArea {
|
|
|
1526
1516
|
declare const AreaCard: FC<AreaCardProps>;
|
|
1527
1517
|
|
|
1528
1518
|
interface IRealtorCard {
|
|
1529
|
-
realtor?: IWorker
|
|
1519
|
+
realtor?: IWorker;
|
|
1530
1520
|
site: Site;
|
|
1531
1521
|
actionComponent?: ReactNode;
|
|
1532
1522
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -50,7 +50,7 @@ interface HProps extends PropsWithChildren {
|
|
|
50
50
|
uppercase?: boolean;
|
|
51
51
|
catalog?: boolean;
|
|
52
52
|
}
|
|
53
|
-
interface IWorker
|
|
53
|
+
interface IWorker {
|
|
54
54
|
imageUrl?: string | null;
|
|
55
55
|
description?: ReactNode | null;
|
|
56
56
|
fullName?: string | null;
|
|
@@ -77,7 +77,7 @@ interface AboutCompanyMainProps {
|
|
|
77
77
|
title?: string | null;
|
|
78
78
|
content: ReactNode;
|
|
79
79
|
box?: IBoxItem$6[] | null;
|
|
80
|
-
workerCeo?: IWorker
|
|
80
|
+
workerCeo?: IWorker | null;
|
|
81
81
|
className?: string;
|
|
82
82
|
site?: Site;
|
|
83
83
|
actionButton?: ReactNode | null;
|
|
@@ -129,7 +129,7 @@ interface IAnyLevelBlock {
|
|
|
129
129
|
declare function AnyLevelBlock({ block1, block2, className, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
|
|
130
130
|
|
|
131
131
|
interface AnyQuestionsBlockProps {
|
|
132
|
-
worker?: IWorker
|
|
132
|
+
worker?: IWorker | null;
|
|
133
133
|
className?: string;
|
|
134
134
|
title?: string;
|
|
135
135
|
}
|
|
@@ -261,9 +261,13 @@ interface IOfficeItem {
|
|
|
261
261
|
weekend?: boolean;
|
|
262
262
|
email?: string;
|
|
263
263
|
site?: string;
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
264
|
+
workTimeLabel?: string;
|
|
265
|
+
workingHoursLabel?: string;
|
|
266
|
+
weekendLabel?: string;
|
|
267
|
+
weekendSubLabel?: string;
|
|
268
|
+
instagram?: string | null;
|
|
269
|
+
whatsapp?: string | null;
|
|
270
|
+
telegram?: string | null;
|
|
267
271
|
}
|
|
268
272
|
interface BlockContactsProps {
|
|
269
273
|
className?: string;
|
|
@@ -280,20 +284,6 @@ interface BlockImagesProps {
|
|
|
280
284
|
}
|
|
281
285
|
declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
|
282
286
|
|
|
283
|
-
interface IWorker {
|
|
284
|
-
imageUrl?: string | null;
|
|
285
|
-
description?: ReactNode | null;
|
|
286
|
-
firstName?: string | null;
|
|
287
|
-
lastName?: string | null;
|
|
288
|
-
fullName?: string | null;
|
|
289
|
-
position?: string | null;
|
|
290
|
-
instagram?: string | null;
|
|
291
|
-
facebook?: string | null;
|
|
292
|
-
youTube?: string | null;
|
|
293
|
-
linkedIn?: string | null;
|
|
294
|
-
phone?: string | null;
|
|
295
|
-
email?: string | null;
|
|
296
|
-
}
|
|
297
287
|
interface BlockOurTeamProps {
|
|
298
288
|
title?: string | null;
|
|
299
289
|
text?: string | null;
|
|
@@ -307,7 +297,7 @@ interface IBlockOurTeam {
|
|
|
307
297
|
title?: string;
|
|
308
298
|
text?: string | null;
|
|
309
299
|
btnLabel?: string;
|
|
310
|
-
team?: IWorker
|
|
300
|
+
team?: IWorker[];
|
|
311
301
|
className?: string | null;
|
|
312
302
|
}
|
|
313
303
|
declare function BlockOurTeamGrid({ team, title, text, className, btnLabel, }: IBlockOurTeam): react_jsx_runtime.JSX.Element | null;
|
|
@@ -553,9 +543,9 @@ declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle, c
|
|
|
553
543
|
|
|
554
544
|
interface SocialBlockProps {
|
|
555
545
|
className?: string;
|
|
556
|
-
instagram?: string;
|
|
557
|
-
whatsapp?: string;
|
|
558
|
-
telegram?: string;
|
|
546
|
+
instagram?: string | null;
|
|
547
|
+
whatsapp?: string | null;
|
|
548
|
+
telegram?: string | null;
|
|
559
549
|
}
|
|
560
550
|
declare const SocialBlock: FC<SocialBlockProps>;
|
|
561
551
|
|
|
@@ -1526,7 +1516,7 @@ interface AreaCardProps extends IArea {
|
|
|
1526
1516
|
declare const AreaCard: FC<AreaCardProps>;
|
|
1527
1517
|
|
|
1528
1518
|
interface IRealtorCard {
|
|
1529
|
-
realtor?: IWorker
|
|
1519
|
+
realtor?: IWorker;
|
|
1530
1520
|
site: Site;
|
|
1531
1521
|
actionComponent?: ReactNode;
|
|
1532
1522
|
}
|