vue-intergrall-plugins 1.0.15 → 1.0.17
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 +703 -703
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +636 -636
- package/package.json +1 -1
- package/src/lib-components/Chat/AudioSpeedControl.vue +3 -3
- package/src/lib-components/Chat/BtnFiles.vue +2 -2
- package/src/lib-components/Chat/TextFooter.vue +8 -7
- package/src/lib-components/Messages/AnexoMensagem.vue +2 -1
package/package.json
CHANGED
|
@@ -35,12 +35,12 @@ export default {
|
|
|
35
35
|
display: flex;
|
|
36
36
|
align-items: center;
|
|
37
37
|
cursor: pointer;
|
|
38
|
-
margin
|
|
38
|
+
margin: 0 5px;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
.speed-circle {
|
|
42
|
-
width:
|
|
43
|
-
height:
|
|
42
|
+
width: 35px;
|
|
43
|
+
height: 35px;
|
|
44
44
|
background-color: #f1f3f4; /* Cor do círculo */
|
|
45
45
|
border: solid black 1px;
|
|
46
46
|
color: black;
|
|
@@ -189,8 +189,8 @@
|
|
|
189
189
|
|
|
190
190
|
<script>
|
|
191
191
|
import * as VueClickAway from "vue-clickaway";
|
|
192
|
-
import SingleFilePreview from "./SingleFilePreview";
|
|
193
192
|
import MultipleFilePreview from "./MultipleFilePreview";
|
|
193
|
+
import SingleFilePreview from "./SingleFilePreview";
|
|
194
194
|
|
|
195
195
|
export default {
|
|
196
196
|
components: { SingleFilePreview, MultipleFilePreview },
|
|
@@ -247,7 +247,7 @@ export default {
|
|
|
247
247
|
if (this.fileSettings.docsExtensions && this.fileSettings.imagesExtensions) {
|
|
248
248
|
str = `${this.fileSettings.docsExtensions
|
|
249
249
|
.split("|")
|
|
250
|
-
.join(",")}
|
|
250
|
+
.join(",")},${this.fileSettings.imagesExtensions.split("|").join(",")}`;
|
|
251
251
|
} else if (this.fileSettings.docsExtensions) {
|
|
252
252
|
str = this.fileSettings.docsExtensions.split("|").join(",");
|
|
253
253
|
} else if (this.fileSettings.imagesExtensions) {
|
|
@@ -151,20 +151,20 @@
|
|
|
151
151
|
</template>
|
|
152
152
|
|
|
153
153
|
<script>
|
|
154
|
-
import { setResizeListeners, resetTargets } from "../../services/autoResize";
|
|
155
154
|
import * as VueClickAway from "vue-clickaway";
|
|
155
|
+
import { resetTargets, setResizeListeners } from "../../services/autoResize";
|
|
156
156
|
import { returnMessageWithHexa } from "../../services/textFormatting";
|
|
157
157
|
|
|
158
|
-
import BtnEmojis from "./BtnEmojis";
|
|
159
158
|
import Loader from "../Loader/Loader";
|
|
160
|
-
import
|
|
161
|
-
import
|
|
162
|
-
import BtnFiles from "./BtnFiles";
|
|
159
|
+
import BtnDownloadAllFiles from "./BtnDownloadAllFiles";
|
|
160
|
+
import BtnEmojis from "./BtnEmojis";
|
|
163
161
|
import BtnExpand from "./BtnExpand";
|
|
162
|
+
import BtnFiles from "./BtnFiles";
|
|
163
|
+
import BtnMic from "./BtnMic";
|
|
164
|
+
import BtnScreenShare from "./BtnScreenShare";
|
|
164
165
|
import BtnStandardMessages from "./BtnStandardMessages";
|
|
166
|
+
import RemainingCharacters from "./RemainingCharacters";
|
|
165
167
|
import StandardMessages from "./StandardMessages";
|
|
166
|
-
import BtnScreenShare from "./BtnScreenShare";
|
|
167
|
-
import BtnDownloadAllFiles from "./BtnDownloadAllFiles";
|
|
168
168
|
|
|
169
169
|
export default {
|
|
170
170
|
components: {
|
|
@@ -936,6 +936,7 @@ export default {
|
|
|
936
936
|
top: -205px;
|
|
937
937
|
width: 100%;
|
|
938
938
|
height: 200px;
|
|
939
|
+
min-width: 200px;
|
|
939
940
|
}
|
|
940
941
|
.text-footer-container .text-footer-preview-container.isImg .text-footer-image-preview {
|
|
941
942
|
height: 170px;
|
|
@@ -132,8 +132,8 @@
|
|
|
132
132
|
|
|
133
133
|
<script>
|
|
134
134
|
import { fileHandler } from "../../mixins/fileHandler";
|
|
135
|
-
import Loader from "../Loader/Loader";
|
|
136
135
|
import AudioSpeedControl from "../Chat/AudioSpeedControl.vue";
|
|
136
|
+
import Loader from "../Loader/Loader";
|
|
137
137
|
|
|
138
138
|
export default {
|
|
139
139
|
mixins: [fileHandler],
|
|
@@ -350,6 +350,7 @@ export default {
|
|
|
350
350
|
}
|
|
351
351
|
.audioStyle {
|
|
352
352
|
width: 370px;
|
|
353
|
+
min-width: calc(100% - 45px);
|
|
353
354
|
}
|
|
354
355
|
|
|
355
356
|
.divAudioPai {
|