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 +27 -5
- package/package.json +1 -1
- package/types/index.d.ts +1 -1
package/index.js
CHANGED
|
@@ -13,11 +13,33 @@ const install = (app) => {
|
|
|
13
13
|
})
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
import
|
|
17
|
-
|
|
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
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/
|
|
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";
|