igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
100 lines (99 loc) • 3.54 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 { CellInfoDescription } from "./CellInfoDescription";
import { markType } from "./type";
/**
* @hidden
*/
var DateTimeCellInfoDescription = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(DateTimeCellInfoDescription, _super);
function DateTimeCellInfoDescription() {
var _this = _super.call(this) || this;
_this.gr = new Date();
_this.gw = null;
_this.gm = null;
_this.gv = null;
_this.gu = null;
_this.gp = false;
return _this;
}
DateTimeCellInfoDescription.prototype.get_type = function () {
return "DateTimeCellInfo";
};
Object.defineProperty(DateTimeCellInfoDescription.prototype, "dateTimeValue", {
get: function () {
return this.gr;
},
set: function (a) {
this.gr = a;
this.j("DateTimeValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatStringOverride", {
get: function () {
return this.gw;
},
set: function (a) {
this.gw = a;
this.j("FormatStringOverride");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatSpecifiers", {
get: function () {
return this.gm;
},
set: function (a) {
this.gm = a;
this.j("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatOverrideRef", {
get: function () {
return this.gv;
},
set: function (a) {
this.gv = a;
this.j("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "dateTimeFormat", {
get: function () {
return this.gu;
},
set: function (a) {
this.gu = a;
this.j("DateTimeFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "isOffsetValue", {
get: function () {
return this.gp;
},
set: function (a) {
this.gp = a;
this.j("IsOffsetValue");
},
enumerable: false,
configurable: true
});
DateTimeCellInfoDescription.$t = markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$);
DateTimeCellInfoDescription.__marshalByValue1 = true;
DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel";
return DateTimeCellInfoDescription;
}(CellInfoDescription));
export { DateTimeCellInfoDescription };