Sha256: 23c204326746e981e02d7f0a15ab6f8015f9035998cb3766c9ddbf8ea247aea2
Contents?: true
Size: 683 Bytes
Versions: 26
Compression:
Stored size: 683 Bytes
Contents
import { type EditableInputOrTextarea } from '../../utils'; export { getInputRange } from './getInputRange'; export { modifySelection } from './modifySelection'; export { moveSelection } from './moveSelection'; export { setSelectionPerMouseDown } from './setSelectionPerMouse'; export { modifySelectionPerMouseMove } from './modifySelectionPerMouse'; export { isAllSelected, selectAll } from './selectAll'; export { setSelectionRange } from './setSelectionRange'; export { setSelection } from './setSelection'; export { updateSelectionOnFocus } from './updateSelectionOnFocus'; export type SelectionRange = { node: EditableInputOrTextarea; start: number; end: number; };
Version data entries
26 entries across 26 versions & 1 rubygems