igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
189 lines (188 loc) • 5.8 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 { __extends } from "tslib";
import { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
var DataGridPagerDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DataGridPagerDescription, _super);
function DataGridPagerDescription() {
var _this = _super.call(this) || this;
_this.ab = null;
_this.q = 0;
_this.p = 0;
_this.w = null;
_this.k = null;
_this.o = 0;
_this.x = null;
_this.m = 0;
_this.y = null;
_this.z = null;
_this.u = null;
_this.v = null;
_this.aa = null;
return _this;
}
DataGridPagerDescription.prototype.get_type = function () {
return "DataGridPager";
};
Object.defineProperty(DataGridPagerDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "pagerText", {
get: function () {
return this.ab;
},
set: function (a) {
this.ab = a;
this.j("PagerText");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "pageSize", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.j("PageSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "pageCount", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.j("PageCount");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "dataSourceRef", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.j("DataSourceRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "dataSource", {
get: function () {
return this.k;
},
set: function (a) {
this.k = a;
this.j("DataSource");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "currentPage", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.j("CurrentPage");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "fontFamily", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.j("FontFamily");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "fontSize", {
get: function () {
return this.m;
},
set: function (a) {
this.m = a;
this.j("FontSize");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "fontStyle", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.j("FontStyle");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "fontWeight", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.j("FontWeight");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "background", {
get: function () {
return this.u;
},
set: function (a) {
this.u = a;
this.j("Background");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "border", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.j("Border");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DataGridPagerDescription.prototype, "pageChangedRef", {
get: function () {
return this.aa;
},
set: function (a) {
this.aa = a;
this.j("PageChangedRef");
},
enumerable: false,
configurable: true
});
DataGridPagerDescription.$t = markType(DataGridPagerDescription, 'DataGridPagerDescription', Description.$);
return DataGridPagerDescription;
}(Description));
export { DataGridPagerDescription };