@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>;
|
package/dist/index.d.ts
CHANGED
@@ -204,8 +204,9 @@ declare type VideoProps = {
|
|
204
204
|
style?: CSSProperties;
|
205
205
|
template?: FeedContentTemplateTypes$1;
|
206
206
|
autoplay?: boolean;
|
207
|
+
coverImage?: string;
|
207
208
|
};
|
208
|
-
declare const Video: ({ style, src, template, autoplay }: VideoProps) => JSX.Element;
|
209
|
+
declare const Video: ({ style, src, template, autoplay, coverImage }: VideoProps) => JSX.Element;
|
209
210
|
|
210
211
|
declare type TooltipProps = Pick<TooltipProps$1, 'overlay' | 'placement' | 'trigger' | 'visible' | 'children'>;
|
211
212
|
declare const StyleWrapper: styled_components.StyledComponent<"div", styled_components.DefaultTheme, {}, never>;
|