@zealicsolutions/web-ui 0.1.82 → 0.1.83
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/cjs/index.js +11 -11
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/atoms/Video/Video.d.ts +2 -1
- package/dist/cjs/src/atoms/Video/Video.stories.d.ts +1 -1
- package/dist/esm/index.js +8 -8
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/atoms/Video/Video.d.ts +2 -1
- package/dist/esm/src/atoms/Video/Video.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -6,5 +6,6 @@ export declare type VideoProps = {
|
|
6
6
|
style?: CSSProperties;
|
7
7
|
template?: FeedContentTemplateTypes;
|
8
8
|
autoplay?: boolean;
|
9
|
+
coverImage?: string;
|
9
10
|
};
|
10
|
-
export declare const Video: ({ style, src, template, autoplay }: VideoProps) => JSX.Element;
|
11
|
+
export declare const Video: ({ style, src, template, autoplay, coverImage }: VideoProps) => JSX.Element;
|
@@ -3,7 +3,7 @@ import { ComponentStory } from '@storybook/react';
|
|
3
3
|
import { Video as VideoComponent } from './Video';
|
4
4
|
declare const _default: {
|
5
5
|
title: string;
|
6
|
-
component: ({ style, src, template, autoplay }: import("./Video").VideoProps) => JSX.Element;
|
6
|
+
component: ({ style, src, template, autoplay, coverImage }: import("./Video").VideoProps) => JSX.Element;
|
7
7
|
};
|
8
8
|
export default _default;
|
9
9
|
export declare const Video: ComponentStory<typeof VideoComponent>;
|