UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

91 lines (90 loc) 2.56 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 WebChipDescription = /*@__PURE__*/ (() => { class WebChipDescription extends Description { constructor() { super(); this.f = false; this.g = false; this.h = false; this.i = false; this.q = null; this.p = null; this.n = null; this.o = null; } get_type() { return "WebChip"; } get type() { return this.get_type(); } get disabled() { return this.f; } set disabled(a) { this.f = a; this.e("Disabled"); } get removable() { return this.g; } set removable(a) { this.g = a; this.e("Removable"); } get selectable() { return this.h; } set selectable(a) { this.h = a; this.e("Selectable"); } get selected() { return this.i; } set selected(a) { this.i = a; this.e("Selected"); } get variant() { return this.q; } set variant(a) { this.q = a; this.e("Variant"); } get size() { return this.p; } set size(a) { this.p = a; this.e("Size"); } get removeRef() { return this.n; } set removeRef(a) { this.n = a; this.e("RemoveRef"); } get selectRef() { return this.o; } set selectRef(a) { this.o = a; this.e("SelectRef"); } } WebChipDescription.$t = markType(WebChipDescription, 'WebChipDescription', Description.$); return WebChipDescription; })();