vue-intergrall-plugins 0.0.202 → 0.0.205
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 +92 -56
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +96 -62
- package/package.json +1 -1
- package/src/lib-components/Chat/BtnFiles.vue +15 -5
- package/src/lib-components/Chat/MultipleFilePreview.vue +12 -5
- package/src/lib-components/Chat/SingleFilePreview.vue +23 -2
- package/src/lib-components/Chat/StandardMessages.vue +3 -15
- package/src/lib-components/Chat/TextFooter.vue +18 -6
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
<fa-icon :icon="['fas', 'paper-plane']" />
|
|
44
44
|
</span>
|
|
45
45
|
</div>
|
|
46
|
-
<div v-if="buttons.hasFiles || buttons.hasAudio || buttons.hasExpand" class="text-footer-actions" :class="{'outside-buttons' : cssStyle.outsideButtons && !audioFile}">
|
|
46
|
+
<div v-if="buttons.hasFiles || buttons.hasAudio || buttons.hasExpand || formattedMessageSettings.hasStandardMessages" class="text-footer-actions" :class="{'outside-buttons' : cssStyle.outsideButtons && !audioFile}">
|
|
47
47
|
<BtnMic
|
|
48
48
|
v-show="buttons.hasAudio && !audioFile"
|
|
49
49
|
:dictionary="dictionary"
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
:ref="`${textId}-mic`"
|
|
52
52
|
/>
|
|
53
53
|
<BtnStandardMessages
|
|
54
|
-
v-show="formattedMessageSettings.hasStandardMessages"
|
|
54
|
+
v-show="formattedMessageSettings.hasStandardMessages && !audioFile"
|
|
55
55
|
:dictionary="dictionary"
|
|
56
56
|
:ref="`${textId}-standard-messages`"
|
|
57
57
|
@toggle-standard-messages="toggleStandardMessages"
|
|
@@ -143,7 +143,7 @@ export default {
|
|
|
143
143
|
},
|
|
144
144
|
fileSettings: {
|
|
145
145
|
type: Object,
|
|
146
|
-
default: () => { return { docsExtensions: "", imagesExtensions: "", multiple: false } },
|
|
146
|
+
default: () => { return { docsExtensions: "", imagesExtensions: "", multiple: false, systemButton: false } },
|
|
147
147
|
required: false
|
|
148
148
|
},
|
|
149
149
|
textId: {
|
|
@@ -700,10 +700,22 @@ ul {
|
|
|
700
700
|
margin-right: unset;
|
|
701
701
|
margin-bottom: 5px; }
|
|
702
702
|
.text-footer-container .text-footer-files-container .files-btn.docs {
|
|
703
|
-
background-color: #7986cb;
|
|
704
|
-
margin-right: 5px; }
|
|
703
|
+
background-color: #7986cb; }
|
|
705
704
|
.text-footer-container .text-footer-files-container .files-btn.system {
|
|
706
|
-
background-color: #49a349;
|
|
705
|
+
background-color: #49a349;
|
|
706
|
+
margin-left: 5px }
|
|
707
|
+
.text-footer-container .text-footer-files-container .files-btn.both {
|
|
708
|
+
font-size: .95rem;
|
|
709
|
+
background-color: rgb(85, 85, 236);
|
|
710
|
+
flex-direction: column;
|
|
711
|
+
}
|
|
712
|
+
.text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(1) {
|
|
713
|
+
transform: translateX(5px)
|
|
714
|
+
}
|
|
715
|
+
.text-footer-container .text-footer-files-container .files-btn.both svg:nth-child(2) {
|
|
716
|
+
transform: translateX(-5px)
|
|
717
|
+
}
|
|
718
|
+
|
|
707
719
|
.text-footer-container .text-footer-preview-container {
|
|
708
720
|
cursor: default;
|
|
709
721
|
position: absolute;
|