igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
56 lines (55 loc) • 1.84 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 { WebButtonBaseDescription } from "./WebButtonBaseDescription";
import { markType } from "./type";
/**
* @hidden
*/
export let WebIconButtonDescription = /*@__PURE__*/ (() => {
class WebIconButtonDescription extends WebButtonBaseDescription {
constructor() {
super();
this.ag = null;
this.af = null;
this.ad = false;
this.ah = null;
}
get_type() {
return "WebIconButton";
}
get iconName() {
return this.ag;
}
set iconName(a) {
this.ag = a;
this.j("IconName");
}
get collection() {
return this.af;
}
set collection(a) {
this.af = a;
this.j("Collection");
}
get mirrored() {
return this.ad;
}
set mirrored(a) {
this.ad = a;
this.j("Mirrored");
}
get variant() {
return this.ah;
}
set variant(a) {
this.ah = a;
this.j("Variant");
}
}
WebIconButtonDescription.$t = markType(WebIconButtonDescription, 'WebIconButtonDescription', WebButtonBaseDescription.$);
return WebIconButtonDescription;
})();