matcha-components 20.181.0 → 20.182.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.
- package/fesm2022/matcha-components.mjs +464 -453
- package/fesm2022/matcha-components.mjs.map +1 -1
- package/index.d.ts +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1090,13 +1090,16 @@ declare class MatchaStepperComponent {
|
|
|
1090
1090
|
static ɵcmp: i0.ɵɵComponentDeclaration<MatchaStepperComponent, "matcha-stepper", never, { "active": { "alias": "active"; "required": false; }; }, {}, never, ["*"], false, never>;
|
|
1091
1091
|
}
|
|
1092
1092
|
|
|
1093
|
-
declare class MatchaStepperContentComponent implements AfterContentInit {
|
|
1093
|
+
declare class MatchaStepperContentComponent implements AfterContentInit, OnDestroy {
|
|
1094
1094
|
private stepperState;
|
|
1095
1095
|
steps: QueryList<StepComponent>;
|
|
1096
1096
|
stepsArray: StepComponent[];
|
|
1097
1097
|
activeStep: number;
|
|
1098
|
+
private stepsSubscription;
|
|
1098
1099
|
constructor(stepperState: MatchaStepperStateService);
|
|
1099
1100
|
ngAfterContentInit(): void;
|
|
1101
|
+
ngOnDestroy(): void;
|
|
1102
|
+
private updateSteps;
|
|
1100
1103
|
nextStep(): void;
|
|
1101
1104
|
prevStep(): void;
|
|
1102
1105
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperContentComponent, never>;
|