@emailmaker/filemanager 0.10.31 → 0.10.32
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 +18 -7
- 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
|
@@ -914,16 +914,30 @@
|
|
|
914
914
|
|
|
915
915
|
.uploadProgress__body {
|
|
916
916
|
padding: 12px;
|
|
917
|
-
|
|
917
|
+
display: flex;
|
|
918
|
+
flex-direction: column;
|
|
919
|
+
}
|
|
920
|
+
.uploadProgress__body .ant-list-item-meta {
|
|
921
|
+
display: flex;
|
|
922
|
+
flex: 1 1 auto;
|
|
923
|
+
min-width: 0;
|
|
918
924
|
}
|
|
919
925
|
.uploadProgress__body .ant-list-item-meta-content {
|
|
920
|
-
width:
|
|
926
|
+
width: auto;
|
|
927
|
+
min-width: 0;
|
|
921
928
|
}
|
|
922
929
|
.uploadProgress__body .ant-list-item-meta-title {
|
|
923
930
|
margin: 0;
|
|
924
931
|
}
|
|
925
932
|
.uploadProgress__body .ant-list-item-action {
|
|
926
|
-
margin-inline-start:
|
|
933
|
+
margin-inline-start: 16px;
|
|
934
|
+
flex-shrink: 0;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
.em-filemanager .uploadProgress__list-wrapper {
|
|
938
|
+
max-height: 300px;
|
|
939
|
+
overflow-y: auto;
|
|
940
|
+
overflow-x: hidden;
|
|
927
941
|
}
|
|
928
942
|
|
|
929
943
|
.em-filemanager .uploadProgress__status-icon {
|
|
@@ -939,10 +953,6 @@
|
|
|
939
953
|
color: #52c41a;
|
|
940
954
|
}
|
|
941
955
|
|
|
942
|
-
.em-filemanager .uploadProgress__file-list {
|
|
943
|
-
max-height: 300px;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
956
|
.em-filemanager .uploadProgress__file-item {
|
|
947
957
|
padding: 8px 0 !important;
|
|
948
958
|
border-bottom: 1px solid var(--colorBorderSecondary);
|
|
@@ -969,6 +979,7 @@
|
|
|
969
979
|
.em-filemanager .uploadProgress__file-name {
|
|
970
980
|
font-size: 13px;
|
|
971
981
|
line-height: 1.2;
|
|
982
|
+
max-width: 100%;
|
|
972
983
|
}
|
|
973
984
|
|
|
974
985
|
.em-filemanager .uploadProgress__file-size {
|