UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

285 lines (284 loc) 9.01 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var BaseDataSourceDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(BaseDataSourceDescription, _super); function BaseDataSourceDescription() { var _this = _super.call(this) || this; _this.m = false; _this.l = false; _this.aj = 0; _this.ak = 0; _this.al = 0; _this.j = false; _this.f = null; _this.g = null; _this.ar = null; _this.n = false; _this.p = false; _this.k = false; _this.r = false; _this.q = false; _this.o = false; _this.t = false; _this.s = false; _this.u = false; _this.v = false; _this.aq = null; _this.ap = null; return _this; } BaseDataSourceDescription.prototype.get_type = function () { return "BaseDataSource"; }; Object.defineProperty(BaseDataSourceDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isReadOnly", { get: function () { return this.m; }, set: function (a) { this.m = a; this.e("IsReadOnly"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isBatchingEnabled", { get: function () { return this.l; }, set: function (a) { this.l = a; this.e("IsBatchingEnabled"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "actualCount", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.e("ActualCount"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "firstVisibleIndexRequested", { get: function () { return this.ak; }, set: function (a) { this.ak = a; this.e("FirstVisibleIndexRequested"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "lastVisibleIndexRequested", { get: function () { return this.al; }, set: function (a) { this.al = a; this.e("LastVisibleIndexRequested"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "deferAutoRefresh", { get: function () { return this.j; }, set: function (a) { this.j = a; this.e("DeferAutoRefresh"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "primaryKey", { get: function () { return this.f; }, set: function (a) { this.f = a; this.e("PrimaryKey"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "propertiesRequested", { get: function () { return this.g; }, set: function (a) { this.g = a; this.e("PropertiesRequested"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "sectionHeaderDisplayMode", { get: function () { return this.ar; }, set: function (a) { this.ar = a; this.e("SectionHeaderDisplayMode"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isSectionCollapsable", { get: function () { return this.n; }, set: function (a) { this.n = a; this.e("IsSectionCollapsable"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isSectionExpandedDefault", { get: function () { return this.p; }, set: function (a) { this.p = a; this.e("IsSectionExpandedDefault"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "includeSummaryRowsInSection", { get: function () { return this.k; }, set: function (a) { this.k = a; this.e("IncludeSummaryRowsInSection"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isSectionSummaryRowsAtBottom", { get: function () { return this.r; }, set: function (a) { this.r = a; this.e("IsSectionSummaryRowsAtBottom"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isSectionHeaderNormalRow", { get: function () { return this.q; }, set: function (a) { this.q = a; this.e("IsSectionHeaderNormalRow"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "isSectionContentVisible", { get: function () { return this.o; }, set: function (a) { this.o = a; this.e("IsSectionContentVisible"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "shouldEmitSectionHeaders", { get: function () { return this.t; }, set: function (a) { this.t = a; this.e("ShouldEmitSectionHeaders"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "shouldEmitSectionFooters", { get: function () { return this.s; }, set: function (a) { this.s = a; this.e("ShouldEmitSectionFooters"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "shouldEmitShiftedRows", { get: function () { return this.u; }, set: function (a) { this.u = a; this.e("ShouldEmitShiftedRows"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "shouldEmitSummaryRows", { get: function () { return this.v; }, set: function (a) { this.v = a; this.e("ShouldEmitSummaryRows"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "schemaChangedRef", { get: function () { return this.aq; }, set: function (a) { this.aq = a; this.e("SchemaChangedRef"); }, enumerable: false, configurable: true }); Object.defineProperty(BaseDataSourceDescription.prototype, "rowExpansionChangedRef", { get: function () { return this.ap; }, set: function (a) { this.ap = a; this.e("RowExpansionChangedRef"); }, enumerable: false, configurable: true }); BaseDataSourceDescription.$t = markType(BaseDataSourceDescription, 'BaseDataSourceDescription', Description.$); return BaseDataSourceDescription; }(Description)); export { BaseDataSourceDescription };