We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2545378 commit d4e372cCopy full SHA for d4e372c
1 file changed
reflex/components/datadisplay/dataeditor.py
@@ -291,6 +291,9 @@ class DataEditor(NoSSRComponent):
291
# Controls which types of row selections can exist at the same time. ("exclusive", "mixed").
292
row_selection_blending: Var[Literal["exclusive", "mixed"]]
293
294
+ # Controls row marker selection behavior. "auto" adapts to touch/mouse, "multi" acts as if Ctrl is pressed. ("auto", "multi").
295
+ row_selection_mode: Var[Literal["auto", "multi"]]
296
+
297
# Controls how spans are handled in selections. ("default", "allowPartial").
298
span_range_behavior: Var[Literal["default", "allowPartial"]]
299
0 commit comments