uview-pro 0.5.14 → 0.5.15

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,22 +1,38 @@
1
- ## 0.5.14(2026-03-23
1
+ ## 0.5.15(2026-03-25
2
2
 
3
3
  ### 🐛 Bug Fixes | Bug 修复
4
4
 
5
- - **u-toast:** 调整提示框位置和边框样式 ([093e31a](https://github.com/anyup/uView-Pro/commit/093e31a34a26902ced26ac841ddfa738fa796528))
6
- - **u-form:** 修复表单项错误消息样式显示问题 ([462eb6e](https://github.com/anyup/uView-Pro/commit/462eb6e9e3b4d676ac97877327d93705f53400a5))
7
-
8
- ### 📝 Documentation | 文档
9
-
10
- - **readme:** 添加快速启动模板链接 ([afce866](https://github.com/anyup/uView-Pro/commit/afce866f0e7e20b97132bebcbaf56f9aafc25c5c))
5
+ - **u-form:** 修复表单项底部边框默认值逻辑 ([d939fbd](https://github.com/anyup/uView-Pro/commit/d939fbd5df85c266f8a8f5e23ebeca251eee94ec))
6
+ - **u-input:** 修复u-input输入框在某些微信小程序平台下,重新获取焦点时会清空输入框的问题 ([cedecfa](https://github.com/anyup/uView-Pro/commit/cedecfa4bf2142046bb512b1d9e87f6c9d77516d))
7
+ - **demo:** 优化微信小程序首页u-sticky使用配置 ([cc4e9ac](https://github.com/anyup/uView-Pro/commit/cc4e9ac9f022e7713b2eb2746038a8481729c0b4))
11
8
 
12
9
  ### ✨ Features | 新功能
13
10
 
14
- - **u-form-item:** 增加前后图标前缀自定义配置和插槽支持 ([9f32cf7](https://github.com/anyup/uView-Pro/commit/9f32cf7f32e0697ab6771711bc96bc2d8395c597))
11
+ - **types:** 添加昵称输入类型支持 ([bd15170](https://github.com/anyup/uView-Pro/commit/bd15170d0ccc76098debb9e37b4acfbe43fef043))
15
12
 
16
13
  ### 👥 Contributors
17
14
 
18
- <a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a>
15
+ <a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a> <a href="https://github.com/xaunseus"><img src="https://github.com/xaunseus.png?size=40" width="40" height="40" alt="xaunseus" title="xaunseus"/></a>
19
16
 
17
+ ## 0.5.14(2026-03-23)
18
+
19
+ ### 🐛 Bug Fixes | Bug 修复
20
+
21
+ - **u-toast:** 调整提示框位置和边框样式 ([093e31a](https://github.com/anyup/uView-Pro/commit/093e31a34a26902ced26ac841ddfa738fa796528))
22
+ - **u-form:** 修复表单项错误消息样式显示问题 ([462eb6e](https://github.com/anyup/uView-Pro/commit/462eb6e9e3b4d676ac97877327d93705f53400a5))
23
+
24
+ ### 📝 Documentation | 文档
25
+
26
+ - **readme:** 添加快速启动模板链接 ([afce866](https://github.com/anyup/uView-Pro/commit/afce866f0e7e20b97132bebcbaf56f9aafc25c5c))
27
+
28
+ ### ✨ Features | 新功能
29
+
30
+ - **u-form-item:** 增加前后图标前缀自定义配置和插槽支持 ([9f32cf7](https://github.com/anyup/uView-Pro/commit/9f32cf7f32e0697ab6771711bc96bc2d8395c597))
31
+
32
+ ### 👥 Contributors
33
+
34
+ <a href="https://github.com/anyup"><img src="https://github.com/anyup.png?size=40" width="40" height="40" alt="anyup" title="anyup"/></a>
35
+
20
36
  ## 0.5.13(2026-03-17)
21
37
 
22
38
  ### ✨ Features | 新功能
@@ -233,7 +233,7 @@ const elBorderBottom = computed(() => {
233
233
  ? props.borderBottom
234
234
  : parentData.value.borderBottom
235
235
  ? parentData.value.borderBottom
236
- : true;
236
+ : false;
237
237
  });
238
238
 
239
239
  // 事件派发/广播工具
@@ -65,7 +65,8 @@
65
65
  <view class="u-input__right-icon u-flex">
66
66
  <view
67
67
  class="u-input__right-icon__clear u-input__right-icon__item"
68
- v-if="clearIconShow"
68
+ v-if="clearable && inputValue !== '' && !disabled"
69
+ :class="{ 'u-hidden': !focused && type !== 'select' }"
69
70
  @click.stop="onClear"
70
71
  >
71
72
  <u-icon size="32" name="close-circle-fill" color="var(--u-light-color)" />
@@ -138,12 +139,6 @@ const inputValue = computed<string>(() => {
138
139
  return String(props.modelValue);
139
140
  });
140
141
 
141
- // 清除图标是否显示
142
- const clearIconShow = computed(() => {
143
- if (props.type === 'select') return props.clearable && inputValue.value !== '' && !props.disabled;
144
- return props.clearable && focused.value && inputValue.value !== '' && !props.disabled;
145
- });
146
-
147
142
  // 监听 value 变化
148
143
  watch(
149
144
  () => inputValue.value,
@@ -53,7 +53,8 @@
53
53
  <view class="u-textarea__right-icon u-flex">
54
54
  <view
55
55
  class="u-textarea__right-icon__clear u-textarea__right-icon__item"
56
- v-if="clearable && focused && modelValue != '' && !disabled"
56
+ v-if="clearable && modelValue != '' && !disabled"
57
+ :class="{ 'u-hidden': !focused }"
57
58
  >
58
59
  <u-icon size="32" name="close-circle-fill" color="var(--u-light-color)" @click="onClear" />
59
60
  </view>
@@ -108,6 +108,11 @@ text {
108
108
  flex-direction: column;
109
109
  }
110
110
 
111
+ .u-hidden {
112
+ opacity: 0;
113
+ visibility: hidden;
114
+ }
115
+
111
116
  // 定义flex等分
112
117
  @for $i from 0 through 12 {
113
118
  .u-flex-#{$i} {
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.5.14",
5
+ "version": "0.5.15",
6
6
  "description": "uView Pro是基于Vue3+TS的多平台UI框架,提供80+高质量组件、便捷工具和常用模板,支持多主题、暗黑模式、多语言,支持H5/APP/鸿蒙/小程序多端开发。已在鸿蒙应用商店上架,欢迎体验!",
7
7
  "main": "index.ts",
8
8
  "module": "index.ts",
package/types/global.d.ts CHANGED
@@ -150,6 +150,7 @@ export type InputType =
150
150
  | 'email'
151
151
  | 'safe-password'
152
152
  | 'name'
153
+ | 'nickname'
153
154
  | 'bank-card'
154
155
  | 'tel'
155
156
  | 'select';