@zealicsolutions/web-ui 0.1.74 → 0.1.76

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>;
package/dist/index.d.ts CHANGED
@@ -586,10 +586,10 @@ declare type StepperProps = {
586
586
  description?: string;
587
587
  status?: ProcessTrackerStatus$1;
588
588
  }[];
589
- active: number;
589
+ currentStep: number;
590
590
  orientation?: OrientationType;
591
591
  };
592
- declare const Stepper: ({ active, steps, orientation }: StepperProps) => JSX.Element;
592
+ declare const Stepper: ({ steps, orientation, currentStep }: StepperProps) => JSX.Element;
593
593
 
594
594
  declare type PdfDocumentProps = {
595
595
  source: string;
@@ -819,10 +819,10 @@ declare type ProcessTrackerProps = {
819
819
  description: string;
820
820
  status: ProcessTrackerStatus;
821
821
  }[];
822
- activeStep?: number;
822
+ currentStep?: number;
823
823
  style?: CSSProperties;
824
824
  };
825
- declare const ProcessTracker: ({ title, statuses, isMobile, description, activeStep, style, }: ProcessTrackerProps) => JSX.Element;
825
+ declare const ProcessTracker: ({ title, statuses, isMobile, description, currentStep, style, }: ProcessTrackerProps) => JSX.Element;
826
826
 
827
827
  declare type FilteredFeedContentType = 'article' | 'document' | 'video' | 'all';
828
828
  declare type FeedContentContainerProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zealicsolutions/web-ui",
3
- "version": "0.1.74",
3
+ "version": "0.1.76",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+ssh://git@bitbucket.org/Zealic_Solutions/zeal-ui-web.git"