matcha-components 20.264.0 → 20.265.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
|
@@ -683,11 +683,15 @@ declare class MatchaCardModule {
|
|
|
683
683
|
declare class MatchaCheckboxComponent implements ControlValueAccessor {
|
|
684
684
|
private cdr;
|
|
685
685
|
inputElement: ElementRef<HTMLInputElement>;
|
|
686
|
-
|
|
686
|
+
private _color;
|
|
687
|
+
get colorAttr(): string;
|
|
688
|
+
get color(): string;
|
|
689
|
+
set color(value: string);
|
|
687
690
|
private _indeterminate;
|
|
688
691
|
get indeterminate(): boolean;
|
|
689
692
|
set indeterminate(value: boolean);
|
|
690
693
|
private _disabled;
|
|
694
|
+
get disabledAttr(): string | null;
|
|
691
695
|
get disabled(): boolean;
|
|
692
696
|
set disabled(value: boolean | string);
|
|
693
697
|
private _checked;
|
|
@@ -2761,7 +2765,7 @@ declare class MatchaSnackBarComponent implements OnInit, OnDestroy {
|
|
|
2761
2765
|
duration: number;
|
|
2762
2766
|
visible: boolean;
|
|
2763
2767
|
private timeoutId;
|
|
2764
|
-
get colorAttr(): "error" | "
|
|
2768
|
+
get colorAttr(): "error" | "info" | "warning" | "success";
|
|
2765
2769
|
get positionAttr(): "top" | "bottom";
|
|
2766
2770
|
get classes(): string;
|
|
2767
2771
|
constructor(snackBarService: MatchaSnackBarService);
|