uview-plus 3.3.49 → 3.3.52
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 +24 -0
- package/components/u-avatar/u-avatar.vue +2 -2
- package/components/u-card/u-card.vue +1 -1
- package/components/u-column-notice/columnNotice.js +2 -1
- package/components/u-column-notice/props.js +5 -1
- package/components/u-column-notice/u-column-notice.vue +1 -0
- package/components/u-icon/u-icon.vue +1 -1
- package/components/u-notice-bar/noticeBar.js +2 -1
- package/components/u-notice-bar/props.js +5 -1
- package/components/u-notice-bar/u-notice-bar.vue +1 -0
- package/components/u-overlay/u-overlay.vue +1 -0
- package/components/u-popup/u-popup.vue +1 -1
- package/components/u-radio/u-radio.vue +12 -9
- package/components/u-slider/u-slider.vue +4 -0
- package/package.json +8 -5
package/changelog.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
## 3.3.52(2024-12-09)
|
|
2
|
+
add: notice-bar支持justifyContent属性
|
|
3
|
+
|
|
4
|
+
## 3.3.51(2024-12-09)
|
|
5
|
+
add: radio增加label插槽
|
|
6
|
+
|
|
7
|
+
## 3.3.50(2024-12-05)
|
|
8
|
+
fix: 优化popup等对禁止背景滚动机制
|
|
9
|
+
|
|
10
|
+
add: slider在弹窗使用示例
|
|
11
|
+
|
|
12
|
+
fix: card组件类名问题
|
|
13
|
+
|
|
14
|
+
## 3.3.49(2024-12-02)
|
|
15
|
+
fix: 去除album多余的$u引用
|
|
16
|
+
|
|
17
|
+
fix: 优化图片组件兼容性
|
|
18
|
+
|
|
19
|
+
add: picker组件增加zIndex属性
|
|
20
|
+
|
|
21
|
+
add: text增加是否占满剩余空间属性
|
|
22
|
+
|
|
23
|
+
add: input颜色示例
|
|
24
|
+
|
|
1
25
|
## 3.3.48(2024-11-29)
|
|
2
26
|
add: 文本行数限制样式提高到10行
|
|
3
27
|
|
|
@@ -20,15 +20,18 @@
|
|
|
20
20
|
/>
|
|
21
21
|
</slot>
|
|
22
22
|
</view>
|
|
23
|
-
<
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
23
|
+
<view class="u-radio__label-wrap cursor-pointer" @tap.stop="labelClickHandler">
|
|
24
|
+
<slot name="label" :label="label" :elDisabled="elDisabled">
|
|
25
|
+
<text
|
|
26
|
+
class="u-radio__text"
|
|
27
|
+
:style="{
|
|
28
|
+
color: elDisabled ? elInactiveColor : elLabelColor,
|
|
29
|
+
fontSize: elLabelSize,
|
|
30
|
+
lineHeight: elLabelSize
|
|
31
|
+
}"
|
|
32
|
+
>{{label}}</text>
|
|
33
|
+
</slot>
|
|
34
|
+
</view>
|
|
32
35
|
</view>
|
|
33
36
|
</template>
|
|
34
37
|
|
|
@@ -166,6 +166,10 @@
|
|
|
166
166
|
// #ifndef APP-NVUE
|
|
167
167
|
this.$uGetRect('.u-slider__base').then(rect => {
|
|
168
168
|
this.sliderRect = rect;
|
|
169
|
+
// console.log('sliderRect', this.sliderRect)
|
|
170
|
+
if (this.sliderRect.width == 0) {
|
|
171
|
+
console.info('如在弹窗等元素中使用,请使用v-if来显示滑块,否则无法计算长度。')
|
|
172
|
+
}
|
|
169
173
|
this.init()
|
|
170
174
|
});
|
|
171
175
|
// #endif
|
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.3.
|
|
5
|
+
"version": "3.3.52",
|
|
6
6
|
"description": "零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"uview",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"ui",
|
|
12
12
|
"uni-app",
|
|
13
13
|
"uni-app",
|
|
14
|
-
"ui"
|
|
14
|
+
"ui",
|
|
15
|
+
"可视化设计"
|
|
15
16
|
],
|
|
16
17
|
"main": "index.js",
|
|
17
18
|
"repository": "https://github.com/ijry/uview-plus",
|
|
@@ -53,9 +54,11 @@
|
|
|
53
54
|
"vue3": "y"
|
|
54
55
|
},
|
|
55
56
|
"App": {
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
"app-vue": "y",
|
|
58
|
+
"app-nvue": "y",
|
|
59
|
+
"app-harmony": "u",
|
|
60
|
+
"app-uvue": "u"
|
|
61
|
+
},
|
|
59
62
|
"H5-mobile": {
|
|
60
63
|
"Safari": "y",
|
|
61
64
|
"Android Browser": "y",
|