ActionProps
Props passed to every action component (rendered as <button> by default).
Extends
Extended by
Properties
className?
optionalclassName:string
CSS classNames to be applied.
This is string and not Classname because the Rule
and RuleGroup components run clsx() to produce the className
that gets passed to each subcomponent.
Inherited from
CommonSubComponentProps.className
Defined in
packages/react-querybuilder/src/types/props.ts:29
context?
optionalcontext:any
Container for custom props that are passed to all components.
Inherited from
CommonSubComponentProps.context
Defined in
packages/react-querybuilder/src/types/props.ts:50
disabled?
optionaldisabled:boolean
Disables the control.
Inherited from
CommonSubComponentProps.disabled
Defined in
packages/react-querybuilder/src/types/props.ts:45
disabledTranslation?
optionaldisabledTranslation:TranslationWithLabel
Translation which overrides the regular label/title props when
the element is disabled.
Defined in
packages/react-querybuilder/src/types/propsUsingReact.ts:70
label?
optionallabel:ReactNode
Visible text.
Defined in
packages/react-querybuilder/src/types/propsUsingReact.ts:63
level
level:
number
The level of the current group. Always equal to path.length.
Inherited from
Defined in
packages/react-querybuilder/src/types/props.ts:37
path
path:
Path
Path to this subcomponent's rule/group within the query.
Inherited from
Defined in
packages/react-querybuilder/src/types/props.ts:33
ruleOrGroup
ruleOrGroup:
RuleType<string,string,any,string> |RuleGroupTypeAny
The RuleType or RuleGroupType/RuleGroupTypeIC associated with this element.
Defined in
packages/react-querybuilder/src/types/propsUsingReact.ts:75
schema
schema:
Schema<FullField<string,string,string,Option<string>,Option<string>>,string>
All subcomponents receive the configuration schema as a prop.
Inherited from
CommonSubComponentProps.schema
Defined in
packages/react-querybuilder/src/types/props.ts:62
testID?
optionaltestID:string
Test ID for this component.
Inherited from
CommonSubComponentProps.testID
Defined in
packages/react-querybuilder/src/types/props.ts:58
title?
optionaltitle:string
The title/tooltip for this control.
Inherited from
Defined in
packages/react-querybuilder/src/types/props.ts:41
validation?
optionalvalidation:boolean|ValidationResult
Validation result of the parent rule/group.
Inherited from
CommonSubComponentProps.validation
Defined in
packages/react-querybuilder/src/types/props.ts:54
Methods
handleOnClick()
handleOnClick(
e?:MouseEvent<Element,MouseEvent>):void
Call this function to trigger the action.
Parameters
| Parameter | Type |
|---|---|
e? | MouseEvent<Element, MouseEvent> |
Returns
void
Defined in
packages/react-querybuilder/src/types/propsUsingReact.ts:65
API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.