igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
60 lines (59 loc) • 1.96 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 { NativeUIComponent } from "./NativeUIComponent";
import { NativeUIDisplayDensity_$type } from "./NativeUIDisplayDensity";
import { enumGetBox, EnumUtil, markType } from "./type";
/**
* @hidden
*/
export let NativeUIDropDown = /*@__PURE__*/ (() => {
class NativeUIDropDown extends NativeUIComponent {
constructor() {
super(...arguments);
this.au = null;
}
get_c() {
return 4;
}
get at() {
let a = this.o(1);
return a == null ? 1 : EnumUtil.getEnumValue(NativeUIDisplayDensity_$type, a);
}
set at(a) {
this.af(1, enumGetBox(NativeUIDisplayDensity_$type, a));
}
get av() {
return this.au;
}
set av(a) {
let b = this.au;
this.au = a;
if (this.au != null) {
this.x(3, this.au);
}
else {
this.ad(3, b);
}
}
get ax() {
let a = this.o(7);
return a;
}
set ax(a) {
this.af(7, a);
}
get aw() {
let a = this.o(6);
return a;
}
set aw(a) {
this.af(6, a);
}
}
NativeUIDropDown.$t = markType(NativeUIDropDown, 'NativeUIDropDown', NativeUIComponent.$);
return NativeUIDropDown;
})();