Skip to main content

FullField<FieldName, OperatorName, ValueName, OperatorObj, ValueObj>

Full field definition used in the fields prop of QueryBuilder. This type requires both name and value, but the fields prop itself can use a FlexibleOption where only one of name or value is required (along with label), or Field where only name and label are required.

The name/value, operators, and values properties of this interface can be narrowed with generics.

Extends

  • FullOption<FieldName>.BaseFullField<FieldName, OperatorName, ValueName, OperatorObj, ValueObj>

Type Parameters

Type ParameterDefault type
FieldName extends stringstring
OperatorName extends stringstring
ValueName extends stringstring
OperatorObj extends OptionOption<OperatorName>
ValueObj extends OptionOption<ValueName>

Properties

className?

optional className: Classname

Inherited from

BaseFullField.className

Defined in

packages/react-querybuilder/src/types/basic.ts:50


comparator?

optional comparator: string | (f, operator) => boolean

Inherited from

BaseFullField.comparator

Defined in

packages/react-querybuilder/src/types/basic.ts:103


defaultOperator?

optional defaultOperator: OperatorName

Inherited from

BaseFullField.defaultOperator

Defined in

packages/react-querybuilder/src/types/basic.ts:98


defaultValue?

optional defaultValue: any

Inherited from

BaseFullField.defaultValue

Defined in

packages/react-querybuilder/src/types/basic.ts:100


disabled?

optional disabled: boolean

Inherited from

FullOption.disabled

Defined in

packages/react-querybuilder/src/types/options.ts:33


id?

optional id: string

Inherited from

BaseFullField.id

Defined in

packages/react-querybuilder/src/types/basic.ts:92


inputType?

optional inputType: null | InputType

Inherited from

BaseFullField.inputType

Defined in

packages/react-querybuilder/src/types/basic.ts:96


label

label: string

Inherited from

FullOption.label

Defined in

packages/react-querybuilder/src/types/options.ts:32


name

name: FieldName

Inherited from

FullOption.name

Defined in

packages/react-querybuilder/src/types/options.ts:30


operators?

optional operators: FlexibleOptionList<OperatorObj>

Inherited from

BaseFullField.operators

Defined in

packages/react-querybuilder/src/types/basic.ts:93


placeholder?

optional placeholder: string

Inherited from

BaseFullField.placeholder

Defined in

packages/react-querybuilder/src/types/basic.ts:101


validator?

optional validator: RuleValidator

Inherited from

BaseFullField.validator

Defined in

packages/react-querybuilder/src/types/basic.ts:102


value

value: FieldName

Inherited from

FullOption.value

Defined in

packages/react-querybuilder/src/types/options.ts:31


valueEditorType?

optional valueEditorType: ValueEditorType | (operator) => ValueEditorType

Inherited from

BaseFullField.valueEditorType

Defined in

packages/react-querybuilder/src/types/basic.ts:94


valueSources?

optional valueSources: ValueSources | (operator) => ValueSources

Inherited from

BaseFullField.valueSources

Defined in

packages/react-querybuilder/src/types/basic.ts:95


values?

optional values: FlexibleOptionList<ValueObj>

Inherited from

BaseFullField.values

Defined in

packages/react-querybuilder/src/types/basic.ts:97


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.