igniteui-react-core
Version:
Ignite UI React Core.
85 lines (84 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 { markType } from "./type";
/**
* @hidden
*/
export let NativeUICheckbox = /*@__PURE__*/ (() => {
class NativeUICheckbox extends NativeUIComponent {
constructor() {
super(...arguments);
this.bl = null;
}
get_e() {
return 6;
}
get bn() {
let a = this.ah(4);
return a;
}
set bn(a) {
this.a5(4, a);
}
get bo() {
let a = this.ah(7);
return a;
}
set bo(a) {
this.a5(7, a);
}
get bp() {
let a = this.ah(17);
return a;
}
set bp(a) {
this.a5(17, a);
}
get bs() {
return this.ah(67);
}
set bs(a) {
this.a5(67, a);
}
get bq() {
return this.ah(68);
}
set bq(a) {
this.a5(68, a);
}
get bt() {
return this.ah(69);
}
set bt(a) {
this.a5(69, a);
}
get br() {
return this.ah(70);
}
set br(a) {
this.a5(70, a);
}
get bm() {
return this.bl;
}
set bm(a) {
let b = this.bl;
this.bl = a;
if (this.bl != b) {
if (b != null) {
this.a3(2, b);
}
if (this.bl != null) {
this.ar(2, this.bl);
}
}
}
}
NativeUICheckbox.$t = /*@__PURE__*/ markType(NativeUICheckbox, 'NativeUICheckbox', NativeUIComponent.$);
return NativeUICheckbox;
})();