UNPKG

devextreme

Version:

JavaScript/TypeScript Component Suite for Responsive Web Development

22 lines (21 loc) 702 B
/** * DevExtreme (esm/__internal/ui/__tests__/__mock__/model/textbox.js) * Version: 25.2.5 * Build date: Fri Feb 20 2026 * * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * Read about DevExtreme licensing here: https://js.devexpress.com/Licensing/ */ import TextBox from "../../../../../ui/text_box"; export class TextBoxModel { constructor(root) { this.root = root } getInstance() { return TextBox.getInstance(this.root) } setValue(value) { var _this$getInstance; null === (_this$getInstance = this.getInstance()) || void 0 === _this$getInstance || _this$getInstance.option("value", value) } }