@zealicsolutions/web-ui 0.1.74 → 0.1.75

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.
@@ -10,6 +10,5 @@ export declare type StepProps = {
10
10
  stepsNumber: number;
11
11
  order: number;
12
12
  orientation?: OrientationType;
13
- active: number;
14
13
  };
15
- export declare const Step: ({ stepsNumber, step: { title, description, status }, orientation, order, active, }: StepProps) => JSX.Element;
14
+ export declare const Step: ({ stepsNumber, step: { title, description, status }, orientation, order, }: StepProps) => JSX.Element;
@@ -7,7 +7,7 @@ export declare type StepperProps = {
7
7
  description?: string;
8
8
  status?: ProcessTrackerStatus;
9
9
  }[];
10
- active: number;
10
+ currentStep: number;
11
11
  orientation?: OrientationType;
12
12
  };
13
- export declare const Stepper: ({ active, steps, orientation }: StepperProps) => JSX.Element;
13
+ export declare const Stepper: ({ steps, orientation, currentStep }: StepperProps) => JSX.Element;
@@ -11,11 +11,11 @@ export declare const VerticalWrapper: import("styled-components").StyledComponen
11
11
  isLastChild?: boolean | undefined;
12
12
  }, never>;
13
13
  export declare const CustomStep: import("styled-components").StyledComponent<"span", import("styled-components").DefaultTheme, {
14
- done?: boolean | undefined;
15
- current?: boolean | undefined;
14
+ isComplete?: boolean | undefined;
15
+ isProgress?: boolean | undefined;
16
16
  orientation?: OrientationType | undefined;
17
17
  }, never>;
18
18
  export declare const ConnectionLine: import("styled-components").StyledComponent<"div", import("styled-components").DefaultTheme, {
19
19
  orientation?: OrientationType | undefined;
20
- done?: boolean | undefined;
20
+ isComplete?: boolean | undefined;
21
21
  }, never>;
@@ -11,7 +11,7 @@ export declare type ProcessTrackerProps = {
11
11
  description: string;
12
12
  status: ProcessTrackerStatus;
13
13
  }[];
14
- activeStep?: number;
14
+ currentStep?: number;
15
15
  style?: CSSProperties;
16
16
  };
17
- export declare const ProcessTracker: ({ title, statuses, isMobile, description, activeStep, style, }: ProcessTrackerProps) => JSX.Element;
17
+ export declare const ProcessTracker: ({ title, statuses, isMobile, description, currentStep, style, }: ProcessTrackerProps) => JSX.Element;
@@ -3,7 +3,7 @@ import { ComponentStory } from '@storybook/react';
3
3
  import { ProcessTracker as ProcessTrackerComponent, ProcessTrackerProps } from './ProcessTracker';
4
4
  declare const _default: {
5
5
  title: string;
6
- component: ({ title, statuses, isMobile, description, activeStep, style, }: ProcessTrackerProps) => JSX.Element;
6
+ component: ({ title, statuses, isMobile, description, currentStep, style, }: ProcessTrackerProps) => JSX.Element;
7
7
  };
8
8
  export default _default;
9
9
  export declare const ProcessTracker: ComponentStory<typeof ProcessTrackerComponent>;