igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
59 lines (58 loc) • 1.9 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.j = 0;
this.h = 0;
this.l = null;
this.f = false;
}
get_type() {
return "ListPanelItemModel";
}
get type() {
return this.get_type();
}
get dataRow() {
return this.j;
}
set dataRow(a) {
this.j = a;
this.e("DataRow");
}
get rowHeight() {
return this.h;
}
set rowHeight(a) {
this.h = a;
this.e("RowHeight");
}
get rowObjectRef() {
return this.l;
}
set rowObjectRef(a) {
this.l = a;
this.e("RowObjectRef");
}
get isModelDirty() {
return this.f;
}
set isModelDirty(a) {
this.f = a;
this.e("IsModelDirty");
}
}
ListPanelItemModelDescription.$t = markType(ListPanelItemModelDescription, 'ListPanelItemModelDescription', Description.$);
return ListPanelItemModelDescription;
})();