@tplc/wot 0.1.57 → 0.1.59
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,10 @@
|
|
|
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.59](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.27...v0.1.59) (2025-02-09)
|
|
6
|
+
|
|
7
|
+
### [0.1.58](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.26...v0.1.58) (2025-02-09)
|
|
8
|
+
|
|
5
9
|
### [0.1.57](http://gitlab888.30jia.com.cn/bhBank/zero-code-pro/compare/v0.3.10...v0.1.57) (2025-02-05)
|
|
6
10
|
|
|
7
11
|
|
|
@@ -203,6 +203,10 @@ export const calendarProps = {
|
|
|
203
203
|
* 是否在手指松开时立即触发picker-view的 change 事件。若不开启则会在滚动动画结束后触发 change 事件,1.2.25版本起提供,仅微信小程序和支付宝小程序支持。
|
|
204
204
|
*/
|
|
205
205
|
immediateChange: makeBooleanProp(false),
|
|
206
|
+
/**
|
|
207
|
+
* 打开前执行的函数
|
|
208
|
+
*/
|
|
209
|
+
initFun: Function as PropType<() => void>,
|
|
206
210
|
}
|
|
207
211
|
|
|
208
212
|
export type CalendarDisplayFormat = (value: number | number[], type: CalendarType) => string
|
|
@@ -343,7 +343,8 @@ function scrollIntoView() {
|
|
|
343
343
|
calendarView.value && calendarView.value && calendarView.value.$.exposed.scrollIntoView()
|
|
344
344
|
}
|
|
345
345
|
// 对外暴露方法
|
|
346
|
-
function open() {
|
|
346
|
+
async function open() {
|
|
347
|
+
await props.initFun?.()
|
|
347
348
|
const { disabled, readonly } = props
|
|
348
349
|
|
|
349
350
|
if (disabled || readonly) return
|
package/package.json
CHANGED
|
@@ -129,6 +129,7 @@ declare const _default: __VLS_WithTemplateSlots<
|
|
|
129
129
|
type: BooleanConstructor
|
|
130
130
|
default: boolean
|
|
131
131
|
}
|
|
132
|
+
initFun: import('vue').PropType<() => void>
|
|
132
133
|
customStyle: {
|
|
133
134
|
type: import('vue').PropType<string>
|
|
134
135
|
default: string
|
|
@@ -284,6 +285,7 @@ declare const _default: __VLS_WithTemplateSlots<
|
|
|
284
285
|
type: BooleanConstructor
|
|
285
286
|
default: boolean
|
|
286
287
|
}
|
|
288
|
+
initFun: import('vue').PropType<() => void>
|
|
287
289
|
customStyle: {
|
|
288
290
|
type: import('vue').PropType<string>
|
|
289
291
|
default: string
|