im-ui-mobile 0.1.4 → 0.1.6

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/README.md CHANGED
@@ -6,10 +6,12 @@
6
6
 
7
7
  ```bash
8
8
  npm install im-ui-mobile
9
-
9
+ ```
10
10
 
11
11
  ## 演示
12
12
 
13
- ![image](https://fdm-shop-25.oss-cn-shenzhen.aliyuncs.com/fdm26010502224969935bdbdcf.jpg)
13
+ 微信扫码,查看演示。
14
+
15
+ ![微信小程序码](https://fdm-shop-25.oss-cn-shenzhen.aliyuncs.com/fdm26010502453644377ae6e77.jpg)
14
16
 
15
17
 
package/index.scss CHANGED
@@ -1,7 +1,5 @@
1
1
  @import "./styles/common.scss";
2
2
 
3
- @import "./styles/button.scss";
4
-
5
3
  @import "./styles/emoji.scss";
6
4
 
7
5
  :root {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "im-ui-mobile",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
4
4
  "description": "A Vue3.0 + Typescript instant messaging component library for Uniapp",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,9 +1 @@
1
- .none-pointer-events {
2
- uni-image img {
3
- // 阻止微信默认长按菜单
4
- // pointer-events: none;
5
- // -webkit-pointer-events: none;
6
- // -ms-pointer-events: none;
7
- // -moz-pointer-events: none;
8
- }
9
- }
1
+ .page {}
@@ -1,39 +0,0 @@
1
-
2
- // #ifdef MP-WEIXIN
3
- // wx小程序只有button,没有uni-botton
4
- // button {
5
- // font-size: $im-font-size !important;
6
- // }
7
-
8
- // button[type='primary'] {
9
- // color: #fff !important;
10
- // background: linear-gradient(135deg, $im-color-primary, lighten($im-color-primary, 15%)) !important;
11
- // }
12
-
13
- // button[type='primary'][plain] {
14
- // color: $im-color-primary !important;
15
- // border: 2px solid $im-color-primary;
16
- // background: transparent;
17
- // }
18
-
19
- // button[type='warn'] {
20
- // color: #fff !important;
21
- // background: linear-gradient(135deg, $im-color-danger, lighten($im-color-danger, 15%)) !important;
22
- // }
23
-
24
- // button[type='warn'][plain] {
25
- // color: $im-color-danger !important;
26
- // border: 1px solid $im-color-danger !important;
27
- // background: transparent !important;
28
- // }
29
-
30
- // button[size='mini'] {
31
- // font-size: $im-font-size-small !important;
32
- // }
33
-
34
- // #endif
35
-
36
- // .button-hover[type='primary'] {
37
- // color: #fff !important;
38
- // background-color: $im-color-primary-dark-1 !important;
39
- // }