UNPKG

igniteui-react-core

Version:
83 lines (82 loc) 2.63 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 { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ export let LegendBaseDescription = /*@__PURE__*/ (() => { class LegendBaseDescription extends Description { get background() { return this.h; } set background(a) { this.h = a; this.g("Background"); } get_type() { return "LegendBase"; } get type() { return this.get_type(); } constructor() { super(); this.h = null; this.k = null; this.l = null; this.i = null; this.j = null; this.m = null; this.n = null; } get legendItemMouseLeftButtonDownRef() { return this.k; } set legendItemMouseLeftButtonDownRef(a) { this.k = a; this.g("LegendItemMouseLeftButtonDownRef"); } get legendItemMouseLeftButtonUpRef() { return this.l; } set legendItemMouseLeftButtonUpRef(a) { this.l = a; this.g("LegendItemMouseLeftButtonUpRef"); } get legendItemMouseEnterRef() { return this.i; } set legendItemMouseEnterRef(a) { this.i = a; this.g("LegendItemMouseEnterRef"); } get legendItemMouseLeaveRef() { return this.j; } set legendItemMouseLeaveRef(a) { this.j = a; this.g("LegendItemMouseLeaveRef"); } get legendItemMouseMoveRef() { return this.m; } set legendItemMouseMoveRef(a) { this.m = a; this.g("LegendItemMouseMoveRef"); } get legendSizeChangedRef() { return this.n; } set legendSizeChangedRef(a) { this.n = a; this.g("LegendSizeChangedRef"); } } LegendBaseDescription.$t = /*@__PURE__*/ markType(LegendBaseDescription, 'LegendBaseDescription', Description.$); return LegendBaseDescription; })();