@emailmaker/filemanager 0.10.31 → 0.10.33
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.css +20 -12
- package/file-manager.esm.js +9 -9
- package/file-manager.esm.js.map +1 -1
- package/file-manager.js +1 -1
- package/notification.d.ts +0 -2
- package/package.json +1 -1
- package/utils/fileValidation.d.ts +1 -0
package/file-manager.css
CHANGED
|
@@ -557,9 +557,6 @@
|
|
|
557
557
|
.em-filemanager .folderSelectionTree {
|
|
558
558
|
max-height: 300px;
|
|
559
559
|
overflow-y: auto;
|
|
560
|
-
border: 1px solid #d9d9d9;
|
|
561
|
-
border-radius: 6px;
|
|
562
|
-
padding: 8px;
|
|
563
560
|
}
|
|
564
561
|
|
|
565
562
|
/* Component-specific tree overrides */
|
|
@@ -613,7 +610,7 @@
|
|
|
613
610
|
|
|
614
611
|
.em-filemanager .foldersWrapper {
|
|
615
612
|
padding: 16px;
|
|
616
|
-
background-color:
|
|
613
|
+
background-color: var(--colorFillTertiary);
|
|
617
614
|
border-radius: 12px;
|
|
618
615
|
}
|
|
619
616
|
|
|
@@ -914,16 +911,30 @@
|
|
|
914
911
|
|
|
915
912
|
.uploadProgress__body {
|
|
916
913
|
padding: 12px;
|
|
917
|
-
|
|
914
|
+
display: flex;
|
|
915
|
+
flex-direction: column;
|
|
916
|
+
}
|
|
917
|
+
.uploadProgress__body .ant-list-item-meta {
|
|
918
|
+
display: flex;
|
|
919
|
+
flex: 1 1 auto;
|
|
920
|
+
min-width: 0;
|
|
918
921
|
}
|
|
919
922
|
.uploadProgress__body .ant-list-item-meta-content {
|
|
920
|
-
width:
|
|
923
|
+
width: auto;
|
|
924
|
+
min-width: 0;
|
|
921
925
|
}
|
|
922
926
|
.uploadProgress__body .ant-list-item-meta-title {
|
|
923
927
|
margin: 0;
|
|
924
928
|
}
|
|
925
929
|
.uploadProgress__body .ant-list-item-action {
|
|
926
|
-
margin-inline-start:
|
|
930
|
+
margin-inline-start: 16px;
|
|
931
|
+
flex-shrink: 0;
|
|
932
|
+
}
|
|
933
|
+
|
|
934
|
+
.em-filemanager .uploadProgress__list-wrapper {
|
|
935
|
+
max-height: 300px;
|
|
936
|
+
overflow-y: auto;
|
|
937
|
+
overflow-x: hidden;
|
|
927
938
|
}
|
|
928
939
|
|
|
929
940
|
.em-filemanager .uploadProgress__status-icon {
|
|
@@ -939,10 +950,6 @@
|
|
|
939
950
|
color: #52c41a;
|
|
940
951
|
}
|
|
941
952
|
|
|
942
|
-
.em-filemanager .uploadProgress__file-list {
|
|
943
|
-
max-height: 300px;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
953
|
.em-filemanager .uploadProgress__file-item {
|
|
947
954
|
padding: 8px 0 !important;
|
|
948
955
|
border-bottom: 1px solid var(--colorBorderSecondary);
|
|
@@ -969,6 +976,7 @@
|
|
|
969
976
|
.em-filemanager .uploadProgress__file-name {
|
|
970
977
|
font-size: 13px;
|
|
971
978
|
line-height: 1.2;
|
|
979
|
+
max-width: 100%;
|
|
972
980
|
}
|
|
973
981
|
|
|
974
982
|
.em-filemanager .uploadProgress__file-size {
|
|
@@ -2319,7 +2327,7 @@
|
|
|
2319
2327
|
position: relative;
|
|
2320
2328
|
}
|
|
2321
2329
|
.em-filemanager .ant-modal-root .ant-tree-treenode:hover {
|
|
2322
|
-
background-color: var(--
|
|
2330
|
+
background-color: var(--colorBgElevated);
|
|
2323
2331
|
}
|
|
2324
2332
|
.em-filemanager .ant-modal-root .folder-tools-field {
|
|
2325
2333
|
display: none;
|