lexical 0.30.1-nightly.20250416.0 → 0.30.1-nightly.20250417.0
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 +7 -1
- package/Lexical.dev.mjs +7 -1
- package/Lexical.prod.js +1 -1
- package/Lexical.prod.mjs +1 -1
- package/LexicalCommands.d.ts +6 -0
- package/package.json +1 -1
package/Lexical.dev.js
CHANGED
|
@@ -1918,6 +1918,12 @@ const CAN_REDO_COMMAND = createCommand('CAN_REDO_COMMAND');
|
|
|
1918
1918
|
const CAN_UNDO_COMMAND = createCommand('CAN_UNDO_COMMAND');
|
|
1919
1919
|
const FOCUS_COMMAND = createCommand('FOCUS_COMMAND');
|
|
1920
1920
|
const BLUR_COMMAND = createCommand('BLUR_COMMAND');
|
|
1921
|
+
/**
|
|
1922
|
+
* @deprecated in v0.31.0, use KEY_DOWN_COMMAND and check for modifiers
|
|
1923
|
+
* directly.
|
|
1924
|
+
*
|
|
1925
|
+
* Dispatched after any KeyboardEvent when modifiers are pressed
|
|
1926
|
+
*/
|
|
1921
1927
|
const KEY_MODIFIER_COMMAND = createCommand('KEY_MODIFIER_COMMAND');
|
|
1922
1928
|
|
|
1923
1929
|
const PASS_THROUGH_COMMAND = Object.freeze({});
|
|
@@ -10438,7 +10444,7 @@ class LexicalEditor {
|
|
|
10438
10444
|
};
|
|
10439
10445
|
}
|
|
10440
10446
|
}
|
|
10441
|
-
LexicalEditor.version = "0.30.1-nightly.
|
|
10447
|
+
LexicalEditor.version = "0.30.1-nightly.20250417.0+dev.cjs";
|
|
10442
10448
|
|
|
10443
10449
|
let keyCounter = 1;
|
|
10444
10450
|
function resetRandomKey() {
|
package/Lexical.dev.mjs
CHANGED
|
@@ -1916,6 +1916,12 @@ const CAN_REDO_COMMAND = createCommand('CAN_REDO_COMMAND');
|
|
|
1916
1916
|
const CAN_UNDO_COMMAND = createCommand('CAN_UNDO_COMMAND');
|
|
1917
1917
|
const FOCUS_COMMAND = createCommand('FOCUS_COMMAND');
|
|
1918
1918
|
const BLUR_COMMAND = createCommand('BLUR_COMMAND');
|
|
1919
|
+
/**
|
|
1920
|
+
* @deprecated in v0.31.0, use KEY_DOWN_COMMAND and check for modifiers
|
|
1921
|
+
* directly.
|
|
1922
|
+
*
|
|
1923
|
+
* Dispatched after any KeyboardEvent when modifiers are pressed
|
|
1924
|
+
*/
|
|
1919
1925
|
const KEY_MODIFIER_COMMAND = createCommand('KEY_MODIFIER_COMMAND');
|
|
1920
1926
|
|
|
1921
1927
|
const PASS_THROUGH_COMMAND = Object.freeze({});
|
|
@@ -10436,7 +10442,7 @@ class LexicalEditor {
|
|
|
10436
10442
|
};
|
|
10437
10443
|
}
|
|
10438
10444
|
}
|
|
10439
|
-
LexicalEditor.version = "0.30.1-nightly.
|
|
10445
|
+
LexicalEditor.version = "0.30.1-nightly.20250417.0+dev.esm";
|
|
10440
10446
|
|
|
10441
10447
|
let keyCounter = 1;
|
|
10442
10448
|
function resetRandomKey() {
|