mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-21 03:51:45 +08:00
04efca362e
### TL;DR Added a new command to check if nothing is currently selected in the editor. ### What changed? - Created new `isNothingSelectedCommand` to determine if there are no active selections
12 lines
486 B
TypeScript
12 lines
486 B
TypeScript
export { focusBlockEnd } from './focus-block-end';
|
|
export { focusBlockStart } from './focus-block-start';
|
|
export { getBlockSelectionsCommand } from './get-block-selections';
|
|
export { getImageSelectionsCommand } from './get-image-selections';
|
|
export {
|
|
getRangeRects,
|
|
getSelectionRectsCommand,
|
|
type SelectionRect,
|
|
} from './get-selection-rects';
|
|
export { getTextSelectionCommand } from './get-text-selection.js';
|
|
export { isNothingSelectedCommand } from './is-nothing-selected.js';
|