@dhasdk/simple-ui 1.0.53 → 1.0.54
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/README.md +5 -1
- package/index.css +1 -1
- package/index.js +16 -16
- package/index.mjs +1147 -1124
- package/lib/ProgressBar.d.ts +2 -0
- package/package.json +1 -1
package/lib/ProgressBar.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export interface ProgressBarProps {
|
|
|
10
10
|
/** Current active step (1-based index) */
|
|
11
11
|
currentStep: number;
|
|
12
12
|
dataTestId?: string;
|
|
13
|
+
showMarkers?: boolean;
|
|
14
|
+
classNameMarkerFalse?: string;
|
|
13
15
|
}
|
|
14
16
|
/**
|
|
15
17
|
* A progress bar component that shows a series of steps as circles with connecting lines.
|