@zealicsolutions/web-ui 0.4.60 → 0.4.62

Sign up to get free protection for your applications and to get access to all the features.
@@ -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>;