UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

219 lines (218 loc) 6.61 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 BaseDataSourceDescription = /*@__PURE__*/ (() => { class BaseDataSourceDescription extends Description { constructor() { super(); this.t = false; this.s = false; this.aq = 0; this.ar = 0; this.as = 0; this.q = false; this.k = null; this.l = null; this.m = null; this.a0 = null; this.u = false; this.w = false; this.r = false; this.y = false; this.x = false; this.v = false; this.aa = false; this.z = false; this.ab = false; this.ac = false; this.az = null; this.ay = null; this.ax = null; this.aw = null; } get_type() { return "BaseDataSource"; } get type() { return this.get_type(); } get isReadOnly() { return this.t; } set isReadOnly(a) { this.t = a; this.j("IsReadOnly"); } get isBatchingEnabled() { return this.s; } set isBatchingEnabled(a) { this.s = a; this.j("IsBatchingEnabled"); } get actualCount() { return this.aq; } set actualCount(a) { this.aq = a; this.j("ActualCount"); } get firstVisibleIndexRequested() { return this.ar; } set firstVisibleIndexRequested(a) { this.ar = a; this.j("FirstVisibleIndexRequested"); } get lastVisibleIndexRequested() { return this.as; } set lastVisibleIndexRequested(a) { this.as = a; this.j("LastVisibleIndexRequested"); } get deferAutoRefresh() { return this.q; } set deferAutoRefresh(a) { this.q = a; this.j("DeferAutoRefresh"); } get primaryKey() { return this.k; } set primaryKey(a) { this.k = a; this.j("PrimaryKey"); } get propertiesRequested() { return this.l; } set propertiesRequested(a) { this.l = a; this.j("PropertiesRequested"); } get schemaIncludedProperties() { return this.m; } set schemaIncludedProperties(a) { this.m = a; this.j("SchemaIncludedProperties"); } get sectionHeaderDisplayMode() { return this.a0; } set sectionHeaderDisplayMode(a) { this.a0 = a; this.j("SectionHeaderDisplayMode"); } get isSectionCollapsable() { return this.u; } set isSectionCollapsable(a) { this.u = a; this.j("IsSectionCollapsable"); } get isSectionExpandedDefault() { return this.w; } set isSectionExpandedDefault(a) { this.w = a; this.j("IsSectionExpandedDefault"); } get includeSummaryRowsInSection() { return this.r; } set includeSummaryRowsInSection(a) { this.r = a; this.j("IncludeSummaryRowsInSection"); } get isSectionSummaryRowsAtBottom() { return this.y; } set isSectionSummaryRowsAtBottom(a) { this.y = a; this.j("IsSectionSummaryRowsAtBottom"); } get isSectionHeaderNormalRow() { return this.x; } set isSectionHeaderNormalRow(a) { this.x = a; this.j("IsSectionHeaderNormalRow"); } get isSectionContentVisible() { return this.v; } set isSectionContentVisible(a) { this.v = a; this.j("IsSectionContentVisible"); } get shouldEmitSectionHeaders() { return this.aa; } set shouldEmitSectionHeaders(a) { this.aa = a; this.j("ShouldEmitSectionHeaders"); } get shouldEmitSectionFooters() { return this.z; } set shouldEmitSectionFooters(a) { this.z = a; this.j("ShouldEmitSectionFooters"); } get shouldEmitShiftedRows() { return this.ab; } set shouldEmitShiftedRows(a) { this.ab = a; this.j("ShouldEmitShiftedRows"); } get shouldEmitSummaryRows() { return this.ac; } set shouldEmitSummaryRows(a) { this.ac = a; this.j("ShouldEmitSummaryRows"); } get schemaChangedRef() { return this.az; } set schemaChangedRef(a) { this.az = a; this.j("SchemaChangedRef"); } get rowExpansionChangedRef() { return this.ay; } set rowExpansionChangedRef(a) { this.ay = a; this.j("RowExpansionChangedRef"); } get rootSummariesChangedRef() { return this.ax; } set rootSummariesChangedRef(a) { this.ax = a; this.j("RootSummariesChangedRef"); } get propertiesRequestedChangedRef() { return this.aw; } set propertiesRequestedChangedRef(a) { this.aw = a; this.j("PropertiesRequestedChangedRef"); } } BaseDataSourceDescription.$t = markType(BaseDataSourceDescription, 'BaseDataSourceDescription', Description.$); return BaseDataSourceDescription; })();