UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

131 lines (130 loc) 3.6 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 DataGridPagerDescription = /*@__PURE__*/ (() => { class DataGridPagerDescription extends Description { constructor() { super(); 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; } get_type() { return "DataGridPager"; } get type() { return this.get_type(); } get pagerText() { return this.ab; } set pagerText(a) { this.ab = a; this.j("PagerText"); } get pageSize() { return this.q; } set pageSize(a) { this.q = a; this.j("PageSize"); } get pageCount() { return this.p; } set pageCount(a) { this.p = a; this.j("PageCount"); } get dataSourceRef() { return this.w; } set dataSourceRef(a) { this.w = a; this.j("DataSourceRef"); } get dataSource() { return this.k; } set dataSource(a) { this.k = a; this.j("DataSource"); } get currentPage() { return this.o; } set currentPage(a) { this.o = a; this.j("CurrentPage"); } get fontFamily() { return this.x; } set fontFamily(a) { this.x = a; this.j("FontFamily"); } get fontSize() { return this.m; } set fontSize(a) { this.m = a; this.j("FontSize"); } get fontStyle() { return this.y; } set fontStyle(a) { this.y = a; this.j("FontStyle"); } get fontWeight() { return this.z; } set fontWeight(a) { this.z = a; this.j("FontWeight"); } get background() { return this.u; } set background(a) { this.u = a; this.j("Background"); } get border() { return this.v; } set border(a) { this.v = a; this.j("Border"); } get pageChangedRef() { return this.aa; } set pageChangedRef(a) { this.aa = a; this.j("PageChangedRef"); } } DataGridPagerDescription.$t = markType(DataGridPagerDescription, 'DataGridPagerDescription', Description.$); return DataGridPagerDescription; })();