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
| Parameter | Type |
|---|---|
event | any |
Returns
void
ref()
ref: (instance: any) => void;
Parameters
| Parameter | Type |
|---|---|
instance | any |
Returns
void
type
type: "checkbox"
value
value: string | number | readonly string[] | undefined;