igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
99 lines (98 loc) • 2.83 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 { Description } from "./Description";
import { markType } from "./type";
/**
* @hidden
*/
export let WebFieldTypeDescription = /*@__PURE__*/ (() => {
class WebFieldTypeDescription extends Description {
constructor() {
super();
this.v = null;
this.t = null;
this.u = null;
this.q = null;
this.k = null;
this.o = null;
this.m = null;
this.s = null;
this.r = null;
}
get_type() {
return "WebFieldType";
}
get type() {
return this.get_type();
}
get label() {
return this.v;
}
set label(a) {
this.v = a;
this.j("Label");
}
get field() {
return this.t;
}
set field(a) {
this.t = a;
this.j("Field");
}
get header() {
return this.u;
}
set header(a) {
this.u = a;
this.j("Header");
}
get dataType() {
return this.q;
}
set dataType(a) {
this.q = a;
this.j("DataType");
}
get editorOptions() {
return this.k;
}
set editorOptions(a) {
this.k = a;
this.j("EditorOptions");
}
get filters() {
return this.o;
}
set filters(a) {
this.o = a;
this.j("Filters");
}
get pipeArgs() {
return this.m;
}
set pipeArgs(a) {
this.m = a;
this.j("PipeArgs");
}
get defaultTimeFormat() {
return this.s;
}
set defaultTimeFormat(a) {
this.s = a;
this.j("DefaultTimeFormat");
}
get defaultDateTimeFormat() {
return this.r;
}
set defaultDateTimeFormat(a) {
this.r = a;
this.j("DefaultDateTimeFormat");
}
}
WebFieldTypeDescription.$t = markType(WebFieldTypeDescription, 'WebFieldTypeDescription', Description.$);
return WebFieldTypeDescription;
})();