UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

141 lines (140 loc) 4.44 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 { __extends } from "tslib"; import { Description } from "./Description"; import { markType } from "./type"; /** * @hidden */ var WebFieldTypeDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebFieldTypeDescription, _super); function WebFieldTypeDescription() { var _this = _super.call(this) || this; _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; return _this; } WebFieldTypeDescription.prototype.get_type = function () { return "WebFieldType"; }; Object.defineProperty(WebFieldTypeDescription.prototype, "type", { get: function () { return this.get_type(); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "label", { get: function () { return this.v; }, set: function (a) { this.v = a; this.j("Label"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "field", { get: function () { return this.t; }, set: function (a) { this.t = a; this.j("Field"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "header", { get: function () { return this.u; }, set: function (a) { this.u = a; this.j("Header"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "dataType", { get: function () { return this.q; }, set: function (a) { this.q = a; this.j("DataType"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "editorOptions", { get: function () { return this.k; }, set: function (a) { this.k = a; this.j("EditorOptions"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "filters", { get: function () { return this.o; }, set: function (a) { this.o = a; this.j("Filters"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "pipeArgs", { get: function () { return this.m; }, set: function (a) { this.m = a; this.j("PipeArgs"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "defaultTimeFormat", { get: function () { return this.s; }, set: function (a) { this.s = a; this.j("DefaultTimeFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(WebFieldTypeDescription.prototype, "defaultDateTimeFormat", { get: function () { return this.r; }, set: function (a) { this.r = a; this.j("DefaultDateTimeFormat"); }, enumerable: false, configurable: true }); WebFieldTypeDescription.$t = markType(WebFieldTypeDescription, 'WebFieldTypeDescription', Description.$); return WebFieldTypeDescription; }(Description)); export { WebFieldTypeDescription };