im-ui-mobile 0.0.68 → 0.0.69

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.
Files changed (2) hide show
  1. package/index.js +7 -10
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -39,18 +39,16 @@ for (const key in importFn) {
39
39
  }
40
40
 
41
41
  // 全局配置对象
42
- let globalConfig = {
43
- emojiUrl: '',
44
- };
42
+ let globalConfig = {};
45
43
 
46
44
  const install = (app, upuiParams = '') => {
47
- // 合并配置
48
- globalConfig = { ...globalConfig, ...options };
45
+ // // 合并配置
46
+ // globalConfig = { ...globalConfig, ...options };
49
47
 
50
- // 配置 Emoji
51
- if (globalConfig.emojiUrl) {
52
- emoji.setEmojiUrl(globalConfig.emojiUrl);
53
- }
48
+ // // 配置 Emoji
49
+ // if (globalConfig.emojiUrl) {
50
+ // emoji.setEmojiUrl(globalConfig.emojiUrl);
51
+ // }
54
52
 
55
53
  // 配置
56
54
  if (upuiParams) {
@@ -64,7 +62,6 @@ const install = (app, upuiParams = '') => {
64
62
  // 提供全局配置
65
63
  app.provide('im-config', options.config || {})
66
64
 
67
-
68
65
  // 安装插件
69
66
 
70
67
  // // 安装pinia插件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.0.68",
3
+ "version": "0.0.69",
4
4
  "description": "A Vue3.0 + typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",