ShiftActionsREProps
Defined in: rules-engine/src/components/ShiftActionsRE.ts:8
Extends
Omit<ShiftActionsProps,"schema"|"ruleOrGroup">
Properties
className?
optionalclassName?:string
Defined in: react-querybuilder/src/types/props.ts:76
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
Omit.className
context?
optionalcontext?:any
Defined in: react-querybuilder/src/types/props.ts:97
Container for custom props that are passed to all components.
Inherited from
Omit.context
disabled?
optionaldisabled?:boolean
Defined in: react-querybuilder/src/types/props.ts:92
Disables the control.
Inherited from
Omit.disabled
labels?
optionallabels?: {shiftDown?:ReactNode;shiftUp?:ReactNode; }
Defined in: react-querybuilder/src/types/props.ts:347
Visible text for "shift up"/"shift down" elements.
shiftDown?
optionalshiftDown?:ReactNode
shiftUp?
optionalshiftUp?:ReactNode
Inherited from
Omit.labels
level
level:
number
Defined in: react-querybuilder/src/types/props.ts:84
The level of the current group. Always equal to path.length.
Inherited from
Omit.level
path
path:
Path
Defined in: react-querybuilder/src/types/props.ts:80
Path to this subcomponent's rule/group within the query.
Inherited from
Omit.path
schema
schema:
SchemaRE
Defined in: rules-engine/src/components/ShiftActionsRE.ts:9
shiftDown
shiftDown: (
e?:MouseEvent<Element,MouseEvent>,context?:any) =>void
Defined in: react-querybuilder/src/types/props.ts:366
Method to shift the rule/group down one place.
Parameters
| Parameter | Type |
|---|---|
e? | MouseEvent<Element, MouseEvent> |
context? | any |
Returns
void
Inherited from
Omit.shiftDown
shiftDownDisabled?
optionalshiftDownDisabled?:boolean
Defined in: react-querybuilder/src/types/props.ts:374
Whether shifting the rule/group down is disallowed.
Inherited from
Omit.shiftDownDisabled
shiftUp
shiftUp: (
e?:MouseEvent<Element,MouseEvent>,context?:any) =>void
Defined in: react-querybuilder/src/types/props.ts:361
Method to shift the rule/group up one place.
Parameters
| Parameter | Type |
|---|---|
e? | MouseEvent<Element, MouseEvent> |
context? | any |
Returns
void
Inherited from
Omit.shiftUp
shiftUpDisabled?
optionalshiftUpDisabled?:boolean
Defined in: react-querybuilder/src/types/props.ts:370
Whether shifting the rule/group up is disallowed.
Inherited from
Omit.shiftUpDisabled
testID?
optionaltestID?:string
Defined in: react-querybuilder/src/types/props.ts:105
Test ID for this component.
Inherited from
Omit.testID
title?
optionaltitle?:string
Defined in: react-querybuilder/src/types/props.ts:88
The title/tooltip for this control.
Inherited from
Omit.title
titles?
optionaltitles?: {shiftDown?:string;shiftUp?:string; }
Defined in: react-querybuilder/src/types/props.ts:351
Tooltips for "shift up"/"shift down" elements.
shiftDown?
optionalshiftDown?:string
shiftUp?
optionalshiftUp?:string
Inherited from
Omit.titles
validation?
optionalvalidation?:boolean|ValidationResult
Defined in: react-querybuilder/src/types/props.ts:101
Validation result of the parent rule/group.
Inherited from
Omit.validation
API documentation is generated from the latest commit on the main branch. It may be somewhat inconsistent with official releases of React Query Builder.