@gooddata/react-components
Version:
GoodData.UI - A powerful JavaScript library for building analytical applications
35 lines • 1.59 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
// (C) 2019 GoodData Corporation
var React = require("react");
var react_intl_1 = require("react-intl");
var classNames = require("classnames");
var UnsupportedProperties = /** @class */ (function (_super) {
__extends(UnsupportedProperties, _super);
function UnsupportedProperties() {
return _super !== null && _super.apply(this, arguments) || this;
}
UnsupportedProperties.prototype.render = function () {
return (React.createElement("div", { className: this.getClassNames() },
React.createElement(react_intl_1.FormattedMessage, { id: "properties.unsupported" })));
};
UnsupportedProperties.prototype.getClassNames = function () {
return classNames("adi-unsupported-configuration", "s-properties-unsupported");
};
return UnsupportedProperties;
}(React.Component));
exports.default = UnsupportedProperties;
//# sourceMappingURL=UnsupportedProperties.js.map