mayak-common-library-payload 0.1.60 → 0.1.61

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>;
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>;