| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726 |
- "use strict";
- var __extends = (this && this.__extends) || (function () {
- var extendStatics = Object.setPrototypeOf ||
- ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
- function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
- return function (d, b) {
- extendStatics(d, b);
- function __() { this.constructor = d; }
- d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
- };
- })();
- /*!
- * devextreme-angular
- * Version: 19.1.16
- * Build date: Tue Oct 18 2022
- *
- * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
- *
- * This software may be modified and distributed under the terms
- * of the MIT license. See the LICENSE file in the root of the project for details.
- *
- * https://github.com/DevExpress/devextreme-angular
- */
- Object.defineProperty(exports, "__esModule", { value: true });
- var core_1 = require("@angular/core");
- var nested_option_1 = require("../../core/nested-option");
- var nested_option_2 = require("../../core/nested-option");
- var DxoTextsComponent = (function (_super) {
- __extends(DxoTextsComponent, _super);
- function DxoTextsComponent(parentOptionHost, optionHost) {
- var _this = _super.call(this) || this;
- parentOptionHost.setNestedOption(_this);
- optionHost.setHost(_this, _this._fullOptionPath.bind(_this));
- return _this;
- }
- Object.defineProperty(DxoTextsComponent.prototype, "fix", {
- get: function () {
- return this._getOption('fix');
- },
- set: function (value) {
- this._setOption('fix', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "leftPosition", {
- get: function () {
- return this._getOption('leftPosition');
- },
- set: function (value) {
- this._setOption('leftPosition', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "rightPosition", {
- get: function () {
- return this._getOption('rightPosition');
- },
- set: function (value) {
- this._setOption('rightPosition', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "unfix", {
- get: function () {
- return this._getOption('unfix');
- },
- set: function (value) {
- this._setOption('unfix', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "addRow", {
- get: function () {
- return this._getOption('addRow');
- },
- set: function (value) {
- this._setOption('addRow', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "cancelAllChanges", {
- get: function () {
- return this._getOption('cancelAllChanges');
- },
- set: function (value) {
- this._setOption('cancelAllChanges', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "cancelRowChanges", {
- get: function () {
- return this._getOption('cancelRowChanges');
- },
- set: function (value) {
- this._setOption('cancelRowChanges', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "confirmDeleteMessage", {
- get: function () {
- return this._getOption('confirmDeleteMessage');
- },
- set: function (value) {
- this._setOption('confirmDeleteMessage', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "confirmDeleteTitle", {
- get: function () {
- return this._getOption('confirmDeleteTitle');
- },
- set: function (value) {
- this._setOption('confirmDeleteTitle', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "deleteRow", {
- get: function () {
- return this._getOption('deleteRow');
- },
- set: function (value) {
- this._setOption('deleteRow', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "editRow", {
- get: function () {
- return this._getOption('editRow');
- },
- set: function (value) {
- this._setOption('editRow', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "saveAllChanges", {
- get: function () {
- return this._getOption('saveAllChanges');
- },
- set: function (value) {
- this._setOption('saveAllChanges', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "saveRowChanges", {
- get: function () {
- return this._getOption('saveRowChanges');
- },
- set: function (value) {
- this._setOption('saveRowChanges', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "undeleteRow", {
- get: function () {
- return this._getOption('undeleteRow');
- },
- set: function (value) {
- this._setOption('undeleteRow', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "validationCancelChanges", {
- get: function () {
- return this._getOption('validationCancelChanges');
- },
- set: function (value) {
- this._setOption('validationCancelChanges', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "exportAll", {
- get: function () {
- return this._getOption('exportAll');
- },
- set: function (value) {
- this._setOption('exportAll', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "exportSelectedRows", {
- get: function () {
- return this._getOption('exportSelectedRows');
- },
- set: function (value) {
- this._setOption('exportSelectedRows', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "exportTo", {
- get: function () {
- return this._getOption('exportTo');
- },
- set: function (value) {
- this._setOption('exportTo', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "clearFilter", {
- get: function () {
- return this._getOption('clearFilter');
- },
- set: function (value) {
- this._setOption('clearFilter', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "createFilter", {
- get: function () {
- return this._getOption('createFilter');
- },
- set: function (value) {
- this._setOption('createFilter', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "filterEnabledHint", {
- get: function () {
- return this._getOption('filterEnabledHint');
- },
- set: function (value) {
- this._setOption('filterEnabledHint', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "groupByThisColumn", {
- get: function () {
- return this._getOption('groupByThisColumn');
- },
- set: function (value) {
- this._setOption('groupByThisColumn', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "groupContinuedMessage", {
- get: function () {
- return this._getOption('groupContinuedMessage');
- },
- set: function (value) {
- this._setOption('groupContinuedMessage', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "groupContinuesMessage", {
- get: function () {
- return this._getOption('groupContinuesMessage');
- },
- set: function (value) {
- this._setOption('groupContinuesMessage', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "ungroup", {
- get: function () {
- return this._getOption('ungroup');
- },
- set: function (value) {
- this._setOption('ungroup', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "ungroupAll", {
- get: function () {
- return this._getOption('ungroupAll');
- },
- set: function (value) {
- this._setOption('ungroupAll', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "cancel", {
- get: function () {
- return this._getOption('cancel');
- },
- set: function (value) {
- this._setOption('cancel', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "emptyValue", {
- get: function () {
- return this._getOption('emptyValue');
- },
- set: function (value) {
- this._setOption('emptyValue', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "ok", {
- get: function () {
- return this._getOption('ok');
- },
- set: function (value) {
- this._setOption('ok', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "avg", {
- get: function () {
- return this._getOption('avg');
- },
- set: function (value) {
- this._setOption('avg', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "avgOtherColumn", {
- get: function () {
- return this._getOption('avgOtherColumn');
- },
- set: function (value) {
- this._setOption('avgOtherColumn', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "count", {
- get: function () {
- return this._getOption('count');
- },
- set: function (value) {
- this._setOption('count', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "max", {
- get: function () {
- return this._getOption('max');
- },
- set: function (value) {
- this._setOption('max', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "maxOtherColumn", {
- get: function () {
- return this._getOption('maxOtherColumn');
- },
- set: function (value) {
- this._setOption('maxOtherColumn', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "min", {
- get: function () {
- return this._getOption('min');
- },
- set: function (value) {
- this._setOption('min', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "minOtherColumn", {
- get: function () {
- return this._getOption('minOtherColumn');
- },
- set: function (value) {
- this._setOption('minOtherColumn', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "sum", {
- get: function () {
- return this._getOption('sum');
- },
- set: function (value) {
- this._setOption('sum', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "sumOtherColumn", {
- get: function () {
- return this._getOption('sumOtherColumn');
- },
- set: function (value) {
- this._setOption('sumOtherColumn', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "allFields", {
- get: function () {
- return this._getOption('allFields');
- },
- set: function (value) {
- this._setOption('allFields', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "columnFields", {
- get: function () {
- return this._getOption('columnFields');
- },
- set: function (value) {
- this._setOption('columnFields', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "dataFields", {
- get: function () {
- return this._getOption('dataFields');
- },
- set: function (value) {
- this._setOption('dataFields', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "filterFields", {
- get: function () {
- return this._getOption('filterFields');
- },
- set: function (value) {
- this._setOption('filterFields', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "rowFields", {
- get: function () {
- return this._getOption('rowFields');
- },
- set: function (value) {
- this._setOption('rowFields', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "columnFieldArea", {
- get: function () {
- return this._getOption('columnFieldArea');
- },
- set: function (value) {
- this._setOption('columnFieldArea', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "dataFieldArea", {
- get: function () {
- return this._getOption('dataFieldArea');
- },
- set: function (value) {
- this._setOption('dataFieldArea', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "filterFieldArea", {
- get: function () {
- return this._getOption('filterFieldArea');
- },
- set: function (value) {
- this._setOption('filterFieldArea', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "rowFieldArea", {
- get: function () {
- return this._getOption('rowFieldArea');
- },
- set: function (value) {
- this._setOption('rowFieldArea', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "collapseAll", {
- get: function () {
- return this._getOption('collapseAll');
- },
- set: function (value) {
- this._setOption('collapseAll', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "dataNotAvailable", {
- get: function () {
- return this._getOption('dataNotAvailable');
- },
- set: function (value) {
- this._setOption('dataNotAvailable', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "expandAll", {
- get: function () {
- return this._getOption('expandAll');
- },
- set: function (value) {
- this._setOption('expandAll', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "exportToExcel", {
- get: function () {
- return this._getOption('exportToExcel');
- },
- set: function (value) {
- this._setOption('exportToExcel', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "grandTotal", {
- get: function () {
- return this._getOption('grandTotal');
- },
- set: function (value) {
- this._setOption('grandTotal', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "noData", {
- get: function () {
- return this._getOption('noData');
- },
- set: function (value) {
- this._setOption('noData', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "removeAllSorting", {
- get: function () {
- return this._getOption('removeAllSorting');
- },
- set: function (value) {
- this._setOption('removeAllSorting', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "showFieldChooser", {
- get: function () {
- return this._getOption('showFieldChooser');
- },
- set: function (value) {
- this._setOption('showFieldChooser', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "sortColumnBySummary", {
- get: function () {
- return this._getOption('sortColumnBySummary');
- },
- set: function (value) {
- this._setOption('sortColumnBySummary', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "sortRowBySummary", {
- get: function () {
- return this._getOption('sortRowBySummary');
- },
- set: function (value) {
- this._setOption('sortRowBySummary', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "total", {
- get: function () {
- return this._getOption('total');
- },
- set: function (value) {
- this._setOption('total', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "addRowToNode", {
- get: function () {
- return this._getOption('addRowToNode');
- },
- set: function (value) {
- this._setOption('addRowToNode', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxoTextsComponent.prototype, "_optionPath", {
- get: function () {
- return 'texts';
- },
- enumerable: true,
- configurable: true
- });
- DxoTextsComponent.decorators = [
- { type: core_1.Component, args: [{
- selector: 'dxo-texts',
- template: '',
- styles: [''],
- providers: [nested_option_1.NestedOptionHost]
- },] },
- ];
- /** @nocollapse */
- DxoTextsComponent.ctorParameters = function () { return [
- { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.SkipSelf }, { type: core_1.Host },] },
- { type: nested_option_1.NestedOptionHost, decorators: [{ type: core_1.Host },] },
- ]; };
- DxoTextsComponent.propDecorators = {
- "fix": [{ type: core_1.Input },],
- "leftPosition": [{ type: core_1.Input },],
- "rightPosition": [{ type: core_1.Input },],
- "unfix": [{ type: core_1.Input },],
- "addRow": [{ type: core_1.Input },],
- "cancelAllChanges": [{ type: core_1.Input },],
- "cancelRowChanges": [{ type: core_1.Input },],
- "confirmDeleteMessage": [{ type: core_1.Input },],
- "confirmDeleteTitle": [{ type: core_1.Input },],
- "deleteRow": [{ type: core_1.Input },],
- "editRow": [{ type: core_1.Input },],
- "saveAllChanges": [{ type: core_1.Input },],
- "saveRowChanges": [{ type: core_1.Input },],
- "undeleteRow": [{ type: core_1.Input },],
- "validationCancelChanges": [{ type: core_1.Input },],
- "exportAll": [{ type: core_1.Input },],
- "exportSelectedRows": [{ type: core_1.Input },],
- "exportTo": [{ type: core_1.Input },],
- "clearFilter": [{ type: core_1.Input },],
- "createFilter": [{ type: core_1.Input },],
- "filterEnabledHint": [{ type: core_1.Input },],
- "groupByThisColumn": [{ type: core_1.Input },],
- "groupContinuedMessage": [{ type: core_1.Input },],
- "groupContinuesMessage": [{ type: core_1.Input },],
- "ungroup": [{ type: core_1.Input },],
- "ungroupAll": [{ type: core_1.Input },],
- "cancel": [{ type: core_1.Input },],
- "emptyValue": [{ type: core_1.Input },],
- "ok": [{ type: core_1.Input },],
- "avg": [{ type: core_1.Input },],
- "avgOtherColumn": [{ type: core_1.Input },],
- "count": [{ type: core_1.Input },],
- "max": [{ type: core_1.Input },],
- "maxOtherColumn": [{ type: core_1.Input },],
- "min": [{ type: core_1.Input },],
- "minOtherColumn": [{ type: core_1.Input },],
- "sum": [{ type: core_1.Input },],
- "sumOtherColumn": [{ type: core_1.Input },],
- "allFields": [{ type: core_1.Input },],
- "columnFields": [{ type: core_1.Input },],
- "dataFields": [{ type: core_1.Input },],
- "filterFields": [{ type: core_1.Input },],
- "rowFields": [{ type: core_1.Input },],
- "columnFieldArea": [{ type: core_1.Input },],
- "dataFieldArea": [{ type: core_1.Input },],
- "filterFieldArea": [{ type: core_1.Input },],
- "rowFieldArea": [{ type: core_1.Input },],
- "collapseAll": [{ type: core_1.Input },],
- "dataNotAvailable": [{ type: core_1.Input },],
- "expandAll": [{ type: core_1.Input },],
- "exportToExcel": [{ type: core_1.Input },],
- "grandTotal": [{ type: core_1.Input },],
- "noData": [{ type: core_1.Input },],
- "removeAllSorting": [{ type: core_1.Input },],
- "showFieldChooser": [{ type: core_1.Input },],
- "sortColumnBySummary": [{ type: core_1.Input },],
- "sortRowBySummary": [{ type: core_1.Input },],
- "total": [{ type: core_1.Input },],
- "addRowToNode": [{ type: core_1.Input },],
- };
- return DxoTextsComponent;
- }(nested_option_2.NestedOption));
- exports.DxoTextsComponent = DxoTextsComponent;
- var DxoTextsModule = (function () {
- function DxoTextsModule() {
- }
- DxoTextsModule.decorators = [
- { type: core_1.NgModule, args: [{
- declarations: [
- DxoTextsComponent
- ],
- exports: [
- DxoTextsComponent
- ],
- },] },
- ];
- return DxoTextsModule;
- }());
- exports.DxoTextsModule = DxoTextsModule;
- //# sourceMappingURL=texts.js.map
|