@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.cjs.js +25 -25
- package/dist/index.d.ts +8 -1
- package/dist/index.es.js +1875 -1843
- package/dist/mockServiceWorker.js +349 -0
- package/dist/style.css +1 -1
- package/package.json +9 -2
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
|
|
301
|
+
articles?: ArticleCardProps[];
|
|
302
|
+
videoConfig?: VideoConfig;
|
|
296
303
|
title?: string;
|
|
297
304
|
showButton?: boolean;
|
|
298
305
|
buttonLabel?: string;
|