lexical 0.30.1-nightly.20250418.0 → 0.30.1-nightly.20250422.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 +3 -2
- package/Lexical.dev.mjs +3 -2
- package/Lexical.prod.js +1 -1
- package/Lexical.prod.mjs +1 -1
- package/LexicalCommands.d.ts +2 -1
- package/package.json +1 -1
package/Lexical.dev.js
CHANGED
|
@@ -1862,7 +1862,8 @@ const KEY_ARROW_UP_COMMAND = createCommand('KEY_ARROW_UP_COMMAND');
|
|
|
1862
1862
|
const KEY_ARROW_DOWN_COMMAND = createCommand('KEY_ARROW_DOWN_COMMAND');
|
|
1863
1863
|
/**
|
|
1864
1864
|
* Dispatched when the enter key is pressed, may also be called with a null
|
|
1865
|
-
* payload when the intent is to insert a newline.
|
|
1865
|
+
* payload when the intent is to insert a newline. The shift modifier key
|
|
1866
|
+
* must be down, any other modifier keys may also be down.
|
|
1866
1867
|
*/
|
|
1867
1868
|
const KEY_ENTER_COMMAND = createCommand('KEY_ENTER_COMMAND');
|
|
1868
1869
|
/**
|
|
@@ -10444,7 +10445,7 @@ class LexicalEditor {
|
|
|
10444
10445
|
};
|
|
10445
10446
|
}
|
|
10446
10447
|
}
|
|
10447
|
-
LexicalEditor.version = "0.30.1-nightly.
|
|
10448
|
+
LexicalEditor.version = "0.30.1-nightly.20250422.0+dev.cjs";
|
|
10448
10449
|
|
|
10449
10450
|
let keyCounter = 1;
|
|
10450
10451
|
function resetRandomKey() {
|
package/Lexical.dev.mjs
CHANGED
|
@@ -1860,7 +1860,8 @@ const KEY_ARROW_UP_COMMAND = createCommand('KEY_ARROW_UP_COMMAND');
|
|
|
1860
1860
|
const KEY_ARROW_DOWN_COMMAND = createCommand('KEY_ARROW_DOWN_COMMAND');
|
|
1861
1861
|
/**
|
|
1862
1862
|
* Dispatched when the enter key is pressed, may also be called with a null
|
|
1863
|
-
* payload when the intent is to insert a newline.
|
|
1863
|
+
* payload when the intent is to insert a newline. The shift modifier key
|
|
1864
|
+
* must be down, any other modifier keys may also be down.
|
|
1864
1865
|
*/
|
|
1865
1866
|
const KEY_ENTER_COMMAND = createCommand('KEY_ENTER_COMMAND');
|
|
1866
1867
|
/**
|
|
@@ -10442,7 +10443,7 @@ class LexicalEditor {
|
|
|
10442
10443
|
};
|
|
10443
10444
|
}
|
|
10444
10445
|
}
|
|
10445
|
-
LexicalEditor.version = "0.30.1-nightly.
|
|
10446
|
+
LexicalEditor.version = "0.30.1-nightly.20250422.0+dev.esm";
|
|
10446
10447
|
|
|
10447
10448
|
let keyCounter = 1;
|
|
10448
10449
|
function resetRandomKey() {
|