uview-plus 3.2.5 → 3.2.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/changelog.md
CHANGED
|
@@ -91,7 +91,23 @@
|
|
|
91
91
|
name: 'u-swipe-action-item',
|
|
92
92
|
emits: ['click'],
|
|
93
93
|
|
|
94
|
-
mixins: [
|
|
94
|
+
mixins: [
|
|
95
|
+
mpMixin,
|
|
96
|
+
mixin,
|
|
97
|
+
// #ifndef APP-NVUE
|
|
98
|
+
touch,
|
|
99
|
+
// #endif
|
|
100
|
+
// #ifdef APP-NVUE
|
|
101
|
+
nvue,
|
|
102
|
+
// #endif
|
|
103
|
+
// #ifdef APP-VUE || MP-WEIXIN || H5 || MP-QQ || H5
|
|
104
|
+
wxs,
|
|
105
|
+
// #endif
|
|
106
|
+
// #ifdef MP-ALIPAY || MP-BAIDU || MP-TOUTIAO
|
|
107
|
+
other,
|
|
108
|
+
// #endif
|
|
109
|
+
props
|
|
110
|
+
],
|
|
95
111
|
data() {
|
|
96
112
|
return {
|
|
97
113
|
// 按钮的尺寸信息
|
|
@@ -171,6 +187,7 @@
|
|
|
171
187
|
/* #endif */
|
|
172
188
|
|
|
173
189
|
&__content {
|
|
190
|
+
transform: translateX(0px); // 修复某些情况下默认右侧按钮是展开的问题
|
|
174
191
|
background-color: #FFFFFF;
|
|
175
192
|
z-index: 10;
|
|
176
193
|
}
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "uview-plus",
|
|
3
3
|
"name": "uview-plus",
|
|
4
4
|
"displayName": "uview-plus3.0重磅发布,全面的Vue3移动组件库。",
|
|
5
|
-
"version": "3.2.
|
|
5
|
+
"version": "3.2.6",
|
|
6
6
|
"description": "uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"uview",
|
|
@@ -13,6 +13,7 @@
|
|
|
13
13
|
"uni-app",
|
|
14
14
|
"ui"
|
|
15
15
|
],
|
|
16
|
+
"main": "index.js",
|
|
16
17
|
"repository": "https://github.com/ijry/uview-plus",
|
|
17
18
|
"engines": {
|
|
18
19
|
"HBuilderX": "^3.1.0"
|
package/types/index.d.ts
CHANGED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uview-plus/types",
|
|
3
|
+
"version": "3.2.5",
|
|
4
|
+
"description": "types for uview-plus",
|
|
5
|
+
"main": "index.d.ts",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "git+https://github.com/ijry/uview-plus.git"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"uview-plus"
|
|
15
|
+
],
|
|
16
|
+
"author": "jry",
|
|
17
|
+
"license": "MIT",
|
|
18
|
+
"types": "./index.d.ts",
|
|
19
|
+
"bugs": {
|
|
20
|
+
"url": "https://github.com/ijry/uview-plus/issues"
|
|
21
|
+
},
|
|
22
|
+
"homepage": "https://github.com/ijry/uview-plus#readme",
|
|
23
|
+
"publishConfig": {
|
|
24
|
+
"registry": "https://registry.npmjs.org/"
|
|
25
|
+
}
|
|
26
|
+
}
|