@trafica/editor 1.0.21 → 1.0.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +815 -523
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +815 -523
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -665,6 +665,10 @@ declare function replaceAllMatches(matches: SearchMatch[], replacement: string):
|
|
|
665
665
|
*
|
|
666
666
|
* Tab → move cursor to next cell (adds row if on last cell)
|
|
667
667
|
* Shift+Tab → move cursor to previous cell (no-op on first cell)
|
|
668
|
+
* ArrowRight → move to next cell when at end of current cell
|
|
669
|
+
* ArrowLeft → move to previous cell when at start of current cell
|
|
670
|
+
* ArrowDown → move to cell below when on bottom line
|
|
671
|
+
* ArrowUp → move to cell above when on top line
|
|
668
672
|
*
|
|
669
673
|
* Enter inside a cell is handled by the default handleEnter command because
|
|
670
674
|
* findContentBlockPath correctly resolves to the paragraph inside the cell
|
package/dist/index.d.ts
CHANGED
|
@@ -665,6 +665,10 @@ declare function replaceAllMatches(matches: SearchMatch[], replacement: string):
|
|
|
665
665
|
*
|
|
666
666
|
* Tab → move cursor to next cell (adds row if on last cell)
|
|
667
667
|
* Shift+Tab → move cursor to previous cell (no-op on first cell)
|
|
668
|
+
* ArrowRight → move to next cell when at end of current cell
|
|
669
|
+
* ArrowLeft → move to previous cell when at start of current cell
|
|
670
|
+
* ArrowDown → move to cell below when on bottom line
|
|
671
|
+
* ArrowUp → move to cell above when on top line
|
|
668
672
|
*
|
|
669
673
|
* Enter inside a cell is handled by the default handleEnter command because
|
|
670
674
|
* findContentBlockPath correctly resolves to the paragraph inside the cell
|