@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>;
package/dist/index.d.ts CHANGED
@@ -1962,8 +1962,9 @@ declare type StepperProps = {
1962
1962
  htmlElementId?: string;
1963
1963
  metadata: MetadataType$1;
1964
1964
  isMobile?: boolean;
1965
+ isOnClickDisabled?: boolean;
1965
1966
  };
1966
- declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, }: StepperProps) => JSX.Element | null;
1967
+ declare const Stepper: ({ steps, orientation, htmlElementId, metadata, isMobile, isOnClickDisabled, }: StepperProps) => JSX.Element | null;
1967
1968
 
1968
1969
  declare type PdfDocumentProps = {
1969
1970
  source: string;
@@ -2022,8 +2023,9 @@ declare type VideoProps = {
2022
2023
  htmlElementId: string;
2023
2024
  moleculeId: string;
2024
2025
  isTrigger: boolean;
2026
+ isOnClickDisabled: boolean;
2025
2027
  }>;
2026
- 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;
2027
2029
 
2028
2030
  declare type ImageProps = {
2029
2031
  src: string;
@@ -2039,8 +2041,9 @@ declare type ImageProps = {
2039
2041
  styles: StylesType;
2040
2042
  metadata: MetadataType$1;
2041
2043
  htmlElementId: string;
2044
+ isOnClickDisabled: boolean;
2042
2045
  }>;
2043
- 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;
2044
2047
 
2045
2048
  declare type CarouselProps = {
2046
2049
  children: JSX.Element[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.4.60",
3
+ "version": "0.4.63",
4
4
  "testVersion": "0.3.193",
5
5
  "repository": {
6
6
  "type": "git",