@zebra-fed/zeta-web
    Preparing search index...

    Class ZetaCheckbox

    Checkboxes allow users to select one or more items from a set. Checkboxes can turn an option on or off.

    change - Fired when the checkbox value changes input - Fired when the checkbox value changes

    Hierarchy

    • BaseToggleFormElement
      • ZetaCheckbox
    Index

    Other

    checked?: boolean
    disabled: boolean
    indeterminate: boolean
    input: HTMLInputElement
    internals: ElementInternals
    max: number
    min: number
    name: string
    placeholder: string
    required: boolean
    reverse: boolean = false

    Whether the order of the checkbox and its label should be reversed.

    rounded: boolean
    type: "checkbox"
    value: string = "on"
    shadowRootOptions: ShadowRootInit = ...
    styles: (CSSResult | CSSResultGroup[])[] = ...
    • Parameters

      • event: FocusEvent

      Returns void

    • Parameters

      • event: FocusEvent

      Returns void

    • Parameters

      • event: Event

      Returns void

    rendering

    • Invoked on each update to perform rendering tasks. This method may return any value renderable by lit-html's ChildPart - typically a TemplateResult. Setting properties inside this method will not trigger the element to update.

      Returns unknown