@emailmaker/filemanager 0.10.13 → 0.10.14
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/FileContent.d.ts +5 -1
- package/file-manager.css +4 -0
- package/file-manager.esm.js +10 -10
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/hooks/core/files/useFilesSelection.d.ts +5 -1
- package/hooks/core/types.d.ts +8 -0
- package/hooks/core/useFiles.d.ts +5 -1
- package/package.json +1 -1
|
@@ -22,7 +22,11 @@ interface FileContentProps {
|
|
|
22
22
|
handleItemClick: (record: AppFile) => void;
|
|
23
23
|
handleDeleteFile: (fileId: string) => void;
|
|
24
24
|
selectedFiles: Set<string>;
|
|
25
|
-
toggleFileSelection: (fileId: string
|
|
25
|
+
toggleFileSelection: (fileId: string, opts?: {
|
|
26
|
+
metaKey?: boolean;
|
|
27
|
+
ctrlKey?: boolean;
|
|
28
|
+
shiftKey?: boolean;
|
|
29
|
+
}) => void;
|
|
26
30
|
handleDroppedFiles: (droppedFiles: globalThis.File[]) => Promise<void>;
|
|
27
31
|
fileUpload: UseFileUploadReturn;
|
|
28
32
|
onClearSelection: () => void;
|
package/file-manager.css
CHANGED
|
@@ -1403,6 +1403,9 @@
|
|
|
1403
1403
|
.em-filemanager .file-manager__layout .ant-table-wrapper .ant-table {
|
|
1404
1404
|
border-radius: 0;
|
|
1405
1405
|
}
|
|
1406
|
+
.em-filemanager .file-manager__layout .ant-dropdown-menu-title-content {
|
|
1407
|
+
white-space: nowrap;
|
|
1408
|
+
}
|
|
1406
1409
|
.em-filemanager .file-manager__layout .file-manager-sider {
|
|
1407
1410
|
position: relative;
|
|
1408
1411
|
border-radius: calc(var(--borderRadiusXL) * 1px);
|
|
@@ -1530,6 +1533,7 @@
|
|
|
1530
1533
|
}
|
|
1531
1534
|
.em-filemanager .file-manager__layout .main-content .ant-table-wrapper .ant-table {
|
|
1532
1535
|
background: none;
|
|
1536
|
+
overflow: visible;
|
|
1533
1537
|
}
|
|
1534
1538
|
.em-filemanager .file-manager__layout .main-content .ant-table-wrapper .ant-table table {
|
|
1535
1539
|
border-spacing: 0 4px;
|