matcha-components 20.232.0 → 20.233.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
|
@@ -2720,7 +2720,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
|
|
|
2720
2720
|
duration: number;
|
|
2721
2721
|
visible: boolean;
|
|
2722
2722
|
private timeoutId;
|
|
2723
|
-
get colorAttr(): "error" | "
|
|
2723
|
+
get colorAttr(): "error" | "warning" | "info" | "success";
|
|
2724
2724
|
get positionAttr(): "top" | "bottom";
|
|
2725
2725
|
get classes(): string;
|
|
2726
2726
|
constructor(snackBarService: MatchaSnackBarService);
|
|
@@ -2771,6 +2771,7 @@ declare const DEFAULT_CONFIG: MatchaTextEditorOptions;
|
|
|
2771
2771
|
|
|
2772
2772
|
declare class MatchaTextEditorComponent implements ControlValueAccessor, AfterViewInit, OnDestroy {
|
|
2773
2773
|
private _ngZone;
|
|
2774
|
+
private _cdr;
|
|
2774
2775
|
readonly editorId: string;
|
|
2775
2776
|
isLoading: boolean;
|
|
2776
2777
|
set value(v: string);
|
|
@@ -2784,7 +2785,7 @@ declare class MatchaTextEditorComponent implements ControlValueAccessor, AfterVi
|
|
|
2784
2785
|
private _observer;
|
|
2785
2786
|
private _onChange;
|
|
2786
2787
|
private _onTouched;
|
|
2787
|
-
constructor(_ngZone: NgZone);
|
|
2788
|
+
constructor(_ngZone: NgZone, _cdr: ChangeDetectorRef);
|
|
2788
2789
|
ngAfterViewInit(): Promise<void>;
|
|
2789
2790
|
ngOnDestroy(): void;
|
|
2790
2791
|
writeValue(value: string): void;
|