mayak-common-library 0.2.4 → 0.2.6
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.cjs +1 -1
- package/dist/index.d.cts +16 -10
- package/dist/index.d.ts +16 -10
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -303,14 +303,13 @@ declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
|
|
|
303
303
|
|
|
304
304
|
interface IContactUsBlock {
|
|
305
305
|
className?: string;
|
|
306
|
-
phone
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
};
|
|
306
|
+
phone?: string | null;
|
|
307
|
+
title?: string;
|
|
308
|
+
subtitle?: string;
|
|
309
|
+
description?: string;
|
|
310
|
+
manager: IWorker;
|
|
312
311
|
}
|
|
313
|
-
declare function ContactUsBlock({ className, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
312
|
+
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
314
313
|
|
|
315
314
|
interface ExpertiseBlockProps {
|
|
316
315
|
block1: {
|
|
@@ -1554,12 +1553,19 @@ interface RealtyCardProps {
|
|
|
1554
1553
|
title?: string;
|
|
1555
1554
|
subTitle?: string;
|
|
1556
1555
|
imageAlt?: string;
|
|
1557
|
-
realtyForRent?:
|
|
1556
|
+
realtyForRent?: string;
|
|
1558
1557
|
newRealty?: {
|
|
1559
|
-
|
|
1560
|
-
|
|
1558
|
+
price?: {
|
|
1559
|
+
label?: string;
|
|
1560
|
+
value?: string;
|
|
1561
|
+
};
|
|
1562
|
+
developer?: {
|
|
1563
|
+
label?: string;
|
|
1564
|
+
value?: string;
|
|
1565
|
+
};
|
|
1561
1566
|
};
|
|
1562
1567
|
publisher?: {
|
|
1568
|
+
label: string;
|
|
1563
1569
|
image: string;
|
|
1564
1570
|
name: string;
|
|
1565
1571
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -303,14 +303,13 @@ declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
|
|
|
303
303
|
|
|
304
304
|
interface IContactUsBlock {
|
|
305
305
|
className?: string;
|
|
306
|
-
phone
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
};
|
|
306
|
+
phone?: string | null;
|
|
307
|
+
title?: string;
|
|
308
|
+
subtitle?: string;
|
|
309
|
+
description?: string;
|
|
310
|
+
manager: IWorker;
|
|
312
311
|
}
|
|
313
|
-
declare function ContactUsBlock({ className, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
312
|
+
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
314
313
|
|
|
315
314
|
interface ExpertiseBlockProps {
|
|
316
315
|
block1: {
|
|
@@ -1554,12 +1553,19 @@ interface RealtyCardProps {
|
|
|
1554
1553
|
title?: string;
|
|
1555
1554
|
subTitle?: string;
|
|
1556
1555
|
imageAlt?: string;
|
|
1557
|
-
realtyForRent?:
|
|
1556
|
+
realtyForRent?: string;
|
|
1558
1557
|
newRealty?: {
|
|
1559
|
-
|
|
1560
|
-
|
|
1558
|
+
price?: {
|
|
1559
|
+
label?: string;
|
|
1560
|
+
value?: string;
|
|
1561
|
+
};
|
|
1562
|
+
developer?: {
|
|
1563
|
+
label?: string;
|
|
1564
|
+
value?: string;
|
|
1565
|
+
};
|
|
1561
1566
|
};
|
|
1562
1567
|
publisher?: {
|
|
1568
|
+
label: string;
|
|
1563
1569
|
image: string;
|
|
1564
1570
|
name: string;
|
|
1565
1571
|
};
|