UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

75 lines (74 loc) 2.21 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 WebRowDirectiveDescription = /*@__PURE__*/ (() => { class WebRowDirectiveDescription extends Description { constructor() { super(); this.p = null; this.n = 0; this.f = false; this.h = false; this.g = false; this.i = false; } get_type() { return "WebRowDirective"; } get type() { return this.get_type(); } get data() { return this.p; } set data(a) { this.p = a; this.e("Data"); } get index() { return this.n; } set index(a) { this.n = a; this.e("Index"); } get disabled() { return this.f; } set disabled(a) { this.f = a; this.e("Disabled"); } get pinned() { return this.h; } set pinned(a) { this.h = a; this.e("Pinned"); } get expanded() { return this.g; } set expanded(a) { this.g = a; this.e("Expanded"); } get selected() { return this.i; } set selected(a) { this.i = a; this.e("Selected"); } } WebRowDirectiveDescription.$t = markType(WebRowDirectiveDescription, 'WebRowDirectiveDescription', Description.$); return WebRowDirectiveDescription; })();