igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
59 lines (58 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebDropdownItemDescription = /*@__PURE__*/ (() => {
class WebDropdownItemDescription extends Description {
constructor() {
super();
this.l = null;
this.h = false;
this.f = false;
this.g = false;
}
get_type() {
return "WebDropdownItem";
}
get type() {
return this.get_type();
}
get value() {
return this.l;
}
set value(a) {
this.l = a;
this.e("Value");
}
get selected() {
return this.h;
}
set selected(a) {
this.h = a;
this.e("Selected");
}
get active() {
return this.f;
}
set active(a) {
this.f = a;
this.e("Active");
}
get disabled() {
return this.g;
}
set disabled(a) {
this.g = a;
this.e("Disabled");
}
}
WebDropdownItemDescription.$t = markType(WebDropdownItemDescription, 'WebDropdownItemDescription', Description.$);
return WebDropdownItemDescription;
})();