UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

48 lines (47 loc) 1.66 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"; import { PositionSettings } from "./PositionSettings"; /** * @hidden */ export let PositionStrategy = /*@__PURE__*/ (() => { class PositionStrategy extends Base { 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 a() { let ret_ = this.d.m("settings", (a) => new PositionSettings()); return ret_; } set a(a) { let value_ = a; this.d.w("settings", value_); } b() { return this.d.g(this.nativeElement.clone(), (a) => new PositionStrategy()); } } PositionStrategy.$t = /*@__PURE__*/ markType(PositionStrategy, 'PositionStrategy'); return PositionStrategy; })();