@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.
package/dist/apis/utils/index.ts
CHANGED
|
@@ -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
|
|