matcha-components 20.200.0 → 20.201.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/index.d.ts
CHANGED
|
@@ -1849,10 +1849,11 @@ declare class MatchaStepperStateService {
|
|
|
1849
1849
|
|
|
1850
1850
|
declare class MatchaStepperControllerComponent implements OnInit {
|
|
1851
1851
|
private stepperState;
|
|
1852
|
+
private cdr;
|
|
1852
1853
|
disableNext: boolean;
|
|
1853
1854
|
steps: string[];
|
|
1854
1855
|
activeStep: number;
|
|
1855
|
-
constructor(stepperState: MatchaStepperStateService);
|
|
1856
|
+
constructor(stepperState: MatchaStepperStateService, cdr: ChangeDetectorRef);
|
|
1856
1857
|
ngOnInit(): void;
|
|
1857
1858
|
goToStep(index: number): void;
|
|
1858
1859
|
static ɵfac: i0.ɵɵFactoryDeclaration<MatchaStepperControllerComponent, never>;
|
|
@@ -1877,11 +1878,12 @@ declare class StepComponent {
|
|
|
1877
1878
|
|
|
1878
1879
|
declare class MatchaStepperContentComponent implements AfterContentInit, OnDestroy {
|
|
1879
1880
|
private stepperState;
|
|
1881
|
+
private cdr;
|
|
1880
1882
|
steps: QueryList<StepComponent>;
|
|
1881
1883
|
stepsArray: StepComponent[];
|
|
1882
1884
|
activeStep: number;
|
|
1883
1885
|
private stepsSubscription;
|
|
1884
|
-
constructor(stepperState: MatchaStepperStateService);
|
|
1886
|
+
constructor(stepperState: MatchaStepperStateService, cdr: ChangeDetectorRef);
|
|
1885
1887
|
ngAfterContentInit(): void;
|
|
1886
1888
|
ngOnDestroy(): void;
|
|
1887
1889
|
private updateSteps;
|