igniteui-react-core
Version:
Ignite UI React Core.
62 lines (61 loc) • 2 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.bm = null;
}
get_e() {
return 4;
}
get bl() {
let a = this.ah(1);
return a == null ? 1 : EnumUtil.getEnumValue(NativeUIDisplayDensity_$type, a);
}
set bl(a) {
this.a5(1, enumGetBox(NativeUIDisplayDensity_$type, a));
}
get bn() {
return this.bm;
}
set bn(a) {
let b = this.bm;
this.bm = a;
if (this.bm != b) {
if (b != null) {
this.a3(3, b);
}
if (this.bm != null) {
this.ar(3, this.bm);
}
}
}
get bp() {
let a = this.ah(9);
return a;
}
set bp(a) {
this.a5(9, a);
}
get bo() {
let a = this.ah(8);
return a;
}
set bo(a) {
this.a5(8, a);
}
}
NativeUIDropDown.$t = /*@__PURE__*/ markType(NativeUIDropDown, 'NativeUIDropDown', NativeUIComponent.$);
return NativeUIDropDown;
})();