Skip to main content

Interface: ActionWithRulesAndAddersProps

react-querybuilder.ActionWithRulesAndAddersProps

Props passed to every action component that adds a rule or group.

Hierarchy

Properties

className

Optional className: 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

ActionWithRulesProps.className

Defined in

packages/react-querybuilder/src/types/props.ts:29


context

Optional context: any

Container for custom props that are passed to all components.

Inherited from

ActionWithRulesProps.context

Defined in

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


disabled

Optional disabled: boolean

Disables the control.

Inherited from

ActionWithRulesProps.disabled

Defined in

packages/react-querybuilder/src/types/props.ts:45


disabledTranslation

Optional disabledTranslation: TranslationWithLabel

Translation which overrides the regular label/title props when the element is disabled.

Inherited from

ActionWithRulesProps.disabledTranslation

Defined in

packages/react-querybuilder/src/types/propsUsingReact.ts:67


label

Optional label: ReactNode

Visible text.

Inherited from

ActionWithRulesProps.label

Defined in

packages/react-querybuilder/src/types/propsUsingReact.ts:60


level

level: number

The level of the current group. Always equal to path.length.

Inherited from

ActionWithRulesProps.level

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

ActionWithRulesProps.path

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.

Inherited from

ActionWithRulesProps.ruleOrGroup

Defined in

packages/react-querybuilder/src/types/propsUsingReact.ts:72


rules

Optional rules: RuleOrGroupArray

Rules already present for this group.

Inherited from

ActionWithRulesProps.rules

Defined in

packages/react-querybuilder/src/types/propsUsingReact.ts:82


schema

schema: Schema<FullField<string, string, string, Option<string>, Option<string>>, string>

All subcomponents receive the configuration schema as a prop.

Inherited from

ActionWithRulesProps.schema

Defined in

packages/react-querybuilder/src/types/props.ts:62


testID

Optional testID: string

Test ID for this component.

Inherited from

ActionWithRulesProps.testID

Defined in

packages/react-querybuilder/src/types/props.ts:58


title

Optional title: string

The title/tooltip for this control.

Inherited from

ActionWithRulesProps.title

Defined in

packages/react-querybuilder/src/types/props.ts:41


validation

Optional validation: boolean | ValidationResult

Validation result of the parent rule/group.

Inherited from

ActionWithRulesProps.validation

Defined in

packages/react-querybuilder/src/types/props.ts:54

Methods

handleOnClick

handleOnClick(e, context?): void

Triggers the addition of a new rule or group. The second parameter will be forwarded to the onAddRule or onAddGroup callback, appropriately.

Parameters

NameType
eMouseEvent<Element, MouseEvent>
context?any

Returns

void

Overrides

ActionWithRulesProps.handleOnClick

Defined in

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