mayak-common-library-payload 0.1.57 → 0.1.59
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 +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -143,7 +143,7 @@ declare const AnyQuestionsBlock: FC<PropsWithChildren & AnyQuestionsBlockProps>;
|
|
|
143
143
|
interface ArticleContentProps {
|
|
144
144
|
title?: string;
|
|
145
145
|
content?: ReactNode;
|
|
146
|
-
imageUrl?: string;
|
|
146
|
+
imageUrl?: string | null;
|
|
147
147
|
date?: string | null;
|
|
148
148
|
className?: string;
|
|
149
149
|
contactComponent?: ReactNode;
|
|
@@ -267,7 +267,7 @@ declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
|
|
|
267
267
|
|
|
268
268
|
interface BlockImagesProps {
|
|
269
269
|
className?: string;
|
|
270
|
-
images?: string[];
|
|
270
|
+
images?: (string | null | undefined)[];
|
|
271
271
|
title?: string;
|
|
272
272
|
}
|
|
273
273
|
declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|
package/dist/index.d.ts
CHANGED
|
@@ -143,7 +143,7 @@ declare const AnyQuestionsBlock: FC<PropsWithChildren & AnyQuestionsBlockProps>;
|
|
|
143
143
|
interface ArticleContentProps {
|
|
144
144
|
title?: string;
|
|
145
145
|
content?: ReactNode;
|
|
146
|
-
imageUrl?: string;
|
|
146
|
+
imageUrl?: string | null;
|
|
147
147
|
date?: string | null;
|
|
148
148
|
className?: string;
|
|
149
149
|
contactComponent?: ReactNode;
|
|
@@ -267,7 +267,7 @@ declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
|
|
|
267
267
|
|
|
268
268
|
interface BlockImagesProps {
|
|
269
269
|
className?: string;
|
|
270
|
-
images?: string[];
|
|
270
|
+
images?: (string | null | undefined)[];
|
|
271
271
|
title?: string;
|
|
272
272
|
}
|
|
273
273
|
declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
|