mayak-common-library-payload 0.1.48 → 0.1.50
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 +7 -12
- package/dist/index.d.ts +7 -12
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -73,7 +73,7 @@ interface INumberText {
|
|
|
73
73
|
number?: number | null;
|
|
74
74
|
text?: string | null;
|
|
75
75
|
}
|
|
76
|
-
interface IBoxItem$
|
|
76
|
+
interface IBoxItem$3 {
|
|
77
77
|
title?: string | null;
|
|
78
78
|
label?: string | null;
|
|
79
79
|
description?: ReactNode | null;
|
|
@@ -81,7 +81,7 @@ interface IBoxItem$4 {
|
|
|
81
81
|
interface AboutCompanyMainProps {
|
|
82
82
|
title?: string | null;
|
|
83
83
|
content: ReactNode;
|
|
84
|
-
box?: IBoxItem$
|
|
84
|
+
box?: IBoxItem$3[] | null;
|
|
85
85
|
workerCeo?: IWorker | null;
|
|
86
86
|
className?: string;
|
|
87
87
|
site?: Site;
|
|
@@ -106,7 +106,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
106
106
|
}
|
|
107
107
|
declare function AboutUsFirstBlock({ className, box, content, additionalContent, title, actionButton, videoLink, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
108
108
|
|
|
109
|
-
interface IBoxItem$
|
|
109
|
+
interface IBoxItem$2 {
|
|
110
110
|
icon?: string;
|
|
111
111
|
label?: string;
|
|
112
112
|
text?: string;
|
|
@@ -114,7 +114,7 @@ interface IBoxItem$3 {
|
|
|
114
114
|
interface AmenitiesBlockProps {
|
|
115
115
|
className?: string;
|
|
116
116
|
title?: string;
|
|
117
|
-
box?: IBoxItem$
|
|
117
|
+
box?: IBoxItem$2[];
|
|
118
118
|
}
|
|
119
119
|
declare const AmenitiesBlock: FC<AmenitiesBlockProps>;
|
|
120
120
|
|
|
@@ -325,16 +325,11 @@ interface CatalogCategoriesBlockProps {
|
|
|
325
325
|
}
|
|
326
326
|
declare const CatalogCategoriesBlock: FC<CatalogCategoriesBlockProps>;
|
|
327
327
|
|
|
328
|
-
interface IBoxItem$2 {
|
|
329
|
-
label?: string;
|
|
330
|
-
icon?: string;
|
|
331
|
-
text?: string;
|
|
332
|
-
}
|
|
333
328
|
interface ClientTransferProcessProps {
|
|
334
329
|
className?: string;
|
|
335
|
-
title?: string;
|
|
336
|
-
|
|
337
|
-
box?:
|
|
330
|
+
title?: string | null;
|
|
331
|
+
content?: ReactNode;
|
|
332
|
+
box?: IBenefit[];
|
|
338
333
|
actionComponent?: ReactNode;
|
|
339
334
|
}
|
|
340
335
|
declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
|
package/dist/index.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ interface INumberText {
|
|
|
73
73
|
number?: number | null;
|
|
74
74
|
text?: string | null;
|
|
75
75
|
}
|
|
76
|
-
interface IBoxItem$
|
|
76
|
+
interface IBoxItem$3 {
|
|
77
77
|
title?: string | null;
|
|
78
78
|
label?: string | null;
|
|
79
79
|
description?: ReactNode | null;
|
|
@@ -81,7 +81,7 @@ interface IBoxItem$4 {
|
|
|
81
81
|
interface AboutCompanyMainProps {
|
|
82
82
|
title?: string | null;
|
|
83
83
|
content: ReactNode;
|
|
84
|
-
box?: IBoxItem$
|
|
84
|
+
box?: IBoxItem$3[] | null;
|
|
85
85
|
workerCeo?: IWorker | null;
|
|
86
86
|
className?: string;
|
|
87
87
|
site?: Site;
|
|
@@ -106,7 +106,7 @@ interface IAboutUsFirstBlockProps {
|
|
|
106
106
|
}
|
|
107
107
|
declare function AboutUsFirstBlock({ className, box, content, additionalContent, title, actionButton, videoLink, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
|
|
108
108
|
|
|
109
|
-
interface IBoxItem$
|
|
109
|
+
interface IBoxItem$2 {
|
|
110
110
|
icon?: string;
|
|
111
111
|
label?: string;
|
|
112
112
|
text?: string;
|
|
@@ -114,7 +114,7 @@ interface IBoxItem$3 {
|
|
|
114
114
|
interface AmenitiesBlockProps {
|
|
115
115
|
className?: string;
|
|
116
116
|
title?: string;
|
|
117
|
-
box?: IBoxItem$
|
|
117
|
+
box?: IBoxItem$2[];
|
|
118
118
|
}
|
|
119
119
|
declare const AmenitiesBlock: FC<AmenitiesBlockProps>;
|
|
120
120
|
|
|
@@ -325,16 +325,11 @@ interface CatalogCategoriesBlockProps {
|
|
|
325
325
|
}
|
|
326
326
|
declare const CatalogCategoriesBlock: FC<CatalogCategoriesBlockProps>;
|
|
327
327
|
|
|
328
|
-
interface IBoxItem$2 {
|
|
329
|
-
label?: string;
|
|
330
|
-
icon?: string;
|
|
331
|
-
text?: string;
|
|
332
|
-
}
|
|
333
328
|
interface ClientTransferProcessProps {
|
|
334
329
|
className?: string;
|
|
335
|
-
title?: string;
|
|
336
|
-
|
|
337
|
-
box?:
|
|
330
|
+
title?: string | null;
|
|
331
|
+
content?: ReactNode;
|
|
332
|
+
box?: IBenefit[];
|
|
338
333
|
actionComponent?: ReactNode;
|
|
339
334
|
}
|
|
340
335
|
declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
|