Ask AI is now on the home page — ask a question and get a sourced answer from the Ory docs. You'll also find it in the bottom-right corner of any page.

Skip to main content

OryNodeCheckboxInputProps

type OryNodeCheckboxInputProps = {
checked: boolean
disabled?: boolean
name: string
onChange: (event: any) => void
ref: (instance: any) => void
type: "checkbox"
value: string | number | readonly string[] | undefined
}

Properties

checked

checked: boolean

disabled?

optional disabled: boolean;

name

name: string

onChange()

onChange: (event: any) => void;

Parameters

ParameterType
eventany

Returns

void


ref()

ref: (instance: any) => void;

Parameters

ParameterType
instanceany

Returns

void


type

type: "checkbox"

value

value: string | number | readonly string[] | undefined;