mayak-common-library-payload 0.2.5 → 0.2.7
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 +6 -7
- package/dist/index.d.ts +6 -7
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -321,13 +321,12 @@ declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
|
|
|
321
321
|
interface IContactUsBlock {
|
|
322
322
|
className?: string;
|
|
323
323
|
phone: string;
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
};
|
|
324
|
+
title?: string;
|
|
325
|
+
subtitle?: string;
|
|
326
|
+
description?: string;
|
|
327
|
+
manager: IWorker;
|
|
329
328
|
}
|
|
330
|
-
declare function ContactUsBlock({ className, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
329
|
+
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
331
330
|
|
|
332
331
|
interface ExpertiseBlockProps {
|
|
333
332
|
block1: {
|
|
@@ -1472,7 +1471,7 @@ interface IRealtorCard {
|
|
|
1472
1471
|
declare const RealtorCard: FC<IRealtorCard>;
|
|
1473
1472
|
|
|
1474
1473
|
interface CategoryCardProps {
|
|
1475
|
-
image_url
|
|
1474
|
+
image_url?: string | null;
|
|
1476
1475
|
title: string;
|
|
1477
1476
|
}
|
|
1478
1477
|
declare function CategoryCard({ title, image_url }: CategoryCardProps): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -321,13 +321,12 @@ declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
|
|
|
321
321
|
interface IContactUsBlock {
|
|
322
322
|
className?: string;
|
|
323
323
|
phone: string;
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
};
|
|
324
|
+
title?: string;
|
|
325
|
+
subtitle?: string;
|
|
326
|
+
description?: string;
|
|
327
|
+
manager: IWorker;
|
|
329
328
|
}
|
|
330
|
-
declare function ContactUsBlock({ className, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
329
|
+
declare function ContactUsBlock({ className, phone, manager, description, title, subtitle, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
|
|
331
330
|
|
|
332
331
|
interface ExpertiseBlockProps {
|
|
333
332
|
block1: {
|
|
@@ -1472,7 +1471,7 @@ interface IRealtorCard {
|
|
|
1472
1471
|
declare const RealtorCard: FC<IRealtorCard>;
|
|
1473
1472
|
|
|
1474
1473
|
interface CategoryCardProps {
|
|
1475
|
-
image_url
|
|
1474
|
+
image_url?: string | null;
|
|
1476
1475
|
title: string;
|
|
1477
1476
|
}
|
|
1478
1477
|
declare function CategoryCard({ title, image_url }: CategoryCardProps): react_jsx_runtime.JSX.Element;
|