@emailmaker/filemanager 0.10.45 → 0.10.46

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.
@@ -3,6 +3,8 @@ interface ActionsHeaderProps {
3
3
  activeLibraryItem: string;
4
4
  selectedFolder: string;
5
5
  isTrashFolder?: boolean;
6
+ onRefresh?: () => void;
7
+ refreshDisabled?: boolean;
6
8
  }
7
9
  export declare const ActionsHeader: React.FC<ActionsHeaderProps>;
8
10
  export {};
package/file-manager.css CHANGED
@@ -1724,7 +1724,6 @@
1724
1724
  .em-filemanager .file-manager__layout .header-title-container {
1725
1725
  display: flex;
1726
1726
  align-items: center;
1727
- justify-content: space-between;
1728
1727
  min-width: 250px;
1729
1728
  margin-right: 24px;
1730
1729
  }
@@ -1737,6 +1736,15 @@
1737
1736
  overflow: hidden;
1738
1737
  text-overflow: ellipsis;
1739
1738
  }
1739
+ .em-filemanager .file-manager__layout .folder-refresh-button {
1740
+ padding: 0;
1741
+ min-width: 28px;
1742
+ width: 28px;
1743
+ height: 28px;
1744
+ display: inline-flex;
1745
+ align-items: center;
1746
+ justify-content: center;
1747
+ }
1740
1748
  .em-filemanager .file-manager__layout .selected-text {
1741
1749
  white-space: nowrap;
1742
1750
  margin-right: auto;
package/file-manager.d.ts CHANGED
@@ -24,6 +24,7 @@ export interface Options {
24
24
  deleteFile?: string;
25
25
  renameFile?: string;
26
26
  moveFile?: string;
27
+ clearCache?: string;
27
28
  };
28
29
  customIcons?: CustomIcons;
29
30
  dragDropIcon?: string;
@@ -54,6 +55,7 @@ export interface FileManagerAppProps {
54
55
  renameFile?: string;
55
56
  moveFile?: string;
56
57
  updateFile?: string;
58
+ clearCache?: string;
57
59
  };
58
60
  customIcons?: CustomIcons;
59
61
  dragDropIcon?: string;