UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

99 lines (98 loc) 2.73 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 WebTreeItemDescription = /*@__PURE__*/ (() => { class WebTreeItemDescription extends Description { constructor() { super(); this.f = null; this.r = 0; this.v = null; this.j = false; this.h = false; this.i = false; this.l = false; this.k = false; this.t = null; } get_type() { return "WebTreeItem"; } get type() { return this.get_type(); } get parent() { return this.f; } set parent(a) { this.f = a; this.e("Parent"); } get level() { return this.r; } set level(a) { this.r = a; this.e("Level"); } get label() { return this.v; } set label(a) { this.v = a; this.e("Label"); } get expanded() { return this.j; } set expanded(a) { this.j = a; this.e("Expanded"); } get active() { return this.h; } set active(a) { this.h = a; this.e("Active"); } get disabled() { return this.i; } set disabled(a) { this.i = a; this.e("Disabled"); } get selected() { return this.l; } set selected(a) { this.l = a; this.e("Selected"); } get loading() { return this.k; } set loading(a) { this.k = a; this.e("Loading"); } get value() { return this.t; } set value(a) { this.t = a; this.e("Value"); } } WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$); return WebTreeItemDescription; })();