@lvce-editor/constants 1.9.0 → 1.10.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/dist/index.d.ts
CHANGED
|
@@ -329,6 +329,8 @@ declare const DeleteWordBackward = "deleteWordBackward";
|
|
|
329
329
|
declare const InsertLineBreak = "insertLineBreak";
|
|
330
330
|
declare const InsertCompositionText = "insertCompositionText";
|
|
331
331
|
declare const InsertFromPaste = "insertFromPaste";
|
|
332
|
+
declare const User = 1;
|
|
333
|
+
declare const Script = 1;
|
|
332
334
|
declare const Unknown = 0;
|
|
333
335
|
declare const Backspace = 1;
|
|
334
336
|
declare const Tab$1 = 2;
|
|
@@ -727,6 +729,9 @@ declare namespace GetWhenExpressionText {
|
|
|
727
729
|
declare namespace InputEventType {
|
|
728
730
|
export { DeleteContentBackward, DeleteContentForward, DeleteWordBackward, DeleteWordForward, InsertCompositionText, InsertFromPaste, InsertLineBreak, InsertText };
|
|
729
731
|
}
|
|
732
|
+
declare namespace InputSource {
|
|
733
|
+
export { Script, User };
|
|
734
|
+
}
|
|
730
735
|
declare namespace KeyCode {
|
|
731
736
|
export { ABNT_C1, ABNT_C2, Alt, AudioVolumeDown, AudioVolumeMute, AudioVolumeUp, Backquote, Backslash, Backspace, BracketLeft, BracketRight, BrowserBack, BrowserForward, BrowserHome, BrowserSearch, CapsLock, Clear, Comma, ContextMenu, Ctrl, Delete, Digit0, Digit1, Digit2, Digit3, Digit4, Digit5, Digit6, Digit7, Digit8, Digit9, DownArrow, End, Enter, Equal, Escape, F1, F10, F11, F12, F13, F14, F15, F16, F17, F18, F19, F2, F20, F21, F22, F23, F24, F3, F4, F5, F6, F7, F8, F9, Home, Insert, IntlBackslash, KeyA, KeyB, KeyC, KeyD, KeyE, KeyF, KeyG, KeyH, KeyI, KeyInComposition, KeyJ, KeyK, KeyL, KeyM, KeyN, KeyO, KeyP, KeyQ, KeyR, KeyS, KeyT, KeyU, KeyV, KeyW, KeyX, KeyY, KeyZ, LaunchApp2, LaunchMail, LaunchMediaPlayer, LeftArrow, MaxValue, MediaPlayPause, MediaStop, MediaTrackNext, MediaTrackPrevious, Meta, Minus, NumLock, Numpad0, Numpad1, Numpad2, Numpad3, Numpad4, Numpad5, Numpad6, Numpad7, Numpad8, Numpad9, NumpadAdd, NumpadDecimal, NumpadDivide, NumpadMultiply, NumpadSeparator, NumpadSubtract, OEM_8, PageDown, PageUp, PauseBreak, Period, Plus, Quote, RightArrow, ScrollLock, SemiColon, Slash, Space, Star, Tab$1 as Tab, Unknown, UpArrow };
|
|
732
737
|
}
|
|
@@ -768,6 +773,7 @@ export {
|
|
|
768
773
|
GetKeyCodeString,
|
|
769
774
|
GetWhenExpressionText,
|
|
770
775
|
InputEventType,
|
|
776
|
+
InputSource,
|
|
771
777
|
KeyCode,
|
|
772
778
|
KeyCodeString,
|
|
773
779
|
KeyModifier,
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -7,6 +7,7 @@ export * as EventExpression from "../EventExpression/EventExpression.js";
|
|
|
7
7
|
export * as GetKeyCodeString from "../GetKeyCodeString/GetKeyCodeString.js";
|
|
8
8
|
export * as GetWhenExpressionText from "../GetWhenExpressionText/GetWhenExpressionText.js";
|
|
9
9
|
export * as InputEventType from "../InputEventType/InputEventType.js";
|
|
10
|
+
export * as InputSource from "../InputSource/InputSource.js";
|
|
10
11
|
export * as KeyCode from "../KeyCode/KeyCode.js";
|
|
11
12
|
export * as KeyCodeString from "../KeyCodeString/KeyCodeString.js";
|
|
12
13
|
export * as KeyModifier from "../KeyModifier/KeyModifier.js";
|