igniteui-react-core
Version:
Ignite UI React Core.
76 lines (75 loc) • 2.27 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 NativeUICombo = /*@__PURE__*/ (() => {
class NativeUICombo extends NativeUIComponent {
constructor() {
super(...arguments);
this.bm = null;
}
get_e() {
return 19;
}
get bo() {
let a = this.ah(1);
return a == null ? 1 : EnumUtil.getEnumValue(NativeUIDisplayDensity_$type, a);
}
set bo(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(21, b);
}
if (this.bm != null) {
this.ar(21, this.bm);
}
}
}
get bl() {
let a = this.ah(90);
return a;
}
set bl(a) {
this.a5(90, a);
}
get bq() {
let a = this.ah(92);
return a;
}
set bq(a) {
this.a5(92, a);
}
get br() {
let a = this.ah(91);
return a;
}
set br(a) {
this.a5(91, a);
}
get bp() {
let a = this.ah(8);
return a;
}
set bp(a) {
this.a5(8, a);
}
}
NativeUICombo.$t = /*@__PURE__*/ markType(NativeUICombo, 'NativeUICombo', NativeUIComponent.$);
return NativeUICombo;
})();