uview-pro 0.6.16 → 0.6.17
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,13 +1,25 @@
|
|
|
1
|
-
## 0.6.
|
|
1
|
+
## 0.6.17(2026-08-24)
|
|
2
2
|
|
|
3
3
|
### 🐛 Bug Fixes | Bug 修复
|
|
4
4
|
|
|
5
|
-
- **
|
|
5
|
+
- **u-link:** 修复u-link组件兼容多端渲染逻辑,头条小程序直接渲染文本,其他端保留插槽兼容 ([a918f56](https://github.com/anyup/uView-Pro/commit/a918f5608f199f0e61be0a2e98ad43560e7a6393))
|
|
6
|
+
- **u-text:** 修复u-text组件在link模式下,头条小程序不显示 ([c7ea8eb](https://github.com/anyup/uView-Pro/commit/c7ea8eb8cf6dc8257f9c88a070239583b7f82566))
|
|
7
|
+
- **u-text:** 简化link模式下的u-link组件写法 ([292c60e](https://github.com/anyup/uView-Pro/commit/292c60e375fbe3c580f3eae39fe25d395916bf64))
|
|
6
8
|
|
|
7
9
|
### 👥 Contributors
|
|
8
10
|
|
|
9
11
|
<a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a>
|
|
10
12
|
|
|
13
|
+
## 0.6.16(2026-08-20)
|
|
14
|
+
|
|
15
|
+
### 🐛 Bug Fixes | Bug 修复
|
|
16
|
+
|
|
17
|
+
- **steps:** 修复横向步骤条连线断开和超宽截断问题 ([92fecdc](https://github.com/anyup/uView-Pro/commit/92fecdc75df0b20e4247397f47551e4472d32c0b))
|
|
18
|
+
|
|
19
|
+
### 👥 Contributors
|
|
20
|
+
|
|
21
|
+
<a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a>
|
|
22
|
+
|
|
11
23
|
## 0.6.15(2026-08-04)
|
|
12
24
|
|
|
13
25
|
### ♻️ Code Refactoring | 代码重构
|
|
@@ -25,9 +25,7 @@
|
|
|
25
25
|
<slot>¥{{ displayValue }}</slot>
|
|
26
26
|
</text>
|
|
27
27
|
<!-- link 模式 -->
|
|
28
|
-
<u-link v-else-if="props.mode === 'link'" :href="props.href" underLine
|
|
29
|
-
<slot>{{ displayValue }}</slot>
|
|
30
|
-
</u-link>
|
|
28
|
+
<u-link v-else-if="props.mode === 'link'" :text="displayValue" :href="props.href" underLine />
|
|
31
29
|
<template v-else-if="props.openType">
|
|
32
30
|
<!-- prettier-ignore -->
|
|
33
31
|
<button
|
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.17",
|
|
6
6
|
"description": "uView Pro是基于Vue3+TS的多平台UI框架,提供80+高质量组件、便捷工具和常用模板,支持多主题、暗黑模式、多语言,支持H5/APP/鸿蒙/小程序多端开发。已在鸿蒙应用商店上架,欢迎体验!",
|
|
7
7
|
"main": "index.ts",
|
|
8
8
|
"module": "index.ts",
|