<oui-checkbox>
provides the same functionality as a native <input type="checkbox">
.
The checkbox label is provided as the content to the <oui-checkbox>
element. The label can be positioned before or after the checkbox by setting the labelPosition property to before
or after
.
If you don't want the label to appear next to the checkbox, you can use aria-label
or aria-labelledby
to specify an appropriate label.
<oui-checkbox>
is compatible with @angular/forms and supports both FormsModule and ReactiveFormsModule.
The uses an internal to provide an accessible experience. This internal checkbox receives focus and is automatically labelled by the text content of the element.
Checkboxes without text or labels should be given a meaningful label via aria-label or aria-labelledby.
import {OuiCheckboxModule} from '@oncehub/ui';
It supports all of the functionality of an HTML5 checkbox, and exposes a similar API. A OuiCheckbox can be either checked, unchecked or disabled. Note that all additional accessibility attributes are taken care of by the component, so there is no need to provide them yourself. However, if you want to omit a label and still have the checkbox be accessible, you may supply an [aria-label] input.
Selector: oui-checkbox
Exported as: ouiCheckbox
Properties
Name | Description |
---|---|
@Input() aria-label:String |
Used to set the aria-label attribute on the underlying element. |
@Input() aria-labelledby: String |
Used to set the aria-labelledby attribute on the underlying element. |
@Input() checked: boolean |
Whether the checkbox is checked. |
@Input() disabled: any |
Whether the checkbox is disabled. |
@Input() id: string |
A unique id for the checkbox input. If none is supplied, it will be auto-generated. |
@Input() labelPosition: 'before' OR 'after' |
Whether the label should appear after or before the checkbox. Defaults to 'after'. |
@Input() name: string OR null |
Name value will be applied to the input element if present. |
@Input() required: boolean |
Whether the checkbox is required. |
@Input() value: string |
The value attribute of the native input element. |
@Output() change: EventEmitter<OuiCheckboxChange> |
Event emitted when the checkbox's checked value changes. |
Method
Name | Description |
---|---|
focus | Focuses the checkbox. |
toggle | Toggles the checked state of the checkbox. |
<oui-checkbox
class="example-margin"
[(ngModel)]="checked"
[labelPosition]="labelPosition"
[disabled]="disabled">
I'm a checkbox
</oui-checkbox>
The focus color of a checkbox can be changed by using the color
property. By default,
checkbox use the theme's 'primary'
color. This can be changed to 'accent'
or 'warn'
.
https://stackblitz.com/edit/oui-checkbox
You can click here and can change code to try and test different scenarios.