UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

59 lines (58 loc) 1.81 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 WebCellDescription = /*@__PURE__*/ (() => { class WebCellDescription extends Description { constructor() { super(); this.h = null; this.i = null; this.g = null; this.f = null; } get_type() { return "WebCell"; } get type() { return this.get_type(); } get primaryKey() { return this.h; } set primaryKey(a) { this.h = a; this.e("PrimaryKey"); } get state() { return this.i; } set state(a) { this.i = a; this.e("State"); } get pendingValue() { return this.g; } set pendingValue(a) { this.g = a; this.e("PendingValue"); } get editValue() { return this.f; } set editValue(a) { this.f = a; this.e("EditValue"); } } WebCellDescription.$t = markType(WebCellDescription, 'WebCellDescription', Description.$); return WebCellDescription; })();