igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 2.87 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 ListPanelItemModelDescription = /*@__PURE__*/ (() => {
class ListPanelItemModelDescription extends Description {
constructor() {
super();
this.y = 0;
this.t = 0;
this.aa = null;
this.m = false;
this.s = 0;
this.u = 0;
this.k = false;
this.l = false;
this.n = false;
}
get_type() {
return "ListPanelItemModel";
}
get type() {
return this.get_type();
}
get dataRow() {
return this.y;
}
set dataRow(a) {
this.y = a;
this.j("DataRow");
}
get rowHeight() {
return this.t;
}
set rowHeight(a) {
this.t = a;
this.j("RowHeight");
}
get rowObjectRef() {
return this.aa;
}
set rowObjectRef(a) {
this.aa = a;
this.j("RowObjectRef");
}
get isModelDirty() {
return this.m;
}
set isModelDirty(a) {
this.m = a;
this.j("IsModelDirty");
}
get left() {
return this.s;
}
set left(a) {
this.s = a;
this.j("Left");
}
get top() {
return this.u;
}
set top(a) {
this.u = a;
this.j("Top");
}
get isActivated() {
return this.k;
}
set isActivated(a) {
this.k = a;
this.j("IsActivated");
}
get isActivationSupported() {
return this.l;
}
set isActivationSupported(a) {
this.l = a;
this.j("IsActivationSupported");
}
get isSelected() {
return this.n;
}
set isSelected(a) {
this.n = a;
this.j("IsSelected");
}
}
ListPanelItemModelDescription.$t = markType(ListPanelItemModelDescription, 'ListPanelItemModelDescription', Description.$);
return ListPanelItemModelDescription;
})();