@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.
- package/components/FileManagerApp/ActionsHeader.d.ts +2 -0
- package/file-manager.css +9 -1
- package/file-manager.d.ts +2 -0
- 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/shared/config.d.ts +1 -0
- package/types.d.ts +4 -0
- package/utils/cacheClear.d.ts +8 -0
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;
|