@secondstaxorg/sscomp 1.6.92 → 1.6.94
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.
- package/dist/index.es.js +70 -29
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1669 -1586
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +46 -5
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/CountrySelector/type.d.ts +4 -0
- package/types/components/DropdownList/type.d.ts +4 -0
- package/types/components/Selector/types.d.ts +4 -0
- package/types/components/StepProgress/StepProgress.d.ts +7 -0
- package/types/components/StepProgress/style.d.ts +4 -0
- package/types/components/StepProgress/type.d.ts +10 -0
- package/types/components/index.d.ts +1 -0
package/package.json
CHANGED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
import { StepProps } from "./type";
|
|
3
|
+
/**
|
|
4
|
+
* This component lists out steps that are to be completed throughout an onboarding process for example.
|
|
5
|
+
*/
|
|
6
|
+
declare const StepProgress: (props: StepProps) => JSX.Element;
|
|
7
|
+
export default StepProgress;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export declare const Container: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
2
|
+
export declare const LogTimeline: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
3
|
+
export declare const TimelineDot: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
4
|
+
export declare const LogContent: import("styled-components").StyledComponent<"div", any, {}, never>;
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export interface StepProps {
|
|
2
|
+
/**
|
|
3
|
+
* An array containing objects detailing the timestamp, the user, the description of the action and an optional reference ID for the action.
|
|
4
|
+
*/
|
|
5
|
+
steps: string[];
|
|
6
|
+
/**
|
|
7
|
+
* This is the current step yet to be completed by the user. This will be the last green dot in the series. This is case-sensitive.
|
|
8
|
+
*/
|
|
9
|
+
currentStep: string;
|
|
10
|
+
}
|
|
@@ -65,3 +65,4 @@ export { default as BidsCards } from './BidsCards/BidsCard';
|
|
|
65
65
|
export { default as TablePrimary } from './TablePrimary';
|
|
66
66
|
export { default as TableAlternative } from './TableAlternative';
|
|
67
67
|
export { default as Selector } from './Selector/Selector';
|
|
68
|
+
export { default as StepProgress } from './StepProgress/StepProgress';
|