im-ui-mobile 0.1.9 → 0.1.10

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.
@@ -117,7 +117,7 @@
117
117
  <script setup lang="ts">
118
118
  import { ref, computed, watch, nextTick, onMounted, onUnmounted } from 'vue'
119
119
  import { useDynamicRefs, datetime } from 'im-ui-mobile'
120
- import type { MESSAGE_TYPE, MESSAGE_STATUS } from 'im-ui-mobile'
120
+ import { MESSAGE_TYPE, MESSAGE_STATUS } from '../../utils/enums'
121
121
  import { Message, GroupMember } from '../../libs'
122
122
 
123
123
  // 使用动态引用
@@ -2,7 +2,7 @@
2
2
  <im-popup ref="popup" position="bottom">
3
3
  <view class="read-receipt">
4
4
  <view class="uni-padding-wrap uni-common-mt">
5
- <im-tabs :current="current" :items="items" :show-bar="false" @change="onClickItem" />
5
+ <im-tabs v-model="current" :items="items" @change="onClickItem" />
6
6
  </view>
7
7
  <view class="content">
8
8
  <view v-if="current === 0">
@@ -429,8 +429,8 @@ defineExpose({
429
429
  }
430
430
 
431
431
  .im-stepper-input {
432
- border-top: 1px solid #ebedf0;
433
- border-bottom: 1px solid #ebedf0;
432
+ // border-top: 1px solid #ebedf0;
433
+ // border-bottom: 1px solid #ebedf0;
434
434
  margin: 0 2px;
435
435
  }
436
436
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.1.9",
3
+ "version": "0.1.10",
4
4
  "description": "A Vue3.0 + Typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",