@secondstaxorg/sscomp 1.6.91 → 1.6.93

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "1.6.91",
3
+ "version": "1.6.93",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -41,4 +41,8 @@ export interface DropdownProps {
41
41
  * Boolean to specify whether the field is required
42
42
  */
43
43
  required?: boolean;
44
+ /**
45
+ * Input name as is with html input tag
46
+ * */
47
+ inputName: string;
44
48
  }
@@ -40,4 +40,8 @@ export interface SelectorProps {
40
40
  * Custom error message to be displayed when validation fails
41
41
  */
42
42
  errMsg?: string;
43
+ /**
44
+ * Input name as is with html input tag
45
+ * */
46
+ inputName: string;
43
47
  }
@@ -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';