@cmdap/ng-wizard
Version:
A simple wizard/stepper component for Angular 9 utilizing Angular Routing for navigation.
21 lines (20 loc) • 431 B
TypeScript
export interface NgWizardStepOptions {
title: string;
icon?: string;
buttons?: {
previous?: {
label?: string;
hidden?: boolean;
};
next?: {
label?: string;
hidden?: boolean;
};
extra?: {
label?: string;
path?: string;
};
};
cleanQueryParameters?: boolean;
disableNavigation?: boolean;
}