|
9 | 9 | @for (columnItems of items; track columnItems) { |
10 | 10 | <div class="col-sm"> |
11 | 11 | @for (item of columnItems; track item) { |
12 | | - <div class="custom-control custom-checkbox"> |
13 | | - <input type="checkbox" class="custom-control-input" |
| 12 | + <div class="form-check"> |
| 13 | + <input type="checkbox" class="form-check-input" |
14 | 14 | [attr.aria-labelledby]="'label_' + model.id" |
15 | 15 | [attr.tabindex]="item.index" |
16 | 16 | [checked]="item.value" |
|
21 | 21 | (blur)="onBlur($event)" |
22 | 22 | (change)="onChange($event)" |
23 | 23 | (focus)="onFocus($event)"/> |
24 | | - <label class="custom-control-label" |
| 24 | + <label class="form-check-label" |
25 | 25 | [class.disabled]="model.disabled" |
26 | 26 | [ngClass]="model.layout.element?.control" |
27 | 27 | [for]="item.id"> |
|
45 | 45 | @for (columnItems of items; track columnItems) { |
46 | 46 | <div class="col-sm"> |
47 | 47 | @for (item of columnItems; track item) { |
48 | | - <div class="custom-control custom-radio"> |
49 | | - <input type="radio" class="custom-control-input" |
| 48 | + <div class="form-check"> |
| 49 | + <input type="radio" class="form-check-input" |
50 | 50 | [checked]="item.value" |
51 | 51 | [id]="item.id" |
52 | 52 | [name]="model.id" |
53 | 53 | [required]="model.required" |
54 | 54 | [value]="item.index" |
55 | 55 | (blur)="onBlur($event)" |
56 | 56 | (focus)="onFocus($event)"/> |
57 | | - <label class="custom-control-label" |
| 57 | + <label class="form-check-label" |
58 | 58 | [class.disabled]="model.disabled" |
59 | 59 | [ngClass]="model.layout.element?.control" |
60 | 60 | [for]="item.id"> |
|
0 commit comments