uview-pro 0.6.7 → 0.6.8
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,15 +1,26 @@
|
|
|
1
|
-
## 0.6.
|
|
1
|
+
## 0.6.8(2026-07-03)
|
|
2
2
|
|
|
3
|
-
###
|
|
3
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
4
4
|
|
|
5
|
-
- **u-
|
|
6
|
-
- **u-
|
|
7
|
-
- **input,textarea:** 新增confirm-hold属性的使用示例(#170) ([b030a2d](https://github.com/anyup/uView-Pro/commit/b030a2dfd30099cda2e9e63e96fb9a2e00d2f639))
|
|
5
|
+
- **u-button:** 添加data-eventsync属性以修复事件同步问题(#172) ([cbec72a](https://github.com/anyup/uView-Pro/commit/cbec72ac1959630dd7cb436fc74944bf0ad6bddb))
|
|
6
|
+
- **u-input:** 修复输入框readonly状态下无效问题,调整z-index层级(#173) ([38eca40](https://github.com/anyup/uView-Pro/commit/38eca4023f2f0300b795e8eb786a22002cec67b3))
|
|
8
7
|
|
|
9
8
|
### 👥 Contributors
|
|
10
9
|
|
|
11
10
|
<a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a>
|
|
12
11
|
|
|
12
|
+
## 0.6.7(2026-07-02)
|
|
13
|
+
|
|
14
|
+
### ✨ Features | 新功能
|
|
15
|
+
|
|
16
|
+
- **u-input:** u-input新增confirm-hold属性,支持点击键盘右下角按钮保持键盘不收起(#170) ([27a57cd](https://github.com/anyup/uView-Pro/commit/27a57cdf0046a11b1a8a72c6fb44aecbe39b0c50))
|
|
17
|
+
- **u-textarea:** u-textarea新增confirm-hold属性,支持点击键盘右下角按钮保持键盘不收起(#170) ([3244812](https://github.com/anyup/uView-Pro/commit/3244812c961ab3cf2011e2433740fd9be407d347))
|
|
18
|
+
- **input,textarea:** 新增confirm-hold属性的使用示例(#170) ([b030a2d](https://github.com/anyup/uView-Pro/commit/b030a2dfd30099cda2e9e63e96fb9a2e00d2f639))
|
|
19
|
+
|
|
20
|
+
### 👥 Contributors
|
|
21
|
+
|
|
22
|
+
<a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a>
|
|
23
|
+
|
|
13
24
|
## 0.6.6(2026-06-10)
|
|
14
25
|
|
|
15
26
|
### 🐛 Bug Fixes | Bug 修复
|
|
@@ -359,7 +359,7 @@ defineExpose({
|
|
|
359
359
|
&__readonly-overlay {
|
|
360
360
|
position: absolute;
|
|
361
361
|
inset: 0;
|
|
362
|
-
z-index:
|
|
362
|
+
z-index: 2;
|
|
363
363
|
}
|
|
364
364
|
|
|
365
365
|
&__input {
|
|
@@ -390,7 +390,7 @@ defineExpose({
|
|
|
390
390
|
padding: 1px 4px;
|
|
391
391
|
border-radius: 10px;
|
|
392
392
|
line-height: 16px;
|
|
393
|
-
z-index:
|
|
393
|
+
z-index: 3;
|
|
394
394
|
}
|
|
395
395
|
|
|
396
396
|
&--border {
|
|
@@ -423,7 +423,7 @@ defineExpose({
|
|
|
423
423
|
|
|
424
424
|
&__right-icon {
|
|
425
425
|
position: relative;
|
|
426
|
-
z-index:
|
|
426
|
+
z-index: 3;
|
|
427
427
|
|
|
428
428
|
&--select {
|
|
429
429
|
transition: transform 0.4s;
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "uview-pro",
|
|
3
3
|
"name": "uview-pro",
|
|
4
4
|
"displayName": "【支持鸿蒙】uView Pro|基于Vue3+TS的高质量UI组件库,支持多主题、暗黑模式、多语言",
|
|
5
|
-
"version": "0.6.
|
|
5
|
+
"version": "0.6.8",
|
|
6
6
|
"description": "uView Pro是基于Vue3+TS的多平台UI框架,提供80+高质量组件、便捷工具和常用模板,支持多主题、暗黑模式、多语言,支持H5/APP/鸿蒙/小程序多端开发。已在鸿蒙应用商店上架,欢迎体验!",
|
|
7
7
|
"main": "index.ts",
|
|
8
8
|
"module": "index.ts",
|