texts.js 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726
  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 core_1 = require("@angular/core");
  26. var nested_option_1 = require("../../core/nested-option");
  27. var nested_option_2 = require("../../core/nested-option");
  28. var DxoTextsComponent = (function (_super) {
  29. __extends(DxoTextsComponent, _super);
  30. function DxoTextsComponent(parentOptionHost, optionHost) {
  31. var _this = _super.call(this) || this;
  32. parentOptionHost.setNestedOption(_this);
  33. optionHost.setHost(_this, _this._fullOptionPath.bind(_this));
  34. return _this;
  35. }
  36. Object.defineProperty(DxoTextsComponent.prototype, "fix", {
  37. get: function () {
  38. return this._getOption('fix');
  39. },
  40. set: function (value) {
  41. this._setOption('fix', value);
  42. },
  43. enumerable: true,
  44. configurable: true
  45. });
  46. Object.defineProperty(DxoTextsComponent.prototype, "leftPosition", {
  47. get: function () {
  48. return this._getOption('leftPosition');
  49. },
  50. set: function (value) {
  51. this._setOption('leftPosition', value);
  52. },
  53. enumerable: true,
  54. configurable: true
  55. });
  56. Object.defineProperty(DxoTextsComponent.prototype, "rightPosition", {
  57. get: function () {
  58. return this._getOption('rightPosition');
  59. },
  60. set: function (value) {
  61. this._setOption('rightPosition', value);
  62. },
  63. enumerable: true,
  64. configurable: true
  65. });
  66. Object.defineProperty(DxoTextsComponent.prototype, "unfix", {
  67. get: function () {
  68. return this._getOption('unfix');
  69. },
  70. set: function (value) {
  71. this._setOption('unfix', value);
  72. },
  73. enumerable: true,
  74. configurable: true
  75. });
  76. Object.defineProperty(DxoTextsComponent.prototype, "addRow", {
  77. get: function () {
  78. return this._getOption('addRow');
  79. },
  80. set: function (value) {
  81. this._setOption('addRow', value);
  82. },
  83. enumerable: true,
  84. configurable: true
  85. });
  86. Object.defineProperty(DxoTextsComponent.prototype, "cancelAllChanges", {
  87. get: function () {
  88. return this._getOption('cancelAllChanges');
  89. },
  90. set: function (value) {
  91. this._setOption('cancelAllChanges', value);
  92. },
  93. enumerable: true,
  94. configurable: true
  95. });
  96. Object.defineProperty(DxoTextsComponent.prototype, "cancelRowChanges", {
  97. get: function () {
  98. return this._getOption('cancelRowChanges');
  99. },
  100. set: function (value) {
  101. this._setOption('cancelRowChanges', value);
  102. },
  103. enumerable: true,
  104. configurable: true
  105. });
  106. Object.defineProperty(DxoTextsComponent.prototype, "confirmDeleteMessage", {
  107. get: function () {
  108. return this._getOption('confirmDeleteMessage');
  109. },
  110. set: function (value) {
  111. this._setOption('confirmDeleteMessage', value);
  112. },
  113. enumerable: true,
  114. configurable: true
  115. });
  116. Object.defineProperty(DxoTextsComponent.prototype, "confirmDeleteTitle", {
  117. get: function () {
  118. return this._getOption('confirmDeleteTitle');
  119. },
  120. set: function (value) {
  121. this._setOption('confirmDeleteTitle', value);
  122. },
  123. enumerable: true,
  124. configurable: true
  125. });
  126. Object.defineProperty(DxoTextsComponent.prototype, "deleteRow", {
  127. get: function () {
  128. return this._getOption('deleteRow');
  129. },
  130. set: function (value) {
  131. this._setOption('deleteRow', value);
  132. },
  133. enumerable: true,
  134. configurable: true
  135. });
  136. Object.defineProperty(DxoTextsComponent.prototype, "editRow", {
  137. get: function () {
  138. return this._getOption('editRow');
  139. },
  140. set: function (value) {
  141. this._setOption('editRow', value);
  142. },
  143. enumerable: true,
  144. configurable: true
  145. });
  146. Object.defineProperty(DxoTextsComponent.prototype, "saveAllChanges", {
  147. get: function () {
  148. return this._getOption('saveAllChanges');
  149. },
  150. set: function (value) {
  151. this._setOption('saveAllChanges', value);
  152. },
  153. enumerable: true,
  154. configurable: true
  155. });
  156. Object.defineProperty(DxoTextsComponent.prototype, "saveRowChanges", {
  157. get: function () {
  158. return this._getOption('saveRowChanges');
  159. },
  160. set: function (value) {
  161. this._setOption('saveRowChanges', value);
  162. },
  163. enumerable: true,
  164. configurable: true
  165. });
  166. Object.defineProperty(DxoTextsComponent.prototype, "undeleteRow", {
  167. get: function () {
  168. return this._getOption('undeleteRow');
  169. },
  170. set: function (value) {
  171. this._setOption('undeleteRow', value);
  172. },
  173. enumerable: true,
  174. configurable: true
  175. });
  176. Object.defineProperty(DxoTextsComponent.prototype, "validationCancelChanges", {
  177. get: function () {
  178. return this._getOption('validationCancelChanges');
  179. },
  180. set: function (value) {
  181. this._setOption('validationCancelChanges', value);
  182. },
  183. enumerable: true,
  184. configurable: true
  185. });
  186. Object.defineProperty(DxoTextsComponent.prototype, "exportAll", {
  187. get: function () {
  188. return this._getOption('exportAll');
  189. },
  190. set: function (value) {
  191. this._setOption('exportAll', value);
  192. },
  193. enumerable: true,
  194. configurable: true
  195. });
  196. Object.defineProperty(DxoTextsComponent.prototype, "exportSelectedRows", {
  197. get: function () {
  198. return this._getOption('exportSelectedRows');
  199. },
  200. set: function (value) {
  201. this._setOption('exportSelectedRows', value);
  202. },
  203. enumerable: true,
  204. configurable: true
  205. });
  206. Object.defineProperty(DxoTextsComponent.prototype, "exportTo", {
  207. get: function () {
  208. return this._getOption('exportTo');
  209. },
  210. set: function (value) {
  211. this._setOption('exportTo', value);
  212. },
  213. enumerable: true,
  214. configurable: true
  215. });
  216. Object.defineProperty(DxoTextsComponent.prototype, "clearFilter", {
  217. get: function () {
  218. return this._getOption('clearFilter');
  219. },
  220. set: function (value) {
  221. this._setOption('clearFilter', value);
  222. },
  223. enumerable: true,
  224. configurable: true
  225. });
  226. Object.defineProperty(DxoTextsComponent.prototype, "createFilter", {
  227. get: function () {
  228. return this._getOption('createFilter');
  229. },
  230. set: function (value) {
  231. this._setOption('createFilter', value);
  232. },
  233. enumerable: true,
  234. configurable: true
  235. });
  236. Object.defineProperty(DxoTextsComponent.prototype, "filterEnabledHint", {
  237. get: function () {
  238. return this._getOption('filterEnabledHint');
  239. },
  240. set: function (value) {
  241. this._setOption('filterEnabledHint', value);
  242. },
  243. enumerable: true,
  244. configurable: true
  245. });
  246. Object.defineProperty(DxoTextsComponent.prototype, "groupByThisColumn", {
  247. get: function () {
  248. return this._getOption('groupByThisColumn');
  249. },
  250. set: function (value) {
  251. this._setOption('groupByThisColumn', value);
  252. },
  253. enumerable: true,
  254. configurable: true
  255. });
  256. Object.defineProperty(DxoTextsComponent.prototype, "groupContinuedMessage", {
  257. get: function () {
  258. return this._getOption('groupContinuedMessage');
  259. },
  260. set: function (value) {
  261. this._setOption('groupContinuedMessage', value);
  262. },
  263. enumerable: true,
  264. configurable: true
  265. });
  266. Object.defineProperty(DxoTextsComponent.prototype, "groupContinuesMessage", {
  267. get: function () {
  268. return this._getOption('groupContinuesMessage');
  269. },
  270. set: function (value) {
  271. this._setOption('groupContinuesMessage', value);
  272. },
  273. enumerable: true,
  274. configurable: true
  275. });
  276. Object.defineProperty(DxoTextsComponent.prototype, "ungroup", {
  277. get: function () {
  278. return this._getOption('ungroup');
  279. },
  280. set: function (value) {
  281. this._setOption('ungroup', value);
  282. },
  283. enumerable: true,
  284. configurable: true
  285. });
  286. Object.defineProperty(DxoTextsComponent.prototype, "ungroupAll", {
  287. get: function () {
  288. return this._getOption('ungroupAll');
  289. },
  290. set: function (value) {
  291. this._setOption('ungroupAll', value);
  292. },
  293. enumerable: true,
  294. configurable: true
  295. });
  296. Object.defineProperty(DxoTextsComponent.prototype, "cancel", {
  297. get: function () {
  298. return this._getOption('cancel');
  299. },
  300. set: function (value) {
  301. this._setOption('cancel', value);
  302. },
  303. enumerable: true,
  304. configurable: true
  305. });
  306. Object.defineProperty(DxoTextsComponent.prototype, "emptyValue", {
  307. get: function () {
  308. return this._getOption('emptyValue');
  309. },
  310. set: function (value) {
  311. this._setOption('emptyValue', value);
  312. },
  313. enumerable: true,
  314. configurable: true
  315. });
  316. Object.defineProperty(DxoTextsComponent.prototype, "ok", {
  317. get: function () {
  318. return this._getOption('ok');
  319. },
  320. set: function (value) {
  321. this._setOption('ok', value);
  322. },
  323. enumerable: true,
  324. configurable: true
  325. });
  326. Object.defineProperty(DxoTextsComponent.prototype, "avg", {
  327. get: function () {
  328. return this._getOption('avg');
  329. },
  330. set: function (value) {
  331. this._setOption('avg', value);
  332. },
  333. enumerable: true,
  334. configurable: true
  335. });
  336. Object.defineProperty(DxoTextsComponent.prototype, "avgOtherColumn", {
  337. get: function () {
  338. return this._getOption('avgOtherColumn');
  339. },
  340. set: function (value) {
  341. this._setOption('avgOtherColumn', value);
  342. },
  343. enumerable: true,
  344. configurable: true
  345. });
  346. Object.defineProperty(DxoTextsComponent.prototype, "count", {
  347. get: function () {
  348. return this._getOption('count');
  349. },
  350. set: function (value) {
  351. this._setOption('count', value);
  352. },
  353. enumerable: true,
  354. configurable: true
  355. });
  356. Object.defineProperty(DxoTextsComponent.prototype, "max", {
  357. get: function () {
  358. return this._getOption('max');
  359. },
  360. set: function (value) {
  361. this._setOption('max', value);
  362. },
  363. enumerable: true,
  364. configurable: true
  365. });
  366. Object.defineProperty(DxoTextsComponent.prototype, "maxOtherColumn", {
  367. get: function () {
  368. return this._getOption('maxOtherColumn');
  369. },
  370. set: function (value) {
  371. this._setOption('maxOtherColumn', value);
  372. },
  373. enumerable: true,
  374. configurable: true
  375. });
  376. Object.defineProperty(DxoTextsComponent.prototype, "min", {
  377. get: function () {
  378. return this._getOption('min');
  379. },
  380. set: function (value) {
  381. this._setOption('min', value);
  382. },
  383. enumerable: true,
  384. configurable: true
  385. });
  386. Object.defineProperty(DxoTextsComponent.prototype, "minOtherColumn", {
  387. get: function () {
  388. return this._getOption('minOtherColumn');
  389. },
  390. set: function (value) {
  391. this._setOption('minOtherColumn', value);
  392. },
  393. enumerable: true,
  394. configurable: true
  395. });
  396. Object.defineProperty(DxoTextsComponent.prototype, "sum", {
  397. get: function () {
  398. return this._getOption('sum');
  399. },
  400. set: function (value) {
  401. this._setOption('sum', value);
  402. },
  403. enumerable: true,
  404. configurable: true
  405. });
  406. Object.defineProperty(DxoTextsComponent.prototype, "sumOtherColumn", {
  407. get: function () {
  408. return this._getOption('sumOtherColumn');
  409. },
  410. set: function (value) {
  411. this._setOption('sumOtherColumn', value);
  412. },
  413. enumerable: true,
  414. configurable: true
  415. });
  416. Object.defineProperty(DxoTextsComponent.prototype, "allFields", {
  417. get: function () {
  418. return this._getOption('allFields');
  419. },
  420. set: function (value) {
  421. this._setOption('allFields', value);
  422. },
  423. enumerable: true,
  424. configurable: true
  425. });
  426. Object.defineProperty(DxoTextsComponent.prototype, "columnFields", {
  427. get: function () {
  428. return this._getOption('columnFields');
  429. },
  430. set: function (value) {
  431. this._setOption('columnFields', value);
  432. },
  433. enumerable: true,
  434. configurable: true
  435. });
  436. Object.defineProperty(DxoTextsComponent.prototype, "dataFields", {
  437. get: function () {
  438. return this._getOption('dataFields');
  439. },
  440. set: function (value) {
  441. this._setOption('dataFields', value);
  442. },
  443. enumerable: true,
  444. configurable: true
  445. });
  446. Object.defineProperty(DxoTextsComponent.prototype, "filterFields", {
  447. get: function () {
  448. return this._getOption('filterFields');
  449. },
  450. set: function (value) {
  451. this._setOption('filterFields', value);
  452. },
  453. enumerable: true,
  454. configurable: true
  455. });
  456. Object.defineProperty(DxoTextsComponent.prototype, "rowFields", {
  457. get: function () {
  458. return this._getOption('rowFields');
  459. },
  460. set: function (value) {
  461. this._setOption('rowFields', value);
  462. },
  463. enumerable: true,
  464. configurable: true
  465. });
  466. Object.defineProperty(DxoTextsComponent.prototype, "columnFieldArea", {
  467. get: function () {
  468. return this._getOption('columnFieldArea');
  469. },
  470. set: function (value) {
  471. this._setOption('columnFieldArea', value);
  472. },
  473. enumerable: true,
  474. configurable: true
  475. });
  476. Object.defineProperty(DxoTextsComponent.prototype, "dataFieldArea", {
  477. get: function () {
  478. return this._getOption('dataFieldArea');
  479. },
  480. set: function (value) {
  481. this._setOption('dataFieldArea', value);
  482. },
  483. enumerable: true,
  484. configurable: true
  485. });
  486. Object.defineProperty(DxoTextsComponent.prototype, "filterFieldArea", {
  487. get: function () {
  488. return this._getOption('filterFieldArea');
  489. },
  490. set: function (value) {
  491. this._setOption('filterFieldArea', value);
  492. },
  493. enumerable: true,
  494. configurable: true
  495. });
  496. Object.defineProperty(DxoTextsComponent.prototype, "rowFieldArea", {
  497. get: function () {
  498. return this._getOption('rowFieldArea');
  499. },
  500. set: function (value) {
  501. this._setOption('rowFieldArea', value);
  502. },
  503. enumerable: true,
  504. configurable: true
  505. });
  506. Object.defineProperty(DxoTextsComponent.prototype, "collapseAll", {
  507. get: function () {
  508. return this._getOption('collapseAll');
  509. },
  510. set: function (value) {
  511. this._setOption('collapseAll', value);
  512. },
  513. enumerable: true,
  514. configurable: true
  515. });
  516. Object.defineProperty(DxoTextsComponent.prototype, "dataNotAvailable", {
  517. get: function () {
  518. return this._getOption('dataNotAvailable');
  519. },
  520. set: function (value) {
  521. this._setOption('dataNotAvailable', value);
  522. },
  523. enumerable: true,
  524. configurable: true
  525. });
  526. Object.defineProperty(DxoTextsComponent.prototype, "expandAll", {
  527. get: function () {
  528. return this._getOption('expandAll');
  529. },
  530. set: function (value) {
  531. this._setOption('expandAll', value);
  532. },
  533. enumerable: true,
  534. configurable: true
  535. });
  536. Object.defineProperty(DxoTextsComponent.prototype, "exportToExcel", {
  537. get: function () {
  538. return this._getOption('exportToExcel');
  539. },
  540. set: function (value) {
  541. this._setOption('exportToExcel', value);
  542. },
  543. enumerable: true,
  544. configurable: true
  545. });
  546. Object.defineProperty(DxoTextsComponent.prototype, "grandTotal", {
  547. get: function () {
  548. return this._getOption('grandTotal');
  549. },
  550. set: function (value) {
  551. this._setOption('grandTotal', value);
  552. },
  553. enumerable: true,
  554. configurable: true
  555. });
  556. Object.defineProperty(DxoTextsComponent.prototype, "noData", {
  557. get: function () {
  558. return this._getOption('noData');
  559. },
  560. set: function (value) {
  561. this._setOption('noData', value);
  562. },
  563. enumerable: true,
  564. configurable: true
  565. });
  566. Object.defineProperty(DxoTextsComponent.prototype, "removeAllSorting", {
  567. get: function () {
  568. return this._getOption('removeAllSorting');
  569. },
  570. set: function (value) {
  571. this._setOption('removeAllSorting', value);
  572. },
  573. enumerable: true,
  574. configurable: true
  575. });
  576. Object.defineProperty(DxoTextsComponent.prototype, "showFieldChooser", {
  577. get: function () {
  578. return this._getOption('showFieldChooser');
  579. },
  580. set: function (value) {
  581. this._setOption('showFieldChooser', value);
  582. },
  583. enumerable: true,
  584. configurable: true
  585. });
  586. Object.defineProperty(DxoTextsComponent.prototype, "sortColumnBySummary", {
  587. get: function () {
  588. return this._getOption('sortColumnBySummary');
  589. },
  590. set: function (value) {
  591. this._setOption('sortColumnBySummary', value);
  592. },
  593. enumerable: true,
  594. configurable: true
  595. });
  596. Object.defineProperty(DxoTextsComponent.prototype, "sortRowBySummary", {
  597. get: function () {
  598. return this._getOption('sortRowBySummary');
  599. },
  600. set: function (value) {
  601. this._setOption('sortRowBySummary', value);
  602. },
  603. enumerable: true,
  604. configurable: true
  605. });
  606. Object.defineProperty(DxoTextsComponent.prototype, "total", {
  607. get: function () {
  608. return this._getOption('total');
  609. },
  610. set: function (value) {
  611. this._setOption('total', value);
  612. },
  613. enumerable: true,
  614. configurable: true
  615. });
  616. Object.defineProperty(DxoTextsComponent.prototype, "addRowToNode", {
  617. get: function () {
  618. return this._getOption('addRowToNode');
  619. },
  620. set: function (value) {
  621. this._setOption('addRowToNode', value);
  622. },
  623. enumerable: true,
  624. configurable: true
  625. });
  626. Object.defineProperty(DxoTextsComponent.prototype, "_optionPath", {
  627. get: function () {
  628. return 'texts';
  629. },
  630. enumerable: true,
  631. configurable: true
  632. });
  633. DxoTextsComponent.decorators = [
  634. { type: core_1.Component, args: [{
  635. selector: 'dxo-texts',
  636. template: '',
  637. styles: [''],
  638. providers: [nested_option_1.NestedOptionHost]
  639. },] },
  640. ];
  641. /** @nocollapse */
  642. DxoTextsComponent.ctorParameters = function () { return [
  643. { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.SkipSelf }, { type: core_1.Host },] },
  644. { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.Host },] },
  645. ]; };
  646. DxoTextsComponent.propDecorators = {
  647. "fix": [{ type: core_1.Input },],
  648. "leftPosition": [{ type: core_1.Input },],
  649. "rightPosition": [{ type: core_1.Input },],
  650. "unfix": [{ type: core_1.Input },],
  651. "addRow": [{ type: core_1.Input },],
  652. "cancelAllChanges": [{ type: core_1.Input },],
  653. "cancelRowChanges": [{ type: core_1.Input },],
  654. "confirmDeleteMessage": [{ type: core_1.Input },],
  655. "confirmDeleteTitle": [{ type: core_1.Input },],
  656. "deleteRow": [{ type: core_1.Input },],
  657. "editRow": [{ type: core_1.Input },],
  658. "saveAllChanges": [{ type: core_1.Input },],
  659. "saveRowChanges": [{ type: core_1.Input },],
  660. "undeleteRow": [{ type: core_1.Input },],
  661. "validationCancelChanges": [{ type: core_1.Input },],
  662. "exportAll": [{ type: core_1.Input },],
  663. "exportSelectedRows": [{ type: core_1.Input },],
  664. "exportTo": [{ type: core_1.Input },],
  665. "clearFilter": [{ type: core_1.Input },],
  666. "createFilter": [{ type: core_1.Input },],
  667. "filterEnabledHint": [{ type: core_1.Input },],
  668. "groupByThisColumn": [{ type: core_1.Input },],
  669. "groupContinuedMessage": [{ type: core_1.Input },],
  670. "groupContinuesMessage": [{ type: core_1.Input },],
  671. "ungroup": [{ type: core_1.Input },],
  672. "ungroupAll": [{ type: core_1.Input },],
  673. "cancel": [{ type: core_1.Input },],
  674. "emptyValue": [{ type: core_1.Input },],
  675. "ok": [{ type: core_1.Input },],
  676. "avg": [{ type: core_1.Input },],
  677. "avgOtherColumn": [{ type: core_1.Input },],
  678. "count": [{ type: core_1.Input },],
  679. "max": [{ type: core_1.Input },],
  680. "maxOtherColumn": [{ type: core_1.Input },],
  681. "min": [{ type: core_1.Input },],
  682. "minOtherColumn": [{ type: core_1.Input },],
  683. "sum": [{ type: core_1.Input },],
  684. "sumOtherColumn": [{ type: core_1.Input },],
  685. "allFields": [{ type: core_1.Input },],
  686. "columnFields": [{ type: core_1.Input },],
  687. "dataFields": [{ type: core_1.Input },],
  688. "filterFields": [{ type: core_1.Input },],
  689. "rowFields": [{ type: core_1.Input },],
  690. "columnFieldArea": [{ type: core_1.Input },],
  691. "dataFieldArea": [{ type: core_1.Input },],
  692. "filterFieldArea": [{ type: core_1.Input },],
  693. "rowFieldArea": [{ type: core_1.Input },],
  694. "collapseAll": [{ type: core_1.Input },],
  695. "dataNotAvailable": [{ type: core_1.Input },],
  696. "expandAll": [{ type: core_1.Input },],
  697. "exportToExcel": [{ type: core_1.Input },],
  698. "grandTotal": [{ type: core_1.Input },],
  699. "noData": [{ type: core_1.Input },],
  700. "removeAllSorting": [{ type: core_1.Input },],
  701. "showFieldChooser": [{ type: core_1.Input },],
  702. "sortColumnBySummary": [{ type: core_1.Input },],
  703. "sortRowBySummary": [{ type: core_1.Input },],
  704. "total": [{ type: core_1.Input },],
  705. "addRowToNode": [{ type: core_1.Input },],
  706. };
  707. return DxoTextsComponent;
  708. }(nested_option_2.NestedOption));
  709. exports.DxoTextsComponent = DxoTextsComponent;
  710. var DxoTextsModule = (function () {
  711. function DxoTextsModule() {
  712. }
  713. DxoTextsModule.decorators = [
  714. { type: core_1.NgModule, args: [{
  715. declarations: [
  716. DxoTextsComponent
  717. ],
  718. exports: [
  719. DxoTextsComponent
  720. ],
  721. },] },
  722. ];
  723. return DxoTextsModule;
  724. }());
  725. exports.DxoTextsModule = DxoTextsModule;
  726. //# sourceMappingURL=texts.js.map