igniteui-react-core
Version:
Ignite UI React Core.
42 lines (41 loc) • 1.59 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 { NativeUIContainer } from "./NativeUIContainer";
import { markType } from "./type";
/**
* @hidden
*/
var NativeUIContent = /** @class */ /*@__PURE__*/ (function (_super) {
__extends(NativeUIContent, _super);
function NativeUIContent() {
return _super !== null && _super.apply(this, arguments) || this;
}
NativeUIContent.prototype.get_e = function () {
return 0;
};
Object.defineProperty(NativeUIContent.prototype, "br", {
get: function () {
return this.d;
},
enumerable: false,
configurable: true
});
Object.defineProperty(NativeUIContent.prototype, "bs", {
get: function () {
return this.br.getContent(this.am);
},
set: function (a) {
this.br.setContent(this.am, a);
},
enumerable: false,
configurable: true
});
NativeUIContent.$t = markType(NativeUIContent, 'NativeUIContent', NativeUIContainer.$);
return NativeUIContent;
}(NativeUIContainer));
export { NativeUIContent };