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.fo = new Date();
_this.ft = null;
_this.fj = null;
_this.fs = null;
_this.fr = null;
_this.fm = false;
return _this;
}
DateTimeCellInfoDescription.prototype.get_type = function () {
return "DateTimeCellInfo";
};
Object.defineProperty(DateTimeCellInfoDescription.prototype, "dateTimeValue", {
get: function () {
return this.fo;
},
set: function (a) {
this.fo = a;
this.e("DateTimeValue");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatStringOverride", {
get: function () {
return this.ft;
},
set: function (a) {
this.ft = a;
this.e("FormatStringOverride");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatSpecifiers", {
get: function () {
return this.fj;
},
set: function (a) {
this.fj = a;
this.e("FormatSpecifiers");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "formatOverrideRef", {
get: function () {
return this.fs;
},
set: function (a) {
this.fs = a;
this.e("FormatOverrideRef");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "dateTimeFormat", {
get: function () {
return this.fr;
},
set: function (a) {
this.fr = a;
this.e("DateTimeFormat");
},
enumerable: false,
configurable: true
});
Object.defineProperty(DateTimeCellInfoDescription.prototype, "isOffsetValue", {
get: function () {
return this.fm;
},
set: function (a) {
this.fm = a;
this.e("IsOffsetValue");
},
enumerable: false,
configurable: true
});
DateTimeCellInfoDescription.$t = markType(DateTimeCellInfoDescription, 'DateTimeCellInfoDescription', CellInfoDescription.$);
DateTimeCellInfoDescription.__marshalByValue1 = true;
DateTimeCellInfoDescription.__marshalByValueAlias1 = "DateTimeCellModel";
return DateTimeCellInfoDescription;
}(CellInfoDescription));
export { DateTimeCellInfoDescription };