lexical 0.32.1-nightly.20250604.0 → 0.32.1
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/Lexical.dev.js +2 -2
- package/Lexical.dev.mjs +2 -2
- package/Lexical.prod.js +1 -1
- package/Lexical.prod.mjs +1 -1
- package/package.json +1 -1
package/Lexical.dev.js
CHANGED
|
@@ -2715,7 +2715,7 @@ function onKeyDown(event, editor) {
|
|
|
2715
2715
|
event.preventDefault();
|
|
2716
2716
|
dispatchCommand(editor, SELECT_ALL_COMMAND, event);
|
|
2717
2717
|
}
|
|
2718
|
-
} else if (
|
|
2718
|
+
} else if (isSelectAll(event)) {
|
|
2719
2719
|
event.preventDefault();
|
|
2720
2720
|
dispatchCommand(editor, SELECT_ALL_COMMAND, event);
|
|
2721
2721
|
}
|
|
@@ -10461,7 +10461,7 @@ class LexicalEditor {
|
|
|
10461
10461
|
};
|
|
10462
10462
|
}
|
|
10463
10463
|
}
|
|
10464
|
-
LexicalEditor.version = "0.32.1
|
|
10464
|
+
LexicalEditor.version = "0.32.1+dev.cjs";
|
|
10465
10465
|
|
|
10466
10466
|
let keyCounter = 1;
|
|
10467
10467
|
function resetRandomKey() {
|
package/Lexical.dev.mjs
CHANGED
|
@@ -2713,7 +2713,7 @@ function onKeyDown(event, editor) {
|
|
|
2713
2713
|
event.preventDefault();
|
|
2714
2714
|
dispatchCommand(editor, SELECT_ALL_COMMAND, event);
|
|
2715
2715
|
}
|
|
2716
|
-
} else if (
|
|
2716
|
+
} else if (isSelectAll(event)) {
|
|
2717
2717
|
event.preventDefault();
|
|
2718
2718
|
dispatchCommand(editor, SELECT_ALL_COMMAND, event);
|
|
2719
2719
|
}
|
|
@@ -10459,7 +10459,7 @@ class LexicalEditor {
|
|
|
10459
10459
|
};
|
|
10460
10460
|
}
|
|
10461
10461
|
}
|
|
10462
|
-
LexicalEditor.version = "0.32.1
|
|
10462
|
+
LexicalEditor.version = "0.32.1+dev.esm";
|
|
10463
10463
|
|
|
10464
10464
|
let keyCounter = 1;
|
|
10465
10465
|
function resetRandomKey() {
|