Skip to content
Open
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
992433b
fix:handle the missing link on the draggable image
Jynx2004 Jul 17, 2025
fcc767f
fix:Code Block formatting applies to unintended adjacent lines
Jynx2004 Jul 17, 2025
d59b925
revert_changes
Jynx2004 Jul 17, 2025
354ead8
table break changes
Jynx2004 Jul 18, 2025
baead42
utils changed to the main one
Jynx2004 Jul 18, 2025
e2caf5a
equation_changes
Jynx2004 Jul 23, 2025
9ceaaec
refactor: simplify applyTableHandlers by removing page-break handling…
Jynx2004 Jul 23, 2025
5ea306f
feat: add style handling for text nodes in $createNodesFromDOM
Jynx2004 Jul 24, 2025
3cbf85c
refactor: remove InlineParagraphNode and update EquationsPlugin to us…
Jynx2004 Jul 24, 2025
4785a28
fix: ensure style is applied to the first text node in $createNodesFr…
Jynx2004 Jul 25, 2025
67719f7
fix: prevent deletion when the previous element is a table in RangeSe…
Jynx2004 Dec 16, 2025
eabdd08
Refactor text node style handling logic
Jynx2004 Dec 16, 2025
5bff69c
fix: prevent deletion of paragraph before table in RangeSelection
Jynx2004 Dec 18, 2025
16711ef
Merge branch 'table_selection_issue' of https://github.com/Jynx2004/l…
Jynx2004 Dec 18, 2025
26b86a3
fix: handle insertion of nodes within links in $insertGeneratedNodes
Jynx2004 Feb 25, 2026
8dceaec
fix: remove unnecessary check for deletion prevention before table in…
Jynx2004 Feb 25, 2026
d2f806d
fix: update selection format style handling in onSelectionChange func…
Jynx2004 Feb 25, 2026
6e9f9ad
fix: simplify node insertion logic in $insertGeneratedNodes function
Jynx2004 Feb 25, 2026
05f317c
fix: remove unnecessary newline in $insertGeneratedNodes function
Jynx2004 Feb 25, 2026
c5e88cc
Merge branch 'main' into format_update
Jynx2004 Feb 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/lexical/src/LexicalEvents.ts
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ function onSelectionChange(
) {
$updateSelectionFormatStyleFromElementNode(selection, lastNode);
} else {
$updateSelectionFormatStyle(selection, 0, '');
$updateSelectionFormatStyle(selection, selection.format, '');
}
}
}
Expand Down