UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

84 lines (83 loc) 2.53 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 ColumnSelectionEventArgsDetail = /*@__PURE__*/ (() => { class ColumnSelectionEventArgsDetail extends Base { constructor() { super(...arguments); this.e = new WCNativeHelper(); this.h = null; } get f() { return this.e; } get nativeElement() { return this.h; } set nativeElement(a) { this.h = a; this.e.o = this.h; } 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("cancel"); return ret_; } set g(a) { let value_ = a; this.f.w("cancel", value_); } get j() { let ret_ = this.f.n("owner"); return ret_; } set j(a) { let value_ = a; this.f.w("owner", value_); } } ColumnSelectionEventArgsDetail.$t = /*@__PURE__*/ markType(ColumnSelectionEventArgsDetail, 'ColumnSelectionEventArgsDetail'); return ColumnSelectionEventArgsDetail; })();