@nd-storybook/storybook 0.3.13 → 0.3.14

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
@@ -291,8 +291,15 @@ interface ArticleCardProps {
291
291
  }
292
292
  declare const ArticleCard: ({ imageUrl, articleType, heading, variant, isPremium, href, onClick, className, videoDuration, }: ArticleCardProps) => JSX.Element;
293
293
 
294
+ interface VideoConfig {
295
+ apiEndpoint: string;
296
+ channelId?: string;
297
+ playlistId?: string;
298
+ maxResults?: number;
299
+ }
294
300
  interface ArticleSliderProps {
295
- articles: ArticleCardProps[];
301
+ articles?: ArticleCardProps[];
302
+ videoConfig?: VideoConfig;
296
303
  title?: string;
297
304
  showButton?: boolean;
298
305
  buttonLabel?: string;