@tarojs/plugin-platform-harmony-ets 4.0.0-beta.85 → 4.0.0-beta.87

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.
@@ -5,6 +5,7 @@ import { ICallbackResult, MethodHandler } from './handler'
5
5
  import type { FunctionType, IAsyncParams } from './types'
6
6
 
7
7
  export * from './validate'
8
+ export { MethodHandler }
8
9
  export { noop } from '@tarojs/shared'
9
10
 
10
11
  export function object2String (obj) {
@@ -167,6 +167,14 @@ class TaroInputElement<T extends FormWidgetProps = InputProps> extends TaroFormW
167
167
  }
168
168
  }
169
169
 
170
+ public get value () {
171
+ return super.value
172
+ }
173
+
174
+ public set value (val: TaroAny) {
175
+ super.value = `${val}`
176
+ }
177
+
170
178
  private onKeyboardHeightChange (height: number) {
171
179
  const event: TaroEvent = createTaroEvent('keyboardHeightChange', { detail: { height: height, duration: 0 } }, this)
172
180