/*! * devextreme-angular-test * Version: 17.2.8 * Build date: Mon Feb 05 2018 * * Copyright (c) 2012 - 2018 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 */ import { Component, NgModule, Host, SkipSelf, Input } from '@angular/core'; import { NestedOptionHost } from '../../core/nested-option'; import { NestedOption } from '../../core/nested-option'; @Component({ selector: 'dxo-texts', template: '', styles: [''], providers: [NestedOptionHost] }) export class DxoTextsComponent extends NestedOption { @Input() get fix(): string { return this._getOption('fix'); } set fix(value: string) { this._setOption('fix', value); } @Input() get leftPosition(): string { return this._getOption('leftPosition'); } set leftPosition(value: string) { this._setOption('leftPosition', value); } @Input() get rightPosition(): string { return this._getOption('rightPosition'); } set rightPosition(value: string) { this._setOption('rightPosition', value); } @Input() get unfix(): string { return this._getOption('unfix'); } set unfix(value: string) { this._setOption('unfix', value); } @Input() get addRow(): string { return this._getOption('addRow'); } set addRow(value: string) { this._setOption('addRow', value); } @Input() get cancelAllChanges(): string { return this._getOption('cancelAllChanges'); } set cancelAllChanges(value: string) { this._setOption('cancelAllChanges', value); } @Input() get cancelRowChanges(): string { return this._getOption('cancelRowChanges'); } set cancelRowChanges(value: string) { this._setOption('cancelRowChanges', value); } @Input() get confirmDeleteMessage(): string { return this._getOption('confirmDeleteMessage'); } set confirmDeleteMessage(value: string) { this._setOption('confirmDeleteMessage', value); } @Input() get confirmDeleteTitle(): string { return this._getOption('confirmDeleteTitle'); } set confirmDeleteTitle(value: string) { this._setOption('confirmDeleteTitle', value); } @Input() get deleteRow(): string { return this._getOption('deleteRow'); } set deleteRow(value: string) { this._setOption('deleteRow', value); } @Input() get editRow(): string { return this._getOption('editRow'); } set editRow(value: string) { this._setOption('editRow', value); } @Input() get saveAllChanges(): string { return this._getOption('saveAllChanges'); } set saveAllChanges(value: string) { this._setOption('saveAllChanges', value); } @Input() get saveRowChanges(): string { return this._getOption('saveRowChanges'); } set saveRowChanges(value: string) { this._setOption('saveRowChanges', value); } @Input() get undeleteRow(): string { return this._getOption('undeleteRow'); } set undeleteRow(value: string) { this._setOption('undeleteRow', value); } @Input() get validationCancelChanges(): string { return this._getOption('validationCancelChanges'); } set validationCancelChanges(value: string) { this._setOption('validationCancelChanges', value); } @Input() get excelFormat(): any { return this._getOption('excelFormat'); } set excelFormat(value: any) { this._setOption('excelFormat', value); } @Input() get exportAll(): string { return this._getOption('exportAll'); } set exportAll(value: string) { this._setOption('exportAll', value); } @Input() get exportSelectedRows(): string { return this._getOption('exportSelectedRows'); } set exportSelectedRows(value: string) { this._setOption('exportSelectedRows', value); } @Input() get exportTo(): string { return this._getOption('exportTo'); } set exportTo(value: string) { this._setOption('exportTo', value); } @Input() get exportToExcel(): any| string { return this._getOption('exportToExcel'); } set exportToExcel(value: any| string) { this._setOption('exportToExcel', value); } @Input() get selectedRows(): any { return this._getOption('selectedRows'); } set selectedRows(value: any) { this._setOption('selectedRows', value); } @Input() get groupByThisColumn(): string { return this._getOption('groupByThisColumn'); } set groupByThisColumn(value: string) { this._setOption('groupByThisColumn', value); } @Input() get groupContinuedMessage(): string { return this._getOption('groupContinuedMessage'); } set groupContinuedMessage(value: string) { this._setOption('groupContinuedMessage', value); } @Input() get groupContinuesMessage(): string { return this._getOption('groupContinuesMessage'); } set groupContinuesMessage(value: string) { this._setOption('groupContinuesMessage', value); } @Input() get ungroup(): string { return this._getOption('ungroup'); } set ungroup(value: string) { this._setOption('ungroup', value); } @Input() get ungroupAll(): string { return this._getOption('ungroupAll'); } set ungroupAll(value: string) { this._setOption('ungroupAll', value); } @Input() get cancel(): string { return this._getOption('cancel'); } set cancel(value: string) { this._setOption('cancel', value); } @Input() get emptyValue(): string { return this._getOption('emptyValue'); } set emptyValue(value: string) { this._setOption('emptyValue', value); } @Input() get ok(): string { return this._getOption('ok'); } set ok(value: string) { this._setOption('ok', value); } @Input() get avg(): string { return this._getOption('avg'); } set avg(value: string) { this._setOption('avg', value); } @Input() get avgOtherColumn(): string { return this._getOption('avgOtherColumn'); } set avgOtherColumn(value: string) { this._setOption('avgOtherColumn', value); } @Input() get count(): string { return this._getOption('count'); } set count(value: string) { this._setOption('count', value); } @Input() get max(): string { return this._getOption('max'); } set max(value: string) { this._setOption('max', value); } @Input() get maxOtherColumn(): string { return this._getOption('maxOtherColumn'); } set maxOtherColumn(value: string) { this._setOption('maxOtherColumn', value); } @Input() get min(): string { return this._getOption('min'); } set min(value: string) { this._setOption('min', value); } @Input() get minOtherColumn(): string { return this._getOption('minOtherColumn'); } set minOtherColumn(value: string) { this._setOption('minOtherColumn', value); } @Input() get sum(): string { return this._getOption('sum'); } set sum(value: string) { this._setOption('sum', value); } @Input() get sumOtherColumn(): string { return this._getOption('sumOtherColumn'); } set sumOtherColumn(value: string) { this._setOption('sumOtherColumn', value); } @Input() get allFields(): string { return this._getOption('allFields'); } set allFields(value: string) { this._setOption('allFields', value); } @Input() get columnFields(): string { return this._getOption('columnFields'); } set columnFields(value: string) { this._setOption('columnFields', value); } @Input() get dataFields(): string { return this._getOption('dataFields'); } set dataFields(value: string) { this._setOption('dataFields', value); } @Input() get filterFields(): string { return this._getOption('filterFields'); } set filterFields(value: string) { this._setOption('filterFields', value); } @Input() get rowFields(): string { return this._getOption('rowFields'); } set rowFields(value: string) { this._setOption('rowFields', value); } @Input() get columnFieldArea(): string { return this._getOption('columnFieldArea'); } set columnFieldArea(value: string) { this._setOption('columnFieldArea', value); } @Input() get dataFieldArea(): string { return this._getOption('dataFieldArea'); } set dataFieldArea(value: string) { this._setOption('dataFieldArea', value); } @Input() get filterFieldArea(): string { return this._getOption('filterFieldArea'); } set filterFieldArea(value: string) { this._setOption('filterFieldArea', value); } @Input() get rowFieldArea(): string { return this._getOption('rowFieldArea'); } set rowFieldArea(value: string) { this._setOption('rowFieldArea', value); } @Input() get collapseAll(): string { return this._getOption('collapseAll'); } set collapseAll(value: string) { this._setOption('collapseAll', value); } @Input() get dataNotAvailable(): string { return this._getOption('dataNotAvailable'); } set dataNotAvailable(value: string) { this._setOption('dataNotAvailable', value); } @Input() get expandAll(): string { return this._getOption('expandAll'); } set expandAll(value: string) { this._setOption('expandAll', value); } @Input() get grandTotal(): string { return this._getOption('grandTotal'); } set grandTotal(value: string) { this._setOption('grandTotal', value); } @Input() get noData(): string { return this._getOption('noData'); } set noData(value: string) { this._setOption('noData', value); } @Input() get removeAllSorting(): string { return this._getOption('removeAllSorting'); } set removeAllSorting(value: string) { this._setOption('removeAllSorting', value); } @Input() get showFieldChooser(): string { return this._getOption('showFieldChooser'); } set showFieldChooser(value: string) { this._setOption('showFieldChooser', value); } @Input() get sortColumnBySummary(): string { return this._getOption('sortColumnBySummary'); } set sortColumnBySummary(value: string) { this._setOption('sortColumnBySummary', value); } @Input() get sortRowBySummary(): string { return this._getOption('sortRowBySummary'); } set sortRowBySummary(value: string) { this._setOption('sortRowBySummary', value); } @Input() get total(): string { return this._getOption('total'); } set total(value: string) { this._setOption('total', value); } @Input() get addRowToNode(): string { return this._getOption('addRowToNode'); } set addRowToNode(value: string) { this._setOption('addRowToNode', value); } protected get _optionPath() { return 'texts'; } constructor(@SkipSelf() @Host() parentOptionHost: NestedOptionHost, @Host() optionHost: NestedOptionHost) { super(); parentOptionHost.setNestedOption(this); optionHost.setHost(this, this._fullOptionPath.bind(this)); } } @NgModule({ declarations: [ DxoTextsComponent ], exports: [ DxoTextsComponent ], }) export class DxoTextsModule { }