matcha-components 20.153.0 → 20.154.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
|
@@ -769,6 +769,7 @@ declare class MatchaSkeletonComponent {
|
|
|
769
769
|
|
|
770
770
|
declare class MatchaSlideToggleComponent implements ControlValueAccessor, OnChanges, AfterViewInit {
|
|
771
771
|
private elementRef;
|
|
772
|
+
private cdr;
|
|
772
773
|
color: string;
|
|
773
774
|
private _checked;
|
|
774
775
|
set checked(value: boolean | string);
|
|
@@ -785,7 +786,7 @@ declare class MatchaSlideToggleComponent implements ControlValueAccessor, OnChan
|
|
|
785
786
|
registerOnChange(fn: any): void;
|
|
786
787
|
registerOnTouched(fn: any): void;
|
|
787
788
|
setDisabledState(isDisabled: boolean): void;
|
|
788
|
-
constructor(elementRef: ElementRef<HTMLElement
|
|
789
|
+
constructor(elementRef: ElementRef<HTMLElement>, cdr: ChangeDetectorRef);
|
|
789
790
|
ngOnChanges(changes: SimpleChanges): void;
|
|
790
791
|
ngAfterViewInit(): void;
|
|
791
792
|
onInputChange(event: Event): void;
|