@lvce-editor/constants 1.22.0 → 1.24.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
|
@@ -368,6 +368,11 @@ declare const None$1 = 0;
|
|
|
368
368
|
declare const CreateFile = 1;
|
|
369
369
|
declare const CreateFolder = 2;
|
|
370
370
|
declare const Rename$1 = 3;
|
|
371
|
+
declare const CreateFolder$1 = 1;
|
|
372
|
+
declare const CreateFile$1 = 2;
|
|
373
|
+
declare const Copy = 3;
|
|
374
|
+
declare const Rename$2 = 4;
|
|
375
|
+
declare const Remove = 5;
|
|
371
376
|
declare const getKeyCode: (key: string) => number;
|
|
372
377
|
declare const getKeyCodeString: (keyCode: number) => string;
|
|
373
378
|
declare const getWhenExpressionText: (whenExpression: number) => string;
|
|
@@ -805,7 +810,7 @@ declare const Completion = 3;
|
|
|
805
810
|
declare const CompletionDetail = 4;
|
|
806
811
|
declare const Find = 5;
|
|
807
812
|
declare const Hover = 6;
|
|
808
|
-
declare const Rename$
|
|
813
|
+
declare const Rename$3 = 7;
|
|
809
814
|
declare const SourceAction = 8;
|
|
810
815
|
declare const EditorHover = "EditorHover";
|
|
811
816
|
declare const EditorCodeGenerator = "EditorCodeGenerator";
|
|
@@ -846,6 +851,9 @@ declare namespace EventExpression {
|
|
|
846
851
|
declare namespace ExplorerEditingType {
|
|
847
852
|
export { CreateFile, CreateFolder, None$1 as None, Rename$1 as Rename };
|
|
848
853
|
}
|
|
854
|
+
declare namespace FileOperationType {
|
|
855
|
+
export { Copy, CreateFile$1 as CreateFile, CreateFolder$1 as CreateFolder, Remove, Rename$2 as Rename };
|
|
856
|
+
}
|
|
849
857
|
declare namespace GetKeyCode {
|
|
850
858
|
export { getKeyCode };
|
|
851
859
|
}
|
|
@@ -907,7 +915,7 @@ declare namespace WhenExpression {
|
|
|
907
915
|
export { BrowserChromium, BrowserElectron, BrowserFirefox, Empty$1 as Empty, FocusAbout, FocusActivityBar, FocusColorPicker, FocusConfirm, FocusDebugConsoleInput, FocusDebugInput, FocusDebugScope, FocusDialog, FocusEditor, FocusEditorCodeGenerator, FocusEditorCompletions, FocusEditorHover, FocusEditorImage, FocusEditorRename, FocusEditorText, FocusExplorer, FocusExplorerEditBox, FocusExtensions, FocusFindWidget, FocusFindWidgetCloseButton, FocusFindWidgetMatchCase, FocusFindWidgetNextMatchButton, FocusFindWidgetPreviousMatchButton, FocusFindWidgetRegex, FocusFindWidgetReplace, FocusFindWidgetReplaceAllButton, FocusFindWidgetReplaceButton, FocusFindWidgetToggleReplace, FocusIgnoreFiles, FocusKeyBindingsTable, FocusKeyBindingsWhenExpression, FocusLocationList, FocusMenu, FocusOutput, FocusProblems, FocusQuickPickInput, FocusSearch, FocusSearchExcludeInput, FocusSearchIncludeInput, FocusSearchInput, FocusSearchMatchCase, FocusSearchOpenEditors, FocusSearchPreserveCase, FocusSearchRegex, FocusSearchReplaceAll, FocusSearchReplaceInput, FocusSearchResults, FocusSearchWholeWord, FocusSimpleBrowser, FocusSimpleBrowserInput, FocusSourceActions, FocusSourceControlInput, FocusTerminal, FocusTitleBarMenuBar, FocusToggleDetails, FocusToggleReplace, FocusViewletList };
|
|
908
916
|
}
|
|
909
917
|
declare namespace WidgetId {
|
|
910
|
-
export { CodeGenerator, ColorPicker$1 as ColorPicker, Completion, CompletionDetail, Find, Hover, Rename$
|
|
918
|
+
export { CodeGenerator, ColorPicker$1 as ColorPicker, Completion, CompletionDetail, Find, Hover, Rename$3 as Rename, SourceAction };
|
|
911
919
|
}
|
|
912
920
|
|
|
913
921
|
export {
|
|
@@ -920,6 +928,7 @@ export {
|
|
|
920
928
|
ErrorCodes,
|
|
921
929
|
EventExpression,
|
|
922
930
|
ExplorerEditingType,
|
|
931
|
+
FileOperationType,
|
|
923
932
|
GetKeyCode,
|
|
924
933
|
GetKeyCodeString,
|
|
925
934
|
GetWhenExpressionText,
|
package/dist/parts/Key/Key.js
CHANGED
package/dist/parts/Main/Main.js
CHANGED
|
@@ -7,6 +7,7 @@ export * as ElementTags from "../ElementTags/ElementTags.js";
|
|
|
7
7
|
export * as ErrorCodes from "../ErrorCodes/ErrorCodes.js";
|
|
8
8
|
export * as EventExpression from "../EventExpression/EventExpression.js";
|
|
9
9
|
export * as ExplorerEditingType from "../ExplorerEditingType/ExplorerEditingType.js";
|
|
10
|
+
export * as FileOperationType from "../FileOperationType/FileOperationType.js";
|
|
10
11
|
export * as GetKeyCode from "../GetKeyCode/GetKeyCode.js";
|
|
11
12
|
export * as GetKeyCodeString from "../GetKeyCodeString/GetKeyCodeString.js";
|
|
12
13
|
export * as GetWhenExpressionText from "../GetWhenExpressionText/GetWhenExpressionText.js";
|