UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

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