igniteui-react-core
Version:
Ignite UI React Core.
57 lines (56 loc) • 1.91 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 { NativeUIComponent } from "./NativeUIComponent";
import { markType } from "./type";
/**
* @hidden
*/
var NativeUILabel = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(NativeUILabel, _super);
function NativeUILabel() {
return _super !== null && _super.apply(this, arguments) || this;
}
NativeUILabel.prototype.get_e = function () {
return 3;
};
Object.defineProperty(NativeUILabel.prototype, "bm", {
get: function () {
var a = this.ag(10);
return a;
},
set: function (a) {
this.a4(10, a);
},
enumerable: false,
configurable: true
});
Object.defineProperty(NativeUILabel.prototype, "bk", {
get: function () {
var a = this.ag(11);
return a;
},
set: function (a) {
this.a4(11, a);
},
enumerable: false,
configurable: true
});
Object.defineProperty(NativeUILabel.prototype, "bl", {
get: function () {
return this.ag(31);
},
set: function (a) {
this.a4(31, a);
},
enumerable: false,
configurable: true
});
NativeUILabel.$t = markType(NativeUILabel, 'NativeUILabel', NativeUIComponent.$);
return NativeUILabel;
}(NativeUIComponent));
export { NativeUILabel };