igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
106 lines (105 loc) • 3.27 kB
JavaScript
/*
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 {
constructor() {
super();
this.fl = null;
this.fr = null;
this.fx = null;
this.fw = null;
this.fv = null;
this.ft = null;
this.fu = null;
this.fj = null;
this.fs = null;
this.fo = false;
}
get_type() {
return "EditorCellInfo";
}
get editTarget() {
return this.fl;
}
set editTarget(a) {
this.fl = a;
this.e("EditTarget");
}
get dataType() {
return this.fr;
}
set dataType(a) {
this.fr = a;
this.e("DataType");
}
get errorMessage() {
return this.fx;
}
set errorMessage(a) {
this.fx = a;
this.e("ErrorMessage");
}
get editValueRef() {
return this.fw;
}
set editValueRef(a) {
this.fw = a;
this.e("EditValueRef");
}
get editorType() {
return this.fv;
}
set editorType(a) {
this.fv = a;
this.e("EditorType");
}
get editorDataSourceRef() {
return this.ft;
}
set editorDataSourceRef(a) {
this.ft = a;
this.e("EditorDataSourceRef");
}
get editorTextField() {
return this.fu;
}
set editorTextField(a) {
this.fu = a;
this.e("EditorTextField");
}
get editorValueField() {
return this.fj;
}
set editorValueField(a) {
this.fj = a;
this.e("EditorValueField");
}
get dateFormatString() {
return this.fs;
}
set dateFormatString(a) {
this.fs = a;
this.e("DateFormatString");
}
get showTodayButton() {
return this.fo;
}
set showTodayButton(a) {
this.fo = a;
this.e("ShowTodayButton");
}
}
EditorCellInfoDescription.$t = markType(EditorCellInfoDescription, 'EditorCellInfoDescription', CellInfoDescription.$);
EditorCellInfoDescription.__marshalByValue1 = true;
EditorCellInfoDescription.__marshalByValueAlias1 = "EditorCellModel";
return EditorCellInfoDescription;
})();