@lvce-editor/constants 1.9.0 → 1.11.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
|
@@ -321,6 +321,17 @@ declare const CtrlKey = "event.ctrlKey";
|
|
|
321
321
|
declare const Key = "event.key";
|
|
322
322
|
declare const getKeyCodeString: (keyCode: number) => string;
|
|
323
323
|
declare const getWhenExpressionText: (whenExpression: number) => string;
|
|
324
|
+
declare const Blank = "Blank";
|
|
325
|
+
declare const Check = "Check";
|
|
326
|
+
declare const ClearAll = "ClearAll";
|
|
327
|
+
declare const CollapseAll = "CollapseAll";
|
|
328
|
+
declare const DebugAlt2 = "DebugAlt2";
|
|
329
|
+
declare const Filter$1 = "Filter";
|
|
330
|
+
declare const ListFlat = "ListFlat";
|
|
331
|
+
declare const ListTree = "ListTree";
|
|
332
|
+
declare const NewFile = "NewFile";
|
|
333
|
+
declare const NewFolder = "NewFolder";
|
|
334
|
+
declare const Refresh = "Refresh";
|
|
324
335
|
declare const InsertText = "insertText";
|
|
325
336
|
declare const DeleteContentBackward = "deleteContentBackward";
|
|
326
337
|
declare const DeleteContentForward = "deleteContentForward";
|
|
@@ -329,6 +340,8 @@ declare const DeleteWordBackward = "deleteWordBackward";
|
|
|
329
340
|
declare const InsertLineBreak = "insertLineBreak";
|
|
330
341
|
declare const InsertCompositionText = "insertCompositionText";
|
|
331
342
|
declare const InsertFromPaste = "insertFromPaste";
|
|
343
|
+
declare const User = 1;
|
|
344
|
+
declare const Script = 1;
|
|
332
345
|
declare const Unknown = 0;
|
|
333
346
|
declare const Backspace = 1;
|
|
334
347
|
declare const Tab$1 = 2;
|
|
@@ -724,9 +737,15 @@ declare namespace GetKeyCodeString {
|
|
|
724
737
|
declare namespace GetWhenExpressionText {
|
|
725
738
|
export { getWhenExpressionText };
|
|
726
739
|
}
|
|
740
|
+
declare namespace Icons {
|
|
741
|
+
export { Blank, Check, ClearAll, CollapseAll, DebugAlt2, Filter$1 as Filter, ListFlat, ListTree, NewFile, NewFolder, Refresh };
|
|
742
|
+
}
|
|
727
743
|
declare namespace InputEventType {
|
|
728
744
|
export { DeleteContentBackward, DeleteContentForward, DeleteWordBackward, DeleteWordForward, InsertCompositionText, InsertFromPaste, InsertLineBreak, InsertText };
|
|
729
745
|
}
|
|
746
|
+
declare namespace InputSource {
|
|
747
|
+
export { Script, User };
|
|
748
|
+
}
|
|
730
749
|
declare namespace KeyCode {
|
|
731
750
|
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
751
|
}
|
|
@@ -767,7 +786,9 @@ export {
|
|
|
767
786
|
EventExpression,
|
|
768
787
|
GetKeyCodeString,
|
|
769
788
|
GetWhenExpressionText,
|
|
789
|
+
Icons,
|
|
770
790
|
InputEventType,
|
|
791
|
+
InputSource,
|
|
771
792
|
KeyCode,
|
|
772
793
|
KeyCodeString,
|
|
773
794
|
KeyModifier,
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const Blank = 'Blank';
|
|
2
|
+
export const Check = 'Check';
|
|
3
|
+
export const ClearAll = 'ClearAll';
|
|
4
|
+
export const CollapseAll = 'CollapseAll';
|
|
5
|
+
export const DebugAlt2 = 'DebugAlt2';
|
|
6
|
+
export const Filter = 'Filter';
|
|
7
|
+
export const ListFlat = 'ListFlat';
|
|
8
|
+
export const ListTree = 'ListTree';
|
|
9
|
+
export const NewFile = 'NewFile';
|
|
10
|
+
export const NewFolder = 'NewFolder';
|
|
11
|
+
export const Refresh = 'Refresh';
|
package/dist/parts/Main/Main.js
CHANGED
|
@@ -6,7 +6,9 @@ export * as ErrorCodes from "../ErrorCodes/ErrorCodes.js";
|
|
|
6
6
|
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
|
+
export * as Icons from "../Icons/Icons.js";
|
|
9
10
|
export * as InputEventType from "../InputEventType/InputEventType.js";
|
|
11
|
+
export * as InputSource from "../InputSource/InputSource.js";
|
|
10
12
|
export * as KeyCode from "../KeyCode/KeyCode.js";
|
|
11
13
|
export * as KeyCodeString from "../KeyCodeString/KeyCodeString.js";
|
|
12
14
|
export * as KeyModifier from "../KeyModifier/KeyModifier.js";
|