vue-intergrall-plugins 1.1.52 → 1.1.54
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/dist/vue-intergrall-plugins.css +1 -1
- package/dist/vue-intergrall-plugins.esm.js +137 -52
- package/dist/vue-intergrall-plugins.min.js +1 -1
- package/dist/vue-intergrall-plugins.ssr.js +126 -53
- package/package.json +58 -58
- package/src/lib-components/Chat/Picker.vue +516 -405
- package/src/lib-components/Email/EmailItem.vue +740 -740
- package/src/lib-components/Messages/CardMessages.vue +5 -5
- package/src/lib-components/Messages/ChatMessages.vue +1 -1
|
@@ -546,6 +546,11 @@ export default {
|
|
|
546
546
|
align-items: center;
|
|
547
547
|
}
|
|
548
548
|
|
|
549
|
+
.anexo-item svg {
|
|
550
|
+
font-size: 30px;
|
|
551
|
+
z-index: 1;
|
|
552
|
+
}
|
|
553
|
+
|
|
549
554
|
.anexo-item {
|
|
550
555
|
width: 100%;
|
|
551
556
|
height: 100%;
|
|
@@ -589,11 +594,6 @@ export default {
|
|
|
589
594
|
color: inherit;
|
|
590
595
|
}
|
|
591
596
|
|
|
592
|
-
svg {
|
|
593
|
-
font-size: 30px;
|
|
594
|
-
z-index: 1;
|
|
595
|
-
}
|
|
596
|
-
|
|
597
597
|
.anexo-icone.pdf {
|
|
598
598
|
position: relative;
|
|
599
599
|
}
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
<div class="emoji-message-container" v-if="isEmojisOpen" v-clickaway="closeEmojis">
|
|
138
138
|
<fa-icon :icon="['fas', 'times-circle']" class="sc-icone-fechar sc-icone-fechar--externo"
|
|
139
139
|
@click="closeEmojis" />
|
|
140
|
-
<Picker @insert-emoji="addReaction" />
|
|
140
|
+
<Picker @insert-emoji="addReaction" :recentViewOnly="true" :hasLoading="false" />
|
|
141
141
|
</div>
|
|
142
142
|
<transition name="fade" mode="out-in" v-if="isMenuOpen">
|
|
143
143
|
<ul class="menu-flutuante" :class="origem" v-clickaway="closeMenu">
|