im-ui-mobile 0.0.31 → 0.0.32

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/index.js CHANGED
@@ -13,11 +13,33 @@ const install = (app) => {
13
13
  })
14
14
  }
15
15
 
16
- import datetime from './utils/datetime.js'
17
- export { datetime }
18
-
19
-
20
-
16
+ import eventBus from "./utils/eventBus.js";
17
+ import * as auth from "./utils/auth.js";
18
+ import datetime from "./utils/datetime.js";
19
+ import Emoji from "./utils/emoji.js";
20
+ import * as dom from "./utils/dom.js";
21
+ import messageType from "./utils/messageType.js";
22
+ import * as recorderApp from "./utils/recorderApp.js";
23
+ import * as recorderH5 from "./utils/recorderH5.js";
24
+ import Requester from "./utils/requester.js";
25
+ import * as url from "./utils/url.js";
26
+ import { useDynamicRefs } from "./utils/useDynamicRefs.js";
27
+ import webSocketManager from "./utils/websocket.js";
28
+
29
+
30
+ export {
31
+ eventBus,
32
+ datetime,
33
+ Emoji,
34
+ dom,
35
+ messageType,
36
+ recorderApp,
37
+ recorderH5,
38
+ Requester,
39
+ url,
40
+ useDynamicRefs,
41
+ webSocketManager
42
+ }
21
43
 
22
44
  export default {
23
45
  install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.0.31",
3
+ "version": "0.0.32",
4
4
  "description": "A Vue3.0 + typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/types/index.d.ts CHANGED
@@ -10,7 +10,7 @@ import * as dom from "./utils/dom";
10
10
  import messageType from "./utils/messageType";
11
11
  import * as recorderApp from "./utils/recorderApp";
12
12
  import * as recorderH5 from "./utils/recorderH5";
13
- import Requester from "./utils/request";
13
+ import Requester from "./utils/requester";
14
14
  import * as url from "./utils/url";
15
15
  import { useDynamicRefs } from "./utils/useDynamicRefs";
16
16
  import webSocketManager from "./utils/websocket";