igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
134 lines (133 loc) • 4.39 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 { __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.as = null;
_this.am = new Date();
_this.al = new Date();
_this.ak = new Date();
_this.ar = null;
_this.ag = null;
_this.ai = false;
_this.at = null;
_this.aq = null;
return _this;
}
WebDateTimeInputDescription.prototype.get_type = function () {
return "WebDateTimeInput";
};
Object.defineProperty(WebDateTimeInputDescription.prototype, "inputFormat", {
get: function () {
return this.as;
},
set: function (a) {
this.as = a;
this.e("InputFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "value", {
get: function () {
return this.am;
},
set: function (a) {
this.am = a;
this.e("Value");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "minValue", {
get: function () {
return this.al;
},
set: function (a) {
this.al = a;
this.e("MinValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "maxValue", {
get: function () {
return this.ak;
},
set: function (a) {
this.ak = a;
this.e("MaxValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "displayFormat", {
get: function () {
return this.ar;
},
set: function (a) {
this.ar = a;
this.e("DisplayFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "spinDelta", {
get: function () {
return this.ag;
},
set: function (a) {
this.ag = a;
this.e("SpinDelta");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "spinLoop", {
get: function () {
return this.ai;
},
set: function (a) {
this.ai = a;
this.e("SpinLoop");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "locale", {
get: function () {
return this.at;
},
set: function (a) {
this.at = a;
this.e("Locale");
},
enumerable: false,
configurable: true
});
Object.defineProperty(WebDateTimeInputDescription.prototype, "changeRef", {
get: function () {
return this.aq;
},
set: function (a) {
this.aq = a;
this.e("ChangeRef");
},
enumerable: false,
configurable: true
});
WebDateTimeInputDescription.$t = markType(WebDateTimeInputDescription, 'WebDateTimeInputDescription', WebMaskInputBaseDescription.$);
return WebDateTimeInputDescription;
}(WebMaskInputBaseDescription));
export { WebDateTimeInputDescription };