UNPKG

igniteui-react-core

Version:
117 lines (116 loc) 3.54 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebChipDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebChipDescription, _super); function WebChipDescription() { var _this = _super.call(this) || this; _this.h = false; _this.i = false; _this.j = false; _this.k = false; _this.r = null; _this.p = null; _this.q = null; return _this; } WebChipDescription.prototype.get_type = function () { return "WebChip"; }; Object.defineProperty(WebChipDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "disabled", { get: function () { return this.h; }, set: function (a) { this.h = a; this.g("Disabled"); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "removable", { get: function () { return this.i; }, set: function (a) { this.i = a; this.g("Removable"); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "selectable", { get: function () { return this.j; }, set: function (a) { this.j = a; this.g("Selectable"); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "selected", { get: function () { return this.k; }, set: function (a) { this.k = a; this.g("Selected"); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "variant", { get: function () { return this.r; }, set: function (a) { this.r = a; this.g("Variant"); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "removeRef", { get: function () { return this.p; }, set: function (a) { this.p = a; this.g("RemoveRef"); }, enumerable: false, configurable: true }); Object.defineProperty(WebChipDescription.prototype, "selectRef", { get: function () { return this.q; }, set: function (a) { this.q = a; this.g("SelectRef"); }, enumerable: false, configurable: true }); WebChipDescription.$t = markType(WebChipDescription, 'WebChipDescription', Description.$); return WebChipDescription; }(Description)); export { WebChipDescription };