igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
74 lines (73 loc) • 2.61 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 { WebButtonBaseDescription } from "./WebButtonBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
var WebIconButtonDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebIconButtonDescription, _super);
function WebIconButtonDescription() {
var _this = _super.call(this) || this;
_this.ag = null;
_this.af = null;
_this.ad = false;
_this.ah = null;
return _this;
}
WebIconButtonDescription.prototype.get_type = function () {
return "WebIconButton";
};
Object.defineProperty(WebIconButtonDescription.prototype, "iconName", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.j("IconName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebIconButtonDescription.prototype, "collection", {
get: function () {
return this.af;
},
set: function (a) {
this.af = a;
this.j("Collection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebIconButtonDescription.prototype, "mirrored", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.j("Mirrored");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebIconButtonDescription.prototype, "variant", {
get: function () {
return this.ah;
},
set: function (a) {
this.ah = a;
this.j("Variant");
},
enumerable: false,
configurable: true
});
WebIconButtonDescription.$t = markType(WebIconButtonDescription, 'WebIconButtonDescription', WebButtonBaseDescription.$);
return WebIconButtonDescription;
}(WebButtonBaseDescription));
export { WebIconButtonDescription };