@emailmaker/filemanager 0.10.6 → 0.10.8
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/file-manager.esm.js +9 -9
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/package.json +1 -1
- package/types.d.ts +5 -2
package/package.json
CHANGED
package/types.d.ts
CHANGED
|
@@ -289,9 +289,11 @@ export interface Config {
|
|
|
289
289
|
/** Включить кнопку/пункт редактирования файла */
|
|
290
290
|
enableEdit?: boolean;
|
|
291
291
|
/** Включить перемещение */
|
|
292
|
-
|
|
292
|
+
enableMoveItem?: boolean;
|
|
293
|
+
enableMoveFolder?: boolean;
|
|
293
294
|
/** Включить копирование */
|
|
294
|
-
|
|
295
|
+
enableCopyItem?: boolean;
|
|
296
|
+
enableCopyFolder?: boolean;
|
|
295
297
|
/** Включить удаление */
|
|
296
298
|
enableDelete?: boolean;
|
|
297
299
|
};
|
|
@@ -330,6 +332,7 @@ export interface Config {
|
|
|
330
332
|
/** Запоминать последнюю открытую папку между сессиями */
|
|
331
333
|
rememberLastFolder?: boolean;
|
|
332
334
|
multiSelect?: boolean;
|
|
335
|
+
defaultFolderName?: string;
|
|
333
336
|
}
|
|
334
337
|
export type LibraryMenuKey = typeof MY_FILES | typeof GIF | typeof STOCK_IMAGES | typeof AI | typeof EDITOR;
|
|
335
338
|
export interface GifItem {
|