@apolitical/component-library 5.4.4-beta.0 → 5.4.5-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
|
@@ -1977,7 +1977,10 @@ const Xh = Ys(
|
|
|
1977
1977
|
__proto__: null,
|
|
1978
1978
|
default: Qr
|
|
1979
1979
|
}, Symbol.toStringTag, { value: "Module" }));
|
|
1980
|
-
const R_ = ({
|
|
1980
|
+
const R_ = ({
|
|
1981
|
+
currentStep: e = 1,
|
|
1982
|
+
steps: t = 1
|
|
1983
|
+
}) => /* @__PURE__ */ c.jsxs(c.Fragment, { children: [
|
|
1981
1984
|
/* @__PURE__ */ c.jsx(Ue, { children: /* @__PURE__ */ c.jsx(
|
|
1982
1985
|
mt,
|
|
1983
1986
|
{
|