@everchron/ec-shards 7.3.4 → 7.3.6
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everchron/ec-shards",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Everchron Shards UI Library",
|
|
6
6
|
"repository": "https://github.com/everchron/ec-shards.git",
|
|
@@ -25,9 +25,6 @@
|
|
|
25
25
|
"*.svg"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"emoji.json": "^14.0.0",
|
|
29
|
-
"emojibase-data": "7.0.1",
|
|
30
|
-
"js-search-array": "^1.0.1",
|
|
31
28
|
"v-click-outside": "^2.1.3"
|
|
32
29
|
},
|
|
33
30
|
"peerDependencies": {
|
|
@@ -22,10 +22,16 @@
|
|
|
22
22
|
|
|
23
23
|
<script>
|
|
24
24
|
import EcsEmoji from './emoji.vue';
|
|
25
|
-
import emoji from 'emoji.json';
|
|
26
|
-
import searchArray from 'js-search-array';
|
|
25
|
+
//import emoji from 'emoji.json';
|
|
26
|
+
//import searchArray from 'js-search-array';
|
|
27
27
|
//import data from 'emojibase-data/en/data.json';
|
|
28
28
|
|
|
29
|
+
// Needs to be added to dependencies in package.json
|
|
30
|
+
|
|
31
|
+
//"js-search-array": "^1.0.1",
|
|
32
|
+
//"emoji.json": "^14.0.0",
|
|
33
|
+
//"emojibase-data": "7.0.1",
|
|
34
|
+
|
|
29
35
|
export default {
|
|
30
36
|
components: { EcsEmoji },
|
|
31
37
|
|