UNPKG

igniteui-react-core

Version:
106 lines (105 loc) 3.17 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 { CellInfoDescription } from "./CellInfoDescription"; import { markType } from "./type"; /** * @hidden */ export let EditorCellInfoDescription = /*@__PURE__*/ (() => { class EditorCellInfoDescription extends CellInfoDescription { get_type() { return "EditorCellInfo"; } constructor() { super(); this.fp = null; this.fv = null; this.f1 = null; this.f0 = null; this.fz = null; this.fx = null; this.fy = null; this.fn = null; this.fw = null; this.fs = false; } get editTarget() { return this.fp; } set editTarget(a) { this.fp = a; this.g("EditTarget"); } get dataType() { return this.fv; } set dataType(a) { this.fv = a; this.g("DataType"); } get errorMessage() { return this.f1; } set errorMessage(a) { this.f1 = a; this.g("ErrorMessage"); } get editValueRef() { return this.f0; } set editValueRef(a) { this.f0 = a; this.g("EditValueRef"); } get editorType() { return this.fz; } set editorType(a) { this.fz = a; this.g("EditorType"); } get editorDataSourceRef() { return this.fx; } set editorDataSourceRef(a) { this.fx = a; this.g("EditorDataSourceRef"); } get editorTextField() { return this.fy; } set editorTextField(a) { this.fy = a; this.g("EditorTextField"); } get editorValueField() { return this.fn; } set editorValueField(a) { this.fn = a; this.g("EditorValueField"); } get dateFormatString() { return this.fw; } set dateFormatString(a) { this.fw = a; this.g("DateFormatString"); } get showTodayButton() { return this.fs; } set showTodayButton(a) { this.fs = a; this.g("ShowTodayButton"); } } EditorCellInfoDescription.$t = /*@__PURE__*/ markType(EditorCellInfoDescription, 'EditorCellInfoDescription', CellInfoDescription.$); EditorCellInfoDescription.__marshalByValue1 = true; EditorCellInfoDescription.__marshalByValueAlias1 = "EditorCellModel"; return EditorCellInfoDescription; })();