forked from graycoreio/daffodil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbasic-checkbox.component.ts
More file actions
40 lines (37 loc) · 902 Bytes
/
basic-checkbox.component.ts
File metadata and controls
40 lines (37 loc) · 902 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
import {
ChangeDetectionStrategy,
Component,
OnInit,
} from '@angular/core';
import {
UntypedFormControl,
ReactiveFormsModule,
} from '@angular/forms';
import { DaffCheckboxModule } from '@daffodil/design';
import { DaffButtonComponent } from '@daffodil/design/button';
@Component({
// eslint-disable-next-line @angular-eslint/component-selector
selector: 'basic-checkbox',
templateUrl: './basic-checkbox.component.html',
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [
DaffCheckboxModule,
ReactiveFormsModule,
DaffButtonComponent,
],
})
export class BasicCheckboxComponent implements OnInit {
checkboxExample = new UntypedFormControl();
/**
* @docs-private
*/
ngOnInit() {
this.checkboxExample.setValue(true);
}
setFalse() {
this.checkboxExample.setValue(false);
}
setTrue() {
this.checkboxExample.setValue(true);
}
}