uview-plus 3.5.5 → 3.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 +35 -0
- package/components/u-calendar/month.vue +1 -1
- package/components/u-calendar/u-calendar.vue +2 -2
- package/components/u-color-picker/u-color-picker.vue +1095 -0
- package/components/u-datetime-picker/datetimePicker.js +1 -0
- package/components/u-datetime-picker/props.js +5 -0
- package/components/u-datetime-picker/u-datetime-picker.vue +4 -3
- package/components/u-input/props.js +6 -1
- package/components/u-input/u-input.vue +9 -2
- package/components/u-pdf-reader/props.js +19 -0
- package/components/u-pdf-reader/u-pdf-reader.vue +52 -0
- package/components/u-picker/picker.js +2 -1
- package/components/u-picker/props.js +6 -1
- package/components/u-picker/u-picker.vue +2 -1
- package/components/u-popup/props.js +2 -2
- package/components/u-poster/u-poster.vue +622 -0
- package/components/u-qrcode/u-qrcode.vue +18 -12
- package/components/u-search/props.js +152 -134
- package/components/u-search/u-search.vue +14 -2
- package/components/u-short-video/u-short-video.vue +463 -0
- package/components/u-slider/props.js +5 -1
- package/components/u-slider/slider.js +2 -1
- package/components/u-slider/u-slider.vue +8 -3
- package/components/u-tabbar/props.js +10 -0
- package/components/u-tabbar/tabbar.js +3 -1
- package/components/u-tabbar/u-tabbar.vue +7 -0
- package/package.json +1 -1
package/changelog.md
CHANGED
|
@@ -1,3 +1,38 @@
|
|
|
1
|
+
## 3.5.15(2025-08-25)
|
|
2
|
+
feat: 之前的color-picker颜色选择器按计划上线
|
|
3
|
+
|
|
4
|
+
## 3.5.14(2025-08-25)
|
|
5
|
+
feat: 新增PDF阅读器组件
|
|
6
|
+
|
|
7
|
+
## 3.5.13(2025-08-24)
|
|
8
|
+
fix: 修复短视频示例https
|
|
9
|
+
|
|
10
|
+
## 3.5.12(2025-08-23)
|
|
11
|
+
feat: short-video短视频组件增加视频播放示例
|
|
12
|
+
|
|
13
|
+
## 3.5.11(2025-08-23)
|
|
14
|
+
feat: 新增short-video短视频切换组件
|
|
15
|
+
|
|
16
|
+
feat: tabbar支持backgroundColor和borderColor属性
|
|
17
|
+
|
|
18
|
+
feat: slider支持innerStyle样式属性
|
|
19
|
+
|
|
20
|
+
## 3.5.10(2025-08-22)
|
|
21
|
+
feat: 新增poster海报生成组件
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
## 3.5.9(2025-08-22)
|
|
25
|
+
feat: 优化qrcode组件支持toTempFilePath方法
|
|
26
|
+
|
|
27
|
+
## 3.5.8(2025-08-22)
|
|
28
|
+
fix: 优化rpx下calendar高度计算强制px
|
|
29
|
+
|
|
30
|
+
## 3.5.7(2025-08-22)
|
|
31
|
+
feat: input和search新增onlyClearableOnFocused参数支持控制是否仅聚焦时显示清除按钮
|
|
32
|
+
|
|
33
|
+
## 3.5.6(2025-08-21)
|
|
34
|
+
feat: picker弹窗及datetime-picker组件支持页面内模式
|
|
35
|
+
|
|
1
36
|
## 3.5.5(2025-08-21)
|
|
2
37
|
feat: popup弹窗及canlendar组件支持页面内插入无弹窗模式
|
|
3
38
|
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
// #ifdef APP-NVUE
|
|
170
170
|
style.width = addUnit(dayWidth, 'px')
|
|
171
171
|
// #endif
|
|
172
|
-
style.height = addUnit(this.rowHeight)
|
|
172
|
+
style.height = addUnit(this.rowHeight, 'px')
|
|
173
173
|
if (index2 === 0) {
|
|
174
174
|
// 获取当前为星期几,如果为0,则为星期天,减一为每月第一天时,需要向左偏移的item个数
|
|
175
175
|
week = (week === 0 ? 7 : week) - 1
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
></uHeader>
|
|
19
19
|
<scroll-view
|
|
20
20
|
:style="{
|
|
21
|
-
height: addUnit(listHeight)
|
|
21
|
+
height: addUnit(listHeight, 'px')
|
|
22
22
|
}"
|
|
23
23
|
scroll-y
|
|
24
24
|
@scroll="onScroll"
|
|
@@ -77,7 +77,7 @@ import dayjs from '../u-datetime-picker/dayjs.esm.min.js';
|
|
|
77
77
|
import Calendar from '../../libs/util/calendar.js'
|
|
78
78
|
import { mpMixin } from '../../libs/mixin/mpMixin.js'
|
|
79
79
|
import { mixin } from '../../libs/mixin/mixin.js'
|
|
80
|
-
import { addUnit, range, error, padZero } from '../../libs/function/index';
|
|
80
|
+
import { addUnit, getPx, range, error, padZero } from '../../libs/function/index';
|
|
81
81
|
import test from '../../libs/function/test';
|
|
82
82
|
/**
|
|
83
83
|
* Calendar 日历
|