@funnelback/ng-sds
Version:
`@funnelback/ng-sds` is Bootstrap 5 based library that aims to implement the [Squiz Design System specification](https://designsystem.squiz.net/) in Angular.
20 lines (19 loc) • 909 B
TypeScript
import { CdkStep } from '@angular/cdk/stepper';
import { TemplateRef, OnInit, OnDestroy } from '@angular/core';
import * as i0 from "@angular/core";
export interface SdsNavigationLabels {
previousStep: string;
nextStep: string;
}
export declare class SdsStepComponent extends CdkStep implements OnInit, OnDestroy {
title: TemplateRef<any>;
content: TemplateRef<any>;
customFooterTemplate?: TemplateRef<any>;
navigationLabels?: SdsNavigationLabels;
context?: string;
private _subscription?;
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<SdsStepComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<SdsStepComponent, "sds-step", never, { "navigationLabels": { "alias": "navigationLabels"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, ["customFooterTemplate"], ["*"], false, never>;
}