@lvce-editor/constants 1.10.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 +15 -0
- package/dist/parts/Icons/Icons.js +11 -0
- package/dist/parts/Main/Main.js +1 -0
- package/package.json +1 -1
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";
|
|
@@ -726,6 +737,9 @@ declare namespace GetKeyCodeString {
|
|
|
726
737
|
declare namespace GetWhenExpressionText {
|
|
727
738
|
export { getWhenExpressionText };
|
|
728
739
|
}
|
|
740
|
+
declare namespace Icons {
|
|
741
|
+
export { Blank, Check, ClearAll, CollapseAll, DebugAlt2, Filter$1 as Filter, ListFlat, ListTree, NewFile, NewFolder, Refresh };
|
|
742
|
+
}
|
|
729
743
|
declare namespace InputEventType {
|
|
730
744
|
export { DeleteContentBackward, DeleteContentForward, DeleteWordBackward, DeleteWordForward, InsertCompositionText, InsertFromPaste, InsertLineBreak, InsertText };
|
|
731
745
|
}
|
|
@@ -772,6 +786,7 @@ export {
|
|
|
772
786
|
EventExpression,
|
|
773
787
|
GetKeyCodeString,
|
|
774
788
|
GetWhenExpressionText,
|
|
789
|
+
Icons,
|
|
775
790
|
InputEventType,
|
|
776
791
|
InputSource,
|
|
777
792
|
KeyCode,
|
|
@@ -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,6 +6,7 @@ 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";
|
|
10
11
|
export * as InputSource from "../InputSource/InputSource.js";
|
|
11
12
|
export * as KeyCode from "../KeyCode/KeyCode.js";
|