mayak-common-library 0.0.707 → 0.0.709

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
@@ -163,7 +163,7 @@ interface IArticleCard extends IArticle {
163
163
  }
164
164
  declare function ArticleCard({ imageUrl, classes, title, text, slug, href, }: IArticleCard): react_jsx_runtime.JSX.Element;
165
165
 
166
- interface IArticlesBlock {
166
+ interface ArticlesBlockProps {
167
167
  title: string;
168
168
  classes?: string;
169
169
  button?: boolean;
@@ -171,7 +171,7 @@ interface IArticlesBlock {
171
171
  articles?: IArticle[];
172
172
  href: string;
173
173
  }
174
- declare function ArticlesBlock({ title, classes, button, articles, href, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
174
+ declare const ArticlesBlock: FC<ArticlesBlockProps>;
175
175
 
176
176
  interface IArticlesFull$1 {
177
177
  classes?: string;
package/dist/index.d.ts CHANGED
@@ -163,7 +163,7 @@ interface IArticleCard extends IArticle {
163
163
  }
164
164
  declare function ArticleCard({ imageUrl, classes, title, text, slug, href, }: IArticleCard): react_jsx_runtime.JSX.Element;
165
165
 
166
- interface IArticlesBlock {
166
+ interface ArticlesBlockProps {
167
167
  title: string;
168
168
  classes?: string;
169
169
  button?: boolean;
@@ -171,7 +171,7 @@ interface IArticlesBlock {
171
171
  articles?: IArticle[];
172
172
  href: string;
173
173
  }
174
- declare function ArticlesBlock({ title, classes, button, articles, href, }: IArticlesBlock): react_jsx_runtime.JSX.Element;
174
+ declare const ArticlesBlock: FC<ArticlesBlockProps>;
175
175
 
176
176
  interface IArticlesFull$1 {
177
177
  classes?: string;