igniteui-react-core
Version:
Ignite UI React Core.
177 lines (176 loc) • 5.29 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 WebPaginatorDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(WebPaginatorDescription, _super);
function WebPaginatorDescription() {
var _this = _super.call(this) || this;
_this.p = 0;
_this.n = 0;
_this.o = 0;
_this.q = 0;
_this.h = null;
_this.j = null;
_this.l = null;
_this.v = null;
_this.z = null;
_this.w = null;
_this.x = null;
_this.y = null;
return _this;
}
WebPaginatorDescription.prototype.get_type = function () {
return "WebPaginator";
};
Object.defineProperty(WebPaginatorDescription.prototype, "type", {
get: function () {
return this.get_type();
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "totalPages", {
get: function () {
return this.p;
},
set: function (a) {
this.p = a;
this.g("TotalPages");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "page", {
get: function () {
return this.n;
},
set: function (a) {
this.n = a;
this.g("Page");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "perPage", {
get: function () {
return this.o;
},
set: function (a) {
this.o = a;
this.g("PerPage");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "totalRecords", {
get: function () {
return this.q;
},
set: function (a) {
this.q = a;
this.g("TotalRecords");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "selectOptions", {
get: function () {
return this.h;
},
set: function (a) {
this.h = a;
this.g("SelectOptions");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "overlaySettings", {
get: function () {
return this.j;
},
set: function (a) {
this.j = a;
this.g("OverlaySettings");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "resourceStrings", {
get: function () {
return this.l;
},
set: function (a) {
this.l = a;
this.g("ResourceStrings");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "name", {
get: function () {
return this.v;
},
set: function (a) {
this.v = a;
this.g("Name");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "perPageChangeRef", {
get: function () {
return this.z;
},
set: function (a) {
this.z = a;
this.g("PerPageChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "pageChangeRef", {
get: function () {
return this.w;
},
set: function (a) {
this.w = a;
this.g("PageChangeRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "pagingRef", {
get: function () {
return this.x;
},
set: function (a) {
this.x = a;
this.g("PagingRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebPaginatorDescription.prototype, "pagingDoneRef", {
get: function () {
return this.y;
},
set: function (a) {
this.y = a;
this.g("PagingDoneRef");
},
enumerable: false,
configurable: true
});
WebPaginatorDescription.$t = markType(WebPaginatorDescription, 'WebPaginatorDescription', Description.$);
return WebPaginatorDescription;
}(Description));
export { WebPaginatorDescription };