mayak-common-library-payload 0.2.6 → 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 +5 -6
- package/dist/index.d.ts +5 -6
- 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: {
|
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: {
|