mayak-common-library-payload 0.1.11 → 0.1.13
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 -7
- package/dist/index.d.ts +5 -7
- package/dist/index.js +4 -4
- package/dist/index.mjs +4 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -134,13 +134,11 @@ interface ArticleContentProps {
|
|
|
134
134
|
title?: string;
|
|
135
135
|
content?: ReactNode;
|
|
136
136
|
imageUrl?: string;
|
|
137
|
-
date?: string;
|
|
138
|
-
slugs?: LanguageSlugsType;
|
|
139
|
-
href?: string;
|
|
137
|
+
date?: string | null;
|
|
140
138
|
className?: string;
|
|
141
139
|
contactComponent?: ReactNode;
|
|
142
140
|
}
|
|
143
|
-
declare function ArticleContent({ title, content, imageUrl, date,
|
|
141
|
+
declare function ArticleContent({ title, content, imageUrl, date, className, contactComponent, }: ArticleContentProps): react_jsx_runtime.JSX.Element;
|
|
144
142
|
|
|
145
143
|
interface IArticle {
|
|
146
144
|
imageUrl?: string;
|
|
@@ -207,9 +205,9 @@ interface BecomePartnerProps {
|
|
|
207
205
|
declare const BecomePartner: FC<BecomePartnerProps>;
|
|
208
206
|
|
|
209
207
|
interface IBenefit$1 {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
208
|
+
image?: string;
|
|
209
|
+
label?: string;
|
|
210
|
+
description?: ReactNode;
|
|
213
211
|
}
|
|
214
212
|
interface BenefitsBlockProps {
|
|
215
213
|
benefits?: IBenefit$1[];
|
package/dist/index.d.ts
CHANGED
|
@@ -134,13 +134,11 @@ interface ArticleContentProps {
|
|
|
134
134
|
title?: string;
|
|
135
135
|
content?: ReactNode;
|
|
136
136
|
imageUrl?: string;
|
|
137
|
-
date?: string;
|
|
138
|
-
slugs?: LanguageSlugsType;
|
|
139
|
-
href?: string;
|
|
137
|
+
date?: string | null;
|
|
140
138
|
className?: string;
|
|
141
139
|
contactComponent?: ReactNode;
|
|
142
140
|
}
|
|
143
|
-
declare function ArticleContent({ title, content, imageUrl, date,
|
|
141
|
+
declare function ArticleContent({ title, content, imageUrl, date, className, contactComponent, }: ArticleContentProps): react_jsx_runtime.JSX.Element;
|
|
144
142
|
|
|
145
143
|
interface IArticle {
|
|
146
144
|
imageUrl?: string;
|
|
@@ -207,9 +205,9 @@ interface BecomePartnerProps {
|
|
|
207
205
|
declare const BecomePartner: FC<BecomePartnerProps>;
|
|
208
206
|
|
|
209
207
|
interface IBenefit$1 {
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
208
|
+
image?: string;
|
|
209
|
+
label?: string;
|
|
210
|
+
description?: ReactNode;
|
|
213
211
|
}
|
|
214
212
|
interface BenefitsBlockProps {
|
|
215
213
|
benefits?: IBenefit$1[];
|