@nd-storybook/storybook 0.3.7 → 0.3.9

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.ts CHANGED
@@ -275,13 +275,14 @@ interface ArticleCardProps {
275
275
  imageUrl?: string;
276
276
  articleType: string;
277
277
  heading: string;
278
- variant?: 'default' | 'de-nieuwe-koers';
278
+ variant?: 'default' | 'de-nieuwe-koers' | 'video';
279
279
  isPremium?: boolean;
280
280
  href?: string;
281
281
  onClick?: (event: react__default.MouseEvent<HTMLAnchorElement>) => void;
282
282
  className?: string;
283
+ videoDuration?: string;
283
284
  }
284
- declare const ArticleCard: ({ imageUrl, articleType, heading, variant, isPremium, href, onClick, className, }: ArticleCardProps) => JSX.Element;
285
+ declare const ArticleCard: ({ imageUrl, articleType, heading, variant, isPremium, href, onClick, className, videoDuration, }: ArticleCardProps) => JSX.Element;
285
286
 
286
287
  interface ArticleSliderProps {
287
288
  articles: ArticleCardProps[];