UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

45 lines (43 loc) 2.04 kB
var __extends = (this && this.__extends) || function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; var __assign = (this && this.__assign) || Object.assign || function(t) { for (var s, i = 1, n = arguments.length; i < n; i++) { s = arguments[i]; for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p]; } return t; }; define(["require", "exports", "react", "../../common/BaseComponent", "./TeachingBubbleContent", "../../Callout", "../../common/DirectionalHint", "./TeachingBubble.scss"], function (require, exports, React, BaseComponent_1, TeachingBubbleContent_1, Callout_1, DirectionalHint_1) { "use strict"; var TeachingBubble = (function (_super) { __extends(TeachingBubble, _super); // Constructor function TeachingBubble(props) { var _this = _super.call(this, props) || this; _this.state = {}; return _this; } TeachingBubble.prototype.render = function () { var _a = this.props, calloutProps = _a.calloutProps, targetElement = _a.targetElement; return (React.createElement(Callout_1.Callout, __assign({ className: 'ms-TeachingBubble', ref: this._resolveRef('_callout'), targetElement: targetElement }, calloutProps), React.createElement(TeachingBubbleContent_1.TeachingBubbleContent, __assign({}, this.props)))); }; return TeachingBubble; }(BaseComponent_1.BaseComponent)); // Specify default props values TeachingBubble.defaultProps = { calloutProps: { beakWidth: 16, gapSpace: 0, setInitialFocus: true, doNotLayer: false, directionalHint: DirectionalHint_1.DirectionalHint.rightCenter } }; exports.TeachingBubble = TeachingBubble; }); //# sourceMappingURL=TeachingBubble.js.map