@weni/unnnic-system 3.1.3-alpha.2 → 3.1.4-alpha.2
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/CHANGELOG.md +12 -0
- package/dist/apple-64.png +0 -0
- package/dist/components/EmojiPicker/EmojiPicker.vue.d.ts.map +1 -1
- package/dist/{es-67d2c06d.mjs → es-95712fb0.mjs} +1 -1
- package/dist/{index-da3d1ae4.mjs → index-91fded8c.mjs} +7254 -14792
- package/dist/{pt-br-5ca1066d.mjs → pt-br-4557467c.mjs} +1 -1
- package/dist/style.css +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +41 -41
- package/package.json +1 -1
- package/public/apple-64.png +0 -0
- package/src/components/EmojiPicker/EmojiPicker.vue +11 -1
- package/src/components/EmojiPicker/__tests__/EmojiPicker.spec.js +1 -1
package/package.json
CHANGED
|
Binary file
|
|
@@ -26,7 +26,7 @@ import { computed, ref, onMounted, onUnmounted } from 'vue'
|
|
|
26
26
|
import { get } from 'lodash'
|
|
27
27
|
import i18n from '../../utils/plugins/i18n'
|
|
28
28
|
import { Picker, EmojiIndex } from 'emoji-mart-vue-fast/src'
|
|
29
|
-
import data from 'emoji-mart-vue-fast/data/
|
|
29
|
+
import data from 'emoji-mart-vue-fast/data/apple.json'
|
|
30
30
|
import 'emoji-mart-vue-fast/css/emoji-mart.css'
|
|
31
31
|
import UnnnicI18n from '../../mixins/i18n'
|
|
32
32
|
|
|
@@ -156,6 +156,16 @@ const onEmojiSelect = (emoji: Emoji) => {
|
|
|
156
156
|
:deep(.emoji-mart-anchor-bar) {
|
|
157
157
|
background-color: #00A49F; // $unnnic-color-weni-600
|
|
158
158
|
}
|
|
159
|
+
|
|
160
|
+
:deep(.emoji-type-image.emoji-set-apple) {
|
|
161
|
+
background-image: url('/apple-64.png') !important;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
:deep(.emoji-type-image.emoji-set-facebook),
|
|
165
|
+
:deep(.emoji-type-image.emoji-set-google),
|
|
166
|
+
:deep(.emoji-type-image.emoji-set-twitter) {
|
|
167
|
+
background-image: none !important;
|
|
168
|
+
}
|
|
159
169
|
}
|
|
160
170
|
|
|
161
171
|
@keyframes slideInUp {
|