@apolitical/component-library 3.0.2-ac.0 → 3.0.2-ac.2

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.
@@ -5,6 +5,8 @@ interface Props {
5
5
  isPasswordChange?: boolean;
6
6
  /** The functions being passed to the form */
7
7
  functions: {
8
+ /** The function to call to create the password */
9
+ createPassword: (arg: IFormValues) => Promise<void>;
8
10
  /** The function to call when onSuccess fails */
9
11
  onCatch?: (error?: unknown) => void;
10
12
  /** The function to call when the form submission fails */
@@ -2,7 +2,7 @@ export * from './buttons';
2
2
  export * from './divider';
3
3
  export * from './image-container';
4
4
  export * from './link';
5
- export * from './navigation-dots';
5
+ export * from './progress-tracker';
6
6
  export * from './responsive-image';
7
7
  export * from './return-to-nav-button';
8
8
  export * from './tooltip';
@@ -0,0 +1 @@
1
+ export { default as ProgressTracker } from './progress-tracker';