UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

92 lines (91 loc) 2.73 kB
/* 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 RowSelectionEventArgsDetail = /*@__PURE__*/ (() => { class RowSelectionEventArgsDetail extends Base { constructor() { super(...arguments); this.e = new WCNativeHelper(); this.i = null; } get f() { return this.e; } get nativeElement() { return this.i; } set nativeElement(a) { this.i = a; this.e.o = this.i; } setNativeElement(a) { this.nativeElement = a; } get c() { let ret_ = this.f.n("oldSelection"); return ret_; } set c(a) { let value_ = a; this.f.w("oldSelection", value_); } get b() { let ret_ = this.f.n("newSelection"); return ret_; } set b(a) { let value_ = a; this.f.w("newSelection", value_); } get a() { let ret_ = this.f.n("added"); return ret_; } set a(a) { let value_ = a; this.f.w("added", value_); } get d() { let ret_ = this.f.n("removed"); return ret_; } set d(a) { let value_ = a; this.f.w("removed", value_); } get g() { let ret_ = this.f.n("allRowsSelected"); return ret_; } set g(a) { let value_ = a; this.f.w("allRowsSelected", value_); } get h() { let ret_ = this.f.n("cancel"); return ret_; } set h(a) { let value_ = a; this.f.w("cancel", value_); } get k() { let ret_ = this.f.n("owner"); return ret_; } set k(a) { let value_ = a; this.f.w("owner", value_); } } RowSelectionEventArgsDetail.$t = /*@__PURE__*/ markType(RowSelectionEventArgsDetail, 'RowSelectionEventArgsDetail'); return RowSelectionEventArgsDetail; })();