Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 2x | <div class="form-check form-switch d-inline-block">
<input
type="checkbox"
role="switch"
class="form-check-input"
autocomplete="off"
[attr.aria-label]="ariaLabel"
[id]="id"
[checked]="active"
[disabled]="disabled"
(click)="toggleState()"
/>
<label class="form-check-label" [for]="id" data-testing-id="formCheckLabel">{{
activeState ? labelActive : labelInactive
}}</label>
</div>
|