UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

59 lines (58 loc) 1.86 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 WebBaseOptionLikeDescription = /*@__PURE__*/ (() => { class WebBaseOptionLikeDescription extends Description { constructor() { super(); this.k = false; this.l = false; this.m = false; this.q = null; } get_type() { return "WebBaseOptionLike"; } get type() { return this.get_type(); } get active() { return this.k; } set active(a) { this.k = a; this.j("Active"); } get disabled() { return this.l; } set disabled(a) { this.l = a; this.j("Disabled"); } get selected() { return this.m; } set selected(a) { this.m = a; this.j("Selected"); } get value() { return this.q; } set value(a) { this.q = a; this.j("Value"); } } WebBaseOptionLikeDescription.$t = markType(WebBaseOptionLikeDescription, 'WebBaseOptionLikeDescription', Description.$); return WebBaseOptionLikeDescription; })();