im-ui-mobile 0.0.29 → 0.0.30

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 +2 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -13,7 +13,8 @@ const install = (app) => {
13
13
  })
14
14
  }
15
15
 
16
- export * from './utils/datetime.js'
16
+ import datetime from './utils/datetime.js'
17
+ export { datetime }
17
18
 
18
19
  export default {
19
20
  install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "A Vue3.0 + typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",