UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

115 lines (114 loc) 3.27 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 WebPaginatorDescription = /*@__PURE__*/ (() => { class WebPaginatorDescription extends Description { constructor() { super(); this.s = 0; this.q = 0; this.r = 0; this.t = 0; this.k = null; this.m = null; this.o = null; this.ab = null; this.y = null; this.z = null; this.aa = null; } get_type() { return "WebPaginator"; } get type() { return this.get_type(); } get totalPages() { return this.s; } set totalPages(a) { this.s = a; this.j("TotalPages"); } get page() { return this.q; } set page(a) { this.q = a; this.j("Page"); } get perPage() { return this.r; } set perPage(a) { this.r = a; this.j("PerPage"); } get totalRecords() { return this.t; } set totalRecords(a) { this.t = a; this.j("TotalRecords"); } get selectOptions() { return this.k; } set selectOptions(a) { this.k = a; this.j("SelectOptions"); } get overlaySettings() { return this.m; } set overlaySettings(a) { this.m = a; this.j("OverlaySettings"); } get resourceStrings() { return this.o; } set resourceStrings(a) { this.o = a; this.j("ResourceStrings"); } get perPageChangeRef() { return this.ab; } set perPageChangeRef(a) { this.ab = a; this.j("PerPageChangeRef"); } get pageChangeRef() { return this.y; } set pageChangeRef(a) { this.y = a; this.j("PageChangeRef"); } get pagingRef() { return this.z; } set pagingRef(a) { this.z = a; this.j("PagingRef"); } get pagingDoneRef() { return this.aa; } set pagingDoneRef(a) { this.aa = a; this.j("PagingDoneRef"); } } WebPaginatorDescription.$t = markType(WebPaginatorDescription, 'WebPaginatorDescription', Description.$); return WebPaginatorDescription; })();