aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/checklist/checklist.component.html.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/angular/checklist/checklist.component.html.ts')
-rw-r--r--src/angular/checklist/checklist.component.html.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/angular/checklist/checklist.component.html.ts b/src/angular/checklist/checklist.component.html.ts
new file mode 100644
index 0000000..cb6f540
--- /dev/null
+++ b/src/angular/checklist/checklist.component.html.ts
@@ -0,0 +1,15 @@
+export default `
+<div *ngFor="let checkbox of checklistModel.checkboxes" #currentCheckbox>
+ <div class="checkbox-item">
+ <sdc-checkbox [label]="checkbox.label"
+ [(checked)]="checkbox.isChecked"
+ [disabled]="checkbox.disabled"
+ (checkedChange)="checkboxCheckedChange(checkbox, checklistModel)"
+ [ngClass]="{'semi-checked': !checkbox.isChecked && hasCheckedChild(currentCheckbox)}"></sdc-checkbox>
+ </div>
+ <div *ngIf="checkbox.subLevelChecklist" class="checkbox-sublist">
+ <sdc-checklist [checklistModel]="checkbox.subLevelChecklist"
+ (checkedChange)="childCheckboxChange($event, checkbox)"></sdc-checklist>
+ </div>
+</div>
+`;