igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
75 lines (74 loc) • 2.26 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebButtonGroupDescription = /*@__PURE__*/ (() => {
class WebButtonGroupDescription extends Description {
constructor() {
super();
this.m = false;
this.o = null;
this.r = null;
this.k = null;
this.q = null;
this.p = null;
}
get_type() {
return "WebButtonGroup";
}
get type() {
return this.get_type();
}
get disabled() {
return this.m;
}
set disabled(a) {
this.m = a;
this.j("Disabled");
}
get alignment() {
return this.o;
}
set alignment(a) {
this.o = a;
this.j("Alignment");
}
get selection() {
return this.r;
}
set selection(a) {
this.r = a;
this.j("Selection");
}
get selectedItems() {
return this.k;
}
set selectedItems(a) {
this.k = a;
this.j("SelectedItems");
}
get selectRef() {
return this.q;
}
set selectRef(a) {
this.q = a;
this.j("SelectRef");
}
get deselectRef() {
return this.p;
}
set deselectRef(a) {
this.p = a;
this.j("DeselectRef");
}
}
WebButtonGroupDescription.$t = markType(WebButtonGroupDescription, 'WebButtonGroupDescription', Description.$);
return WebButtonGroupDescription;
})();