@lvce-editor/constants 1.32.0 → 1.34.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
|
@@ -377,6 +377,8 @@ declare const Key = "event.key";
|
|
|
377
377
|
declare const ShiftKey = "event.shiftKey";
|
|
378
378
|
declare const TargetHref = "event.target.href";
|
|
379
379
|
declare const TargetName = "event.target.name";
|
|
380
|
+
declare const TargetSelectionEnd = "event.target.selectionEnd";
|
|
381
|
+
declare const TargetSelectionStart = "event.target.selectionStart";
|
|
380
382
|
declare const TargetSrc = "event.target.src";
|
|
381
383
|
declare const TargetValue = "event.target.value";
|
|
382
384
|
declare const None$1 = 0;
|
|
@@ -645,6 +647,7 @@ declare const KeyBindingsTable = 26;
|
|
|
645
647
|
declare const E2eTests = 27;
|
|
646
648
|
declare const ExtensionDetailIconContextMenu = 4091;
|
|
647
649
|
declare const TitleBarContextMenu = 90;
|
|
650
|
+
declare const InputContextMenu = 91;
|
|
648
651
|
declare const Separator$1 = 1;
|
|
649
652
|
declare const None$2 = 0;
|
|
650
653
|
declare const SubMenu = 4;
|
|
@@ -892,7 +895,7 @@ declare namespace ErrorCodes {
|
|
|
892
895
|
export { ENOENT, EXDEV };
|
|
893
896
|
}
|
|
894
897
|
declare namespace EventExpression {
|
|
895
|
-
export { AltKey, Button$4 as Button, ClientX, ClientY, CtrlKey, DataTransferFiles, DataTransferFiles2, DefaultPrevented, DeltaMode, DeltaY, EventTargetClassName, IsTrusted, Key, ShiftKey, TargetHref, TargetName, TargetSrc, TargetValue };
|
|
898
|
+
export { AltKey, Button$4 as Button, ClientX, ClientY, CtrlKey, DataTransferFiles, DataTransferFiles2, DefaultPrevented, DeltaMode, DeltaY, EventTargetClassName, IsTrusted, Key, ShiftKey, TargetHref, TargetName, TargetSelectionEnd, TargetSelectionStart, TargetSrc, TargetValue };
|
|
896
899
|
}
|
|
897
900
|
declare namespace ExplorerEditingType {
|
|
898
901
|
export { CreateFile, CreateFolder, None$1 as None, Rename$1 as Rename };
|
|
@@ -931,7 +934,7 @@ declare namespace KeyModifier {
|
|
|
931
934
|
export { Alt$1 as Alt, CtrlCmd, Shift, WinCtrl };
|
|
932
935
|
}
|
|
933
936
|
declare namespace MenuEntryId {
|
|
934
|
-
export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailIconContextMenu, ExtensionDetailReadme, File$1 as File, Go, Help, KeyBindingsTable, Main, ManageExtension, OpenRecent, Problems$1 as Problems, ProblemsFilter, Run, Search$2 as Search, Selection, Settings, SimpleBrowser, SourceControl, Tab$4 as Tab, Terminal, TitleBar, TitleBarContextMenu, View };
|
|
937
|
+
export { ActivityBar, ActivityBarAdditionalViews, E2eTests, Edit, Editor, EditorImage, Explorer, ExtensionDetailIconContextMenu, ExtensionDetailReadme, File$1 as File, Go, Help, InputContextMenu, KeyBindingsTable, Main, ManageExtension, OpenRecent, Problems$1 as Problems, ProblemsFilter, Run, Search$2 as Search, Selection, Settings, SimpleBrowser, SourceControl, Tab$4 as Tab, Terminal, TitleBar, TitleBarContextMenu, View };
|
|
935
938
|
}
|
|
936
939
|
declare namespace MenuItemFlags {
|
|
937
940
|
export { Checked, Disabled, Ignore, None$2 as None, RestoreFocus, Separator$1 as Separator, SubMenu, Unchecked };
|
|
@@ -14,5 +14,7 @@ export const Key = 'event.key';
|
|
|
14
14
|
export const ShiftKey = 'event.shiftKey';
|
|
15
15
|
export const TargetHref = 'event.target.href';
|
|
16
16
|
export const TargetName = 'event.target.name';
|
|
17
|
+
export const TargetSelectionEnd = 'event.target.selectionEnd';
|
|
18
|
+
export const TargetSelectionStart = 'event.target.selectionStart';
|
|
17
19
|
export const TargetSrc = 'event.target.src';
|
|
18
20
|
export const TargetValue = 'event.target.value';
|