feat(editor): is nothing selected command (#10721)

### 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
This commit is contained in:
yoyoyohamapi
2025-03-14 02:35:21 +00:00
parent aa15b106d9
commit 04efca362e
2 changed files with 30 additions and 1 deletions
@@ -7,4 +7,5 @@ export {
getSelectionRectsCommand,
type SelectionRect,
} from './get-selection-rects';
export { getTextSelectionCommand } from './get-text-selection';
export { getTextSelectionCommand } from './get-text-selection.js';
export { isNothingSelectedCommand } from './is-nothing-selected.js';