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 c945ce2 commit 377899cCopy full SHA for 377899c
projects/components/src/checkbox/checkbox.component.ts
@@ -43,6 +43,10 @@ export class CheckboxComponent implements ControlValueAccessor {
43
@Output()
44
public readonly checkedChange: EventEmitter<boolean> = new EventEmitter();
45
46
+ public get checked(): boolean {
47
+ return this.isChecked;
48
+ }
49
+
50
public isChecked: boolean = false;
51
public isDisabled: boolean = false;
52
0 commit comments