Skip to content

Checkbox - Web Component โ€‹

The Checkbox component can be used imported from:

Playground โ€‹

Parameters โ€‹

The Web component uses the <z-checkbox> tag:

By default, all the parameters are optional or can be set in different, except for the ones marked as required

The parametrization of the component can be done with the following custom HTML params:

NameTypeDescriptionSlotA11y
labelstringLabel of the inputlabel
modelbooleanValue of the model
checkedbooleanOverrides the "value" parameter as in the standard
invalid-textstringThe text to be shown when invalidinvalid-text
disabledbooleanBlocks the interaction with the input component.
requiredbooleanMarks the input component as required.
namestringIdentification for the field inside the form
indeterminatebooleanMarks the component as indeterminate.

Events โ€‹

This component has events. Check the documentation about how to use the events.

NamePayloadDescription
changebooleanReturns the new value of the "value" attribute
restartedvoidEmitted on value reset

Slots โ€‹

This component has slots. Check the documentation about how to use the slots.

NameTagsDescription
defaultspan
invalid-textspan

Parameters use โ€‹

label โ€‹

The z-checkbox component accepts a label attribute to set the text label of the component.

The slot label can also be used:

Checkbox label

model โ€‹

Both value and checked parameters are used to set the value of the component.

name โ€‹

The name attribute is used to set the name of the component. This is useful when the component is inside a form.

invalid-text โ€‹

The invalid-text attribute will set the component as invalid. Without label, the text won't be present but the checkbox will still be invalid:

We can also use the invalid-text slot:

This input is requiredThis input is required

Flags โ€‹

indeterminate โ€‹

The indeterminate attribute it's used to set the checkbox in an indeterminate state.

disabled โ€‹

The attribute disabled will block the interaction with the component.

And with labels:

required โ€‹

The attribute required will set the component as required.

Browser support โ€‹

Detected engine: ย 

  • Chromium

  • Webkit

  • Gecko

HTML Examples โ€‹

CodeSandbox example โ€‹