UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

59 lines (58 loc) 2.09 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 { GridToolbarContent } from "./GridToolbarContent"; import { WCNativeHelper } from "igniteui-react"; import { markType } from "igniteui-react-core"; import { GridToolbarBaseActionCollection } from "./GridToolbarBaseActionCollection"; /** * @hidden */ export let GridToolbarActions = /*@__PURE__*/ (() => { class GridToolbarActions extends GridToolbarContent { constructor() { super(...arguments); this.d = new WCNativeHelper(); this.f = null; this.b = null; } get e() { return this.d; } get nativeElement() { return this.f; } set nativeElement(a) { this.f = a; this.d.o = this.f; } setNativeElement(a) { this.nativeElement = a; } get c() { if (this.b == null) { this.b = this.e.l("actions", (a) => new GridToolbarBaseActionCollection(), null, ["GridToolbarHiding", "GridToolbarPinning", "GridToolbarExporter", "GridToolbarAdvancedFiltering"]); } return this.b; } get_a() { let ret_ = this.e.n("name"); return ret_; } set_a(a) { let value_ = a; this.e.w("name", value_); } get a() { return this.get_a(); } set a(a) { this.set_a(a); } } GridToolbarActions.$t = /*@__PURE__*/ markType(GridToolbarActions, 'GridToolbarActions', GridToolbarContent.$); return GridToolbarActions; })();