UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

155 lines (154 loc) 4.39 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 ListPanelDescription = /*@__PURE__*/ (() => { class ListPanelDescription extends Description { constructor() { super(); this.u = null; this.f = null; this.n = 0; this.j = 0; this.q = null; this.k = 0; this.r = null; this.s = null; this.p = null; this.x = null; this.h = false; this.z = null; this.t = null; this.y = null; this.w = null; this.v = null; } get_type() { return "ListPanel"; } get type() { return this.get_type(); } get dataSourceRef() { return this.u; } set dataSourceRef(a) { this.u = a; this.e("DataSourceRef"); } get dataSource() { return this.f; } set dataSource(a) { this.f = a; this.e("DataSource"); } get rowHeight() { return this.n; } set rowHeight(a) { this.n = a; this.e("RowHeight"); } get actualRowHeight() { return this.j; } set actualRowHeight(a) { this.j = a; this.e("ActualRowHeight"); } get cellFontFamily() { return this.q; } set cellFontFamily(a) { this.q = a; this.e("CellFontFamily"); } get cellFontSize() { return this.k; } set cellFontSize(a) { this.k = a; this.e("CellFontSize"); } get cellFontStyle() { return this.r; } set cellFontStyle(a) { this.r = a; this.e("CellFontStyle"); } get cellFontWeight() { return this.s; } set cellFontWeight(a) { this.s = a; this.e("CellFontWeight"); } get backgroundColor() { return this.p; } set backgroundColor(a) { this.p = a; this.e("BackgroundColor"); } get orientation() { return this.x; } set orientation(a) { this.x = a; this.e("Orientation"); } get isCustomRowHeightEnabled() { return this.h; } set isCustomRowHeightEnabled(a) { this.h = a; this.e("IsCustomRowHeightEnabled"); } get textColor() { return this.z; } set textColor(a) { this.z = a; this.e("TextColor"); } get contentRefreshedRef() { return this.t; } set contentRefreshedRef(a) { this.t = a; this.e("ContentRefreshedRef"); } get rowUpdatingRef() { return this.y; } set rowUpdatingRef(a) { this.y = a; this.e("RowUpdatingRef"); } get itemWidthRequestedRef() { return this.w; } set itemWidthRequestedRef(a) { this.w = a; this.e("ItemWidthRequestedRef"); } get itemHeightRequestedRef() { return this.v; } set itemHeightRequestedRef(a) { this.v = a; this.e("ItemHeightRequestedRef"); } } ListPanelDescription.$t = markType(ListPanelDescription, 'ListPanelDescription', Description.$); return ListPanelDescription; })();