useValueSelector()
useValueSelector(
props
:UseValueSelectorParams
): {onChange
: (v
:string
|string
[]) =>void
;val
:undefined
|string
|any
[]; }
Defined in: packages/react-querybuilder/src/components/ValueSelector.tsx:43
Transforms a value into an array when appropriate and provides a memoized change handler.
Parameters
Parameter | Type |
---|---|
props | UseValueSelectorParams |
Returns
{ onChange
: (v
: string
| string
[]) => void
; val
: undefined
| string
| any
[]; }
onChange()
onChange: (
v
:string
|string
[]) =>void
Memoized change handler for value selectors
Parameters
Parameter | Type |
---|---|
v | string | string [] |
Returns
void
val
val:
undefined
|string
|any
[]
The value as provided or, if appropriate, as an array
caution
API documentation is generated from the latest commit on the main
branch. It may be somewhat inconsistent with official releases of React Query Builder.