luxe: selection
Selection
Section titled “Selection”import "luxe: selection" for Selectionno docs found
Selection.CHANGE
Section titled “Selection.CHANGE”Selection.CHANGE : unknownno docs found
Selection.DESELECT
Section titled “Selection.DESELECT”Selection.DESELECT : unknownno docs found
Selection.SELECT
Section titled “Selection.SELECT”Selection.SELECT : unknownno docs found
Selection.INVALID
Section titled “Selection.INVALID”Selection.INVALID : unknownno docs found
Selection.PRE_CHANGE
Section titled “Selection.PRE_CHANGE”Selection.PRE_CHANGE : unknownno docs found
Selection.id
Section titled “Selection.id”Selection.id : Stringno docs found
Selection.events
Section titled “Selection.events”Selection.events : Eventsno docs found
Selection.selected
Section titled “Selection.selected”Selection.selected : Listno docs found
Selection.any(.)
Section titled “Selection.any(.)”Selection.any() : Boolno docs found
Selection.is_selected(.)
Section titled “Selection.is_selected(.)”Selection.is_selected(value : Any) : Boolno docs found
Selection.is_selected(..)
Section titled “Selection.is_selected(..)”Selection.is_selected(value : Any, non_transient_only : Bool) : Boolno docs found
Selection.is_invalid_selection(.)
Section titled “Selection.is_invalid_selection(.)”Selection.is_invalid_selection(value : Any) : Stringreturns a string as a reason if not able to select, otherwise returns null
Selection.count
Section titled “Selection.count”Selection.count : Numno docs found
Selection.first
Section titled “Selection.first”Selection.first : Anyno docs found
Selection.last
Section titled “Selection.last”Selection.last : Anyno docs found
Selection.transient
Section titled “Selection.transient”Selection.transient : Boolno docs found
Selection.new(.)
Section titled “Selection.new(.)”Selection.new(context : String) : Selectionno docs found
Selection.destroy(.)
Section titled “Selection.destroy(.)”Selection.destroy() : unknownno docs found
Selection.emit(..)
Section titled “Selection.emit(..)”Selection.emit(kind : Any, items : List) : unknownno docs found
Selection.start_transient(.)
Section titled “Selection.start_transient(.)”Selection.start_transient(change : Fn) : unknownStart a transient selection where changes will be stored separately and notifed of a change directly
Selection.end_transient(.)
Section titled “Selection.end_transient(.)”Selection.end_transient() : NoneEnd a transient selection, read .selected before calling to capture the transient selection
Selection.sync(.)
Section titled “Selection.sync(.)”Selection.sync(other : Selection) : unknownSync selection with another instance.
Selection.unsync(.)
Section titled “Selection.unsync(.)”Selection.unsync(other : Selection) : unknownStop syncing selection.
Selection.deselect(.)
Section titled “Selection.deselect(.)”Selection.deselect() : unknownClear the selection. emits
DESELECTwith a list of items deselected
Selection.deselect(.)
Section titled “Selection.deselect(.)”Selection.deselect(item : Any) : unknownDeselect the given item. emits
DESELECTwith a list containing the item
Selection.deselect_items(.)
Section titled “Selection.deselect_items(.)”Selection.deselect_items(items : List) : unknownDeselect the given items. emits
DESELECTwith a list containing the items (ones that were actually selected)
Selection.select(.)
Section titled “Selection.select(.)”Selection.select(item : Any) : unknownselect the given item. emits
SELECTwith a list containing the item
Selection.select(..)
Section titled “Selection.select(..)”Selection.select(item : Any, plural : Bool) : unknownSelect the given item, and if plural is true, the item is added to the existing selection. If not, the selection is cleared and only this item is selected afterward. Emits
SELECTwith a list containing the item
Selection.select_items(.)
Section titled “Selection.select_items(.)”Selection.select_items(items : List) : NoneSelect multiple items. Replaces the current selection. Emits
SELECTwith a list containing the items
Selection.select_items(..)
Section titled “Selection.select_items(..)”Selection.select_items(items : List, plural : Bool) : NoneSelect the given items, and if plural is true, the items are added to the existing selection. If not, the selection is cleared and only the items are selected afterward. Emits
SELECTwith a list containing the items
Selection.toggle(.)
Section titled “Selection.toggle(.)”Selection.toggle(item : Any) : unknownno docs found
Selection.notify(.)
Section titled “Selection.notify(.)”Selection.notify() : Nonesend a change event for the selection
Selection.set_invalid_handler(.)
Section titled “Selection.set_invalid_handler(.)”Selection.set_invalid_handler(fn : Fn) : unknownno docs found