igniteui-react-core
Version:
Ignite UI React Core.
74 lines (73 loc) • 2.53 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.ad = null;
_this.ac = null;
_this.aa = false;
_this.ae = null;
return _this;
}
WebIconButtonDescription.prototype.get_type = function () {
return "WebIconButton";
};
Object.defineProperty(WebIconButtonDescription.prototype, "iconName", {
get: function () {
return this.ad;
},
set: function (a) {
this.ad = a;
this.g("IconName");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebIconButtonDescription.prototype, "collection", {
get: function () {
return this.ac;
},
set: function (a) {
this.ac = a;
this.g("Collection");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebIconButtonDescription.prototype, "mirrored", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.g("Mirrored");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebIconButtonDescription.prototype, "variant", {
get: function () {
return this.ae;
},
set: function (a) {
this.ae = a;
this.g("Variant");
},
enumerable: false,
configurable: true
});
WebIconButtonDescription.$t = markType(WebIconButtonDescription, 'WebIconButtonDescription', WebButtonBaseDescription.$);
return WebIconButtonDescription;
}(WebButtonBaseDescription));
export { WebIconButtonDescription };