igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
117 lines (116 loc) • 3.66 kB
JavaScript
/*
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.k = false;
_this.l = false;
_this.m = false;
_this.n = false;
_this.u = null;
_this.s = null;
_this.t = 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.k;
},
set: function (a) {
this.k = a;
this.j("Disabled");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebChipDescription.prototype, "removable", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.j("Removable");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebChipDescription.prototype, "selectable", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("Selectable");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebChipDescription.prototype, "selected", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.j("Selected");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebChipDescription.prototype, "variant", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("Variant");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebChipDescription.prototype, "removeRef", {
get: function () {
return this.s;
},
set: function (a) {
this.s = a;
this.j("RemoveRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebChipDescription.prototype, "selectRef", {
get: function () {
return this.t;
},
set: function (a) {
this.t = a;
this.j("SelectRef");
},
enumerable: false,
configurable: true
});
WebChipDescription.$t = markType(WebChipDescription, 'WebChipDescription', Description.$);
return WebChipDescription;
}(Description));
export { WebChipDescription };