office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
22 lines • 1.45 kB
JavaScript
define(["require", "exports", "tslib", "react", "office-ui-fabric-react/lib/Button", "office-ui-fabric-react/lib/Tooltip", "office-ui-fabric-react/lib/Utilities"], function (require, exports, tslib_1, React, Button_1, Tooltip_1, Utilities_1) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var TooltipBasicExample = /** @class */ (function (_super) {
tslib_1.__extends(TooltipBasicExample, _super);
function TooltipBasicExample() {
var _this = _super !== null && _super.apply(this, arguments) || this;
// Use getId() to ensure that the ID is unique on the page.
// (It's also okay to use a plain string without getId() and manually ensure uniqueness.)
_this._hostId = Utilities_1.getId('tooltipHost');
return _this;
}
TooltipBasicExample.prototype.render = function () {
return (React.createElement("div", null,
React.createElement(Tooltip_1.TooltipHost, { content: "This is the tooltip", id: this._hostId, calloutProps: { gapSpace: 0 }, styles: { root: { display: 'inline-block' } } },
React.createElement(Button_1.DefaultButton, { "aria-labelledby": this._hostId }, "Hover Over Me"))));
};
return TooltipBasicExample;
}(React.Component));
exports.TooltipBasicExample = TooltipBasicExample;
});
//# sourceMappingURL=Tooltip.Basic.Example.js.map