@mobilelivenpm/fds-angular-qa
Version:
This library was generated with [Nx](https://nx.dev).
17 lines (16 loc) • 694 B
TypeScript
import { CdkStepperNext, CdkStepperPrevious } from '@angular/cdk/stepper';
import { CdkStepper } from '@angular/cdk/stepper';
/** Button that moves to the next step in a stepper workflow. */
export declare class FdsStepperNext extends CdkStepperNext {
_stepper: CdkStepper;
constructor(_stepper: CdkStepper);
/**
* Extend default cdkStepper with additional functionality:
* When user clicks Next button and [stepControl] (FormControl) is invalid
* Mark all fields as touched to show errors.
*/
_handleClick(): void;
}
/** Button that moves to the previous step in a stepper workflow. */
export declare class FdsStepperPrevious extends CdkStepperPrevious {
}