mobx-sentinel API doc
    Preparing search index...

    Binding for checkbox input elements

    Key features:

    • Handles boolean states
    • Manages error states and ARIA attributes

    Implements

    • FormBinding
    Index

    Constructors

    Properties

    Accessors

    Constructors

    Properties

    onChange: ChangeEventHandler<HTMLInputElement> = ...
    onFocus: FocusEventHandler<HTMLInputElement> = ...

    Accessors

    • get props(): {
          "aria-errormessage": undefined
          | string;
          "aria-invalid": undefined | boolean;
          checked: boolean;
          id: string;
          onChange: ChangeEventHandler<HTMLInputElement>;
          onFocus: FocusEventHandler<HTMLInputElement>;
          type: "checkbox";
      }

      Binding properties which passed to the view component

      Returns {
          "aria-errormessage": undefined | string;
          "aria-invalid": undefined | boolean;
          checked: boolean;
          id: string;
          onChange: ChangeEventHandler<HTMLInputElement>;
          onFocus: FocusEventHandler<HTMLInputElement>;
          type: "checkbox";
      }