text-area.js 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611
  1. "use strict";
  2. var __extends = (this && this.__extends) || (function () {
  3. var extendStatics = Object.setPrototypeOf ||
  4. ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
  5. function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
  6. return function (d, b) {
  7. extendStatics(d, b);
  8. function __() { this.constructor = d; }
  9. d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
  10. };
  11. })();
  12. /*!
  13. * devextreme-angular
  14. * Version: 19.1.16
  15. * Build date: Tue Oct 18 2022
  16. *
  17. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  18. *
  19. * This software may be modified and distributed under the terms
  20. * of the MIT license. See the LICENSE file in the root of the project for details.
  21. *
  22. * https://github.com/DevExpress/devextreme-angular
  23. */
  24. Object.defineProperty(exports, "__esModule", { value: true });
  25. var platform_browser_1 = require("@angular/platform-browser");
  26. var platform_browser_2 = require("@angular/platform-browser");
  27. var core_1 = require("@angular/core");
  28. var text_area_1 = require("devextreme/ui/text_area");
  29. var forms_1 = require("@angular/forms");
  30. var component_1 = require("../core/component");
  31. var template_host_1 = require("../core/template-host");
  32. var integration_1 = require("../core/integration");
  33. var template_1 = require("../core/template");
  34. var nested_option_1 = require("../core/nested-option");
  35. var watcher_helper_1 = require("../core/watcher-helper");
  36. var CUSTOM_VALUE_ACCESSOR_PROVIDER = {
  37. provide: forms_1.NG_VALUE_ACCESSOR,
  38. useExisting: core_1.forwardRef(function () { return DxTextAreaComponent; }),
  39. multi: true
  40. };
  41. /**
  42. * The TextArea is a widget that enables a user to enter and edit a multi-line text.
  43. */
  44. var DxTextAreaComponent = (function (_super) {
  45. __extends(DxTextAreaComponent, _super);
  46. function DxTextAreaComponent(elementRef, ngZone, templateHost, _watcherHelper, optionHost, transferState, platformId) {
  47. var _this = _super.call(this, elementRef, ngZone, templateHost, _watcherHelper, transferState, platformId) || this;
  48. _this.touched = function (_) { };
  49. _this._createEventEmitters([
  50. { subscribe: 'change', emit: 'onChange' },
  51. { subscribe: 'contentReady', emit: 'onContentReady' },
  52. { subscribe: 'copy', emit: 'onCopy' },
  53. { subscribe: 'cut', emit: 'onCut' },
  54. { subscribe: 'disposing', emit: 'onDisposing' },
  55. { subscribe: 'enterKey', emit: 'onEnterKey' },
  56. { subscribe: 'focusIn', emit: 'onFocusIn' },
  57. { subscribe: 'focusOut', emit: 'onFocusOut' },
  58. { subscribe: 'initialized', emit: 'onInitialized' },
  59. { subscribe: 'input', emit: 'onInput' },
  60. { subscribe: 'keyDown', emit: 'onKeyDown' },
  61. { subscribe: 'keyPress', emit: 'onKeyPress' },
  62. { subscribe: 'keyUp', emit: 'onKeyUp' },
  63. { subscribe: 'optionChanged', emit: 'onOptionChanged' },
  64. { subscribe: 'paste', emit: 'onPaste' },
  65. { subscribe: 'valueChanged', emit: 'onValueChanged' },
  66. { emit: 'accessKeyChange' },
  67. { emit: 'activeStateEnabledChange' },
  68. { emit: 'autoResizeEnabledChange' },
  69. { emit: 'disabledChange' },
  70. { emit: 'elementAttrChange' },
  71. { emit: 'focusStateEnabledChange' },
  72. { emit: 'heightChange' },
  73. { emit: 'hintChange' },
  74. { emit: 'hoverStateEnabledChange' },
  75. { emit: 'inputAttrChange' },
  76. { emit: 'isValidChange' },
  77. { emit: 'maxHeightChange' },
  78. { emit: 'maxLengthChange' },
  79. { emit: 'minHeightChange' },
  80. { emit: 'nameChange' },
  81. { emit: 'placeholderChange' },
  82. { emit: 'readOnlyChange' },
  83. { emit: 'rtlEnabledChange' },
  84. { emit: 'spellcheckChange' },
  85. { emit: 'stylingModeChange' },
  86. { emit: 'tabIndexChange' },
  87. { emit: 'textChange' },
  88. { emit: 'validationErrorChange' },
  89. { emit: 'validationMessageModeChange' },
  90. { emit: 'valueChange' },
  91. { emit: 'valueChangeEventChange' },
  92. { emit: 'visibleChange' },
  93. { emit: 'widthChange' },
  94. { emit: 'onBlur' }
  95. ]);
  96. optionHost.setHost(_this);
  97. return _this;
  98. }
  99. Object.defineProperty(DxTextAreaComponent.prototype, "accessKey", {
  100. get: /**
  101. * Specifies the shortcut key that sets focus on the widget.
  102. */
  103. function () {
  104. return this._getOption('accessKey');
  105. },
  106. set: function (value) {
  107. this._setOption('accessKey', value);
  108. },
  109. enumerable: true,
  110. configurable: true
  111. });
  112. Object.defineProperty(DxTextAreaComponent.prototype, "activeStateEnabled", {
  113. get: /**
  114. * Specifies whether or not the widget changes its state when interacting with a user.
  115. */
  116. function () {
  117. return this._getOption('activeStateEnabled');
  118. },
  119. set: function (value) {
  120. this._setOption('activeStateEnabled', value);
  121. },
  122. enumerable: true,
  123. configurable: true
  124. });
  125. Object.defineProperty(DxTextAreaComponent.prototype, "autoResizeEnabled", {
  126. get: /**
  127. * A Boolean value specifying whether or not the auto resizing mode is enabled.
  128. */
  129. function () {
  130. return this._getOption('autoResizeEnabled');
  131. },
  132. set: function (value) {
  133. this._setOption('autoResizeEnabled', value);
  134. },
  135. enumerable: true,
  136. configurable: true
  137. });
  138. Object.defineProperty(DxTextAreaComponent.prototype, "disabled", {
  139. get: /**
  140. * Specifies whether the widget responds to user interaction.
  141. */
  142. function () {
  143. return this._getOption('disabled');
  144. },
  145. set: function (value) {
  146. this._setOption('disabled', value);
  147. },
  148. enumerable: true,
  149. configurable: true
  150. });
  151. Object.defineProperty(DxTextAreaComponent.prototype, "elementAttr", {
  152. get: /**
  153. * Specifies the attributes to be attached to the widget's root element.
  154. */
  155. function () {
  156. return this._getOption('elementAttr');
  157. },
  158. set: function (value) {
  159. this._setOption('elementAttr', value);
  160. },
  161. enumerable: true,
  162. configurable: true
  163. });
  164. Object.defineProperty(DxTextAreaComponent.prototype, "focusStateEnabled", {
  165. get: /**
  166. * Specifies whether the widget can be focused using keyboard navigation.
  167. */
  168. function () {
  169. return this._getOption('focusStateEnabled');
  170. },
  171. set: function (value) {
  172. this._setOption('focusStateEnabled', value);
  173. },
  174. enumerable: true,
  175. configurable: true
  176. });
  177. Object.defineProperty(DxTextAreaComponent.prototype, "height", {
  178. get: /**
  179. * Specifies the widget's height.
  180. */
  181. function () {
  182. return this._getOption('height');
  183. },
  184. set: function (value) {
  185. this._setOption('height', value);
  186. },
  187. enumerable: true,
  188. configurable: true
  189. });
  190. Object.defineProperty(DxTextAreaComponent.prototype, "hint", {
  191. get: /**
  192. * Specifies text for a hint that appears when a user pauses on the widget.
  193. */
  194. function () {
  195. return this._getOption('hint');
  196. },
  197. set: function (value) {
  198. this._setOption('hint', value);
  199. },
  200. enumerable: true,
  201. configurable: true
  202. });
  203. Object.defineProperty(DxTextAreaComponent.prototype, "hoverStateEnabled", {
  204. get: /**
  205. * Specifies whether the widget changes its state when a user pauses on it.
  206. */
  207. function () {
  208. return this._getOption('hoverStateEnabled');
  209. },
  210. set: function (value) {
  211. this._setOption('hoverStateEnabled', value);
  212. },
  213. enumerable: true,
  214. configurable: true
  215. });
  216. Object.defineProperty(DxTextAreaComponent.prototype, "inputAttr", {
  217. get: /**
  218. * Specifies the attributes to be passed on to the underlying HTML element.
  219. */
  220. function () {
  221. return this._getOption('inputAttr');
  222. },
  223. set: function (value) {
  224. this._setOption('inputAttr', value);
  225. },
  226. enumerable: true,
  227. configurable: true
  228. });
  229. Object.defineProperty(DxTextAreaComponent.prototype, "isValid", {
  230. get: /**
  231. * Specifies whether the editor's value is valid.
  232. */
  233. function () {
  234. return this._getOption('isValid');
  235. },
  236. set: function (value) {
  237. this._setOption('isValid', value);
  238. },
  239. enumerable: true,
  240. configurable: true
  241. });
  242. Object.defineProperty(DxTextAreaComponent.prototype, "maxHeight", {
  243. get: /**
  244. * Specifies the maximum height of the widget.
  245. */
  246. function () {
  247. return this._getOption('maxHeight');
  248. },
  249. set: function (value) {
  250. this._setOption('maxHeight', value);
  251. },
  252. enumerable: true,
  253. configurable: true
  254. });
  255. Object.defineProperty(DxTextAreaComponent.prototype, "maxLength", {
  256. get: /**
  257. * Specifies the maximum number of characters you can enter into the textbox.
  258. */
  259. function () {
  260. return this._getOption('maxLength');
  261. },
  262. set: function (value) {
  263. this._setOption('maxLength', value);
  264. },
  265. enumerable: true,
  266. configurable: true
  267. });
  268. Object.defineProperty(DxTextAreaComponent.prototype, "minHeight", {
  269. get: /**
  270. * Specifies the minimum height of the widget.
  271. */
  272. function () {
  273. return this._getOption('minHeight');
  274. },
  275. set: function (value) {
  276. this._setOption('minHeight', value);
  277. },
  278. enumerable: true,
  279. configurable: true
  280. });
  281. Object.defineProperty(DxTextAreaComponent.prototype, "name", {
  282. get: /**
  283. * The value to be assigned to the `name` attribute of the underlying HTML element.
  284. */
  285. function () {
  286. return this._getOption('name');
  287. },
  288. set: function (value) {
  289. this._setOption('name', value);
  290. },
  291. enumerable: true,
  292. configurable: true
  293. });
  294. Object.defineProperty(DxTextAreaComponent.prototype, "placeholder", {
  295. get: /**
  296. * The text displayed by the widget when the widget value is empty.
  297. */
  298. function () {
  299. return this._getOption('placeholder');
  300. },
  301. set: function (value) {
  302. this._setOption('placeholder', value);
  303. },
  304. enumerable: true,
  305. configurable: true
  306. });
  307. Object.defineProperty(DxTextAreaComponent.prototype, "readOnly", {
  308. get: /**
  309. * Specifies whether the editor is read-only.
  310. */
  311. function () {
  312. return this._getOption('readOnly');
  313. },
  314. set: function (value) {
  315. this._setOption('readOnly', value);
  316. },
  317. enumerable: true,
  318. configurable: true
  319. });
  320. Object.defineProperty(DxTextAreaComponent.prototype, "rtlEnabled", {
  321. get: /**
  322. * Switches the widget to a right-to-left representation.
  323. */
  324. function () {
  325. return this._getOption('rtlEnabled');
  326. },
  327. set: function (value) {
  328. this._setOption('rtlEnabled', value);
  329. },
  330. enumerable: true,
  331. configurable: true
  332. });
  333. Object.defineProperty(DxTextAreaComponent.prototype, "spellcheck", {
  334. get: /**
  335. * Specifies whether or not the widget checks the inner text for spelling mistakes.
  336. */
  337. function () {
  338. return this._getOption('spellcheck');
  339. },
  340. set: function (value) {
  341. this._setOption('spellcheck', value);
  342. },
  343. enumerable: true,
  344. configurable: true
  345. });
  346. Object.defineProperty(DxTextAreaComponent.prototype, "stylingMode", {
  347. get: /**
  348. * Specifies how the widget's text field is styled.
  349. */
  350. function () {
  351. return this._getOption('stylingMode');
  352. },
  353. set: function (value) {
  354. this._setOption('stylingMode', value);
  355. },
  356. enumerable: true,
  357. configurable: true
  358. });
  359. Object.defineProperty(DxTextAreaComponent.prototype, "tabIndex", {
  360. get: /**
  361. * Specifies the number of the element when the Tab key is used for navigating.
  362. */
  363. function () {
  364. return this._getOption('tabIndex');
  365. },
  366. set: function (value) {
  367. this._setOption('tabIndex', value);
  368. },
  369. enumerable: true,
  370. configurable: true
  371. });
  372. Object.defineProperty(DxTextAreaComponent.prototype, "text", {
  373. get: /**
  374. * The read-only option that holds the text displayed by the widget input element.
  375. */
  376. function () {
  377. return this._getOption('text');
  378. },
  379. set: function (value) {
  380. this._setOption('text', value);
  381. },
  382. enumerable: true,
  383. configurable: true
  384. });
  385. Object.defineProperty(DxTextAreaComponent.prototype, "validationError", {
  386. get: /**
  387. * Specifies information on the validation error when using a custom validation engine. Should be changed at runtime along with the isValid option.
  388. */
  389. function () {
  390. return this._getOption('validationError');
  391. },
  392. set: function (value) {
  393. this._setOption('validationError', value);
  394. },
  395. enumerable: true,
  396. configurable: true
  397. });
  398. Object.defineProperty(DxTextAreaComponent.prototype, "validationMessageMode", {
  399. get: /**
  400. * Specifies how the message about the validation rules that are not satisfied by this editor's value is displayed.
  401. */
  402. function () {
  403. return this._getOption('validationMessageMode');
  404. },
  405. set: function (value) {
  406. this._setOption('validationMessageMode', value);
  407. },
  408. enumerable: true,
  409. configurable: true
  410. });
  411. Object.defineProperty(DxTextAreaComponent.prototype, "value", {
  412. get: /**
  413. * Specifies a value the widget displays.
  414. */
  415. function () {
  416. return this._getOption('value');
  417. },
  418. set: function (value) {
  419. this._setOption('value', value);
  420. },
  421. enumerable: true,
  422. configurable: true
  423. });
  424. Object.defineProperty(DxTextAreaComponent.prototype, "valueChangeEvent", {
  425. get: /**
  426. * Specifies the DOM events after which the widget's value should be updated.
  427. */
  428. function () {
  429. return this._getOption('valueChangeEvent');
  430. },
  431. set: function (value) {
  432. this._setOption('valueChangeEvent', value);
  433. },
  434. enumerable: true,
  435. configurable: true
  436. });
  437. Object.defineProperty(DxTextAreaComponent.prototype, "visible", {
  438. get: /**
  439. * Specifies whether the widget is visible.
  440. */
  441. function () {
  442. return this._getOption('visible');
  443. },
  444. set: function (value) {
  445. this._setOption('visible', value);
  446. },
  447. enumerable: true,
  448. configurable: true
  449. });
  450. Object.defineProperty(DxTextAreaComponent.prototype, "width", {
  451. get: /**
  452. * Specifies the widget's width.
  453. */
  454. function () {
  455. return this._getOption('width');
  456. },
  457. set: function (value) {
  458. this._setOption('width', value);
  459. },
  460. enumerable: true,
  461. configurable: true
  462. });
  463. DxTextAreaComponent.prototype.change = function (_) { };
  464. DxTextAreaComponent.prototype._createInstance = function (element, options) {
  465. return new text_area_1.default(element, options);
  466. };
  467. DxTextAreaComponent.prototype.writeValue = function (value) {
  468. this.eventHelper.lockedValueChangeEvent = true;
  469. this.value = value;
  470. this.eventHelper.lockedValueChangeEvent = false;
  471. };
  472. DxTextAreaComponent.prototype.setDisabledState = function (isDisabled) {
  473. this.disabled = isDisabled;
  474. };
  475. DxTextAreaComponent.prototype.registerOnChange = function (fn) { this.change = fn; };
  476. DxTextAreaComponent.prototype.registerOnTouched = function (fn) { this.touched = fn; };
  477. DxTextAreaComponent.prototype._createWidget = function (element) {
  478. var _this = this;
  479. _super.prototype._createWidget.call(this, element);
  480. this.instance.on('focusOut', function (e) {
  481. _this.eventHelper.fireNgEvent('onBlur', [e]);
  482. });
  483. };
  484. DxTextAreaComponent.prototype.ngOnDestroy = function () {
  485. this._destroyWidget();
  486. };
  487. DxTextAreaComponent.decorators = [
  488. { type: core_1.Component, args: [{
  489. selector: 'dx-text-area',
  490. template: '',
  491. providers: [
  492. template_host_1.DxTemplateHost,
  493. watcher_helper_1.WatcherHelper,
  494. CUSTOM_VALUE_ACCESSOR_PROVIDER,
  495. nested_option_1.NestedOptionHost
  496. ]
  497. },] },
  498. ];
  499. /** @nocollapse */
  500. DxTextAreaComponent.ctorParameters = function () { return [
  501. { type: core_1.ElementRef, },
  502. { type: core_1.NgZone, },
  503. { type: template_host_1.DxTemplateHost, },
  504. { type: watcher_helper_1.WatcherHelper, },
  505. { type: nested_option_1.NestedOptionHost, },
  506. { type: platform_browser_2.TransferState, },
  507. { type: undefined, decorators: [{ type: core_1.Inject, args: [core_1.PLATFORM_ID,] },] },
  508. ]; };
  509. DxTextAreaComponent.propDecorators = {
  510. "accessKey": [{ type: core_1.Input },],
  511. "activeStateEnabled": [{ type: core_1.Input },],
  512. "autoResizeEnabled": [{ type: core_1.Input },],
  513. "disabled": [{ type: core_1.Input },],
  514. "elementAttr": [{ type: core_1.Input },],
  515. "focusStateEnabled": [{ type: core_1.Input },],
  516. "height": [{ type: core_1.Input },],
  517. "hint": [{ type: core_1.Input },],
  518. "hoverStateEnabled": [{ type: core_1.Input },],
  519. "inputAttr": [{ type: core_1.Input },],
  520. "isValid": [{ type: core_1.Input },],
  521. "maxHeight": [{ type: core_1.Input },],
  522. "maxLength": [{ type: core_1.Input },],
  523. "minHeight": [{ type: core_1.Input },],
  524. "name": [{ type: core_1.Input },],
  525. "placeholder": [{ type: core_1.Input },],
  526. "readOnly": [{ type: core_1.Input },],
  527. "rtlEnabled": [{ type: core_1.Input },],
  528. "spellcheck": [{ type: core_1.Input },],
  529. "stylingMode": [{ type: core_1.Input },],
  530. "tabIndex": [{ type: core_1.Input },],
  531. "text": [{ type: core_1.Input },],
  532. "validationError": [{ type: core_1.Input },],
  533. "validationMessageMode": [{ type: core_1.Input },],
  534. "value": [{ type: core_1.Input },],
  535. "valueChangeEvent": [{ type: core_1.Input },],
  536. "visible": [{ type: core_1.Input },],
  537. "width": [{ type: core_1.Input },],
  538. "onChange": [{ type: core_1.Output },],
  539. "onContentReady": [{ type: core_1.Output },],
  540. "onCopy": [{ type: core_1.Output },],
  541. "onCut": [{ type: core_1.Output },],
  542. "onDisposing": [{ type: core_1.Output },],
  543. "onEnterKey": [{ type: core_1.Output },],
  544. "onFocusIn": [{ type: core_1.Output },],
  545. "onFocusOut": [{ type: core_1.Output },],
  546. "onInitialized": [{ type: core_1.Output },],
  547. "onInput": [{ type: core_1.Output },],
  548. "onKeyDown": [{ type: core_1.Output },],
  549. "onKeyPress": [{ type: core_1.Output },],
  550. "onKeyUp": [{ type: core_1.Output },],
  551. "onOptionChanged": [{ type: core_1.Output },],
  552. "onPaste": [{ type: core_1.Output },],
  553. "onValueChanged": [{ type: core_1.Output },],
  554. "accessKeyChange": [{ type: core_1.Output },],
  555. "activeStateEnabledChange": [{ type: core_1.Output },],
  556. "autoResizeEnabledChange": [{ type: core_1.Output },],
  557. "disabledChange": [{ type: core_1.Output },],
  558. "elementAttrChange": [{ type: core_1.Output },],
  559. "focusStateEnabledChange": [{ type: core_1.Output },],
  560. "heightChange": [{ type: core_1.Output },],
  561. "hintChange": [{ type: core_1.Output },],
  562. "hoverStateEnabledChange": [{ type: core_1.Output },],
  563. "inputAttrChange": [{ type: core_1.Output },],
  564. "isValidChange": [{ type: core_1.Output },],
  565. "maxHeightChange": [{ type: core_1.Output },],
  566. "maxLengthChange": [{ type: core_1.Output },],
  567. "minHeightChange": [{ type: core_1.Output },],
  568. "nameChange": [{ type: core_1.Output },],
  569. "placeholderChange": [{ type: core_1.Output },],
  570. "readOnlyChange": [{ type: core_1.Output },],
  571. "rtlEnabledChange": [{ type: core_1.Output },],
  572. "spellcheckChange": [{ type: core_1.Output },],
  573. "stylingModeChange": [{ type: core_1.Output },],
  574. "tabIndexChange": [{ type: core_1.Output },],
  575. "textChange": [{ type: core_1.Output },],
  576. "validationErrorChange": [{ type: core_1.Output },],
  577. "validationMessageModeChange": [{ type: core_1.Output },],
  578. "valueChange": [{ type: core_1.Output },],
  579. "valueChangeEventChange": [{ type: core_1.Output },],
  580. "visibleChange": [{ type: core_1.Output },],
  581. "widthChange": [{ type: core_1.Output },],
  582. "onBlur": [{ type: core_1.Output },],
  583. "change": [{ type: core_1.HostListener, args: ['valueChange', ['$event'],] },],
  584. "touched": [{ type: core_1.HostListener, args: ['onBlur', ['$event'],] },],
  585. };
  586. return DxTextAreaComponent;
  587. }(component_1.DxComponent));
  588. exports.DxTextAreaComponent = DxTextAreaComponent;
  589. var DxTextAreaModule = (function () {
  590. function DxTextAreaModule() {
  591. }
  592. DxTextAreaModule.decorators = [
  593. { type: core_1.NgModule, args: [{
  594. imports: [
  595. integration_1.DxIntegrationModule,
  596. template_1.DxTemplateModule,
  597. platform_browser_1.BrowserTransferStateModule
  598. ],
  599. declarations: [
  600. DxTextAreaComponent
  601. ],
  602. exports: [
  603. DxTextAreaComponent,
  604. template_1.DxTemplateModule
  605. ]
  606. },] },
  607. ];
  608. return DxTextAreaModule;
  609. }());
  610. exports.DxTextAreaModule = DxTextAreaModule;
  611. //# sourceMappingURL=text-area.js.map