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
@@ -1,3 +1,5 @@
1
+ ## 3.2.6(2024-04-14)
2
+ 修复某些情况下滑动单元格默认右侧按钮是展开的问题
1
3
  ## 3.2.5(2024-04-13)
2
4
  调整分段器尺寸及修复窗口大小改变时重新计算尺寸
3
5
 
@@ -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",
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
@@ -1,6 +1,7 @@
1
1
  /// <reference path="./comps.d.ts" />
2
2
  declare module 'uview-plus' {
3
3
  export function install(): void //必要
4
+ export function route(): void //必要
4
5
  interface test {
5
6
  /** 邮箱格式校验 */
6
7
  email(email: string): boolean
@@ -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
+ }