mayak-common-library-payload 0.1.60 → 0.1.62

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 CHANGED
@@ -170,11 +170,11 @@ interface IArticlesFull {
170
170
  declare function ArticlesFull({ title, className, totalArticles, }: IArticlesFull): react_jsx_runtime.JSX.Element;
171
171
 
172
172
  interface BannerBlockProps {
173
- videoLink?: string;
173
+ videoLink?: string | null;
174
174
  title?: string | null;
175
175
  subTitle?: ReactNode;
176
176
  className?: string;
177
- imgLink?: string;
177
+ imgLink?: string | null;
178
178
  view?: 'column' | 'row';
179
179
  }
180
180
  declare const BannerBlock: FC<PropsWithChildren & BannerBlockProps>;
@@ -646,7 +646,7 @@ interface TextImageTileBlockProps {
646
646
  className?: string;
647
647
  title?: string | null;
648
648
  content?: ReactNode | string;
649
- image?: string;
649
+ image?: string | null;
650
650
  actionComponent?: ReactNode;
651
651
  turn?: 'right' | 'left' | null;
652
652
  }
package/dist/index.d.ts CHANGED
@@ -170,11 +170,11 @@ interface IArticlesFull {
170
170
  declare function ArticlesFull({ title, className, totalArticles, }: IArticlesFull): react_jsx_runtime.JSX.Element;
171
171
 
172
172
  interface BannerBlockProps {
173
- videoLink?: string;
173
+ videoLink?: string | null;
174
174
  title?: string | null;
175
175
  subTitle?: ReactNode;
176
176
  className?: string;
177
- imgLink?: string;
177
+ imgLink?: string | null;
178
178
  view?: 'column' | 'row';
179
179
  }
180
180
  declare const BannerBlock: FC<PropsWithChildren & BannerBlockProps>;
@@ -646,7 +646,7 @@ interface TextImageTileBlockProps {
646
646
  className?: string;
647
647
  title?: string | null;
648
648
  content?: ReactNode | string;
649
- image?: string;
649
+ image?: string | null;
650
650
  actionComponent?: ReactNode;
651
651
  turn?: 'right' | 'left' | null;
652
652
  }