igniteui-react-grids
Version:
Ignite UI React grid components.
118 lines (117 loc) • 3.69 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 { Base, markType } from "igniteui-react-core";
import { WCNativeHelper } from "igniteui-react";
/**
* @hidden
*/
var FieldPipeArgs = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(FieldPipeArgs, _super);
function FieldPipeArgs() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.a = new WCNativeHelper();
_this.d = null;
return _this;
}
Object.defineProperty(FieldPipeArgs.prototype, "b", {
get: function () {
return this.a;
},
enumerable: false,
configurable: true
});
Object.defineProperty(FieldPipeArgs.prototype, "nativeElement", {
get: function () {
return this.d;
},
set: function (a) {
this.d = a;
this.a.o = this.d;
},
enumerable: false,
configurable: true
});
FieldPipeArgs.prototype.setNativeElement = function (a) {
this.nativeElement = a;
};
Object.defineProperty(FieldPipeArgs.prototype, "i", {
get: function () {
var ret_ = this.b.n("format");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("format", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FieldPipeArgs.prototype, "j", {
get: function () {
var ret_ = this.b.n("timezone");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("timezone", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FieldPipeArgs.prototype, "g", {
get: function () {
var ret_ = this.b.n("digitsInfo");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("digitsInfo", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FieldPipeArgs.prototype, "f", {
get: function () {
var ret_ = this.b.n("currencyCode");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("currencyCode", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FieldPipeArgs.prototype, "h", {
get: function () {
var ret_ = this.b.n("display");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("display", value_);
},
enumerable: false,
configurable: true
});
Object.defineProperty(FieldPipeArgs.prototype, "c", {
get: function () {
var ret_ = this.b.n("weekStart");
return ret_;
},
set: function (a) {
var value_ = a;
this.b.w("weekStart", value_);
},
enumerable: false,
configurable: true
});
FieldPipeArgs.$t = markType(FieldPipeArgs, 'FieldPipeArgs');
return FieldPipeArgs;
}(Base));
export { FieldPipeArgs };