UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

134 lines (133 loc) 4.37 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 { WebMaskInputBaseDescription } from "./WebMaskInputBaseDescription"; import { markType } from "./type"; /** * @hidden */ var WebDateTimeInputDescription = /** @class */ /*@__PURE__*/ (function (_super) { __extends(WebDateTimeInputDescription, _super); function WebDateTimeInputDescription() { var _this = _super.call(this) || this; _this.av = null; _this.ap = new Date(); _this.ao = new Date(); _this.an = new Date(); _this.au = null; _this.aj = null; _this.al = false; _this.aw = null; _this.at = null; return _this; } WebDateTimeInputDescription.prototype.get_type = function () { return "WebDateTimeInput"; }; Object.defineProperty(WebDateTimeInputDescription.prototype, "inputFormat", { get: function () { return this.av; }, set: function (a) { this.av = a; this.j("InputFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "value", { get: function () { return this.ap; }, set: function (a) { this.ap = a; this.j("Value"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "min", { get: function () { return this.ao; }, set: function (a) { this.ao = a; this.j("Min"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "max", { get: function () { return this.an; }, set: function (a) { this.an = a; this.j("Max"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "displayFormat", { get: function () { return this.au; }, set: function (a) { this.au = a; this.j("DisplayFormat"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "spinDelta", { get: function () { return this.aj; }, set: function (a) { this.aj = a; this.j("SpinDelta"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "spinLoop", { get: function () { return this.al; }, set: function (a) { this.al = a; this.j("SpinLoop"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "locale", { get: function () { return this.aw; }, set: function (a) { this.aw = a; this.j("Locale"); }, enumerable: false, configurable: true }); Object.defineProperty(WebDateTimeInputDescription.prototype, "changeRef", { get: function () { return this.at; }, set: function (a) { this.at = a; this.j("ChangeRef"); }, enumerable: false, configurable: true }); WebDateTimeInputDescription.$t = markType(WebDateTimeInputDescription, 'WebDateTimeInputDescription', WebMaskInputBaseDescription.$); return WebDateTimeInputDescription; }(WebMaskInputBaseDescription)); export { WebDateTimeInputDescription };