im-ui-mobile 0.1.27 → 0.1.28

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.
@@ -91,7 +91,7 @@ import { ref, computed } from 'vue'
91
91
  import ImAvatar from '../im-avatar/im-avatar.vue'
92
92
  import ImReadReceipt from '../im-read-receipt/im-read-receipt.vue'
93
93
  import ImContextMenu from '../im-context-menu/im-context-menu.vue'
94
- import { MESSAGE_TYPE, MESSAGE_STATUS, datetime, dom, url, messageType, emoji } from '../../index'
94
+ import { MESSAGE_TYPE, MESSAGE_STATUS, dom, url, messageType, emoji } from '../../index'
95
95
 
96
96
  interface Props {
97
97
  avatar?: string;
@@ -114,7 +114,6 @@ interface Emits {
114
114
  }
115
115
 
116
116
  const $url = url
117
- const $datetime = datetime
118
117
  const props = defineProps<Props>();
119
118
  const emit = defineEmits<Emits>();
120
119
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.1.27",
3
+ "version": "0.1.28",
4
4
  "description": "A Vue3.0 + Typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -28,4 +28,9 @@ declare interface _DoubleTapView {
28
28
  } & DoubleTapViewExpose
29
29
  }
30
30
 
31
- export declare const DoubleTapView: _DoubleTapView
31
+ export declare const DoubleTapView: _DoubleTapView
32
+
33
+ export type {
34
+ DoubleTapViewProps,
35
+ DoubleTapViewExpose
36
+ }
package/types/index.d.ts CHANGED
@@ -84,6 +84,12 @@ import type {
84
84
  FormItemEmits
85
85
  } from './components/form-item'
86
86
 
87
+ import { DoubleTapView } from './components/double-tap-view'
88
+ import type {
89
+ DoubleTapViewProps,
90
+ DoubleTapViewExpose
91
+ } from './components/double-tap-view'
92
+
87
93
  declare module 'im-ui-mobile' {
88
94
  export function install(): void
89
95
 
@@ -150,7 +156,10 @@ declare module 'im-ui-mobile' {
150
156
  FormContext,
151
157
 
152
158
  FormItemProps,
153
- FormItemEmits
159
+ FormItemEmits,
160
+
161
+ DoubleTapViewProps,
162
+ DoubleTapViewExpose
154
163
  }
155
164
 
156
165
  // 导出函数/实例
@@ -187,7 +196,8 @@ declare module 'im-ui-mobile' {
187
196
  Upload,
188
197
  Select,
189
198
  Form,
190
- FormItem
199
+ FormItem,
200
+ DoubleTapView
191
201
  }
192
202
 
193
203