mayak-common-library-payload 0.1.11 → 0.1.12

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
@@ -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, slugs, href, className, contactComponent, }: ArticleContentProps): react_jsx_runtime.JSX.Element;
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;
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, slugs, href, className, contactComponent, }: ArticleContentProps): react_jsx_runtime.JSX.Element;
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;