We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba80ab8 commit 2e4537aCopy full SHA for 2e4537a
projects/components/src/toggle-switch/toggle-switch.component.ts
@@ -48,6 +48,10 @@ export class ToggleSwitchComponent implements ControlValueAccessor {
48
@Output()
49
public readonly checkedChange: EventEmitter<boolean> = new EventEmitter();
50
51
+ public get checked() {
52
+ return this.isChecked;
53
+ }
54
+
55
public isChecked: boolean = false;
56
public isDisabled: boolean = false;
57
0 commit comments