UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

60 lines (59 loc) 2.04 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 { GridToolbarBaseAction } from "./GridToolbarBaseAction"; import { WCNativeHelper } from "igniteui-react"; import { markType } from "igniteui-react-core"; import { OverlaySettings } from "./OverlaySettings"; /** * @hidden */ export let GridToolbarAdvancedFiltering = /*@__PURE__*/ (() => { class GridToolbarAdvancedFiltering extends GridToolbarBaseAction { constructor() { super(...arguments); this.c = new WCNativeHelper(); this.e = null; } get d() { return this.c; } get nativeElement() { return this.e; } set nativeElement(a) { this.e = a; this.c.o = this.e; } setNativeElement(a) { this.nativeElement = a; } get b() { let ret_ = this.d.m("overlaySettings", (a) => new OverlaySettings()); return ret_; } set b(a) { let value_ = a; this.d.w("overlaySettings", value_); } get_a() { let ret_ = this.d.n("name"); return ret_; } set_a(a) { let value_ = a; this.d.w("name", value_); } get a() { return this.get_a(); } set a(a) { this.set_a(a); } } GridToolbarAdvancedFiltering.$t = /*@__PURE__*/ markType(GridToolbarAdvancedFiltering, 'GridToolbarAdvancedFiltering', GridToolbarBaseAction.$); return GridToolbarAdvancedFiltering; })();