im-ui-mobile 0.0.45 → 0.0.46

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.0.45",
3
+ "version": "0.0.46",
4
4
  "description": "A Vue3.0 + typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -0,0 +1,20 @@
1
+ import { AllowedComponentProps, VNodeProps } from './_common'
2
+
3
+ declare interface LoadingProps {
4
+ size?: number
5
+ iconColor?: string
6
+ mask?: boolean
7
+ }
8
+
9
+ declare interface LoadingSlots {
10
+ default?: () => any
11
+ }
12
+
13
+ declare interface _Loading {
14
+ new(): {
15
+ $props: AllowedComponentProps & VNodeProps & LoadingProps
16
+ $slots: LoadingSlots
17
+ }
18
+ }
19
+
20
+ export declare const Loading: _Loading
@@ -1,6 +1,24 @@
1
1
  declare module 'vue' {
2
2
  export interface GlobalComponents {
3
+ ['im-arrow-bar']: typeof import('./components/arrow-bar')['ArrowBar']
4
+ ['im-bar-group']: typeof import('./components/bar-group')['BarGroup']
5
+ ['im-btn-bar']: typeof import('./components/btn-bar')['BtnBar']
6
+ ['im-chat-at-box']: typeof import('./components/chat-at-box')['ChatAtBox']
7
+ ['im-chat-group-readed']: typeof import('./components/chat-group-readed')['ChatGroupReaded']
8
+ ['im-chat-item']: typeof import('./components/chat-item')['ChatItem']
9
+ ['im-chat-message-item']: typeof import('./components/chat-message-item')['ChatMessageItem']
10
+ ['im-chat-record']: typeof import('./components/chat-record')['ChatRecord']
11
+ ['im-chat-upload']: typeof import('./components/chat-upload')['ChatUpload']
12
+ ['im-friend-item']: typeof import('./components/friend-item')['FriendItem']
13
+ ['im-group-item']: typeof import('./components/group-item')['GroupItem']
14
+ ['im-group-member-selector']: typeof import('./components/group-member-selector')['GroupMemberSelector']
15
+ ['im-group-rtc-join']: typeof import('./components/group-rtc-join')['GroupRtcJoin']
16
+ ['im-head-image']: typeof import('./components/head-image')['HeadImage']
17
+ ['im-loading']: typeof import('./components/loading')['Loading']
18
+ ['im-long-press-menu']: typeof import('./components/long-press-menu')['LongPressMenu']
3
19
  ['im-sample']: typeof import('./components/sample')['Sample']
20
+ ['im-switch-bar']: typeof import('./components/switch-bar')['SwitchBar']
21
+ ['im-virtual-scroller']: typeof import('./components/virtual-scroller')['VirtualScroller']
4
22
  }
5
23
  }
6
24
 
@@ -1,20 +0,0 @@
1
- import { AllowedComponentProps, VNodeProps } from './_common'
2
-
3
- declare interface ImLoadingProps {
4
- size?: number
5
- iconColor?: string
6
- mask?: boolean
7
- }
8
-
9
- declare interface ImLoadingSlots {
10
- default?: () => any
11
- }
12
-
13
- declare interface _ImLoading {
14
- new(): {
15
- $props: AllowedComponentProps & VNodeProps & ImLoadingProps
16
- $slots: ImLoadingSlots
17
- }
18
- }
19
-
20
- export declare const ImLoading: _ImLoading