| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644 |
- "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 nested_option_1 = require("../../../core/nested-option");
- var DxiButtonGroupItem = (function (_super) {
- __extends(DxiButtonGroupItem, _super);
- function DxiButtonGroupItem() {
- return _super !== null && _super.apply(this, arguments) || this;
- }
- Object.defineProperty(DxiButtonGroupItem.prototype, "disabled", {
- get: function () {
- return this._getOption('disabled');
- },
- set: function (value) {
- this._setOption('disabled', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "html", {
- get: function () {
- return this._getOption('html');
- },
- set: function (value) {
- this._setOption('html', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "icon", {
- get: function () {
- return this._getOption('icon');
- },
- set: function (value) {
- this._setOption('icon', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "template", {
- get: function () {
- return this._getOption('template');
- },
- set: function (value) {
- this._setOption('template', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "text", {
- get: function () {
- return this._getOption('text');
- },
- set: function (value) {
- this._setOption('text', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "title", {
- get: function () {
- return this._getOption('title');
- },
- set: function (value) {
- this._setOption('title', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "visible", {
- get: function () {
- return this._getOption('visible');
- },
- set: function (value) {
- this._setOption('visible', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "onClick", {
- get: function () {
- return this._getOption('onClick');
- },
- set: function (value) {
- this._setOption('onClick', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "type", {
- get: function () {
- return this._getOption('type');
- },
- set: function (value) {
- this._setOption('type', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "baseSize", {
- get: function () {
- return this._getOption('baseSize');
- },
- set: function (value) {
- this._setOption('baseSize', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "box", {
- get: function () {
- return this._getOption('box');
- },
- set: function (value) {
- this._setOption('box', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "ratio", {
- get: function () {
- return this._getOption('ratio');
- },
- set: function (value) {
- this._setOption('ratio', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "shrink", {
- get: function () {
- return this._getOption('shrink');
- },
- set: function (value) {
- this._setOption('shrink', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "hint", {
- get: function () {
- return this._getOption('hint');
- },
- set: function (value) {
- this._setOption('hint', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "beginGroup", {
- get: function () {
- return this._getOption('beginGroup');
- },
- set: function (value) {
- this._setOption('beginGroup', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "closeMenuOnClick", {
- get: function () {
- return this._getOption('closeMenuOnClick');
- },
- set: function (value) {
- this._setOption('closeMenuOnClick', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "items", {
- get: function () {
- return this._getOption('items');
- },
- set: function (value) {
- this._setOption('items', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "selectable", {
- get: function () {
- return this._getOption('selectable');
- },
- set: function (value) {
- this._setOption('selectable', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "selected", {
- get: function () {
- return this._getOption('selected');
- },
- set: function (value) {
- this._setOption('selected', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "colSpan", {
- get: function () {
- return this._getOption('colSpan');
- },
- set: function (value) {
- this._setOption('colSpan', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "cssClass", {
- get: function () {
- return this._getOption('cssClass');
- },
- set: function (value) {
- this._setOption('cssClass', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "dataField", {
- get: function () {
- return this._getOption('dataField');
- },
- set: function (value) {
- this._setOption('dataField', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "editorOptions", {
- get: function () {
- return this._getOption('editorOptions');
- },
- set: function (value) {
- this._setOption('editorOptions', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "editorType", {
- get: function () {
- return this._getOption('editorType');
- },
- set: function (value) {
- this._setOption('editorType', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "helpText", {
- get: function () {
- return this._getOption('helpText');
- },
- set: function (value) {
- this._setOption('helpText', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "isRequired", {
- get: function () {
- return this._getOption('isRequired');
- },
- set: function (value) {
- this._setOption('isRequired', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "itemType", {
- get: function () {
- return this._getOption('itemType');
- },
- set: function (value) {
- this._setOption('itemType', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "label", {
- get: function () {
- return this._getOption('label');
- },
- set: function (value) {
- this._setOption('label', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "name", {
- get: function () {
- return this._getOption('name');
- },
- set: function (value) {
- this._setOption('name', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "validationRules", {
- get: function () {
- return this._getOption('validationRules');
- },
- set: function (value) {
- this._setOption('validationRules', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "visibleIndex", {
- get: function () {
- return this._getOption('visibleIndex');
- },
- set: function (value) {
- this._setOption('visibleIndex', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "alignItemLabels", {
- get: function () {
- return this._getOption('alignItemLabels');
- },
- set: function (value) {
- this._setOption('alignItemLabels', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "caption", {
- get: function () {
- return this._getOption('caption');
- },
- set: function (value) {
- this._setOption('caption', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "colCount", {
- get: function () {
- return this._getOption('colCount');
- },
- set: function (value) {
- this._setOption('colCount', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "colCountByScreen", {
- get: function () {
- return this._getOption('colCountByScreen');
- },
- set: function (value) {
- this._setOption('colCountByScreen', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "tabPanelOptions", {
- get: function () {
- return this._getOption('tabPanelOptions');
- },
- set: function (value) {
- this._setOption('tabPanelOptions', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "tabs", {
- get: function () {
- return this._getOption('tabs');
- },
- set: function (value) {
- this._setOption('tabs', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "badge", {
- get: function () {
- return this._getOption('badge');
- },
- set: function (value) {
- this._setOption('badge', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "tabTemplate", {
- get: function () {
- return this._getOption('tabTemplate');
- },
- set: function (value) {
- this._setOption('tabTemplate', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "alignment", {
- get: function () {
- return this._getOption('alignment');
- },
- set: function (value) {
- this._setOption('alignment', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "buttonOptions", {
- get: function () {
- return this._getOption('buttonOptions');
- },
- set: function (value) {
- this._setOption('buttonOptions', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "horizontalAlignment", {
- get: function () {
- return this._getOption('horizontalAlignment');
- },
- set: function (value) {
- this._setOption('horizontalAlignment', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "verticalAlignment", {
- get: function () {
- return this._getOption('verticalAlignment');
- },
- set: function (value) {
- this._setOption('verticalAlignment', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "imageAlt", {
- get: function () {
- return this._getOption('imageAlt');
- },
- set: function (value) {
- this._setOption('imageAlt', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "imageSrc", {
- get: function () {
- return this._getOption('imageSrc');
- },
- set: function (value) {
- this._setOption('imageSrc', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "formatName", {
- get: function () {
- return this._getOption('formatName');
- },
- set: function (value) {
- this._setOption('formatName', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "formatValues", {
- get: function () {
- return this._getOption('formatValues');
- },
- set: function (value) {
- this._setOption('formatValues', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "locateInMenu", {
- get: function () {
- return this._getOption('locateInMenu');
- },
- set: function (value) {
- this._setOption('locateInMenu', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "location", {
- get: function () {
- return this._getOption('location');
- },
- set: function (value) {
- this._setOption('location', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "menuItemTemplate", {
- get: function () {
- return this._getOption('menuItemTemplate');
- },
- set: function (value) {
- this._setOption('menuItemTemplate', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "options", {
- get: function () {
- return this._getOption('options');
- },
- set: function (value) {
- this._setOption('options', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "showText", {
- get: function () {
- return this._getOption('showText');
- },
- set: function (value) {
- this._setOption('showText', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "widget", {
- get: function () {
- return this._getOption('widget');
- },
- set: function (value) {
- this._setOption('widget', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "key", {
- get: function () {
- return this._getOption('key');
- },
- set: function (value) {
- this._setOption('key', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "showChevron", {
- get: function () {
- return this._getOption('showChevron');
- },
- set: function (value) {
- this._setOption('showChevron', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "menuTemplate", {
- get: function () {
- return this._getOption('menuTemplate');
- },
- set: function (value) {
- this._setOption('menuTemplate', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "heightRatio", {
- get: function () {
- return this._getOption('heightRatio');
- },
- set: function (value) {
- this._setOption('heightRatio', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "widthRatio", {
- get: function () {
- return this._getOption('widthRatio');
- },
- set: function (value) {
- this._setOption('widthRatio', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "expanded", {
- get: function () {
- return this._getOption('expanded');
- },
- set: function (value) {
- this._setOption('expanded', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "hasItems", {
- get: function () {
- return this._getOption('hasItems');
- },
- set: function (value) {
- this._setOption('hasItems', value);
- },
- enumerable: true,
- configurable: true
- });
- Object.defineProperty(DxiButtonGroupItem.prototype, "parentId", {
- get: function () {
- return this._getOption('parentId');
- },
- set: function (value) {
- this._setOption('parentId', value);
- },
- enumerable: true,
- configurable: true
- });
- return DxiButtonGroupItem;
- }(nested_option_1.CollectionNestedOption));
- exports.DxiButtonGroupItem = DxiButtonGroupItem;
- //# sourceMappingURL=button-group-item-dxi.js.map
|