@tplc/wot 0.1.44 → 0.1.46
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
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [0.1.46](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.2.36...v0.1.46) (2024-12-26)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### ✨ Features | 新功能
|
|
9
|
+
|
|
10
|
+
* 更新calendar 尺寸 ([7faa15a](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/commit/7faa15a4ba24a1743a7b7f8a9f6dc200fdf6fa57))
|
|
11
|
+
|
|
12
|
+
### [0.1.45](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.44...v0.1.45) (2024-12-26)
|
|
13
|
+
|
|
5
14
|
### [0.1.44](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.1.43...v0.1.44) (2024-12-26)
|
|
6
15
|
|
|
7
16
|
|
|
@@ -225,7 +225,7 @@ const emit = defineEmits(['cancel', 'change', 'update:modelValue', 'confirm'])
|
|
|
225
225
|
const pickerShow = ref<boolean>(false)
|
|
226
226
|
const calendarValue = ref<null | number | number[]>(null)
|
|
227
227
|
const lastCalendarValue = ref<null | number | number[]>(null)
|
|
228
|
-
const panelHeight = ref<number>(
|
|
228
|
+
const panelHeight = ref<number>(438)
|
|
229
229
|
const confirmBtnDisabled = ref<boolean>(true)
|
|
230
230
|
const currentTab = ref<number>(0)
|
|
231
231
|
const lastTab = ref<number>(0)
|
|
@@ -284,7 +284,7 @@ watch(
|
|
|
284
284
|
newValue.indexOf('range') > -1 ? rangeTabs.indexOf(newValue) || 0 : tabs.indexOf(newValue)
|
|
285
285
|
currentTab.value = index
|
|
286
286
|
}
|
|
287
|
-
panelHeight.value = props.showConfirm ? 488 :
|
|
287
|
+
panelHeight.value = props.showConfirm ? 488 : 550
|
|
288
288
|
currentType.value = deepClone(newValue)
|
|
289
289
|
},
|
|
290
290
|
{
|
|
@@ -296,7 +296,7 @@ watch(
|
|
|
296
296
|
watch(
|
|
297
297
|
() => props.showConfirm,
|
|
298
298
|
(val) => {
|
|
299
|
-
panelHeight.value = val ? 488 :
|
|
299
|
+
panelHeight.value = val ? 488 : 550
|
|
300
300
|
},
|
|
301
301
|
{
|
|
302
302
|
deep: true,
|