@zealicsolutions/web-ui 0.3.54 → 0.3.55

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,6 +6,7 @@ export declare type VideoProps = {
6
6
  src: string;
7
7
  } & Partial<{
8
8
  width: number;
9
+ height: number;
9
10
  autoplay: boolean;
10
11
  enableCoverImage: boolean;
11
12
  coverImageSrc: string;
@@ -13,4 +14,4 @@ export declare type VideoProps = {
13
14
  styles: StylesType;
14
15
  template: FeedContentTemplateTypes;
15
16
  }>;
16
- export declare const Video: ({ style, src, width, template, autoplay, enableCoverImage, coverImageSrc, styles, }: VideoProps) => JSX.Element | null;
17
+ export declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, }: VideoProps) => JSX.Element | null;
@@ -3,7 +3,7 @@ import type { StoryFn } from '@storybook/react';
3
3
  import { Video as VideoComponent } from './Video';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: ({ style, src, width, template, autoplay, enableCoverImage, coverImageSrc, styles, }: import("./Video").VideoProps) => JSX.Element | null;
6
+ component: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, }: import("./Video").VideoProps) => JSX.Element | null;
7
7
  };
8
8
  export default _default;
9
9
  export declare const Video: StoryFn<typeof VideoComponent>;