@apolitical/component-library 5.5.0 → 5.5.1-SW.0
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.
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as ProgressTracker } from './progress-tracker';
|
|
1
|
+
export { default as ProgressTracker, type INavigationDotsProps as IProgressTrackerProps, } from './progress-tracker';
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
interface
|
|
2
|
+
export interface INavigationDotsProps {
|
|
3
3
|
/** The current step */
|
|
4
4
|
currentStep?: number;
|
|
5
5
|
/** The total number of steps */
|
|
6
6
|
steps?: number;
|
|
7
7
|
}
|
|
8
|
-
declare const NavigationDots: React.FC<
|
|
8
|
+
declare const NavigationDots: React.FC<INavigationDotsProps>;
|
|
9
9
|
export default NavigationDots;
|
package/index.mjs
CHANGED
|
@@ -1991,7 +1991,10 @@ const am = Js(
|
|
|
1991
1991
|
__proto__: null,
|
|
1992
1992
|
default: Xr
|
|
1993
1993
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
1994
|
-
const q_ = ({
|
|
1994
|
+
const q_ = ({
|
|
1995
|
+
currentStep: e = 1,
|
|
1996
|
+
steps: t = 1
|
|
1997
|
+
}) => /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
1995
1998
|
/* @__PURE__ */ c.jsx(qe, { children: /* @__PURE__ */ c.jsx(
|
|
1996
1999
|
mt,
|
|
1997
2000
|
{
|