UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

67 lines (66 loc) 2.02 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.s = null; this.q = 0; this.k = false; this.m = false; this.l = false; } get_type() { return "WebRowDirective"; } get type() { return this.get_type(); } get data() { return this.s; } set data(a) { this.s = a; this.j("Data"); } get index() { return this.q; } set index(a) { this.q = a; this.j("Index"); } get disabled() { return this.k; } set disabled(a) { this.k = a; this.j("Disabled"); } get pinned() { return this.m; } set pinned(a) { this.m = a; this.j("Pinned"); } get expanded() { return this.l; } set expanded(a) { this.l = a; this.j("Expanded"); } } WebRowDirectiveDescription.$t = markType(WebRowDirectiveDescription, 'WebRowDirectiveDescription', Description.$); return WebRowDirectiveDescription; })();