orgnote-api 0.41.37 → 0.41.39
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/constants/i18n-keys.d.ts
CHANGED
|
@@ -273,6 +273,7 @@ export declare const I18N: {
|
|
|
273
273
|
NEW_FILE_PATH: DefaultCommands.NEW_FILE_PATH;
|
|
274
274
|
SHOW_MOBILE_FILE_SEARCH: DefaultCommands.SHOW_MOBILE_FILE_SEARCH;
|
|
275
275
|
HIDE_MOBILE_FILE_SEARCH: DefaultCommands.HIDE_MOBILE_FILE_SEARCH;
|
|
276
|
+
REVEAL_IN_FILE_MANAGER: DefaultCommands.REVEAL_IN_FILE_MANAGER;
|
|
276
277
|
OPEN_NOTE: DefaultCommands.OPEN_NOTE;
|
|
277
278
|
SHOW_FILE_INFO: DefaultCommands.SHOW_FILE_INFO;
|
|
278
279
|
OPEN_FILE_ACTIONS: DefaultCommands.OPEN_FILE_ACTIONS;
|
|
@@ -81,6 +81,7 @@ export declare enum DefaultCommands {
|
|
|
81
81
|
NEW_FILE_PATH = "new file path",
|
|
82
82
|
SHOW_MOBILE_FILE_SEARCH = "show mobile file search",
|
|
83
83
|
HIDE_MOBILE_FILE_SEARCH = "hide mobile file search",
|
|
84
|
+
REVEAL_IN_FILE_MANAGER = "reveal in file manager",
|
|
84
85
|
OPEN_NOTE = "open note",
|
|
85
86
|
SHOW_FILE_INFO = "show file info",
|
|
86
87
|
OPEN_FILE_ACTIONS = "open file actions",
|
|
@@ -96,6 +96,7 @@ export var DefaultCommands;
|
|
|
96
96
|
DefaultCommands["NEW_FILE_PATH"] = "new file path";
|
|
97
97
|
DefaultCommands["SHOW_MOBILE_FILE_SEARCH"] = "show mobile file search";
|
|
98
98
|
DefaultCommands["HIDE_MOBILE_FILE_SEARCH"] = "hide mobile file search";
|
|
99
|
+
DefaultCommands["REVEAL_IN_FILE_MANAGER"] = "reveal in file manager";
|
|
99
100
|
// Notes commands
|
|
100
101
|
DefaultCommands["OPEN_NOTE"] = "open note";
|
|
101
102
|
DefaultCommands["SHOW_FILE_INFO"] = "show file info";
|
package/models/widget.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export interface CommonEmbeddedWidget {
|
|
|
27
27
|
viewUpdater?: (orgNode: OrgNode, newVal: string) => ViewUpdateSchema;
|
|
28
28
|
ignoreEvent?: boolean;
|
|
29
29
|
showRangeOffset?: [number, number];
|
|
30
|
+
hideOnActiveLine?: boolean;
|
|
30
31
|
priority?: number;
|
|
31
32
|
}
|
|
32
33
|
export interface MultilineEmbeddedWidget extends CommonEmbeddedWidget {
|