@zealicsolutions/web-ui 0.4.62 → 0.4.64
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/molecules/Image/Image.d.ts +2 -1
- package/dist/cjs/src/molecules/Image/Image.stories.d.ts +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/Image/Image.d.ts +2 -1
- package/dist/esm/src/molecules/Image/Image.stories.d.ts +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 +4 -2
- package/package.json +1 -1
@@ -15,5 +15,6 @@ export declare type ImageProps = {
|
|
15
15
|
styles: StylesType;
|
16
16
|
metadata: MetadataType;
|
17
17
|
htmlElementId: string;
|
18
|
+
isOnClickDisabled: boolean;
|
18
19
|
}>;
|
19
|
-
export declare const Image: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, metadata, }: ImageProps) => JSX.Element | null;
|
20
|
+
export declare const Image: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, metadata, isOnClickDisabled, }: ImageProps) => JSX.Element | null;
|
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
|
|
2
2
|
import { Image as ImageComponent } from './Image';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, metadata, }: import("./Image").ImageProps) => JSX.Element | null;
|
5
|
+
component: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, metadata, isOnClickDisabled, }: import("./Image").ImageProps) => JSX.Element | null;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const Image: StoryFn<typeof ImageComponent>;
|
@@ -15,5 +15,6 @@ export declare type VideoProps = {
|
|
15
15
|
htmlElementId: string;
|
16
16
|
moleculeId: string;
|
17
17
|
isTrigger: boolean;
|
18
|
+
isOnClickDisabled: boolean;
|
18
19
|
}>;
|
19
|
-
export declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, }: VideoProps) => JSX.Element | null;
|
20
|
+
export declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, isOnClickDisabled, }: VideoProps) => JSX.Element | null;
|
@@ -2,7 +2,7 @@ import type { StoryFn } from '@storybook/react';
|
|
2
2
|
import { Video as VideoComponent } from './Video';
|
3
3
|
declare const _default: {
|
4
4
|
title: string;
|
5
|
-
component: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, }: import("./Video").VideoProps) => JSX.Element | null;
|
5
|
+
component: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, isOnClickDisabled, }: import("./Video").VideoProps) => JSX.Element | null;
|
6
6
|
};
|
7
7
|
export default _default;
|
8
8
|
export declare const Video: StoryFn<typeof VideoComponent>;
|
package/dist/index.d.ts
CHANGED
@@ -2023,8 +2023,9 @@ declare type VideoProps = {
|
|
2023
2023
|
htmlElementId: string;
|
2024
2024
|
moleculeId: string;
|
2025
2025
|
isTrigger: boolean;
|
2026
|
+
isOnClickDisabled: boolean;
|
2026
2027
|
}>;
|
2027
|
-
declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, }: VideoProps) => JSX.Element | null;
|
2028
|
+
declare const Video: ({ style, src, width, height, template, autoplay, enableCoverImage, coverImageSrc, styles, htmlElementId, isTrigger, moleculeId, isOnClickDisabled, }: VideoProps) => JSX.Element | null;
|
2028
2029
|
|
2029
2030
|
declare type ImageProps = {
|
2030
2031
|
src: string;
|
@@ -2040,8 +2041,9 @@ declare type ImageProps = {
|
|
2040
2041
|
styles: StylesType;
|
2041
2042
|
metadata: MetadataType$1;
|
2042
2043
|
htmlElementId: string;
|
2044
|
+
isOnClickDisabled: boolean;
|
2043
2045
|
}>;
|
2044
|
-
declare const Image: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, metadata, }: ImageProps) => JSX.Element | null;
|
2046
|
+
declare const Image: ({ src, onClick, link, altText, styles, width, height, id, behaveAs, cornerRadius, htmlElementId, metadata, isOnClickDisabled, }: ImageProps) => JSX.Element | null;
|
2045
2047
|
|
2046
2048
|
declare type CarouselProps = {
|
2047
2049
|
children: JSX.Element[];
|