@emailmaker/filemanager 0.10.67 → 0.10.68
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/components/FileContent/FileContentHeader.d.ts +2 -0
- package/components/FileContent/presentation/FileGridItem.d.ts +1 -0
- package/components/FileContent/renderers/FileGridView.d.ts +2 -0
- package/file-manager.esm.js +2 -2
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/package.json +1 -1
|
@@ -8,6 +8,8 @@ interface FileContentHeaderProps {
|
|
|
8
8
|
currentSortOption: SortOptionType;
|
|
9
9
|
isSmallScreen: boolean;
|
|
10
10
|
iconStrokeWidth?: number;
|
|
11
|
+
/** При false скрываем массовое выделение («Выделить всё»). */
|
|
12
|
+
multiSelectEnabled?: boolean;
|
|
11
13
|
features: Record<string, boolean | undefined>;
|
|
12
14
|
viewMode: 'grid' | 'table';
|
|
13
15
|
setViewMode: (value: 'grid' | 'table') => void;
|
|
@@ -21,6 +21,7 @@ interface FileGridItemProps {
|
|
|
21
21
|
onEdit: (file?: AppFile) => void;
|
|
22
22
|
onEditorOk?: (file: AppFile) => void;
|
|
23
23
|
getFileData: (fileId: string, silent?: boolean) => Promise<Blob | undefined>;
|
|
24
|
+
showSelectionCheckbox?: boolean;
|
|
24
25
|
}
|
|
25
26
|
/**
|
|
26
27
|
* Карточка grid-режима на основе общего view-model.
|
|
@@ -23,6 +23,8 @@ interface FileGridViewProps {
|
|
|
23
23
|
onEdit: (file?: AppFile) => void;
|
|
24
24
|
onEditorOk?: (file: AppFile) => void;
|
|
25
25
|
getFileData: (fileId: string, silent?: boolean) => Promise<Blob | undefined>;
|
|
26
|
+
/** При false скрываем чекбокс выбора (режим одного файла). */
|
|
27
|
+
showSelectionCheckbox?: boolean;
|
|
26
28
|
}
|
|
27
29
|
/**
|
|
28
30
|
* Изолированный renderer grid-режима.
|