@zealicsolutions/web-ui 0.3.54 → 0.3.55
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 +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/Video/Video.d.ts +2 -1
- package/dist/cjs/src/molecules/Video/Video.stories.d.ts +1 -1
- package/dist/esm/index.js +3 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/src/molecules/Video/Video.d.ts +2 -1
- package/dist/esm/src/molecules/Video/Video.stories.d.ts +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +1 -1
@@ -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>;
|
package/dist/index.d.ts
CHANGED
@@ -1324,6 +1324,7 @@ declare type VideoProps = {
|
|
1324
1324
|
src: string;
|
1325
1325
|
} & Partial<{
|
1326
1326
|
width: number;
|
1327
|
+
height: number;
|
1327
1328
|
autoplay: boolean;
|
1328
1329
|
enableCoverImage: boolean;
|
1329
1330
|
coverImageSrc: string;
|
@@ -1331,7 +1332,7 @@ declare type VideoProps = {
|
|
1331
1332
|
styles: StylesType;
|
1332
1333
|
template: FeedContentTemplateTypes$1;
|
1333
1334
|
}>;
|
1334
|
-
declare const Video: ({ style, src, width, template, autoplay, enableCoverImage, coverImageSrc, styles, }: VideoProps) => JSX.Element | null;
|
1335
|
+
declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, }: VideoProps) => JSX.Element | null;
|
1335
1336
|
|
1336
1337
|
declare type ImageProps = {
|
1337
1338
|
src: string;
|