igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
83 lines (82 loc) • 2.72 kB
JavaScript
/*
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 {
constructor() {
super();
this.k = null;
this.n = null;
this.o = null;
this.l = null;
this.m = null;
this.p = null;
this.q = null;
}
get background() {
return this.k;
}
set background(a) {
this.k = a;
this.j("Background");
}
get_type() {
return "LegendBase";
}
get type() {
return this.get_type();
}
get legendItemMouseLeftButtonDownRef() {
return this.n;
}
set legendItemMouseLeftButtonDownRef(a) {
this.n = a;
this.j("LegendItemMouseLeftButtonDownRef");
}
get legendItemMouseLeftButtonUpRef() {
return this.o;
}
set legendItemMouseLeftButtonUpRef(a) {
this.o = a;
this.j("LegendItemMouseLeftButtonUpRef");
}
get legendItemMouseEnterRef() {
return this.l;
}
set legendItemMouseEnterRef(a) {
this.l = a;
this.j("LegendItemMouseEnterRef");
}
get legendItemMouseLeaveRef() {
return this.m;
}
set legendItemMouseLeaveRef(a) {
this.m = a;
this.j("LegendItemMouseLeaveRef");
}
get legendItemMouseMoveRef() {
return this.p;
}
set legendItemMouseMoveRef(a) {
this.p = a;
this.j("LegendItemMouseMoveRef");
}
get legendTextContentChangedRef() {
return this.q;
}
set legendTextContentChangedRef(a) {
this.q = a;
this.j("LegendTextContentChangedRef");
}
}
LegendBaseDescription.$t = markType(LegendBaseDescription, 'LegendBaseDescription', Description.$);
return LegendBaseDescription;
})();