UNPKG

igniteui-react-core

Version:
130 lines (129 loc) 3.74 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.gx = false; this.gu = null; this.g6 = null; this.hc = null; this.hb = null; this.ha = null; this.g8 = null; this.g9 = null; this.gs = null; this.g7 = null; this.gy = false; this.g2 = 0; this.g1 = 0; } get isHidden() { return this.gx; } set isHidden(a) { this.gx = a; this.j("IsHidden"); } get editTarget() { return this.gu; } set editTarget(a) { this.gu = a; this.j("EditTarget"); } get dataType() { return this.g6; } set dataType(a) { this.g6 = a; this.j("DataType"); } get errorMessage() { return this.hc; } set errorMessage(a) { this.hc = a; this.j("ErrorMessage"); } get editValueRef() { return this.hb; } set editValueRef(a) { this.hb = a; this.j("EditValueRef"); } get editorType() { return this.ha; } set editorType(a) { this.ha = a; this.j("EditorType"); } get editorDataSourceRef() { return this.g8; } set editorDataSourceRef(a) { this.g8 = a; this.j("EditorDataSourceRef"); } get editorTextField() { return this.g9; } set editorTextField(a) { this.g9 = a; this.j("EditorTextField"); } get editorValueField() { return this.gs; } set editorValueField(a) { this.gs = a; this.j("EditorValueField"); } get dateFormatString() { return this.g7; } set dateFormatString(a) { this.g7 = a; this.j("DateFormatString"); } get showTodayButton() { return this.gy; } set showTodayButton(a) { this.gy = a; this.j("ShowTodayButton"); } get targetRow() { return this.g2; } set targetRow(a) { this.g2 = a; this.j("TargetRow"); } get targetColumn() { return this.g1; } set targetColumn(a) { this.g1 = a; this.j("TargetColumn"); } } EditorCellInfoDescription.$t = /*@__PURE__*/ markType(EditorCellInfoDescription, 'EditorCellInfoDescription', CellInfoDescription.$); EditorCellInfoDescription.__marshalByValue1 = true; EditorCellInfoDescription.__marshalByValueAlias1 = "EditorCellModel"; return EditorCellInfoDescription; })();