igniteui-react-grids
Version:
Ignite UI React grid components.
74 lines (73 loc) • 2.23 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 { Base, markType } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
/**
* @hidden
*/
export let RowSelectorTemplateDetails = /*@__PURE__*/ (() => {
class RowSelectorTemplateDetails extends Base {
constructor() {
super(...arguments);
this.a = new WCNativeHelper();
this.e = null;
}
get b() {
return this.a;
}
get nativeElement() {
return this.e;
}
set nativeElement(a) {
this.e = a;
this.a.o = this.e;
}
setNativeElement(a) {
this.nativeElement = a;
}
get d() {
let ret_ = this.b.n("index");
return ret_;
}
set d(a) {
let value_ = a;
this.b.w("index", value_);
}
get h() {
let ret_ = this.b.n("rowID");
return ret_;
}
set h(a) {
let value_ = a;
this.b.w("rowID", value_);
}
get f() {
let ret_ = this.b.n("key");
return ret_;
}
set f(a) {
let value_ = a;
this.b.w("key", value_);
}
get c() {
let ret_ = this.b.n("selected");
return ret_;
}
set c(a) {
let value_ = a;
this.b.w("selected", value_);
}
j() {
this.nativeElement.select();
}
i() {
this.nativeElement.deselect();
}
}
RowSelectorTemplateDetails.$t = /*@__PURE__*/ markType(RowSelectorTemplateDetails, 'RowSelectorTemplateDetails');
return RowSelectorTemplateDetails;
})();