@zealicsolutions/web-ui 0.4.60 → 0.4.63

Sign up to get free protection for your applications and to get access to all the features.
@@ -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>;
@@ -6,5 +6,6 @@ export declare type StepperProps = {
6
6
  htmlElementId?: string;
7
7
  metadata: MetadataType;
8
8
  isMobile?: boolean;
9
+ isOnClickDisabled?: boolean;
9
10
  };
10
- export declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, }: StepperProps) => JSX.Element | null;
11
+ export declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, isOnClickDisabled, }: StepperProps) => JSX.Element | null;
@@ -2,7 +2,7 @@ import { StoryFn } from '@storybook/react';
2
2
  import { StepperProps } from './Stepper';
3
3
  declare const _default: {
4
4
  title: string;
5
- component: ({ steps, orientation, htmlElementId, metadata, isMobile, }: StepperProps) => JSX.Element | null;
5
+ component: ({ steps, orientation, htmlElementId, metadata, isMobile, isOnClickDisabled, }: StepperProps) => JSX.Element | null;
6
6
  };
7
7
  export default _default;
8
8
  export declare const Stepper: StoryFn<StepperProps>;
@@ -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>;