vue-intergrall-plugins 1.0.87 → 1.0.89
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/dist/vue-intergrall-plugins.esm.js +12 -16
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +17 -21
- package/package.json +1 -1
- package/src/lib-components/Chat/BtnFiles.vue +1 -1
- package/src/lib-components/Chat/BtnScreenShare.vue +5 -10
- package/src/lib-components/Chat/ExpandTextarea.vue +1 -1
- package/src/lib-components/Chat/MultipleFilePreview.vue +194 -169
- package/src/lib-components/Chat/TextFooter.vue +9 -9
|
@@ -720,6 +720,7 @@ export default {
|
|
|
720
720
|
top: -30px;
|
|
721
721
|
right: 35px;
|
|
722
722
|
background-color: #fafafa;
|
|
723
|
+
height: 38px;
|
|
723
724
|
}
|
|
724
725
|
|
|
725
726
|
.text-footer-container .text-footer-actions .text-footer-actions--btn {
|
|
@@ -729,7 +730,6 @@ export default {
|
|
|
729
730
|
color: #777;
|
|
730
731
|
border-radius: 50%;
|
|
731
732
|
transition: background 300ms;
|
|
732
|
-
padding: 10px;
|
|
733
733
|
font-size: 16px;
|
|
734
734
|
width: 36px;
|
|
735
735
|
height: 36px;
|
|
@@ -901,11 +901,11 @@ export default {
|
|
|
901
901
|
transform: translateX(-5px);
|
|
902
902
|
}
|
|
903
903
|
|
|
904
|
-
.text-footer-container .
|
|
904
|
+
.text-footer-container .old-footer-preview-container {
|
|
905
905
|
width: 100%;
|
|
906
906
|
cursor: default;
|
|
907
907
|
position: absolute;
|
|
908
|
-
|
|
908
|
+
right: 0;
|
|
909
909
|
background-color: #f1f1f1;
|
|
910
910
|
border: 2px solid #ccc;
|
|
911
911
|
border-bottom: unset;
|
|
@@ -913,25 +913,25 @@ export default {
|
|
|
913
913
|
border-top-right-radius: 2.5px;
|
|
914
914
|
}
|
|
915
915
|
|
|
916
|
-
.text-footer-container .
|
|
916
|
+
.text-footer-container .old-footer-preview-container.isDoc {
|
|
917
917
|
top: -50px;
|
|
918
918
|
width: 100%;
|
|
919
919
|
height: 45px;
|
|
920
920
|
}
|
|
921
921
|
|
|
922
|
-
.text-footer-container .
|
|
923
|
-
.text-footer-container .
|
|
922
|
+
.text-footer-container .old-footer-preview-container.isImg,
|
|
923
|
+
.text-footer-container .old-footer-preview-container.isMultiple {
|
|
924
924
|
top: -205px;
|
|
925
925
|
width: 100%;
|
|
926
926
|
height: 200px;
|
|
927
|
-
min-width:
|
|
927
|
+
min-width: 300px;
|
|
928
928
|
}
|
|
929
929
|
|
|
930
|
-
.text-footer-container .
|
|
930
|
+
.text-footer-container .old-footer-preview-container.isImg .text-footer-image-preview {
|
|
931
931
|
height: 170px;
|
|
932
932
|
}
|
|
933
933
|
|
|
934
|
-
.text-footer-container .
|
|
934
|
+
.text-footer-container .old-footer-preview-container.isError {
|
|
935
935
|
top: -80px;
|
|
936
936
|
width: 100%;
|
|
937
937
|
height: 75px;
|