}\r\n */\r\nvar Tile = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Tile, _super);\r\n // tslint:disable-next-line:no-any\r\n function Tile(props, context) {\r\n var _this = _super.call(this, props, context) || this;\r\n _this._onSelectionChange = function () {\r\n var _a = _this.props, selection = _a.selection, _b = _a.selectionIndex, selectionIndex = _b === void 0 ? -1 : _b;\r\n var isSelected = selectionIndex > -1 && !!selection && selection.isIndexSelected(selectionIndex);\r\n var isModal = !!selection && !!selection.isModal && selection.isModal();\r\n _this.setState({\r\n isSelected: isSelected,\r\n isModal: isModal\r\n });\r\n };\r\n _this._nameId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"getId\"])('Tile-name');\r\n _this._activityId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"getId\"])('Tile-activity');\r\n _this._labelId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"getId\"])('Tile-label');\r\n _this._descriptionId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"getId\"])('Tile-description');\r\n var _a = props.selectionIndex, selectionIndex = _a === void 0 ? -1 : _a, selection = props.selection;\r\n var isSelected = !!selection && selectionIndex > -1 && selection.isIndexSelected(selectionIndex);\r\n var isModal = !!selection && !!selection.isModal && selection.isModal();\r\n _this.state = {\r\n isSelected: isSelected,\r\n isModal: isModal\r\n };\r\n return _this;\r\n }\r\n Tile.prototype.componentWillReceiveProps = function (nextProps) {\r\n var _a = this.props, selection = _a.selection, selectionIndex = _a.selectionIndex;\r\n var nextSelection = nextProps.selection, _b = nextProps.selectionIndex, nextSelectionIndex = _b === void 0 ? -1 : _b;\r\n if (selection !== nextSelection || selectionIndex !== nextSelectionIndex) {\r\n var isSelected = !!nextSelection && nextSelectionIndex > -1 && nextSelection.isIndexSelected(nextSelectionIndex);\r\n var isModal = !!nextSelection && nextSelection.isModal && nextSelection.isModal();\r\n this.setState({\r\n isSelected: isSelected,\r\n isModal: isModal\r\n });\r\n }\r\n };\r\n Tile.prototype.componentDidMount = function () {\r\n var selection = this.props.selection;\r\n if (selection) {\r\n this._events.on(selection, office_ui_fabric_react_lib_Selection__WEBPACK_IMPORTED_MODULE_3__[\"SELECTION_CHANGE\"], this._onSelectionChange);\r\n }\r\n };\r\n Tile.prototype.componentDidUpdate = function (previousProps) {\r\n var selection = this.props.selection;\r\n var previousSelection = previousProps.selection;\r\n if (selection !== previousSelection) {\r\n if (previousSelection) {\r\n this._events.off(previousSelection);\r\n }\r\n if (selection) {\r\n this._events.on(selection, office_ui_fabric_react_lib_Selection__WEBPACK_IMPORTED_MODULE_3__[\"SELECTION_CHANGE\"], this._onSelectionChange);\r\n }\r\n }\r\n };\r\n Tile.prototype.render = function () {\r\n var _a = this.props, children = _a.children, _b = _a.selectionIndex, selectionIndex = _b === void 0 ? -1 : _b, _c = _a.invokeSelection, invokeSelection = _c === void 0 ? false : _c, selection = _a.selection, background = _a.background, foreground = _a.foreground, _d = _a.showBackgroundFrame, showBackgroundFrame = _d === void 0 ? false : _d, _e = _a.showForegroundFrame, showForegroundFrame = _e === void 0 ? false : _e, _f = _a.hideBackground, hideBackground = _f === void 0 ? false : _f, _g = _a.hideForeground, hideForeground = _g === void 0 ? false : _g, itemName = _a.itemName, itemActivity = _a.itemActivity, componentRef = _a.componentRef, className = _a.className, _h = _a.tileSize, tileSize = _h === void 0 ? 'large' : _h, contentSize = _a.contentSize, ariaLabel = _a.ariaLabel, descriptionAriaLabel = _a.descriptionAriaLabel, href = _a.href, onClick = _a.onClick, divProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](_a, [\"children\", \"selectionIndex\", \"invokeSelection\", \"selection\", \"background\", \"foreground\", \"showBackgroundFrame\", \"showForegroundFrame\", \"hideBackground\", \"hideForeground\", \"itemName\", \"itemActivity\", \"componentRef\", \"className\", \"tileSize\", \"contentSize\", \"ariaLabel\", \"descriptionAriaLabel\", \"href\", \"onClick\"]);\r\n var _j = this.state, _k = _j.isSelected, isSelected = _k === void 0 ? false : _k, _l = _j.isModal, isModal = _l === void 0 ? false : _l;\r\n var isSelectable = !!selection && selectionIndex > -1;\r\n var isInvokable = (!!href || !!onClick || !!invokeSelection) && !isModal;\r\n var content = (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](react__WEBPACK_IMPORTED_MODULE_1__[\"Fragment\"], null,\r\n ariaLabel ? (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { key: \"label\", id: this._labelId, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-label', _Tile_scss__WEBPACK_IMPORTED_MODULE_5__[\"label\"]) }, ariaLabel)) : null,\r\n background\r\n ? this._onRenderBackground({\r\n background: background,\r\n hideBackground: hideBackground\r\n })\r\n : null,\r\n foreground\r\n ? this._onRenderForeground({\r\n foreground: foreground,\r\n hideForeground: hideForeground\r\n })\r\n : null,\r\n itemName || itemActivity\r\n ? this._onRenderNameplate({\r\n name: itemName,\r\n activity: itemActivity\r\n })\r\n : null));\r\n var LinkAs = href ? 'a' : 'button';\r\n var link = (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](LinkAs, { href: href, onClick: onClick, ref: this.props.linkRef, \"data-selection-invoke\": isInvokable && selectionIndex > -1 ? true : undefined, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-link', TileStyles.link) }, content));\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ \"aria-selected\": isSelected }, divProps, { \"aria-labelledby\": ariaLabel ? this._labelId : this._nameId, \"aria-describedby\": descriptionAriaLabel ? this._descriptionId : this._activityId, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile', className, TileStyles.tile, (_m = {},\r\n _m[\"ms-Tile--isSmall \" + TileStyles.isSmall] = tileSize === 'small',\r\n _m[\"ms-Tile--isLarge \" + TileStyles.isLarge] = tileSize === 'large',\r\n _m[\"ms-Tile--hasBackgroundFrame \" + TileStyles.hasBackgroundFrame] = showBackgroundFrame,\r\n _m[\"ms-Tile--hasForegroundFrame \" + TileStyles.hasForegroundFrame] = showForegroundFrame,\r\n _m[\"ms-Tile--isSelected \" + TileStyles.selected + \" \" + SignalStyles.selected] = isSelected,\r\n _m[\"ms-Tile--isSelectable \" + TileStyles.selectable] = isSelectable,\r\n _m[\"ms-Tile--hasBackground \" + TileStyles.hasBackground] = !!background,\r\n _m[SignalStyles.dark] = !!background && !hideBackground,\r\n _m[\"ms-Tile--showBackground \" + TileStyles.showBackground] = !hideBackground,\r\n _m[\"ms-Tile--invokable \" + TileStyles.invokable] = isInvokable,\r\n _m[\"ms-Tile--uninvokable \" + TileStyles.uninvokable] = !isInvokable,\r\n _m[\"ms-Tile--isDisabled \" + TileStyles.disabled] = !isSelectable && !isInvokable,\r\n _m[\"ms-Tile--showCheck \" + TileStyles.showCheck] = isModal,\r\n _m)), \"data-is-focusable\": true, \"data-is-sub-focuszone\": true, \"data-disable-click-on-enter\": true, \"data-selection-index\": selectionIndex > -1 ? selectionIndex : undefined }),\r\n link,\r\n descriptionAriaLabel ? (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { key: \"description\", id: this._descriptionId, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-description', _Tile_scss__WEBPACK_IMPORTED_MODULE_5__[\"description\"]) }, descriptionAriaLabel)) : null,\r\n isSelectable\r\n ? this._onRenderCheck({\r\n isSelected: isSelected\r\n })\r\n : null));\r\n var _m;\r\n };\r\n Tile.prototype._onRenderBackground = function (_a) {\r\n var background = _a.background, hideBackground = _a.hideBackground;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { key: \"background\", className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-background', TileStyles.background, (_b = {},\r\n _b[\"ms-Tile-background--hide \" + TileStyles.backgroundHide] = hideBackground,\r\n _b)) }, background));\r\n var _b;\r\n };\r\n Tile.prototype._onRenderForeground = function (_a) {\r\n var foreground = _a.foreground, hideForeground = _a.hideForeground;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { key: \"foreground\", role: \"presentation\", className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-aboveNameplate', TileStyles.aboveNameplate) },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { role: \"presentation\", className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-content', TileStyles.content) },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { role: \"presentation\", className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-foreground', TileStyles.foreground, (_b = {},\r\n _b[\"ms-Tile-foreground--hide \" + TileStyles.foregroundHide] = hideForeground,\r\n _b)) }, foreground))));\r\n var _b;\r\n };\r\n Tile.prototype._onRenderNameplate = function (_a) {\r\n var name = _a.name, activity = _a.activity;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { key: \"nameplate\", className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-nameplate', TileStyles.nameplate) },\r\n name ? (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { id: this._nameId, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-name', TileStyles.name) }, name)) : null,\r\n activity ? (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { id: this._activityId, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-activity', TileStyles.activity) }, activity)) : null));\r\n };\r\n Tile.prototype._onRenderCheck = function (_a) {\r\n var isSelected = _a.isSelected;\r\n var toggleSelectionAriaLabel = this.props.toggleSelectionAriaLabel;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { key: \"check\", role: \"checkbox\", \"aria-label\": toggleSelectionAriaLabel, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-Tile-check', TileStyles.check, CheckStyles.checkHost, (_b = {},\r\n _b[CheckStyles.hostShowCheck] = this.state.isModal,\r\n _b)), \"data-selection-toggle\": true, \"aria-checked\": isSelected },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_Check__WEBPACK_IMPORTED_MODULE_2__[\"Check\"], { checked: isSelected })));\r\n var _b;\r\n };\r\n return Tile;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"BaseComponent\"]));\r\n\r\nfunction getTileLayout(tileElement) {\r\n var tileProps = tileElement.props;\r\n var contentSize = tileProps.contentSize, _a = tileProps.tileSize, tileSize = _a === void 0 ? 'large' : _a;\r\n if (!contentSize) {\r\n return {};\r\n }\r\n var width = contentSize.width;\r\n var _b = TileLayoutSizes[tileSize], nameplatePadding = _b.nameplatePadding, nameplateMargin = _b.nameplateMargin, nameplateActivityHeight = _b.nameplateActivityHeight, nameplateNameHeight = _b.nameplateNameHeight, foregroundMargin = _b.foregroundMargin;\r\n var nameplateHeight = 0;\r\n if (tileProps.itemName || tileProps.itemActivity) {\r\n nameplateHeight += nameplatePadding * 2; // 12px top/bottom padding.\r\n if (tileProps.itemName) {\r\n nameplateHeight += nameplateNameHeight;\r\n }\r\n if (tileProps.itemActivity) {\r\n nameplateHeight += nameplateActivityHeight + nameplateMargin;\r\n }\r\n }\r\n return {\r\n foregroundSize: {\r\n width: width - foregroundMargin * 2,\r\n height: contentSize.height - foregroundMargin - nameplateHeight\r\n },\r\n backgroundSize: contentSize\r\n };\r\n}\r\nfunction renderTileWithLayout(tileElement, props) {\r\n var Tag = tileElement.type;\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](Tag, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, tileElement.props, props));\r\n}\r\n//# sourceMappingURL=Tile.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Tile/Tile.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Tile/Tile.scss.js":
/*!*****************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Tile/Tile.scss.js ***!
\*****************************************************************************/
/*! exports provided: tile, selectable, selected, hasBackgroundFrame, invokable, label, description, link, foreground, foregroundHide, hasForegroundFrame, check, uninvokable, showCheck, background, backgroundHide, aboveNameplate, content, nameplate, name, activity, signal, storageSignal, socialSignal, lifecycleSignal, isLarge, isSmall, hasBackground, showBackground */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"tile\", function() { return tile; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"selectable\", function() { return selectable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"selected\", function() { return selected; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasBackgroundFrame\", function() { return hasBackgroundFrame; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"invokable\", function() { return invokable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"label\", function() { return label; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"description\", function() { return description; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"link\", function() { return link; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"foreground\", function() { return foreground; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"foregroundHide\", function() { return foregroundHide; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasForegroundFrame\", function() { return hasForegroundFrame; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"check\", function() { return check; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"uninvokable\", function() { return uninvokable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"showCheck\", function() { return showCheck; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"background\", function() { return background; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"backgroundHide\", function() { return backgroundHide; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"aboveNameplate\", function() { return aboveNameplate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"content\", function() { return content; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"nameplate\", function() { return nameplate; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"name\", function() { return name; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"activity\", function() { return activity; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"signal\", function() { return signal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"storageSignal\", function() { return storageSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"socialSignal\", function() { return socialSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lifecycleSignal\", function() { return lifecycleSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isLarge\", function() { return isLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isSmall\", function() { return isSmall; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasBackground\", function() { return hasBackground; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"showBackground\", function() { return showBackground; });\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__);\n/* tslint:disable */\r\n\r\nObject(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__[\"loadStyles\"])([{ \"rawString\": \".tile_63bc8194{display:block;position:absolute;top:0;bottom:0;left:0;right:0;z-index:0;background-color:\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \";-webkit-transition:-webkit-transform 0.1s linear;transition:-webkit-transform 0.1s linear;transition:transform 0.1s linear;transition:transform 0.1s linear, -webkit-transform 0.1s linear;color:\" }, { \"theme\": \"neutralPrimary\", \"defaultValue\": \"#333333\" }, { \"rawString\": \";-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.tile_63bc8194::-moz-focus-inner{border:0}.tile_63bc8194{outline:transparent}.tile_63bc8194.selectable_63bc8194:hover{background-color:\" }, { \"theme\": \"neutralLighter\", \"defaultValue\": \"#f4f4f4\" }, { \"rawString\": \"}.tile_63bc8194.selectable_63bc8194:hover.selected_63bc8194{background-color:\" }, { \"theme\": \"neutralQuaternaryAlt\", \"defaultValue\": \"#dadada\" }, { \"rawString\": \"}.tile_63bc8194.selected_63bc8194{background-color:\" }, { \"theme\": \"neutralLight\", \"defaultValue\": \"#eaeaea\" }, { \"rawString\": \"}.ms-Fabric--isFocusVisible .tile_63bc8194:focus{background-color:\" }, { \"theme\": \"neutralLighter\", \"defaultValue\": \"#f4f4f4\" }, { \"rawString\": \"}.ms-Fabric--isFocusVisible .tile_63bc8194:focus.selected_63bc8194{background-color:\" }, { \"theme\": \"neutralQuaternaryAlt\", \"defaultValue\": \"#dadada\" }, { \"rawString\": \"}.ms-Fabric--isFocusVisible .tile_63bc8194:focus{outline:1px solid \" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.ms-Fabric--isFocusVisible .tile_63bc8194:focus.selected_63bc8194{outline:1px solid \" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.tile_63bc8194.hasBackgroundFrame_63bc8194{-webkit-box-shadow:0 1px 3px 1px rgba(1,1,0,0.05);box-shadow:0 1px 3px 1px rgba(1,1,0,0.05)}.tile_63bc8194.hasBackgroundFrame_63bc8194.selectable_63bc8194:hover{outline:1px solid \" }, { \"theme\": \"neutralTertiaryAlt\", \"defaultValue\": \"#c8c8c8\" }, { \"rawString\": \"}.ms-Fabric--isFocusVisible .tile_63bc8194.hasBackgroundFrame_63bc8194:focus{outline:1px solid \" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.ms-Fabric--isFocusVisible .tile_63bc8194.hasBackgroundFrame_63bc8194:focus.selected_63bc8194{outline:1px solid \" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.tile_63bc8194.hasBackgroundFrame_63bc8194:after{content:'';display:block;position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none;border:2px solid \" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \"}.tile_63bc8194.invokable_63bc8194:active{-webkit-transform:scale(0.95);transform:scale(0.95)}.label_63bc8194{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.description_63bc8194{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.link_63bc8194{border:none;background:transparent;position:absolute;padding:0;top:0;left:0;bottom:0;right:0;width:100%;text-decoration:none;color:inherit;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:stretch;-ms-flex-align:stretch;align-items:stretch;-ms-flex-line-pack:stretch;align-content:stretch;text-decoration:none;pointer-events:none}.link_63bc8194::-moz-focus-inner{border:0}.link_63bc8194{outline:transparent}.foreground_63bc8194{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;position:relative;overflow:hidden;max-width:100%;max-height:100%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:1;-webkit-transition:opacity 0.2s linear;transition:opacity 0.2s linear}.tile_63bc8194.invokable_63bc8194 .foreground_63bc8194{pointer-events:auto;cursor:pointer}.foreground_63bc8194.foregroundHide_63bc8194{opacity:0}.hasForegroundFrame_63bc8194 .foreground_63bc8194{background-color:\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \";-webkit-box-shadow:0 1px 3px 1px rgba(1,1,0,0.05);box-shadow:0 1px 3px 1px rgba(1,1,0,0.05);min-width:32px;min-height:32px}.hasForegroundFrame_63bc8194 .foreground_63bc8194:after{content:'';display:block;position:absolute;top:0;left:0;bottom:0;right:0;pointer-events:none;border:2px solid \" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \"}.check_63bc8194{display:none;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;top:0;border:none;background:none;background-color:transparent;opacity:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:6px}.check_63bc8194::-moz-focus-inner{border:0}.check_63bc8194{outline:transparent}.check_63bc8194{position:absolute}.ms-Fabric--isFocusVisible .check_63bc8194:focus:after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;pointer-events:none;border:1px solid \" }, { \"theme\": \"focusBorder\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}html[dir='ltr'] .check_63bc8194{right:0}html[dir='rtl'] .check_63bc8194{left:0}.tile_63bc8194.uninvokable_63bc8194 .check_63bc8194{width:100%;height:100%}.tile_63bc8194.selectable_63bc8194 .check_63bc8194{display:-webkit-box;display:-ms-flexbox;display:flex}.tile_63bc8194.selected_63bc8194 .check_63bc8194,.tile_63bc8194:hover .check_63bc8194,.tile_63bc8194.showCheck_63bc8194 .check_63bc8194{opacity:1}.ms-Fabric--isFocusVisible .check_63bc8194:focus{opacity:1}.ms-Fabric--isFocusVisible .tile_63bc8194:focus .check_63bc8194{opacity:1}.background_63bc8194{position:absolute;top:0;left:0;right:0;bottom:0;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;opacity:1;-webkit-transition:opacity 0.2s linear;transition:opacity 0.2s linear}.tile_63bc8194.invokable_63bc8194 .background_63bc8194{cursor:pointer;pointer-events:auto}.background_63bc8194.backgroundHide_63bc8194{opacity:0}.aboveNameplate_63bc8194{-webkit-box-flex:1;-ms-flex:1;flex:1;position:relative;margin:16px 16px 0 16px}.content_63bc8194{position:absolute;top:0;left:0;bottom:0;right:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.hasForegroundFrame_63bc8194 .content_63bc8194{-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end}.nameplate_63bc8194{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:end;-ms-flex-pack:end;justify-content:flex-end;position:relative;margin:auto 0 0 0;padding:12px 8px;text-align:center;z-index:0}.nameplate_63bc8194 .name_63bc8194{-webkit-transition:color 0.2s linear;transition:color 0.2s linear}.tile_63bc8194.invokable_63bc8194 .nameplate_63bc8194 .name_63bc8194{pointer-events:auto;cursor:pointer}.link_63bc8194:hover .nameplate_63bc8194 .name_63bc8194{text-decoration:underline}.nameplate_63bc8194 .activity_63bc8194{-webkit-transition:color 0.2s linear;transition:color 0.2s linear}.tile_63bc8194.hasBackgroundFrame_63bc8194 .nameplate_63bc8194{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;padding:12px 10px}.signal_63bc8194{display:inline-block}html[dir='ltr'] .signal_63bc8194.storageSignal_63bc8194{margin-left:4px}html[dir='rtl'] .signal_63bc8194.storageSignal_63bc8194{margin-right:4px}html[dir='ltr'] .signal_63bc8194.socialSignal_63bc8194{margin-right:4px}html[dir='rtl'] .signal_63bc8194.socialSignal_63bc8194{margin-left:4px}html[dir='ltr'] .signal_63bc8194.lifecycleSignal_63bc8194{margin-right:4px}html[dir='rtl'] .signal_63bc8194.lifecycleSignal_63bc8194{margin-left:4px}.name_63bc8194{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-weight:400;color:\" }, { \"theme\": \"neutralPrimary\", \"defaultValue\": \"#333333\" }, { \"rawString\": \";white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%}html[dir='ltr'] .name_63bc8194{margin-left:-8px}html[dir='rtl'] .name_63bc8194{margin-right:-8px}html[dir='ltr'] .name_63bc8194{padding-left:8px}html[dir='rtl'] .name_63bc8194{padding-right:8px}.name_63bc8194,.isLarge_63bc8194 .name_63bc8194{font-size:14px;height:30px;margin-top:-7px;margin-bottom:-8px}.isSmall_63bc8194 .name_63bc8194{font-size:12px;height:24px;margin-top:-5px;margin-bottom:-7px}.activity_63bc8194{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;font-weight:400;font-size:12px;color:#767676;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:100%;height:24px;margin-bottom:-4px}html[dir='ltr'] .activity_63bc8194{margin-left:-8px}html[dir='rtl'] .activity_63bc8194{margin-right:-8px}html[dir='ltr'] .activity_63bc8194{padding-left:8px}html[dir='rtl'] .activity_63bc8194{padding-right:8px}.hasBackgroundFrame_63bc8194 .name_63bc8194{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hasBackgroundFrame_63bc8194 .activity_63bc8194{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.hasBackground_63bc8194 .nameplate_63bc8194:before{position:absolute;content:'';display:block;top:-12px;bottom:0;left:0;right:0;background-image:-webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,0.65)), color-stop(55%, rgba(0,0,0,0.5525)), color-stop(80%, rgba(0,0,0,0.195)), to(rgba(0,0,0,0)));background-image:linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5525) 55%, rgba(0,0,0,0.195) 80%, rgba(0,0,0,0) 100%);z-index:-1;-webkit-transition:opacity 0.2s linear;transition:opacity 0.2s linear;opacity:0}.hasBackground_63bc8194.showBackground_63bc8194 .name_63bc8194{color:\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \";text-shadow:0.5px 0.5px 2px rgba(0,0,0,0.55)}.hasBackground_63bc8194.showBackground_63bc8194 .activity_63bc8194{color:\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \";text-shadow:0.5px 0.5px 2px rgba(0,0,0,0.55)}.hasBackground_63bc8194.showBackground_63bc8194 .nameplate_63bc8194:before{opacity:1}\\n\" }]);\r\nvar tile = \"tile_63bc8194\";\r\nvar selectable = \"selectable_63bc8194\";\r\nvar selected = \"selected_63bc8194\";\r\nvar hasBackgroundFrame = \"hasBackgroundFrame_63bc8194\";\r\nvar invokable = \"invokable_63bc8194\";\r\nvar label = \"label_63bc8194\";\r\nvar description = \"description_63bc8194\";\r\nvar link = \"link_63bc8194\";\r\nvar foreground = \"foreground_63bc8194\";\r\nvar foregroundHide = \"foregroundHide_63bc8194\";\r\nvar hasForegroundFrame = \"hasForegroundFrame_63bc8194\";\r\nvar check = \"check_63bc8194\";\r\nvar uninvokable = \"uninvokable_63bc8194\";\r\nvar showCheck = \"showCheck_63bc8194\";\r\nvar background = \"background_63bc8194\";\r\nvar backgroundHide = \"backgroundHide_63bc8194\";\r\nvar aboveNameplate = \"aboveNameplate_63bc8194\";\r\nvar content = \"content_63bc8194\";\r\nvar nameplate = \"nameplate_63bc8194\";\r\nvar name = \"name_63bc8194\";\r\nvar activity = \"activity_63bc8194\";\r\nvar signal = \"signal_63bc8194\";\r\nvar storageSignal = \"storageSignal_63bc8194\";\r\nvar socialSignal = \"socialSignal_63bc8194\";\r\nvar lifecycleSignal = \"lifecycleSignal_63bc8194\";\r\nvar isLarge = \"isLarge_63bc8194\";\r\nvar isSmall = \"isSmall_63bc8194\";\r\nvar hasBackground = \"hasBackground_63bc8194\";\r\nvar showBackground = \"showBackground_63bc8194\";\r\n//# sourceMappingURL=Tile.scss.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Tile/Tile.scss.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Tile/index.js":
/*!*************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Tile/index.js ***!
\*************************************************************************/
/*! exports provided: TileLayoutValues, TileLayoutSizes, Tile, getTileLayout, renderTileWithLayout, ShimmerTile */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Tile__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Tile */ \"./node_modules/@uifabric/experiments/lib/components/Tile/Tile.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TileLayoutValues\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_0__[\"TileLayoutValues\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TileLayoutSizes\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_0__[\"TileLayoutSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tile\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_0__[\"Tile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getTileLayout\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_0__[\"getTileLayout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"renderTileWithLayout\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_0__[\"renderTileWithLayout\"]; });\n\n/* harmony import */ var _ShimmerTile_ShimmerTile__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ShimmerTile/ShimmerTile */ \"./node_modules/@uifabric/experiments/lib/components/Tile/ShimmerTile/ShimmerTile.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerTile\", function() { return _ShimmerTile_ShimmerTile__WEBPACK_IMPORTED_MODULE_1__[\"ShimmerTile\"]; });\n\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Tile/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.js ***!
\**********************************************************************************/
/*! exports provided: TilesList */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TilesList\", function() { return TilesList; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var office_ui_fabric_react_lib_List__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! office-ui-fabric-react/lib/List */ \"./node_modules/office-ui-fabric-react/lib/List.js\");\n/* harmony import */ var office_ui_fabric_react_lib_FocusZone__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! office-ui-fabric-react/lib/FocusZone */ \"./node_modules/office-ui-fabric-react/lib/FocusZone.js\");\n/* harmony import */ var office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! office-ui-fabric-react/lib/Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _TilesList_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./TilesList.scss */ \"./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.scss.js\");\n/* harmony import */ var _Shimmer_Shimmer__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../Shimmer/Shimmer */ \"./node_modules/@uifabric/experiments/lib/components/Shimmer/Shimmer.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n// tslint:disable-next-line:no-any\r\nvar TilesListStyles = _TilesList_scss__WEBPACK_IMPORTED_MODULE_5__;\r\nvar MAX_TILE_STRETCH = 1.5;\r\nvar CELLS_PER_PAGE = 100;\r\nvar MIN_ASPECT_RATIO = 0.5;\r\nvar MAX_ASPECT_RATIO = 3;\r\nvar ROW_OF_PLACEHOLDER_CELLS = 3;\r\n/**\r\n * Component which renders a virtualized flexbox list of 'tiles', which have arbitrary width and height\r\n * and which support scaling to fill rows when needed.\r\n */\r\nvar TilesList = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](TilesList, _super);\r\n // tslint:disable-next-line:no-any\r\n function TilesList(props, context) {\r\n var _this = _super.call(this, props, context) || this;\r\n /**\r\n * Renders a single list page using a flexbox layout.\r\n * By defualt, List provides no special formatting for a list page. For Tiles, the parent element\r\n * needs flexbox metadata and padding to support the alignment rules.\r\n */\r\n _this._onRenderPage = function (pageProps, defaultRender) {\r\n var page = pageProps.page, pageClassName = pageProps.className, divProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](pageProps, [\"page\", \"className\"]);\r\n var items = page.items;\r\n var data = page.data;\r\n var cells = items || [];\r\n var grids = [];\r\n var previousCell = _this.state.cells[page.startIndex - 1];\r\n var nextCell = _this.state.cells[page.startIndex + page.itemCount];\r\n var endIndex = cells.length;\r\n var currentRow;\r\n var shimmerWrapperWidth = 0;\r\n var _loop_1 = function (i) {\r\n // For each cell at the start of a grid.\r\n var grid = cells[i].grid;\r\n var isPlaceholder = grid.isPlaceholder;\r\n var renderedCells = [];\r\n var width = data.pageWidths[page.startIndex + i];\r\n var _loop_2 = function () {\r\n // For each cell in the current grid.\r\n var cell = cells[i];\r\n var index = page.startIndex + i;\r\n var cellAsFirstRow = data.rows[index];\r\n if (cellAsFirstRow) {\r\n currentRow = cellAsFirstRow;\r\n }\r\n var finalSize = data.cellSizes[index];\r\n if (currentRow) {\r\n var scaleFactor = currentRow.scaleFactor, isLastRow = currentRow.isLastRow, currentRowMaxScaleFactor = currentRow.maxScaleFactor;\r\n if (currentRowMaxScaleFactor) {\r\n // If the current row has its own max scale factor,\r\n // compute final size from the provided value.\r\n var finalScaleFactor = Math.min(currentRowMaxScaleFactor, grid.maxScaleFactor);\r\n finalSize = {\r\n width: finalSize.width * finalScaleFactor,\r\n height: grid.mode === 2 /* fill */ ? finalSize.height * finalScaleFactor : grid.minRowHeight\r\n };\r\n }\r\n else if ((grid.mode === 2 /* fill */ || grid.mode === 3 /* fillHorizontal */) &&\r\n (!isLastRow || scaleFactor <= grid.maxScaleFactor)) {\r\n // Compute the final size from the overall max scale factor, if present.\r\n var finalScaleFactor = Math.min(grid.maxScaleFactor, scaleFactor);\r\n finalSize = {\r\n width: finalSize.width * finalScaleFactor,\r\n height: grid.mode === 2 /* fill */ ? finalSize.height * finalScaleFactor : grid.minRowHeight\r\n };\r\n }\r\n }\r\n var renderedCell = function (keyOffset) {\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { key: grid.key + \"-item-\" + cell.key + (keyOffset ? '-' + keyOffset : ''), \"data-item-index\": index, className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-List-cell', _this._onGetCellClassName(), (_a = {},\r\n _a[\"ms-TilesList-cell--firstInRow \" + TilesListStyles.cellFirstInRow] = !!cellAsFirstRow,\r\n _a)), \r\n // tslint:disable-next-line:jsx-ban-props\r\n style: tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _this._onGetCellStyle(cell, currentRow)) }, _this._onRenderCell(cell, finalSize)));\r\n var _a;\r\n };\r\n if (cell.isPlaceholder && grid.mode !== 0 /* none */) {\r\n var cellsPerRow = Math.floor(width / (grid.spacing + finalSize.width));\r\n var totalPlaceholderItems = cellsPerRow * ROW_OF_PLACEHOLDER_CELLS;\r\n shimmerWrapperWidth = cellsPerRow * finalSize.width + grid.spacing * (cellsPerRow - 1);\r\n for (var j = 0; j < totalPlaceholderItems; j++) {\r\n renderedCells.push(renderedCell(j));\r\n }\r\n }\r\n else {\r\n shimmerWrapperWidth = finalSize.width / 3;\r\n renderedCells.push(renderedCell());\r\n }\r\n };\r\n for (; i < endIndex && cells[i].grid === grid; i++) {\r\n _loop_2();\r\n }\r\n var isOpenStart = previousCell && previousCell.grid === grid;\r\n var isOpenEnd = nextCell && nextCell.grid === grid;\r\n var margin = grid.spacing / 2;\r\n var finalGrid = (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { key: grid.key, className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-TilesList-grid', (_a = {},\r\n _a[\"\" + TilesListStyles.grid] = grid.mode !== 0 /* none */,\r\n _a[\"\" + TilesListStyles.shimmeredList] = isPlaceholder,\r\n _a)), \r\n // tslint:disable-next-line:jsx-ban-props\r\n style: {\r\n width: width + \"px\",\r\n margin: -margin + \"px\",\r\n marginTop: isOpenStart ? '0' : grid.marginTop - margin + \"px\",\r\n marginBottom: isOpenEnd ? '0' : grid.marginBottom - margin + \"px\"\r\n } }, renderedCells));\r\n grids.push(isPlaceholder ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Shimmer_Shimmer__WEBPACK_IMPORTED_MODULE_6__[\"Shimmer\"], { key: i, customElementsGroup: finalGrid, widthInPixel: shimmerWrapperWidth }) : finalGrid);\r\n out_i_1 = i;\r\n var _a;\r\n };\r\n var out_i_1;\r\n for (var i = 0; i < endIndex;) {\r\n _loop_1(i);\r\n i = out_i_1;\r\n }\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, divProps, { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])(pageClassName, _this._onGetPageClassName()) }), grids));\r\n };\r\n /**\r\n * Gets the specification for the list page, which requires pre-calculating the flexbox layout\r\n * to determine the set of tiles which fit neatly within a rectangle. Any tiles left dangling\r\n * at the end of a page are overflowed into the next page unless they are just before a grid\r\n * boundary.\r\n */\r\n _this._getPageSpecification = function (startIndex, bounds) {\r\n if (_this._pageSpecificationCache) {\r\n if (_this._pageSpecificationCache.width !== bounds.width) {\r\n _this._pageSpecificationCache = undefined;\r\n }\r\n }\r\n if (!_this._pageSpecificationCache) {\r\n _this._pageSpecificationCache = {\r\n width: bounds.width,\r\n byIndex: {}\r\n };\r\n }\r\n var pageSpecificationCache = _this._pageSpecificationCache;\r\n if (pageSpecificationCache.byIndex[startIndex]) {\r\n // If the page specification has already been calculated, return it.\r\n // List recalculates all pages if any input changes, so this memoization\r\n // cuts down on calculation of individual pages without changes.\r\n return pageSpecificationCache.byIndex[startIndex];\r\n }\r\n var cells = _this.state.cells;\r\n var endIndex = Math.min(cells.length, startIndex + CELLS_PER_PAGE);\r\n var rowWidth = 0;\r\n var rowStart = 0;\r\n var i = startIndex;\r\n var isAtGridEnd = true;\r\n var startCells = {};\r\n var extraCells;\r\n var cellSizes = {};\r\n var widths = {};\r\n for (; i < endIndex;) {\r\n // For each cell at the start of a grid.\r\n var grid = cells[i].grid;\r\n rowWidth = 0;\r\n rowStart = i;\r\n var boundsWidth = bounds.width + grid.spacing;\r\n widths[i] = boundsWidth;\r\n var currentRow = (startCells[i] = {\r\n scaleFactor: 1\r\n });\r\n if (grid.mode === 0 /* none */) {\r\n // The current \"grid\" just takes up the full width.\r\n // No flex calculations necessary.\r\n isAtGridEnd = true;\r\n cellSizes[i] = {\r\n width: bounds.width,\r\n height: 0\r\n };\r\n i++;\r\n continue;\r\n }\r\n for (; i < endIndex && cells[i].grid === grid; i++) {\r\n // For each cell in the current grid.\r\n var aspectRatio = cells[i].aspectRatio;\r\n var width = aspectRatio * grid.minRowHeight + grid.spacing;\r\n if (rowWidth + width > boundsWidth) {\r\n var totalMargin = grid.spacing * (i - rowStart);\r\n currentRow.scaleFactor = (boundsWidth - totalMargin) / (rowWidth - totalMargin);\r\n }\r\n rowWidth += width;\r\n cellSizes[i] = {\r\n // Assign the expected base size of the cell.\r\n // Scaling will be handled at render time.\r\n width: aspectRatio * grid.minRowHeight,\r\n height: grid.minRowHeight\r\n };\r\n if (rowWidth > boundsWidth) {\r\n rowWidth = width;\r\n rowStart = i;\r\n // Add a marker for a new row, with the default scale factor.\r\n currentRow = startCells[i] = {\r\n scaleFactor: 1\r\n };\r\n }\r\n }\r\n if (cells[i] && cells[i].grid === grid) {\r\n // If the next cell is part of a different grid.\r\n isAtGridEnd = false;\r\n }\r\n else {\r\n currentRow.isLastRow = true;\r\n }\r\n if (rowWidth < boundsWidth) {\r\n var totalMargin = grid.spacing * (i - rowStart);\r\n currentRow.scaleFactor = (boundsWidth - totalMargin) / (rowWidth - totalMargin);\r\n if ((grid.mode === 2 /* fill */ || grid.mode === 3 /* fillHorizontal */) && currentRow.isLastRow) {\r\n if (i - rowStart > 0) {\r\n // If the grid is in 'fill' mode, and there is underflow in the last row, then by default, flexbox will\r\n // scale all widths to the maximum possible, which may cause regularly-sized items to be larger than\r\n // those in previous rows.\r\n // A way to counter that is to pretend that the last row is actually filled with more items, and calculate\r\n // the resulting scale factor. Then pass the new maximum width to flexbox.\r\n // The result should be perfectly-aligned final items.\r\n // The 'phantom' items are not actually rendered in the list.\r\n // Project the average tile width across the rest of the row.\r\n var width = (rowWidth - totalMargin) / (i - rowStart) + grid.spacing;\r\n var phantomRowWidth = rowWidth;\r\n for (var j = i;; j++) {\r\n if (phantomRowWidth + width > boundsWidth) {\r\n // The final phantom item has been added, so the row is complete.\r\n var phantomTotalMargin = grid.spacing * (j - rowStart);\r\n // Set the new scale factor based on the total width including the phantom items.\r\n currentRow.maxScaleFactor = (boundsWidth - phantomTotalMargin) / (phantomRowWidth - phantomTotalMargin);\r\n break;\r\n }\r\n phantomRowWidth += width;\r\n }\r\n }\r\n }\r\n }\r\n if (!isAtGridEnd &&\r\n currentRow.scaleFactor > (grid.mode === 2 /* fill */ || grid.mode === 3 /* fillHorizontal */ ? grid.maxScaleFactor : 1)) {\r\n // If the last computed row is not the end of the grid, and the content cannot scale to fit the width,\r\n // declare these cells as 'extra' and let them be pushed into the next page.\r\n extraCells = cells.slice(rowStart, i);\r\n }\r\n }\r\n // If there are extra cells, cut off the page so the extra cells will be pushed into the next page.\r\n // Otherwise, take all the cells.\r\n var itemCount = i - (extraCells ? extraCells.length : 0) - startIndex;\r\n var pageSpecification = {\r\n itemCount: itemCount,\r\n data: {\r\n pageWidths: widths,\r\n rows: startCells,\r\n extraCells: extraCells,\r\n cellSizes: cellSizes\r\n }\r\n };\r\n pageSpecificationCache.byIndex[startIndex] = pageSpecification;\r\n return pageSpecification;\r\n };\r\n _this._onGetCellClassName = function () {\r\n return TilesListStyles.listCell;\r\n };\r\n _this._onGetPageClassName = function () {\r\n return TilesListStyles.listPage;\r\n };\r\n /**\r\n * Get the style to be applied to a single list cell, which will specify the flex behavior\r\n * within the flexbox layout.\r\n */\r\n _this._onGetCellStyle = function (item, currentRow) {\r\n var _a = item.grid, gridMode = _a.mode, maxScaleFactor = _a.maxScaleFactor, grid = item.grid;\r\n if (gridMode === 0 /* none */) {\r\n return {};\r\n }\r\n var itemWidthOverHeight = item.aspectRatio || 1;\r\n var margin = grid.spacing / 2;\r\n var isFill = gridMode === 2 /* fill */ || gridMode === 3 /* fillHorizontal */;\r\n var width = itemWidthOverHeight * grid.minRowHeight;\r\n var maxWidth;\r\n if (currentRow && currentRow.maxScaleFactor) {\r\n // If the row has its own max scale factor, force flexbox to limit at that value.\r\n // This typically happens if there is underflow in the final row of a grid.\r\n maxWidth = width * Math.min(currentRow.maxScaleFactor, maxScaleFactor);\r\n }\r\n else if (isFill && (!currentRow || !currentRow.isLastRow || currentRow.scaleFactor <= maxScaleFactor)) {\r\n // If the entire grid has a max scale factor, use that limit.\r\n maxWidth = width * maxScaleFactor;\r\n }\r\n else {\r\n maxWidth = width;\r\n }\r\n return {\r\n flex: isFill ? itemWidthOverHeight + \" \" + itemWidthOverHeight + \" \" + width + \"px\" : \"0 0 \" + width + \"px\",\r\n maxWidth: maxWidth + \"px\",\r\n margin: !item.isPlaceholder ? margin + \"px\" : 0,\r\n borderStyle: item.isPlaceholder ? 'solid' : 'none',\r\n borderWidth: item.isPlaceholder ? margin + \"px\" : 0\r\n };\r\n };\r\n _this.state = {\r\n cells: _this._getCells(props.items)\r\n };\r\n return _this;\r\n }\r\n TilesList.prototype.componentWillReceiveProps = function (nextProps) {\r\n if (nextProps.items !== this.props.items) {\r\n this.setState({\r\n cells: this._getCells(nextProps.items)\r\n });\r\n }\r\n };\r\n TilesList.prototype.componentWillUpdate = function (nextProps, nextState) {\r\n if (nextState.cells !== this.state.cells) {\r\n this._pageSpecificationCache = undefined;\r\n }\r\n };\r\n TilesList.prototype.render = function () {\r\n var cells = this.state.cells;\r\n var _a = this.props, className = _a.className, onActiveElementChanged = _a.onActiveElementChanged, items = _a.items, cellsPerPage = _a.cellsPerPage, ref = _a.ref, role = _a.role, focusZoneComponentRef = _a.focusZoneComponentRef, divProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](_a, [\"className\", \"onActiveElementChanged\", \"items\", \"cellsPerPage\", \"ref\", \"role\", \"focusZoneComponentRef\"]);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_FocusZone__WEBPACK_IMPORTED_MODULE_3__[\"FocusZone\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ role: role }, divProps, { ref: ref, componentRef: focusZoneComponentRef, className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])('ms-TilesList', className), direction: office_ui_fabric_react_lib_FocusZone__WEBPACK_IMPORTED_MODULE_3__[\"FocusZoneDirection\"].bidirectional, onActiveElementChanged: this.props.onActiveElementChanged }),\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_List__WEBPACK_IMPORTED_MODULE_2__[\"List\"], { items: cells, role: role ? 'presentation' : undefined, getPageSpecification: this._getPageSpecification, onRenderPage: this._onRenderPage })));\r\n };\r\n TilesList.prototype._onRenderCell = function (item, finalSize) {\r\n if (item.grid.mode === 0 /* none */) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])(TilesListStyles.header) }, item.onRender(item.content, { width: 0, height: 0 }));\r\n }\r\n var itemWidthOverHeight = item.aspectRatio;\r\n var itemHeightOverWidth = 1 / itemWidthOverHeight;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { role: \"presentation\", className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])(TilesListStyles.cell), \r\n // tslint:disable-next-line:jsx-ban-props\r\n style: item.grid.mode === 3 /* fillHorizontal */\r\n ? {\r\n height: item.grid.minRowHeight + \"px\"\r\n }\r\n : {\r\n paddingTop: (100 * itemHeightOverWidth).toFixed(2) + \"%\"\r\n } },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { role: \"presentation\", className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"css\"])(TilesListStyles.cellContent) }, item.onRender(item.content, finalSize))));\r\n };\r\n /**\r\n * Flattens the grid and item specifications into a cell list. List will partition the cells into\r\n * pages use `getPageSpecification`, so each cell is marked up with metadata to assist the flexbox\r\n * algorithm.\r\n */\r\n TilesList.prototype._getCells = function (items) {\r\n var cells = [];\r\n for (var _i = 0, items_1 = items; _i < items_1.length; _i++) {\r\n var item = items_1[_i];\r\n if (isGridSegment(item)) {\r\n // The item is a grid of child items.\r\n var _a = item.spacing, spacing = _a === void 0 ? 0 : _a, _b = item.maxScaleFactor, maxScaleFactor = _b === void 0 ? MAX_TILE_STRETCH : _b, _c = item.marginBottom, marginBottom = _c === void 0 ? 0 : _c, _d = item.marginTop, marginTop = _d === void 0 ? 0 : _d, _e = item.minAspectRatio, minAspectRatio = _e === void 0 ? MIN_ASPECT_RATIO : _e, _f = item.maxAspectRatio, maxAspectRatio = _f === void 0 ? MAX_ASPECT_RATIO : _f;\r\n var grid = {\r\n minRowHeight: item.minRowHeight,\r\n spacing: spacing,\r\n mode: item.mode,\r\n key: \"grid-\" + item.key,\r\n maxScaleFactor: maxScaleFactor,\r\n marginTop: item.isPlaceholder ? 0 : marginTop,\r\n marginBottom: item.isPlaceholder ? 0 : marginBottom,\r\n isPlaceholder: item.isPlaceholder\r\n };\r\n for (var _g = 0, _h = item.items; _g < _h.length; _g++) {\r\n var gridItem = _h[_g];\r\n var desiredSize = gridItem.desiredSize;\r\n var aspectRatio = Math.min(maxAspectRatio, Math.max(minAspectRatio, (desiredSize && desiredSize.width / desiredSize.height) || 1));\r\n cells.push({\r\n aspectRatio: aspectRatio,\r\n content: gridItem.content,\r\n onRender: gridItem.onRender,\r\n grid: grid,\r\n key: gridItem.key,\r\n isPlaceholder: gridItem.isPlaceholder\r\n });\r\n }\r\n }\r\n else {\r\n // The item is not part of the grid, and should take up a whole row.\r\n cells.push({\r\n aspectRatio: 1,\r\n content: item.content,\r\n onRender: item.onRender,\r\n grid: {\r\n minRowHeight: 0,\r\n spacing: 0,\r\n mode: 0 /* none */,\r\n key: \"grid-header-\" + item.key,\r\n maxScaleFactor: 1,\r\n marginBottom: 0,\r\n marginTop: 0,\r\n isPlaceholder: item.isPlaceholder\r\n },\r\n key: \"header-\" + item.key,\r\n isPlaceholder: item.isPlaceholder\r\n });\r\n }\r\n }\r\n return cells;\r\n };\r\n return TilesList;\r\n}(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n\r\nfunction isGridSegment(item) {\r\n return !!item.items;\r\n}\r\n//# sourceMappingURL=TilesList.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.scss.js":
/*!***************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.scss.js ***!
\***************************************************************************************/
/*! exports provided: listCell, listPage, cell, cellContent, cellFirstInRow, sizer, grid, shimmeredList, none */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"listCell\", function() { return listCell; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"listPage\", function() { return listPage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cell\", function() { return cell; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cellContent\", function() { return cellContent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"cellFirstInRow\", function() { return cellFirstInRow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"sizer\", function() { return sizer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"grid\", function() { return grid; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"shimmeredList\", function() { return shimmeredList; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"none\", function() { return none; });\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__);\n/* tslint:disable */\r\n\r\nObject(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__[\"loadStyles\"])([{ \"rawString\": \".listCell_4aa03851{display:block;margin:0;border-color:\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \"}.listPage_4aa03851{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}.cell_4aa03851{display:block;position:relative}.cellContent_4aa03851{position:absolute;top:0;left:0;bottom:0;right:0}.cellFirstInRow_4aa03851{display:block}.sizer_4aa03851{display:block;visibility:hidden}.grid_4aa03851{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row;-ms-flex-flow:row wrap;flex-flow:row wrap;-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start;-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start;-ms-flex-line-pack:start;align-content:flex-start}.shimmeredList_4aa03851::after{content:'';position:absolute;top:0;right:0;bottom:0;left:0;background-image:-webkit-gradient(linear, left top, left bottom, color-stop(30%, transparent), color-stop(65%, \" }, { \"theme\": \"whiteTranslucent40\", \"defaultValue\": \"rgba(255,255,255,.4)\" }, { \"rawString\": \"), to(\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \"));background-image:linear-gradient(to bottom, transparent 30%, \" }, { \"theme\": \"whiteTranslucent40\", \"defaultValue\": \"rgba(255,255,255,.4)\" }, { \"rawString\": \" 65%, \" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \" 100%)}.none_4aa03851{display:block}\\n\" }]);\r\nvar listCell = \"listCell_4aa03851\";\r\nvar listPage = \"listPage_4aa03851\";\r\nvar cell = \"cell_4aa03851\";\r\nvar cellContent = \"cellContent_4aa03851\";\r\nvar cellFirstInRow = \"cellFirstInRow_4aa03851\";\r\nvar sizer = \"sizer_4aa03851\";\r\nvar grid = \"grid_4aa03851\";\r\nvar shimmeredList = \"shimmeredList_4aa03851\";\r\nvar none = \"none_4aa03851\";\r\n//# sourceMappingURL=TilesList.scss.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.scss.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.types.js":
/*!****************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.types.js ***!
\****************************************************************************************/
/*! exports provided: TilesGridMode */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TilesGridMode\", function() { return TilesGridMode; });\nvar TilesGridMode;\r\n(function (TilesGridMode) {\r\n /**\r\n * Every item in the grid gets its own row.\r\n */\r\n TilesGridMode[TilesGridMode[\"none\"] = 0] = \"none\";\r\n /**\r\n * Items in the row are stacked without resizing until they overflow.\r\n */\r\n TilesGridMode[TilesGridMode[\"stack\"] = 1] = \"stack\";\r\n /**\r\n * Items in the row are stretched proportionally if necessary to fill the row.\r\n */\r\n TilesGridMode[TilesGridMode[\"fill\"] = 2] = \"fill\";\r\n /**\r\n * Items in the row are stretched horizontally only if necessary to fill the row.\r\n */\r\n TilesGridMode[TilesGridMode[\"fillHorizontal\"] = 3] = \"fillHorizontal\";\r\n})(TilesGridMode || (TilesGridMode = {}));\r\n//# sourceMappingURL=TilesList.types.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.types.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/TilesList/index.js":
/*!******************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/TilesList/index.js ***!
\******************************************************************************/
/*! exports provided: TilesList, TilesGridMode */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _TilesList__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./TilesList */ \"./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TilesList\", function() { return _TilesList__WEBPACK_IMPORTED_MODULE_0__[\"TilesList\"]; });\n\n/* harmony import */ var _TilesList_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./TilesList.types */ \"./node_modules/@uifabric/experiments/lib/components/TilesList/TilesList.types.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TilesGridMode\", function() { return _TilesList_types__WEBPACK_IMPORTED_MODULE_1__[\"TilesGridMode\"]; });\n\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/TilesList/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.js":
/*!****************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.js ***!
\****************************************************************************/
/*! exports provided: Toggle */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Toggle\", function() { return Toggle; });\n/* harmony import */ var _Toggle_view__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Toggle.view */ \"./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.view.js\");\n/* harmony import */ var _Toggle_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Toggle.styles */ \"./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.styles.js\");\n/* harmony import */ var _Toggle_state__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Toggle.state */ \"./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.state.js\");\n/* harmony import */ var _Foundation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../Foundation */ \"./node_modules/@uifabric/experiments/lib/Foundation.js\");\n\r\n\r\n\r\n\r\nvar Toggle = Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"createComponent\"])({\r\n displayName: 'Toggle',\r\n view: _Toggle_view__WEBPACK_IMPORTED_MODULE_0__[\"ToggleView\"],\r\n state: _Toggle_state__WEBPACK_IMPORTED_MODULE_2__[\"ToggleState\"],\r\n styles: _Toggle_styles__WEBPACK_IMPORTED_MODULE_1__[\"ToggleStyles\"],\r\n tokens: _Toggle_styles__WEBPACK_IMPORTED_MODULE_1__[\"ToggleTokens\"]\r\n});\r\n//# sourceMappingURL=Toggle.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.state.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.state.js ***!
\**********************************************************************************/
/*! exports provided: ToggleState */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ToggleState\", function() { return ToggleState; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _utilities_BaseState__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../utilities/BaseState */ \"./node_modules/@uifabric/experiments/lib/utilities/BaseState.js\");\n\r\n\r\n\r\nvar ToggleState = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](ToggleState, _super);\r\n function ToggleState(props) {\r\n var _this = _super.call(this, props, {\r\n controlledProps: ['checked', 'text'],\r\n transformViewProps: function (newProps) {\r\n newProps.text = newProps.checked ? props.onText : props.offText;\r\n return newProps;\r\n }\r\n }) || this;\r\n _this._toggleButtonRef = react__WEBPACK_IMPORTED_MODULE_1__[\"createRef\"]();\r\n _this.focus = function () {\r\n if (_this._toggleButtonRef.current) {\r\n _this._toggleButtonRef.current.focus();\r\n }\r\n };\r\n _this._onClick = function (ev) {\r\n var _a = _this.props, disabled = _a.disabled, onChange = _a.onChange;\r\n var checked = _this.state.checked;\r\n if (!disabled) {\r\n // Only update the state if the user hasn't provided it.\r\n _this.setState({ checked: !checked });\r\n if (onChange) {\r\n onChange(ev, !checked);\r\n }\r\n }\r\n };\r\n _this.state = {\r\n checked: !!props.defaultChecked,\r\n text: !!props.defaultChecked ? props.onText : props.offText,\r\n onChange: _this._noop,\r\n onClick: _this._onClick,\r\n toggleButtonRef: _this._toggleButtonRef\r\n };\r\n return _this;\r\n }\r\n ToggleState.prototype._noop = function () {\r\n /* no-op */\r\n };\r\n return ToggleState;\r\n}(_utilities_BaseState__WEBPACK_IMPORTED_MODULE_2__[\"BaseState\"]));\r\n\r\n//# sourceMappingURL=Toggle.state.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.state.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.styles.js":
/*!***********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.styles.js ***!
\***********************************************************************************/
/*! exports provided: ToggleTokens, ToggleStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ToggleTokens\", function() { return ToggleTokens; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ToggleStyles\", function() { return ToggleStyles; });\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Styling */ \"./node_modules/@uifabric/experiments/lib/Styling.js\");\n\r\nvar GlobalClassNames = {\r\n root: 'ms-Toggle',\r\n label: 'ms-Toggle-label',\r\n container: 'ms-Toggle-innerContainer',\r\n pill: 'ms-Toggle-background',\r\n thumb: 'ms-Toggle-thumb',\r\n text: 'ms-Toggle-stateText'\r\n};\r\nvar toggleEnabledTokens = function (props, theme) {\r\n var semanticColors = theme.semanticColors;\r\n return {\r\n pillBackground: semanticColors.bodyBackground,\r\n pillBorderColor: semanticColors.smallInputBorder,\r\n pillHoveredBorderColor: semanticColors.inputBorderHovered,\r\n pillHighContrastBorderColor: 'Highlight',\r\n pillHighContrastHoveredBorderColor: 'Highlight',\r\n thumbBackground: semanticColors.inputBorderHovered\r\n };\r\n};\r\nvar toggleDisabledTokens = function (props, theme) {\r\n var semanticColors = theme.semanticColors;\r\n return {\r\n pillBackground: semanticColors.bodyBackground,\r\n pillBorderColor: semanticColors.disabledBodySubtext,\r\n thumbBackground: semanticColors.disabledBodySubtext,\r\n textColor: semanticColors.disabledText,\r\n textHighContrastColor: 'GrayText'\r\n };\r\n};\r\nvar toggleCheckedVariables = {\r\n pillBorderColor: 'transparent',\r\n pillJustifyContent: 'flex-end'\r\n};\r\nvar toggleCheckedEnabledTokens = function (props, theme) {\r\n var semanticColors = theme.semanticColors;\r\n return {\r\n pillBackground: semanticColors.inputBackgroundChecked,\r\n pillHoveredBackground: semanticColors.inputBackgroundCheckedHovered,\r\n pillHoveredBorderColor: 'transparent',\r\n pillHighContrastBackground: 'WindowText',\r\n pillHighContrastHoveredBackground: 'Highlight',\r\n pillHighContrastHoveredBorderColor: 'transparent',\r\n thumbBackground: semanticColors.inputForegroundChecked,\r\n thumbHighContrastBackground: 'Window',\r\n thumbHighContrastBorderColor: 'Window'\r\n };\r\n};\r\nvar toggleCheckedDisabledTokens = function (props, theme) {\r\n var semanticColors = theme.semanticColors;\r\n return {\r\n pillBackground: semanticColors.disabledBodySubtext,\r\n thumbBackground: semanticColors.disabledBackground\r\n };\r\n};\r\nvar ToggleTokens = function (props) { return [\r\n props.checked && toggleCheckedVariables,\r\n props.disabled && [toggleDisabledTokens, props.checked && toggleCheckedDisabledTokens],\r\n !props.disabled && [toggleEnabledTokens, props.checked && toggleCheckedEnabledTokens]\r\n]; };\r\nvar ToggleStyles = function (props, theme, tokens) {\r\n var className = props.className, disabled = props.disabled, checked = props.checked;\r\n var classNames = Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getGlobalClassNames\"])(GlobalClassNames, theme);\r\n var textStyles = [\r\n classNames.text,\r\n {\r\n selectors: {\r\n // Workaround: make rules more sepecific than Label rules.\r\n '&&': {\r\n color: tokens.textColor,\r\n padding: '0',\r\n margin: '0 10px',\r\n userSelect: 'none',\r\n selectors: (_a = {},\r\n _a[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n color: tokens.textHighContrastColor\r\n },\r\n _a)\r\n }\r\n }\r\n }\r\n ];\r\n return {\r\n root: [\r\n classNames.root,\r\n checked && 'is-checked',\r\n !disabled && 'is-enabled',\r\n disabled && 'is-disabled',\r\n theme.fonts.medium,\r\n {\r\n marginBottom: '8px'\r\n },\r\n className\r\n ],\r\n label: [\r\n classNames.label,\r\n {\r\n color: tokens.textColor,\r\n selectors: (_b = {},\r\n _b[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n color: tokens.textHighContrastColor\r\n },\r\n _b)\r\n }\r\n ],\r\n container: [\r\n classNames.container,\r\n {\r\n display: 'inline-flex',\r\n position: 'relative'\r\n }\r\n ],\r\n pill: [\r\n classNames.pill,\r\n Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getFocusStyle\"])(theme, -3),\r\n {\r\n fontSize: '20px',\r\n boxSizing: 'border-box',\r\n width: '2.2em',\r\n height: '1em',\r\n borderRadius: '1em',\r\n transition: 'all 0.1s ease',\r\n borderWidth: '1px',\r\n borderStyle: 'solid',\r\n background: tokens.pillBackground,\r\n borderColor: tokens.pillBorderColor,\r\n justifyContent: tokens.pillJustifyContent,\r\n cursor: 'pointer',\r\n display: 'flex',\r\n alignItems: 'center',\r\n padding: '0 .2em',\r\n selectors: (_c = {\r\n ':hover': [\r\n {\r\n backgroundColor: tokens.pillHoveredBackground,\r\n borderColor: tokens.pillHoveredBorderColor,\r\n selectors: (_d = {},\r\n _d[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n backgroundColor: tokens.pillHighContrastHoveredBackground\r\n },\r\n _d)\r\n }\r\n ],\r\n ':hover .ms-Toggle-thumb': [\r\n {\r\n selectors: (_e = {},\r\n _e[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n borderColor: tokens.pillHighContrastHoveredBorderColor\r\n },\r\n _e)\r\n }\r\n ]\r\n },\r\n _c[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n backgroundColor: tokens.pillHighContrastBackground\r\n },\r\n _c['&:hover'] = {\r\n selectors: (_f = {},\r\n _f[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n borderColor: tokens.pillHighContrastBorderColor\r\n },\r\n _f)\r\n },\r\n _c)\r\n }\r\n ],\r\n thumb: [\r\n classNames.thumb,\r\n {\r\n width: '.5em',\r\n height: '.5em',\r\n borderRadius: '.5em',\r\n transition: 'all 0.1s ease',\r\n backgroundColor: tokens.thumbBackground,\r\n /* Border is added to handle high contrast mode for Firefox */\r\n borderColor: 'transparent',\r\n borderWidth: '.28em',\r\n borderStyle: 'solid',\r\n boxSizing: 'border-box',\r\n selectors: (_g = {},\r\n _g[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n backgroundColor: tokens.thumbHighContrastBackground,\r\n borderColor: tokens.thumbHighContrastBorderColor\r\n },\r\n _g)\r\n }\r\n ],\r\n text: textStyles\r\n };\r\n var _a, _b, _c, _d, _e, _f, _g;\r\n};\r\n//# sourceMappingURL=Toggle.styles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.styles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.view.js":
/*!*********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.view.js ***!
\*********************************************************************************/
/*! exports provided: ToggleView */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ToggleView\", function() { return ToggleView; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var office_ui_fabric_react_lib_KeytipData__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! office-ui-fabric-react/lib/KeytipData */ \"./node_modules/office-ui-fabric-react/lib/KeytipData.js\");\n/* harmony import */ var _utilities_factoryComponents__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../utilities/factoryComponents */ \"./node_modules/@uifabric/experiments/lib/utilities/factoryComponents.js\");\n/* harmony import */ var _Foundation__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../Foundation */ \"./node_modules/@uifabric/experiments/lib/Foundation.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/@uifabric/experiments/lib/Utilities.js\");\nvar _this = undefined;\r\n\r\n/** @jsx withSlots */\r\n\r\n\r\n\r\n\r\nvar ToggleView = function (props) {\r\n var _a = props.as, RootType = _a === void 0 ? 'div' : _a, label = props.label, ariaLabel = props.ariaLabel, checked = props.checked, disabled = props.disabled, onChange = props.onChange, keytipProps = props.keytipProps, onClick = props.onClick, toggleButtonRef = props.toggleButtonRef;\r\n var toggleNativeProps = Object(_Utilities__WEBPACK_IMPORTED_MODULE_4__[\"getNativeProps\"])(_this.props, _Utilities__WEBPACK_IMPORTED_MODULE_4__[\"inputProperties\"], ['defaultChecked']);\r\n var Slots = Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"getSlots\"])(props, {\r\n root: RootType,\r\n label: _utilities_factoryComponents__WEBPACK_IMPORTED_MODULE_2__[\"Label\"],\r\n container: 'div',\r\n pill: 'button',\r\n thumb: 'div',\r\n text: _utilities_factoryComponents__WEBPACK_IMPORTED_MODULE_2__[\"Label\"]\r\n });\r\n return (Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(Slots.root, null,\r\n Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(Slots.label, { htmlFor: _this._id }, label),\r\n Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(Slots.container, null,\r\n Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(office_ui_fabric_react_lib_KeytipData__WEBPACK_IMPORTED_MODULE_1__[\"KeytipData\"], { keytipProps: keytipProps, ariaDescribedBy: toggleNativeProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return (Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(Slots.pill, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, toggleNativeProps, keytipAttributes, { disabled: disabled, id: _this._id, type: \"button\", role: \"switch\" // ARIA 1.1 definition; \"checkbox\" in ARIA 1.0\r\n , ref: toggleButtonRef, \"aria-disabled\": disabled, \"aria-checked\": checked, \"aria-label\": ariaLabel, \"data-is-focusable\": true, onChange: onChange, onClick: onClick }),\r\n Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(Slots.thumb, null))); }),\r\n Object(_Foundation__WEBPACK_IMPORTED_MODULE_3__[\"withSlots\"])(Slots.text, null))));\r\n};\r\n//# sourceMappingURL=Toggle.view.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.view.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/Toggle/index.js":
/*!***************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/Toggle/index.js ***!
\***************************************************************************/
/*! exports provided: Toggle */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Toggle__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Toggle */ \"./node_modules/@uifabric/experiments/lib/components/Toggle/Toggle.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Toggle\", function() { return _Toggle__WEBPACK_IMPORTED_MODULE_0__[\"Toggle\"]; });\n\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/Toggle/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/VirtualizedList/VirtualizedList.js":
/*!**********************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/VirtualizedList/VirtualizedList.js ***!
\**********************************************************************************************/
/*! exports provided: VirtualizedList */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"VirtualizedList\", function() { return VirtualizedList; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _utilities_scrolling_ScrollContainer__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../utilities/scrolling/ScrollContainer */ \"./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.js\");\n/* harmony import */ var office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! office-ui-fabric-react/lib/Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n\r\n\r\n\r\n\r\nfunction isInRange(range, index) {\r\n return range.start <= index && index < range.end;\r\n}\r\nvar VirtualizedList = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](VirtualizedList, _super);\r\n function VirtualizedList(props, context) {\r\n var _this = _super.call(this, props, context) || this;\r\n _this._root = Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"createRef\"])();\r\n _this._spacerElements = {};\r\n _this._spacerRef = function (key, ref) {\r\n if (ref) {\r\n _this._spacerElements[key] = ref;\r\n }\r\n else {\r\n delete _this._spacerElements[key];\r\n }\r\n };\r\n _this._focusedIndex = -1;\r\n var _a = _this.props.initialViewportHeight // Start with the window height if not passed in props, this does not cause layout\r\n , initialViewportHeight = _a === void 0 ? window.innerHeight : _a // Start with the window height if not passed in props, this does not cause layout\r\n ;\r\n _this.state = {\r\n viewportHeight: initialViewportHeight,\r\n items: _this._renderItems(0, initialViewportHeight)\r\n };\r\n return _this;\r\n }\r\n VirtualizedList.prototype.componentDidMount = function () {\r\n var _this = this;\r\n this._events.on(this._root, 'focus', this._onFocus, true);\r\n this.context.scrollContainer.registerVisibleCallback(function (scrollTop) {\r\n _this._render(scrollTop);\r\n });\r\n this._updateObservedElements();\r\n };\r\n VirtualizedList.prototype.componentDidUpdate = function () {\r\n this._updateObservedElements();\r\n };\r\n VirtualizedList.prototype.componentWillUpdate = function () {\r\n for (var _i = 0, _a = Object.keys(this._spacerElements); _i < _a.length; _i++) {\r\n var key = _a[_i];\r\n var ref = this._spacerElements[key];\r\n this.context.scrollContainer.unobserve(ref);\r\n }\r\n };\r\n VirtualizedList.prototype.render = function () {\r\n var className = this.props.className;\r\n var items = this.state.items;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])('ms-VirtualizedList', className), ref: this._root }, items));\r\n };\r\n VirtualizedList.prototype._updateObservedElements = function () {\r\n // (Re-)register with the observer after every update, so we'll get an intersection event immediately if one of the spacer\r\n // elements is visible right now.\r\n for (var _i = 0, _a = Object.keys(this._spacerElements); _i < _a.length; _i++) {\r\n var key = _a[_i];\r\n var ref = this._spacerElements[key];\r\n this.context.scrollContainer.observe(ref);\r\n }\r\n };\r\n VirtualizedList.prototype._renderItems = function (scrollTop, viewportHeight) {\r\n var _a = this.props, itemHeight = _a.itemHeight, items = _a.items, _b = _a.itemOverdraw, itemOverdraw = _b === void 0 ? 2 : _b;\r\n var ranges = [];\r\n // Calculate visible range\r\n var startIndex = Math.floor(Math.max(scrollTop / itemHeight - itemOverdraw, 0));\r\n var endIndex = Math.floor(Math.min(startIndex + itemOverdraw * 2 + viewportHeight / itemHeight, items.length));\r\n var visibleRange = {\r\n start: startIndex,\r\n end: endIndex\r\n };\r\n ranges.push(visibleRange);\r\n // Focused item\r\n if (this._focusedIndex !== -1 && !isInRange(visibleRange, this._focusedIndex)) {\r\n var focusRange = {\r\n start: this._focusedIndex,\r\n end: this._focusedIndex + 1\r\n };\r\n if (this._focusedIndex < visibleRange.start) {\r\n ranges.unshift(focusRange);\r\n }\r\n else {\r\n ranges.push(focusRange);\r\n }\r\n }\r\n return this._renderRanges(ranges);\r\n };\r\n VirtualizedList.prototype._renderRanges = function (ranges) {\r\n var _a = this.props, items = _a.items, onRenderItem = _a.onRenderItem;\r\n var result = [];\r\n // Assume ranges are sorted.\r\n var lastRenderedIndex = -1;\r\n for (var _i = 0, ranges_1 = ranges; _i < ranges_1.length; _i++) {\r\n var range = ranges_1[_i];\r\n // Spacer item before range or between the last range and this one\r\n var isFirstRange = lastRenderedIndex === -1;\r\n if ((isFirstRange && range.start !== 0) || (!isFirstRange && lastRenderedIndex !== range.start)) {\r\n // Last range is not continuous with this one,\r\n // or the first range does not start from the beginning: insert spacer item\r\n var spacerStartIndex = isFirstRange ? 0 : lastRenderedIndex;\r\n var gapBetweenRanges = range.start - spacerStartIndex;\r\n if (gapBetweenRanges > 0) {\r\n result.push(this._renderSpacerItem(gapBetweenRanges, spacerStartIndex));\r\n }\r\n }\r\n for (var i = range.start; i < range.end; ++i) {\r\n result.push(onRenderItem(items[i], i));\r\n }\r\n lastRenderedIndex = range.end - 1;\r\n }\r\n // Insert final spacer item\r\n var itemCount = (items || []).length;\r\n if (lastRenderedIndex < itemCount - 1) {\r\n result.push(this._renderSpacerItem(itemCount - lastRenderedIndex, lastRenderedIndex));\r\n }\r\n return result;\r\n };\r\n VirtualizedList.prototype._renderSpacerItem = function (numberOfItems, index) {\r\n var _a = this.props, itemHeight = _a.itemHeight, _b = _a.items, items = _b === void 0 ? [] : _b, _c = _a.spacerItemTagName, ItemTag = _c === void 0 ? 'div' : _c;\r\n var spacerHeight = numberOfItems * itemHeight;\r\n var itemCount = items.length;\r\n var key;\r\n if (index === 0) {\r\n key = \"spacer-start\";\r\n }\r\n else if (index + numberOfItems === itemCount) {\r\n key = \"spacer-end\";\r\n }\r\n else {\r\n key = \"spacer-item-\" + (index + numberOfItems);\r\n }\r\n // tslint:disable-next-line:jsx-ban-props\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](ItemTag, { ref: this._spacerRef.bind(this, key), key: key, style: { height: spacerHeight } });\r\n };\r\n VirtualizedList.prototype._render = function (scrollTop) {\r\n scrollTop = Math.floor(scrollTop);\r\n this.setState({\r\n items: this._renderItems(scrollTop, this.state.viewportHeight)\r\n });\r\n };\r\n VirtualizedList.prototype._onFocus = function (ev) {\r\n var target = ev.target;\r\n while (target !== this._root.current) {\r\n var indexString = target.getAttribute('data-selection-index');\r\n if (indexString) {\r\n this._focusedIndex = Number(indexString);\r\n break;\r\n }\r\n target = Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"getParent\"])(target);\r\n }\r\n };\r\n VirtualizedList.contextTypes = _utilities_scrolling_ScrollContainer__WEBPACK_IMPORTED_MODULE_2__[\"ScrollContainerContextTypes\"];\r\n return VirtualizedList;\r\n}(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=VirtualizedList.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/VirtualizedList/VirtualizedList.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/VirtualizedList/index.js":
/*!************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/VirtualizedList/index.js ***!
\************************************************************************************/
/*! exports provided: VirtualizedList */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _VirtualizedList__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./VirtualizedList */ \"./node_modules/@uifabric/experiments/lib/components/VirtualizedList/VirtualizedList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VirtualizedList\", function() { return _VirtualizedList__WEBPACK_IMPORTED_MODULE_0__[\"VirtualizedList\"]; });\n\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/VirtualizedList/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/signals/Signal.js":
/*!*****************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/signals/Signal.js ***!
\*****************************************************************************/
/*! exports provided: Signal */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Signal\", function() { return Signal; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! office-ui-fabric-react/lib/Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Signal_scss__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Signal.scss */ \"./node_modules/@uifabric/experiments/lib/components/signals/Signal.scss.js\");\n\r\n\r\n\r\n\r\nvar Signal = function (props) {\r\n var ariaLabel = props.ariaLabel, className = props.className, children = props.children, spanProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"ariaLabel\", \"className\", \"children\"]);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ \"aria-label\": props.ariaLabel }, spanProps, { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"css\"])(_Signal_scss__WEBPACK_IMPORTED_MODULE_3__[\"signal\"], className) }), props.children));\r\n};\r\n//# sourceMappingURL=Signal.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/signals/Signal.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/signals/Signal.scss.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/signals/Signal.scss.js ***!
\**********************************************************************************/
/*! exports provided: signal, dark, selected, isFluent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"signal\", function() { return signal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"dark\", function() { return dark; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"selected\", function() { return selected; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isFluent\", function() { return isFluent; });\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__);\n/* tslint:disable */\r\n\r\nObject(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__[\"loadStyles\"])([{ \"rawString\": \".signal_b29e563d{display:inline-block;margin:0 4px;position:relative;-webkit-transition:color 0.2s linear;transition:color 0.2s linear}.dark_b29e563d .signal_b29e563d,.signal_b29e563d .dark_b29e563d.selected_b29e563d{color:\" }, { \"theme\": \"white\", \"defaultValue\": \"#ffffff\" }, { \"rawString\": \"}.isFluent_b29e563d .signal_b29e563d{color:\" }, { \"theme\": \"yellowDark\", \"defaultValue\": \"#d29200\" }, { \"rawString\": \"}html[dir='ltr'] .signal_b29e563d:first-child{margin-left:0}html[dir='rtl'] .signal_b29e563d:first-child{margin-right:0}html[dir='ltr'] .signal_b29e563d:last-child{margin-right:0}html[dir='rtl'] .signal_b29e563d:last-child{margin-left:0}i.signal_b29e563d{top:0.2em}\\n\" }]);\r\nvar signal = \"signal_b29e563d\";\r\nvar dark = \"dark_b29e563d\";\r\nvar selected = \"selected_b29e563d\";\r\nvar isFluent = \"isFluent_b29e563d\";\r\n//# sourceMappingURL=Signal.scss.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/signals/Signal.scss.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/signals/SignalField.js":
/*!**********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/signals/SignalField.js ***!
\**********************************************************************************/
/*! exports provided: SignalField */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SignalField\", function() { return SignalField; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! office-ui-fabric-react/lib/Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _SignalField_scss__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./SignalField.scss */ \"./node_modules/@uifabric/experiments/lib/components/signals/SignalField.scss.js\");\n\r\n\r\n\r\n\r\n/**\r\n * Renders a field flanked by signals.\r\n * Pass `` or related components in for the `before` and `after` fields.\r\n * Pass the main value as the children.\r\n */\r\nvar SignalField = function (props) {\r\n var before = props.before, after = props.after, className = props.className, _a = props.signalsFieldMode, signalsFieldMode = _a === void 0 ? 'compact' : _a, spanProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"before\", \"after\", \"className\", \"signalsFieldMode\"]);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, spanProps, { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"css\"])(_SignalField_scss__WEBPACK_IMPORTED_MODULE_3__[\"signalField\"], (_b = {},\r\n _b[_SignalField_scss__WEBPACK_IMPORTED_MODULE_3__[\"wide\"]] = signalsFieldMode === 'wide',\r\n _b[_SignalField_scss__WEBPACK_IMPORTED_MODULE_3__[\"compact\"]] = signalsFieldMode === 'compact',\r\n _b), className) }),\r\n props.before,\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { className: _SignalField_scss__WEBPACK_IMPORTED_MODULE_3__[\"signalFieldValue\"] }, props.children),\r\n props.after));\r\n var _b;\r\n};\r\n//# sourceMappingURL=SignalField.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/signals/SignalField.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/signals/SignalField.scss.js":
/*!***************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/signals/SignalField.scss.js ***!
\***************************************************************************************/
/*! exports provided: signalField, compact, wide, signalFieldValue */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"signalField\", function() { return signalField; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"compact\", function() { return compact; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"wide\", function() { return wide; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"signalFieldValue\", function() { return signalFieldValue; });\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__);\n/* tslint:disable */\r\n\r\nObject(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__[\"loadStyles\"])([{ \"rawString\": \".signalField_03700093{max-width:100%;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row nowrap;flex-direction:row nowrap}.signalField_03700093,.signalField_03700093.compact_03700093{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.signalField_03700093.wide_03700093{display:-webkit-box;display:-ms-flexbox;display:flex;vertical-align:top}.signalFieldValue_03700093{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;text-align:left;-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}\\n\" }]);\r\nvar signalField = \"signalField_03700093\";\r\nvar compact = \"compact_03700093\";\r\nvar wide = \"wide_03700093\";\r\nvar signalFieldValue = \"signalFieldValue_03700093\";\r\n//# sourceMappingURL=SignalField.scss.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/signals/SignalField.scss.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/signals/Signals.js":
/*!******************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/signals/Signals.js ***!
\******************************************************************************/
/*! exports provided: YouCheckedOutSignal, BlockedSignal, MissingMetadataSignal, WarningSignal, AwaitingApprovalSignal, TrendingSignal, SomeoneCheckedOutSignal, RecordSignal, NewSignal, LiveEditSignal, MentionSignal, CommentsSignal, UnseenReplySignal, UnseenEditSignal, ReadOnlySignal, EmailedSignal, SharedSignal, MalwareDetectedSignal, ATPSignal, ExternalSignal, NotFollowedSignal, FollowedSignal, Signal, SignalField */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"YouCheckedOutSignal\", function() { return YouCheckedOutSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BlockedSignal\", function() { return BlockedSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MissingMetadataSignal\", function() { return MissingMetadataSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"WarningSignal\", function() { return WarningSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AwaitingApprovalSignal\", function() { return AwaitingApprovalSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TrendingSignal\", function() { return TrendingSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SomeoneCheckedOutSignal\", function() { return SomeoneCheckedOutSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"RecordSignal\", function() { return RecordSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NewSignal\", function() { return NewSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LiveEditSignal\", function() { return LiveEditSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MentionSignal\", function() { return MentionSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CommentsSignal\", function() { return CommentsSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnseenReplySignal\", function() { return UnseenReplySignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"UnseenEditSignal\", function() { return UnseenEditSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ReadOnlySignal\", function() { return ReadOnlySignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EmailedSignal\", function() { return EmailedSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"SharedSignal\", function() { return SharedSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"MalwareDetectedSignal\", function() { return MalwareDetectedSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ATPSignal\", function() { return ATPSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExternalSignal\", function() { return ExternalSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"NotFollowedSignal\", function() { return NotFollowedSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FollowedSignal\", function() { return FollowedSignal; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var office_ui_fabric_react_lib_Icon__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! office-ui-fabric-react/lib/Icon */ \"./node_modules/office-ui-fabric-react/lib/Icon.js\");\n/* harmony import */ var office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! office-ui-fabric-react/lib/Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Signal__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Signal */ \"./node_modules/@uifabric/experiments/lib/components/signals/Signal.js\");\n/* harmony import */ var _Signals_scss__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Signals.scss */ \"./node_modules/@uifabric/experiments/lib/components/signals/Signals.scss.js\");\n/* harmony import */ var _Signal_scss__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Signal.scss */ \"./node_modules/@uifabric/experiments/lib/components/signals/Signal.scss.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/@uifabric/experiments/lib/Utilities.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Signal\", function() { return _Signal__WEBPACK_IMPORTED_MODULE_4__[\"Signal\"]; });\n\n/* harmony import */ var _SignalField__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./SignalField */ \"./node_modules/@uifabric/experiments/lib/components/signals/SignalField.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SignalField\", function() { return _SignalField__WEBPACK_IMPORTED_MODULE_8__[\"SignalField\"]; });\n\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nvar YouCheckedOutSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"youCheckedOut\"], iconName: \"checkedoutbyyou12\" }));\r\n};\r\nvar BlockedSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"blocked\"], iconName: \"blocked12\" }));\r\n};\r\nvar MissingMetadataSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"missingMetadata\"], iconName: Object(_Utilities__WEBPACK_IMPORTED_MODULE_7__[\"getRTL\"])() ? 'TagUnknown12Mirror' : 'TagUnknown12' }));\r\n};\r\nvar WarningSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"warning\"], iconName: \"warning12\" }));\r\n};\r\nvar AwaitingApprovalSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"awaitingApproval\"], iconName: \"clock\" }));\r\n};\r\nvar TrendingSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"trending\"], iconName: \"market\" }));\r\n};\r\nvar SomeoneCheckedOutSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"someoneCheckedOut\"], iconName: \"checkedoutbyother12\" }));\r\n};\r\nvar RecordSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"record\"], iconName: \"lock\" }));\r\n};\r\n/**\r\n * Renders a signal marking the proceeding content as new.\r\n */\r\nvar NewSignal = function (props) {\r\n var ariaLabel = props.ariaLabel, spanProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"ariaLabel\"]);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, spanProps, { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(_Signal_scss__WEBPACK_IMPORTED_MODULE_6__[\"signal\"], _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"newSignal\"]) }),\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_Icon__WEBPACK_IMPORTED_MODULE_2__[\"Icon\"], { ariaLabel: props.ariaLabel, className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(_Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"newIcon\"]), iconName: \"glimmer\" })));\r\n};\r\n/**\r\n * Renders a signal for a live-edit scenario.\r\n */\r\nvar LiveEditSignal = function (props) {\r\n var className = props.className, spanProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"className\"]);\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Signal__WEBPACK_IMPORTED_MODULE_4__[\"Signal\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(className, _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"liveEdit\"]) }, spanProps));\r\n};\r\nvar MentionSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"mention\"], iconName: \"accounts\" }));\r\n};\r\n/**\r\n * Renders a signal for a number of comments.\r\n */\r\nvar CommentsSignal = function (props) {\r\n var ariaLabel = props.ariaLabel, className = props.className, children = props.children, spanProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"ariaLabel\", \"className\", \"children\"]);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Signal__WEBPACK_IMPORTED_MODULE_4__[\"Signal\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(_Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"comments\"], className) }, spanProps),\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_Icon__WEBPACK_IMPORTED_MODULE_2__[\"Icon\"], { ariaLabel: props.ariaLabel, className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(_Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"commentsIcon\"]), iconName: \"MessageFill\" }),\r\n children ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(_Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"commentsCount\"]) }, children) : null));\r\n};\r\n/**\r\n * Renders a signal for a number of comments.\r\n */\r\nvar UnseenReplySignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"unseenReply\"], iconName: \"commentprevious\" }));\r\n};\r\nvar UnseenEditSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"unseenEdit\"], iconName: \"edit\" }));\r\n};\r\nvar ReadOnlySignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"readOnly\"], iconName: \"uneditablesolid12\" }));\r\n};\r\nvar EmailedSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"emailed\"], iconName: \"mail\" }));\r\n};\r\nvar SharedSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"shared\"], iconName: \"people\" }));\r\n};\r\nvar MalwareDetectedSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"malwareDetected\"], iconName: \"BlockedSiteSolid12\" }));\r\n};\r\nvar ATPSignal = MalwareDetectedSignal; // TODO Delete on next major version.\r\n/**\r\n * Renders a signal for an external item.\r\n */\r\nvar ExternalSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"external\"], iconName: \"Globe\" }));\r\n};\r\nvar NotFollowedSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"bookmarkOutline\"], iconName: \"SingleBookmark\" }));\r\n};\r\nvar FollowedSignal = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](IconSignal, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { signalClass: _Signals_scss__WEBPACK_IMPORTED_MODULE_5__[\"bookmarkFilled\"], iconName: \"SingleBookmarkSolid\" }));\r\n};\r\n/**\r\n * Renders a signal as just an Icon. This is the simplest Signal case.\r\n */\r\n// tslint:disable-next-line:function-name\r\nfunction IconSignal(props) {\r\n var ariaLabel = props.ariaLabel, className = props.className, signalClass = props.signalClass, spanProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"ariaLabel\", \"className\", \"signalClass\"]);\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_Icon__WEBPACK_IMPORTED_MODULE_2__[\"Icon\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, spanProps, { ariaLabel: props.ariaLabel, className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])(_Signal_scss__WEBPACK_IMPORTED_MODULE_6__[\"signal\"], signalClass, className) }));\r\n}\r\n//# sourceMappingURL=Signals.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/signals/Signals.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/components/signals/Signals.scss.js":
/*!***********************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/components/signals/Signals.scss.js ***!
\***********************************************************************************/
/*! exports provided: newSignal, selected, newIcon, comments, commentsIcon, commentsCount, trending, blocked, warning, shared, lock, missingMetadata, youCheckedOut, someoneCheckedOut, awaitingApproval, mention, unseenEdit, unseenReply, emailed, malwareDetected, readOnly, external, record, liveEdit, bookmarkOutline, bookmarkFilled */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"newSignal\", function() { return newSignal; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"selected\", function() { return selected; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"newIcon\", function() { return newIcon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"comments\", function() { return comments; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"commentsIcon\", function() { return commentsIcon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"commentsCount\", function() { return commentsCount; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"trending\", function() { return trending; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"blocked\", function() { return blocked; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"warning\", function() { return warning; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"shared\", function() { return shared; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"lock\", function() { return lock; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"missingMetadata\", function() { return missingMetadata; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"youCheckedOut\", function() { return youCheckedOut; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"someoneCheckedOut\", function() { return someoneCheckedOut; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"awaitingApproval\", function() { return awaitingApproval; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mention\", function() { return mention; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unseenEdit\", function() { return unseenEdit; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unseenReply\", function() { return unseenReply; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"emailed\", function() { return emailed; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"malwareDetected\", function() { return malwareDetected; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"readOnly\", function() { return readOnly; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"external\", function() { return external; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"record\", function() { return record; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"liveEdit\", function() { return liveEdit; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"bookmarkOutline\", function() { return bookmarkOutline; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"bookmarkFilled\", function() { return bookmarkFilled; });\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__);\n/* tslint:disable */\r\n\r\nObject(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__[\"loadStyles\"])([{ \"rawString\": \".newSignal_4b320e5d{width:0;height:1em;position:relative;line-height:1em;color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}html[dir='ltr'] .newSignal_4b320e5d{margin-right:0}html[dir='rtl'] .newSignal_4b320e5d{margin-left:0}.selected_4b320e5d .newSignal_4b320e5d{color:\" }, { \"theme\": \"themeDark\", \"defaultValue\": \"#005a9e\" }, { \"rawString\": \"}.newIcon_4b320e5d{position:absolute;bottom:100%;font-size:0.66em;margin-bottom:-0.9em}html[dir='ltr'] .newIcon_4b320e5d{right:-.15em}html[dir='rtl'] .newIcon_4b320e5d{left:-.15em}.comments_4b320e5d{color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.selected_4b320e5d .comments_4b320e5d{color:\" }, { \"theme\": \"themeDark\", \"defaultValue\": \"#005a9e\" }, { \"rawString\": \"}.commentsIcon_4b320e5d{vertical-align:middle}.commentsCount_4b320e5d{font-size:0.9em;font-weight:600;vertical-align:baseline}html[dir='ltr'] .commentsCount_4b320e5d{margin-left:.2em}html[dir='rtl'] .commentsCount_4b320e5d{margin-right:.2em}.trending_4b320e5d{color:\" }, { \"theme\": \"green\", \"defaultValue\": \"#107c10\" }, { \"rawString\": \"}.blocked_4b320e5d{color:\" }, { \"theme\": \"redDark\", \"defaultValue\": \"#a80000\" }, { \"rawString\": \"}.warning_4b320e5d{color:#cf3902}.shared_4b320e5d{color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.selected_4b320e5d .shared_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.lock_4b320e5d{color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.selected_4b320e5d .lock_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.missingMetadata_4b320e5d{color:#cf3902}.youCheckedOut_4b320e5d{color:\" }, { \"theme\": \"redDark\", \"defaultValue\": \"#a80000\" }, { \"rawString\": \"}.someoneCheckedOut_4b320e5d{color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.selected_4b320e5d .someoneCheckedOut_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.awaitingApproval_4b320e5d{color:#ad3100}.mention_4b320e5d{position:relative;color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.selected_4b320e5d .mention_4b320e5d{color:\" }, { \"theme\": \"themeDark\", \"defaultValue\": \"#005a9e\" }, { \"rawString\": \"}.unseenEdit_4b320e5d{color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.selected_4b320e5d .unseenEdit_4b320e5d{color:\" }, { \"theme\": \"themeDark\", \"defaultValue\": \"#005a9e\" }, { \"rawString\": \"}.unseenReply_4b320e5d{color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.selected_4b320e5d .unseenReply_4b320e5d{color:\" }, { \"theme\": \"themeDark\", \"defaultValue\": \"#005a9e\" }, { \"rawString\": \"}i.unseenReply_4b320e5d{top:0.25em}.emailed_4b320e5d{color:\" }, { \"theme\": \"themePrimary\", \"defaultValue\": \"#0078d4\" }, { \"rawString\": \"}.selected_4b320e5d .emailed_4b320e5d{color:\" }, { \"theme\": \"themeDark\", \"defaultValue\": \"#005a9e\" }, { \"rawString\": \"}i.emailed_4b320e5d{top:0.25em}.malwareDetected_4b320e5d{color:\" }, { \"theme\": \"redDark\", \"defaultValue\": \"#a80000\" }, { \"rawString\": \"}.readOnly_4b320e5d{color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.selected_4b320e5d .readOnly_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.external_4b320e5d{color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.selected_4b320e5d .external_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.record_4b320e5d{color:\" }, { \"theme\": \"neutralSecondary\", \"defaultValue\": \"#666666\" }, { \"rawString\": \"}.selected_4b320e5d .record_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.liveEdit_4b320e5d{display:none}.bookmarkOutline_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}.bookmarkFilled_4b320e5d{color:\" }, { \"theme\": \"black\", \"defaultValue\": \"#000000\" }, { \"rawString\": \"}\\n\" }]);\r\nvar newSignal = \"newSignal_4b320e5d\";\r\nvar selected = \"selected_4b320e5d\";\r\nvar newIcon = \"newIcon_4b320e5d\";\r\nvar comments = \"comments_4b320e5d\";\r\nvar commentsIcon = \"commentsIcon_4b320e5d\";\r\nvar commentsCount = \"commentsCount_4b320e5d\";\r\nvar trending = \"trending_4b320e5d\";\r\nvar blocked = \"blocked_4b320e5d\";\r\nvar warning = \"warning_4b320e5d\";\r\nvar shared = \"shared_4b320e5d\";\r\nvar lock = \"lock_4b320e5d\";\r\nvar missingMetadata = \"missingMetadata_4b320e5d\";\r\nvar youCheckedOut = \"youCheckedOut_4b320e5d\";\r\nvar someoneCheckedOut = \"someoneCheckedOut_4b320e5d\";\r\nvar awaitingApproval = \"awaitingApproval_4b320e5d\";\r\nvar mention = \"mention_4b320e5d\";\r\nvar unseenEdit = \"unseenEdit_4b320e5d\";\r\nvar unseenReply = \"unseenReply_4b320e5d\";\r\nvar emailed = \"emailed_4b320e5d\";\r\nvar malwareDetected = \"malwareDetected_4b320e5d\";\r\nvar readOnly = \"readOnly_4b320e5d\";\r\nvar external = \"external_4b320e5d\";\r\nvar record = \"record_4b320e5d\";\r\nvar liveEdit = \"liveEdit_4b320e5d\";\r\nvar bookmarkOutline = \"bookmarkOutline_4b320e5d\";\r\nvar bookmarkFilled = \"bookmarkFilled_4b320e5d\";\r\n//# sourceMappingURL=Signals.scss.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/components/signals/Signals.scss.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/index.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/index.js ***!
\*********************************************************/
/*! exports provided: YouCheckedOutSignal, BlockedSignal, MissingMetadataSignal, WarningSignal, AwaitingApprovalSignal, TrendingSignal, SomeoneCheckedOutSignal, RecordSignal, NewSignal, LiveEditSignal, MentionSignal, CommentsSignal, UnseenReplySignal, UnseenEditSignal, ReadOnlySignal, EmailedSignal, SharedSignal, MalwareDetectedSignal, ATPSignal, ExternalSignal, NotFollowedSignal, FollowedSignal, Signal, Button, ChicletBase, Chiclet, ChicletCardBase, ChicletCard, getOpenGraphProperties, CollapsibleSection, CollapsibleSectionStateless, CollapsibleSectionTitle, CollapsibleSectionTitleView, CommandBar, CommandBarBase, FolderCover, getFolderCoverLayout, renderFolderCoverWithLayout, initializeFolderCovers, LayoutGroup, Pagination, Persona, PersonaCoin, Shimmer, ShimmerBase, ShimmerElementType, ShimmerElementVerticalAlign, ShimmerElementsDefaultHeights, ShimmerLine, ShimmerCircle, ShimmerGap, ShimmerElementsGroup, Sidebar, SidebarStylingConstants, sidebarFonts, SidebarColors, getSidebarStyles, getButtonColoredStyles, SidebarButton, getSidebarButtonStyles, getSidebarChildrenStyles, SignalField, StaticList, Text, TextView, TextStyles, TileLayoutValues, TileLayoutSizes, Tile, getTileLayout, renderTileWithLayout, ShimmerTile, TilesList, TilesGridMode, Toggle, VirtualizedList */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Button__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Button */ \"./node_modules/@uifabric/experiments/lib/Button.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Button\", function() { return _Button__WEBPACK_IMPORTED_MODULE_0__[\"Button\"]; });\n\n/* harmony import */ var _Chiclet__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Chiclet */ \"./node_modules/@uifabric/experiments/lib/Chiclet.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChicletBase\", function() { return _Chiclet__WEBPACK_IMPORTED_MODULE_1__[\"ChicletBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Chiclet\", function() { return _Chiclet__WEBPACK_IMPORTED_MODULE_1__[\"Chiclet\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChicletCardBase\", function() { return _Chiclet__WEBPACK_IMPORTED_MODULE_1__[\"ChicletCardBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChicletCard\", function() { return _Chiclet__WEBPACK_IMPORTED_MODULE_1__[\"ChicletCard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getOpenGraphProperties\", function() { return _Chiclet__WEBPACK_IMPORTED_MODULE_1__[\"getOpenGraphProperties\"]; });\n\n/* harmony import */ var _CollapsibleSection__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./CollapsibleSection */ \"./node_modules/@uifabric/experiments/lib/CollapsibleSection.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CollapsibleSection\", function() { return _CollapsibleSection__WEBPACK_IMPORTED_MODULE_2__[\"CollapsibleSection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CollapsibleSectionStateless\", function() { return _CollapsibleSection__WEBPACK_IMPORTED_MODULE_2__[\"CollapsibleSectionStateless\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CollapsibleSectionTitle\", function() { return _CollapsibleSection__WEBPACK_IMPORTED_MODULE_2__[\"CollapsibleSectionTitle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CollapsibleSectionTitleView\", function() { return _CollapsibleSection__WEBPACK_IMPORTED_MODULE_2__[\"CollapsibleSectionTitleView\"]; });\n\n/* harmony import */ var _CommandBar__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./CommandBar */ \"./node_modules/@uifabric/experiments/lib/CommandBar.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommandBar\", function() { return _CommandBar__WEBPACK_IMPORTED_MODULE_3__[\"CommandBar\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommandBarBase\", function() { return _CommandBar__WEBPACK_IMPORTED_MODULE_3__[\"CommandBarBase\"]; });\n\n/* harmony import */ var _FolderCover__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./FolderCover */ \"./node_modules/@uifabric/experiments/lib/FolderCover.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FolderCover\", function() { return _FolderCover__WEBPACK_IMPORTED_MODULE_4__[\"FolderCover\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFolderCoverLayout\", function() { return _FolderCover__WEBPACK_IMPORTED_MODULE_4__[\"getFolderCoverLayout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"renderFolderCoverWithLayout\", function() { return _FolderCover__WEBPACK_IMPORTED_MODULE_4__[\"renderFolderCoverWithLayout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"initializeFolderCovers\", function() { return _FolderCover__WEBPACK_IMPORTED_MODULE_4__[\"initializeFolderCovers\"]; });\n\n/* harmony import */ var _LayoutGroup__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./LayoutGroup */ \"./node_modules/@uifabric/experiments/lib/LayoutGroup.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LayoutGroup\", function() { return _LayoutGroup__WEBPACK_IMPORTED_MODULE_5__[\"LayoutGroup\"]; });\n\n/* harmony import */ var _Pagination__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./Pagination */ \"./node_modules/@uifabric/experiments/lib/Pagination.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Pagination\", function() { return _Pagination__WEBPACK_IMPORTED_MODULE_6__[\"Pagination\"]; });\n\n/* harmony import */ var _Persona__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./Persona */ \"./node_modules/@uifabric/experiments/lib/Persona.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Persona\", function() { return _Persona__WEBPACK_IMPORTED_MODULE_7__[\"Persona\"]; });\n\n/* harmony import */ var _PersonaCoin__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./PersonaCoin */ \"./node_modules/@uifabric/experiments/lib/PersonaCoin.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaCoin\", function() { return _PersonaCoin__WEBPACK_IMPORTED_MODULE_8__[\"PersonaCoin\"]; });\n\n/* harmony import */ var _Shimmer__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./Shimmer */ \"./node_modules/@uifabric/experiments/lib/Shimmer.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shimmer\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"Shimmer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerBase\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementType\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerElementType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementVerticalAlign\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerElementVerticalAlign\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementsDefaultHeights\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerElementsDefaultHeights\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerLine\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerLine\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerCircle\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerCircle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerGap\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerGap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementsGroup\", function() { return _Shimmer__WEBPACK_IMPORTED_MODULE_9__[\"ShimmerElementsGroup\"]; });\n\n/* harmony import */ var _Sidebar__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./Sidebar */ \"./node_modules/@uifabric/experiments/lib/Sidebar.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Sidebar\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"Sidebar\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SidebarStylingConstants\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"SidebarStylingConstants\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sidebarFonts\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"sidebarFonts\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SidebarColors\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"SidebarColors\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSidebarStyles\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"getSidebarStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getButtonColoredStyles\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"getButtonColoredStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SidebarButton\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"SidebarButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSidebarButtonStyles\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"getSidebarButtonStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSidebarChildrenStyles\", function() { return _Sidebar__WEBPACK_IMPORTED_MODULE_10__[\"getSidebarChildrenStyles\"]; });\n\n/* harmony import */ var _Signals__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Signals */ \"./node_modules/@uifabric/experiments/lib/Signals.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"YouCheckedOutSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"YouCheckedOutSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BlockedSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"BlockedSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MissingMetadataSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"MissingMetadataSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"WarningSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"WarningSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AwaitingApprovalSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"AwaitingApprovalSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TrendingSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"TrendingSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SomeoneCheckedOutSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"SomeoneCheckedOutSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RecordSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"RecordSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NewSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"NewSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LiveEditSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"LiveEditSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MentionSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"MentionSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommentsSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"CommentsSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnseenReplySignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"UnseenReplySignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"UnseenEditSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"UnseenEditSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ReadOnlySignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"ReadOnlySignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EmailedSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"EmailedSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SharedSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"SharedSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MalwareDetectedSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"MalwareDetectedSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ATPSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"ATPSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExternalSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"ExternalSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NotFollowedSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"NotFollowedSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FollowedSignal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"FollowedSignal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Signal\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"Signal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SignalField\", function() { return _Signals__WEBPACK_IMPORTED_MODULE_11__[\"SignalField\"]; });\n\n/* harmony import */ var _StaticList__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./StaticList */ \"./node_modules/@uifabric/experiments/lib/StaticList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StaticList\", function() { return _StaticList__WEBPACK_IMPORTED_MODULE_12__[\"StaticList\"]; });\n\n/* harmony import */ var _Text__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./Text */ \"./node_modules/@uifabric/experiments/lib/Text.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Text\", function() { return _Text__WEBPACK_IMPORTED_MODULE_13__[\"Text\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextView\", function() { return _Text__WEBPACK_IMPORTED_MODULE_13__[\"TextView\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextStyles\", function() { return _Text__WEBPACK_IMPORTED_MODULE_13__[\"TextStyles\"]; });\n\n/* harmony import */ var _Tile__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./Tile */ \"./node_modules/@uifabric/experiments/lib/Tile.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TileLayoutValues\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_14__[\"TileLayoutValues\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TileLayoutSizes\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_14__[\"TileLayoutSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tile\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_14__[\"Tile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getTileLayout\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_14__[\"getTileLayout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"renderTileWithLayout\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_14__[\"renderTileWithLayout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerTile\", function() { return _Tile__WEBPACK_IMPORTED_MODULE_14__[\"ShimmerTile\"]; });\n\n/* harmony import */ var _TilesList__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./TilesList */ \"./node_modules/@uifabric/experiments/lib/TilesList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TilesList\", function() { return _TilesList__WEBPACK_IMPORTED_MODULE_15__[\"TilesList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TilesGridMode\", function() { return _TilesList__WEBPACK_IMPORTED_MODULE_15__[\"TilesGridMode\"]; });\n\n/* harmony import */ var _Toggle__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./Toggle */ \"./node_modules/@uifabric/experiments/lib/Toggle.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Toggle\", function() { return _Toggle__WEBPACK_IMPORTED_MODULE_16__[\"Toggle\"]; });\n\n/* harmony import */ var _VirtualizedList__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./VirtualizedList */ \"./node_modules/@uifabric/experiments/lib/VirtualizedList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VirtualizedList\", function() { return _VirtualizedList__WEBPACK_IMPORTED_MODULE_17__[\"VirtualizedList\"]; });\n\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./version */ \"./node_modules/@uifabric/experiments/lib/version.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/utilities/BaseComponentMin.js":
/*!******************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/utilities/BaseComponentMin.js ***!
\******************************************************************************/
/*! exports provided: BaseComponentMin */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaseComponentMin\", function() { return BaseComponentMin; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n\r\n\r\n/**\r\n * BaseComponent class, which provides basic helpers for all components.\r\n *\r\n * @public\r\n */\r\n// TODO: rename, BaseComponentMin is ambiguous. BaseComponent? BaseComponentRef?\r\n// TODO: will probably need lifecycle deprecation changes before promotion similar to BaseComponent\r\nvar BaseComponentMin = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](BaseComponentMin, _super);\r\n /**\r\n * BaseComponent constructor\r\n * @param props - The props for the component.\r\n * @param context - The context for the component.\r\n */\r\n // tslint:disable-next-line:no-any\r\n function BaseComponentMin(props, context) {\r\n var _this = _super.call(this, props, context) || this;\r\n _makeAllSafe(_this, BaseComponentMin.prototype, ['componentWillReceiveProps', 'componentDidMount', 'componentWillUnmount']);\r\n return _this;\r\n }\r\n /**\r\n * When the component will receive props, make sure the componentRef is updated.\r\n */\r\n // tslint:disable-next-line:no-any\r\n BaseComponentMin.prototype.componentWillReceiveProps = function (newProps, newContext) {\r\n this._updateComponentRef(this.props, newProps);\r\n };\r\n /**\r\n * When the component has mounted, update the componentRef.\r\n */\r\n BaseComponentMin.prototype.componentDidMount = function () {\r\n this._setComponentRef(this.props.componentRef, this);\r\n };\r\n /**\r\n * If we have disposables, dispose them automatically on unmount.\r\n */\r\n BaseComponentMin.prototype.componentWillUnmount = function () {\r\n this._setComponentRef(this.props.componentRef, null);\r\n };\r\n /**\r\n * Updates the componentRef (by calling it with \"this\" when necessary.)\r\n */\r\n BaseComponentMin.prototype._updateComponentRef = function (currentProps, newProps) {\r\n if (newProps === void 0) { newProps = {}; }\r\n if (currentProps.componentRef !== newProps.componentRef) {\r\n this._setComponentRef(currentProps.componentRef, null);\r\n this._setComponentRef(newProps.componentRef, this);\r\n }\r\n };\r\n BaseComponentMin.prototype._setComponentRef = function (ref, value) {\r\n if (!this._skipComponentRefResolution && ref) {\r\n if (typeof ref === 'function') {\r\n ref(value);\r\n }\r\n if (typeof ref === 'object') {\r\n // tslint:disable:no-any\r\n ref.current = value;\r\n }\r\n }\r\n };\r\n return BaseComponentMin;\r\n}(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n\r\n/**\r\n * Helper to override a given method with a wrapper method that can try/catch the original, but also\r\n * ensures that the BaseComponent's methods are called before the subclass's. This ensures that\r\n * componentWillUnmount in the base is called and that things in the _disposables array are disposed.\r\n */\r\nfunction _makeAllSafe(obj, prototype, methodNames) {\r\n for (var i = 0, len = methodNames.length; i < len; i++) {\r\n _makeSafe(obj, prototype, methodNames[i]);\r\n }\r\n}\r\nfunction _makeSafe(obj, prototype, methodName) {\r\n // tslint:disable:no-any\r\n var classMethod = obj[methodName];\r\n var prototypeMethod = prototype[methodName];\r\n // tslint:enable:no-any\r\n if (classMethod || prototypeMethod) {\r\n // tslint:disable-next-line:no-any\r\n obj[methodName] = function () {\r\n var retVal;\r\n if (prototypeMethod) {\r\n retVal = prototypeMethod.apply(this, arguments);\r\n }\r\n if (classMethod !== prototypeMethod) {\r\n retVal = classMethod.apply(this, arguments);\r\n }\r\n return retVal;\r\n };\r\n }\r\n}\r\n//# sourceMappingURL=BaseComponentMin.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/utilities/BaseComponentMin.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/utilities/BaseState.js":
/*!***********************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/utilities/BaseState.js ***!
\***********************************************************************/
/*! exports provided: BaseState */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaseState\", function() { return BaseState; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _BaseComponentMin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./BaseComponentMin */ \"./node_modules/@uifabric/experiments/lib/utilities/BaseComponentMin.js\");\n\r\n\r\nvar BaseState = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](BaseState, _super);\r\n function BaseState(props, options) {\r\n if (options === void 0) { options = {}; }\r\n var _this = _super.call(this, props) || this;\r\n _this._controlledProps = options.controlledProps || [];\r\n _this._transformViewProps =\r\n options.transformViewProps ||\r\n (function (newProps) {\r\n return newProps;\r\n });\r\n return _this;\r\n }\r\n BaseState.prototype.componentWillReceiveProps = function (newProps) {\r\n for (var _i = 0, _a = this._controlledProps; _i < _a.length; _i++) {\r\n var propName = _a[_i];\r\n // tslint:disable-next-line:no-any\r\n var controlledPropValue = newProps[propName];\r\n if (controlledPropValue !== undefined && controlledPropValue !== this.state[propName]) {\r\n // TODO: should we consolidate this into one setState call?\r\n this.setState((_b = {},\r\n _b[propName] = controlledPropValue,\r\n _b));\r\n }\r\n }\r\n var _b;\r\n };\r\n BaseState.prototype.render = function () {\r\n var controlledProps = this._getControlledProps();\r\n var newProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, this.state, controlledProps);\r\n // Need to spread controlledProps again to make sure transformViewProps does not overwrite any controlled props.\r\n // TODO: better way to do this than two spreads? filtered write? pass \"setState\" helper to transformViewProps?\r\n newProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, this._transformViewProps(newProps), controlledProps);\r\n return this.props.renderView(newProps);\r\n };\r\n BaseState.prototype._getControlledProps = function () {\r\n var result = {};\r\n for (var _i = 0, _a = this._controlledProps; _i < _a.length; _i++) {\r\n var propName = _a[_i];\r\n // tslint:disable-next-line:no-any\r\n var value = this.props[propName];\r\n if (value !== undefined) {\r\n // tslint:disable-next-line:no-any\r\n result[propName] = value;\r\n }\r\n }\r\n return result;\r\n };\r\n return BaseState;\r\n}(_BaseComponentMin__WEBPACK_IMPORTED_MODULE_1__[\"BaseComponentMin\"]));\r\n\r\n//# sourceMappingURL=BaseState.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/utilities/BaseState.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/utilities/factoryComponents.js":
/*!*******************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/utilities/factoryComponents.js ***!
\*******************************************************************************/
/*! exports provided: Icon, Label, PersonaPresence */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Icon\", function() { return Icon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Label\", function() { return Label; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PersonaPresence\", function() { return PersonaPresence; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var office_ui_fabric_react__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! office-ui-fabric-react */ \"./node_modules/office-ui-fabric-react/lib/index.js\");\n/* harmony import */ var office_ui_fabric_react_lib_PersonaPresence__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! office-ui-fabric-react/lib/PersonaPresence */ \"./node_modules/office-ui-fabric-react/lib/PersonaPresence.js\");\n/* harmony import */ var _Foundation__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../Foundation */ \"./node_modules/@uifabric/experiments/lib/Foundation.js\");\n\r\n\r\n\r\n// PersonaPresence is not exported by OUFR, so we have to import it directly.\r\n\r\n\r\n// TODO: All contents of this file should eventually be removed.\r\n// TODO: createFactory should no longer have to be explicitly called with component options containing defaultProp.\r\n// (Consider adding a defaultProp option to styled so that createFactory can be internalized similar to createComponent)\r\n// TODO: displayName will also be covered by createComponent argument.\r\n// TODO: These components will also have to be modified not to generate rendered output if their props don't call for it\r\n// to eliminate the wrapper functions below.\r\n// Generally to avoid a bunch of \"if slot prop exists\" checks in parent components, components should\r\n// make sure they have content to render based on their props. For example here, if Icon has no iconName,\r\n// it has no rendered content and returns null. This prevents Button.view from having to check to\r\n// see if its icon Slot is defined.\r\n// These wrappers will temporarily add a layer to the hierarchy (identified with displayName) until their functionality\r\n// can be absorbed into their respective OUFR components.\r\nvar Icon = function (props) { return (props.iconName ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react__WEBPACK_IMPORTED_MODULE_2__[\"Icon\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props)) : null); };\r\nIcon.displayName = 'Icon';\r\nIcon.create = Object(_Foundation__WEBPACK_IMPORTED_MODULE_4__[\"createFactory\"])(Icon, { defaultProp: 'iconName' });\r\nvar Label = function (props) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"Children\"].count(props.children) > 0 ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react__WEBPACK_IMPORTED_MODULE_2__[\"Label\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props)) : null;\r\n};\r\nLabel.displayName = 'Label';\r\nLabel.create = Object(_Foundation__WEBPACK_IMPORTED_MODULE_4__[\"createFactory\"])(Label);\r\nvar PersonaPresence = \r\n// TODO: This is a bug in PersonaPresence that needs to be fixed. 'presence' prop comment mentions that it won't render\r\n// if presence is undefined, but it does render. Check for undefined here for now.\r\nfunction (props) { return (props.presence !== undefined ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](office_ui_fabric_react_lib_PersonaPresence__WEBPACK_IMPORTED_MODULE_3__[\"PersonaPresence\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props)) : null); };\r\nPersonaPresence.displayName = 'PersonaPresence';\r\nPersonaPresence.create = Object(_Foundation__WEBPACK_IMPORTED_MODULE_4__[\"createFactory\"])(PersonaPresence, { defaultProp: 'presence' });\r\n//# sourceMappingURL=factoryComponents.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/utilities/factoryComponents.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.js":
/*!***************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.js ***!
\***************************************************************************************/
/*! exports provided: ScrollContainerContextTypes, ScrollContainer */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScrollContainerContextTypes\", function() { return ScrollContainerContextTypes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScrollContainer\", function() { return ScrollContainer; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! prop-types */ \"./node_modules/prop-types/index.js\");\n/* harmony import */ var prop_types__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(prop_types__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! office-ui-fabric-react/lib/Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _ScrollContainer_scss__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ScrollContainer.scss */ \"./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.scss.js\");\n\r\n\r\n\r\n\r\n\r\nvar ScrollContainerContextTypes = {\r\n scrollContainer: prop_types__WEBPACK_IMPORTED_MODULE_2__[\"object\"].isRequired\r\n};\r\nvar ScrollContainer = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](ScrollContainer, _super);\r\n function ScrollContainer() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this._callbacks = [];\r\n _this._pendingElements = [];\r\n _this._resolveRoot = function (element) {\r\n if (element) {\r\n _this._root = element;\r\n _this._init();\r\n }\r\n };\r\n _this._onIntersection = function (entries, observer) {\r\n for (var _i = 0, entries_1 = entries; _i < entries_1.length; _i++) {\r\n var entry = entries_1[_i];\r\n // tslint:disable-next-line:no-any\r\n if (entry.isIntersecting || entry.intersectionRatio > 0) {\r\n // Schedule callbacks on next frame\r\n _this._async.requestAnimationFrame(function () {\r\n var scrollTop = _this._root.scrollTop;\r\n for (var _i = 0, _a = _this._callbacks; _i < _a.length; _i++) {\r\n var callback = _a[_i];\r\n callback(scrollTop);\r\n }\r\n });\r\n // Only need to call callbacks for on entry\r\n return;\r\n }\r\n }\r\n };\r\n _this._onScroll = function () {\r\n var scrollTop = _this._root.scrollTop;\r\n for (var _i = 0, _a = _this._callbacks; _i < _a.length; _i++) {\r\n var callback = _a[_i];\r\n callback(scrollTop);\r\n }\r\n };\r\n return _this;\r\n }\r\n ScrollContainer.prototype.getChildContext = function () {\r\n return {\r\n scrollContainer: this\r\n };\r\n };\r\n ScrollContainer.prototype.observe = function (element) {\r\n if (this._observer) {\r\n this._observer.observe(element);\r\n }\r\n else {\r\n this._pendingElements.push(element);\r\n }\r\n };\r\n ScrollContainer.prototype.unobserve = function (element) {\r\n if (this._observer) {\r\n this._observer.unobserve(element);\r\n }\r\n };\r\n ScrollContainer.prototype.registerVisibleCallback = function (callback) {\r\n this._callbacks.push(callback);\r\n };\r\n ScrollContainer.prototype.render = function () {\r\n var _a = this.props, children = _a.children, className = _a.className;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: Object(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"css\"])('ms-ScrollContainer', _ScrollContainer_scss__WEBPACK_IMPORTED_MODULE_4__[\"root\"], className), \"data-is-scrollable\": true, ref: this._resolveRoot }, children));\r\n };\r\n ScrollContainer.prototype.componentWillUnmount = function () {\r\n if (this._observer) {\r\n this._observer.disconnect();\r\n }\r\n };\r\n ScrollContainer.prototype._init = function () {\r\n if (typeof IntersectionObserver !== 'undefined') {\r\n var threshold = [];\r\n for (var i = 0; i < 100; ++i) {\r\n threshold.push(i / 100.0);\r\n }\r\n this._observer = new IntersectionObserver(this._onIntersection, {\r\n root: this._root,\r\n threshold: threshold\r\n });\r\n // If there were attempts to observe elements before the observer was ready, add them now\r\n if (this._pendingElements.length > 0) {\r\n for (var _i = 0, _a = this._pendingElements; _i < _a.length; _i++) {\r\n var pendingElement = _a[_i];\r\n this._observer.observe(pendingElement);\r\n }\r\n this._pendingElements = [];\r\n }\r\n }\r\n else {\r\n var scrollDebounceDelay = this.props.scrollDebounceDelay;\r\n this._onScroll = this._async.debounce(this._onScroll, scrollDebounceDelay);\r\n // No intersection observer, rely on scroll event. Note: not all browsers support options, but since\r\n // we don't need capture, we can pass it and have it ignored if not supported\r\n this._root.addEventListener('scroll', this._onScroll, {\r\n passive: true\r\n // tslint:disable-next-line:no-any\r\n });\r\n }\r\n };\r\n ScrollContainer.childContextTypes = ScrollContainerContextTypes;\r\n return ScrollContainer;\r\n}(office_ui_fabric_react_lib_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=ScrollContainer.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.scss.js":
/*!********************************************************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.scss.js ***!
\********************************************************************************************/
/*! exports provided: root */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"root\", function() { return root; });\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__);\n/* tslint:disable */\r\n\r\nObject(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_0__[\"loadStyles\"])([{ \"rawString\": \".root_d29312af{overflow:auto}\\n\" }]);\r\nvar root = \"root_d29312af\";\r\n//# sourceMappingURL=ScrollContainer.scss.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/utilities/scrolling/ScrollContainer.scss.js?");
/***/ }),
/***/ "./node_modules/@uifabric/experiments/lib/version.js":
/*!***********************************************************!*\
!*** ./node_modules/@uifabric/experiments/lib/version.js ***!
\***********************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/set-version */ \"./node_modules/@uifabric/set-version/lib/index.js\");\n// @uifabric/experiments@6.57.0\r\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\r\n\r\nObject(_uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/experiments', '6.57.0');\r\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/experiments/lib/version.js?");
/***/ }),
/***/ "./node_modules/@uifabric/foundation/lib/ThemeProvider.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/foundation/lib/ThemeProvider.js ***!
\****************************************************************/
/*! exports provided: ThemeProvider */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ThemeProvider\", function() { return ThemeProvider; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n\r\n\r\n\r\n\r\n/**\r\n * Theme provider is a simplified version of Customizer that activates the appropriate theme data\r\n * for a given scheme name.\r\n *\r\n * @param providers - Injected providers for accessing theme data and providing it via a Customizer component.\r\n */\r\nvar ThemeProvider = function (props) {\r\n var scheme = props.scheme, theme = props.theme, rest = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](props, [\"scheme\", \"theme\"]);\r\n // TODO: consider merging implementation with theme-proto, which only stores a reference / scheme name to theme in context\r\n // and uses quick global store accessor to trigger change by passing in theme object as child and triggering re-render.\r\n // (perf benefits need verification)\r\n // tslint:disable-next-line:typedef\r\n var contextTransform = function (context) {\r\n return Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_2__[\"getThemedContext\"])(context, scheme, theme);\r\n };\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__[\"Customizer\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, rest, { contextTransform: contextTransform }));\r\n};\r\n//# sourceMappingURL=ThemeProvider.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/foundation/lib/ThemeProvider.js?");
/***/ }),
/***/ "./node_modules/@uifabric/foundation/lib/createComponent.js":
/*!******************************************************************!*\
!*** ./node_modules/@uifabric/foundation/lib/createComponent.js ***!
\******************************************************************/
/*! exports provided: createComponent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createComponent\", function() { return createComponent; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n/* harmony import */ var _slots__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./slots */ \"./node_modules/@uifabric/foundation/lib/slots.js\");\n/* harmony import */ var _utilities__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./utilities */ \"./node_modules/@uifabric/foundation/lib/utilities.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n/**\r\n * Assembles a higher order component based on the following: styles, theme, view, and state.\r\n * Imposes a separation of concern and centralizes styling processing to increase ease of use and robustness\r\n * in how components use and apply styling and theming.\r\n *\r\n * Automatically merges and applies themes and styles with theme / styleprops having the highest priority.\r\n * State component, if provided, is passed in props for processing. Props from state / user are automatically processed\r\n * and styled before finally being passed to view.\r\n *\r\n * State components should contain all stateful behavior and should not generate any JSX, but rather simply call the view prop.\r\n * Views should simply be stateless pure functions that receive all props needed for rendering their output.\r\n * State component is optional. If state is not provided, created component is essentially a functional stateless component.\r\n *\r\n * * TComponentProps: A styleable props interface for the created component.\r\n * * TTokens: The type for tokens props.\r\n * * TStyleSet: The type for styles properties.\r\n * * TViewProps: The props specific to the view, including processed properties outputted by optional state component. If state\r\n * component is not provided, TComponentProps is the same as TViewProps.\r\n * * TStatics: Static type for statics applied to created component object.\r\n *\r\n * @param {IComponent} component Component options. See IComponent for more detail.\r\n */\r\nfunction createComponent(component) {\r\n var _a = component.factoryOptions, factoryOptions = _a === void 0 ? {} : _a;\r\n var defaultProp = factoryOptions.defaultProp;\r\n var result = function (componentProps) {\r\n return (\r\n // TODO: createComponent is also affected by https://github.com/OfficeDev/office-ui-fabric-react/issues/6603\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__[\"CustomizerContext\"].Consumer, null, function (context) {\r\n // TODO: this next line is basically saying 'theme' prop will ALWAYS be available from getCustomizations\r\n // via ICustomizationProps cast. Is there mechanism that guarantees theme and other request fields will be defined?\r\n // is there a static init that guarantees theme will be provided?\r\n // what happens if createTheme/loadTheme is not called?\r\n // if so, convey through getCustomizations typing keying off fields. can we convey this\r\n // all the way from Customizations with something like { { K in fields }: object}? hmm\r\n // if not, how does existing \"theme!\" styles code work without risk of failing (assuming it doesn't fail)?\r\n // For now cast return value as if theme is always available.\r\n var settings = _getCustomizations(component.displayName, context, component.fields);\r\n var renderView = function (viewProps) {\r\n // The approach here is to allow state components to provide only the props they care about, automatically\r\n // merging user props and state props together. This ensures all props are passed properly to view,\r\n // including children and styles.\r\n // TODO: for full 'fields' support, 'rest' props from customizations need to pass onto view.\r\n // however, customized props like theme will break snapshots. how is styled not showing theme output in snapshots?\r\n var mergedProps = viewProps\r\n ? tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, componentProps, viewProps) : componentProps;\r\n var theme = mergedProps.theme || settings.theme;\r\n var tokens = _resolveTokens(mergedProps, theme, component.tokens, settings.tokens, mergedProps.tokens);\r\n var styles = _resolveStyles(mergedProps, theme, tokens, component.styles, settings.styles, mergedProps.styles);\r\n var viewComponentProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, mergedProps, { _defaultStyles: styles });\r\n return component.view(viewComponentProps);\r\n };\r\n return component.state ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](component.state, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, componentProps, { renderView: renderView })) : renderView();\r\n }));\r\n };\r\n result.displayName = component.displayName;\r\n // If a shorthand prop is defined, create a factory for the component.\r\n // TODO: This shouldn't be a concern of createComponent.. factoryOptions should just be forwarded.\r\n // Need to weigh creating default factories on component creation vs. memozing them on use in slots.tsx.\r\n if (defaultProp) {\r\n result.create = Object(_slots__WEBPACK_IMPORTED_MODULE_4__[\"createFactory\"])(result, { defaultProp: defaultProp });\r\n }\r\n Object(_utilities__WEBPACK_IMPORTED_MODULE_5__[\"assign\"])(result, component.statics);\r\n // Later versions of TypeSript should allow us to merge objects in a type safe way and avoid this cast.\r\n return result;\r\n}\r\n/**\r\n * Resolve all styles functions with both props and tokens and flatten results along with all styles objects.\r\n */\r\nfunction _resolveStyles(props, theme, tokens) {\r\n var allStyles = [];\r\n for (var _i = 3; _i < arguments.length; _i++) {\r\n allStyles[_i - 3] = arguments[_i];\r\n }\r\n return _uifabric_styling__WEBPACK_IMPORTED_MODULE_2__[\"concatStyleSets\"].apply(void 0, allStyles.map(function (styles) {\r\n return typeof styles === 'function' ? styles(props, theme, tokens) : styles;\r\n }));\r\n}\r\n/**\r\n * Resolve all tokens functions with props flatten results along with all tokens objects.\r\n */\r\nfunction _resolveTokens(props, theme) {\r\n var allTokens = [];\r\n for (var _i = 2; _i < arguments.length; _i++) {\r\n allTokens[_i - 2] = arguments[_i];\r\n }\r\n var tokens = {};\r\n for (var _a = 0, allTokens_1 = allTokens; _a < allTokens_1.length; _a++) {\r\n var currentTokens = allTokens_1[_a];\r\n if (currentTokens) {\r\n currentTokens = typeof currentTokens === 'function' ? currentTokens(props, theme) : currentTokens;\r\n if (Array.isArray(currentTokens)) {\r\n currentTokens = _resolveTokens.apply(void 0, [props, theme].concat(currentTokens));\r\n }\r\n _utilities__WEBPACK_IMPORTED_MODULE_5__[\"assign\"].apply(void 0, [tokens].concat(currentTokens));\r\n }\r\n }\r\n return tokens;\r\n}\r\n/**\r\n * Helper function for calling Customizations.getSettings falling back to default fields.\r\n *\r\n * @param displayName Displayable name for component.\r\n * @param context React context passed to component containing contextual settings.\r\n * @param fields Optional list of properties to grab from global store and context.\r\n */\r\nfunction _getCustomizations(displayName, context, fields) {\r\n // TODO: do we want field props? should fields be part of IComponent and used here?\r\n // TODO: should we centrally define DefaultFields? (not exported from styling)\r\n // TOOD: tie this array to ICustomizationProps, such that each array element is keyof ICustomizationProps\r\n var DefaultFields = ['theme', 'styles', 'tokens'];\r\n return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__[\"Customizations\"].getSettings(fields || DefaultFields, displayName, context.customizations);\r\n}\r\n//# sourceMappingURL=createComponent.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/foundation/lib/createComponent.js?");
/***/ }),
/***/ "./node_modules/@uifabric/foundation/lib/index.js":
/*!********************************************************!*\
!*** ./node_modules/@uifabric/foundation/lib/index.js ***!
\********************************************************/
/*! exports provided: createComponent, withSlots, createFactory, getSlots, ThemeProvider */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _createComponent__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./createComponent */ \"./node_modules/@uifabric/foundation/lib/createComponent.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createComponent\", function() { return _createComponent__WEBPACK_IMPORTED_MODULE_0__[\"createComponent\"]; });\n\n/* empty/unused harmony star reexport *//* harmony import */ var _slots__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./slots */ \"./node_modules/@uifabric/foundation/lib/slots.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"withSlots\", function() { return _slots__WEBPACK_IMPORTED_MODULE_1__[\"withSlots\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createFactory\", function() { return _slots__WEBPACK_IMPORTED_MODULE_1__[\"createFactory\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSlots\", function() { return _slots__WEBPACK_IMPORTED_MODULE_1__[\"getSlots\"]; });\n\n/* harmony import */ var _ThemeProvider__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ThemeProvider */ \"./node_modules/@uifabric/foundation/lib/ThemeProvider.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThemeProvider\", function() { return _ThemeProvider__WEBPACK_IMPORTED_MODULE_2__[\"ThemeProvider\"]; });\n\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./version */ \"./node_modules/@uifabric/foundation/lib/version.js\");\n\r\n\r\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/foundation/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/foundation/lib/slots.js":
/*!********************************************************!*\
!*** ./node_modules/@uifabric/foundation/lib/slots.js ***!
\********************************************************/
/*! exports provided: withSlots, createFactory, getSlots */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"withSlots\", function() { return withSlots; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createFactory\", function() { return createFactory; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getSlots\", function() { return getSlots; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n/* harmony import */ var _utilities__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./utilities */ \"./node_modules/@uifabric/foundation/lib/utilities.js\");\n\r\n\r\n\r\n\r\n\r\n// TODO: Is getting only div props for 'root' slots is pretty limiting? Or is it exactly as it needs to be?\r\n// Another example is getting Toggle state for `label` slot render functions. Should it get Toggle props instead?\r\n// Needs more usage to rationalize the best approach. If we want component props, component props are passed\r\n// as each slot as rendered and aren't available when getSlots is called. This would substantially change this approach.\r\n/**\r\n * This function is required for any module that uses slots.\r\n *\r\n * This function is a slot resolver that automatically evaluates slot functions to generate React elements.\r\n * A byproduct of this resolver is that it removes slots from the React hierarchy by bypassing React.createElement.\r\n *\r\n * To use this function on a per-file basis, put the following directive in a comment block: @jsx withSlots\r\n * Usage of this pragma also requires an import statement of SlotModule such as: import { withSlots } from '@uifabric/foundation';\r\n * Also, this directive must be the FIRST LINE in the file to work correctly.\r\n *\r\n * @see React.createElement\r\n */\r\n// Can't use typeof on React.createElement since it's overloaded. Approximate createElement's signature for now and widen as needed.\r\nfunction withSlots(type, props) {\r\n // tslint:disable-next-line:missing-optional-annotation\r\n var children = [];\r\n for (\r\n // tslint:disable-next-line:missing-optional-annotation\r\n var _i = 2; \r\n // tslint:disable-next-line:missing-optional-annotation\r\n _i < arguments.length; \r\n // tslint:disable-next-line:missing-optional-annotation\r\n _i++) {\r\n // tslint:disable-next-line:missing-optional-annotation\r\n children[_i - 2] = arguments[_i];\r\n }\r\n var slotType = type;\r\n if (slotType.isSlot) {\r\n // TODO: There is something weird going on here with children embedded in props vs. rest args.\r\n // Comment out these lines to see. Make sure this function is doing the right things.\r\n var numChildren = react__WEBPACK_IMPORTED_MODULE_1__[\"Children\"].count(children);\r\n if (numChildren === 0) {\r\n return slotType(props);\r\n }\r\n // Since we are bypassing createElement, use React.Children.toArray to make sure children are properly assigned keys.\r\n // TODO: should this be mutating? does React mutate children subprop with createElement?\r\n // TODO: will toArray clobber existing keys?\r\n // TODO: React generates warnings because it doesn't detect hidden member _store that is set in createElement.\r\n // Even children passed to createElement without keys don't generate this warning.\r\n // Is there a better way to prevent slots from appearing in hierarchy? toArray doesn't address root issue.\r\n children = react__WEBPACK_IMPORTED_MODULE_1__[\"Children\"].toArray(children);\r\n return slotType(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { children: children }));\r\n }\r\n else {\r\n // TODO: Are there some cases where children should NOT be spread? Also, spreading reraises perf question.\r\n // Children had to be spread to avoid breaking KeytipData in Toggle.view:\r\n // react-dom.development.js:18931 Uncaught TypeError: children is not a function\r\n // Without spread, function child is a child array of one element\r\n // TODO: is there a reason this can't be:\r\n // return React.createElement.apply(this, arguments);\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"].apply(react__WEBPACK_IMPORTED_MODULE_1__, [type, props].concat(children));\r\n }\r\n}\r\n/**\r\n * This function creates factories that render ouput depending on the user ISlotProp props passed in.\r\n * @param ComponentType Base component to render when not overridden by user props.\r\n * @param options Factory options, including defaultProp value for shorthand prop mapping.\r\n * @returns ISlotFactory function used for rendering slots.\r\n */\r\nfunction createFactory(ComponentType, options) {\r\n if (options === void 0) { options = {}; }\r\n var _a = options.defaultProp, defaultProp = _a === void 0 ? 'children' : _a;\r\n var result = function (componentProps, userProps, defaultStyles) {\r\n // If they passed in raw JSX, just return that.\r\n if (react__WEBPACK_IMPORTED_MODULE_1__[\"isValidElement\"](userProps)) {\r\n return userProps;\r\n }\r\n // If we're rendering a function, let the user resolve how to render given the original component and final args.\r\n if (typeof userProps === 'function') {\r\n var render = function (slotRenderFunction, renderProps) {\r\n // TODO: _translateShorthand is returning TProps, so why is the finalProps cast required?\r\n // TS isn't respecting the difference between props arg type and return type and instead treating both as ISlotPropValue.\r\n var finalRenderProps = _translateShorthand(defaultProp, renderProps);\r\n finalRenderProps = _constructFinalProps(defaultStyles, componentProps, finalRenderProps);\r\n return slotRenderFunction(ComponentType, finalRenderProps);\r\n };\r\n return userProps(render);\r\n }\r\n userProps = _translateShorthand(defaultProp, userProps);\r\n // TODO: _translateShorthand is returning TProps, so why is the finalProps cast required?\r\n // TS isn't respecting the difference between props arg type and return type and instead treating both as ISlotPropValue.\r\n var finalProps = _constructFinalProps(defaultStyles, componentProps, userProps);\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](ComponentType, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, finalProps));\r\n };\r\n return result;\r\n}\r\n/**\r\n * Default factory for components without explicit factories.\r\n */\r\nvar defaultFactory = Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_3__[\"memoizeFunction\"])(function (type) { return createFactory(type); });\r\n/**\r\n * This function generates slots that can be used in JSX given a definition of slots and their corresponding types.\r\n * @param userProps Props as pass to component.\r\n * @param slots Slot definition object defining the default slot component for each slot.\r\n * @returns A set of created slots that components can render in JSX.\r\n */\r\nfunction getSlots(userProps, slots) {\r\n var result = {};\r\n // userProps already has default props mixed in by createComponent. Recast here to gain typing for this function.\r\n var mixedProps = userProps;\r\n var _loop_1 = function (name_1) {\r\n if (slots.hasOwnProperty(name_1)) {\r\n // This closure method requires the use of withSlots to prevent unnecessary rerenders. This is because React detects\r\n // each closure as a different component (since it is a new instance) from the previous one and then forces a rerender of the entire\r\n // slot subtree. For now, the only way to avoid this is to use withSlots, which bypasses the call to React.createElement.\r\n var slot = function (componentProps) {\r\n var args = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n args[_i - 1] = arguments[_i];\r\n }\r\n if (args.length > 0) {\r\n // If React.createElement is being incorrectly used with slots, there will be additional arguments.\r\n // We can detect these additional arguments and error on their presence.\r\n throw new Error('Any module using getSlots must use withSlots. Please see withSlots javadoc for more info.');\r\n }\r\n return _renderSlot(slots[name_1], \r\n // TODO: this cast to any is hiding a relationship issue between the first two args\r\n componentProps, mixedProps[name_1], \r\n // _defaultStyles should always be present, but a check for existence is added to make view tests easier to use.\r\n mixedProps._defaultStyles && mixedProps._defaultStyles[name_1]);\r\n };\r\n slot.isSlot = true;\r\n result[name_1] = slot;\r\n }\r\n };\r\n for (var name_1 in slots) {\r\n _loop_1(name_1);\r\n }\r\n return result;\r\n}\r\n/**\r\n * Helper function that constructs a props object when given shorthand props.\r\n */\r\nfunction _translateShorthand(defaultProp, props) {\r\n if (typeof props === 'string' || typeof props === 'number' || typeof props === 'boolean') {\r\n props = (_a = {},\r\n _a[defaultProp] = props,\r\n _a);\r\n }\r\n return props;\r\n var _a;\r\n}\r\n/**\r\n * Helper function that constructs final styles and props given a series of props ordered by increasing priority.\r\n */\r\nfunction _constructFinalProps(defaultStyles) {\r\n var allProps = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n allProps[_i - 1] = arguments[_i];\r\n }\r\n var finalProps = {};\r\n var classNames = [];\r\n for (var _a = 0, allProps_1 = allProps; _a < allProps_1.length; _a++) {\r\n var props = allProps_1[_a];\r\n classNames.push(props && props.className);\r\n _utilities__WEBPACK_IMPORTED_MODULE_4__[\"assign\"].apply(void 0, [finalProps].concat(props));\r\n }\r\n finalProps.className = Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_2__[\"mergeStyles\"])(defaultStyles, classNames);\r\n return finalProps;\r\n}\r\n/**\r\n * Render a slot given component and user props. Uses component factory if available, otherwise falls back\r\n * to default factory.\r\n * @param ComponentType Factory component type.\r\n * @param componentProps The properties passed into slot from within the component.\r\n * @param userProps The user properties passed in from outside of the component.\r\n */\r\nfunction _renderSlot(ComponentType, componentProps, userProps, defaultStyles) {\r\n if (ComponentType.create !== undefined) {\r\n return ComponentType.create(componentProps, userProps, defaultStyles);\r\n }\r\n else {\r\n return defaultFactory(ComponentType)(componentProps, userProps, defaultStyles);\r\n }\r\n}\r\n//# sourceMappingURL=slots.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/foundation/lib/slots.js?");
/***/ }),
/***/ "./node_modules/@uifabric/foundation/lib/utilities.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/foundation/lib/utilities.js ***!
\************************************************************/
/*! exports provided: assign */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assign\", function() { return assign; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\r\nvar assign = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"];\r\n//# sourceMappingURL=utilities.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/foundation/lib/utilities.js?");
/***/ }),
/***/ "./node_modules/@uifabric/foundation/lib/version.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/foundation/lib/version.js ***!
\**********************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/set-version */ \"./node_modules/@uifabric/set-version/lib/index.js\");\n// @uifabric/foundation@0.7.1\r\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\r\n\r\nObject(_uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/foundation', '0.7.1');\r\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/foundation/lib/version.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-0.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-0.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-0\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-0-498a310c.woff') format('woff')\"\r\n },\r\n icons: {\r\n InternetSharing: '\\uE704',\r\n Brightness: '\\uE706',\r\n MapPin: '\\uE707',\r\n Airplane: '\\uE709',\r\n Tablet: '\\uE70A',\r\n QuickNote: '\\uE70B',\r\n Video: '\\uE714',\r\n People: '\\uE716',\r\n Phone: '\\uE717',\r\n Pin: '\\uE718',\r\n Shop: '\\uE719',\r\n Stop: '\\uE71A',\r\n Link: '\\uE71B',\r\n AllApps: '\\uE71D',\r\n Zoom: '\\uE71E',\r\n ZoomOut: '\\uE71F',\r\n Microphone: '\\uE720',\r\n Camera: '\\uE722',\r\n Attach: '\\uE723',\r\n Send: '\\uE724',\r\n FavoriteList: '\\uE728',\r\n PageSolid: '\\uE729',\r\n Forward: '\\uE72A',\r\n Back: '\\uE72B',\r\n Refresh: '\\uE72C',\r\n Lock: '\\uE72E',\r\n ReportHacked: '\\uE730',\r\n EMI: '\\uE731',\r\n MiniLink: '\\uE732',\r\n Blocked: '\\uE733',\r\n ReadingMode: '\\uE736',\r\n Favicon: '\\uE737',\r\n Remove: '\\uE738',\r\n Checkbox: '\\uE739',\r\n CheckboxComposite: '\\uE73A',\r\n CheckboxFill: '\\uE73B',\r\n CheckboxIndeterminate: '\\uE73C',\r\n CheckboxCompositeReversed: '\\uE73D',\r\n BackToWindow: '\\uE73F',\r\n FullScreen: '\\uE740',\r\n Print: '\\uE749',\r\n Up: '\\uE74A',\r\n Down: '\\uE74B',\r\n OEM: '\\uE74C',\r\n Save: '\\uE74E',\r\n Cloud: '\\uE753',\r\n Flashlight: '\\uE754',\r\n CommandPrompt: '\\uE756',\r\n Sad: '\\uE757',\r\n RealEstate: '\\uE758',\r\n SIPMove: '\\uE759',\r\n EraseTool: '\\uE75C',\r\n GripperTool: '\\uE75E',\r\n Dialpad: '\\uE75F',\r\n PageLeft: '\\uE760',\r\n PageRight: '\\uE761',\r\n MultiSelect: '\\uE762',\r\n KeyboardClassic: '\\uE765',\r\n Play: '\\uE768',\r\n Pause: '\\uE769',\r\n Emoji2: '\\uE76E',\r\n GripperBarHorizontal: '\\uE76F',\r\n System: '\\uE770',\r\n Personalize: '\\uE771',\r\n SearchAndApps: '\\uE773',\r\n Globe: '\\uE774',\r\n EaseOfAccess: '\\uE776',\r\n ContactInfo: '\\uE779',\r\n Unpin: '\\uE77A',\r\n Contact: '\\uE77B',\r\n Memo: '\\uE77C',\r\n Paste: '\\uE77F',\r\n WindowsLogo: '\\uE782',\r\n Error: '\\uE783',\r\n GripperBarVertical: '\\uE784',\r\n Unlock: '\\uE785',\r\n Slideshow: '\\uE786',\r\n AutoEnhanceOn: '\\uE78D',\r\n AutoEnhanceOff: '\\uE78E',\r\n Color: '\\uE790',\r\n SaveAs: '\\uE792',\r\n Light: '\\uE793',\r\n Filters: '\\uE795',\r\n AspectRatio: '\\uE799',\r\n Contrast: '\\uE7A1',\r\n Redo: '\\uE7A6',\r\n Crop: '\\uE7A8',\r\n PhotoCollection: '\\uE7AA',\r\n Album: '\\uE7AB',\r\n Rotate: '\\uE7AD',\r\n PanoIndicator: '\\uE7B0',\r\n Translate: '\\uE7B2',\r\n RedEye: '\\uE7B3',\r\n ThumbnailView: '\\uE7B6',\r\n Package: '\\uE7B8',\r\n Telemarketer: '\\uE7B9',\r\n Warning: '\\uE7BA',\r\n Financial: '\\uE7BB',\r\n Education: '\\uE7BE',\r\n ShoppingCart: '\\uE7BF'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-0.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-0.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-1.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-1.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-1\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-1-0f021d71.woff') format('woff')\"\r\n },\r\n icons: {\r\n Train: '\\uE7C0',\r\n Move: '\\uE7C2',\r\n TouchPointer: '\\uE7C9',\r\n Merge: '\\uE7D5',\r\n TurnRight: '\\uE7DB',\r\n Ferry: '\\uE7E3',\r\n Highlight: '\\uE7E6',\r\n PowerButton: '\\uE7E8',\r\n Tab: '\\uE7E9',\r\n Admin: '\\uE7EF',\r\n TVMonitor: '\\uE7F4',\r\n Speakers: '\\uE7F5',\r\n Game: '\\uE7FC',\r\n UnstackSelected: '\\uE7FE',\r\n StackIndicator: '\\uE7FF',\r\n Nav2DMapView: '\\uE800',\r\n StreetsideSplitMinimize: '\\uE802',\r\n Car: '\\uE804',\r\n Bus: '\\uE806',\r\n EatDrink: '\\uE807',\r\n SeeDo: '\\uE808',\r\n LocationCircle: '\\uE80E',\r\n Home: '\\uE80F',\r\n SwitcherStartEnd: '\\uE810',\r\n ParkingLocation: '\\uE811',\r\n IncidentTriangle: '\\uE814',\r\n Touch: '\\uE815',\r\n MapDirections: '\\uE816',\r\n CaretHollow: '\\uE817',\r\n CaretSolid: '\\uE818',\r\n History: '\\uE81C',\r\n Location: '\\uE81D',\r\n MapLayers: '\\uE81E',\r\n SearchNearby: '\\uE820',\r\n Work: '\\uE821',\r\n Recent: '\\uE823',\r\n Hotel: '\\uE824',\r\n Bank: '\\uE825',\r\n LocationDot: '\\uE827',\r\n Dictionary: '\\uE82D',\r\n ChromeBack: '\\uE830',\r\n FolderOpen: '\\uE838',\r\n PinnedFill: '\\uE842',\r\n RevToggleKey: '\\uE845',\r\n Previous: '\\uE892',\r\n Next: '\\uE893',\r\n Sync: '\\uE895',\r\n Help: '\\uE897',\r\n Emoji: '\\uE899',\r\n MailForward: '\\uE89C',\r\n ClosePane: '\\uE89F',\r\n OpenPane: '\\uE8A0',\r\n PreviewLink: '\\uE8A1',\r\n ZoomIn: '\\uE8A3',\r\n Bookmarks: '\\uE8A4',\r\n Document: '\\uE8A5',\r\n ProtectedDocument: '\\uE8A6',\r\n OpenInNewWindow: '\\uE8A7',\r\n MailFill: '\\uE8A8',\r\n ViewAll: '\\uE8A9',\r\n Switch: '\\uE8AB',\r\n Rename: '\\uE8AC',\r\n Go: '\\uE8AD',\r\n Remote: '\\uE8AF',\r\n SelectAll: '\\uE8B3',\r\n Orientation: '\\uE8B4',\r\n Import: '\\uE8B5',\r\n Picture: '\\uE8B9',\r\n ChromeClose: '\\uE8BB',\r\n ShowResults: '\\uE8BC',\r\n Message: '\\uE8BD',\r\n CalendarDay: '\\uE8BF',\r\n CalendarWeek: '\\uE8C0',\r\n MailReplyAll: '\\uE8C2',\r\n Read: '\\uE8C3',\r\n Cut: '\\uE8C6',\r\n PaymentCard: '\\uE8C7',\r\n Copy: '\\uE8C8',\r\n Important: '\\uE8C9',\r\n MailReply: '\\uE8CA',\r\n GotoToday: '\\uE8D1',\r\n Font: '\\uE8D2',\r\n FontColor: '\\uE8D3',\r\n FolderFill: '\\uE8D5',\r\n Permissions: '\\uE8D7',\r\n DisableUpdates: '\\uE8D8',\r\n Unfavorite: '\\uE8D9',\r\n Italic: '\\uE8DB',\r\n Underline: '\\uE8DC',\r\n Bold: '\\uE8DD',\r\n MoveToFolder: '\\uE8DE',\r\n Dislike: '\\uE8E0',\r\n Like: '\\uE8E1',\r\n AlignCenter: '\\uE8E3',\r\n OpenFile: '\\uE8E5',\r\n FontDecrease: '\\uE8E7',\r\n FontIncrease: '\\uE8E8',\r\n FontSize: '\\uE8E9',\r\n CellPhone: '\\uE8EA',\r\n RepeatAll: '\\uE8EE'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-1.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-1.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-10.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-10.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-10\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-10-45ab7e58.woff') format('woff')\"\r\n },\r\n icons: {\r\n NewTeamProject: '\\uF2B2',\r\n CommentAdd: '\\uF2B3',\r\n CommentNext: '\\uF2B4',\r\n CommentPrevious: '\\uF2B5',\r\n ShopServer: '\\uF2B6',\r\n LocaleLanguage: '\\uF2B7',\r\n QueryList: '\\uF2B8',\r\n UserSync: '\\uF2B9',\r\n UserPause: '\\uF2BA',\r\n StreamingOff: '\\uF2BB',\r\n ArrowTallUpLeft: '\\uF2BD',\r\n ArrowTallUpRight: '\\uF2BE',\r\n ArrowTallDownLeft: '\\uF2BF',\r\n ArrowTallDownRight: '\\uF2C0',\r\n FieldEmpty: '\\uF2C1',\r\n FieldFilled: '\\uF2C2',\r\n FieldChanged: '\\uF2C3',\r\n FieldNotChanged: '\\uF2C4',\r\n RingerOff: '\\uF2C5',\r\n PlayResume: '\\uF2C6',\r\n BulletedList2: '\\uF2C7',\r\n BulletedList2Mirrored: '\\uF2C8',\r\n ImageCrosshair: '\\uF2C9',\r\n GitGraph: '\\uF2CA',\r\n Repo: '\\uF2CB',\r\n RepoSolid: '\\uF2CC',\r\n FolderQuery: '\\uF2CD',\r\n FolderList: '\\uF2CE',\r\n FolderListMirrored: '\\uF2CF',\r\n LocationOutline: '\\uF2D0',\r\n POISolid: '\\uF2D1',\r\n CalculatorNotEqualTo: '\\uF2D2',\r\n BoxSubtractSolid: '\\uF2D3',\r\n BoxAdditionSolid: '\\uF2D4',\r\n BoxMultiplySolid: '\\uF2D5',\r\n BoxPlaySolid: '\\uF2D6',\r\n BoxCheckmarkSolid: '\\uF2D7',\r\n CirclePauseSolid: '\\uF2D8',\r\n CirclePause: '\\uF2D9',\r\n MSNVideosSolid: '\\uF2DA',\r\n CircleStopSolid: '\\uF2DB',\r\n CircleStop: '\\uF2DC',\r\n NavigateBack: '\\uF2DD',\r\n NavigateBackMirrored: '\\uF2DE',\r\n NavigateForward: '\\uF2DF',\r\n NavigateForwardMirrored: '\\uF2E0',\r\n UnknownSolid: '\\uF2E1',\r\n UnknownMirroredSolid: '\\uF2E2',\r\n CircleAddition: '\\uF2E3',\r\n CircleAdditionSolid: '\\uF2E4',\r\n FilePDB: '\\uF2E5',\r\n FileTemplate: '\\uF2E6',\r\n FileSQL: '\\uF2E7',\r\n FileJAVA: '\\uF2E8',\r\n FileASPX: '\\uF2E9',\r\n FileCSS: '\\uF2EA',\r\n FileSass: '\\uF2EB',\r\n FileLess: '\\uF2EC',\r\n FileHTML: '\\uF2ED',\r\n JavaScriptLanguage: '\\uF2EE',\r\n CSharpLanguage: '\\uF2EF',\r\n CSharp: '\\uF2F0',\r\n VisualBasicLanguage: '\\uF2F1',\r\n VB: '\\uF2F2',\r\n CPlusPlusLanguage: '\\uF2F3',\r\n CPlusPlus: '\\uF2F4',\r\n FSharpLanguage: '\\uF2F5',\r\n FSharp: '\\uF2F6',\r\n TypeScriptLanguage: '\\uF2F7',\r\n PythonLanguage: '\\uF2F8',\r\n PY: '\\uF2F9',\r\n CoffeeScript: '\\uF2FA',\r\n MarkDownLanguage: '\\uF2FB',\r\n FullWidth: '\\uF2FE',\r\n FullWidthEdit: '\\uF2FF',\r\n Plug: '\\uF300',\r\n PlugSolid: '\\uF301',\r\n PlugConnected: '\\uF302',\r\n PlugDisconnected: '\\uF303',\r\n UnlockSolid: '\\uF304',\r\n Variable: '\\uF305',\r\n Parameter: '\\uF306',\r\n CommentUrgent: '\\uF307',\r\n Storyboard: '\\uF308',\r\n DiffInline: '\\uF309',\r\n DiffSideBySide: '\\uF30A',\r\n ImageDiff: '\\uF30B',\r\n ImagePixel: '\\uF30C',\r\n FileBug: '\\uF30D',\r\n FileCode: '\\uF30E',\r\n FileComment: '\\uF30F',\r\n BusinessHoursSign: '\\uF310',\r\n FileImage: '\\uF311',\r\n FileSymlink: '\\uF312',\r\n AutoFillTemplate: '\\uF313',\r\n WorkItem: '\\uF314',\r\n WorkItemBug: '\\uF315',\r\n LogRemove: '\\uF316',\r\n ColumnOptions: '\\uF317',\r\n Packages: '\\uF318'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-10.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-10.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-11.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-11.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-11\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-11-1821d7ea.woff') format('woff')\"\r\n },\r\n icons: {\r\n BuildIssue: '\\uF319',\r\n AssessmentGroup: '\\uF31A',\r\n VariableGroup: '\\uF31B',\r\n FullHistory: '\\uF31C',\r\n SingleColumnEdit: '\\uF321',\r\n DoubleColumnEdit: '\\uF322',\r\n TripleColumnEdit: '\\uF323',\r\n ColumnLeftTwoThirdsEdit: '\\uF324',\r\n ColumnRightTwoThirdsEdit: '\\uF325',\r\n StreamLogo: '\\uF329',\r\n PassiveAuthentication: '\\uF32A',\r\n AlertSolid: '\\uF331',\r\n MegaphoneSolid: '\\uF332',\r\n TaskSolid: '\\uF333',\r\n ConfigurationSolid: '\\uF334',\r\n BugSolid: '\\uF335',\r\n CrownSolid: '\\uF336',\r\n Trophy2Solid: '\\uF337',\r\n QuickNoteSolid: '\\uF338',\r\n ConstructionConeSolid: '\\uF339',\r\n PageListSolid: '\\uF33A',\r\n PageListMirroredSolid: '\\uF33B',\r\n StarburstSolid: '\\uF33C',\r\n ReadingModeSolid: '\\uF33D',\r\n SadSolid: '\\uF33E',\r\n HealthSolid: '\\uF33F',\r\n ShieldSolid: '\\uF340',\r\n GiftBoxSolid: '\\uF341',\r\n ShoppingCartSolid: '\\uF342',\r\n MailSolid: '\\uF343',\r\n ChatSolid: '\\uF344',\r\n RibbonSolid: '\\uF345',\r\n FinancialSolid: '\\uF346',\r\n FinancialMirroredSolid: '\\uF347',\r\n HeadsetSolid: '\\uF348',\r\n PermissionsSolid: '\\uF349',\r\n ParkingSolid: '\\uF34A',\r\n ParkingMirroredSolid: '\\uF34B',\r\n DiamondSolid: '\\uF34C',\r\n AsteriskSolid: '\\uF34D',\r\n OfflineStorageSolid: '\\uF34E',\r\n BankSolid: '\\uF34F',\r\n DecisionSolid: '\\uF350',\r\n Parachute: '\\uF351',\r\n ParachuteSolid: '\\uF352',\r\n FiltersSolid: '\\uF353',\r\n ColorSolid: '\\uF354',\r\n ReviewSolid: '\\uF355',\r\n ReviewRequestSolid: '\\uF356',\r\n ReviewRequestMirroredSolid: '\\uF357',\r\n ReviewResponseSolid: '\\uF358',\r\n FeedbackRequestSolid: '\\uF359',\r\n FeedbackRequestMirroredSolid: '\\uF35A',\r\n FeedbackResponseSolid: '\\uF35B',\r\n WorkItemBar: '\\uF35C',\r\n WorkItemBarSolid: '\\uF35D',\r\n Separator: '\\uF35E',\r\n NavigateExternalInline: '\\uF35F',\r\n PlanView: '\\uF360',\r\n TimelineMatrixView: '\\uF361',\r\n EngineeringGroup: '\\uF362',\r\n ProjectCollection: '\\uF363',\r\n CaretBottomRightCenter8: '\\uF364',\r\n CaretBottomLeftCenter8: '\\uF365',\r\n CaretTopRightCenter8: '\\uF366',\r\n CaretTopLeftCenter8: '\\uF367',\r\n DonutChart: '\\uF368',\r\n ChevronUnfold10: '\\uF369',\r\n ChevronFold10: '\\uF36A',\r\n DoubleChevronDown8: '\\uF36B',\r\n DoubleChevronUp8: '\\uF36C',\r\n DoubleChevronLeft8: '\\uF36D',\r\n DoubleChevronRight8: '\\uF36E',\r\n ChevronDownEnd6: '\\uF36F',\r\n ChevronUpEnd6: '\\uF370',\r\n ChevronLeftEnd6: '\\uF371',\r\n ChevronRightEnd6: '\\uF372',\r\n ContextMenu: '\\uF37C',\r\n AzureAPIManagement: '\\uF37F',\r\n AzureServiceEndpoint: '\\uF380',\r\n VSTSLogo: '\\uF381',\r\n VSTSAltLogo1: '\\uF382',\r\n VSTSAltLogo2: '\\uF383',\r\n FileTypeSolution: '\\uF387',\r\n WordLogoInverse16: '\\uF390',\r\n WordLogo16: '\\uF391',\r\n WordLogoFill16: '\\uF392',\r\n PowerPointLogoInverse16: '\\uF393',\r\n PowerPointLogo16: '\\uF394',\r\n PowerPointLogoFill16: '\\uF395',\r\n ExcelLogoInverse16: '\\uF396',\r\n ExcelLogo16: '\\uF397',\r\n ExcelLogoFill16: '\\uF398',\r\n OneNoteLogoInverse16: '\\uF399',\r\n OneNoteLogo16: '\\uF39A',\r\n OneNoteLogoFill16: '\\uF39B',\r\n OutlookLogoInverse16: '\\uF39C',\r\n OutlookLogo16: '\\uF39D',\r\n OutlookLogoFill16: '\\uF39E',\r\n PublisherLogoInverse16: '\\uF39F'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-11.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-11.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-12.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-12.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-12\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-12-2ceff391.woff') format('woff')\"\r\n },\r\n icons: {\r\n PublisherLogo16: '\\uF3A0',\r\n PublisherLogoFill16: '\\uF3A1',\r\n VisioLogoInverse16: '\\uF3A2',\r\n VisioLogo16: '\\uF3A3',\r\n VisioLogoFill16: '\\uF3A4',\r\n TestBeaker: '\\uF3A5',\r\n TestBeakerSolid: '\\uF3A6',\r\n TestExploreSolid: '\\uF3A7',\r\n TestAutoSolid: '\\uF3A8',\r\n TestUserSolid: '\\uF3A9',\r\n TestImpactSolid: '\\uF3AA',\r\n TestPlan: '\\uF3AB',\r\n TestStep: '\\uF3AC',\r\n TestParameter: '\\uF3AD',\r\n TestSuite: '\\uF3AE',\r\n TestCase: '\\uF3AF',\r\n Sprint: '\\uF3B0',\r\n SignOut: '\\uF3B1',\r\n TriggerApproval: '\\uF3B2',\r\n Rocket: '\\uF3B3',\r\n AzureKeyVault: '\\uF3B4',\r\n Onboarding: '\\uF3BA',\r\n Transition: '\\uF3BC',\r\n LikeSolid: '\\uF3BF',\r\n DislikeSolid: '\\uF3C0',\r\n CRMCustomerInsightsApp: '\\uF3C8',\r\n EditCreate: '\\uF3C9',\r\n UnSetColor: '\\uF3F9',\r\n DeclineCall: '\\uF405',\r\n RectangularClipping: '\\uF407',\r\n TeamsLogo16: '\\uF40A',\r\n TeamsLogoFill16: '\\uF40B',\r\n Spacer: '\\uF40D',\r\n SkypeLogo16: '\\uF40E',\r\n SkypeForBusinessLogo16: '\\uF40F',\r\n SkypeForBusinessLogoFill16: '\\uF410',\r\n FilterSolid: '\\uF412',\r\n MailUndelivered: '\\uF415',\r\n MailTentative: '\\uF416',\r\n MailTentativeMirrored: '\\uF417',\r\n MailReminder: '\\uF418',\r\n ReceiptUndelivered: '\\uF419',\r\n ReceiptTentative: '\\uF41A',\r\n ReceiptTentativeMirrored: '\\uF41B',\r\n Inbox: '\\uF41C',\r\n IRMReply: '\\uF41D',\r\n IRMReplyMirrored: '\\uF41E',\r\n IRMForward: '\\uF41F',\r\n IRMForwardMirrored: '\\uF420',\r\n VoicemailIRM: '\\uF421',\r\n EventAccepted: '\\uF422',\r\n EventTentative: '\\uF423',\r\n EventTentativeMirrored: '\\uF424',\r\n EventDeclined: '\\uF425',\r\n IDBadge: '\\uF427',\r\n BackgroundColor: '\\uF42B',\r\n OfficeFormsLogoInverse16: '\\uF433',\r\n OfficeFormsLogo: '\\uF434',\r\n OfficeFormsLogoFill: '\\uF435',\r\n OfficeFormsLogo16: '\\uF436',\r\n OfficeFormsLogoFill16: '\\uF437',\r\n OfficeFormsLogoInverse24: '\\uF43A',\r\n OfficeFormsLogo24: '\\uF43B',\r\n OfficeFormsLogoFill24: '\\uF43C',\r\n PageLock: '\\uF43F',\r\n NotExecuted: '\\uF440',\r\n NotImpactedSolid: '\\uF441',\r\n FieldReadOnly: '\\uF442',\r\n FieldRequired: '\\uF443',\r\n BacklogBoard: '\\uF444',\r\n ExternalBuild: '\\uF445',\r\n ExternalTFVC: '\\uF446',\r\n ExternalXAML: '\\uF447',\r\n IssueSolid: '\\uF448',\r\n DefectSolid: '\\uF449',\r\n LadybugSolid: '\\uF44A',\r\n NugetLogo: '\\uF44C',\r\n TFVCLogo: '\\uF44D',\r\n ProjectLogo32: '\\uF47E',\r\n ProjectLogoFill32: '\\uF47F',\r\n ProjectLogo16: '\\uF480',\r\n ProjectLogoFill16: '\\uF481',\r\n SwayLogo32: '\\uF482',\r\n SwayLogoFill32: '\\uF483',\r\n SwayLogo16: '\\uF484',\r\n SwayLogoFill16: '\\uF485',\r\n ClassNotebookLogo32: '\\uF486',\r\n ClassNotebookLogoFill32: '\\uF487',\r\n ClassNotebookLogo16: '\\uF488',\r\n ClassNotebookLogoFill16: '\\uF489',\r\n ClassNotebookLogoInverse32: '\\uF48A',\r\n ClassNotebookLogoInverse16: '\\uF48B',\r\n StaffNotebookLogo32: '\\uF48C',\r\n StaffNotebookLogoFill32: '\\uF48D',\r\n StaffNotebookLogo16: '\\uF48E',\r\n StaffNotebookLogoFill16: '\\uF48F',\r\n StaffNotebookLogoInverted32: '\\uF490',\r\n StaffNotebookLogoInverted16: '\\uF491',\r\n KaizalaLogo: '\\uF492',\r\n TaskLogo: '\\uF493'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-12.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-12.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-13.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-13.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-13\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-13-3151b011.woff') format('woff')\"\r\n },\r\n icons: {\r\n ProtectionCenterLogo32: '\\uF494',\r\n GallatinLogo: '\\uF496',\r\n Globe2: '\\uF49A',\r\n Guitar: '\\uF49B',\r\n Breakfast: '\\uF49C',\r\n Brunch: '\\uF49D',\r\n BeerMug: '\\uF49E',\r\n Vacation: '\\uF49F',\r\n Teeth: '\\uF4A0',\r\n Taxi: '\\uF4A1',\r\n Chopsticks: '\\uF4A2',\r\n SyncOccurence: '\\uF4A3',\r\n UnsyncOccurence: '\\uF4A4',\r\n PrimaryCalendar: '\\uF4AE',\r\n SearchCalendar: '\\uF4AF',\r\n VideoOff: '\\uF4B0',\r\n MicrosoftFlowLogo: '\\uF4B1',\r\n BusinessCenterLogo: '\\uF4B2',\r\n ToDoLogoBottom: '\\uF4B3',\r\n ToDoLogoTop: '\\uF4B4',\r\n EditSolid12: '\\uF4B5',\r\n EditSolidMirrored12: '\\uF4B6',\r\n UneditableSolid12: '\\uF4B7',\r\n UneditableSolidMirrored12: '\\uF4B8',\r\n UneditableMirrored: '\\uF4B9',\r\n AdminALogo32: '\\uF4BA',\r\n AdminALogoFill32: '\\uF4BB',\r\n ToDoLogoInverse: '\\uF4BC',\r\n Snooze: '\\uF4BD',\r\n WaffleOffice365: '\\uF4E0',\r\n ImageSearch: '\\uF4E8',\r\n NewsSearch: '\\uF4E9',\r\n VideoSearch: '\\uF4EA',\r\n R: '\\uF4EB',\r\n FontColorA: '\\uF4EC',\r\n FontColorSwatch: '\\uF4ED',\r\n LightWeight: '\\uF4EE',\r\n NormalWeight: '\\uF4EF',\r\n SemiboldWeight: '\\uF4F0',\r\n GroupObject: '\\uF4F1',\r\n UngroupObject: '\\uF4F2',\r\n AlignHorizontalLeft: '\\uF4F3',\r\n AlignHorizontalCenter: '\\uF4F4',\r\n AlignHorizontalRight: '\\uF4F5',\r\n AlignVerticalTop: '\\uF4F6',\r\n AlignVerticalCenter: '\\uF4F7',\r\n AlignVerticalBottom: '\\uF4F8',\r\n HorizontalDistributeCenter: '\\uF4F9',\r\n VerticalDistributeCenter: '\\uF4FA',\r\n Ellipse: '\\uF4FB',\r\n Line: '\\uF4FC',\r\n Octagon: '\\uF4FD',\r\n Hexagon: '\\uF4FE',\r\n Pentagon: '\\uF4FF',\r\n RightTriangle: '\\uF500',\r\n HalfCircle: '\\uF501',\r\n QuarterCircle: '\\uF502',\r\n ThreeQuarterCircle: '\\uF503',\r\n '6PointStar': '\\uF504',\r\n '12PointStar': '\\uF505',\r\n ArrangeBringToFront: '\\uF506',\r\n ArrangeSendToBack: '\\uF507',\r\n ArrangeSendBackward: '\\uF508',\r\n ArrangeBringForward: '\\uF509',\r\n BorderDash: '\\uF50A',\r\n BorderDot: '\\uF50B',\r\n LineStyle: '\\uF50C',\r\n LineThickness: '\\uF50D',\r\n WindowEdit: '\\uF50E',\r\n HintText: '\\uF50F',\r\n MediaAdd: '\\uF510',\r\n AnchorLock: '\\uF511',\r\n AutoHeight: '\\uF512',\r\n ChartSeries: '\\uF513',\r\n ChartXAngle: '\\uF514',\r\n ChartYAngle: '\\uF515',\r\n Combobox: '\\uF516',\r\n LineSpacing: '\\uF517',\r\n Padding: '\\uF518',\r\n PaddingTop: '\\uF519',\r\n PaddingBottom: '\\uF51A',\r\n PaddingLeft: '\\uF51B',\r\n PaddingRight: '\\uF51C',\r\n NavigationFlipper: '\\uF51D',\r\n AlignJustify: '\\uF51E',\r\n TextOverflow: '\\uF51F',\r\n VisualsFolder: '\\uF520',\r\n VisualsStore: '\\uF521',\r\n PictureCenter: '\\uF522',\r\n PictureFill: '\\uF523',\r\n PicturePosition: '\\uF524',\r\n PictureStretch: '\\uF525',\r\n PictureTile: '\\uF526',\r\n Slider: '\\uF527',\r\n SliderHandleSize: '\\uF528',\r\n DefaultRatio: '\\uF529',\r\n NumberSequence: '\\uF52A',\r\n GUID: '\\uF52B',\r\n ReportAdd: '\\uF52C',\r\n DashboardAdd: '\\uF52D'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-13.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-13.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-14.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-14.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-14\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-14-19b735bc.woff') format('woff')\"\r\n },\r\n icons: {\r\n MapPinSolid: '\\uF52E',\r\n WebPublish: '\\uF52F',\r\n PieSingleSolid: '\\uF530',\r\n BlockedSolid: '\\uF531',\r\n DrillDown: '\\uF532',\r\n DrillDownSolid: '\\uF533',\r\n DrillExpand: '\\uF534',\r\n DrillShow: '\\uF535',\r\n SpecialEvent: '\\uF536',\r\n OneDriveFolder16: '\\uF53B',\r\n FunctionalManagerDashboard: '\\uF542',\r\n BIDashboard: '\\uF543',\r\n CodeEdit: '\\uF544',\r\n RenewalCurrent: '\\uF545',\r\n RenewalFuture: '\\uF546',\r\n SplitObject: '\\uF547',\r\n BulkUpload: '\\uF548',\r\n DownloadDocument: '\\uF549',\r\n Flower: '\\uF54E',\r\n WaitlistConfirm: '\\uF550',\r\n WaitlistConfirmMirrored: '\\uF551',\r\n LaptopSecure: '\\uF552',\r\n DragObject: '\\uF553',\r\n EntryView: '\\uF554',\r\n EntryDecline: '\\uF555',\r\n ContactCardSettings: '\\uF556',\r\n ContactCardSettingsMirrored: '\\uF557',\r\n CalendarSettings: '\\uF558',\r\n CalendarSettingsMirrored: '\\uF559',\r\n HardDriveLock: '\\uF55A',\r\n HardDriveUnlock: '\\uF55B',\r\n AccountManagement: '\\uF55C',\r\n TransitionPop: '\\uF5B2',\r\n TransitionPush: '\\uF5B3',\r\n TransitionEffect: '\\uF5B4',\r\n LookupEntities: '\\uF5B5',\r\n ExploreData: '\\uF5B6',\r\n AddBookmark: '\\uF5B7',\r\n SearchBookmark: '\\uF5B8',\r\n DrillThrough: '\\uF5B9',\r\n MasterDatabase: '\\uF5BA',\r\n CertifiedDatabase: '\\uF5BB',\r\n MaximumValue: '\\uF5BC',\r\n MinimumValue: '\\uF5BD',\r\n VisualStudioIDELogo32: '\\uF5D0',\r\n PasteAsText: '\\uF5D5',\r\n PasteAsCode: '\\uF5D6',\r\n BrowserTab: '\\uF5D7',\r\n BrowserTabScreenshot: '\\uF5D8',\r\n DesktopScreenshot: '\\uF5D9',\r\n FileYML: '\\uF5DA',\r\n ClipboardSolid: '\\uF5DC',\r\n FabricUserFolder: '\\uF5E5',\r\n FabricNetworkFolder: '\\uF5E6',\r\n AnalyticsView: '\\uF5F1',\r\n Video360Generic: '\\uF609',\r\n Leave: '\\uF627',\r\n Trending12: '\\uF62D',\r\n Blocked12: '\\uF62E',\r\n Warning12: '\\uF62F',\r\n CheckedOutByOther12: '\\uF630',\r\n CheckedOutByYou12: '\\uF631',\r\n CircleShapeSolid: '\\uF63C',\r\n SquareShapeSolid: '\\uF63D',\r\n TriangleShapeSolid: '\\uF63E',\r\n DropShapeSolid: '\\uF63F',\r\n RectangleShapeSolid: '\\uF640',\r\n ZoomToFit: '\\uF649',\r\n InsertColumnsLeft: '\\uF64A',\r\n InsertColumnsRight: '\\uF64B',\r\n InsertRowsAbove: '\\uF64C',\r\n InsertRowsBelow: '\\uF64D',\r\n DeleteColumns: '\\uF64E',\r\n DeleteRows: '\\uF64F',\r\n DeleteRowsMirrored: '\\uF650',\r\n DeleteTable: '\\uF651',\r\n VersionControlPush: '\\uF664',\r\n StackedColumnChart2: '\\uF666',\r\n TripleColumnWide: '\\uF66E',\r\n QuadColumn: '\\uF66F',\r\n WhiteBoardApp16: '\\uF673',\r\n WhiteBoardApp32: '\\uF674',\r\n InsertSignatureLine: '\\uF677',\r\n ArrangeByFrom: '\\uF678',\r\n Phishing: '\\uF679',\r\n CreateMailRule: '\\uF67A',\r\n PublishCourse: '\\uF699',\r\n DictionaryRemove: '\\uF69A',\r\n UserRemove: '\\uF69B',\r\n UserEvent: '\\uF69C',\r\n Encryption: '\\uF69D',\r\n D365TalentLearn: '\\uF6BB',\r\n D365TalentInsight: '\\uF6BC',\r\n D365TalentHRCore: '\\uF6BD',\r\n BacklogList: '\\uF6BF',\r\n ButtonControl: '\\uF6C0',\r\n TableGroup: '\\uF6D9',\r\n MountainClimbing: '\\uF6DB',\r\n TagUnknown: '\\uF6DF',\r\n TagUnknownMirror: '\\uF6E0'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-14.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-14.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-15.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-15.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-15\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-15-2f8b45d0.woff') format('woff')\"\r\n },\r\n icons: {\r\n TagUnknown12: '\\uF6E1',\r\n TagUnknown12Mirror: '\\uF6E2',\r\n Link12: '\\uF6E3',\r\n Presentation: '\\uF6E4',\r\n Presentation12: '\\uF6E5',\r\n Lock12: '\\uF6E6',\r\n BuildDefinition: '\\uF6E9',\r\n ReleaseDefinition: '\\uF6EA',\r\n SaveTemplate: '\\uF6EC',\r\n UserGauge: '\\uF6ED',\r\n BlockedSiteSolid12: '\\uF70A',\r\n TagSolid: '\\uF70E',\r\n OfficeChat: '\\uF70F',\r\n OfficeChatSolid: '\\uF710',\r\n MailSchedule: '\\uF72E',\r\n WarningSolid: '\\uF736',\r\n Blocked2Solid: '\\uF737',\r\n SkypeCircleArrow: '\\uF747',\r\n SkypeArrow: '\\uF748',\r\n SyncStatus: '\\uF751',\r\n SyncStatusSolid: '\\uF752',\r\n ProjectDocument: '\\uF759',\r\n ToDoLogoOutline: '\\uF75B',\r\n VisioOnlineLogoFill32: '\\uF75F',\r\n VisioOnlineLogo32: '\\uF760',\r\n VisioOnlineLogoCloud32: '\\uF761',\r\n VisioDiagramSync: '\\uF762',\r\n Event12: '\\uF763',\r\n EventDateMissed12: '\\uF764',\r\n UserOptional: '\\uF767',\r\n ResponsesMenu: '\\uF768',\r\n DoubleDownArrow: '\\uF769',\r\n DistributeDown: '\\uF76A',\r\n BookmarkReport: '\\uF76B',\r\n FilterSettings: '\\uF76C',\r\n GripperDotsVertical: '\\uF772',\r\n MailAttached: '\\uF774',\r\n AddIn: '\\uF775',\r\n LinkedDatabase: '\\uF779',\r\n PromotedDatabase: '\\uF77D',\r\n BarChartVerticalFilter: '\\uF77E',\r\n BarChartVerticalFilterSolid: '\\uF77F',\r\n ShowTimeAs: '\\uF787',\r\n FileRequest: '\\uF789',\r\n WorkItemAlert: '\\uF78F',\r\n PowerBILogo16: '\\uF790',\r\n PowerBILogoBackplate16: '\\uF791',\r\n BulletedListText: '\\uF792',\r\n BulletedListBullet: '\\uF793',\r\n BulletedListTextMirrored: '\\uF794',\r\n BulletedListBulletMirrored: '\\uF795',\r\n NumberedListText: '\\uF796',\r\n NumberedListNumber: '\\uF797',\r\n NumberedListTextMirrored: '\\uF798',\r\n NumberedListNumberMirrored: '\\uF799',\r\n RemoveLinkChain: '\\uF79A',\r\n RemoveLinkX: '\\uF79B',\r\n FabricTextHighlight: '\\uF79C',\r\n ClearFormattingA: '\\uF79D',\r\n ClearFormattingEraser: '\\uF79E',\r\n Photo2Fill: '\\uF79F',\r\n IncreaseIndentText: '\\uF7A0',\r\n IncreaseIndentArrow: '\\uF7A1',\r\n DecreaseIndentText: '\\uF7A2',\r\n DecreaseIndentArrow: '\\uF7A3',\r\n IncreaseIndentTextMirrored: '\\uF7A4',\r\n IncreaseIndentArrowMirrored: '\\uF7A5',\r\n DecreaseIndentTextMirrored: '\\uF7A6',\r\n DecreaseIndentArrowMirrored: '\\uF7A7',\r\n CheckListText: '\\uF7A8',\r\n CheckListCheck: '\\uF7A9',\r\n CheckListTextMirrored: '\\uF7AA',\r\n CheckListCheckMirrored: '\\uF7AB',\r\n NumberSymbol: '\\uF7AC',\r\n Coupon: '\\uF7BC',\r\n VerifiedBrand: '\\uF7BD',\r\n ReleaseGate: '\\uF7BE',\r\n ReleaseGateCheck: '\\uF7BF',\r\n ReleaseGateError: '\\uF7C0',\r\n M365InvoicingLogo: '\\uF7C1',\r\n FabricTextHighlightComposite: '\\uF7DA',\r\n Dataflows: '\\uF7DD',\r\n GenericScanFilled: '\\uF7DE',\r\n DiagnosticDataBarTooltip: '\\uF7DF',\r\n SaveToMobile: '\\uF7E0',\r\n Orientation2: '\\uF7E1',\r\n ScreenCast: '\\uF7E2',\r\n ShowGrid: '\\uF7E3',\r\n SnapToGrid: '\\uF7E4',\r\n ContactList: '\\uF7E5',\r\n NewMail: '\\uF7EA',\r\n EyeShadow: '\\uF7EB',\r\n CampaignTemplate: '\\uF811',\r\n ChartTemplate: '\\uF812',\r\n PageListFilter: '\\uF813',\r\n SecondaryNav: '\\uF814',\r\n ColumnVerticalSection: '\\uF81E',\r\n SkypeCircleSlash: '\\uF825',\r\n SkypeSlash: '\\uF826',\r\n CustomizeToolbar: '\\uF828'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-15.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-15.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-16.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-16.js ***!
\*************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-16\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-16-7ed535b6.woff') format('woff')\"\r\n },\r\n icons: {\r\n DuplicateRow: '\\uF82A',\r\n RemoveFromTrash: '\\uF82B',\r\n MailOptions: '\\uF82C',\r\n Childof: '\\uF82D',\r\n Footer: '\\uF82E',\r\n Header: '\\uF82F',\r\n BarChartVerticalFill: '\\uF830',\r\n StackedColumnChart2Fill: '\\uF831',\r\n PlainText: '\\uF834',\r\n AccessibiltyChecker: '\\uF835',\r\n DatabaseSync: '\\uF842',\r\n TabOneColumn: '\\uF849',\r\n TabTwoColumn: '\\uF84A',\r\n TabThreeColumn: '\\uF84B',\r\n DecreaseIndentLegacy: '\\uE290',\r\n IncreaseIndentLegacy: '\\uE291',\r\n SizeLegacy: '\\uE2B2'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-16.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-16.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-2.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-2.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-2\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-2-be6a5f70.woff') format('woff')\"\r\n },\r\n icons: {\r\n Calculator: '\\uE8EF',\r\n Library: '\\uE8F1',\r\n PostUpdate: '\\uE8F3',\r\n NewFolder: '\\uE8F4',\r\n CalendarReply: '\\uE8F5',\r\n UnsyncFolder: '\\uE8F6',\r\n SyncFolder: '\\uE8F7',\r\n BlockContact: '\\uE8F8',\r\n Accept: '\\uE8FB',\r\n BulletedList: '\\uE8FD',\r\n Preview: '\\uE8FF',\r\n News: '\\uE900',\r\n Chat: '\\uE901',\r\n Group: '\\uE902',\r\n World: '\\uE909',\r\n Comment: '\\uE90A',\r\n DockLeft: '\\uE90C',\r\n DockRight: '\\uE90D',\r\n Repair: '\\uE90F',\r\n Accounts: '\\uE910',\r\n Street: '\\uE913',\r\n RadioBullet: '\\uE915',\r\n Stopwatch: '\\uE916',\r\n Clock: '\\uE917',\r\n WorldClock: '\\uE918',\r\n AlarmClock: '\\uE919',\r\n Photo: '\\uE91B',\r\n ActionCenter: '\\uE91C',\r\n Hospital: '\\uE91D',\r\n Timer: '\\uE91E',\r\n FullCircleMask: '\\uE91F',\r\n LocationFill: '\\uE920',\r\n ChromeMinimize: '\\uE921',\r\n ChromeRestore: '\\uE923',\r\n Annotation: '\\uE924',\r\n Fingerprint: '\\uE928',\r\n Handwriting: '\\uE929',\r\n ChromeFullScreen: '\\uE92D',\r\n Completed: '\\uE930',\r\n Label: '\\uE932',\r\n FlickDown: '\\uE935',\r\n FlickUp: '\\uE936',\r\n FlickLeft: '\\uE937',\r\n FlickRight: '\\uE938',\r\n MiniExpand: '\\uE93A',\r\n MiniContract: '\\uE93B',\r\n Streaming: '\\uE93E',\r\n MusicInCollection: '\\uE940',\r\n OneDriveLogo: '\\uE941',\r\n CompassNW: '\\uE942',\r\n Code: '\\uE943',\r\n LightningBolt: '\\uE945',\r\n CalculatorMultiply: '\\uE947',\r\n CalculatorAddition: '\\uE948',\r\n CalculatorSubtract: '\\uE949',\r\n CalculatorEqualTo: '\\uE94E',\r\n PrintfaxPrinterFile: '\\uE956',\r\n StorageOptical: '\\uE958',\r\n Communications: '\\uE95A',\r\n Headset: '\\uE95B',\r\n Health: '\\uE95E',\r\n FrontCamera: '\\uE96B',\r\n ChevronUpSmall: '\\uE96D',\r\n ChevronDownSmall: '\\uE96E',\r\n ChevronLeftSmall: '\\uE96F',\r\n ChevronRightSmall: '\\uE970',\r\n ChevronUpMed: '\\uE971',\r\n ChevronDownMed: '\\uE972',\r\n ChevronLeftMed: '\\uE973',\r\n ChevronRightMed: '\\uE974',\r\n Devices2: '\\uE975',\r\n PC1: '\\uE977',\r\n PresenceChickletVideo: '\\uE979',\r\n Reply: '\\uE97A',\r\n HalfAlpha: '\\uE97E',\r\n ConstructionCone: '\\uE98F',\r\n DoubleChevronLeftMed: '\\uE991',\r\n Volume0: '\\uE992',\r\n Volume1: '\\uE993',\r\n Volume2: '\\uE994',\r\n Volume3: '\\uE995',\r\n Chart: '\\uE999',\r\n Robot: '\\uE99A',\r\n Manufacturing: '\\uE99C',\r\n LockSolid: '\\uE9A2',\r\n FitPage: '\\uE9A6',\r\n FitWidth: '\\uE9A7',\r\n BidiLtr: '\\uE9AA',\r\n BidiRtl: '\\uE9AB',\r\n RightDoubleQuote: '\\uE9B1',\r\n Sunny: '\\uE9BD',\r\n CloudWeather: '\\uE9BE',\r\n Cloudy: '\\uE9BF',\r\n PartlyCloudyDay: '\\uE9C0',\r\n PartlyCloudyNight: '\\uE9C1',\r\n ClearNight: '\\uE9C2',\r\n RainShowersDay: '\\uE9C3',\r\n Rain: '\\uE9C4',\r\n Thunderstorms: '\\uE9C6',\r\n RainSnow: '\\uE9C7'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-2.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-2.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-3.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-3.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-3\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-3-ccddc9e1.woff') format('woff')\"\r\n },\r\n icons: {\r\n Snow: '\\uE9C8',\r\n BlowingSnow: '\\uE9C9',\r\n Frigid: '\\uE9CA',\r\n Fog: '\\uE9CB',\r\n Squalls: '\\uE9CC',\r\n Duststorm: '\\uE9CD',\r\n Unknown: '\\uE9CE',\r\n Precipitation: '\\uE9CF',\r\n Ribbon: '\\uE9D1',\r\n AreaChart: '\\uE9D2',\r\n Assign: '\\uE9D3',\r\n FlowChart: '\\uE9D4',\r\n CheckList: '\\uE9D5',\r\n Diagnostic: '\\uE9D9',\r\n Generate: '\\uE9DA',\r\n LineChart: '\\uE9E6',\r\n Equalizer: '\\uE9E9',\r\n BarChartHorizontal: '\\uE9EB',\r\n BarChartVertical: '\\uE9EC',\r\n Freezing: '\\uE9EF',\r\n FunnelChart: '\\uE9F1',\r\n Processing: '\\uE9F5',\r\n Quantity: '\\uE9F8',\r\n ReportDocument: '\\uE9F9',\r\n StackColumnChart: '\\uE9FC',\r\n SnowShowerDay: '\\uE9FD',\r\n HailDay: '\\uEA00',\r\n WorkFlow: '\\uEA01',\r\n HourGlass: '\\uEA03',\r\n StoreLogoMed20: '\\uEA04',\r\n TimeSheet: '\\uEA05',\r\n TriangleSolid: '\\uEA08',\r\n UpgradeAnalysis: '\\uEA0B',\r\n VideoSolid: '\\uEA0C',\r\n RainShowersNight: '\\uEA0F',\r\n SnowShowerNight: '\\uEA11',\r\n Teamwork: '\\uEA12',\r\n HailNight: '\\uEA13',\r\n PeopleAdd: '\\uEA15',\r\n Glasses: '\\uEA16',\r\n DateTime2: '\\uEA17',\r\n Shield: '\\uEA18',\r\n Header1: '\\uEA19',\r\n PageAdd: '\\uEA1A',\r\n NumberedList: '\\uEA1C',\r\n PowerBILogo: '\\uEA1E',\r\n Info2: '\\uEA1F',\r\n MusicInCollectionFill: '\\uEA36',\r\n Asterisk: '\\uEA38',\r\n ErrorBadge: '\\uEA39',\r\n CircleFill: '\\uEA3B',\r\n Record2: '\\uEA3F',\r\n AllAppsMirrored: '\\uEA40',\r\n BookmarksMirrored: '\\uEA41',\r\n BulletedListMirrored: '\\uEA42',\r\n CaretHollowMirrored: '\\uEA45',\r\n CaretSolidMirrored: '\\uEA46',\r\n ChromeBackMirrored: '\\uEA47',\r\n ClosePaneMirrored: '\\uEA49',\r\n DockLeftMirrored: '\\uEA4C',\r\n DoubleChevronLeftMedMirrored: '\\uEA4D',\r\n GoMirrored: '\\uEA4F',\r\n HelpMirrored: '\\uEA51',\r\n ImportMirrored: '\\uEA52',\r\n ImportAllMirrored: '\\uEA53',\r\n ListMirrored: '\\uEA55',\r\n MailForwardMirrored: '\\uEA56',\r\n MailReplyMirrored: '\\uEA57',\r\n MailReplyAllMirrored: '\\uEA58',\r\n MiniContractMirrored: '\\uEA59',\r\n MiniExpandMirrored: '\\uEA5A',\r\n OpenPaneMirrored: '\\uEA5B',\r\n ParkingLocationMirrored: '\\uEA5E',\r\n SendMirrored: '\\uEA63',\r\n ShowResultsMirrored: '\\uEA65',\r\n ThumbnailViewMirrored: '\\uEA67',\r\n Media: '\\uEA69',\r\n Devices3: '\\uEA6C',\r\n Focus: '\\uEA6F',\r\n VideoLightOff: '\\uEA74',\r\n Lightbulb: '\\uEA80',\r\n StatusTriangle: '\\uEA82',\r\n VolumeDisabled: '\\uEA85',\r\n Puzzle: '\\uEA86',\r\n EmojiNeutral: '\\uEA87',\r\n EmojiDisappointed: '\\uEA88',\r\n HomeSolid: '\\uEA8A',\r\n Ringer: '\\uEA8F',\r\n PDF: '\\uEA90',\r\n HeartBroken: '\\uEA92',\r\n StoreLogo16: '\\uEA96',\r\n MultiSelectMirrored: '\\uEA98',\r\n Broom: '\\uEA99',\r\n Cocktails: '\\uEA9D',\r\n Wines: '\\uEABF',\r\n Articles: '\\uEAC1',\r\n Cycling: '\\uEAC7',\r\n DietPlanNotebook: '\\uEAC8',\r\n Pill: '\\uEACB',\r\n ExerciseTracker: '\\uEACC'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-3.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-3.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-4.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-4.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-4\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-4-0721c5c2.woff') format('woff')\"\r\n },\r\n icons: {\r\n HandsFree: '\\uEAD0',\r\n Medical: '\\uEAD4',\r\n Running: '\\uEADA',\r\n Weights: '\\uEADB',\r\n Trackers: '\\uEADF',\r\n AddNotes: '\\uEAE3',\r\n AllCurrency: '\\uEAE4',\r\n BarChart4: '\\uEAE7',\r\n CirclePlus: '\\uEAEE',\r\n Coffee: '\\uEAEF',\r\n Cotton: '\\uEAF3',\r\n Market: '\\uEAFC',\r\n Money: '\\uEAFD',\r\n PieDouble: '\\uEB04',\r\n PieSingle: '\\uEB05',\r\n RemoveFilter: '\\uEB08',\r\n Savings: '\\uEB0B',\r\n Sell: '\\uEB0C',\r\n StockDown: '\\uEB0F',\r\n StockUp: '\\uEB11',\r\n Lamp: '\\uEB19',\r\n Source: '\\uEB1B',\r\n MSNVideos: '\\uEB1C',\r\n Cricket: '\\uEB1E',\r\n Golf: '\\uEB1F',\r\n Baseball: '\\uEB20',\r\n Soccer: '\\uEB21',\r\n MoreSports: '\\uEB22',\r\n AutoRacing: '\\uEB24',\r\n CollegeHoops: '\\uEB25',\r\n CollegeFootball: '\\uEB26',\r\n ProFootball: '\\uEB27',\r\n ProHockey: '\\uEB28',\r\n Rugby: '\\uEB2D',\r\n SubstitutionsIn: '\\uEB31',\r\n Tennis: '\\uEB33',\r\n Arrivals: '\\uEB34',\r\n Design: '\\uEB3C',\r\n Website: '\\uEB41',\r\n Drop: '\\uEB42',\r\n HistoricalWeather: '\\uEB43',\r\n SkiResorts: '\\uEB45',\r\n Snowflake: '\\uEB46',\r\n BusSolid: '\\uEB47',\r\n FerrySolid: '\\uEB48',\r\n AirplaneSolid: '\\uEB4C',\r\n TrainSolid: '\\uEB4D',\r\n Ticket: '\\uEB54',\r\n WifiWarning4: '\\uEB63',\r\n Devices4: '\\uEB66',\r\n AzureLogo: '\\uEB6A',\r\n BingLogo: '\\uEB6B',\r\n MSNLogo: '\\uEB6C',\r\n OutlookLogoInverse: '\\uEB6D',\r\n OfficeLogo: '\\uEB6E',\r\n SkypeLogo: '\\uEB6F',\r\n Door: '\\uEB75',\r\n EditMirrored: '\\uEB7E',\r\n GiftCard: '\\uEB8E',\r\n DoubleBookmark: '\\uEB8F',\r\n StatusErrorFull: '\\uEB90',\r\n Certificate: '\\uEB95',\r\n FastForward: '\\uEB9D',\r\n Rewind: '\\uEB9E',\r\n Photo2: '\\uEB9F',\r\n OpenSource: '\\uEBC2',\r\n Movers: '\\uEBCD',\r\n CloudDownload: '\\uEBD3',\r\n Family: '\\uEBDA',\r\n WindDirection: '\\uEBE6',\r\n Bug: '\\uEBE8',\r\n SiteScan: '\\uEBEC',\r\n BrowserScreenShot: '\\uEBED',\r\n F12DevTools: '\\uEBEE',\r\n CSS: '\\uEBEF',\r\n JS: '\\uEBF0',\r\n DeliveryTruck: '\\uEBF4',\r\n ReminderPerson: '\\uEBF7',\r\n ReminderGroup: '\\uEBF8',\r\n TabletMode: '\\uEBFC',\r\n Umbrella: '\\uEC04',\r\n NetworkTower: '\\uEC05',\r\n CityNext: '\\uEC06',\r\n CityNext2: '\\uEC07',\r\n Section: '\\uEC0C',\r\n OneNoteLogoInverse: '\\uEC0D',\r\n ToggleFilled: '\\uEC11',\r\n ToggleBorder: '\\uEC12',\r\n SliderThumb: '\\uEC13',\r\n ToggleThumb: '\\uEC14',\r\n Documentation: '\\uEC17',\r\n Badge: '\\uEC1B',\r\n Giftbox: '\\uEC1F',\r\n VisualStudioLogo: '\\uEC22',\r\n HomeGroup: '\\uEC26',\r\n ExcelLogoInverse: '\\uEC28',\r\n WordLogoInverse: '\\uEC29',\r\n PowerPointLogoInverse: '\\uEC2A',\r\n Cafe: '\\uEC32',\r\n SpeedHigh: '\\uEC4A'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-4.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-4.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-5.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-5.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-5\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-5-fca90b7d.woff') format('woff')\"\r\n },\r\n icons: {\r\n Commitments: '\\uEC4D',\r\n ThisPC: '\\uEC4E',\r\n MusicNote: '\\uEC4F',\r\n MicOff: '\\uEC54',\r\n EdgeLogo: '\\uEC60',\r\n CompletedSolid: '\\uEC61',\r\n AlbumRemove: '\\uEC62',\r\n MessageFill: '\\uEC70',\r\n TabletSelected: '\\uEC74',\r\n MobileSelected: '\\uEC75',\r\n LaptopSelected: '\\uEC76',\r\n TVMonitorSelected: '\\uEC77',\r\n DeveloperTools: '\\uEC7A',\r\n Shapes: '\\uEC7C',\r\n InsertTextBox: '\\uEC7D',\r\n LowerBrightness: '\\uEC8A',\r\n WebComponents: '\\uEC8B',\r\n OfflineStorage: '\\uEC8C',\r\n DOM: '\\uEC8D',\r\n CloudUpload: '\\uEC8E',\r\n ScrollUpDown: '\\uEC8F',\r\n DateTime: '\\uEC92',\r\n Event: '\\uECA3',\r\n Cake: '\\uECA4',\r\n Org: '\\uECA6',\r\n PartyLeader: '\\uECA7',\r\n DRM: '\\uECA8',\r\n CloudAdd: '\\uECA9',\r\n AppIconDefault: '\\uECAA',\r\n Photo2Add: '\\uECAB',\r\n Photo2Remove: '\\uECAC',\r\n POI: '\\uECAF',\r\n AddTo: '\\uECC8',\r\n RadioBtnOff: '\\uECCA',\r\n RadioBtnOn: '\\uECCB',\r\n ExploreContent: '\\uECCD',\r\n Product: '\\uECDC',\r\n ProgressLoopInner: '\\uECDE',\r\n ProgressLoopOuter: '\\uECDF',\r\n Blocked2: '\\uECE4',\r\n FangBody: '\\uECEB',\r\n PageHeader: '\\uECEE',\r\n ChatInviteFriend: '\\uECFE',\r\n Brush: '\\uECFF',\r\n Shirt: '\\uED00',\r\n Crown: '\\uED01',\r\n Diamond: '\\uED02',\r\n ScaleUp: '\\uED09',\r\n QRCode: '\\uED14',\r\n Feedback: '\\uED15',\r\n SharepointLogoInverse: '\\uED18',\r\n YammerLogo: '\\uED19',\r\n Hide: '\\uED1A',\r\n Uneditable: '\\uED1D',\r\n ReturnToSession: '\\uED24',\r\n OpenFolderHorizontal: '\\uED25',\r\n CalendarMirrored: '\\uED28',\r\n SwayLogoInverse: '\\uED29',\r\n OutOfOffice: '\\uED34',\r\n Trophy: '\\uED3F',\r\n ReopenPages: '\\uED50',\r\n EmojiTabSymbols: '\\uED58',\r\n AADLogo: '\\uED68',\r\n AccessLogo: '\\uED69',\r\n AdminALogoInverse32: '\\uED6A',\r\n AdminCLogoInverse32: '\\uED6B',\r\n AdminDLogoInverse32: '\\uED6C',\r\n AdminELogoInverse32: '\\uED6D',\r\n AdminLLogoInverse32: '\\uED6E',\r\n AdminMLogoInverse32: '\\uED6F',\r\n AdminOLogoInverse32: '\\uED70',\r\n AdminPLogoInverse32: '\\uED71',\r\n AdminSLogoInverse32: '\\uED72',\r\n AdminYLogoInverse32: '\\uED73',\r\n DelveLogoInverse: '\\uED76',\r\n ExchangeLogoInverse: '\\uED78',\r\n LyncLogo: '\\uED79',\r\n OfficeVideoLogoInverse: '\\uED7A',\r\n SocialListeningLogo: '\\uED7C',\r\n VisioLogoInverse: '\\uED7D',\r\n Balloons: '\\uED7E',\r\n Cat: '\\uED7F',\r\n MailAlert: '\\uED80',\r\n MailCheck: '\\uED81',\r\n MailLowImportance: '\\uED82',\r\n MailPause: '\\uED83',\r\n MailRepeat: '\\uED84',\r\n SecurityGroup: '\\uED85',\r\n Table: '\\uED86',\r\n VoicemailForward: '\\uED87',\r\n VoicemailReply: '\\uED88',\r\n Waffle: '\\uED89',\r\n RemoveEvent: '\\uED8A',\r\n EventInfo: '\\uED8B',\r\n ForwardEvent: '\\uED8C',\r\n WipePhone: '\\uED8D',\r\n AddOnlineMeeting: '\\uED8E',\r\n JoinOnlineMeeting: '\\uED8F',\r\n RemoveLink: '\\uED90',\r\n PeopleBlock: '\\uED91'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-5.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-5.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-6.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-6.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-6\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-6-957ed700.woff') format('woff')\"\r\n },\r\n icons: {\r\n PeopleRepeat: '\\uED92',\r\n PeopleAlert: '\\uED93',\r\n PeoplePause: '\\uED94',\r\n TransferCall: '\\uED95',\r\n AddPhone: '\\uED96',\r\n UnknownCall: '\\uED97',\r\n NoteReply: '\\uED98',\r\n NoteForward: '\\uED99',\r\n NotePinned: '\\uED9A',\r\n RemoveOccurrence: '\\uED9B',\r\n Timeline: '\\uED9C',\r\n EditNote: '\\uED9D',\r\n CircleHalfFull: '\\uED9E',\r\n Room: '\\uED9F',\r\n Unsubscribe: '\\uEDA0',\r\n Subscribe: '\\uEDA1',\r\n HardDrive: '\\uEDA2',\r\n RecurringTask: '\\uEDB2',\r\n TaskManager: '\\uEDB7',\r\n TaskManagerMirrored: '\\uEDB8',\r\n Combine: '\\uEDBB',\r\n Split: '\\uEDBC',\r\n DoubleChevronUp: '\\uEDBD',\r\n DoubleChevronLeft: '\\uEDBE',\r\n DoubleChevronRight: '\\uEDBF',\r\n TextBox: '\\uEDC2',\r\n TextField: '\\uEDC3',\r\n NumberField: '\\uEDC4',\r\n Dropdown: '\\uEDC5',\r\n PenWorkspace: '\\uEDC6',\r\n BookingsLogo: '\\uEDC7',\r\n ClassNotebookLogoInverse: '\\uEDC8',\r\n DelveAnalyticsLogo: '\\uEDCA',\r\n DocsLogoInverse: '\\uEDCB',\r\n Dynamics365Logo: '\\uEDCC',\r\n DynamicSMBLogo: '\\uEDCD',\r\n OfficeAssistantLogo: '\\uEDCE',\r\n OfficeStoreLogo: '\\uEDCF',\r\n OneNoteEduLogoInverse: '\\uEDD0',\r\n PlannerLogo: '\\uEDD1',\r\n PowerApps: '\\uEDD2',\r\n Suitcase: '\\uEDD3',\r\n ProjectLogoInverse: '\\uEDD4',\r\n CaretLeft8: '\\uEDD5',\r\n CaretRight8: '\\uEDD6',\r\n CaretUp8: '\\uEDD7',\r\n CaretDown8: '\\uEDD8',\r\n CaretLeftSolid8: '\\uEDD9',\r\n CaretRightSolid8: '\\uEDDA',\r\n CaretUpSolid8: '\\uEDDB',\r\n CaretDownSolid8: '\\uEDDC',\r\n ClearFormatting: '\\uEDDD',\r\n Superscript: '\\uEDDE',\r\n Subscript: '\\uEDDF',\r\n Strikethrough: '\\uEDE0',\r\n Export: '\\uEDE1',\r\n ExportMirrored: '\\uEDE2',\r\n SingleBookmark: '\\uEDFF',\r\n SingleBookmarkSolid: '\\uEE00',\r\n DoubleChevronDown: '\\uEE04',\r\n FollowUser: '\\uEE05',\r\n ReplyAll: '\\uEE0A',\r\n WorkforceManagement: '\\uEE0F',\r\n RecruitmentManagement: '\\uEE12',\r\n Questionnaire: '\\uEE19',\r\n ManagerSelfService: '\\uEE23',\r\n ProductRelease: '\\uEE2E',\r\n ReplyMirrored: '\\uEE35',\r\n ReplyAllMirrored: '\\uEE36',\r\n Medal: '\\uEE38',\r\n AddGroup: '\\uEE3D',\r\n QuestionnaireMirrored: '\\uEE4B',\r\n TemporaryUser: '\\uEE58',\r\n CaretSolid16: '\\uEE62',\r\n GroupedDescending: '\\uEE66',\r\n GroupedAscending: '\\uEE67',\r\n AwayStatus: '\\uEE6A',\r\n MyMoviesTV: '\\uEE6C',\r\n GenericScan: '\\uEE6F',\r\n AustralianRules: '\\uEE70',\r\n WifiEthernet: '\\uEE77',\r\n TrackersMirrored: '\\uEE92',\r\n DateTimeMirrored: '\\uEE93',\r\n StopSolid: '\\uEE95',\r\n DoubleChevronUp12: '\\uEE96',\r\n DoubleChevronDown12: '\\uEE97',\r\n DoubleChevronLeft12: '\\uEE98',\r\n DoubleChevronRight12: '\\uEE99',\r\n CalendarAgenda: '\\uEE9A',\r\n AddEvent: '\\uEEB5',\r\n AssetLibrary: '\\uEEB6',\r\n DataConnectionLibrary: '\\uEEB7',\r\n DocLibrary: '\\uEEB8',\r\n FormLibrary: '\\uEEB9',\r\n FormLibraryMirrored: '\\uEEBA',\r\n ReportLibrary: '\\uEEBB',\r\n ReportLibraryMirrored: '\\uEEBC',\r\n ContactCard: '\\uEEBD',\r\n CustomList: '\\uEEBE',\r\n CustomListMirrored: '\\uEEBF'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-6.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-6.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-7.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-7.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-7\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-7-36bda45d.woff') format('woff')\"\r\n },\r\n icons: {\r\n IssueTracking: '\\uEEC0',\r\n IssueTrackingMirrored: '\\uEEC1',\r\n PictureLibrary: '\\uEEC2',\r\n OfficeAddinsLogo: '\\uEEC7',\r\n OfflineOneDriveParachute: '\\uEEC8',\r\n OfflineOneDriveParachuteDisabled: '\\uEEC9',\r\n TriangleSolidUp12: '\\uEECC',\r\n TriangleSolidDown12: '\\uEECD',\r\n TriangleSolidLeft12: '\\uEECE',\r\n TriangleSolidRight12: '\\uEECF',\r\n TriangleUp12: '\\uEED0',\r\n TriangleDown12: '\\uEED1',\r\n TriangleLeft12: '\\uEED2',\r\n TriangleRight12: '\\uEED3',\r\n ArrowUpRight8: '\\uEED4',\r\n ArrowDownRight8: '\\uEED5',\r\n DocumentSet: '\\uEED6',\r\n DelveAnalytics: '\\uEEEE',\r\n ArrowUpRightMirrored8: '\\uEEEF',\r\n ArrowDownRightMirrored8: '\\uEEF0',\r\n CompanyDirectory: '\\uEF0D',\r\n OpenEnrollment: '\\uEF1C',\r\n CompanyDirectoryMirrored: '\\uEF2B',\r\n OneDriveAdd: '\\uEF32',\r\n ProfileSearch: '\\uEF35',\r\n Header2: '\\uEF36',\r\n Header3: '\\uEF37',\r\n Header4: '\\uEF38',\r\n Eyedropper: '\\uEF3C',\r\n MarketDown: '\\uEF42',\r\n CalendarWorkWeek: '\\uEF51',\r\n SidePanel: '\\uEF52',\r\n GlobeFavorite: '\\uEF53',\r\n CaretTopLeftSolid8: '\\uEF54',\r\n CaretTopRightSolid8: '\\uEF55',\r\n ViewAll2: '\\uEF56',\r\n DocumentReply: '\\uEF57',\r\n PlayerSettings: '\\uEF58',\r\n ReceiptForward: '\\uEF59',\r\n ReceiptReply: '\\uEF5A',\r\n ReceiptCheck: '\\uEF5B',\r\n Fax: '\\uEF5C',\r\n RecurringEvent: '\\uEF5D',\r\n ReplyAlt: '\\uEF5E',\r\n ReplyAllAlt: '\\uEF5F',\r\n EditStyle: '\\uEF60',\r\n EditMail: '\\uEF61',\r\n Lifesaver: '\\uEF62',\r\n LifesaverLock: '\\uEF63',\r\n InboxCheck: '\\uEF64',\r\n FolderSearch: '\\uEF65',\r\n CollapseMenu: '\\uEF66',\r\n ExpandMenu: '\\uEF67',\r\n Boards: '\\uEF68',\r\n SunAdd: '\\uEF69',\r\n SunQuestionMark: '\\uEF6A',\r\n LandscapeOrientation: '\\uEF6B',\r\n DocumentSearch: '\\uEF6C',\r\n PublicCalendar: '\\uEF6D',\r\n PublicContactCard: '\\uEF6E',\r\n PublicEmail: '\\uEF6F',\r\n PublicFolder: '\\uEF70',\r\n WordDocument: '\\uEF71',\r\n PowerPointDocument: '\\uEF72',\r\n ExcelDocument: '\\uEF73',\r\n GroupedList: '\\uEF74',\r\n ClassroomLogo: '\\uEF75',\r\n Sections: '\\uEF76',\r\n EditPhoto: '\\uEF77',\r\n Starburst: '\\uEF78',\r\n ShareiOS: '\\uEF79',\r\n AirTickets: '\\uEF7A',\r\n PencilReply: '\\uEF7B',\r\n Tiles2: '\\uEF7C',\r\n SkypeCircleCheck: '\\uEF7D',\r\n SkypeCircleClock: '\\uEF7E',\r\n SkypeCircleMinus: '\\uEF7F',\r\n SkypeMessage: '\\uEF83',\r\n ClosedCaption: '\\uEF84',\r\n ATPLogo: '\\uEF85',\r\n OfficeFormsLogoInverse: '\\uEF86',\r\n RecycleBin: '\\uEF87',\r\n EmptyRecycleBin: '\\uEF88',\r\n Hide2: '\\uEF89',\r\n Breadcrumb: '\\uEF8C',\r\n BirthdayCake: '\\uEF8D',\r\n TimeEntry: '\\uEF95',\r\n CRMProcesses: '\\uEFB1',\r\n PageEdit: '\\uEFB6',\r\n PageArrowRight: '\\uEFB8',\r\n PageRemove: '\\uEFBA',\r\n Database: '\\uEFC7',\r\n CRMServices: '\\uEFD2',\r\n EditContact: '\\uEFD3',\r\n ConnectContacts: '\\uEFD4',\r\n AppIconDefaultAdd: '\\uEFDA',\r\n AppIconDefaultList: '\\uEFDE',\r\n ActivateOrders: '\\uEFE0',\r\n DeactivateOrders: '\\uEFE1',\r\n DocumentManagement: '\\uEFFC'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-7.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-7.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-8.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-8.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-8\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-8-58fb017e.woff') format('woff')\"\r\n },\r\n icons: {\r\n CRMReport: '\\uEFFE',\r\n KnowledgeArticle: '\\uF000',\r\n Relationship: '\\uF003',\r\n ZipFolder: '\\uF012',\r\n SurveyQuestions: '\\uF01B',\r\n TextDocument: '\\uF029',\r\n TextDocumentShared: '\\uF02B',\r\n PageCheckedOut: '\\uF02C',\r\n SaveAndClose: '\\uF038',\r\n Script: '\\uF03A',\r\n Archive: '\\uF03F',\r\n ActivityFeed: '\\uF056',\r\n EventDate: '\\uF059',\r\n ArrowUpRight: '\\uF069',\r\n CaretRight: '\\uF06B',\r\n SetAction: '\\uF071',\r\n CaretSolidLeft: '\\uF08D',\r\n CaretSolidDown: '\\uF08E',\r\n CaretSolidRight: '\\uF08F',\r\n CaretSolidUp: '\\uF090',\r\n PowerAppsLogo: '\\uF091',\r\n PowerApps2Logo: '\\uF092',\r\n SearchIssue: '\\uF09A',\r\n SearchIssueMirrored: '\\uF09B',\r\n FabricAssetLibrary: '\\uF09C',\r\n FabricDataConnectionLibrary: '\\uF09D',\r\n FabricDocLibrary: '\\uF09E',\r\n FabricFormLibrary: '\\uF09F',\r\n FabricFormLibraryMirrored: '\\uF0A0',\r\n FabricReportLibrary: '\\uF0A1',\r\n FabricReportLibraryMirrored: '\\uF0A2',\r\n FabricPublicFolder: '\\uF0A3',\r\n FabricFolderSearch: '\\uF0A4',\r\n FabricMovetoFolder: '\\uF0A5',\r\n FabricUnsyncFolder: '\\uF0A6',\r\n FabricSyncFolder: '\\uF0A7',\r\n FabricOpenFolderHorizontal: '\\uF0A8',\r\n FabricFolder: '\\uF0A9',\r\n FabricFolderFill: '\\uF0AA',\r\n FabricNewFolder: '\\uF0AB',\r\n FabricPictureLibrary: '\\uF0AC',\r\n AddFavorite: '\\uF0C8',\r\n AddFavoriteFill: '\\uF0C9',\r\n BufferTimeBefore: '\\uF0CF',\r\n BufferTimeAfter: '\\uF0D0',\r\n BufferTimeBoth: '\\uF0D1',\r\n PublishContent: '\\uF0D4',\r\n CannedChat: '\\uF0F2',\r\n SkypeForBusinessLogo: '\\uF0FC',\r\n TabCenter: '\\uF100',\r\n PageCheckedin: '\\uF104',\r\n PageList: '\\uF106',\r\n ReadOutLoud: '\\uF112',\r\n CaretBottomLeftSolid8: '\\uF121',\r\n CaretBottomRightSolid8: '\\uF122',\r\n FolderHorizontal: '\\uF12B',\r\n MicrosoftStaffhubLogo: '\\uF130',\r\n GiftboxOpen: '\\uF133',\r\n StatusCircleOuter: '\\uF136',\r\n StatusCircleInner: '\\uF137',\r\n StatusCircleRing: '\\uF138',\r\n StatusTriangleOuter: '\\uF139',\r\n StatusTriangleInner: '\\uF13A',\r\n StatusTriangleExclamation: '\\uF13B',\r\n StatusCircleExclamation: '\\uF13C',\r\n StatusCircleErrorX: '\\uF13D',\r\n StatusCircleInfo: '\\uF13F',\r\n StatusCircleBlock: '\\uF140',\r\n StatusCircleBlock2: '\\uF141',\r\n StatusCircleQuestionMark: '\\uF142',\r\n StatusCircleSync: '\\uF143',\r\n Toll: '\\uF160',\r\n ExploreContentSingle: '\\uF164',\r\n CollapseContent: '\\uF165',\r\n CollapseContentSingle: '\\uF166',\r\n InfoSolid: '\\uF167',\r\n ProgressRingDots: '\\uF16A',\r\n CaloriesAdd: '\\uF172',\r\n BranchFork: '\\uF173',\r\n MobileReport: '\\uF18A',\r\n ScaleVolume: '\\uF18C',\r\n HardDriveGroup: '\\uF18F',\r\n FastMode: '\\uF19A',\r\n ToggleLeft: '\\uF19E',\r\n ToggleRight: '\\uF19F',\r\n TriangleShape: '\\uF1A7',\r\n RectangleShape: '\\uF1A9',\r\n Trophy2: '\\uF1AE',\r\n BucketColor: '\\uF1B6',\r\n BucketColorFill: '\\uF1B7',\r\n Taskboard: '\\uF1C2',\r\n SingleColumn: '\\uF1D3',\r\n DoubleColumn: '\\uF1D4',\r\n TripleColumn: '\\uF1D5',\r\n ColumnLeftTwoThirds: '\\uF1D6',\r\n ColumnRightTwoThirds: '\\uF1D7',\r\n AccessLogoFill: '\\uF1DB',\r\n AnalyticsLogo: '\\uF1DE',\r\n AnalyticsQuery: '\\uF1DF',\r\n NewAnalyticsQuery: '\\uF1E0'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-8.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-8.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons-9.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons-9.js ***!
\************************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons-9\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-9-e5eafdb0.woff') format('woff')\"\r\n },\r\n icons: {\r\n AnalyticsReport: '\\uF1E1',\r\n WordLogo: '\\uF1E3',\r\n WordLogoFill: '\\uF1E4',\r\n ExcelLogo: '\\uF1E5',\r\n ExcelLogoFill: '\\uF1E6',\r\n OneNoteLogo: '\\uF1E7',\r\n OneNoteLogoFill: '\\uF1E8',\r\n OutlookLogo: '\\uF1E9',\r\n OutlookLogoFill: '\\uF1EA',\r\n PowerPointLogo: '\\uF1EB',\r\n PowerPointLogoFill: '\\uF1EC',\r\n PublisherLogo: '\\uF1ED',\r\n PublisherLogoFill: '\\uF1EE',\r\n ScheduleEventAction: '\\uF1EF',\r\n FlameSolid: '\\uF1F3',\r\n ServerProcesses: '\\uF1FE',\r\n Server: '\\uF201',\r\n SaveAll: '\\uF203',\r\n LinkedInLogo: '\\uF20A',\r\n Decimals: '\\uF218',\r\n SidePanelMirrored: '\\uF221',\r\n ProtectRestrict: '\\uF22A',\r\n Blog: '\\uF22B',\r\n UnknownMirrored: '\\uF22E',\r\n PublicContactCardMirrored: '\\uF230',\r\n GridViewSmall: '\\uF232',\r\n GridViewMedium: '\\uF233',\r\n GridViewLarge: '\\uF234',\r\n Step: '\\uF241',\r\n StepInsert: '\\uF242',\r\n StepShared: '\\uF243',\r\n StepSharedAdd: '\\uF244',\r\n StepSharedInsert: '\\uF245',\r\n ViewDashboard: '\\uF246',\r\n ViewList: '\\uF247',\r\n ViewListGroup: '\\uF248',\r\n ViewListTree: '\\uF249',\r\n TriggerAuto: '\\uF24A',\r\n TriggerUser: '\\uF24B',\r\n PivotChart: '\\uF24C',\r\n StackedBarChart: '\\uF24D',\r\n StackedLineChart: '\\uF24E',\r\n BuildQueue: '\\uF24F',\r\n BuildQueueNew: '\\uF250',\r\n UserFollowed: '\\uF25C',\r\n ContactLink: '\\uF25F',\r\n Stack: '\\uF26F',\r\n Bullseye: '\\uF272',\r\n VennDiagram: '\\uF273',\r\n FiveTileGrid: '\\uF274',\r\n FocalPoint: '\\uF277',\r\n RingerRemove: '\\uF279',\r\n TeamsLogoInverse: '\\uF27A',\r\n TeamsLogo: '\\uF27B',\r\n TeamsLogoFill: '\\uF27C',\r\n SkypeForBusinessLogoFill: '\\uF27D',\r\n SharepointLogo: '\\uF27E',\r\n SharepointLogoFill: '\\uF27F',\r\n DelveLogo: '\\uF280',\r\n DelveLogoFill: '\\uF281',\r\n OfficeVideoLogo: '\\uF282',\r\n OfficeVideoLogoFill: '\\uF283',\r\n ExchangeLogo: '\\uF284',\r\n ExchangeLogoFill: '\\uF285',\r\n DocumentApproval: '\\uF28B',\r\n CloneToDesktop: '\\uF28C',\r\n InstallToDrive: '\\uF28D',\r\n Blur: '\\uF28E',\r\n Build: '\\uF28F',\r\n ProcessMetaTask: '\\uF290',\r\n BranchFork2: '\\uF291',\r\n BranchLocked: '\\uF292',\r\n BranchCommit: '\\uF293',\r\n BranchCompare: '\\uF294',\r\n BranchMerge: '\\uF295',\r\n BranchPullRequest: '\\uF296',\r\n BranchSearch: '\\uF297',\r\n BranchShelveset: '\\uF298',\r\n RawSource: '\\uF299',\r\n MergeDuplicate: '\\uF29A',\r\n RowsGroup: '\\uF29B',\r\n RowsChild: '\\uF29C',\r\n Deploy: '\\uF29D',\r\n Redeploy: '\\uF29E',\r\n ServerEnviroment: '\\uF29F',\r\n VisioDiagram: '\\uF2A0',\r\n HighlightMappedShapes: '\\uF2A1',\r\n TextCallout: '\\uF2A2',\r\n IconSetsFlag: '\\uF2A4',\r\n VisioLogo: '\\uF2A7',\r\n VisioLogoFill: '\\uF2A8',\r\n VisioDocument: '\\uF2A9',\r\n TimelineProgress: '\\uF2AA',\r\n TimelineDelivery: '\\uF2AB',\r\n Backlog: '\\uF2AC',\r\n TeamFavorite: '\\uF2AD',\r\n TaskGroup: '\\uF2AE',\r\n TaskGroupMirrored: '\\uF2AF',\r\n ScopeTemplate: '\\uF2B0',\r\n AssessmentGroupTemplate: '\\uF2B1'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons-9.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons-9.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/fabric-icons.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/fabric-icons.js ***!
\**********************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n// Your use of the content in the files referenced here is subject to the terms of the license at https://aka.ms/fabric-assets-license\r\n// tslint:disable:max-line-length\r\n\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = ''; }\r\n var subset = {\r\n style: {\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontStyle: 'normal',\r\n fontWeight: 'normal',\r\n speak: 'none'\r\n },\r\n fontFace: {\r\n fontFamily: \"\\\"FabricMDL2Icons\\\"\",\r\n src: \"url('\" + baseUrl + \"fabric-icons-a13498cf.woff') format('woff')\"\r\n },\r\n icons: {\r\n GlobalNavButton: '\\uE700',\r\n ChevronDown: '\\uE70D',\r\n ChevronUp: '\\uE70E',\r\n Edit: '\\uE70F',\r\n Add: '\\uE710',\r\n Cancel: '\\uE711',\r\n More: '\\uE712',\r\n Settings: '\\uE713',\r\n Mail: '\\uE715',\r\n Filter: '\\uE71C',\r\n Search: '\\uE721',\r\n Share: '\\uE72D',\r\n BlockedSite: '\\uE72F',\r\n FavoriteStar: '\\uE734',\r\n FavoriteStarFill: '\\uE735',\r\n CheckMark: '\\uE73E',\r\n Delete: '\\uE74D',\r\n ChevronLeft: '\\uE76B',\r\n ChevronRight: '\\uE76C',\r\n Calendar: '\\uE787',\r\n Megaphone: '\\uE789',\r\n Undo: '\\uE7A7',\r\n Flag: '\\uE7C1',\r\n Page: '\\uE7C3',\r\n Pinned: '\\uE840',\r\n View: '\\uE890',\r\n Clear: '\\uE894',\r\n Download: '\\uE896',\r\n Upload: '\\uE898',\r\n Folder: '\\uE8B7',\r\n Sort: '\\uE8CB',\r\n AlignRight: '\\uE8E2',\r\n AlignLeft: '\\uE8E4',\r\n Tag: '\\uE8EC',\r\n AddFriend: '\\uE8FA',\r\n Info: '\\uE946',\r\n SortLines: '\\uE9D0',\r\n List: '\\uEA37',\r\n CircleRing: '\\uEA3A',\r\n Heart: '\\uEB51',\r\n HeartFill: '\\uEB52',\r\n Tiles: '\\uECA5',\r\n Embed: '\\uECCE',\r\n Glimmer: '\\uECF4',\r\n Ascending: '\\uEDC0',\r\n Descending: '\\uEDC1',\r\n SortUp: '\\uEE68',\r\n SortDown: '\\uEE69',\r\n SyncToPC: '\\uEE6E',\r\n LargeGrid: '\\uEECB',\r\n SkypeCheck: '\\uEF80',\r\n SkypeClock: '\\uEF81',\r\n SkypeMinus: '\\uEF82',\r\n ClearFilter: '\\uEF8F',\r\n Flow: '\\uEF90',\r\n StatusCircleCheckmark: '\\uF13E',\r\n MoreVertical: '\\uF2BC'\r\n }\r\n };\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIcons\"])(subset, options);\r\n}\r\n//# sourceMappingURL=fabric-icons.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/fabric-icons.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/iconAliases.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/iconAliases.js ***!
\*********************************************************/
/*! exports provided: registerIconAliases, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"registerIconAliases\", function() { return registerIconAliases; });\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n\r\nvar registerIconAliases = function () {\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('trash', 'delete');\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('onedrive', 'onedrivelogo');\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('alertsolid12', 'eventdatemissed12');\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('sixpointstar', '6pointstar');\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('twelvepointstar', '12pointstar');\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('toggleon', 'toggleleft');\r\n Object(_uifabric_styling__WEBPACK_IMPORTED_MODULE_0__[\"registerIconAlias\"])('toggleoff', 'toggleright');\r\n};\r\n/* harmony default export */ __webpack_exports__[\"default\"] = (registerIconAliases);\r\n//# sourceMappingURL=iconAliases.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/iconAliases.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/index.js":
/*!***************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/index.js ***!
\***************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return initializeIcons; });\n/* harmony import */ var _fabric_icons__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./fabric-icons */ \"./node_modules/@uifabric/icons/lib/fabric-icons.js\");\n/* harmony import */ var _fabric_icons_0__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fabric-icons-0 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-0.js\");\n/* harmony import */ var _fabric_icons_1__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./fabric-icons-1 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-1.js\");\n/* harmony import */ var _fabric_icons_2__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fabric-icons-2 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-2.js\");\n/* harmony import */ var _fabric_icons_3__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./fabric-icons-3 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-3.js\");\n/* harmony import */ var _fabric_icons_4__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./fabric-icons-4 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-4.js\");\n/* harmony import */ var _fabric_icons_5__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./fabric-icons-5 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-5.js\");\n/* harmony import */ var _fabric_icons_6__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./fabric-icons-6 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-6.js\");\n/* harmony import */ var _fabric_icons_7__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./fabric-icons-7 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-7.js\");\n/* harmony import */ var _fabric_icons_8__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./fabric-icons-8 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-8.js\");\n/* harmony import */ var _fabric_icons_9__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./fabric-icons-9 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-9.js\");\n/* harmony import */ var _fabric_icons_10__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./fabric-icons-10 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-10.js\");\n/* harmony import */ var _fabric_icons_11__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./fabric-icons-11 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-11.js\");\n/* harmony import */ var _fabric_icons_12__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./fabric-icons-12 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-12.js\");\n/* harmony import */ var _fabric_icons_13__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./fabric-icons-13 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-13.js\");\n/* harmony import */ var _fabric_icons_14__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./fabric-icons-14 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-14.js\");\n/* harmony import */ var _fabric_icons_15__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./fabric-icons-15 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-15.js\");\n/* harmony import */ var _fabric_icons_16__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./fabric-icons-16 */ \"./node_modules/@uifabric/icons/lib/fabric-icons-16.js\");\n/* harmony import */ var _iconAliases__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./iconAliases */ \"./node_modules/@uifabric/icons/lib/iconAliases.js\");\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./version */ \"./node_modules/@uifabric/icons/lib/version.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nvar DEFAULT_BASE_URL = 'https://spoprod-a.akamaihd.net/files/fabric/assets/icons/';\r\nfunction initializeIcons(baseUrl, options) {\r\n if (baseUrl === void 0) { baseUrl = DEFAULT_BASE_URL; }\r\n [_fabric_icons__WEBPACK_IMPORTED_MODULE_0__[\"initializeIcons\"], _fabric_icons_0__WEBPACK_IMPORTED_MODULE_1__[\"initializeIcons\"], _fabric_icons_1__WEBPACK_IMPORTED_MODULE_2__[\"initializeIcons\"], _fabric_icons_2__WEBPACK_IMPORTED_MODULE_3__[\"initializeIcons\"], _fabric_icons_3__WEBPACK_IMPORTED_MODULE_4__[\"initializeIcons\"], _fabric_icons_4__WEBPACK_IMPORTED_MODULE_5__[\"initializeIcons\"], _fabric_icons_5__WEBPACK_IMPORTED_MODULE_6__[\"initializeIcons\"], _fabric_icons_6__WEBPACK_IMPORTED_MODULE_7__[\"initializeIcons\"], _fabric_icons_7__WEBPACK_IMPORTED_MODULE_8__[\"initializeIcons\"], _fabric_icons_8__WEBPACK_IMPORTED_MODULE_9__[\"initializeIcons\"], _fabric_icons_9__WEBPACK_IMPORTED_MODULE_10__[\"initializeIcons\"], _fabric_icons_10__WEBPACK_IMPORTED_MODULE_11__[\"initializeIcons\"], _fabric_icons_11__WEBPACK_IMPORTED_MODULE_12__[\"initializeIcons\"], _fabric_icons_12__WEBPACK_IMPORTED_MODULE_13__[\"initializeIcons\"], _fabric_icons_13__WEBPACK_IMPORTED_MODULE_14__[\"initializeIcons\"], _fabric_icons_14__WEBPACK_IMPORTED_MODULE_15__[\"initializeIcons\"], _fabric_icons_15__WEBPACK_IMPORTED_MODULE_16__[\"initializeIcons\"], _fabric_icons_16__WEBPACK_IMPORTED_MODULE_17__[\"initializeIcons\"]].forEach(function (initialize) { return initialize(baseUrl, options); });\r\n Object(_iconAliases__WEBPACK_IMPORTED_MODULE_18__[\"registerIconAliases\"])();\r\n}\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/icons/lib/version.js":
/*!*****************************************************!*\
!*** ./node_modules/@uifabric/icons/lib/version.js ***!
\*****************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/set-version */ \"./node_modules/@uifabric/set-version/lib/index.js\");\n// @uifabric/icons@6.3.0\r\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\r\n\r\nObject(_uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/icons', '6.3.0');\r\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/icons/lib/version.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/Stylesheet.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/Stylesheet.js ***!
\***************************************************************/
/*! exports provided: InjectionMode, Stylesheet */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"InjectionMode\", function() { return InjectionMode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Stylesheet\", function() { return Stylesheet; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n\r\nvar InjectionMode = {\r\n /**\r\n * Avoids style injection, use getRules() to read the styles.\r\n */\r\n none: 0,\r\n /**\r\n * Inserts rules using the insertRule api.\r\n */\r\n insertNode: 1,\r\n /**\r\n * Appends rules using appendChild.\r\n */\r\n appendChild: 2\r\n};\r\nvar STYLESHEET_SETTING = '__stylesheet__';\r\n// tslint:disable-next-line:no-any\r\nvar _fileScopedGlobal = {};\r\nvar _stylesheet;\r\n/**\r\n * Represents the state of styles registered in the page. Abstracts\r\n * the surface for adding styles to the stylesheet, exposes helpers\r\n * for reading the styles registered in server rendered scenarios.\r\n *\r\n * @public\r\n */\r\nvar Stylesheet = /** @class */ (function () {\r\n function Stylesheet(config) {\r\n this._rules = [];\r\n this._preservedRules = [];\r\n this._rulesToInsert = [];\r\n this._counter = 0;\r\n this._keyToClassName = {};\r\n this._onResetCallbacks = [];\r\n // tslint:disable-next-line:no-any\r\n this._classNameToArgs = {};\r\n this._config = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ injectionMode: InjectionMode.insertNode, defaultPrefix: 'css', namespace: undefined }, config);\r\n }\r\n /**\r\n * Gets the singleton instance.\r\n */\r\n Stylesheet.getInstance = function () {\r\n // tslint:disable-next-line:no-any\r\n var global = typeof window !== 'undefined' ? window : typeof process !== 'undefined' ? process : _fileScopedGlobal;\r\n _stylesheet = global[STYLESHEET_SETTING];\r\n if (!_stylesheet || (_stylesheet._lastStyleElement && _stylesheet._lastStyleElement.ownerDocument !== document)) {\r\n // tslint:disable-next-line:no-string-literal\r\n var fabricConfig = (global && global['FabricConfig']) || {};\r\n _stylesheet = global[STYLESHEET_SETTING] = new Stylesheet(fabricConfig.mergeStyles);\r\n }\r\n return _stylesheet;\r\n };\r\n /**\r\n * Configures the stylesheet.\r\n */\r\n Stylesheet.prototype.setConfig = function (config) {\r\n this._config = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, this._config, config);\r\n };\r\n /**\r\n * Configures a reset callback.\r\n *\r\n * @param callback - A callback which will be called when the Stylesheet is reset.\r\n */\r\n Stylesheet.prototype.onReset = function (callback) {\r\n this._onResetCallbacks.push(callback);\r\n };\r\n /**\r\n * Generates a unique classname.\r\n *\r\n * @param displayName - Optional value to use as a prefix.\r\n */\r\n Stylesheet.prototype.getClassName = function (displayName) {\r\n var namespace = this._config.namespace;\r\n var prefix = displayName || this._config.defaultPrefix;\r\n return \"\" + (namespace ? namespace + '-' : '') + prefix + \"-\" + this._counter++;\r\n };\r\n /**\r\n * Used internally to cache information about a class which was\r\n * registered with the stylesheet.\r\n */\r\n Stylesheet.prototype.cacheClassName = function (className, key, args, rules) {\r\n this._keyToClassName[key] = className;\r\n this._classNameToArgs[className] = {\r\n args: args,\r\n rules: rules\r\n };\r\n };\r\n /**\r\n * Gets the appropriate classname given a key which was previously\r\n * registered using cacheClassName.\r\n */\r\n Stylesheet.prototype.classNameFromKey = function (key) {\r\n return this._keyToClassName[key];\r\n };\r\n /**\r\n * Gets the arguments associated with a given classname which was\r\n * previously registered using cacheClassName.\r\n */\r\n Stylesheet.prototype.argsFromClassName = function (className) {\r\n var entry = this._classNameToArgs[className];\r\n return entry && entry.args;\r\n };\r\n /**\r\n * Gets the arguments associated with a given classname which was\r\n * previously registered using cacheClassName.\r\n */\r\n Stylesheet.prototype.insertedRulesFromClassName = function (className) {\r\n var entry = this._classNameToArgs[className];\r\n return entry && entry.rules;\r\n };\r\n /**\r\n * Inserts a css rule into the stylesheet.\r\n * @param preserve - Preserves the rule beyond a reset boundary.\r\n */\r\n Stylesheet.prototype.insertRule = function (rule, preserve) {\r\n var injectionMode = this._config.injectionMode;\r\n var element = injectionMode !== InjectionMode.none ? this._getStyleElement() : undefined;\r\n if (preserve) {\r\n this._preservedRules.push(rule);\r\n }\r\n if (element) {\r\n switch (this._config.injectionMode) {\r\n case InjectionMode.insertNode:\r\n var sheet = element.sheet;\r\n try {\r\n sheet.insertRule(rule, sheet.cssRules.length);\r\n }\r\n catch (e) {\r\n // The browser will throw exceptions on unsupported rules (such as a moz prefix in webkit.)\r\n // We need to swallow the exceptions for this scenario, otherwise we'd need to filter\r\n // which could be slower and bulkier.\r\n }\r\n break;\r\n case InjectionMode.appendChild:\r\n element.appendChild(document.createTextNode(rule));\r\n break;\r\n }\r\n }\r\n else {\r\n this._rules.push(rule);\r\n }\r\n if (this._config.onInsertRule) {\r\n this._config.onInsertRule(rule);\r\n }\r\n };\r\n /**\r\n * Gets all rules registered with the stylesheet; only valid when\r\n * using InsertionMode.none.\r\n */\r\n Stylesheet.prototype.getRules = function (includePreservedRules) {\r\n return (includePreservedRules ? this._preservedRules.join('') : '') + this._rules.join('') + this._rulesToInsert.join('');\r\n };\r\n /**\r\n * Resets the internal state of the stylesheet. Only used in server\r\n * rendered scenarios where we're using InsertionMode.none.\r\n */\r\n Stylesheet.prototype.reset = function () {\r\n this._rules = [];\r\n this._rulesToInsert = [];\r\n this._counter = 0;\r\n this._classNameToArgs = {};\r\n this._keyToClassName = {};\r\n this._onResetCallbacks.forEach(function (callback) { return callback(); });\r\n };\r\n // Forces the regeneration of incoming styles without totally resetting the stylesheet.\r\n Stylesheet.prototype.resetKeys = function () {\r\n this._keyToClassName = {};\r\n };\r\n Stylesheet.prototype._getStyleElement = function () {\r\n var _this = this;\r\n if (!this._styleElement && typeof document !== 'undefined') {\r\n this._styleElement = this._createStyleElement();\r\n // Reset the style element on the next frame.\r\n window.requestAnimationFrame(function () {\r\n _this._styleElement = undefined;\r\n });\r\n }\r\n return this._styleElement;\r\n };\r\n Stylesheet.prototype._createStyleElement = function () {\r\n var styleElement = document.createElement('style');\r\n styleElement.setAttribute('data-merge-styles', 'true');\r\n styleElement.type = 'text/css';\r\n if (this._lastStyleElement && this._lastStyleElement.nextElementSibling) {\r\n document.head.insertBefore(styleElement, this._lastStyleElement.nextElementSibling);\r\n }\r\n else {\r\n document.head.appendChild(styleElement);\r\n }\r\n this._lastStyleElement = styleElement;\r\n return styleElement;\r\n };\r\n return Stylesheet;\r\n}());\r\n\r\n//# sourceMappingURL=Stylesheet.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../process/browser.js */ \"./node_modules/process/browser.js\")))\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/Stylesheet.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js":
/*!********************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js ***!
\********************************************************************/
/*! exports provided: concatStyleSets */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"concatStyleSets\", function() { return concatStyleSets; });\n/**\r\n * Combine a set of styles together (but does not register css classes).\r\n * @param styleSets - One or more stylesets to be merged (each param can also be falsy).\r\n */\r\nfunction concatStyleSets() {\r\n var styleSets = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n styleSets[_i] = arguments[_i];\r\n }\r\n var mergedSet = {};\r\n // We process sub component styles in two phases. First we collect them, then we combine them into 1 style function.\r\n var workingSubcomponentStyles = {};\r\n for (var _a = 0, styleSets_1 = styleSets; _a < styleSets_1.length; _a++) {\r\n var currentSet = styleSets_1[_a];\r\n if (currentSet) {\r\n for (var prop in currentSet) {\r\n if (currentSet.hasOwnProperty(prop)) {\r\n if (prop === 'subComponentStyles' && currentSet.subComponentStyles !== undefined) {\r\n // subcomponent styles - style functions or objects\r\n var currentComponentStyles = currentSet.subComponentStyles;\r\n for (var subCompProp in currentComponentStyles) {\r\n if (currentComponentStyles.hasOwnProperty(subCompProp)) {\r\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\r\n workingSubcomponentStyles[subCompProp].push(currentComponentStyles[subCompProp]);\r\n }\r\n else {\r\n workingSubcomponentStyles[subCompProp] = [currentComponentStyles[subCompProp]];\r\n }\r\n }\r\n }\r\n continue;\r\n }\r\n // the as any casts below is a workaround for ts 2.8.\r\n // todo: remove cast to any in ts 2.9.\r\n var mergedValue = mergedSet[prop];\r\n var currentValue = currentSet[prop];\r\n if (mergedValue === undefined) {\r\n mergedSet[prop] = currentValue;\r\n }\r\n else {\r\n mergedSet[prop] = (Array.isArray(mergedValue) ? mergedValue : [mergedValue]).concat((Array.isArray(currentValue) ? currentValue : [currentValue]));\r\n }\r\n }\r\n }\r\n }\r\n }\r\n if (Object.keys(workingSubcomponentStyles).length > 0) {\r\n mergedSet.subComponentStyles = {};\r\n var mergedSubStyles = mergedSet.subComponentStyles;\r\n var _loop_1 = function (subCompProp) {\r\n if (workingSubcomponentStyles.hasOwnProperty(subCompProp)) {\r\n var workingSet_1 = workingSubcomponentStyles[subCompProp];\r\n mergedSubStyles[subCompProp] = function (styleProps) {\r\n return concatStyleSets.apply(void 0, workingSet_1.map(function (styleFunctionOrObject) {\r\n return typeof styleFunctionOrObject === 'function' ? styleFunctionOrObject(styleProps) : styleFunctionOrObject;\r\n }));\r\n };\r\n }\r\n };\r\n // now we process the subcomponent styles if there are any\r\n for (var subCompProp in workingSubcomponentStyles) {\r\n _loop_1(subCompProp);\r\n }\r\n }\r\n return mergedSet;\r\n}\r\n//# sourceMappingURL=concatStyleSets.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js":
/*!**********************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js ***!
\**********************************************************************/
/*! exports provided: extractStyleParts */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"extractStyleParts\", function() { return extractStyleParts; });\n/* harmony import */ var _Stylesheet__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Stylesheet */ \"./node_modules/@uifabric/merge-styles/lib/Stylesheet.js\");\n\r\n/**\r\n * Separates the classes and style objects. Any classes that are pre-registered\r\n * args are auto expanded into objects.\r\n */\r\nfunction extractStyleParts() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var classes = [];\r\n var objects = [];\r\n var stylesheet = _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\n function _processArgs(argsList) {\r\n for (var _i = 0, argsList_1 = argsList; _i < argsList_1.length; _i++) {\r\n var arg = argsList_1[_i];\r\n if (arg) {\r\n if (typeof arg === 'string') {\r\n if (arg.indexOf(' ') >= 0) {\r\n _processArgs(arg.split(' '));\r\n }\r\n else {\r\n var translatedArgs = stylesheet.argsFromClassName(arg);\r\n if (translatedArgs) {\r\n _processArgs(translatedArgs);\r\n }\r\n else {\r\n // Avoid adding the same class twice.\r\n if (classes.indexOf(arg) === -1) {\r\n classes.push(arg);\r\n }\r\n }\r\n }\r\n }\r\n else if (Array.isArray(arg)) {\r\n _processArgs(arg);\r\n }\r\n else if (typeof arg === 'object') {\r\n objects.push(arg);\r\n }\r\n }\r\n }\r\n }\r\n _processArgs(args);\r\n return {\r\n classes: classes,\r\n objects: objects\r\n };\r\n}\r\n//# sourceMappingURL=extractStyleParts.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/fontFace.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/fontFace.js ***!
\*************************************************************/
/*! exports provided: fontFace */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fontFace\", function() { return fontFace; });\n/* harmony import */ var _Stylesheet__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Stylesheet */ \"./node_modules/@uifabric/merge-styles/lib/Stylesheet.js\");\n/* harmony import */ var _styleToClassName__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./styleToClassName */ \"./node_modules/@uifabric/merge-styles/lib/styleToClassName.js\");\n\r\n\r\n/**\r\n * Registers a font face.\r\n * @public\r\n */\r\nfunction fontFace(font) {\r\n _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance().insertRule(\"@font-face{\" + Object(_styleToClassName__WEBPACK_IMPORTED_MODULE_1__[\"serializeRuleEntries\"])(font) + \"}\", true);\r\n}\r\n//# sourceMappingURL=fontFace.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/fontFace.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/getVendorSettings.js":
/*!**********************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/getVendorSettings.js ***!
\**********************************************************************/
/*! exports provided: getVendorSettings, setVendorSettings */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getVendorSettings\", function() { return getVendorSettings; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setVendorSettings\", function() { return setVendorSettings; });\nvar _vendorSettings;\r\nfunction getVendorSettings() {\r\n if (!_vendorSettings) {\r\n var doc = typeof document !== 'undefined' ? document : undefined;\r\n var nav = typeof navigator !== 'undefined' ? navigator : undefined;\r\n var userAgent = nav ? nav.userAgent.toLowerCase() : undefined;\r\n if (!doc) {\r\n _vendorSettings = {\r\n isWebkit: true,\r\n isMoz: true,\r\n isOpera: true,\r\n isMs: true\r\n };\r\n }\r\n else {\r\n _vendorSettings = {\r\n isWebkit: !!(doc && 'WebkitAppearance' in doc.documentElement.style),\r\n isMoz: !!(userAgent && userAgent.indexOf('firefox') > -1),\r\n isOpera: !!(userAgent && userAgent.indexOf('opera') > -1),\r\n isMs: !!(nav && (/rv:11.0/i.test(nav.userAgent) || /Edge\\/\\d./i.test(navigator.userAgent)))\r\n };\r\n }\r\n }\r\n return _vendorSettings;\r\n}\r\n/**\r\n * Sets the vendor settings for prefixing and vendor specific operations.\r\n */\r\nfunction setVendorSettings(vendorSettings) {\r\n _vendorSettings = vendorSettings;\r\n}\r\n//# sourceMappingURL=getVendorSettings.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/getVendorSettings.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/index.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/index.js ***!
\**********************************************************/
/*! exports provided: mergeStyles, mergeStyleSets, concatStyleSets, fontFace, keyframes, InjectionMode, Stylesheet, setRTL */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _mergeStyles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./mergeStyles */ \"./node_modules/@uifabric/merge-styles/lib/mergeStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyles\", function() { return _mergeStyles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"]; });\n\n/* harmony import */ var _mergeStyleSets__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./mergeStyleSets */ \"./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyleSets\", function() { return _mergeStyleSets__WEBPACK_IMPORTED_MODULE_1__[\"mergeStyleSets\"]; });\n\n/* harmony import */ var _concatStyleSets__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./concatStyleSets */ \"./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"concatStyleSets\", function() { return _concatStyleSets__WEBPACK_IMPORTED_MODULE_2__[\"concatStyleSets\"]; });\n\n/* harmony import */ var _fontFace__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fontFace */ \"./node_modules/@uifabric/merge-styles/lib/fontFace.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fontFace\", function() { return _fontFace__WEBPACK_IMPORTED_MODULE_3__[\"fontFace\"]; });\n\n/* harmony import */ var _keyframes__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./keyframes */ \"./node_modules/@uifabric/merge-styles/lib/keyframes.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"keyframes\", function() { return _keyframes__WEBPACK_IMPORTED_MODULE_4__[\"keyframes\"]; });\n\n/* harmony import */ var _Stylesheet__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Stylesheet */ \"./node_modules/@uifabric/merge-styles/lib/Stylesheet.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InjectionMode\", function() { return _Stylesheet__WEBPACK_IMPORTED_MODULE_5__[\"InjectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stylesheet\", function() { return _Stylesheet__WEBPACK_IMPORTED_MODULE_5__[\"Stylesheet\"]; });\n\n/* harmony import */ var _transforms_rtlifyRules__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./transforms/rtlifyRules */ \"./node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setRTL\", function() { return _transforms_rtlifyRules__WEBPACK_IMPORTED_MODULE_6__[\"setRTL\"]; });\n\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./version */ \"./node_modules/@uifabric/merge-styles/lib/version.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/keyframes.js":
/*!**************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/keyframes.js ***!
\**************************************************************/
/*! exports provided: keyframes */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"keyframes\", function() { return keyframes; });\n/* harmony import */ var _Stylesheet__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Stylesheet */ \"./node_modules/@uifabric/merge-styles/lib/Stylesheet.js\");\n/* harmony import */ var _styleToClassName__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./styleToClassName */ \"./node_modules/@uifabric/merge-styles/lib/styleToClassName.js\");\n\r\n\r\n/**\r\n * Registers keyframe definitions.\r\n *\r\n * @public\r\n */\r\nfunction keyframes(timeline) {\r\n var stylesheet = _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\n var name = stylesheet.getClassName();\r\n var rulesArray = [];\r\n for (var prop in timeline) {\r\n if (timeline.hasOwnProperty(prop)) {\r\n rulesArray.push(prop, '{', Object(_styleToClassName__WEBPACK_IMPORTED_MODULE_1__[\"serializeRuleEntries\"])(timeline[prop]), '}');\r\n }\r\n }\r\n var rules = rulesArray.join('');\r\n stylesheet.insertRule(\"@keyframes \" + name + \"{\" + rules + \"}\", true);\r\n stylesheet.cacheClassName(name, rules, [], ['keyframes', rules]);\r\n return name;\r\n}\r\n//# sourceMappingURL=keyframes.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/keyframes.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js":
/*!*******************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js ***!
\*******************************************************************/
/*! exports provided: mergeStyleSets */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeStyleSets\", function() { return mergeStyleSets; });\n/* harmony import */ var _extractStyleParts__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./extractStyleParts */ \"./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js\");\n/* harmony import */ var _concatStyleSets__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./concatStyleSets */ \"./node_modules/@uifabric/merge-styles/lib/concatStyleSets.js\");\n/* harmony import */ var _styleToClassName__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./styleToClassName */ \"./node_modules/@uifabric/merge-styles/lib/styleToClassName.js\");\n\r\n\r\n\r\n/**\r\n * Takes in one or more style set objects, each consisting of a set of areas,\r\n * each which will produce a class name. Using this is analogous to calling\r\n * `mergeStyles` for each property in the object, but ensures we maintain the\r\n * set ordering when multiple style sets are merged.\r\n *\r\n * @param styleSets - One or more style sets to be merged.\r\n */\r\nfunction mergeStyleSets() {\r\n var styleSets = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n styleSets[_i] = arguments[_i];\r\n }\r\n // tslint:disable-next-line:no-any\r\n var classNameSet = { subComponentStyles: {} };\r\n var classMap = {};\r\n var styleSet = styleSets[0];\r\n if (!styleSet && styleSets.length <= 1) {\r\n return { subComponentStyles: {} };\r\n }\r\n var concatenatedStyleSet = \r\n // we have guarded against falsey values just above.\r\n styleSet;\r\n concatenatedStyleSet = _concatStyleSets__WEBPACK_IMPORTED_MODULE_1__[\"concatStyleSets\"].apply(void 0, styleSets);\r\n var registrations = [];\r\n for (var styleSetArea in concatenatedStyleSet) {\r\n if (concatenatedStyleSet.hasOwnProperty(styleSetArea)) {\r\n if (styleSetArea === 'subComponentStyles') {\r\n classNameSet.subComponentStyles = concatenatedStyleSet.subComponentStyles || {};\r\n continue;\r\n }\r\n var styles = concatenatedStyleSet[styleSetArea];\r\n var _a = Object(_extractStyleParts__WEBPACK_IMPORTED_MODULE_0__[\"extractStyleParts\"])(styles), classes = _a.classes, objects = _a.objects;\r\n var registration = Object(_styleToClassName__WEBPACK_IMPORTED_MODULE_2__[\"styleToRegistration\"])({ displayName: styleSetArea }, objects);\r\n registrations.push(registration);\r\n if (registration) {\r\n classMap[styleSetArea] = registration.className;\r\n // as any cast not needed in ts >=2.9\r\n classNameSet[styleSetArea] = classes.concat([registration.className]).join(' ');\r\n }\r\n }\r\n }\r\n for (var _b = 0, registrations_1 = registrations; _b < registrations_1.length; _b++) {\r\n var registration = registrations_1[_b];\r\n if (registration) {\r\n Object(_styleToClassName__WEBPACK_IMPORTED_MODULE_2__[\"applyRegistration\"])(registration, classMap);\r\n }\r\n }\r\n return classNameSet;\r\n}\r\n//# sourceMappingURL=mergeStyleSets.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/mergeStyleSets.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/mergeStyles.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/mergeStyles.js ***!
\****************************************************************/
/*! exports provided: mergeStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeStyles\", function() { return mergeStyles; });\n/* harmony import */ var _styleToClassName__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./styleToClassName */ \"./node_modules/@uifabric/merge-styles/lib/styleToClassName.js\");\n/* harmony import */ var _extractStyleParts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./extractStyleParts */ \"./node_modules/@uifabric/merge-styles/lib/extractStyleParts.js\");\n\r\n\r\n/**\r\n * Concatination helper, which can merge class names together. Skips over falsey values.\r\n *\r\n * @public\r\n */\r\nfunction mergeStyles() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var _a = Object(_extractStyleParts__WEBPACK_IMPORTED_MODULE_1__[\"extractStyleParts\"])(args), classes = _a.classes, objects = _a.objects;\r\n if (objects.length) {\r\n classes.push(Object(_styleToClassName__WEBPACK_IMPORTED_MODULE_0__[\"styleToClassName\"])(objects));\r\n }\r\n return classes.join(' ');\r\n}\r\n//# sourceMappingURL=mergeStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/mergeStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/styleToClassName.js":
/*!*********************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/styleToClassName.js ***!
\*********************************************************************/
/*! exports provided: serializeRuleEntries, styleToRegistration, applyRegistration, styleToClassName */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"serializeRuleEntries\", function() { return serializeRuleEntries; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"styleToRegistration\", function() { return styleToRegistration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyRegistration\", function() { return applyRegistration; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"styleToClassName\", function() { return styleToClassName; });\n/* harmony import */ var _Stylesheet__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Stylesheet */ \"./node_modules/@uifabric/merge-styles/lib/Stylesheet.js\");\n/* harmony import */ var _transforms_kebabRules__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transforms/kebabRules */ \"./node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js\");\n/* harmony import */ var _transforms_prefixRules__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transforms/prefixRules */ \"./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js\");\n/* harmony import */ var _transforms_provideUnits__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./transforms/provideUnits */ \"./node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js\");\n/* harmony import */ var _transforms_rtlifyRules__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./transforms/rtlifyRules */ \"./node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js\");\n\r\n\r\n\r\n\r\n\r\nvar DISPLAY_NAME = 'displayName';\r\nfunction getDisplayName(rules) {\r\n var rootStyle = rules && rules['&'];\r\n return rootStyle ? rootStyle.displayName : undefined;\r\n}\r\nvar globalSelectorRegExp = /\\:global\\((.+?)\\)/g;\r\n/**\r\n * Finds comma separated selectors in a :global() e.g. \":global(.class1, .class2, .class3)\"\r\n * and wraps them each in their own global \":global(.class1), :global(.class2), :global(.class3)\"\r\n *\r\n * @param selectorWithGlobals The selector to process\r\n * @returns The updated selector\r\n */\r\nfunction expandCommaSeparatedGlobals(selectorWithGlobals) {\r\n // We the selector does not have a :global() we can shortcut\r\n if (!globalSelectorRegExp.test(selectorWithGlobals)) {\r\n return selectorWithGlobals;\r\n }\r\n var replacementInfo = [];\r\n var findGlobal = /\\:global\\((.+?)\\)/g;\r\n var match = null;\r\n // Create a result list for global selectors so we can replace them.\r\n while ((match = findGlobal.exec(selectorWithGlobals))) {\r\n // Only if the found selector is a comma separated list we'll process it.\r\n if (match[1].indexOf(',') > -1) {\r\n replacementInfo.push([\r\n match.index,\r\n match.index + match[0].length,\r\n // Wrap each of the found selectors in :global()\r\n match[1]\r\n .split(',')\r\n .map(function (v) { return \":global(\" + v.trim() + \")\"; })\r\n .join(', ')\r\n ]);\r\n }\r\n }\r\n // Replace the found selectors with their wrapped variants in reverse order\r\n return replacementInfo.reverse().reduce(function (selector, _a) {\r\n var matchIndex = _a[0], matchEndIndex = _a[1], replacement = _a[2];\r\n var prefix = selector.slice(0, matchIndex);\r\n var suffix = selector.slice(matchEndIndex);\r\n return prefix + replacement + suffix;\r\n }, selectorWithGlobals);\r\n}\r\nfunction expandSelector(newSelector, currentSelector) {\r\n if (newSelector.indexOf(':global(') >= 0) {\r\n return newSelector.replace(globalSelectorRegExp, '$1');\r\n }\r\n else if (newSelector.indexOf(':') === 0) {\r\n return currentSelector + newSelector;\r\n }\r\n else if (newSelector.indexOf('&') < 0) {\r\n return currentSelector + ' ' + newSelector;\r\n }\r\n return newSelector;\r\n}\r\nfunction extractRules(args, rules, currentSelector) {\r\n if (rules === void 0) { rules = { __order: [] }; }\r\n if (currentSelector === void 0) { currentSelector = '&'; }\r\n var stylesheet = _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\n var currentRules = rules[currentSelector];\r\n if (!currentRules) {\r\n currentRules = {};\r\n rules[currentSelector] = currentRules;\r\n rules.__order.push(currentSelector);\r\n }\r\n for (var _i = 0, args_1 = args; _i < args_1.length; _i++) {\r\n var arg = args_1[_i];\r\n // If the arg is a string, we need to look up the class map and merge.\r\n if (typeof arg === 'string') {\r\n var expandedRules = stylesheet.argsFromClassName(arg);\r\n if (expandedRules) {\r\n extractRules(expandedRules, rules, currentSelector);\r\n }\r\n // Else if the arg is an array, we need to recurse in.\r\n }\r\n else if (Array.isArray(arg)) {\r\n extractRules(arg, rules, currentSelector);\r\n }\r\n else {\r\n // tslint:disable-next-line:no-any\r\n for (var prop in arg) {\r\n if (prop === 'selectors') {\r\n // tslint:disable-next-line:no-any\r\n var selectors = arg.selectors;\r\n for (var newSelector in selectors) {\r\n if (selectors.hasOwnProperty(newSelector)) {\r\n var selectorValue = selectors[newSelector];\r\n if (newSelector.indexOf('@') === 0) {\r\n newSelector = newSelector + '{' + currentSelector;\r\n extractRules([selectorValue], rules, newSelector);\r\n }\r\n else if (newSelector.indexOf(',') > -1) {\r\n var commaSeparatedSelectors = expandCommaSeparatedGlobals(newSelector)\r\n .split(/,/g)\r\n .map(function (s) { return s.trim(); });\r\n extractRules([selectorValue], rules, commaSeparatedSelectors\r\n .map(function (commaSeparatedSelector) { return expandSelector(commaSeparatedSelector, currentSelector); })\r\n .join(', '));\r\n }\r\n else {\r\n extractRules([selectorValue], rules, expandSelector(newSelector, currentSelector));\r\n }\r\n }\r\n }\r\n }\r\n else {\r\n if (arg[prop] !== undefined) {\r\n // Else, add the rule to the currentSelector.\r\n if (prop === 'margin' || prop === 'padding') {\r\n // tslint:disable-next-line:no-any\r\n expandQuads(currentRules, prop, arg[prop]);\r\n }\r\n else {\r\n // tslint:disable-next-line:no-any\r\n currentRules[prop] = arg[prop];\r\n }\r\n }\r\n }\r\n }\r\n }\r\n }\r\n return rules;\r\n}\r\nfunction expandQuads(currentRules, name, value) {\r\n var parts = typeof value === 'string' ? value.split(' ') : [value];\r\n currentRules[name + 'Top'] = parts[0];\r\n currentRules[name + 'Right'] = parts[1] || parts[0];\r\n currentRules[name + 'Bottom'] = parts[2] || parts[0];\r\n currentRules[name + 'Left'] = parts[3] || parts[1] || parts[0];\r\n}\r\nfunction getKeyForRules(rules) {\r\n var serialized = [];\r\n var hasProps = false;\r\n for (var _i = 0, _a = rules.__order; _i < _a.length; _i++) {\r\n var selector = _a[_i];\r\n serialized.push(selector);\r\n var rulesForSelector = rules[selector];\r\n for (var propName in rulesForSelector) {\r\n if (rulesForSelector.hasOwnProperty(propName) && rulesForSelector[propName] !== undefined) {\r\n hasProps = true;\r\n serialized.push(propName, rulesForSelector[propName]);\r\n }\r\n }\r\n }\r\n return hasProps ? serialized.join('') : undefined;\r\n}\r\nfunction serializeRuleEntries(ruleEntries) {\r\n if (!ruleEntries) {\r\n return '';\r\n }\r\n var allEntries = [];\r\n for (var entry in ruleEntries) {\r\n if (ruleEntries.hasOwnProperty(entry) && entry !== DISPLAY_NAME && ruleEntries[entry] !== undefined) {\r\n allEntries.push(entry, ruleEntries[entry]);\r\n }\r\n }\r\n // Apply transforms.\r\n for (var i = 0; i < allEntries.length; i += 2) {\r\n Object(_transforms_kebabRules__WEBPACK_IMPORTED_MODULE_1__[\"kebabRules\"])(allEntries, i);\r\n Object(_transforms_provideUnits__WEBPACK_IMPORTED_MODULE_3__[\"provideUnits\"])(allEntries, i);\r\n Object(_transforms_rtlifyRules__WEBPACK_IMPORTED_MODULE_4__[\"rtlifyRules\"])(allEntries, i);\r\n Object(_transforms_prefixRules__WEBPACK_IMPORTED_MODULE_2__[\"prefixRules\"])(allEntries, i);\r\n }\r\n // Apply punctuation.\r\n for (var i = 1; i < allEntries.length; i += 4) {\r\n allEntries.splice(i, 1, ':', allEntries[i], ';');\r\n }\r\n return allEntries.join('');\r\n}\r\nfunction styleToRegistration() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var rules = extractRules(args);\r\n var key = getKeyForRules(rules);\r\n if (key) {\r\n var stylesheet = _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\n var registration = {\r\n className: stylesheet.classNameFromKey(key),\r\n key: key,\r\n args: args\r\n };\r\n if (!registration.className) {\r\n registration.className = stylesheet.getClassName(getDisplayName(rules));\r\n var rulesToInsert = [];\r\n for (var _a = 0, _b = rules.__order; _a < _b.length; _a++) {\r\n var selector = _b[_a];\r\n rulesToInsert.push(selector, serializeRuleEntries(rules[selector]));\r\n }\r\n registration.rulesToInsert = rulesToInsert;\r\n }\r\n return registration;\r\n }\r\n}\r\nfunction applyRegistration(registration, classMap) {\r\n var stylesheet = _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\n var className = registration.className, key = registration.key, args = registration.args, rulesToInsert = registration.rulesToInsert;\r\n if (rulesToInsert) {\r\n // rulesToInsert is an ordered array of selector/rule pairs.\r\n for (var i = 0; i < rulesToInsert.length; i += 2) {\r\n var rules = rulesToInsert[i + 1];\r\n if (rules) {\r\n var selector = rulesToInsert[i];\r\n // Fix selector using map.\r\n selector = selector.replace(/(&)|\\$([\\w-]+)\\b/g, function (match, amp, cn) {\r\n if (amp) {\r\n return '.' + registration.className;\r\n }\r\n else if (cn) {\r\n return '.' + ((classMap && classMap[cn]) || cn);\r\n }\r\n return '';\r\n });\r\n // Insert. Note if a media query, we must close the query with a final bracket.\r\n var processedRule = selector + \"{\" + rules + \"}\" + (selector.indexOf('@') === 0 ? '}' : '');\r\n stylesheet.insertRule(processedRule);\r\n }\r\n }\r\n stylesheet.cacheClassName(className, key, args, rulesToInsert);\r\n }\r\n}\r\nfunction styleToClassName() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var registration = styleToRegistration.apply(void 0, args);\r\n if (registration) {\r\n applyRegistration(registration);\r\n return registration.className;\r\n }\r\n return '';\r\n}\r\n//# sourceMappingURL=styleToClassName.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/styleToClassName.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js":
/*!**************************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js ***!
\**************************************************************************/
/*! exports provided: kebabRules */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"kebabRules\", function() { return kebabRules; });\nfunction kebabRules(rulePairs, index) {\r\n rulePairs[index] = rulePairs[index].replace(/([A-Z])/g, '-$1').toLowerCase();\r\n}\r\n//# sourceMappingURL=kebabRules.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/transforms/kebabRules.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js":
/*!***************************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js ***!
\***************************************************************************/
/*! exports provided: prefixRules */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prefixRules\", function() { return prefixRules; });\n/* harmony import */ var _getVendorSettings__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../getVendorSettings */ \"./node_modules/@uifabric/merge-styles/lib/getVendorSettings.js\");\n\r\nvar autoPrefixNames = {\r\n 'user-select': 1\r\n};\r\nfunction prefixRules(rulePairs, index) {\r\n var vendorSettings = Object(_getVendorSettings__WEBPACK_IMPORTED_MODULE_0__[\"getVendorSettings\"])();\r\n var name = rulePairs[index];\r\n if (autoPrefixNames[name]) {\r\n var value = rulePairs[index + 1];\r\n if (autoPrefixNames[name]) {\r\n if (vendorSettings.isWebkit) {\r\n rulePairs.push('-webkit-' + name, value);\r\n }\r\n if (vendorSettings.isMoz) {\r\n rulePairs.push('-moz-' + name, value);\r\n }\r\n if (vendorSettings.isMs) {\r\n rulePairs.push('-ms-' + name, value);\r\n }\r\n if (vendorSettings.isOpera) {\r\n rulePairs.push('-o-' + name, value);\r\n }\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=prefixRules.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/transforms/prefixRules.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js":
/*!****************************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js ***!
\****************************************************************************/
/*! exports provided: provideUnits */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"provideUnits\", function() { return provideUnits; });\nvar NON_PIXEL_NUMBER_PROPS = [\r\n 'column-count',\r\n 'font-weight',\r\n 'flex-basis',\r\n 'flex',\r\n 'flex-grow',\r\n 'flex-shrink',\r\n 'fill-opacity',\r\n 'opacity',\r\n 'order',\r\n 'z-index',\r\n 'zoom'\r\n];\r\nfunction provideUnits(rulePairs, index) {\r\n var name = rulePairs[index];\r\n var value = rulePairs[index + 1];\r\n if (typeof value === 'number') {\r\n var unit = NON_PIXEL_NUMBER_PROPS.indexOf(name) === -1 ? 'px' : '';\r\n rulePairs[index + 1] = \"\" + value + unit;\r\n }\r\n}\r\n//# sourceMappingURL=provideUnits.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/transforms/provideUnits.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js":
/*!***************************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js ***!
\***************************************************************************/
/*! exports provided: setRTL, getRTL, rtlifyRules */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setRTL\", function() { return setRTL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRTL\", function() { return getRTL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"rtlifyRules\", function() { return rtlifyRules; });\n/* harmony import */ var _Stylesheet__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../Stylesheet */ \"./node_modules/@uifabric/merge-styles/lib/Stylesheet.js\");\n\r\nvar LEFT = 'left';\r\nvar RIGHT = 'right';\r\nvar NO_FLIP = '@noflip';\r\nvar NAME_REPLACEMENTS = (_a = {},\r\n _a[LEFT] = RIGHT,\r\n _a[RIGHT] = LEFT,\r\n _a);\r\nvar VALUE_REPLACEMENTS = {\r\n 'w-resize': 'e-resize',\r\n 'sw-resize': 'se-resize',\r\n 'nw-resize': 'ne-resize'\r\n};\r\nvar _rtl = getRTL();\r\n/**\r\n * Sets the current RTL value.\r\n */\r\nfunction setRTL(isRTL) {\r\n if (_rtl !== isRTL) {\r\n _Stylesheet__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance().resetKeys();\r\n _rtl = isRTL;\r\n }\r\n}\r\n/**\r\n * Gets the current RTL value.\r\n */\r\nfunction getRTL() {\r\n if (_rtl === undefined) {\r\n _rtl = typeof document !== 'undefined' && !!document.documentElement && document.documentElement.getAttribute('dir') === 'rtl';\r\n }\r\n return _rtl;\r\n}\r\n/**\r\n * RTLifies the rulePair in the array at the current index. This mutates the array for performance\r\n * reasons.\r\n */\r\nfunction rtlifyRules(rulePairs, index) {\r\n if (getRTL()) {\r\n var name_1 = rulePairs[index];\r\n if (!name_1) {\r\n return;\r\n }\r\n var value = rulePairs[index + 1];\r\n if (typeof value === 'string' && value.indexOf(NO_FLIP) >= 0) {\r\n rulePairs[index + 1] = value.replace(/\\s*(?:\\/\\*\\s*)?\\@noflip\\b(?:\\s*\\*\\/)?\\s*?/g, '');\r\n }\r\n else if (name_1.indexOf(LEFT) >= 0) {\r\n rulePairs[index] = name_1.replace(LEFT, RIGHT);\r\n }\r\n else if (name_1.indexOf(RIGHT) >= 0) {\r\n rulePairs[index] = name_1.replace(RIGHT, LEFT);\r\n }\r\n else if (String(value).indexOf(LEFT) >= 0) {\r\n rulePairs[index + 1] = value.replace(LEFT, RIGHT);\r\n }\r\n else if (String(value).indexOf(RIGHT) >= 0) {\r\n rulePairs[index + 1] = value.replace(RIGHT, LEFT);\r\n }\r\n else if (NAME_REPLACEMENTS[name_1]) {\r\n rulePairs[index] = NAME_REPLACEMENTS[name_1];\r\n }\r\n else if (VALUE_REPLACEMENTS[value]) {\r\n rulePairs[index + 1] = VALUE_REPLACEMENTS[value];\r\n }\r\n else {\r\n switch (name_1) {\r\n case 'margin':\r\n case 'padding':\r\n rulePairs[index + 1] = flipQuad(value);\r\n break;\r\n case 'box-shadow':\r\n rulePairs[index + 1] = negateNum(value, 0);\r\n break;\r\n }\r\n }\r\n }\r\n}\r\n/**\r\n * Given a string value in a space delimited format (e.g. \"1 2 3 4\"), negates a particular value.\r\n */\r\nfunction negateNum(value, partIndex) {\r\n var parts = value.split(' ');\r\n var numberVal = parseInt(parts[partIndex], 10);\r\n parts[0] = parts[0].replace(String(numberVal), String(numberVal * -1));\r\n return parts.join(' ');\r\n}\r\n/**\r\n * Given a string quad, flips the left and right values.\r\n */\r\nfunction flipQuad(value) {\r\n if (typeof value === 'string') {\r\n var parts = value.split(' ');\r\n if (parts.length === 4) {\r\n return parts[0] + \" \" + parts[3] + \" \" + parts[2] + \" \" + parts[1];\r\n }\r\n }\r\n return value;\r\n}\r\nvar _a;\r\n//# sourceMappingURL=rtlifyRules.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/transforms/rtlifyRules.js?");
/***/ }),
/***/ "./node_modules/@uifabric/merge-styles/lib/version.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/merge-styles/lib/version.js ***!
\************************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/set-version */ \"./node_modules/@uifabric/set-version/lib/index.js\");\n// @uifabric/merge-styles@6.15.2\r\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\r\n\r\nObject(_uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/merge-styles', '6.15.2');\r\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/merge-styles/lib/version.js?");
/***/ }),
/***/ "./node_modules/@uifabric/set-version/lib/index.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/set-version/lib/index.js ***!
\*********************************************************/
/*! exports provided: setVersion */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _setVersion__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./setVersion */ \"./node_modules/@uifabric/set-version/lib/setVersion.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setVersion\", function() { return _setVersion__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"]; });\n\n\r\n\r\nObject(_setVersion__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/set-version', '6.0.0');\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/set-version/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/set-version/lib/setVersion.js":
/*!**************************************************************!*\
!*** ./node_modules/@uifabric/set-version/lib/setVersion.js ***!
\**************************************************************/
/*! exports provided: setVersion */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setVersion\", function() { return setVersion; });\n// A packages cache that makes sure that we don't inject the same packageName twice in the same bundle -\r\n// this cache is local to the module closure inside this bundle\r\nvar packagesCache = {};\r\nfunction setVersion(packageName, packageVersion) {\r\n if (typeof window !== 'undefined') {\r\n // tslint:disable-next-line:no-any\r\n var packages = (window.__packages__ = window.__packages__ || {});\r\n // We allow either the global packages or local packages caches to invalidate so testing can just clear the global to set this state\r\n if (!packages[packageName] || !packagesCache[packageName]) {\r\n packagesCache[packageName] = packageVersion;\r\n var versions = (packages[packageName] = packages[packageName] || []);\r\n versions.push(packageVersion);\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=setVersion.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/set-version/lib/setVersion.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/MergeStyles.js":
/*!***********************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/MergeStyles.js ***!
\***********************************************************/
/*! exports provided: InjectionMode, Stylesheet, concatStyleSets, fontFace, keyframes, mergeStyleSets, mergeStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InjectionMode\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"InjectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stylesheet\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"concatStyleSets\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"concatStyleSets\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fontFace\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"fontFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"keyframes\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyleSets\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyleSets\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyles\", function() { return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"]; });\n\n\r\n//# sourceMappingURL=MergeStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/MergeStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js":
/*!******************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js ***!
\******************************************************************************/
/*! exports provided: AnimationClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnimationClassNames\", function() { return AnimationClassNames; });\n/* harmony import */ var _utilities_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utilities/index */ \"./node_modules/@uifabric/styling/lib/utilities/index.js\");\n/* harmony import */ var _styles_index__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../styles/index */ \"./node_modules/@uifabric/styling/lib/styles/index.js\");\n\r\n\r\nvar AnimationClassNames = Object(_utilities_index__WEBPACK_IMPORTED_MODULE_0__[\"buildClassMap\"])(_styles_index__WEBPACK_IMPORTED_MODULE_1__[\"AnimationStyles\"]);\r\n//# sourceMappingURL=AnimationClassNames.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js":
/*!**************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js ***!
\**************************************************************************/
/*! exports provided: ColorClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ColorClassNames\", function() { return ColorClassNames; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n/* harmony import */ var _styles_DefaultPalette__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../styles/DefaultPalette */ \"./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js\");\n/* harmony import */ var _styles_index__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../styles/index */ \"./node_modules/@uifabric/styling/lib/styles/index.js\");\n\r\n\r\n\r\nvar ColorClassNames = {};\r\nfor (var colorName in _styles_DefaultPalette__WEBPACK_IMPORTED_MODULE_1__[\"DefaultPalette\"]) {\r\n if (_styles_DefaultPalette__WEBPACK_IMPORTED_MODULE_1__[\"DefaultPalette\"].hasOwnProperty(colorName)) {\r\n // Foreground color\r\n _defineGetter(ColorClassNames, colorName, '', false, 'color');\r\n // Hover color\r\n _defineGetter(ColorClassNames, colorName, 'Hover', true, 'color');\r\n // Background color\r\n _defineGetter(ColorClassNames, colorName, 'Background', false, 'background');\r\n // Background hover\r\n _defineGetter(ColorClassNames, colorName, 'BackgroundHover', true, 'background');\r\n // Border color\r\n _defineGetter(ColorClassNames, colorName, 'Border', false, 'borderColor');\r\n // Border hover color\r\n _defineGetter(ColorClassNames, colorName, 'BorderHover', true, 'borderColor');\r\n }\r\n}\r\n/**\r\n * Defines a getter for the given class configuration.\r\n */\r\nfunction _defineGetter(obj, colorName, suffix, isHover, cssProperty) {\r\n Object.defineProperty(obj, colorName + suffix, {\r\n get: function () {\r\n // tslint:disable-next-line:no-any\r\n var style = (_a = {}, _a[cssProperty] = Object(_styles_index__WEBPACK_IMPORTED_MODULE_2__[\"getTheme\"])().palette[colorName], _a);\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])(isHover ? { selectors: { ':hover': style } } : style).toString();\r\n var _a;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n}\r\n//# sourceMappingURL=ColorClassNames.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js":
/*!*************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js ***!
\*************************************************************************/
/*! exports provided: FontClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FontClassNames\", function() { return FontClassNames; });\n/* harmony import */ var _utilities_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utilities/index */ \"./node_modules/@uifabric/styling/lib/utilities/index.js\");\n/* harmony import */ var _styles_index__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../styles/index */ \"./node_modules/@uifabric/styling/lib/styles/index.js\");\n\r\n\r\nvar FontClassNames = Object(_utilities_index__WEBPACK_IMPORTED_MODULE_0__[\"buildClassMap\"])(_styles_index__WEBPACK_IMPORTED_MODULE_1__[\"DefaultFontStyles\"]);\r\n//# sourceMappingURL=FontClassNames.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/classNames/index.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/classNames/index.js ***!
\****************************************************************/
/*! exports provided: AnimationClassNames, FontClassNames, ColorClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AnimationClassNames__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AnimationClassNames */ \"./node_modules/@uifabric/styling/lib/classNames/AnimationClassNames.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationClassNames\", function() { return _AnimationClassNames__WEBPACK_IMPORTED_MODULE_0__[\"AnimationClassNames\"]; });\n\n/* harmony import */ var _FontClassNames__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FontClassNames */ \"./node_modules/@uifabric/styling/lib/classNames/FontClassNames.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontClassNames\", function() { return _FontClassNames__WEBPACK_IMPORTED_MODULE_1__[\"FontClassNames\"]; });\n\n/* harmony import */ var _ColorClassNames__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ColorClassNames */ \"./node_modules/@uifabric/styling/lib/classNames/ColorClassNames.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorClassNames\", function() { return _ColorClassNames__WEBPACK_IMPORTED_MODULE_2__[\"ColorClassNames\"]; });\n\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/classNames/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/index.js":
/*!*****************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/index.js ***!
\*****************************************************/
/*! exports provided: AnimationClassNames, FontClassNames, ColorClassNames, AnimationStyles, AnimationVariables, DefaultPalette, DefaultFontStyles, registerDefaultFontFaces, FontSizes, FontWeights, IconFontSizes, createFontStyles, getFocusStyle, focusClear, hiddenContentStyle, PulsingBeaconAnimationStyles, getGlobalClassNames, ThemeSettingName, getTheme, loadTheme, createTheme, registerOnThemeChangeCallback, removeOnThemeChangeCallback, buildClassMap, getIcon, registerIcons, registerIconAlias, unregisterIcons, setIconOptions, getIconClassName, InjectionMode, Stylesheet, concatStyleSets, fontFace, keyframes, mergeStyleSets, mergeStyles, getThemedContext, HighContrastSelector, HighContrastSelectorWhite, HighContrastSelectorBlack, ScreenWidthMinSmall, ScreenWidthMinMedium, ScreenWidthMinLarge, ScreenWidthMinXLarge, ScreenWidthMinXXLarge, ScreenWidthMinXXXLarge, ScreenWidthMaxSmall, ScreenWidthMaxMedium, ScreenWidthMaxLarge, ScreenWidthMaxXLarge, ScreenWidthMaxXXLarge, ScreenWidthMinUhfMobile, getScreenSelector, normalize, noWrap, getFadedOverflowStyle, ZIndexes */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _classNames_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classNames/index */ \"./node_modules/@uifabric/styling/lib/classNames/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationClassNames\", function() { return _classNames_index__WEBPACK_IMPORTED_MODULE_0__[\"AnimationClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontClassNames\", function() { return _classNames_index__WEBPACK_IMPORTED_MODULE_0__[\"FontClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorClassNames\", function() { return _classNames_index__WEBPACK_IMPORTED_MODULE_0__[\"ColorClassNames\"]; });\n\n/* harmony import */ var _styles_index__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./styles/index */ \"./node_modules/@uifabric/styling/lib/styles/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationStyles\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"AnimationStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationVariables\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"AnimationVariables\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPalette\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"DefaultPalette\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultFontStyles\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"DefaultFontStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerDefaultFontFaces\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"registerDefaultFontFaces\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontSizes\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"FontSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontWeights\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IconFontSizes\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"IconFontSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createFontStyles\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"createFontStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFocusStyle\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"getFocusStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusClear\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"focusClear\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hiddenContentStyle\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"hiddenContentStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PulsingBeaconAnimationStyles\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"PulsingBeaconAnimationStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getGlobalClassNames\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"getGlobalClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThemeSettingName\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ThemeSettingName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getTheme\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"getTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loadTheme\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"loadTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createTheme\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"createTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerOnThemeChangeCallback\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"registerOnThemeChangeCallback\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"removeOnThemeChangeCallback\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"removeOnThemeChangeCallback\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getThemedContext\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"getThemedContext\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelector\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelector\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorWhite\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelectorWhite\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorBlack\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelectorBlack\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinSmall\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinSmall\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinMedium\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinMedium\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXXLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinXXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxSmall\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxSmall\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxMedium\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxMedium\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXXLarge\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinUhfMobile\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinUhfMobile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getScreenSelector\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"getScreenSelector\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"normalize\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"normalize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"noWrap\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"noWrap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFadedOverflowStyle\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"getFadedOverflowStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ZIndexes\", function() { return _styles_index__WEBPACK_IMPORTED_MODULE_1__[\"ZIndexes\"]; });\n\n/* harmony import */ var _utilities_index__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utilities/index */ \"./node_modules/@uifabric/styling/lib/utilities/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildClassMap\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"buildClassMap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIcon\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"getIcon\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerIcons\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"registerIcons\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerIconAlias\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"registerIconAlias\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"unregisterIcons\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"unregisterIcons\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setIconOptions\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"setIconOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIconClassName\", function() { return _utilities_index__WEBPACK_IMPORTED_MODULE_2__[\"getIconClassName\"]; });\n\n/* harmony import */ var _MergeStyles__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./MergeStyles */ \"./node_modules/@uifabric/styling/lib/MergeStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InjectionMode\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"InjectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stylesheet\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"Stylesheet\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"concatStyleSets\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"concatStyleSets\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fontFace\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"fontFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"keyframes\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"keyframes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyleSets\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"mergeStyleSets\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyles\", function() { return _MergeStyles__WEBPACK_IMPORTED_MODULE_3__[\"mergeStyles\"]; });\n\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./version */ \"./node_modules/@uifabric/styling/lib/version.js\");\n\r\n\r\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js":
/*!**********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js ***!
\**********************************************************************/
/*! exports provided: AnimationVariables, AnimationStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnimationVariables\", function() { return AnimationVariables; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AnimationStyles\", function() { return AnimationStyles; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n/* Register the keyframes */\r\nvar EASING_FUNCTION_1 = 'cubic-bezier(.1,.9,.2,1)';\r\nvar EASING_FUNCTION_2 = 'cubic-bezier(.1,.25,.75,.9)';\r\nvar DURATION_1 = '0.167s';\r\nvar DURATION_2 = '0.267s';\r\nvar DURATION_3 = '0.367s';\r\nvar DURATION_4 = '0.467s';\r\nvar FADE_IN = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { opacity: 0 },\r\n to: { opacity: 1 }\r\n});\r\nvar FADE_OUT = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { opacity: 1 },\r\n to: { opacity: 0 }\r\n});\r\nvar SLIDE_RIGHT_IN10 = _createSlideInX(-10);\r\nvar SLIDE_RIGHT_IN20 = _createSlideInX(-20);\r\nvar SLIDE_RIGHT_IN40 = _createSlideInX(-40);\r\nvar SLIDE_RIGHT_IN400 = _createSlideInX(-400);\r\nvar SLIDE_LEFT_IN10 = _createSlideInX(10);\r\nvar SLIDE_LEFT_IN20 = _createSlideInX(20);\r\nvar SLIDE_LEFT_IN40 = _createSlideInX(40);\r\nvar SLIDE_LEFT_IN400 = _createSlideInX(400);\r\nvar SLIDE_UP_IN10 = _createSlideInY(10);\r\nvar SLIDE_UP_IN20 = _createSlideInY(20);\r\nvar SLIDE_DOWN_IN10 = _createSlideInY(-10);\r\nvar SLIDE_DOWN_IN20 = _createSlideInY(-20);\r\nvar SLIDE_RIGHT_OUT10 = _createSlideOutX(10);\r\nvar SLIDE_RIGHT_OUT20 = _createSlideOutX(20);\r\nvar SLIDE_RIGHT_OUT40 = _createSlideOutX(40);\r\nvar SLIDE_RIGHT_OUT400 = _createSlideOutX(400);\r\nvar SLIDE_LEFT_OUT10 = _createSlideOutX(-10);\r\nvar SLIDE_LEFT_OUT20 = _createSlideOutX(-20);\r\nvar SLIDE_LEFT_OUT40 = _createSlideOutX(-40);\r\nvar SLIDE_LEFT_OUT400 = _createSlideOutX(-400);\r\nvar SLIDE_UP_OUT10 = _createSlideOutY(-10);\r\nvar SLIDE_UP_OUT20 = _createSlideOutY(-20);\r\nvar SLIDE_DOWN_OUT10 = _createSlideOutY(10);\r\nvar SLIDE_DOWN_OUT20 = _createSlideOutY(20);\r\nvar SCALE_UP100 = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'scale3d(.98,.98,1)' },\r\n to: { transform: 'scale3d(1,1,1)' }\r\n});\r\nvar SCALE_DOWN98 = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'scale3d(1,1,1)' },\r\n to: { transform: 'scale3d(.98,.98,1)' }\r\n});\r\nvar SCALE_DOWN100 = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'scale3d(1.03,1.03,1)' },\r\n to: { transform: 'scale3d(1,1,1)' }\r\n});\r\nvar SCALE_UP103 = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'scale3d(1,1,1)' },\r\n to: { transform: 'scale3d(1.03,1.03,1)' }\r\n});\r\nvar ROTATE90 = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'rotateZ(0deg)' },\r\n to: { transform: 'rotateZ(90deg)' }\r\n});\r\nvar ROTATE_N90 = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'rotateZ(0deg)' },\r\n to: { transform: 'rotateZ(-90deg)' }\r\n});\r\n/**\r\n * Exporting raw duraction values and easing functions to be used in custom animations\r\n */\r\nvar AnimationVariables = {\r\n easeFunction1: EASING_FUNCTION_1,\r\n easeFunction2: EASING_FUNCTION_2,\r\n durationValue1: DURATION_1,\r\n durationValue2: DURATION_2,\r\n durationValue3: DURATION_3,\r\n durationValue4: DURATION_4\r\n};\r\n/**\r\n * All Fabric standard animations, exposed as json objects referencing predefined\r\n * keyframes. These objects can be mixed in with other class definitions.\r\n */\r\nvar AnimationStyles = {\r\n slideRightIn10: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN10, DURATION_3, EASING_FUNCTION_1),\r\n slideRightIn20: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN20, DURATION_3, EASING_FUNCTION_1),\r\n slideRightIn40: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN40, DURATION_3, EASING_FUNCTION_1),\r\n slideRightIn400: _createAnimation(FADE_IN + \",\" + SLIDE_RIGHT_IN400, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftIn10: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN10, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftIn20: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN20, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftIn40: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN40, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftIn400: _createAnimation(FADE_IN + \",\" + SLIDE_LEFT_IN400, DURATION_3, EASING_FUNCTION_1),\r\n slideUpIn10: _createAnimation(FADE_IN + \",\" + SLIDE_UP_IN10, DURATION_3, EASING_FUNCTION_1),\r\n slideUpIn20: _createAnimation(FADE_IN + \",\" + SLIDE_UP_IN20, DURATION_3, EASING_FUNCTION_1),\r\n slideDownIn10: _createAnimation(FADE_IN + \",\" + SLIDE_DOWN_IN10, DURATION_3, EASING_FUNCTION_1),\r\n slideDownIn20: _createAnimation(FADE_IN + \",\" + SLIDE_DOWN_IN20, DURATION_3, EASING_FUNCTION_1),\r\n slideRightOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT10, DURATION_3, EASING_FUNCTION_1),\r\n slideRightOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT20, DURATION_3, EASING_FUNCTION_1),\r\n slideRightOut40: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT40, DURATION_3, EASING_FUNCTION_1),\r\n slideRightOut400: _createAnimation(FADE_OUT + \",\" + SLIDE_RIGHT_OUT400, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT10, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT20, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftOut40: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT40, DURATION_3, EASING_FUNCTION_1),\r\n slideLeftOut400: _createAnimation(FADE_OUT + \",\" + SLIDE_LEFT_OUT400, DURATION_3, EASING_FUNCTION_1),\r\n slideUpOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_UP_OUT10, DURATION_3, EASING_FUNCTION_1),\r\n slideUpOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_UP_OUT20, DURATION_3, EASING_FUNCTION_1),\r\n slideDownOut10: _createAnimation(FADE_OUT + \",\" + SLIDE_DOWN_OUT10, DURATION_3, EASING_FUNCTION_1),\r\n slideDownOut20: _createAnimation(FADE_OUT + \",\" + SLIDE_DOWN_OUT20, DURATION_3, EASING_FUNCTION_1),\r\n scaleUpIn100: _createAnimation(FADE_IN + \",\" + SCALE_UP100, DURATION_3, EASING_FUNCTION_1),\r\n scaleDownIn100: _createAnimation(FADE_IN + \",\" + SCALE_DOWN100, DURATION_3, EASING_FUNCTION_1),\r\n scaleUpOut103: _createAnimation(FADE_OUT + \",\" + SCALE_UP103, DURATION_1, EASING_FUNCTION_2),\r\n scaleDownOut98: _createAnimation(FADE_OUT + \",\" + SCALE_DOWN98, DURATION_1, EASING_FUNCTION_2),\r\n fadeIn100: _createAnimation(FADE_IN, DURATION_1, EASING_FUNCTION_2),\r\n fadeIn200: _createAnimation(FADE_IN, DURATION_2, EASING_FUNCTION_2),\r\n fadeIn400: _createAnimation(FADE_IN, DURATION_3, EASING_FUNCTION_2),\r\n fadeIn500: _createAnimation(FADE_IN, DURATION_4, EASING_FUNCTION_2),\r\n fadeOut100: _createAnimation(FADE_OUT, DURATION_1, EASING_FUNCTION_2),\r\n fadeOut200: _createAnimation(FADE_OUT, DURATION_2, EASING_FUNCTION_2),\r\n fadeOut400: _createAnimation(FADE_OUT, DURATION_3, EASING_FUNCTION_2),\r\n fadeOut500: _createAnimation(FADE_OUT, DURATION_4, EASING_FUNCTION_2),\r\n rotate90deg: _createAnimation(ROTATE90, '0.1s', EASING_FUNCTION_2),\r\n rotateN90deg: _createAnimation(ROTATE_N90, '0.1s', EASING_FUNCTION_2)\r\n // expandCollapse 100/200/400, delay 100/200\r\n};\r\nfunction _createAnimation(animationName, animationDuration, animationTimingFunction) {\r\n return {\r\n animationName: animationName,\r\n animationDuration: animationDuration,\r\n animationTimingFunction: animationTimingFunction,\r\n animationFillMode: 'both'\r\n };\r\n}\r\nfunction _createSlideInX(fromX) {\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: \"translate3d(\" + fromX + \"px,0,0)\" },\r\n to: { transform: \"translate3d(0,0,0)\" }\r\n });\r\n}\r\nfunction _createSlideInY(fromY) {\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: \"translate3d(0,\" + fromY + \"px,0)\" },\r\n to: { transform: \"translate3d(0,0,0)\" }\r\n });\r\n}\r\nfunction _createSlideOutX(toX) {\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: \"translate3d(0,0,0)\" },\r\n to: { transform: \"translate3d(\" + toX + \"px,0,0)\" }\r\n });\r\n}\r\nfunction _createSlideOutY(toY) {\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: \"translate3d(0,0,0)\" },\r\n to: { transform: \"translate3d(0,\" + toY + \"px,0)\" }\r\n });\r\n}\r\n//# sourceMappingURL=AnimationStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/CommonStyles.js":
/*!*******************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/CommonStyles.js ***!
\*******************************************************************/
/*! exports provided: HighContrastSelector, HighContrastSelectorWhite, HighContrastSelectorBlack, ScreenWidthMinSmall, ScreenWidthMinMedium, ScreenWidthMinLarge, ScreenWidthMinXLarge, ScreenWidthMinXXLarge, ScreenWidthMinXXXLarge, ScreenWidthMaxSmall, ScreenWidthMaxMedium, ScreenWidthMaxLarge, ScreenWidthMaxXLarge, ScreenWidthMaxXXLarge, ScreenWidthMinUhfMobile, getScreenSelector */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelector\", function() { return HighContrastSelector; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorWhite\", function() { return HighContrastSelectorWhite; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorBlack\", function() { return HighContrastSelectorBlack; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinSmall\", function() { return ScreenWidthMinSmall; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinMedium\", function() { return ScreenWidthMinMedium; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinLarge\", function() { return ScreenWidthMinLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXLarge\", function() { return ScreenWidthMinXLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXLarge\", function() { return ScreenWidthMinXXLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXXLarge\", function() { return ScreenWidthMinXXXLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxSmall\", function() { return ScreenWidthMaxSmall; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxMedium\", function() { return ScreenWidthMaxMedium; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxLarge\", function() { return ScreenWidthMaxLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXLarge\", function() { return ScreenWidthMaxXLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXXLarge\", function() { return ScreenWidthMaxXXLarge; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinUhfMobile\", function() { return ScreenWidthMinUhfMobile; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getScreenSelector\", function() { return getScreenSelector; });\nvar HighContrastSelector = '@media screen and (-ms-high-contrast: active)';\r\nvar HighContrastSelectorWhite = '@media screen and (-ms-high-contrast: black-on-white)';\r\nvar HighContrastSelectorBlack = '@media screen and (-ms-high-contrast: white-on-black)';\r\nvar ScreenWidthMinSmall = 320;\r\nvar ScreenWidthMinMedium = 480;\r\nvar ScreenWidthMinLarge = 640;\r\nvar ScreenWidthMinXLarge = 1024;\r\nvar ScreenWidthMinXXLarge = 1366;\r\nvar ScreenWidthMinXXXLarge = 1920;\r\nvar ScreenWidthMaxSmall = ScreenWidthMinMedium - 1;\r\nvar ScreenWidthMaxMedium = ScreenWidthMinLarge - 1;\r\nvar ScreenWidthMaxLarge = ScreenWidthMinXLarge - 1;\r\nvar ScreenWidthMaxXLarge = ScreenWidthMinXXLarge - 1;\r\nvar ScreenWidthMaxXXLarge = ScreenWidthMinXXXLarge - 1;\r\nvar ScreenWidthMinUhfMobile = 768;\r\nfunction getScreenSelector(min, max) {\r\n return \"@media only screen and (min-width: \" + min + \"px) and (max-width: \" + max + \"px)\";\r\n}\r\n//# sourceMappingURL=CommonStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/CommonStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js":
/*!*********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js ***!
\*********************************************************************/
/*! exports provided: DefaultEffects */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultEffects\", function() { return DefaultEffects; });\nvar DefaultEffects = {\r\n // commented values are the defaults for Fluent\r\n elevation4: { boxShadow: '0 0 5px 0 rgba(0,0,0,.4)' },\r\n elevation8: { boxShadow: '0 0 5px 0 rgba(0,0,0,.4)' },\r\n elevation16: { boxShadow: '0 0 5px 0 rgba(0,0,0,.4)' },\r\n elevation64: { boxShadow: '0 0 5px 0 rgba(0,0,0,.4)' },\r\n roundedCorner2: 0 // 2\r\n};\r\n//# sourceMappingURL=DefaultEffects.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js":
/*!************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js ***!
\************************************************************************/
/*! exports provided: DefaultFontStyles, registerDefaultFontFaces */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultFontStyles\", function() { return DefaultFontStyles; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"registerDefaultFontFaces\", function() { return registerDefaultFontFaces; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n/* harmony import */ var _fonts__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fonts */ \"./node_modules/@uifabric/styling/lib/styles/fonts.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n\r\n\r\n\r\n// Default urls.\r\nvar DefaultBaseUrl = 'https://static2.sharepointonline.com/files/fabric/assets';\r\n// Standard font styling.\r\nvar DefaultFontStyles = Object(_fonts__WEBPACK_IMPORTED_MODULE_1__[\"createFontStyles\"])(Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_2__[\"getLanguage\"])());\r\nfunction _registerFontFace(fontFamily, url, fontWeight, localFontName) {\r\n fontFamily = \"'\" + fontFamily + \"'\";\r\n var localFontSrc = localFontName !== undefined ? \"local('\" + localFontName + \"'),\" : '';\r\n Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"fontFace\"])({\r\n fontFamily: fontFamily,\r\n src: localFontSrc + (\"url('\" + url + \".woff2') format('woff2'),\") + (\"url('\" + url + \".woff') format('woff')\"),\r\n fontWeight: fontWeight,\r\n fontStyle: 'normal'\r\n });\r\n}\r\nfunction _registerFontFaceSet(baseUrl, fontFamily, cdnFolder, cdnFontName, localFontName) {\r\n if (cdnFontName === void 0) { cdnFontName = 'segoeui'; }\r\n var urlBase = baseUrl + \"/\" + cdnFolder + \"/\" + cdnFontName;\r\n _registerFontFace(fontFamily, urlBase + '-light', _fonts__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"].light, localFontName && localFontName + ' Light');\r\n _registerFontFace(fontFamily, urlBase + '-semilight', _fonts__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"].semilight, localFontName && localFontName + ' SemiLight');\r\n _registerFontFace(fontFamily, urlBase + '-regular', _fonts__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"].regular, localFontName);\r\n _registerFontFace(fontFamily, urlBase + '-semibold', _fonts__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"].semibold, localFontName && localFontName + ' SemiBold');\r\n}\r\nfunction registerDefaultFontFaces(baseUrl) {\r\n if (baseUrl) {\r\n var fontUrl = baseUrl + \"/fonts\";\r\n // Produce @font-face definitions for all supported web fonts.\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].Thai, 'leelawadeeui-thai', 'leelawadeeui');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].Arabic, 'segoeui-arabic');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].Cyrillic, 'segoeui-cyrillic');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].EastEuropean, 'segoeui-easteuropean');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].Greek, 'segoeui-greek');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].Hebrew, 'segoeui-hebrew');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].Vietnamese, 'segoeui-vietnamese');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontNames\"].WestEuropean, 'segoeui-westeuropean', 'segoeui', 'Segoe UI');\r\n _registerFontFaceSet(fontUrl, _fonts__WEBPACK_IMPORTED_MODULE_1__[\"LocalizedFontFamilies\"].Selawik, 'selawik', 'selawik');\r\n // Leelawadee UI (Thai) does not have a 'light' weight, so we override\r\n // the font-face generated above to use the 'semilight' weight instead.\r\n _registerFontFace('Leelawadee UI Web', fontUrl + \"/leelawadeeui-thai/leelawadeeui-semilight\", _fonts__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"].light);\r\n // Leelawadee UI (Thai) does not have a 'semibold' weight, so we override\r\n // the font-face generated above to use the 'bold' weight instead.\r\n _registerFontFace('Leelawadee UI Web', fontUrl + \"/leelawadeeui-thai/leelawadeeui-bold\", _fonts__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"].semibold);\r\n }\r\n}\r\n/**\r\n * Reads the fontBaseUrl from window.FabricConfig.fontBaseUrl or falls back to a default.\r\n */\r\nfunction _getFontBaseUrl() {\r\n var win = typeof window !== 'undefined' ? window : undefined;\r\n // tslint:disable-next-line:no-string-literal no-any\r\n var fabricConfig = win ? win['FabricConfig'] : undefined;\r\n return fabricConfig && fabricConfig.fontBaseUrl !== undefined ? fabricConfig.fontBaseUrl : DefaultBaseUrl;\r\n}\r\n/**\r\n * Register the font faces.\r\n */\r\nregisterDefaultFontFaces(_getFontBaseUrl());\r\n//# sourceMappingURL=DefaultFontStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js":
/*!*********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js ***!
\*********************************************************************/
/*! exports provided: DefaultPalette */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultPalette\", function() { return DefaultPalette; });\n// When adding or removing a color, make sure you keep this consistent with IColorClassNames by adding the color variants.\r\nvar DefaultPalette = {\r\n themeDarker: '#004578',\r\n themeDark: '#005a9e',\r\n themeDarkAlt: '#106ebe',\r\n themePrimary: '#0078d4',\r\n themeSecondary: '#2b88d8',\r\n themeTertiary: '#71afe5',\r\n themeLight: '#c7e0f4',\r\n themeLighter: '#deecf9',\r\n themeLighterAlt: '#eff6fc',\r\n black: '#000000',\r\n blackTranslucent40: 'rgba(0,0,0,.4)',\r\n neutralDark: '#212121',\r\n neutralPrimary: '#333333',\r\n neutralPrimaryAlt: '#3c3c3c',\r\n neutralSecondary: '#666666',\r\n neutralSecondaryAlt: '#767676',\r\n neutralTertiary: '#a6a6a6',\r\n neutralTertiaryAlt: '#c8c8c8',\r\n neutralQuaternary: '#d0d0d0',\r\n neutralQuaternaryAlt: '#dadada',\r\n neutralLight: '#eaeaea',\r\n neutralLighter: '#f4f4f4',\r\n neutralLighterAlt: '#f8f8f8',\r\n accent: '#0078d4',\r\n white: '#ffffff',\r\n whiteTranslucent40: 'rgba(255,255,255,.4)',\r\n yellow: '#ffb900',\r\n yellowLight: '#fff100',\r\n orange: '#d83b01',\r\n orangeLight: '#ea4300',\r\n orangeLighter: '#ff8c00',\r\n redDark: '#a80000',\r\n red: '#e81123',\r\n magentaDark: '#5c005c',\r\n magenta: '#b4009e',\r\n magentaLight: '#e3008c',\r\n purpleDark: '#32145a',\r\n purple: '#5c2d91',\r\n purpleLight: '#b4a0ff',\r\n blueDark: '#002050',\r\n blueMid: '#00188f',\r\n blue: '#0078d4',\r\n blueLight: '#00bcf2',\r\n tealDark: '#004b50',\r\n teal: '#008272',\r\n tealLight: '#00b294',\r\n greenDark: '#004b1c',\r\n green: '#107c10',\r\n greenLight: '#bad80a'\r\n};\r\n//# sourceMappingURL=DefaultPalette.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/DefaultSpacing.js":
/*!*********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/DefaultSpacing.js ***!
\*********************************************************************/
/*! exports provided: DefaultSpacing */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DefaultSpacing\", function() { return DefaultSpacing; });\nvar DefaultSpacing = {\r\n s2: '4px',\r\n s1: '8px',\r\n m: '16px',\r\n l1: '20px',\r\n l2: '32px'\r\n};\r\n//# sourceMappingURL=DefaultSpacing.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/DefaultSpacing.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/GeneralStyles.js":
/*!********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/GeneralStyles.js ***!
\********************************************************************/
/*! exports provided: normalize, noWrap */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"normalize\", function() { return normalize; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"noWrap\", function() { return noWrap; });\n// This file mimics styles and mixins from _General.Mixins.scss\r\nvar normalize = {\r\n boxShadow: 'none',\r\n margin: 0,\r\n padding: 0,\r\n boxSizing: 'border-box'\r\n};\r\nvar noWrap = {\r\n overflow: 'hidden',\r\n textOverflow: 'ellipsis',\r\n whiteSpace: 'nowrap'\r\n};\r\n//# sourceMappingURL=GeneralStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/GeneralStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js":
/*!***********************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js ***!
\***********************************************************************************/
/*! exports provided: PulsingBeaconAnimationStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"PulsingBeaconAnimationStyles\", function() { return PulsingBeaconAnimationStyles; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n\r\nvar DEFAULT_DURATION = '14s';\r\nvar DEFAULT_DELAY = '2s';\r\nvar DEFAULT_ITERATION_COUNT = '1';\r\nfunction _continuousPulseStepOne(beaconColorOne, innerDimension) {\r\n return {\r\n borderColor: beaconColorOne,\r\n borderWidth: '0px',\r\n width: innerDimension,\r\n height: innerDimension\r\n };\r\n}\r\nfunction _continuousPulseStepTwo(borderWidth) {\r\n return {\r\n opacity: 1,\r\n borderWidth: borderWidth\r\n };\r\n}\r\nfunction _continuousPulseStepThree() {\r\n return {\r\n opacity: 1\r\n };\r\n}\r\nfunction _continuousPulseStepFour(beaconColorTwo, outerDimension) {\r\n return {\r\n borderWidth: '0',\r\n width: outerDimension,\r\n height: outerDimension,\r\n opacity: 0,\r\n borderColor: beaconColorTwo\r\n };\r\n}\r\nfunction _continuousPulseStepFive(beaconColorOne, innerDimension) {\r\n return tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _continuousPulseStepOne(beaconColorOne, innerDimension), {\r\n opacity: 0\r\n });\r\n}\r\nfunction _continuousPulseAnimationDouble(beaconColorOne, beaconColorTwo, innerDimension, outerDimension, borderWidth) {\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_1__[\"keyframes\"])({\r\n '0%': _continuousPulseStepOne(beaconColorOne, innerDimension),\r\n '1.42%': _continuousPulseStepTwo(borderWidth),\r\n '3.57%': _continuousPulseStepThree(),\r\n '7.14%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\r\n '8%': _continuousPulseStepFive(beaconColorOne, innerDimension),\r\n '29.99%': _continuousPulseStepFive(beaconColorOne, innerDimension),\r\n '30%': _continuousPulseStepOne(beaconColorOne, innerDimension),\r\n '31.42%': _continuousPulseStepTwo(borderWidth),\r\n '33.57%': _continuousPulseStepThree(),\r\n '37.14%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\r\n '38%': _continuousPulseStepFive(beaconColorOne, innerDimension),\r\n '79.42%': _continuousPulseStepFive(beaconColorOne, innerDimension),\r\n '79.43': _continuousPulseStepOne(beaconColorOne, innerDimension),\r\n '81.85': _continuousPulseStepTwo(borderWidth),\r\n '83.42': _continuousPulseStepThree(),\r\n '87%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\r\n '100%': {}\r\n });\r\n}\r\nfunction _continuousPulseAnimationSingle(beaconColorOne, beaconColorTwo, innerDimension, outerDimension, borderWidth) {\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_1__[\"keyframes\"])({\r\n '0%': _continuousPulseStepOne(beaconColorOne, innerDimension),\r\n '14.2%': _continuousPulseStepTwo(borderWidth),\r\n '35.7%': _continuousPulseStepThree(),\r\n '71.4%': _continuousPulseStepFour(beaconColorTwo, outerDimension),\r\n '100%': {}\r\n });\r\n}\r\nfunction _createDefaultAnimation(animationName, delayLength) {\r\n return {\r\n animationName: animationName,\r\n animationIterationCount: DEFAULT_ITERATION_COUNT,\r\n animationDuration: DEFAULT_DURATION,\r\n animationDelay: delayLength || DEFAULT_DELAY\r\n };\r\n}\r\nvar PulsingBeaconAnimationStyles = {\r\n continuousPulseAnimationDouble: _continuousPulseAnimationDouble,\r\n continuousPulseAnimationSingle: _continuousPulseAnimationSingle,\r\n createDefaultAnimation: _createDefaultAnimation\r\n};\r\n//# sourceMappingURL=PulsingBeaconAnimationStyles.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/fonts.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/fonts.js ***!
\************************************************************/
/*! exports provided: LocalizedFontNames, LocalizedFontFamilies, FontSizes, FontWeights, IconFontSizes, createFontStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LocalizedFontNames\", function() { return LocalizedFontNames; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"LocalizedFontFamilies\", function() { return LocalizedFontFamilies; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FontSizes\", function() { return FontSizes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FontWeights\", function() { return FontWeights; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IconFontSizes\", function() { return IconFontSizes; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createFontStyles\", function() { return createFontStyles; });\n// Fallback fonts, if specified system or web fonts are unavailable.\r\nvar FontFamilyFallbacks = \"'Segoe UI', -apple-system, BlinkMacSystemFont, 'Roboto', 'Helvetica Neue', sans-serif\";\r\n// Font face names to be registered.\r\nvar LocalizedFontNames;\r\n(function (LocalizedFontNames) {\r\n LocalizedFontNames.Arabic = 'Segoe UI Web (Arabic)';\r\n LocalizedFontNames.Cyrillic = 'Segoe UI Web (Cyrillic)';\r\n LocalizedFontNames.EastEuropean = 'Segoe UI Web (East European)';\r\n LocalizedFontNames.Greek = 'Segoe UI Web (Greek)';\r\n LocalizedFontNames.Hebrew = 'Segoe UI Web (Hebrew)';\r\n LocalizedFontNames.Thai = 'Leelawadee UI Web';\r\n LocalizedFontNames.Vietnamese = 'Segoe UI Web (Vietnamese)';\r\n LocalizedFontNames.WestEuropean = 'Segoe UI Web (West European)';\r\n LocalizedFontNames.Selawik = 'Selawik Web';\r\n})(LocalizedFontNames || (LocalizedFontNames = {}));\r\n// Font families with fallbacks, for the general regions.\r\nvar LocalizedFontFamilies;\r\n(function (LocalizedFontFamilies) {\r\n LocalizedFontFamilies.Arabic = \"'\" + LocalizedFontNames.Arabic + \"'\";\r\n LocalizedFontFamilies.ChineseSimplified = \"'Microsoft Yahei UI', Verdana, Simsun\";\r\n LocalizedFontFamilies.ChineseTraditional = \"'Microsoft Jhenghei UI', Pmingliu\";\r\n LocalizedFontFamilies.Cyrillic = \"'\" + LocalizedFontNames.Cyrillic + \"'\";\r\n LocalizedFontFamilies.EastEuropean = \"'\" + LocalizedFontNames.EastEuropean + \"'\";\r\n LocalizedFontFamilies.Greek = \"'\" + LocalizedFontNames.Greek + \"'\";\r\n LocalizedFontFamilies.Hebrew = \"'\" + LocalizedFontNames.Hebrew + \"'\";\r\n LocalizedFontFamilies.Hindi = \"'Nirmala UI'\";\r\n LocalizedFontFamilies.Japanese = \"'Yu Gothic UI', 'Meiryo UI', Meiryo, 'MS Pgothic', Osaka\";\r\n LocalizedFontFamilies.Korean = \"'Malgun Gothic', Gulim\";\r\n LocalizedFontFamilies.Selawik = \"'\" + LocalizedFontNames.Selawik + \"'\";\r\n LocalizedFontFamilies.Thai = \"'Leelawadee UI Web', 'Kmer UI'\";\r\n LocalizedFontFamilies.Vietnamese = \"'\" + LocalizedFontNames.Vietnamese + \"'\";\r\n LocalizedFontFamilies.WestEuropean = \"'\" + LocalizedFontNames.WestEuropean + \"'\";\r\n})(LocalizedFontFamilies || (LocalizedFontFamilies = {}));\r\n// By default, we favor system fonts for the default.\r\n// All localized fonts use a web font and never use the system font.\r\nvar defaultFontFamily = \"'Segoe UI', '\" + LocalizedFontNames.WestEuropean + \"'\";\r\n// Mapping of language prefix to to font family.\r\nvar LanguageToFontMap = {\r\n ar: LocalizedFontFamilies.Arabic,\r\n bg: LocalizedFontFamilies.Cyrillic,\r\n cs: LocalizedFontFamilies.EastEuropean,\r\n el: LocalizedFontFamilies.Greek,\r\n et: LocalizedFontFamilies.EastEuropean,\r\n he: LocalizedFontFamilies.Hebrew,\r\n hi: LocalizedFontFamilies.Hindi,\r\n hr: LocalizedFontFamilies.EastEuropean,\r\n hu: LocalizedFontFamilies.EastEuropean,\r\n ja: LocalizedFontFamilies.Japanese,\r\n kk: LocalizedFontFamilies.EastEuropean,\r\n ko: LocalizedFontFamilies.Korean,\r\n lt: LocalizedFontFamilies.EastEuropean,\r\n lv: LocalizedFontFamilies.EastEuropean,\r\n pl: LocalizedFontFamilies.EastEuropean,\r\n ru: LocalizedFontFamilies.Cyrillic,\r\n sk: LocalizedFontFamilies.EastEuropean,\r\n 'sr-latn': LocalizedFontFamilies.EastEuropean,\r\n th: LocalizedFontFamilies.Thai,\r\n tr: LocalizedFontFamilies.EastEuropean,\r\n uk: LocalizedFontFamilies.Cyrillic,\r\n vi: LocalizedFontFamilies.Vietnamese,\r\n 'zh-hans': LocalizedFontFamilies.ChineseSimplified,\r\n 'zh-hant': LocalizedFontFamilies.ChineseTraditional\r\n};\r\n// Standard font sizes.\r\nvar FontSizes;\r\n(function (FontSizes) {\r\n FontSizes.mini = '10px';\r\n FontSizes.xSmall = '11px';\r\n FontSizes.small = '12px';\r\n FontSizes.smallPlus = '13px';\r\n FontSizes.medium = '14px';\r\n FontSizes.mediumPlus = '15px';\r\n FontSizes.icon = '16px';\r\n FontSizes.large = '17px';\r\n FontSizes.xLarge = '21px';\r\n FontSizes.xxLarge = '28px';\r\n FontSizes.superLarge = '42px';\r\n FontSizes.mega = '72px';\r\n})(FontSizes || (FontSizes = {}));\r\n// Standard font weights.\r\nvar FontWeights;\r\n(function (FontWeights) {\r\n FontWeights.light = 100;\r\n FontWeights.semilight = 300;\r\n FontWeights.regular = 400;\r\n FontWeights.semibold = 600;\r\n FontWeights.bold = 700;\r\n})(FontWeights || (FontWeights = {}));\r\n// Standard Icon Sizes.\r\nvar IconFontSizes;\r\n(function (IconFontSizes) {\r\n IconFontSizes.xSmall = '10px';\r\n IconFontSizes.small = '12px';\r\n IconFontSizes.medium = '16px';\r\n IconFontSizes.large = '20px';\r\n})(IconFontSizes || (IconFontSizes = {}));\r\nfunction _fontFamilyWithFallbacks(fontFamily) {\r\n return fontFamily + \", \" + FontFamilyFallbacks;\r\n}\r\nfunction createFontStyles(localeCode) {\r\n var localizedFont = _getLocalizedFontFamily(localeCode);\r\n var fontFamilyWithFallback = _fontFamilyWithFallbacks(localizedFont);\r\n var semilightFontFamilyWithFallback = fontFamilyWithFallback;\r\n // Chrome has a bug where it does not render Segoe UI Semilight correctly, so we force the webfont to be used in that case\r\n if (localizedFont === defaultFontFamily) {\r\n semilightFontFamilyWithFallback = _fontFamilyWithFallbacks(LocalizedFontFamilies.WestEuropean);\r\n }\r\n var fontStyles = {\r\n tiny: _createFont(FontSizes.mini, FontWeights.semibold, fontFamilyWithFallback),\r\n xSmall: _createFont(FontSizes.xSmall, FontWeights.regular, fontFamilyWithFallback),\r\n small: _createFont(FontSizes.small, FontWeights.regular, fontFamilyWithFallback),\r\n smallPlus: _createFont(FontSizes.smallPlus, FontWeights.regular, fontFamilyWithFallback),\r\n medium: _createFont(FontSizes.medium, FontWeights.regular, fontFamilyWithFallback),\r\n mediumPlus: _createFont(FontSizes.mediumPlus, FontWeights.regular, fontFamilyWithFallback),\r\n large: _createFont(FontSizes.large, FontWeights.semilight, semilightFontFamilyWithFallback),\r\n xLarge: _createFont(FontSizes.xLarge, FontWeights.light, fontFamilyWithFallback),\r\n xxLarge: _createFont(FontSizes.xxLarge, FontWeights.light, fontFamilyWithFallback),\r\n superLarge: _createFont(FontSizes.superLarge, FontWeights.light, fontFamilyWithFallback),\r\n mega: _createFont(FontSizes.mega, FontWeights.light, fontFamilyWithFallback)\r\n };\r\n return fontStyles;\r\n}\r\n/**\r\n * If there is a localized font for this language, return that. Returns undefined if there is no localized font for that language.\r\n */\r\nfunction _getLocalizedFontFamily(language) {\r\n for (var lang in LanguageToFontMap) {\r\n if (LanguageToFontMap.hasOwnProperty(lang) && language && lang.indexOf(language) === 0) {\r\n // tslint:disable-next-line:no-any\r\n return LanguageToFontMap[lang];\r\n }\r\n }\r\n return defaultFontFamily;\r\n}\r\nfunction _createFont(size, weight, fontFamily) {\r\n return {\r\n fontFamily: fontFamily,\r\n MozOsxFontSmoothing: 'grayscale',\r\n WebkitFontSmoothing: 'antialiased',\r\n fontSize: size,\r\n fontWeight: weight\r\n };\r\n}\r\n//# sourceMappingURL=fonts.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/fonts.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js":
/*!****************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js ***!
\****************************************************************************/
/*! exports provided: getFadedOverflowStyle */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getFadedOverflowStyle\", function() { return getFadedOverflowStyle; });\nvar DEFAULT_HEIGHT = '50%';\r\nvar DEFAULT_WIDTH = 20;\r\n/**\r\n * - Generates a style used to fade out an overflowing content by defining a style for an :after pseudo element.\r\n * - Apply it to the :after selector for all combination of states the parent of content might have (normal, hover, selected, focus).\r\n * - Requires the target to have position set to relative and overflow set to hidden.\r\n *\r\n * @example\r\n * ```tsx\r\n * // Assuming the following DOM structure and the different background colors coming from the parent holding the content.\r\n * \r\n * Overflown Content\r\n *
\r\n * ```\r\n * ```ts\r\n * // This is how the style set would look in Component.styles.ts\r\n * const { bodyBackground } = theme.semanticColors;\r\n * const { neutralLighter } = theme.palette;\r\n *\r\n * // The second argument of getFadedOverflowStyle function is a string representing a key of ISemanticColors or IPalette.\r\n *\r\n * const styles = {\r\n * parent: [\r\n * backgroundColor: bodyBackground,\r\n * selectors: {\r\n * '&:hover: {\r\n * backgroundColor: neutralLighter\r\n * },\r\n * '$content:after': {\r\n * ...getFadedOverflowStyle(theme, 'bodyBackground')\r\n * },\r\n * '&:hover $content:after': {\r\n * ...getFadedOverflowStyle(theme, 'neutralLighter')\r\n * }\r\n * }\r\n * ],\r\n * content: [\r\n * width: '100%',\r\n * display: 'inline-block',\r\n * position: 'relative',\r\n * overflow: 'hidden'\r\n * ]\r\n * }\r\n * ```\r\n * @param theme - The theme object to use.\r\n * @param color - The background color to fade out to. Accepts only keys of ISemanticColors or IPalette. Defaults to 'bodyBackground'.\r\n * @param direction - The direction of the overflow. Defaults to horizontal.\r\n * @param width - The width of the fading overflow. Vertical direction defaults it to 100% vs 20px when horizontal.\r\n * @param height - The Height of the fading overflow. Vertical direction defaults it to 50% vs 100% when horizontal.\r\n * @returns The style object.\r\n */\r\nfunction getFadedOverflowStyle(theme, color, direction, width, height) {\r\n if (color === void 0) { color = 'bodyBackground'; }\r\n if (direction === void 0) { direction = 'horizontal'; }\r\n if (width === void 0) { width = getDefaultValue('width', direction); }\r\n if (height === void 0) { height = getDefaultValue('height', direction); }\r\n // Get the color value string from the theme semanticColors or palette.\r\n var colorValue = theme.semanticColors[color] || theme.palette[color];\r\n // Get the red, green, blue values of the colorValue.\r\n var rgbColor = color2rgb(colorValue);\r\n // Apply opacity 0 to serve as a start color of the gradient.\r\n var rgba = \"rgba(\" + rgbColor.r + \", \" + rgbColor.g + \", \" + rgbColor.b + \", 0)\";\r\n // Get the direction of the gradient.\r\n var gradientDirection = direction === 'vertical' ? 'to bottom' : 'to right'; // mergeStyles take care of RTL direction.\r\n return {\r\n content: '\"\"',\r\n position: 'absolute',\r\n right: 0,\r\n bottom: 0,\r\n width: width,\r\n height: height,\r\n pointerEvents: 'none',\r\n backgroundImage: \"linear-gradient(\" + gradientDirection + \", \" + rgba + \" 0%, \" + colorValue + \" 100%)\"\r\n };\r\n}\r\n// TODO consider moving this to a separate module along with some more color functions from OUFR/utilities.\r\n/**\r\n * Helper function to convert a string hex color to an RGB object.\r\n *\r\n * @param colorValue - Color to be converted from hex to rgba.\r\n */\r\nfunction color2rgb(colorValue) {\r\n if (colorValue[0] === '#') {\r\n // If it's a hex code\r\n return {\r\n r: parseInt(colorValue.slice(1, 3), 16),\r\n g: parseInt(colorValue.slice(3, 5), 16),\r\n b: parseInt(colorValue.slice(5, 7), 16)\r\n };\r\n }\r\n else if (colorValue.indexOf('rgba(') === 0) {\r\n // If it's an rgba color string\r\n colorValue = colorValue.match(/rgba\\(([^)]+)\\)/)[1];\r\n var parts = colorValue.split(/ *, */).map(Number);\r\n return {\r\n r: parts[0],\r\n g: parts[1],\r\n b: parts[2]\r\n };\r\n }\r\n // The only remaining possibility is transparent.\r\n return {\r\n r: 255,\r\n g: 255,\r\n b: 255\r\n };\r\n}\r\n/**\r\n * Helper function to get the default values for parameters of main function.\r\n *\r\n * @param style - Which style to get the default value for.\r\n * @param direction - What direction to take into consideration.\r\n */\r\nfunction getDefaultValue(style, direction) {\r\n if (style === 'width') {\r\n return direction === 'horizontal' ? DEFAULT_WIDTH : '100%';\r\n }\r\n else {\r\n return direction === 'vertical' ? DEFAULT_HEIGHT : '100%';\r\n }\r\n}\r\n//# sourceMappingURL=getFadedOverflowStyle.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js":
/*!********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js ***!
\********************************************************************/
/*! exports provided: getFocusStyle, focusClear */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getFocusStyle\", function() { return getFocusStyle; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"focusClear\", function() { return focusClear; });\n/* harmony import */ var _CommonStyles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CommonStyles */ \"./node_modules/@uifabric/styling/lib/styles/CommonStyles.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n/* harmony import */ var _zIndexes__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./zIndexes */ \"./node_modules/@uifabric/styling/lib/styles/zIndexes.js\");\n\r\n\r\n\r\n/**\r\n * Generates a focus style which can be used to define an :after focus border.\r\n *\r\n * @param theme - The theme object to use.\r\n * @param inset - The number of pixels to inset the border.\r\n * @param position - The positioning applied to the container. Must\r\n * be 'relative' or 'absolute' so that the focus border can live around it.\r\n * @param highContrastStyle - Style for high contrast mode.\r\n * @param borderColor - Color of the border.\r\n * @param outlineColor - Color of the outline.\r\n * @param isFocusedOnly - If the styles should apply on focus or not.\r\n * @returns The style object.\r\n */\r\nfunction getFocusStyle(theme, inset, position, highContrastStyle, borderColor, outlineColor, isFocusedOnly) {\r\n if (inset === void 0) { inset = 0; }\r\n if (position === void 0) { position = 'relative'; }\r\n if (highContrastStyle === void 0) { highContrastStyle = undefined; }\r\n if (borderColor === void 0) { borderColor = theme.palette.white; }\r\n if (outlineColor === void 0) { outlineColor = theme.palette.neutralSecondary; }\r\n if (isFocusedOnly === void 0) { isFocusedOnly = true; }\r\n return {\r\n outline: 'transparent',\r\n position: position,\r\n selectors: (_a = {\r\n '::-moz-focus-inner': {\r\n border: '0'\r\n }\r\n },\r\n _a[\".\" + _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"IsFocusVisibleClassName\"] + \" &\" + (isFocusedOnly ? ':focus' : '') + \":after\"] = {\r\n content: '\"\"',\r\n position: 'absolute',\r\n left: inset + 1,\r\n top: inset + 1,\r\n bottom: inset + 1,\r\n right: inset + 1,\r\n border: '1px solid ' + borderColor,\r\n outline: '1px solid ' + outlineColor,\r\n zIndex: _zIndexes__WEBPACK_IMPORTED_MODULE_2__[\"ZIndexes\"].FocusStyle,\r\n selectors: (_b = {},\r\n _b[_CommonStyles__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = highContrastStyle,\r\n _b)\r\n },\r\n _a)\r\n };\r\n var _a, _b;\r\n}\r\n/**\r\n * Generates style to clear browser specific focus styles.\r\n */\r\nfunction focusClear() {\r\n return {\r\n selectors: {\r\n '&::-moz-focus-inner': {\r\n // Clear the focus border in Firefox. Reference: http://stackoverflow.com/a/199319/1436671\r\n border: 0\r\n },\r\n '&': {\r\n // Clear browser specific focus styles and use transparent as placeholder for focus style\r\n outline: 'transparent'\r\n }\r\n }\r\n };\r\n}\r\n//# sourceMappingURL=getFocusStyle.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js":
/*!**************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js ***!
\**************************************************************************/
/*! exports provided: getGlobalClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getGlobalClassNames\", function() { return getGlobalClassNames; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n\r\n\r\n/**\r\n * Internal memoized function which simply takes in the class map and the\r\n * disable boolean. These immutable values can be memoized.\r\n */\r\nvar _getGlobalClassNames = Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"memoizeFunction\"])(function (classNames, disableGlobalClassNames) {\r\n var styleSheet = _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\n if (disableGlobalClassNames) {\r\n // disable global classnames\r\n return Object.keys(classNames).reduce(function (acc, className) {\r\n acc[className] = styleSheet.getClassName(classNames[className]);\r\n return acc;\r\n }, {});\r\n }\r\n // use global classnames\r\n return classNames;\r\n});\r\n/**\r\n * Checks for the `disableGlobalClassNames` property on the `theme` to determine if it should return `classNames`\r\n * Note that calls to this function are memoized.\r\n *\r\n * @param classNames - The collection of global class names that apply when the flag is false. Make sure to pass in\r\n * the same instance on each call to benefit from memoization.\r\n * @param theme - The theme to check the flag on\r\n * @param disableGlobalClassNames - Optional. Explicitly opt in/out of disabling global classnames. Defaults to false.\r\n */\r\nfunction getGlobalClassNames(classNames, theme, disableGlobalClassNames) {\r\n return _getGlobalClassNames(classNames, disableGlobalClassNames !== undefined ? disableGlobalClassNames : theme.disableGlobalClassNames);\r\n}\r\n//# sourceMappingURL=getGlobalClassNames.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js":
/*!*************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js ***!
\*************************************************************************/
/*! exports provided: hiddenContentStyle */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hiddenContentStyle\", function() { return hiddenContentStyle; });\nvar hiddenContentStyle = {\r\n position: 'absolute',\r\n width: 1,\r\n height: 1,\r\n margin: -1,\r\n padding: 0,\r\n border: 0,\r\n overflow: 'hidden'\r\n};\r\n//# sourceMappingURL=hiddenContentStyle.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/index.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/index.js ***!
\************************************************************/
/*! exports provided: AnimationStyles, AnimationVariables, DefaultPalette, DefaultFontStyles, registerDefaultFontFaces, FontSizes, FontWeights, IconFontSizes, createFontStyles, getFocusStyle, focusClear, hiddenContentStyle, PulsingBeaconAnimationStyles, getGlobalClassNames, ThemeSettingName, getTheme, loadTheme, createTheme, registerOnThemeChangeCallback, removeOnThemeChangeCallback, getThemedContext, HighContrastSelector, HighContrastSelectorWhite, HighContrastSelectorBlack, ScreenWidthMinSmall, ScreenWidthMinMedium, ScreenWidthMinLarge, ScreenWidthMinXLarge, ScreenWidthMinXXLarge, ScreenWidthMinXXXLarge, ScreenWidthMaxSmall, ScreenWidthMaxMedium, ScreenWidthMaxLarge, ScreenWidthMaxXLarge, ScreenWidthMaxXXLarge, ScreenWidthMinUhfMobile, getScreenSelector, normalize, noWrap, getFadedOverflowStyle, ZIndexes */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _AnimationStyles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AnimationStyles */ \"./node_modules/@uifabric/styling/lib/styles/AnimationStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationStyles\", function() { return _AnimationStyles__WEBPACK_IMPORTED_MODULE_0__[\"AnimationStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationVariables\", function() { return _AnimationStyles__WEBPACK_IMPORTED_MODULE_0__[\"AnimationVariables\"]; });\n\n/* harmony import */ var _DefaultPalette__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./DefaultPalette */ \"./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPalette\", function() { return _DefaultPalette__WEBPACK_IMPORTED_MODULE_1__[\"DefaultPalette\"]; });\n\n/* harmony import */ var _DefaultFontStyles__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DefaultFontStyles */ \"./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultFontStyles\", function() { return _DefaultFontStyles__WEBPACK_IMPORTED_MODULE_2__[\"DefaultFontStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerDefaultFontFaces\", function() { return _DefaultFontStyles__WEBPACK_IMPORTED_MODULE_2__[\"registerDefaultFontFaces\"]; });\n\n/* harmony import */ var _fonts__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./fonts */ \"./node_modules/@uifabric/styling/lib/styles/fonts.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontSizes\", function() { return _fonts__WEBPACK_IMPORTED_MODULE_3__[\"FontSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontWeights\", function() { return _fonts__WEBPACK_IMPORTED_MODULE_3__[\"FontWeights\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IconFontSizes\", function() { return _fonts__WEBPACK_IMPORTED_MODULE_3__[\"IconFontSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createFontStyles\", function() { return _fonts__WEBPACK_IMPORTED_MODULE_3__[\"createFontStyles\"]; });\n\n/* harmony import */ var _getFocusStyle__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./getFocusStyle */ \"./node_modules/@uifabric/styling/lib/styles/getFocusStyle.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFocusStyle\", function() { return _getFocusStyle__WEBPACK_IMPORTED_MODULE_4__[\"getFocusStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusClear\", function() { return _getFocusStyle__WEBPACK_IMPORTED_MODULE_4__[\"focusClear\"]; });\n\n/* harmony import */ var _hiddenContentStyle__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./hiddenContentStyle */ \"./node_modules/@uifabric/styling/lib/styles/hiddenContentStyle.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hiddenContentStyle\", function() { return _hiddenContentStyle__WEBPACK_IMPORTED_MODULE_5__[\"hiddenContentStyle\"]; });\n\n/* harmony import */ var _PulsingBeaconAnimationStyles__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./PulsingBeaconAnimationStyles */ \"./node_modules/@uifabric/styling/lib/styles/PulsingBeaconAnimationStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PulsingBeaconAnimationStyles\", function() { return _PulsingBeaconAnimationStyles__WEBPACK_IMPORTED_MODULE_6__[\"PulsingBeaconAnimationStyles\"]; });\n\n/* harmony import */ var _getGlobalClassNames__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./getGlobalClassNames */ \"./node_modules/@uifabric/styling/lib/styles/getGlobalClassNames.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getGlobalClassNames\", function() { return _getGlobalClassNames__WEBPACK_IMPORTED_MODULE_7__[\"getGlobalClassNames\"]; });\n\n/* harmony import */ var _scheme__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./scheme */ \"./node_modules/@uifabric/styling/lib/styles/scheme.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getThemedContext\", function() { return _scheme__WEBPACK_IMPORTED_MODULE_8__[\"getThemedContext\"]; });\n\n/* harmony import */ var _theme__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./theme */ \"./node_modules/@uifabric/styling/lib/styles/theme.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThemeSettingName\", function() { return _theme__WEBPACK_IMPORTED_MODULE_9__[\"ThemeSettingName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getTheme\", function() { return _theme__WEBPACK_IMPORTED_MODULE_9__[\"getTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loadTheme\", function() { return _theme__WEBPACK_IMPORTED_MODULE_9__[\"loadTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createTheme\", function() { return _theme__WEBPACK_IMPORTED_MODULE_9__[\"createTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerOnThemeChangeCallback\", function() { return _theme__WEBPACK_IMPORTED_MODULE_9__[\"registerOnThemeChangeCallback\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"removeOnThemeChangeCallback\", function() { return _theme__WEBPACK_IMPORTED_MODULE_9__[\"removeOnThemeChangeCallback\"]; });\n\n/* harmony import */ var _CommonStyles__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./CommonStyles */ \"./node_modules/@uifabric/styling/lib/styles/CommonStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelector\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"HighContrastSelector\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorWhite\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"HighContrastSelectorWhite\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorBlack\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"HighContrastSelectorBlack\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinSmall\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinSmall\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinMedium\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinMedium\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXXLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinXXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxSmall\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMaxSmall\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxMedium\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMaxMedium\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMaxLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMaxXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXXLarge\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMaxXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinUhfMobile\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"ScreenWidthMinUhfMobile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getScreenSelector\", function() { return _CommonStyles__WEBPACK_IMPORTED_MODULE_10__[\"getScreenSelector\"]; });\n\n/* harmony import */ var _GeneralStyles__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./GeneralStyles */ \"./node_modules/@uifabric/styling/lib/styles/GeneralStyles.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"normalize\", function() { return _GeneralStyles__WEBPACK_IMPORTED_MODULE_11__[\"normalize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"noWrap\", function() { return _GeneralStyles__WEBPACK_IMPORTED_MODULE_11__[\"noWrap\"]; });\n\n/* harmony import */ var _getFadedOverflowStyle__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./getFadedOverflowStyle */ \"./node_modules/@uifabric/styling/lib/styles/getFadedOverflowStyle.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFadedOverflowStyle\", function() { return _getFadedOverflowStyle__WEBPACK_IMPORTED_MODULE_12__[\"getFadedOverflowStyle\"]; });\n\n/* harmony import */ var _zIndexes__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./zIndexes */ \"./node_modules/@uifabric/styling/lib/styles/zIndexes.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ZIndexes\", function() { return _zIndexes__WEBPACK_IMPORTED_MODULE_13__[\"ZIndexes\"]; });\n\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/scheme.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/scheme.js ***!
\*************************************************************/
/*! exports provided: getThemedContext */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getThemedContext\", function() { return getThemedContext; });\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n\r\n/**\r\n * @internal\r\n * This function is still in experimental phase in support of Foundation experimental development. Its API signature and existence\r\n * are subject to change.\r\n *\r\n * Modify context to activate the specified scheme or theme. For schemes, look in context (if available) and fall back to global\r\n * Customizations. If both scheme and theme are specified, scheme will be looked up in theme. In this case, scheme must be\r\n * present in theme arg, otherwise new context will default to theme arg (there is no fallback to settings to look up scheme.)\r\n *\r\n * @param context - Context in which to get schemed customizations.\r\n * @param scheme - Scheme to get customizations for from theme arg (if supplied) OR from context and global settings.\r\n * @param theme - Theme to merge into context.\r\n * @returns modified schemed context if scheme is valid and not already applied, unmodified context otherwise.\r\n */\r\nfunction getThemedContext(context, scheme, theme) {\r\n var newContext = context;\r\n var newSettings;\r\n // Only fall back to context and customizations when theme arg is not provided.\r\n var schemeSource = theme || _uifabric_utilities__WEBPACK_IMPORTED_MODULE_0__[\"Customizations\"].getSettings(['theme'], undefined, context.customizations).theme;\r\n if (theme) {\r\n newSettings = { theme: theme };\r\n }\r\n var schemeTheme = scheme && schemeSource && schemeSource.schemes && schemeSource.schemes[scheme];\r\n // These first two checks are logically redundant but TS doesn't infer schemeSource.schemes is defined when schemeTheme is defined.\r\n if (schemeSource && schemeTheme && schemeSource !== schemeTheme) {\r\n newSettings = { theme: schemeTheme };\r\n newSettings.theme.schemes = schemeSource.schemes;\r\n }\r\n if (newSettings) {\r\n newContext = {\r\n customizations: {\r\n settings: Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_0__[\"mergeSettings\"])(context.customizations.settings, newSettings),\r\n scopedSettings: context.customizations.scopedSettings\r\n }\r\n };\r\n }\r\n return newContext;\r\n}\r\n//# sourceMappingURL=scheme.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/scheme.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/theme.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/theme.js ***!
\************************************************************/
/*! exports provided: ThemeSettingName, getTheme, registerOnThemeChangeCallback, removeOnThemeChangeCallback, loadTheme, createTheme */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ThemeSettingName\", function() { return ThemeSettingName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getTheme\", function() { return getTheme; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"registerOnThemeChangeCallback\", function() { return registerOnThemeChangeCallback; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeOnThemeChangeCallback\", function() { return removeOnThemeChangeCallback; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"loadTheme\", function() { return loadTheme; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createTheme\", function() { return createTheme; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n/* harmony import */ var _DefaultFontStyles__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./DefaultFontStyles */ \"./node_modules/@uifabric/styling/lib/styles/DefaultFontStyles.js\");\n/* harmony import */ var _DefaultPalette__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./DefaultPalette */ \"./node_modules/@uifabric/styling/lib/styles/DefaultPalette.js\");\n/* harmony import */ var _DefaultSpacing__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./DefaultSpacing */ \"./node_modules/@uifabric/styling/lib/styles/DefaultSpacing.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @microsoft/load-themed-styles */ \"./node_modules/@microsoft/load-themed-styles/lib/index.js\");\n/* harmony import */ var _microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var _DefaultEffects__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./DefaultEffects */ \"./node_modules/@uifabric/styling/lib/styles/DefaultEffects.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nvar _theme = createTheme({\r\n palette: _DefaultPalette__WEBPACK_IMPORTED_MODULE_3__[\"DefaultPalette\"],\r\n semanticColors: _makeSemanticColorsFromPalette(_DefaultPalette__WEBPACK_IMPORTED_MODULE_3__[\"DefaultPalette\"], false, false),\r\n fonts: _DefaultFontStyles__WEBPACK_IMPORTED_MODULE_2__[\"DefaultFontStyles\"],\r\n isInverted: false,\r\n disableGlobalClassNames: false\r\n});\r\nvar _onThemeChangeCallbacks = [];\r\nvar ThemeSettingName = 'theme';\r\nif (!_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Customizations\"].getSettings([ThemeSettingName]).theme) {\r\n var win = typeof window !== 'undefined' ? window : undefined;\r\n // tslint:disable:no-string-literal no-any\r\n if (win && win['FabricConfig'] && win['FabricConfig'].theme) {\r\n _theme = createTheme(win['FabricConfig'].theme);\r\n }\r\n // tslint:enable:no-string-literal no-any\r\n // Set the default theme.\r\n _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Customizations\"].applySettings((_a = {}, _a[ThemeSettingName] = _theme, _a));\r\n}\r\n/**\r\n * Gets the theme object\r\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\r\n */\r\nfunction getTheme(depComments) {\r\n if (depComments === void 0) { depComments = false; }\r\n if (depComments === true) {\r\n _theme = createTheme({}, depComments);\r\n }\r\n return _theme;\r\n}\r\n/**\r\n * Registers a callback that gets called whenever the theme changes.\r\n * This should only be used when the component cannot automatically get theme changes through its state.\r\n * This will not register duplicate callbacks.\r\n */\r\nfunction registerOnThemeChangeCallback(callback) {\r\n if (_onThemeChangeCallbacks.indexOf(callback) === -1) {\r\n _onThemeChangeCallbacks.push(callback);\r\n }\r\n}\r\n/**\r\n * See registerOnThemeChangeCallback().\r\n * Removes previously registered callbacks.\r\n */\r\nfunction removeOnThemeChangeCallback(callback) {\r\n var i = _onThemeChangeCallbacks.indexOf(callback);\r\n if (i === -1) {\r\n return;\r\n }\r\n _onThemeChangeCallbacks.splice(i, 1);\r\n}\r\n/**\r\n * Applies the theme, while filling in missing slots.\r\n * @param theme - Partial theme object.\r\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\r\n */\r\nfunction loadTheme(theme, depComments) {\r\n if (depComments === void 0) { depComments = false; }\r\n _theme = createTheme(theme, depComments);\r\n // Invoke the legacy method of theming the page as well.\r\n Object(_microsoft_load_themed_styles__WEBPACK_IMPORTED_MODULE_5__[\"loadTheme\"])(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _theme.palette, _theme.semanticColors, _loadFonts(_theme)));\r\n _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Customizations\"].applySettings((_a = {}, _a[ThemeSettingName] = _theme, _a));\r\n _onThemeChangeCallbacks.forEach(function (callback) {\r\n try {\r\n callback(_theme);\r\n }\r\n catch (e) {\r\n // don't let a bad callback break everything else\r\n }\r\n });\r\n return _theme;\r\n var _a;\r\n}\r\n/**\r\n * Loads font variables into a JSON object.\r\n * @param theme - The theme object\r\n */\r\nfunction _loadFonts(theme) {\r\n var lines = {};\r\n for (var _i = 0, _a = Object.keys(theme.fonts); _i < _a.length; _i++) {\r\n var fontName = _a[_i];\r\n var font = theme.fonts[fontName];\r\n for (var _b = 0, _c = Object.keys(font); _b < _c.length; _b++) {\r\n var propName = _c[_b];\r\n var name_1 = 'ms-font-' + fontName + '-' + propName;\r\n lines[name_1] = \"\\\"[theme:\" + name_1 + \", default: \" + font[propName] + \"]\\\"\";\r\n }\r\n }\r\n return lines;\r\n}\r\n/**\r\n * Creates a custom theme definition which can be used with the Customizer.\r\n * @param theme - Partial theme object.\r\n * @param depComments - Whether to include deprecated tags as comments for deprecated slots.\r\n */\r\nfunction createTheme(theme, depComments) {\r\n if (depComments === void 0) { depComments = false; }\r\n var newPalette = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _DefaultPalette__WEBPACK_IMPORTED_MODULE_3__[\"DefaultPalette\"], theme.palette);\r\n if (!theme.palette || !theme.palette.accent) {\r\n newPalette.accent = newPalette.themePrimary;\r\n }\r\n // mix in custom overrides with good slots first, since custom overrides might be used in fixing deprecated slots\r\n var newSemanticColors = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _makeSemanticColorsFromPalette(newPalette, !!theme.isInverted, depComments), theme.semanticColors);\r\n var defaultFontStyles = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _DefaultFontStyles__WEBPACK_IMPORTED_MODULE_2__[\"DefaultFontStyles\"]);\r\n if (theme.defaultFontStyle) {\r\n for (var _i = 0, _a = Object.keys(defaultFontStyles); _i < _a.length; _i++) {\r\n var fontStyle = _a[_i];\r\n defaultFontStyles[fontStyle] = Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"merge\"])({}, defaultFontStyles[fontStyle], theme.defaultFontStyle);\r\n }\r\n }\r\n if (theme.fonts) {\r\n for (var _b = 0, _c = Object.keys(theme.fonts); _b < _c.length; _b++) {\r\n var fontStyle = _c[_b];\r\n defaultFontStyles[fontStyle] = Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"merge\"])({}, defaultFontStyles[fontStyle], theme.fonts[fontStyle]);\r\n }\r\n }\r\n return {\r\n palette: newPalette,\r\n fonts: tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, defaultFontStyles),\r\n semanticColors: newSemanticColors,\r\n isInverted: !!theme.isInverted,\r\n disableGlobalClassNames: !!theme.disableGlobalClassNames,\r\n spacing: tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _DefaultSpacing__WEBPACK_IMPORTED_MODULE_4__[\"DefaultSpacing\"], theme.spacing),\r\n effects: tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _DefaultEffects__WEBPACK_IMPORTED_MODULE_6__[\"DefaultEffects\"], theme.effects)\r\n };\r\n}\r\n/**\r\n * Helper to pull a given property name from a given set of sources, in order, if available. Otherwise returns the property name.\r\n */\r\nfunction _expandFrom(propertyName) {\r\n var maps = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n maps[_i - 1] = arguments[_i];\r\n }\r\n if (propertyName) {\r\n for (var _a = 0, maps_1 = maps; _a < maps_1.length; _a++) {\r\n var map = maps_1[_a];\r\n if (map[propertyName]) {\r\n return map[propertyName];\r\n }\r\n }\r\n }\r\n return propertyName;\r\n}\r\n// Generates all the semantic slot colors based on the Fabric palette.\r\n// We'll use these as fallbacks for semantic slots that the passed in theme did not define.\r\nfunction _makeSemanticColorsFromPalette(p, isInverted, depComments) {\r\n var toReturn = {\r\n bodyBackground: p.white,\r\n bodyStandoutBackground: p.neutralLighterAlt,\r\n bodyFrameBackground: p.white,\r\n bodyFrameDivider: p.neutralLight,\r\n bodyText: p.neutralPrimary,\r\n bodyTextChecked: p.black,\r\n bodySubtext: p.neutralSecondary,\r\n bodyDivider: p.neutralLight,\r\n disabledBackground: p.neutralLighter,\r\n disabledText: p.neutralTertiary,\r\n disabledBodyText: p.neutralTertiary,\r\n disabledSubtext: p.neutralQuaternary,\r\n disabledBodySubtext: p.neutralTertiaryAlt,\r\n focusBorder: p.neutralSecondary,\r\n variantBorder: p.neutralLight,\r\n variantBorderHovered: p.neutralTertiary,\r\n defaultStateBackground: p.neutralLighterAlt,\r\n errorText: !isInverted ? p.redDark : '#ff5f5f',\r\n warningText: !isInverted ? '#333333' : '#ffffff',\r\n errorBackground: !isInverted ? 'rgba(232, 17, 35, .2)' : 'rgba(232, 17, 35, .5)',\r\n blockingBackground: !isInverted ? 'rgba(234, 67, 0, .2)' : 'rgba(234, 67, 0, .5)',\r\n warningBackground: !isInverted ? 'rgba(255, 185, 0, .2)' : 'rgba(255, 251, 0, .6)',\r\n warningHighlight: !isInverted ? '#ffb900' : '#fff100',\r\n successBackground: !isInverted ? 'rgba(186, 216, 10, .2)' : 'rgba(186, 216, 10, .4)',\r\n inputBorder: p.neutralTertiary,\r\n inputBorderHovered: p.neutralPrimary,\r\n inputBackground: p.white,\r\n inputBackgroundChecked: p.themePrimary,\r\n inputBackgroundCheckedHovered: p.themeDarkAlt,\r\n inputForegroundChecked: p.white,\r\n inputFocusBorderAlt: p.themePrimary,\r\n smallInputBorder: p.neutralSecondary,\r\n inputText: p.neutralPrimary,\r\n inputTextHovered: p.neutralDark,\r\n inputPlaceholderText: p.neutralSecondary,\r\n buttonBackground: p.neutralLighter,\r\n buttonBackgroundChecked: p.neutralTertiaryAlt,\r\n buttonBackgroundHovered: p.neutralLight,\r\n buttonBackgroundCheckedHovered: p.neutralLight,\r\n buttonBackgroundPressed: p.neutralLight,\r\n buttonBackgroundDisabled: p.neutralLighter,\r\n buttonBorder: 'transparent',\r\n buttonText: p.neutralPrimary,\r\n buttonTextHovered: p.neutralDark,\r\n buttonTextChecked: p.neutralDark,\r\n buttonTextCheckedHovered: p.black,\r\n buttonTextPressed: p.neutralDark,\r\n buttonTextDisabled: p.neutralTertiary,\r\n buttonBorderDisabled: 'transparent',\r\n primaryButtonBackground: p.themePrimary,\r\n primaryButtonBackgroundHovered: p.themeDarkAlt,\r\n primaryButtonBackgroundPressed: p.themeDark,\r\n primaryButtonBackgroundDisabled: p.neutralLighter,\r\n primaryButtonBorder: 'transparent',\r\n primaryButtonText: p.white,\r\n primaryButtonTextHovered: p.white,\r\n primaryButtonTextPressed: p.white,\r\n primaryButtonTextDisabled: p.neutralQuaternary,\r\n accentButtonBackground: p.accent,\r\n accentButtonText: p.white,\r\n menuBackground: p.white,\r\n menuDivider: p.neutralTertiaryAlt,\r\n menuIcon: p.themePrimary,\r\n menuHeader: p.themePrimary,\r\n menuItemBackgroundHovered: p.neutralLighter,\r\n menuItemBackgroundPressed: p.neutralLight,\r\n menuItemText: p.neutralPrimary,\r\n menuItemTextHovered: p.neutralDark,\r\n listBackground: p.white,\r\n listText: p.neutralPrimary,\r\n listItemBackgroundHovered: p.neutralLighter,\r\n listItemBackgroundChecked: p.neutralLight,\r\n listItemBackgroundCheckedHovered: p.neutralQuaternaryAlt,\r\n listHeaderBackgroundHovered: p.neutralLighter,\r\n listHeaderBackgroundPressed: p.neutralLight,\r\n actionLink: p.neutralPrimary,\r\n actionLinkHovered: p.neutralDark,\r\n link: p.themePrimary,\r\n linkHovered: p.themeDarker,\r\n // Deprecated slots, second pass by _fixDeprecatedSlots() later for self-referential slots\r\n listTextColor: '',\r\n menuItemBackgroundChecked: p.neutralLight\r\n };\r\n return _fixDeprecatedSlots(toReturn, depComments);\r\n}\r\nfunction _fixDeprecatedSlots(s, depComments) {\r\n // Add @deprecated tag as comment if enabled\r\n var dep = '';\r\n if (depComments === true) {\r\n dep = ' /* @deprecated */';\r\n }\r\n s.listTextColor = s.listText + dep;\r\n s.menuItemBackgroundChecked += dep;\r\n return s;\r\n}\r\nvar _a;\r\n//# sourceMappingURL=theme.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/theme.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/styles/zIndexes.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/styles/zIndexes.js ***!
\***************************************************************/
/*! exports provided: ZIndexes */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ZIndexes\", function() { return ZIndexes; });\nvar ZIndexes;\r\n(function (ZIndexes) {\r\n ZIndexes.Nav = 1;\r\n ZIndexes.ScrollablePane = 1;\r\n ZIndexes.FocusStyle = 1;\r\n ZIndexes.Coachmark = 1000;\r\n ZIndexes.Layer = 1000000;\r\n ZIndexes.KeytipLayer = 1000001;\r\n})(ZIndexes || (ZIndexes = {}));\r\n//# sourceMappingURL=zIndexes.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/styles/zIndexes.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js":
/*!***********************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js ***!
\***********************************************************************/
/*! exports provided: buildClassMap */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buildClassMap\", function() { return buildClassMap; });\n/* harmony import */ var _MergeStyles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../MergeStyles */ \"./node_modules/@uifabric/styling/lib/MergeStyles.js\");\n\r\n/**\r\n * Builds a class names object from a given map.\r\n *\r\n * @param styles - Map of unprocessed styles.\r\n * @returns Map of property name to class name.\r\n */\r\nfunction buildClassMap(styles) {\r\n var classes = {};\r\n var _loop_1 = function (styleName) {\r\n if (styles.hasOwnProperty(styleName)) {\r\n var className_1;\r\n Object.defineProperty(classes, styleName, {\r\n get: function () {\r\n if (className_1 === undefined) {\r\n // tslint:disable-next-line:no-any\r\n className_1 = Object(_MergeStyles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])(styles[styleName]).toString();\r\n }\r\n return className_1;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n }\r\n };\r\n for (var styleName in styles) {\r\n _loop_1(styleName);\r\n }\r\n return classes;\r\n}\r\n//# sourceMappingURL=buildClassMap.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js":
/*!**************************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js ***!
\**************************************************************************/
/*! exports provided: getIconClassName */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIconClassName\", function() { return getIconClassName; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n/* harmony import */ var _icons__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./icons */ \"./node_modules/@uifabric/styling/lib/utilities/icons.js\");\n\r\n\r\nvar defaultIconStyles = {\r\n display: 'inline-block'\r\n};\r\n/**\r\n * Gets an icon classname. You should be able to add this classname to an I tag with no\r\n * additional classnames, and render the icon.\r\n *\r\n * @public\r\n */\r\nfunction getIconClassName(name) {\r\n var className = '';\r\n var icon = Object(_icons__WEBPACK_IMPORTED_MODULE_1__[\"getIcon\"])(name);\r\n if (icon) {\r\n className = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])(icon.subset.className, defaultIconStyles, {\r\n selectors: {\r\n '::before': {\r\n content: \"\\\"\" + icon.code + \"\\\"\"\r\n }\r\n }\r\n });\r\n }\r\n return className;\r\n}\r\n//# sourceMappingURL=getIconClassName.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/utilities/icons.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/utilities/icons.js ***!
\***************************************************************/
/*! exports provided: registerIcons, unregisterIcons, registerIconAlias, getIcon, setIconOptions */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"registerIcons\", function() { return registerIcons; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unregisterIcons\", function() { return unregisterIcons; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"registerIconAlias\", function() { return registerIconAlias; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getIcon\", function() { return getIcon; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setIconOptions\", function() { return setIconOptions; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n\r\n\r\nvar ICON_SETTING_NAME = 'icons';\r\nvar _iconSettings = _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"GlobalSettings\"].getValue(ICON_SETTING_NAME, {\r\n __options: {\r\n disableWarnings: false,\r\n warnOnMissingIcons: true\r\n },\r\n __remapped: {}\r\n});\r\n// Reset icon registration on stylesheet resets.\r\nvar stylesheet = _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_2__[\"Stylesheet\"].getInstance();\r\nif (stylesheet && stylesheet.onReset) {\r\n stylesheet.onReset(function () {\r\n for (var name_1 in _iconSettings) {\r\n if (_iconSettings.hasOwnProperty(name_1) && !!_iconSettings[name_1].subset) {\r\n _iconSettings[name_1].subset.className = undefined;\r\n }\r\n }\r\n });\r\n}\r\n/**\r\n * Normalizes an icon name for consistent mapping.\r\n * Current implementation is to convert the icon name to lower case.\r\n *\r\n * @param name - Icon name to normalize.\r\n * @returns {string} Normalized icon name to use for indexing and mapping.\r\n */\r\nvar normalizeIconName = function (name) { return name.toLowerCase(); };\r\n/**\r\n * Registers a given subset of icons.\r\n *\r\n * @param iconSubset - the icon subset definition.\r\n */\r\nfunction registerIcons(iconSubset, options) {\r\n var subset = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, iconSubset, { isRegistered: false, className: undefined });\r\n var icons = iconSubset.icons;\r\n // Grab options, optionally mix user provided ones on top.\r\n options = options ? tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _iconSettings.__options, options) : _iconSettings.__options;\r\n for (var iconName in icons) {\r\n if (icons.hasOwnProperty(iconName)) {\r\n var code = icons[iconName];\r\n var normalizedIconName = normalizeIconName(iconName);\r\n if (_iconSettings[normalizedIconName]) {\r\n _warnDuplicateIcon(iconName);\r\n }\r\n else {\r\n _iconSettings[normalizedIconName] = {\r\n code: code,\r\n subset: subset\r\n };\r\n }\r\n }\r\n }\r\n}\r\n/**\r\n * Unregisters icons by name.\r\n *\r\n * @param iconNames - List of icons to unregister.\r\n */\r\nfunction unregisterIcons(iconNames) {\r\n var options = _iconSettings.__options;\r\n var _loop_1 = function (iconName) {\r\n var normalizedIconName = normalizeIconName(iconName);\r\n if (_iconSettings[normalizedIconName]) {\r\n delete _iconSettings[normalizedIconName];\r\n }\r\n else {\r\n // Warn that we are trying to delete an icon that doesn't exist\r\n if (!options.disableWarnings) {\r\n Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warn\"])(\"The icon \\\"\" + iconName + \"\\\" tried to unregister but was not registered.\");\r\n }\r\n }\r\n // Delete any aliases for this iconName\r\n if (_iconSettings.__remapped[normalizedIconName]) {\r\n delete _iconSettings.__remapped[normalizedIconName];\r\n }\r\n // Delete any items that were an alias for this iconName\r\n Object.keys(_iconSettings.__remapped).forEach(function (key) {\r\n if (_iconSettings.__remapped[key] === normalizedIconName) {\r\n delete _iconSettings.__remapped[key];\r\n }\r\n });\r\n };\r\n for (var _i = 0, iconNames_1 = iconNames; _i < iconNames_1.length; _i++) {\r\n var iconName = iconNames_1[_i];\r\n _loop_1(iconName);\r\n }\r\n}\r\n/**\r\n * Remaps one icon name to another.\r\n */\r\nfunction registerIconAlias(iconName, mappedToName) {\r\n _iconSettings.__remapped[normalizeIconName(iconName)] = normalizeIconName(mappedToName);\r\n}\r\n/**\r\n * Gets an icon definition. If an icon is requested but the subset has yet to be registered,\r\n * it will get registered immediately.\r\n *\r\n * @public\r\n * @param name - Name of icon.\r\n */\r\nfunction getIcon(name) {\r\n var icon = undefined;\r\n var options = _iconSettings.__options;\r\n name = name ? normalizeIconName(name) : '';\r\n name = _iconSettings.__remapped[name] || name;\r\n if (name) {\r\n icon = _iconSettings[name];\r\n if (icon) {\r\n var subset = icon.subset;\r\n if (subset && subset.fontFace) {\r\n if (!subset.isRegistered) {\r\n Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_2__[\"fontFace\"])(subset.fontFace);\r\n subset.isRegistered = true;\r\n }\r\n if (!subset.className) {\r\n subset.className = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_2__[\"mergeStyles\"])(subset.style, {\r\n fontFamily: subset.fontFace.fontFamily,\r\n fontWeight: subset.fontFace.fontWeight || 'normal',\r\n fontStyle: subset.fontFace.fontStyle || 'normal'\r\n });\r\n }\r\n }\r\n }\r\n else {\r\n if (!options.disableWarnings && options.warnOnMissingIcons) {\r\n Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warn\"])(\"The icon \\\"\" + name + \"\\\" was used but not registered. See http://aka.ms/fabric-icon-usage for more information.\");\r\n }\r\n }\r\n }\r\n return icon;\r\n}\r\n/**\r\n * Sets the icon options.\r\n *\r\n * @public\r\n */\r\nfunction setIconOptions(options) {\r\n _iconSettings.__options = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _iconSettings.__options, options);\r\n}\r\nvar _missingIcons = [];\r\nvar _missingIconsTimer = undefined;\r\nfunction _warnDuplicateIcon(iconName) {\r\n var options = _iconSettings.__options;\r\n var warningDelay = 2000;\r\n var maxIconsInMessage = 10;\r\n if (!options.disableWarnings) {\r\n _missingIcons.push(iconName);\r\n if (_missingIconsTimer === undefined) {\r\n _missingIconsTimer = setTimeout(function () {\r\n Object(_uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warn\"])(\"Some icons were re-registered. Applications should only call registerIcons for any given \" +\r\n \"icon once. Redefining what an icon is may have unintended consequences. Duplicates \" +\r\n \"include: \\n\" +\r\n _missingIcons.slice(0, maxIconsInMessage).join(', ') +\r\n (_missingIcons.length > maxIconsInMessage ? \" (+ \" + (_missingIcons.length - maxIconsInMessage) + \" more)\" : ''));\r\n _missingIconsTimer = undefined;\r\n _missingIcons = [];\r\n }, warningDelay);\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=icons.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/utilities/icons.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/utilities/index.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/utilities/index.js ***!
\***************************************************************/
/*! exports provided: buildClassMap, getIcon, registerIcons, registerIconAlias, unregisterIcons, setIconOptions, getIconClassName */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _buildClassMap__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./buildClassMap */ \"./node_modules/@uifabric/styling/lib/utilities/buildClassMap.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildClassMap\", function() { return _buildClassMap__WEBPACK_IMPORTED_MODULE_0__[\"buildClassMap\"]; });\n\n/* harmony import */ var _icons__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./icons */ \"./node_modules/@uifabric/styling/lib/utilities/icons.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIcon\", function() { return _icons__WEBPACK_IMPORTED_MODULE_1__[\"getIcon\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerIcons\", function() { return _icons__WEBPACK_IMPORTED_MODULE_1__[\"registerIcons\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerIconAlias\", function() { return _icons__WEBPACK_IMPORTED_MODULE_1__[\"registerIconAlias\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"unregisterIcons\", function() { return _icons__WEBPACK_IMPORTED_MODULE_1__[\"unregisterIcons\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setIconOptions\", function() { return _icons__WEBPACK_IMPORTED_MODULE_1__[\"setIconOptions\"]; });\n\n/* harmony import */ var _getIconClassName__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./getIconClassName */ \"./node_modules/@uifabric/styling/lib/utilities/getIconClassName.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIconClassName\", function() { return _getIconClassName__WEBPACK_IMPORTED_MODULE_2__[\"getIconClassName\"]; });\n\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/utilities/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/styling/lib/version.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/styling/lib/version.js ***!
\*******************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/set-version */ \"./node_modules/@uifabric/set-version/lib/index.js\");\n// @uifabric/styling@6.41.0\r\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\r\n\r\nObject(_uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/styling', '6.41.0');\r\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/styling/lib/version.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/Async.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/Async.js ***!
\*******************************************************/
/*! exports provided: Async */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Async\", function() { return Async; });\n/**\r\n * Bugs often appear in async code when stuff gets disposed, but async operations don't get canceled.\r\n * This Async helper class solves these issues by tying async code to the lifetime of a disposable object.\r\n *\r\n * Usage: Anything class extending from BaseModel can access this helper via this.async. Otherwise create a\r\n * new instance of the class and remember to call dispose() during your code's dispose handler.\r\n *\r\n * @public\r\n */\r\nvar Async = /** @class */ (function () {\r\n // tslint:disable-next-line:no-any\r\n function Async(parent, onError) {\r\n this._timeoutIds = null;\r\n this._immediateIds = null;\r\n this._intervalIds = null;\r\n this._animationFrameIds = null;\r\n this._isDisposed = false;\r\n this._parent = parent || null;\r\n this._onErrorHandler = onError;\r\n this._noop = function () {\r\n /* do nothing */\r\n };\r\n }\r\n /**\r\n * Dispose function, clears all async operations.\r\n */\r\n Async.prototype.dispose = function () {\r\n var id;\r\n this._isDisposed = true;\r\n this._parent = null;\r\n // Clear timeouts.\r\n if (this._timeoutIds) {\r\n for (id in this._timeoutIds) {\r\n if (this._timeoutIds.hasOwnProperty(id)) {\r\n this.clearTimeout(parseInt(id, 10));\r\n }\r\n }\r\n this._timeoutIds = null;\r\n }\r\n // Clear immediates.\r\n if (this._immediateIds) {\r\n for (id in this._immediateIds) {\r\n if (this._immediateIds.hasOwnProperty(id)) {\r\n this.clearImmediate(parseInt(id, 10));\r\n }\r\n }\r\n this._immediateIds = null;\r\n }\r\n // Clear intervals.\r\n if (this._intervalIds) {\r\n for (id in this._intervalIds) {\r\n if (this._intervalIds.hasOwnProperty(id)) {\r\n this.clearInterval(parseInt(id, 10));\r\n }\r\n }\r\n this._intervalIds = null;\r\n }\r\n // Clear animation frames.\r\n if (this._animationFrameIds) {\r\n for (id in this._animationFrameIds) {\r\n if (this._animationFrameIds.hasOwnProperty(id)) {\r\n this.cancelAnimationFrame(parseInt(id, 10));\r\n }\r\n }\r\n this._animationFrameIds = null;\r\n }\r\n };\r\n /**\r\n * SetTimeout override, which will auto cancel the timeout during dispose.\r\n * @param callback - Callback to execute.\r\n * @param duration - Duration in milliseconds.\r\n * @returns The setTimeout id.\r\n */\r\n Async.prototype.setTimeout = function (callback, duration) {\r\n var _this = this;\r\n var timeoutId = 0;\r\n if (!this._isDisposed) {\r\n if (!this._timeoutIds) {\r\n this._timeoutIds = {};\r\n }\r\n /* tslint:disable:ban-native-functions */\r\n timeoutId = setTimeout(function () {\r\n // Time to execute the timeout, enqueue it as a foreground task to be executed.\r\n try {\r\n // Now delete the record and call the callback.\r\n if (_this._timeoutIds) {\r\n delete _this._timeoutIds[timeoutId];\r\n }\r\n callback.apply(_this._parent);\r\n }\r\n catch (e) {\r\n if (_this._onErrorHandler) {\r\n _this._onErrorHandler(e);\r\n }\r\n }\r\n }, duration);\r\n /* tslint:enable:ban-native-functions */\r\n this._timeoutIds[timeoutId] = true;\r\n }\r\n return timeoutId;\r\n };\r\n /**\r\n * Clears the timeout.\r\n * @param id - Id to cancel.\r\n */\r\n Async.prototype.clearTimeout = function (id) {\r\n if (this._timeoutIds && this._timeoutIds[id]) {\r\n /* tslint:disable:ban-native-functions */\r\n clearTimeout(id);\r\n delete this._timeoutIds[id];\r\n /* tslint:enable:ban-native-functions */\r\n }\r\n };\r\n /**\r\n * SetImmediate override, which will auto cancel the immediate during dispose.\r\n * @param callback - Callback to execute.\r\n * @returns The setTimeout id.\r\n */\r\n Async.prototype.setImmediate = function (callback) {\r\n var _this = this;\r\n var immediateId = 0;\r\n if (!this._isDisposed) {\r\n if (!this._immediateIds) {\r\n this._immediateIds = {};\r\n }\r\n /* tslint:disable:ban-native-functions */\r\n var setImmediateCallback = function () {\r\n // Time to execute the timeout, enqueue it as a foreground task to be executed.\r\n try {\r\n // Now delete the record and call the callback.\r\n if (_this._immediateIds) {\r\n delete _this._immediateIds[immediateId];\r\n }\r\n callback.apply(_this._parent);\r\n }\r\n catch (e) {\r\n _this._logError(e);\r\n }\r\n };\r\n immediateId = window.setImmediate ? window.setImmediate(setImmediateCallback) : window.setTimeout(setImmediateCallback, 0);\r\n /* tslint:enable:ban-native-functions */\r\n this._immediateIds[immediateId] = true;\r\n }\r\n return immediateId;\r\n };\r\n /**\r\n * Clears the immediate.\r\n * @param id - Id to cancel.\r\n */\r\n Async.prototype.clearImmediate = function (id) {\r\n if (this._immediateIds && this._immediateIds[id]) {\r\n /* tslint:disable:ban-native-functions */\r\n window.clearImmediate ? window.clearImmediate(id) : window.clearTimeout(id);\r\n delete this._immediateIds[id];\r\n /* tslint:enable:ban-native-functions */\r\n }\r\n };\r\n /**\r\n * SetInterval override, which will auto cancel the timeout during dispose.\r\n * @param callback - Callback to execute.\r\n * @param duration - Duration in milliseconds.\r\n * @returns The setTimeout id.\r\n */\r\n Async.prototype.setInterval = function (callback, duration) {\r\n var _this = this;\r\n var intervalId = 0;\r\n if (!this._isDisposed) {\r\n if (!this._intervalIds) {\r\n this._intervalIds = {};\r\n }\r\n /* tslint:disable:ban-native-functions */\r\n intervalId = setInterval(function () {\r\n // Time to execute the interval callback, enqueue it as a foreground task to be executed.\r\n try {\r\n callback.apply(_this._parent);\r\n }\r\n catch (e) {\r\n _this._logError(e);\r\n }\r\n }, duration);\r\n /* tslint:enable:ban-native-functions */\r\n this._intervalIds[intervalId] = true;\r\n }\r\n return intervalId;\r\n };\r\n /**\r\n * Clears the interval.\r\n * @param id - Id to cancel.\r\n */\r\n Async.prototype.clearInterval = function (id) {\r\n if (this._intervalIds && this._intervalIds[id]) {\r\n /* tslint:disable:ban-native-functions */\r\n clearInterval(id);\r\n delete this._intervalIds[id];\r\n /* tslint:enable:ban-native-functions */\r\n }\r\n };\r\n /**\r\n * Creates a function that, when executed, will only call the func function at most once per\r\n * every wait milliseconds. Provide an options object to indicate that func should be invoked\r\n * on the leading and/or trailing edge of the wait timeout. Subsequent calls to the throttled\r\n * function will return the result of the last func call.\r\n *\r\n * Note: If leading and trailing options are true func will be called on the trailing edge of\r\n * the timeout only if the the throttled function is invoked more than once during the wait timeout.\r\n *\r\n * @param func - The function to throttle.\r\n * @param wait - The number of milliseconds to throttle executions to. Defaults to 0.\r\n * @param options - The options object.\r\n * @returns The new throttled function.\r\n */\r\n Async.prototype.throttle = function (func, wait, options) {\r\n var _this = this;\r\n if (this._isDisposed) {\r\n return this._noop;\r\n }\r\n var waitMS = wait || 0;\r\n var leading = true;\r\n var trailing = true;\r\n var lastExecuteTime = 0;\r\n var lastResult;\r\n // tslint:disable-next-line:no-any\r\n var lastArgs;\r\n var timeoutId = null;\r\n if (options && typeof options.leading === 'boolean') {\r\n leading = options.leading;\r\n }\r\n if (options && typeof options.trailing === 'boolean') {\r\n trailing = options.trailing;\r\n }\r\n var callback = function (userCall) {\r\n var now = new Date().getTime();\r\n var delta = now - lastExecuteTime;\r\n var waitLength = leading ? waitMS - delta : waitMS;\r\n if (delta >= waitMS && (!userCall || leading)) {\r\n lastExecuteTime = now;\r\n if (timeoutId) {\r\n _this.clearTimeout(timeoutId);\r\n timeoutId = null;\r\n }\r\n lastResult = func.apply(_this._parent, lastArgs);\r\n }\r\n else if (timeoutId === null && trailing) {\r\n timeoutId = _this.setTimeout(callback, waitLength);\r\n }\r\n return lastResult;\r\n };\r\n // tslint:disable-next-line:no-any\r\n var resultFunction = function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n lastArgs = args;\r\n return callback(true);\r\n };\r\n return resultFunction;\r\n };\r\n /**\r\n * Creates a function that will delay the execution of func until after wait milliseconds have\r\n * elapsed since the last time it was invoked. Provide an options object to indicate that func\r\n * should be invoked on the leading and/or trailing edge of the wait timeout. Subsequent calls\r\n * to the debounced function will return the result of the last func call.\r\n *\r\n * Note: If leading and trailing options are true func will be called on the trailing edge of\r\n * the timeout only if the the debounced function is invoked more than once during the wait\r\n * timeout.\r\n *\r\n * @param func - The function to debounce.\r\n * @param wait - The number of milliseconds to delay.\r\n * @param options - The options object.\r\n * @returns The new debounced function.\r\n */\r\n Async.prototype.debounce = function (func, wait, options) {\r\n var _this = this;\r\n if (this._isDisposed) {\r\n var noOpFunction = (function () {\r\n /** Do nothing */\r\n });\r\n noOpFunction.cancel = function () {\r\n return;\r\n };\r\n /* tslint:disable:no-any */\r\n noOpFunction.flush = (function () { return null; });\r\n /* tslint:enable:no-any */\r\n noOpFunction.pending = function () { return false; };\r\n return noOpFunction;\r\n }\r\n var waitMS = wait || 0;\r\n var leading = false;\r\n var trailing = true;\r\n var maxWait = null;\r\n var lastCallTime = 0;\r\n var lastExecuteTime = new Date().getTime();\r\n var lastResult;\r\n // tslint:disable-next-line:no-any\r\n var lastArgs;\r\n var timeoutId = null;\r\n if (options && typeof options.leading === 'boolean') {\r\n leading = options.leading;\r\n }\r\n if (options && typeof options.trailing === 'boolean') {\r\n trailing = options.trailing;\r\n }\r\n if (options && typeof options.maxWait === 'number' && !isNaN(options.maxWait)) {\r\n maxWait = options.maxWait;\r\n }\r\n var markExecuted = function (time) {\r\n if (timeoutId) {\r\n _this.clearTimeout(timeoutId);\r\n timeoutId = null;\r\n }\r\n lastExecuteTime = time;\r\n };\r\n var invokeFunction = function (time) {\r\n markExecuted(time);\r\n lastResult = func.apply(_this._parent, lastArgs);\r\n };\r\n var callback = function (userCall) {\r\n var now = new Date().getTime();\r\n var executeImmediately = false;\r\n if (userCall) {\r\n if (leading && now - lastCallTime >= waitMS) {\r\n executeImmediately = true;\r\n }\r\n lastCallTime = now;\r\n }\r\n var delta = now - lastCallTime;\r\n var waitLength = waitMS - delta;\r\n var maxWaitDelta = now - lastExecuteTime;\r\n var maxWaitExpired = false;\r\n if (maxWait !== null) {\r\n // maxWait only matters when there is a pending callback\r\n if (maxWaitDelta >= maxWait && timeoutId) {\r\n maxWaitExpired = true;\r\n }\r\n else {\r\n waitLength = Math.min(waitLength, maxWait - maxWaitDelta);\r\n }\r\n }\r\n if (delta >= waitMS || maxWaitExpired || executeImmediately) {\r\n invokeFunction(now);\r\n }\r\n else if ((timeoutId === null || !userCall) && trailing) {\r\n timeoutId = _this.setTimeout(callback, waitLength);\r\n }\r\n return lastResult;\r\n };\r\n var pending = function () {\r\n return !!timeoutId;\r\n };\r\n var cancel = function () {\r\n if (pending()) {\r\n // Mark the debounced function as having executed\r\n markExecuted(new Date().getTime());\r\n }\r\n };\r\n var flush = function () {\r\n if (pending()) {\r\n invokeFunction(new Date().getTime());\r\n }\r\n return lastResult;\r\n };\r\n // tslint:disable-next-line:no-any\r\n var resultFunction = (function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n lastArgs = args;\r\n return callback(true);\r\n });\r\n resultFunction.cancel = cancel;\r\n resultFunction.flush = flush;\r\n resultFunction.pending = pending;\r\n return resultFunction;\r\n };\r\n Async.prototype.requestAnimationFrame = function (callback) {\r\n var _this = this;\r\n var animationFrameId = 0;\r\n if (!this._isDisposed) {\r\n if (!this._animationFrameIds) {\r\n this._animationFrameIds = {};\r\n }\r\n /* tslint:disable:ban-native-functions */\r\n var animationFrameCallback = function () {\r\n try {\r\n // Now delete the record and call the callback.\r\n if (_this._animationFrameIds) {\r\n delete _this._animationFrameIds[animationFrameId];\r\n }\r\n callback.apply(_this._parent);\r\n }\r\n catch (e) {\r\n _this._logError(e);\r\n }\r\n };\r\n animationFrameId = window.requestAnimationFrame\r\n ? window.requestAnimationFrame(animationFrameCallback)\r\n : window.setTimeout(animationFrameCallback, 0);\r\n /* tslint:enable:ban-native-functions */\r\n this._animationFrameIds[animationFrameId] = true;\r\n }\r\n return animationFrameId;\r\n };\r\n Async.prototype.cancelAnimationFrame = function (id) {\r\n if (this._animationFrameIds && this._animationFrameIds[id]) {\r\n /* tslint:disable:ban-native-functions */\r\n window.cancelAnimationFrame ? window.cancelAnimationFrame(id) : window.clearTimeout(id);\r\n /* tslint:enable:ban-native-functions */\r\n delete this._animationFrameIds[id];\r\n }\r\n };\r\n // tslint:disable-next-line:no-any\r\n Async.prototype._logError = function (e) {\r\n if (this._onErrorHandler) {\r\n this._onErrorHandler(e);\r\n }\r\n };\r\n return Async;\r\n}());\r\n\r\n//# sourceMappingURL=Async.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/Async.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/AutoScroll.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/AutoScroll.js ***!
\************************************************************/
/*! exports provided: AutoScroll */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"AutoScroll\", function() { return AutoScroll; });\n/* harmony import */ var _EventGroup__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./EventGroup */ \"./node_modules/@uifabric/utilities/lib/EventGroup.js\");\n/* harmony import */ var _scroll__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./scroll */ \"./node_modules/@uifabric/utilities/lib/scroll.js\");\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n\r\n\r\n\r\nvar SCROLL_ITERATION_DELAY = 16;\r\nvar SCROLL_GUTTER_HEIGHT = 100;\r\nvar MAX_SCROLL_VELOCITY = 15;\r\n/**\r\n * AutoScroll simply hooks up mouse events given a parent element, and scrolls the container\r\n * up/down depending on how close the mouse is to the top/bottom of the container.\r\n *\r\n * Once you don't want autoscroll any more, just dispose the helper and it will unhook events.\r\n *\r\n * @public\r\n */\r\nvar AutoScroll = /** @class */ (function () {\r\n function AutoScroll(element) {\r\n this._events = new _EventGroup__WEBPACK_IMPORTED_MODULE_0__[\"EventGroup\"](this);\r\n this._scrollableParent = Object(_scroll__WEBPACK_IMPORTED_MODULE_1__[\"findScrollableParent\"])(element);\r\n this._incrementScroll = this._incrementScroll.bind(this);\r\n this._scrollRect = Object(_dom__WEBPACK_IMPORTED_MODULE_2__[\"getRect\"])(this._scrollableParent);\r\n // tslint:disable-next-line:no-any\r\n if (this._scrollableParent === window) {\r\n this._scrollableParent = document.body;\r\n }\r\n if (this._scrollableParent) {\r\n this._events.on(window, 'mousemove', this._onMouseMove, true);\r\n this._events.on(window, 'touchmove', this._onTouchMove, true);\r\n }\r\n }\r\n AutoScroll.prototype.dispose = function () {\r\n this._events.dispose();\r\n this._stopScroll();\r\n };\r\n AutoScroll.prototype._onMouseMove = function (ev) {\r\n this._computeScrollVelocity(ev.clientY);\r\n };\r\n AutoScroll.prototype._onTouchMove = function (ev) {\r\n if (ev.touches.length > 0) {\r\n this._computeScrollVelocity(ev.touches[0].clientY);\r\n }\r\n };\r\n AutoScroll.prototype._computeScrollVelocity = function (clientY) {\r\n if (!this._scrollRect) {\r\n return;\r\n }\r\n var scrollRectTop = this._scrollRect.top;\r\n var scrollClientBottom = scrollRectTop + this._scrollRect.height - SCROLL_GUTTER_HEIGHT;\r\n if (clientY < scrollRectTop + SCROLL_GUTTER_HEIGHT) {\r\n this._scrollVelocity = Math.max(-MAX_SCROLL_VELOCITY, -MAX_SCROLL_VELOCITY * ((SCROLL_GUTTER_HEIGHT - (clientY - scrollRectTop)) / SCROLL_GUTTER_HEIGHT));\r\n }\r\n else if (clientY > scrollClientBottom) {\r\n this._scrollVelocity = Math.min(MAX_SCROLL_VELOCITY, MAX_SCROLL_VELOCITY * ((clientY - scrollClientBottom) / SCROLL_GUTTER_HEIGHT));\r\n }\r\n else {\r\n this._scrollVelocity = 0;\r\n }\r\n if (this._scrollVelocity) {\r\n this._startScroll();\r\n }\r\n else {\r\n this._stopScroll();\r\n }\r\n };\r\n AutoScroll.prototype._startScroll = function () {\r\n if (!this._timeoutId) {\r\n this._incrementScroll();\r\n }\r\n };\r\n AutoScroll.prototype._incrementScroll = function () {\r\n if (this._scrollableParent) {\r\n this._scrollableParent.scrollTop += Math.round(this._scrollVelocity);\r\n }\r\n this._timeoutId = setTimeout(this._incrementScroll, SCROLL_ITERATION_DELAY);\r\n };\r\n AutoScroll.prototype._stopScroll = function () {\r\n if (this._timeoutId) {\r\n clearTimeout(this._timeoutId);\r\n delete this._timeoutId;\r\n }\r\n };\r\n return AutoScroll;\r\n}());\r\n\r\n//# sourceMappingURL=AutoScroll.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/AutoScroll.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/BaseComponent.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/BaseComponent.js ***!
\***************************************************************/
/*! exports provided: BaseComponent, nullRender */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaseComponent\", function() { return BaseComponent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"nullRender\", function() { return nullRender; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Async__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Async */ \"./node_modules/@uifabric/utilities/lib/Async.js\");\n/* harmony import */ var _EventGroup__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./EventGroup */ \"./node_modules/@uifabric/utilities/lib/EventGroup.js\");\n/* harmony import */ var _warn__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./warn */ \"./node_modules/@uifabric/utilities/lib/warn.js\");\n/* harmony import */ var _initializeFocusRects__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./initializeFocusRects */ \"./node_modules/@uifabric/utilities/lib/initializeFocusRects.js\");\n/* harmony import */ var _initializeDir__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./initializeDir */ \"./node_modules/@uifabric/utilities/lib/initializeDir.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n/**\r\n * BaseComponent class, which provides basic helpers for all components.\r\n *\r\n * @public\r\n */\r\nvar BaseComponent = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](BaseComponent, _super);\r\n // tslint:enable:variable-name\r\n /**\r\n * BaseComponent constructor\r\n * @param props - The props for the component.\r\n * @param context - The context for the component.\r\n */\r\n // tslint:disable-next-line:no-any\r\n function BaseComponent(props, context) {\r\n var _this = _super.call(this, props, context) || this;\r\n // Ensure basic assumptions about the environment.\r\n Object(_initializeFocusRects__WEBPACK_IMPORTED_MODULE_5__[\"initializeFocusRects\"])();\r\n Object(_initializeDir__WEBPACK_IMPORTED_MODULE_6__[\"initializeDir\"])();\r\n _makeAllSafe(_this, BaseComponent.prototype, [\r\n 'componentDidMount',\r\n 'shouldComponentUpdate',\r\n 'getSnapshotBeforeUpdate',\r\n 'render',\r\n 'componentDidUpdate',\r\n 'componentWillUnmount'\r\n ]);\r\n return _this;\r\n }\r\n /**\r\n * When the component receives props, make sure the componentRef is updated.\r\n */\r\n BaseComponent.prototype.componentDidUpdate = function (prevProps, prevState) {\r\n this._updateComponentRef(prevProps, this.props);\r\n };\r\n /**\r\n * When the component has mounted, update the componentRef.\r\n */\r\n BaseComponent.prototype.componentDidMount = function () {\r\n this._setComponentRef(this.props.componentRef, this);\r\n };\r\n /**\r\n * If we have disposables, dispose them automatically on unmount.\r\n */\r\n BaseComponent.prototype.componentWillUnmount = function () {\r\n this._setComponentRef(this.props.componentRef, null);\r\n if (this.__disposables) {\r\n for (var i = 0, len = this._disposables.length; i < len; i++) {\r\n var disposable = this.__disposables[i];\r\n if (disposable.dispose) {\r\n disposable.dispose();\r\n }\r\n }\r\n this.__disposables = null;\r\n }\r\n };\r\n Object.defineProperty(BaseComponent.prototype, \"className\", {\r\n /**\r\n * Gets the object's class name.\r\n */\r\n get: function () {\r\n if (!this.__className) {\r\n var funcNameRegex = /function (.{1,})\\(/;\r\n var results = funcNameRegex.exec(this.constructor.toString());\r\n this.__className = results && results.length > 1 ? results[1] : '';\r\n }\r\n return this.__className;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(BaseComponent.prototype, \"_disposables\", {\r\n /**\r\n * Allows subclasses to push things to this._disposables to be auto disposed.\r\n */\r\n get: function () {\r\n if (!this.__disposables) {\r\n this.__disposables = [];\r\n }\r\n return this.__disposables;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(BaseComponent.prototype, \"_async\", {\r\n /**\r\n * Gets the async instance associated with the component, created on demand. The async instance gives\r\n * subclasses a way to execute setTimeout/setInterval async calls safely, where the callbacks\r\n * will be cleared/ignored automatically after unmounting. The helpers within the async object also\r\n * preserve the this pointer so that you don't need to \"bind\" the callbacks.\r\n */\r\n get: function () {\r\n if (!this.__async) {\r\n this.__async = new _Async__WEBPACK_IMPORTED_MODULE_2__[\"Async\"](this);\r\n this._disposables.push(this.__async);\r\n }\r\n return this.__async;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(BaseComponent.prototype, \"_events\", {\r\n /**\r\n * Gets the event group instance assocaited with the component, created on demand. The event instance\r\n * provides on/off methods for listening to DOM (or regular javascript object) events. The event callbacks\r\n * will be automatically disconnected after unmounting. The helpers within the events object also\r\n * preserve the this reference so that you don't need to \"bind\" the callbacks.\r\n */\r\n get: function () {\r\n if (!this.__events) {\r\n this.__events = new _EventGroup__WEBPACK_IMPORTED_MODULE_3__[\"EventGroup\"](this);\r\n this._disposables.push(this.__events);\r\n }\r\n return this.__events;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n /**\r\n * Helper to return a memoized ref resolver function.\r\n * @param refName - Name of the member to assign the ref to.\r\n * @returns A function instance keyed from the given refname.\r\n * @deprecated Use `createRef` from React.createRef.\r\n */\r\n BaseComponent.prototype._resolveRef = function (refName) {\r\n var _this = this;\r\n if (!this.__resolves) {\r\n this.__resolves = {};\r\n }\r\n if (!this.__resolves[refName]) {\r\n // tslint:disable-next-line:no-any\r\n this.__resolves[refName] = function (ref) {\r\n // tslint:disable-next-line:no-any\r\n return (_this[refName] = ref);\r\n };\r\n }\r\n return this.__resolves[refName];\r\n };\r\n /**\r\n * Updates the componentRef (by calling it with \"this\" when necessary.)\r\n */\r\n BaseComponent.prototype._updateComponentRef = function (currentProps, newProps) {\r\n if (newProps === void 0) { newProps = {}; }\r\n // currentProps *should* always be defined, but verify that just in case a subclass is manually\r\n // calling a lifecycle method with no parameters (which has happened) or other odd usage.\r\n if (currentProps && newProps && currentProps.componentRef !== newProps.componentRef) {\r\n this._setComponentRef(currentProps.componentRef, null);\r\n this._setComponentRef(newProps.componentRef, this);\r\n }\r\n };\r\n /**\r\n * Warns when a deprecated props are being used.\r\n *\r\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\r\n * either null or a replacement prop name.\r\n */\r\n BaseComponent.prototype._warnDeprecations = function (deprecationMap) {\r\n Object(_warn__WEBPACK_IMPORTED_MODULE_4__[\"warnDeprecations\"])(this.className, this.props, deprecationMap);\r\n };\r\n /**\r\n * Warns when props which are mutually exclusive with each other are both used.\r\n *\r\n * @param mutuallyExclusiveMap - The map of mutually exclusive props.\r\n */\r\n BaseComponent.prototype._warnMutuallyExclusive = function (mutuallyExclusiveMap) {\r\n Object(_warn__WEBPACK_IMPORTED_MODULE_4__[\"warnMutuallyExclusive\"])(this.className, this.props, mutuallyExclusiveMap);\r\n };\r\n /**\r\n * Warns when props are required if a condition is met.\r\n *\r\n * @param requiredProps - The name of the props that are required when the condition is met.\r\n * @param conditionalPropName - The name of the prop that the condition is based on.\r\n * @param condition - Whether the condition is met.\r\n */\r\n BaseComponent.prototype._warnConditionallyRequiredProps = function (requiredProps, conditionalPropName, condition) {\r\n Object(_warn__WEBPACK_IMPORTED_MODULE_4__[\"warnConditionallyRequiredProps\"])(this.className, this.props, requiredProps, conditionalPropName, condition);\r\n };\r\n BaseComponent.prototype._setComponentRef = function (ref, value) {\r\n if (!this._skipComponentRefResolution && ref) {\r\n if (typeof ref === 'function') {\r\n ref(value);\r\n }\r\n if (typeof ref === 'object') {\r\n // tslint:disable:no-any\r\n ref.current = value;\r\n }\r\n }\r\n };\r\n return BaseComponent;\r\n}(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n\r\n/**\r\n * Helper to override a given method with a wrapper method that can try/catch the original, but also\r\n * ensures that the BaseComponent's methods are called before the subclass's. This ensures that\r\n * componentWillUnmount in the base is called and that things in the _disposables array are disposed.\r\n */\r\nfunction _makeAllSafe(obj, prototype, methodNames) {\r\n for (var i = 0, len = methodNames.length; i < len; i++) {\r\n _makeSafe(obj, prototype, methodNames[i]);\r\n }\r\n}\r\nfunction _makeSafe(obj, prototype, methodName) {\r\n // tslint:disable:no-any\r\n var classMethod = obj[methodName];\r\n var prototypeMethod = prototype[methodName];\r\n // tslint:enable:no-any\r\n if (classMethod || prototypeMethod) {\r\n // tslint:disable-next-line:no-any\r\n obj[methodName] = function () {\r\n var retVal;\r\n if (prototypeMethod) {\r\n retVal = prototypeMethod.apply(this, arguments);\r\n }\r\n if (classMethod !== prototypeMethod) {\r\n retVal = classMethod.apply(this, arguments);\r\n }\r\n return retVal;\r\n };\r\n }\r\n}\r\n/**\r\n * Simple constant function for returning null, used to render empty templates in JSX.\r\n *\r\n * @public\r\n */\r\nfunction nullRender() {\r\n return null;\r\n}\r\n//# sourceMappingURL=BaseComponent.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/BaseComponent.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/Context.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/Context.js ***!
\*********************************************************/
/*! exports provided: provideContext */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"provideContext\", function() { return provideContext; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n\r\n\r\n/**\r\n * @deprecated This function uses the legacy context API, which is deprecated and should not be\r\n * used in new code. Please migrate to the new context API. https://reactjs.org/docs/context.html\r\n */\r\nfunction provideContext(contextTypes, mapPropsToContext) {\r\n var Provider = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Provider, _super);\r\n function Provider() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n Provider.prototype.getChildContext = function () {\r\n return mapPropsToContext(this.props);\r\n };\r\n Provider.prototype.render = function () {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"Children\"].only(this.props.children);\r\n };\r\n Provider.childContextTypes = contextTypes;\r\n return Provider;\r\n }(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n return Provider;\r\n}\r\n//# sourceMappingURL=Context.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/Context.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/Customizations.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/Customizations.js ***!
\****************************************************************/
/*! exports provided: Customizations */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Customizations\", function() { return Customizations; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var _GlobalSettings__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./GlobalSettings */ \"./node_modules/@uifabric/utilities/lib/GlobalSettings.js\");\n/* harmony import */ var _EventGroup__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./EventGroup */ \"./node_modules/@uifabric/utilities/lib/EventGroup.js\");\n\r\n\r\n\r\nvar CustomizationsGlobalKey = 'customizations';\r\nvar NO_CUSTOMIZATIONS = { settings: {}, scopedSettings: {}, inCustomizerContext: false };\r\nvar _allSettings = _GlobalSettings__WEBPACK_IMPORTED_MODULE_1__[\"GlobalSettings\"].getValue(CustomizationsGlobalKey, {\r\n settings: {},\r\n scopedSettings: {},\r\n inCustomizerContext: false\r\n});\r\nvar _events = new _EventGroup__WEBPACK_IMPORTED_MODULE_2__[\"EventGroup\"](_allSettings);\r\nvar Customizations = /** @class */ (function () {\r\n function Customizations() {\r\n }\r\n Customizations.reset = function () {\r\n _allSettings.settings = {};\r\n _allSettings.scopedSettings = {};\r\n };\r\n // tslint:disable-next-line:no-any\r\n Customizations.applySettings = function (settings) {\r\n _allSettings.settings = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _allSettings.settings, settings);\r\n Customizations._raiseChange();\r\n };\r\n // tslint:disable-next-line:no-any\r\n Customizations.applyScopedSettings = function (scopeName, settings) {\r\n _allSettings.scopedSettings[scopeName] = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _allSettings.scopedSettings[scopeName], settings);\r\n Customizations._raiseChange();\r\n };\r\n Customizations.getSettings = function (properties, scopeName, localSettings\r\n // tslint:disable-next-line:no-any\r\n ) {\r\n if (localSettings === void 0) { localSettings = NO_CUSTOMIZATIONS; }\r\n // tslint:disable-next-line:no-any\r\n var settings = {};\r\n var localScopedSettings = (scopeName && localSettings.scopedSettings[scopeName]) || {};\r\n var globalScopedSettings = (scopeName && _allSettings.scopedSettings[scopeName]) || {};\r\n for (var _i = 0, properties_1 = properties; _i < properties_1.length; _i++) {\r\n var property = properties_1[_i];\r\n settings[property] =\r\n localScopedSettings[property] ||\r\n localSettings.settings[property] ||\r\n globalScopedSettings[property] ||\r\n _allSettings.settings[property];\r\n }\r\n return settings;\r\n };\r\n Customizations.observe = function (onChange) {\r\n _events.on(_allSettings, 'change', onChange);\r\n };\r\n Customizations.unobserve = function (onChange) {\r\n _events.off(_allSettings, 'change', onChange);\r\n };\r\n Customizations._raiseChange = function () {\r\n _events.raise('change');\r\n };\r\n return Customizations;\r\n}());\r\n\r\n//# sourceMappingURL=Customizations.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/Customizations.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/Customizer.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/Customizer.js ***!
\************************************************************/
/*! exports provided: CustomizerContext, Customizer, mergeCustomizations, mergeSettings */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CustomizerContext\", function() { return CustomizerContext; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Customizer\", function() { return Customizer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeCustomizations\", function() { return mergeCustomizations; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeSettings\", function() { return mergeSettings; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _BaseComponent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BaseComponent */ \"./node_modules/@uifabric/utilities/lib/BaseComponent.js\");\n/* harmony import */ var _Customizations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Customizations */ \"./node_modules/@uifabric/utilities/lib/Customizations.js\");\n\r\n\r\n\r\n\r\nvar CustomizerContext = react__WEBPACK_IMPORTED_MODULE_1__[\"createContext\"]({\r\n customizations: {\r\n inCustomizerContext: false,\r\n settings: {},\r\n scopedSettings: {}\r\n }\r\n});\r\n/**\r\n * The Customizer component allows for default props to be mixed into components which\r\n * are decorated with the customizable() decorator, or use the styled HOC. This enables\r\n * injection scenarios like:\r\n *\r\n * 1. render svg icons instead of the icon font within all buttons\r\n * 2. inject a custom theme object into a component\r\n *\r\n * Props are provided via the settings prop which should be one of the following:\r\n * - A json map which contains 1 or more name/value pairs representing injectable props.\r\n * - A function that receives the current settings and returns the new ones that apply to the scope\r\n *\r\n * @public\r\n */\r\nvar Customizer = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Customizer, _super);\r\n function Customizer() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this._changeCount = 0;\r\n _this._onCustomizationChange = function () { return _this.forceUpdate(); };\r\n return _this;\r\n }\r\n Customizer.prototype.componentDidMount = function () {\r\n _Customizations__WEBPACK_IMPORTED_MODULE_3__[\"Customizations\"].observe(this._onCustomizationChange);\r\n };\r\n Customizer.prototype.componentWillUnmount = function () {\r\n _Customizations__WEBPACK_IMPORTED_MODULE_3__[\"Customizations\"].unobserve(this._onCustomizationChange);\r\n };\r\n Customizer.prototype.render = function () {\r\n var _this = this;\r\n var contextTransform = this.props.contextTransform;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](CustomizerContext.Consumer, null, function (parentContext) {\r\n var newContext = mergeCustomizations(_this.props, parentContext);\r\n if (contextTransform) {\r\n newContext = contextTransform(newContext);\r\n }\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](CustomizerContext.Provider, { value: newContext }, _this.props.children);\r\n }));\r\n };\r\n return Customizer;\r\n}(_BaseComponent__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]));\r\n\r\n/**\r\n * Merge props and customizations giving priority to props over context.\r\n * NOTE: This function will always perform multiple merge operations. Use with caution.\r\n * @param props - New settings to merge in.\r\n * @param parentContext - Context containing current settings.\r\n * @returns Merged customizations.\r\n */\r\nfunction mergeCustomizations(props, parentContext) {\r\n var _a = (parentContext || {}).customizations, customizations = _a === void 0 ? { settings: {}, scopedSettings: {} } : _a;\r\n return {\r\n customizations: {\r\n settings: mergeSettings(customizations.settings, props.settings),\r\n scopedSettings: mergeScopedSettings(customizations.scopedSettings, props.scopedSettings),\r\n inCustomizerContext: true\r\n }\r\n };\r\n}\r\n/**\r\n * Merge new and old settings, giving priority to new settings.\r\n * New settings is optional in which case oldSettings is returned as-is.\r\n * @param oldSettings - Old settings to fall back to.\r\n * @param newSettings - New settings that will be merged over oldSettings.\r\n * @returns Merged settings.\r\n */\r\nfunction mergeSettings(oldSettings, newSettings) {\r\n if (oldSettings === void 0) { oldSettings = {}; }\r\n var mergeSettingsWith = isSettingsFunction(newSettings) ? newSettings : settingsMergeWith(newSettings);\r\n return mergeSettingsWith(oldSettings);\r\n}\r\nfunction mergeScopedSettings(oldSettings, newSettings) {\r\n if (oldSettings === void 0) { oldSettings = {}; }\r\n var mergeSettingsWith = isSettingsFunction(newSettings) ? newSettings : scopedSettingsMergeWith(newSettings);\r\n return mergeSettingsWith(oldSettings);\r\n}\r\nfunction isSettingsFunction(settings) {\r\n return typeof settings === 'function';\r\n}\r\nfunction settingsMergeWith(newSettings) {\r\n return function (settings) { return (newSettings ? tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, settings, newSettings) : settings); };\r\n}\r\nfunction scopedSettingsMergeWith(scopedSettingsFromProps) {\r\n if (scopedSettingsFromProps === void 0) { scopedSettingsFromProps = {}; }\r\n return function (oldScopedSettings) {\r\n var newScopedSettings = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, oldScopedSettings);\r\n for (var scopeName in scopedSettingsFromProps) {\r\n if (scopedSettingsFromProps.hasOwnProperty(scopeName)) {\r\n newScopedSettings[scopeName] = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, oldScopedSettings[scopeName], scopedSettingsFromProps[scopeName]);\r\n }\r\n }\r\n return newScopedSettings;\r\n };\r\n}\r\n//# sourceMappingURL=Customizer.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/Customizer.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/DelayedRender.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/DelayedRender.js ***!
\***************************************************************/
/*! exports provided: DelayedRender */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DelayedRender\", function() { return DelayedRender; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n\r\n\r\n/**\r\n * Utility component for delaying the render of a child component after a given delay. This component\r\n * requires a single child component; don't pass in many components. Wrap multiple components in a DIV\r\n * if necessary.\r\n *\r\n * @public\r\n */\r\nvar DelayedRender = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](DelayedRender, _super);\r\n function DelayedRender(props) {\r\n var _this = _super.call(this, props) || this;\r\n _this.state = {\r\n isRendered: false\r\n };\r\n return _this;\r\n }\r\n DelayedRender.prototype.componentDidMount = function () {\r\n var _this = this;\r\n var delay = this.props.delay;\r\n this._timeoutId = setTimeout(function () {\r\n _this.setState({\r\n isRendered: true\r\n });\r\n }, delay);\r\n };\r\n DelayedRender.prototype.componentWillUnmount = function () {\r\n if (this._timeoutId) {\r\n clearTimeout(this._timeoutId);\r\n }\r\n };\r\n DelayedRender.prototype.render = function () {\r\n return this.state.isRendered ? react__WEBPACK_IMPORTED_MODULE_1__[\"Children\"].only(this.props.children) : null;\r\n };\r\n DelayedRender.defaultProps = {\r\n delay: 0\r\n };\r\n return DelayedRender;\r\n}(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n\r\n//# sourceMappingURL=DelayedRender.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/DelayedRender.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/EventGroup.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/EventGroup.js ***!
\************************************************************/
/*! exports provided: EventGroup */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EventGroup\", function() { return EventGroup; });\n/* harmony import */ var _object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./object */ \"./node_modules/@uifabric/utilities/lib/object.js\");\n/* tslint:disable:no-string-literal */\r\n\r\n/** An instance of EventGroup allows anything with a handle to it to trigger events on it.\r\n * If the target is an HTMLElement, the event will be attached to the element and can be\r\n * triggered as usual (like clicking for onclick).\r\n * The event can be triggered by calling EventGroup.raise() here. If the target is an\r\n * HTMLElement, the event gets raised and is handled by the browser. Otherwise, it gets\r\n * handled here in EventGroup, and the handler is called in the context of the parent\r\n * (which is passed in in the constructor).\r\n *\r\n * @public\r\n */\r\nvar EventGroup = /** @class */ (function () {\r\n /** parent: the context in which events attached to non-HTMLElements are called */\r\n // tslint:disable-next-line:no-any\r\n function EventGroup(parent) {\r\n this._id = EventGroup._uniqueId++;\r\n this._parent = parent;\r\n this._eventRecords = [];\r\n }\r\n /** For IE8, bubbleEvent is ignored here and must be dealt with by the handler.\r\n * Events raised here by default have bubbling set to false and cancelable set to true.\r\n * This applies also to built-in events being raised manually here on HTMLElements,\r\n * which may lead to unexpected behavior if it differs from the defaults.\r\n *\r\n */\r\n EventGroup.raise = function (\r\n // tslint:disable-next-line:no-any\r\n target, eventName, \r\n // tslint:disable-next-line:no-any\r\n eventArgs, bubbleEvent) {\r\n var retVal;\r\n if (EventGroup._isElement(target)) {\r\n if (document.createEvent) {\r\n var ev = document.createEvent('HTMLEvents');\r\n ev.initEvent(eventName, bubbleEvent || false, true);\r\n Object(_object__WEBPACK_IMPORTED_MODULE_0__[\"assign\"])(ev, eventArgs);\r\n retVal = target.dispatchEvent(ev);\r\n // tslint:disable-next-line:no-any\r\n }\r\n else if (document['createEventObject']) {\r\n // IE8\r\n // tslint:disable-next-line:no-any\r\n var evObj = document['createEventObject'](eventArgs);\r\n // cannot set cancelBubble on evObj, fireEvent will overwrite it\r\n target.fireEvent('on' + eventName, evObj);\r\n }\r\n }\r\n else {\r\n while (target && retVal !== false) {\r\n var events = target.__events__;\r\n var eventRecords = events ? events[eventName] : null;\r\n if (eventRecords) {\r\n for (var id in eventRecords) {\r\n if (eventRecords.hasOwnProperty(id)) {\r\n var eventRecordList = eventRecords[id];\r\n for (var listIndex = 0; retVal !== false && listIndex < eventRecordList.length; listIndex++) {\r\n var record = eventRecordList[listIndex];\r\n if (record.objectCallback) {\r\n retVal = record.objectCallback.call(record.parent, eventArgs);\r\n }\r\n }\r\n }\r\n }\r\n }\r\n // If the target has a parent, bubble the event up.\r\n target = bubbleEvent ? target.parent : null;\r\n }\r\n }\r\n return retVal;\r\n };\r\n // tslint:disable-next-line:no-any\r\n EventGroup.isObserved = function (target, eventName) {\r\n var events = target && target.__events__;\r\n return !!events && !!events[eventName];\r\n };\r\n /** Check to see if the target has declared support of the given event. */\r\n // tslint:disable-next-line:no-any\r\n EventGroup.isDeclared = function (target, eventName) {\r\n var declaredEvents = target && target.__declaredEvents;\r\n return !!declaredEvents && !!declaredEvents[eventName];\r\n };\r\n // tslint:disable-next-line:no-any\r\n EventGroup.stopPropagation = function (event) {\r\n if (event.stopPropagation) {\r\n event.stopPropagation();\r\n }\r\n else {\r\n // IE8\r\n event.cancelBubble = true;\r\n }\r\n };\r\n EventGroup._isElement = function (target) {\r\n return !!target && (!!target.addEventListener || (typeof HTMLElement !== 'undefined' && target instanceof HTMLElement));\r\n };\r\n EventGroup.prototype.dispose = function () {\r\n if (!this._isDisposed) {\r\n this._isDisposed = true;\r\n this.off();\r\n this._parent = null;\r\n }\r\n };\r\n /** On the target, attach a set of events, where the events object is a name to function mapping. */\r\n // tslint:disable-next-line:no-any\r\n EventGroup.prototype.onAll = function (target, events, useCapture) {\r\n for (var eventName in events) {\r\n if (events.hasOwnProperty(eventName)) {\r\n this.on(target, eventName, events[eventName], useCapture);\r\n }\r\n }\r\n };\r\n /** On the target, attach an event whose handler will be called in the context of the parent\r\n * of this instance of EventGroup.\r\n */\r\n // tslint:disable-next-line:no-any\r\n EventGroup.prototype.on = function (target, eventName, callback, options) {\r\n var _this = this;\r\n if (eventName.indexOf(',') > -1) {\r\n var events = eventName.split(/[ ,]+/);\r\n for (var i = 0; i < events.length; i++) {\r\n this.on(target, events[i], callback, options);\r\n }\r\n }\r\n else {\r\n var parent_1 = this._parent;\r\n var eventRecord = {\r\n target: target,\r\n eventName: eventName,\r\n parent: parent_1,\r\n callback: callback,\r\n options: options\r\n };\r\n // Initialize and wire up the record on the target, so that it can call the callback if the event fires.\r\n var events = (target.__events__ = target.__events__ || {});\r\n events[eventName] =\r\n events[eventName] ||\r\n {\r\n count: 0\r\n };\r\n events[eventName][this._id] = events[eventName][this._id] || [];\r\n events[eventName][this._id].push(eventRecord);\r\n events[eventName].count++;\r\n if (EventGroup._isElement(target)) {\r\n // tslint:disable-next-line:no-any\r\n var processElementEvent = function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n if (_this._isDisposed) {\r\n return;\r\n }\r\n var result;\r\n try {\r\n result = callback.apply(parent_1, args);\r\n if (result === false && args[0]) {\r\n var e = args[0];\r\n if (e.preventDefault) {\r\n e.preventDefault();\r\n }\r\n if (e.stopPropagation) {\r\n e.stopPropagation();\r\n }\r\n e.cancelBubble = true;\r\n }\r\n }\r\n catch (e) {\r\n /* ErrorHelper.log(e); */\r\n }\r\n return result;\r\n };\r\n eventRecord.elementCallback = processElementEvent;\r\n if (target.addEventListener) {\r\n /* tslint:disable:ban-native-functions */\r\n target.addEventListener(eventName, processElementEvent, options);\r\n /* tslint:enable:ban-native-functions */\r\n }\r\n else if (target.attachEvent) {\r\n // IE8\r\n target.attachEvent('on' + eventName, processElementEvent);\r\n }\r\n }\r\n else {\r\n // tslint:disable-next-line:no-any\r\n var processObjectEvent = function () {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n if (_this._isDisposed) {\r\n return;\r\n }\r\n return callback.apply(parent_1, args);\r\n };\r\n eventRecord.objectCallback = processObjectEvent;\r\n }\r\n // Remember the record locally, so that it can be removed.\r\n this._eventRecords.push(eventRecord);\r\n }\r\n };\r\n // tslint:disable-next-line:no-any\r\n EventGroup.prototype.off = function (target, eventName, callback, options) {\r\n for (var i = 0; i < this._eventRecords.length; i++) {\r\n var eventRecord = this._eventRecords[i];\r\n if ((!target || target === eventRecord.target) &&\r\n (!eventName || eventName === eventRecord.eventName) &&\r\n (!callback || callback === eventRecord.callback) &&\r\n (typeof options !== 'boolean' || options === eventRecord.options)) {\r\n var events = eventRecord.target.__events__;\r\n var targetArrayLookup = events[eventRecord.eventName];\r\n var targetArray = targetArrayLookup ? targetArrayLookup[this._id] : null;\r\n // We may have already target's entries, so check for null.\r\n if (targetArray) {\r\n if (targetArray.length === 1 || !callback) {\r\n targetArrayLookup.count -= targetArray.length;\r\n delete events[eventRecord.eventName][this._id];\r\n }\r\n else {\r\n targetArrayLookup.count--;\r\n targetArray.splice(targetArray.indexOf(eventRecord), 1);\r\n }\r\n if (!targetArrayLookup.count) {\r\n delete events[eventRecord.eventName];\r\n }\r\n }\r\n if (eventRecord.elementCallback) {\r\n if (eventRecord.target.removeEventListener) {\r\n eventRecord.target.removeEventListener(eventRecord.eventName, eventRecord.elementCallback, eventRecord.options);\r\n }\r\n else if (eventRecord.target.detachEvent) {\r\n // IE8\r\n eventRecord.target.detachEvent('on' + eventRecord.eventName, eventRecord.elementCallback);\r\n }\r\n }\r\n this._eventRecords.splice(i--, 1);\r\n }\r\n }\r\n };\r\n /** Trigger the given event in the context of this instance of EventGroup. */\r\n // tslint:disable-next-line:no-any\r\n EventGroup.prototype.raise = function (eventName, eventArgs, bubbleEvent) {\r\n return EventGroup.raise(this._parent, eventName, eventArgs, bubbleEvent);\r\n };\r\n /** Declare an event as being supported by this instance of EventGroup. */\r\n EventGroup.prototype.declare = function (event) {\r\n var declaredEvents = (this._parent.__declaredEvents = this._parent.__declaredEvents || {});\r\n if (typeof event === 'string') {\r\n declaredEvents[event] = true;\r\n }\r\n else {\r\n for (var i = 0; i < event.length; i++) {\r\n declaredEvents[event[i]] = true;\r\n }\r\n }\r\n };\r\n // tslint:disable-next-line:no-inferrable-types\r\n EventGroup._uniqueId = 0;\r\n return EventGroup;\r\n}());\r\n\r\n//# sourceMappingURL=EventGroup.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/EventGroup.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/FabricPerformance.js":
/*!*******************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/FabricPerformance.js ***!
\*******************************************************************/
/*! exports provided: FabricPerformance */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"FabricPerformance\", function() { return FabricPerformance; });\nvar now = function () { return (typeof performance !== 'undefined' && !!performance.now ? performance.now() : Date.now()); };\r\nvar RESET_INTERVAL = 3 * 60 * 1000; // auto reset every 3 minutes\r\n/**\r\n * Performance helper class for measuring things.\r\n *\r\n * @public\r\n */\r\nvar FabricPerformance = /** @class */ (function () {\r\n function FabricPerformance() {\r\n }\r\n /**\r\n * Measures execution time of the given syncronous function. If the same logic is executed multiple times,\r\n * each individual measurement will be collected as well the overall numbers.\r\n * @param name - The name of this measurement\r\n * @param func - The logic to be measured for execution time\r\n */\r\n FabricPerformance.measure = function (name, func) {\r\n if (FabricPerformance._timeoutId) {\r\n FabricPerformance.setPeriodicReset();\r\n }\r\n var start = now();\r\n func();\r\n var end = now();\r\n var measurement = FabricPerformance.summary[name] || {\r\n totalDuration: 0,\r\n count: 0,\r\n all: []\r\n };\r\n var duration = end - start;\r\n measurement.totalDuration += duration;\r\n measurement.count++;\r\n measurement.all.push({\r\n duration: duration,\r\n timeStamp: end\r\n });\r\n FabricPerformance.summary[name] = measurement;\r\n };\r\n FabricPerformance.reset = function () {\r\n FabricPerformance.summary = {};\r\n clearTimeout(FabricPerformance._timeoutId);\r\n FabricPerformance._timeoutId = NaN;\r\n };\r\n FabricPerformance.setPeriodicReset = function () {\r\n FabricPerformance._timeoutId = setTimeout(function () { return FabricPerformance.reset(); }, RESET_INTERVAL);\r\n };\r\n FabricPerformance.summary = {};\r\n return FabricPerformance;\r\n}());\r\n\r\n//# sourceMappingURL=FabricPerformance.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/FabricPerformance.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/GlobalSettings.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/GlobalSettings.js ***!
\****************************************************************/
/*! exports provided: GlobalSettings */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(global) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"GlobalSettings\", function() { return GlobalSettings; });\n/**\r\n * Storing global state in local module variables has issues when more than one copy\r\n * if the module gets loaded on the page (due to a bundling error or simply by consuming\r\n * a prebundled script.)\r\n *\r\n * This file contains helpers to deal with the getting and setting local state, and allows\r\n * callers to get called back when it mutates.\r\n */\r\nvar GLOBAL_SETTINGS_PROP_NAME = '__globalSettings__';\r\nvar CALLBACK_STATE_PROP_NAME = '__callbacks__';\r\n// tslint:disable-next-line:no-any\r\nvar _global;\r\nvar _counter = 0;\r\nif (typeof window !== 'undefined') {\r\n _global = window;\r\n}\r\nelse if (typeof global !== 'undefined') {\r\n _global = global;\r\n}\r\nelse {\r\n _global = {};\r\n}\r\n// tslint:disable-next-line:no-any\r\nvar _globalSettings = (_global[GLOBAL_SETTINGS_PROP_NAME] = _global[GLOBAL_SETTINGS_PROP_NAME] || (_a = {},\r\n _a[CALLBACK_STATE_PROP_NAME] = {},\r\n _a));\r\nvar _callbacks = _globalSettings[CALLBACK_STATE_PROP_NAME];\r\n/**\r\n * Global settings helper, which stores settings in the global (window) namespace.\r\n * If window is not provided, it will store settings in module scope. Provides a\r\n * way to observe changes as well when their values change.\r\n *\r\n * @public\r\n */\r\nvar GlobalSettings = /** @class */ (function () {\r\n function GlobalSettings() {\r\n }\r\n GlobalSettings.getValue = function (key, defaultValue) {\r\n if (_globalSettings[key] === undefined) {\r\n _globalSettings[key] = typeof defaultValue === 'function' ? defaultValue() : defaultValue;\r\n }\r\n return _globalSettings[key];\r\n };\r\n GlobalSettings.setValue = function (key, value) {\r\n var oldValue = _globalSettings[key];\r\n if (value !== oldValue) {\r\n _globalSettings[key] = value;\r\n var changeDescription = {\r\n oldValue: oldValue,\r\n value: value,\r\n key: key\r\n };\r\n for (var id in _callbacks) {\r\n if (_callbacks.hasOwnProperty(id)) {\r\n _callbacks[id](changeDescription);\r\n }\r\n }\r\n }\r\n return value;\r\n };\r\n GlobalSettings.addChangeListener = function (cb) {\r\n // Note: we use generated ids on the callbacks to create a map of the callbacks, which optimizes removal.\r\n // (It's faster to delete a key than it is to look up the index of an object and splice an array.)\r\n var id = cb.__id__;\r\n if (!id) {\r\n id = cb.__id__ = String(_counter++);\r\n }\r\n _callbacks[id] = cb;\r\n };\r\n GlobalSettings.removeChangeListener = function (cb) {\r\n delete _callbacks[cb.__id__];\r\n };\r\n return GlobalSettings;\r\n}());\r\n\r\nvar _a;\r\n//# sourceMappingURL=GlobalSettings.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/GlobalSettings.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/KeyCodes.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/KeyCodes.js ***!
\**********************************************************/
/*! exports provided: KeyCodes */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"KeyCodes\", function() { return KeyCodes; });\n/**\r\n * Simulated enum for keycodes. These will get inlined by uglify when used much like an enum\r\n *\r\n * @public\r\n */\r\nvar KeyCodes = {\r\n backspace: 8,\r\n tab: 9,\r\n enter: 13,\r\n shift: 16,\r\n ctrl: 17,\r\n alt: 18,\r\n pauseBreak: 19,\r\n capslock: 20,\r\n escape: 27,\r\n space: 32,\r\n pageUp: 33,\r\n pageDown: 34,\r\n end: 35,\r\n home: 36,\r\n left: 37,\r\n up: 38,\r\n right: 39,\r\n down: 40,\r\n insert: 45,\r\n del: 46,\r\n zero: 48,\r\n one: 49,\r\n two: 50,\r\n three: 51,\r\n four: 52,\r\n five: 53,\r\n six: 54,\r\n seven: 55,\r\n eight: 56,\r\n nine: 57,\r\n a: 65,\r\n b: 66,\r\n c: 67,\r\n d: 68,\r\n e: 69,\r\n f: 70,\r\n g: 71,\r\n h: 72,\r\n i: 73,\r\n j: 74,\r\n k: 75,\r\n l: 76,\r\n m: 77,\r\n n: 78,\r\n o: 79,\r\n p: 80,\r\n q: 81,\r\n r: 82,\r\n s: 83,\r\n t: 84,\r\n u: 85,\r\n v: 86,\r\n w: 87,\r\n x: 88,\r\n y: 89,\r\n z: 90,\r\n leftWindow: 91,\r\n rightWindow: 92,\r\n select: 93,\r\n zero_numpad: 96,\r\n one_numpad: 97,\r\n two_numpad: 98,\r\n three_numpad: 99,\r\n four_numpad: 100,\r\n five_numpad: 101,\r\n six_numpad: 102,\r\n seven_numpad: 103,\r\n eight_numpad: 104,\r\n nine_numpad: 105,\r\n multiply: 106,\r\n add: 107,\r\n subtract: 109,\r\n decimalPoint: 110,\r\n divide: 111,\r\n f1: 112,\r\n f2: 113,\r\n f3: 114,\r\n f4: 115,\r\n f5: 116,\r\n f6: 117,\r\n f7: 118,\r\n f8: 119,\r\n f9: 120,\r\n f10: 121,\r\n f11: 122,\r\n f12: 123,\r\n numlock: 144,\r\n scrollLock: 145,\r\n semicolon: 186,\r\n equalSign: 187,\r\n comma: 188,\r\n dash: 189,\r\n period: 190,\r\n forwardSlash: 191,\r\n graveAccent: 192,\r\n openBracket: 219,\r\n backSlash: 220,\r\n closeBracket: 221,\r\n singleQuote: 222\r\n};\r\n//# sourceMappingURL=KeyCodes.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/KeyCodes.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/Rectangle.js":
/*!***********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/Rectangle.js ***!
\***********************************************************/
/*! exports provided: Rectangle */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Rectangle\", function() { return Rectangle; });\n/**\r\n * Rectangle helper class.\r\n *\r\n * @public\r\n */\r\nvar Rectangle = /** @class */ (function () {\r\n function Rectangle(left, right, top, bottom) {\r\n if (left === void 0) { left = 0; }\r\n if (right === void 0) { right = 0; }\r\n if (top === void 0) { top = 0; }\r\n if (bottom === void 0) { bottom = 0; }\r\n this.top = top;\r\n this.bottom = bottom;\r\n this.left = left;\r\n this.right = right;\r\n }\r\n Object.defineProperty(Rectangle.prototype, \"width\", {\r\n /**\r\n * Calculated automatically by subtracting the right from left\r\n */\r\n get: function () {\r\n return this.right - this.left;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(Rectangle.prototype, \"height\", {\r\n /**\r\n * Calculated automatically by subtracting the bottom from top.\r\n */\r\n get: function () {\r\n return this.bottom - this.top;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n /**\r\n * Tests if another rect is approximately equal to this rect (within 4 decimal places.)\r\n */\r\n Rectangle.prototype.equals = function (rect) {\r\n // I'm fixing it to 4 decimal places because it allows enough precision and will handle cases when something should be rounded,\r\n // like .999999 should round to 1.\r\n return (parseFloat(this.top.toFixed(4)) === parseFloat(rect.top.toFixed(4)) &&\r\n parseFloat(this.bottom.toFixed(4)) === parseFloat(rect.bottom.toFixed(4)) &&\r\n parseFloat(this.left.toFixed(4)) === parseFloat(rect.left.toFixed(4)) &&\r\n parseFloat(this.right.toFixed(4)) === parseFloat(rect.right.toFixed(4)));\r\n };\r\n return Rectangle;\r\n}());\r\n\r\n//# sourceMappingURL=Rectangle.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/Rectangle.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/aria.js":
/*!******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/aria.js ***!
\******************************************************/
/*! exports provided: mergeAriaAttributeValues */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mergeAriaAttributeValues\", function() { return mergeAriaAttributeValues; });\n/**\r\n * ARIA helper to concatenate attributes, returning undefined if all attributes\r\n * are undefined. (Empty strings are not a valid ARIA attribute value.)\r\n *\r\n * NOTE: This function will NOT insert whitespace between provided attributes.\r\n *\r\n * @param ariaAttributes - ARIA attributes to merge\r\n */\r\nfunction mergeAriaAttributeValues() {\r\n var ariaAttributes = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n ariaAttributes[_i] = arguments[_i];\r\n }\r\n var mergedAttribute = ariaAttributes.filter(function (arg) { return arg !== undefined && arg !== null; }).join('');\r\n return mergedAttribute === '' ? undefined : mergedAttribute;\r\n}\r\n//# sourceMappingURL=aria.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/aria.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/array.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/array.js ***!
\*******************************************************/
/*! exports provided: findIndex, find, createArray, toMatrix, removeIndex, replaceElement, addElementAtIndex, flatten, arraysEqual */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"findIndex\", function() { return findIndex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"find\", function() { return find; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createArray\", function() { return createArray; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"toMatrix\", function() { return toMatrix; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"removeIndex\", function() { return removeIndex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"replaceElement\", function() { return replaceElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addElementAtIndex\", function() { return addElementAtIndex; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"flatten\", function() { return flatten; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"arraysEqual\", function() { return arraysEqual; });\n/**\r\n * Helper to find the index of an item within an array, using a callback to\r\n * determine the match.\r\n *\r\n * @public\r\n * @param array - Array to search.\r\n * @param cb - Callback which returns true on matches.\r\n */\r\nfunction findIndex(array, cb) {\r\n var index = -1;\r\n for (var i = 0; array && i < array.length; i++) {\r\n if (cb(array[i], i)) {\r\n index = i;\r\n break;\r\n }\r\n }\r\n return index;\r\n}\r\n/**\r\n * Helper to find the first item within an array that satisfies the callback.\r\n * @param array - Array to search\r\n * @param cb - Callback which returns true on matches\r\n */\r\nfunction find(array, cb) {\r\n var index = findIndex(array, cb);\r\n if (index < 0) {\r\n return undefined;\r\n }\r\n return array[index];\r\n}\r\n/**\r\n * Creates an array of a given size and helper method to populate.\r\n *\r\n * @public\r\n * @param size - Size of array.\r\n * @param getItem - Callback to populate given cell index.\r\n */\r\nfunction createArray(size, getItem) {\r\n var array = [];\r\n for (var i = 0; i < size; i++) {\r\n array.push(getItem(i));\r\n }\r\n return array;\r\n}\r\n/**\r\n * Convert the given array to a matrix with columnCount number\r\n * of columns.\r\n *\r\n * @public\r\n * @param items - The array to convert\r\n * @param columnCount - The number of columns for the resulting matrix\r\n * @returns A matrix of items\r\n */\r\nfunction toMatrix(items, columnCount) {\r\n return items.reduce(function (rows, currentValue, index) {\r\n if (index % columnCount === 0) {\r\n rows.push([currentValue]);\r\n }\r\n else {\r\n rows[rows.length - 1].push(currentValue);\r\n }\r\n return rows;\r\n }, []);\r\n}\r\n/**\r\n * Given an array, it returns a new array that does not contain the item at the given index.\r\n * @param array - The array to operate on\r\n * @param index - The index of the element to remove\r\n */\r\nfunction removeIndex(array, index) {\r\n return array.filter(function (_, i) { return index !== i; });\r\n}\r\n/**\r\n * Given an array, this function returns a new array where the element at a given index has been replaced.\r\n * @param array - The array to operate on\r\n * @param newElement - The element that will be placed in the new array\r\n * @param index - The index of the element that should be replaced\r\n */\r\nfunction replaceElement(array, newElement, index) {\r\n var copy = array.slice();\r\n copy[index] = newElement;\r\n return copy;\r\n}\r\n/**\r\n * Given an array, this function returns a new array where an element has been inserted at the given index.\r\n * @param array - The array to operate on\r\n * @param index - The index where an element should be inserted\r\n * @param itemToAdd - The element to insert\r\n */\r\nfunction addElementAtIndex(array, index, itemToAdd) {\r\n var copy = array.slice();\r\n copy.splice(index, 0, itemToAdd);\r\n return copy;\r\n}\r\n/**\r\n * Given an array where each element is of type T or T[], flatten it into an array of T\r\n * @param array - The array where each element can optionally also be an array\r\n */\r\nfunction flatten(array) {\r\n var result = [];\r\n array.forEach(function (item) { return (result = result.concat(item)); });\r\n return result;\r\n}\r\n/**\r\n * Returns a boolean indicating if the two given arrays are equal in length and values.\r\n *\r\n * @param array1 - First array to compare\r\n * @param array2 - Second array to compare\r\n * @returns True if the arrays are the same length and have the same values in the same positions, false otherwise.\r\n */\r\nfunction arraysEqual(array1, array2) {\r\n if (array1.length !== array2.length) {\r\n return false;\r\n }\r\n for (var i = 0; i < array1.length; i++) {\r\n if (array1[i] !== array2[i]) {\r\n return false;\r\n }\r\n }\r\n return true;\r\n}\r\n//# sourceMappingURL=array.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/array.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/asAsync.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/asAsync.js ***!
\*********************************************************/
/*! exports provided: asAsync */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"asAsync\", function() { return asAsync; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/**\r\n * asAsync - a HOC for async loading components.\r\n *\r\n * Usage:\r\n *\r\n * const AsyncDialog = asAsync({\r\n * load: () => import('Dialog').then(result => result.default),\r\n * });\r\n *\r\n * React.render(domElement, } { ...dialogProps } />);\r\n *\r\n * Note the `asyncPlaceholder` prop will be respected when rendering the async component and it hasn't\r\n * been loaded yet.\r\n */\r\n\r\n\r\n/**\r\n * If possible, use a WeakMap to maintain a cache of loaded components.\r\n * This can be used to synchronously render components that have already been loaded,\r\n * rather than having to wait for at least one async tick.\r\n */\r\nvar _syncModuleCache = typeof WeakMap !== 'undefined'\r\n ? // tslint:disable-next-line:no-any\r\n new WeakMap()\r\n : undefined;\r\n/**\r\n * Produces a component which internally loads the target component before first mount.\r\n * The component passes all props through to the loaded component.\r\n *\r\n * This overload accepts a module with a default export for the component.\r\n */\r\nfunction asAsync(options) {\r\n var Async = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Async, _super);\r\n function Async() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this.state = {\r\n Component: _syncModuleCache ? _syncModuleCache.get(options.load) : undefined\r\n };\r\n return _this;\r\n }\r\n Async.prototype.render = function () {\r\n // Typescript issue: the rest can't be pulled without the any cast, as TypeScript fails with rest on generics.\r\n // tslint:disable-next-line:no-any\r\n var _a = this.props, forwardedRef = _a.forwardedRef, Placeholder = _a.asyncPlaceholder, rest = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](_a, [\"forwardedRef\", \"asyncPlaceholder\"]);\r\n var Component = this.state.Component;\r\n return Component ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](Component, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ ref: forwardedRef }, rest)) : Placeholder ? react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](Placeholder, null) : null;\r\n };\r\n Async.prototype.componentDidMount = function () {\r\n var _this = this;\r\n var Component = this.state.Component;\r\n if (!Component) {\r\n options\r\n .load()\r\n .then(function (LoadedComponent) {\r\n if (LoadedComponent) {\r\n // Cache component for future reference.\r\n _syncModuleCache && _syncModuleCache.set(options.load, LoadedComponent);\r\n // Set state.\r\n _this.setState({\r\n Component: LoadedComponent\r\n }, options.onLoad);\r\n }\r\n })\r\n .catch(options.onError);\r\n }\r\n };\r\n return Async;\r\n }(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"forwardRef\"](function (props, ref) { return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](Async, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props, { forwardedRef: ref }))); });\r\n}\r\n//# sourceMappingURL=asAsync.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/asAsync.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/assertNever.js":
/*!*************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/assertNever.js ***!
\*************************************************************/
/*! exports provided: assertNever */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assertNever\", function() { return assertNever; });\n/**\r\n * AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.\r\n *\r\n * @public\r\n */\r\nfunction assertNever(x) {\r\n throw new Error('Unexpected object: ' + x);\r\n}\r\n//# sourceMappingURL=assertNever.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/assertNever.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/autobind.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/autobind.js ***!
\**********************************************************/
/*! exports provided: autobind */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"autobind\", function() { return autobind; });\n/**\r\n * Autobind is a utility for binding methods in a class. This simplifies tagging methods as being \"bound\" to the this pointer\r\n * so that they can be used in scenarios that simply require a function callback.\r\n * @deprecated This has been deprecated in favor of using arrow function properties\r\n */\r\nfunction autobind(\r\n// tslint:disable-next-line:no-any\r\ntarget, key, descriptor) {\r\n var fn = descriptor.value;\r\n var defining = false;\r\n return {\r\n configurable: true,\r\n get: function () {\r\n if (defining || (fn && this === fn.prototype) || this.hasOwnProperty(key)) {\r\n return fn;\r\n }\r\n // Bind method only once, and update the property to return the bound value from now on\r\n var fnBound = fn && fn.bind(this);\r\n defining = true;\r\n Object.defineProperty(this, key, {\r\n configurable: true,\r\n writable: true,\r\n enumerable: true,\r\n value: fnBound\r\n });\r\n defining = false;\r\n return fnBound;\r\n },\r\n // tslint:disable-next-line:no-any\r\n set: function (newValue) {\r\n Object.defineProperty(this, key, {\r\n configurable: true,\r\n writable: true,\r\n enumerable: true,\r\n value: newValue\r\n });\r\n }\r\n };\r\n}\r\n//# sourceMappingURL=autobind.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/autobind.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/classNamesFunction.js":
/*!********************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/classNamesFunction.js ***!
\********************************************************************/
/*! exports provided: classNamesFunction */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"classNamesFunction\", function() { return classNamesFunction; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n/**\r\n * Creates a getClassNames function which calls getStyles given the props, and injects them\r\n * into mergeStyleSets.\r\n */\r\nfunction classNamesFunction() {\r\n // TODO: memoize.\r\n var getClassNames = function (styleFunctionOrObject, styleProps) {\r\n if (styleProps === void 0) { styleProps = {}; }\r\n // styleSet might be undefined if styleFunctionOrObject is undefined, but getStyles should never\r\n // ordinarily be undefined (it would hardly make any sense).\r\n // However, because we usually use `props.styles` as the argument to an invocation of this method, and\r\n // `props.styles` itself is defined as optional, this avoids the need to use `!` at all invocation points.\r\n if (styleFunctionOrObject === undefined) {\r\n return {};\r\n }\r\n var styleSet = styleFunctionOrObject && (typeof styleFunctionOrObject === 'function' ? styleFunctionOrObject(styleProps) : styleFunctionOrObject);\r\n return Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyleSets\"])(styleSet);\r\n };\r\n return getClassNames;\r\n}\r\n//# sourceMappingURL=classNamesFunction.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/classNamesFunction.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/createRef.js":
/*!***********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/createRef.js ***!
\***********************************************************/
/*! exports provided: createRef */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createRef\", function() { return createRef; });\n/**\r\n * @deprecated Use React.createRef.\r\n * May be removed in 6 months (Jan '19).\r\n */\r\nfunction createRef() {\r\n var refObject = (function (element) {\r\n refObject.current = element;\r\n });\r\n // This getter is here to support the deprecated value prop on the refObject.\r\n Object.defineProperty(refObject, 'value', {\r\n get: function () {\r\n return refObject.current;\r\n }\r\n });\r\n refObject.current = null;\r\n return refObject;\r\n}\r\n//# sourceMappingURL=createRef.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/createRef.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/css.js":
/*!*****************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/css.js ***!
\*****************************************************/
/*! exports provided: css */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"css\", function() { return css; });\n/**\r\n * Concatination helper, which can merge class names together. Skips over falsey values.\r\n *\r\n * @public\r\n */\r\nfunction css() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var classes = [];\r\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\r\n var arg = args_1[_a];\r\n if (arg) {\r\n if (typeof arg === 'string') {\r\n classes.push(arg);\r\n }\r\n else if (arg.hasOwnProperty('toString') && typeof arg.toString === 'function') {\r\n classes.push(arg.toString());\r\n }\r\n else {\r\n // tslint:disable-next-line:no-any\r\n for (var key in arg) {\r\n // tslint:disable-next-line:no-any\r\n if (arg[key]) {\r\n classes.push(key);\r\n }\r\n }\r\n }\r\n }\r\n }\r\n return classes.join(' ');\r\n}\r\n//# sourceMappingURL=css.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/css.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/customizable.js":
/*!**************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/customizable.js ***!
\**************************************************************/
/*! exports provided: customizable */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"customizable\", function() { return customizable; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Customizations__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Customizations */ \"./node_modules/@uifabric/utilities/lib/Customizations.js\");\n/* harmony import */ var _hoistStatics__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./hoistStatics */ \"./node_modules/@uifabric/utilities/lib/hoistStatics.js\");\n/* harmony import */ var _Customizer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Customizer */ \"./node_modules/@uifabric/utilities/lib/Customizer.js\");\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n\r\n\r\n\r\n\r\n\r\nfunction customizable(scope, fields, concatStyles\r\n// tslint:disable-next-line:no-any\r\n) {\r\n // tslint:disable-next-line:no-shadowed-variable\r\n return function customizableFactory(\r\n // tslint:disable-next-line:no-any\r\n ComposedComponent\r\n // tslint:disable-next-line:no-any\r\n ) {\r\n var resultClass = (_a = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](ComponentWithInjectedProps, _super);\r\n // tslint:disable-next-line:no-any\r\n function ComponentWithInjectedProps(props) {\r\n var _this = _super.call(this, props) || this;\r\n _this._onSettingChanged = _this._onSettingChanged.bind(_this);\r\n return _this;\r\n }\r\n ComponentWithInjectedProps.prototype.componentDidMount = function () {\r\n _Customizations__WEBPACK_IMPORTED_MODULE_2__[\"Customizations\"].observe(this._onSettingChanged);\r\n };\r\n ComponentWithInjectedProps.prototype.componentWillUnmount = function () {\r\n _Customizations__WEBPACK_IMPORTED_MODULE_2__[\"Customizations\"].unobserve(this._onSettingChanged);\r\n };\r\n ComponentWithInjectedProps.prototype.render = function () {\r\n var _this = this;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Customizer__WEBPACK_IMPORTED_MODULE_4__[\"CustomizerContext\"].Consumer, null, function (context) {\r\n var defaultProps = _Customizations__WEBPACK_IMPORTED_MODULE_2__[\"Customizations\"].getSettings(fields, scope, context.customizations);\r\n // tslint:disable-next-line:no-any\r\n var componentProps = _this.props;\r\n // If defaultProps.styles is a function, evaluate it before calling concatStyleSets\r\n if (defaultProps.styles && typeof defaultProps.styles === 'function') {\r\n defaultProps.styles = defaultProps.styles(tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, defaultProps, componentProps));\r\n }\r\n if (concatStyles) {\r\n var mergedStyles = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_5__[\"concatStyleSets\"])(defaultProps.styles, componentProps.styles);\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](ComposedComponent, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, defaultProps, componentProps, { styles: mergedStyles }));\r\n }\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](ComposedComponent, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, defaultProps, componentProps));\r\n }));\r\n };\r\n ComponentWithInjectedProps.prototype._onSettingChanged = function () {\r\n this.forceUpdate();\r\n };\r\n return ComponentWithInjectedProps;\r\n }(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"])),\r\n _a.displayName = 'Customized' + scope,\r\n _a);\r\n return Object(_hoistStatics__WEBPACK_IMPORTED_MODULE_3__[\"hoistStatics\"])(ComposedComponent, resultClass);\r\n var _a;\r\n };\r\n}\r\n//# sourceMappingURL=customizable.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/customizable.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/dom.js":
/*!*****************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/dom.js ***!
\*****************************************************/
/*! exports provided: DATA_PORTAL_ATTRIBUTE, setVirtualParent, getVirtualParent, getParent, getChildren, elementContains, setSSR, getWindow, getDocument, getRect, setPortalAttribute, portalContainsElement, findElementRecursive, elementContainsAttribute */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATA_PORTAL_ATTRIBUTE\", function() { return DATA_PORTAL_ATTRIBUTE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setVirtualParent\", function() { return setVirtualParent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getVirtualParent\", function() { return getVirtualParent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getParent\", function() { return getParent; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getChildren\", function() { return getChildren; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"elementContains\", function() { return elementContains; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setSSR\", function() { return setSSR; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getWindow\", function() { return getWindow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDocument\", function() { return getDocument; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRect\", function() { return getRect; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setPortalAttribute\", function() { return setPortalAttribute; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"portalContainsElement\", function() { return portalContainsElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"findElementRecursive\", function() { return findElementRecursive; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"elementContainsAttribute\", function() { return elementContainsAttribute; });\nvar DATA_PORTAL_ATTRIBUTE = 'data-portal-element';\r\n/**\r\n * Sets the virtual parent of an element.\r\n * Pass `undefined` as the `parent` to clear the virtual parent.\r\n *\r\n * @public\r\n */\r\nfunction setVirtualParent(child, parent) {\r\n var virtualChild = child;\r\n var virtualParent = parent;\r\n if (!virtualChild._virtual) {\r\n virtualChild._virtual = {\r\n children: []\r\n };\r\n }\r\n var oldParent = virtualChild._virtual.parent;\r\n if (oldParent && oldParent !== parent) {\r\n // Remove the child from its old parent.\r\n var index = oldParent._virtual.children.indexOf(virtualChild);\r\n if (index > -1) {\r\n oldParent._virtual.children.splice(index, 1);\r\n }\r\n }\r\n virtualChild._virtual.parent = virtualParent || undefined;\r\n if (virtualParent) {\r\n if (!virtualParent._virtual) {\r\n virtualParent._virtual = {\r\n children: []\r\n };\r\n }\r\n virtualParent._virtual.children.push(virtualChild);\r\n }\r\n}\r\n/**\r\n * Gets the virtual parent given the child element, if it exists.\r\n *\r\n * @public\r\n */\r\nfunction getVirtualParent(child) {\r\n var parent;\r\n if (child && isVirtualElement(child)) {\r\n parent = child._virtual.parent;\r\n }\r\n return parent;\r\n}\r\n/**\r\n * Gets the element which is the parent of a given element.\r\n * If `allowVirtuaParents` is `true`, this method prefers the virtual parent over\r\n * real DOM parent when present.\r\n *\r\n * @public\r\n */\r\nfunction getParent(child, allowVirtualParents) {\r\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\r\n return child && ((allowVirtualParents && getVirtualParent(child)) || (child.parentNode && child.parentNode));\r\n}\r\n/**\r\n * Gets the elements which are child elements of the given element.\r\n * If `allowVirtualChildren` is `true`, this method enumerates virtual child elements\r\n * after the original children.\r\n * @param parent - The element to get the children of.\r\n * @param allowVirtualChildren - true if the method should enumerate virtual child elements.\r\n */\r\nfunction getChildren(parent, allowVirtualChildren) {\r\n if (allowVirtualChildren === void 0) { allowVirtualChildren = true; }\r\n var children = [];\r\n if (parent) {\r\n for (var i = 0; i < parent.children.length; i++) {\r\n children.push(parent.children.item(i));\r\n }\r\n if (allowVirtualChildren && isVirtualElement(parent)) {\r\n children.push.apply(children, parent._virtual.children);\r\n }\r\n }\r\n return children;\r\n}\r\n/**\r\n * Determines whether or not a parent element contains a given child element.\r\n * If `allowVirtualParents` is true, this method may return `true` if the child\r\n * has the parent in its virtual element hierarchy.\r\n *\r\n * @public\r\n */\r\nfunction elementContains(parent, child, allowVirtualParents) {\r\n if (allowVirtualParents === void 0) { allowVirtualParents = true; }\r\n var isContained = false;\r\n if (parent && child) {\r\n if (allowVirtualParents) {\r\n isContained = false;\r\n while (child) {\r\n var nextParent = getParent(child);\r\n if (nextParent === parent) {\r\n isContained = true;\r\n break;\r\n }\r\n child = nextParent;\r\n }\r\n }\r\n else if (parent.contains) {\r\n isContained = parent.contains(child);\r\n }\r\n }\r\n return isContained;\r\n}\r\nvar _isSSR = false;\r\n/**\r\n * Helper to set ssr mode to simulate no window object returned from getWindow helper.\r\n *\r\n * @public\r\n */\r\nfunction setSSR(isEnabled) {\r\n _isSSR = isEnabled;\r\n}\r\n/**\r\n * Helper to get the window object.\r\n *\r\n * @public\r\n */\r\nfunction getWindow(rootElement) {\r\n if (_isSSR || typeof window === 'undefined') {\r\n return undefined;\r\n }\r\n else {\r\n return rootElement && rootElement.ownerDocument && rootElement.ownerDocument.defaultView\r\n ? rootElement.ownerDocument.defaultView\r\n : window;\r\n }\r\n}\r\n/**\r\n * Helper to get the document object.\r\n *\r\n * @public\r\n */\r\nfunction getDocument(rootElement) {\r\n if (_isSSR || typeof document === 'undefined') {\r\n return undefined;\r\n }\r\n else {\r\n return rootElement && rootElement.ownerDocument ? rootElement.ownerDocument : document;\r\n }\r\n}\r\n/**\r\n * Helper to get bounding client rect, works with window.\r\n *\r\n * @public\r\n */\r\nfunction getRect(element) {\r\n var rect;\r\n if (element) {\r\n if (element === window) {\r\n rect = {\r\n left: 0,\r\n top: 0,\r\n width: window.innerWidth,\r\n height: window.innerHeight,\r\n right: window.innerWidth,\r\n bottom: window.innerHeight\r\n };\r\n }\r\n else if (element.getBoundingClientRect) {\r\n rect = element.getBoundingClientRect();\r\n }\r\n }\r\n return rect;\r\n}\r\n/**\r\n * Identify element as a portal by setting an attribute.\r\n * @param element - Element to mark as a portal.\r\n */\r\nfunction setPortalAttribute(element) {\r\n element.setAttribute(DATA_PORTAL_ATTRIBUTE, 'true');\r\n}\r\n/**\r\n * Determine whether a target is within a portal from perspective of root or optional parent.\r\n * This function only works against portal components that use the setPortalAttribute function.\r\n * If both parent and child are within the same portal this function will return false.\r\n * @param target - Element to query portal containment status of.\r\n * @param parent - Optional parent perspective. Search for containing portal stops at parent (or root if parent is undefined or invalid.)\r\n */\r\nfunction portalContainsElement(target, parent) {\r\n var elementMatch = findElementRecursive(target, function (testElement) { return parent === testElement || testElement.hasAttribute(DATA_PORTAL_ATTRIBUTE); });\r\n return elementMatch !== null && elementMatch.hasAttribute(DATA_PORTAL_ATTRIBUTE);\r\n}\r\n/**\r\n * Finds the first parent element where the matchFunction returns true\r\n * @param element - element to start searching at\r\n * @param matchFunction - the function that determines if the element is a match\r\n * @returns the matched element or null no match was found\r\n */\r\nfunction findElementRecursive(element, matchFunction) {\r\n if (!element || element === document.body) {\r\n return null;\r\n }\r\n return matchFunction(element) ? element : findElementRecursive(getParent(element), matchFunction);\r\n}\r\n/**\r\n * Determines if an element, or any of its ancestors, contain the given attribute\r\n * @param element - element to start searching at\r\n * @param attribute - the attribute to search for\r\n * @returns the value of the first instance found\r\n */\r\nfunction elementContainsAttribute(element, attribute) {\r\n var elementMatch = findElementRecursive(element, function (testElement) { return testElement.hasAttribute(attribute); });\r\n return elementMatch && elementMatch.getAttribute(attribute);\r\n}\r\n/**\r\n * Determines whether or not an element has the virtual hierarchy extension.\r\n *\r\n * @public\r\n */\r\nfunction isVirtualElement(element) {\r\n return element && !!element._virtual;\r\n}\r\n//# sourceMappingURL=dom.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/dom.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/focus.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/focus.js ***!
\*******************************************************/
/*! exports provided: getFirstFocusable, getLastFocusable, getFirstTabbable, getLastTabbable, focusFirstChild, getPreviousElement, getNextElement, isElementVisible, isElementTabbable, isElementFocusZone, isElementFocusSubZone, doesElementContainFocus, shouldWrapFocus, focusAsync, getFocusableByIndexPath, getElementIndexPath */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getFirstFocusable\", function() { return getFirstFocusable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLastFocusable\", function() { return getLastFocusable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getFirstTabbable\", function() { return getFirstTabbable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLastTabbable\", function() { return getLastTabbable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"focusFirstChild\", function() { return focusFirstChild; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getPreviousElement\", function() { return getPreviousElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getNextElement\", function() { return getNextElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isElementVisible\", function() { return isElementVisible; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isElementTabbable\", function() { return isElementTabbable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isElementFocusZone\", function() { return isElementFocusZone; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isElementFocusSubZone\", function() { return isElementFocusSubZone; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"doesElementContainFocus\", function() { return doesElementContainFocus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"shouldWrapFocus\", function() { return shouldWrapFocus; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"focusAsync\", function() { return focusAsync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getFocusableByIndexPath\", function() { return getFocusableByIndexPath; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getElementIndexPath\", function() { return getElementIndexPath; });\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n/* tslint:disable:no-string-literal */\r\n\r\nvar IS_FOCUSABLE_ATTRIBUTE = 'data-is-focusable';\r\nvar IS_VISIBLE_ATTRIBUTE = 'data-is-visible';\r\nvar FOCUSZONE_ID_ATTRIBUTE = 'data-focuszone-id';\r\nvar FOCUSZONE_SUB_ATTRIBUTE = 'data-is-sub-focuszone';\r\n/**\r\n * Gets the first focusable element.\r\n *\r\n * @public\r\n */\r\nfunction getFirstFocusable(rootElement, currentElement, includeElementsInFocusZones) {\r\n return getNextElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, false /*suppressChildTraversal*/, includeElementsInFocusZones);\r\n}\r\n/**\r\n * Gets the last focusable element.\r\n *\r\n * @public\r\n */\r\nfunction getLastFocusable(rootElement, currentElement, includeElementsInFocusZones) {\r\n return getPreviousElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, true /*traverseChildren*/, includeElementsInFocusZones);\r\n}\r\n/**\r\n * Gets the first tabbable element.\r\n * The difference between focusable and tabbable is that tabbable elements are focusable elements that also have tabIndex != -1.\r\n * @param rootElement - The parent element to search beneath.\r\n * @param currentElement - The descendant of rootElement to start the search at. This element is the first one checked,\r\n * and iteration continues forward. Typical use passes rootElement.firstChild.\r\n * @param includeElementsInFocusZones - true if traversal should go into FocusZone descendants.\r\n * @public\r\n */\r\nfunction getFirstTabbable(rootElement, currentElement, includeElementsInFocusZones) {\r\n return getNextElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, false /*suppressChildTraversal*/, includeElementsInFocusZones, false /*allowFocusRoot*/, true /*tabbable*/);\r\n}\r\n/**\r\n * Gets the last tabbable element.\r\n * The difference between focusable and tabbable is that tabbable elements are focusable elements that also have tabIndex != -1.\r\n * @param rootElement - The parent element to search beneath.\r\n * @param currentElement - The descendant of rootElement to start the search at. This element is the first one checked,\r\n * and iteration continues in reverse. Typical use passes rootElement.lastChild.\r\n * @param includeElementsInFocusZones - true if traversal should go into FocusZone descendants.\r\n * @public\r\n */\r\nfunction getLastTabbable(rootElement, currentElement, includeElementsInFocusZones) {\r\n return getPreviousElement(rootElement, currentElement, true /*checkNode*/, false /*suppressParentTraversal*/, true /*traverseChildren*/, includeElementsInFocusZones, false /*allowFocusRoot*/, true /*tabbable*/);\r\n}\r\n/**\r\n * Attempts to focus the first focusable element that is a child or child's child of the rootElement.\r\n *\r\n * @public\r\n * @param rootElement - Element to start the search for a focusable child.\r\n * @returns True if focus was set, false if it was not.\r\n */\r\nfunction focusFirstChild(rootElement) {\r\n var element = getNextElement(rootElement, rootElement, true, false, false, true);\r\n if (element) {\r\n focusAsync(element);\r\n return true;\r\n }\r\n return false;\r\n}\r\n/**\r\n * Traverse to find the previous element.\r\n * If tabbable is true, the element must have tabIndex != -1.\r\n *\r\n * @public\r\n */\r\nfunction getPreviousElement(rootElement, currentElement, checkNode, suppressParentTraversal, traverseChildren, includeElementsInFocusZones, allowFocusRoot, tabbable) {\r\n if (!currentElement || (!allowFocusRoot && currentElement === rootElement)) {\r\n return null;\r\n }\r\n var isCurrentElementVisible = isElementVisible(currentElement);\r\n // Check its children.\r\n if (traverseChildren &&\r\n isCurrentElementVisible &&\r\n (includeElementsInFocusZones || !(isElementFocusZone(currentElement) || isElementFocusSubZone(currentElement)))) {\r\n var childMatch = getPreviousElement(rootElement, currentElement.lastElementChild, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n if (childMatch) {\r\n if ((tabbable && isElementTabbable(childMatch, true)) || !tabbable) {\r\n return childMatch;\r\n }\r\n var childMatchSiblingMatch = getPreviousElement(rootElement, childMatch.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n if (childMatchSiblingMatch) {\r\n return childMatchSiblingMatch;\r\n }\r\n var childMatchParent = childMatch.parentElement;\r\n // At this point if we have not found any potential matches\r\n // start looking at the rest of the subtree under the currentParent.\r\n // NOTE: We do not want to recurse here because doing so could\r\n // cause elements to get skipped.\r\n while (childMatchParent && childMatchParent !== currentElement) {\r\n var childMatchParentMatch = getPreviousElement(rootElement, childMatchParent.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n if (childMatchParentMatch) {\r\n return childMatchParentMatch;\r\n }\r\n childMatchParent = childMatchParent.parentElement;\r\n }\r\n }\r\n }\r\n // Check the current node, if it's not the first traversal.\r\n if (checkNode && isCurrentElementVisible && isElementTabbable(currentElement)) {\r\n return currentElement;\r\n }\r\n // Check its previous sibling.\r\n var siblingMatch = getPreviousElement(rootElement, currentElement.previousElementSibling, true, true, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n if (siblingMatch) {\r\n return siblingMatch;\r\n }\r\n // Check its parent.\r\n if (!suppressParentTraversal) {\r\n return getPreviousElement(rootElement, currentElement.parentElement, true, false, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n }\r\n return null;\r\n}\r\n/**\r\n * Traverse to find the next focusable element.\r\n * If tabbable is true, the element must have tabIndex != -1.\r\n *\r\n * @public\r\n */\r\nfunction getNextElement(rootElement, currentElement, checkNode, suppressParentTraversal, suppressChildTraversal, includeElementsInFocusZones, allowFocusRoot, tabbable) {\r\n if (!currentElement || (currentElement === rootElement && suppressChildTraversal && !allowFocusRoot)) {\r\n return null;\r\n }\r\n var isCurrentElementVisible = isElementVisible(currentElement);\r\n // Check the current node, if it's not the first traversal.\r\n if (checkNode && isCurrentElementVisible && isElementTabbable(currentElement, tabbable)) {\r\n return currentElement;\r\n }\r\n // Check its children.\r\n if (!suppressChildTraversal &&\r\n isCurrentElementVisible &&\r\n (includeElementsInFocusZones || !(isElementFocusZone(currentElement) || isElementFocusSubZone(currentElement)))) {\r\n var childMatch = getNextElement(rootElement, currentElement.firstElementChild, true, true, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n if (childMatch) {\r\n return childMatch;\r\n }\r\n }\r\n if (currentElement === rootElement) {\r\n return null;\r\n }\r\n // Check its sibling.\r\n var siblingMatch = getNextElement(rootElement, currentElement.nextElementSibling, true, true, false, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n if (siblingMatch) {\r\n return siblingMatch;\r\n }\r\n if (!suppressParentTraversal) {\r\n return getNextElement(rootElement, currentElement.parentElement, false, false, true, includeElementsInFocusZones, allowFocusRoot, tabbable);\r\n }\r\n return null;\r\n}\r\n/**\r\n * Determines if an element is visible.\r\n *\r\n * @public\r\n */\r\nfunction isElementVisible(element) {\r\n // If the element is not valid, return false.\r\n if (!element || !element.getAttribute) {\r\n return false;\r\n }\r\n var visibilityAttribute = element.getAttribute(IS_VISIBLE_ATTRIBUTE);\r\n // If the element is explicitly marked with the visibility attribute, return that value as boolean.\r\n if (visibilityAttribute !== null && visibilityAttribute !== undefined) {\r\n return visibilityAttribute === 'true';\r\n }\r\n // Fallback to other methods of determining actual visibility.\r\n return (element.offsetHeight !== 0 ||\r\n element.offsetParent !== null ||\r\n // tslint:disable-next-line:no-any\r\n element.isVisible === true); // used as a workaround for testing.\r\n}\r\n/**\r\n * Determines if an element can receive focus programmatically or via a mouse click.\r\n * If checkTabIndex is true, additionally checks to ensure the element can be focused with the tab key, meaning tabIndex != -1.\r\n *\r\n * @public\r\n */\r\nfunction isElementTabbable(element, checkTabIndex) {\r\n // If this element is null or is disabled, it is not considered tabbable.\r\n if (!element || element.disabled) {\r\n return false;\r\n }\r\n var tabIndex = 0;\r\n var tabIndexAttributeValue = null;\r\n if (element && element.getAttribute) {\r\n tabIndexAttributeValue = element.getAttribute('tabIndex');\r\n if (tabIndexAttributeValue) {\r\n tabIndex = parseInt(tabIndexAttributeValue, 10);\r\n }\r\n }\r\n var isFocusableAttribute = element.getAttribute ? element.getAttribute(IS_FOCUSABLE_ATTRIBUTE) : null;\r\n var isTabIndexSet = tabIndexAttributeValue !== null && tabIndex >= 0;\r\n var result = !!element &&\r\n isFocusableAttribute !== 'false' &&\r\n (element.tagName === 'A' ||\r\n element.tagName === 'BUTTON' ||\r\n element.tagName === 'INPUT' ||\r\n element.tagName === 'TEXTAREA' ||\r\n isFocusableAttribute === 'true' ||\r\n isTabIndexSet ||\r\n (element.getAttribute && element.getAttribute('role') === 'button'));\r\n return checkTabIndex ? tabIndex !== -1 && result : result;\r\n}\r\n/**\r\n * Determines if a given element is a focus zone.\r\n *\r\n * @public\r\n */\r\nfunction isElementFocusZone(element) {\r\n return !!(element && element.getAttribute && !!element.getAttribute(FOCUSZONE_ID_ATTRIBUTE));\r\n}\r\n/**\r\n * Determines if a given element is a focus sub zone.\r\n *\r\n * @public\r\n */\r\nfunction isElementFocusSubZone(element) {\r\n return !!(element && element.getAttribute && element.getAttribute(FOCUSZONE_SUB_ATTRIBUTE) === 'true');\r\n}\r\n/**\r\n * Determines if an element, or any of its children, contain focus.\r\n *\r\n * @public\r\n */\r\nfunction doesElementContainFocus(element) {\r\n var document = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getDocument\"])(element);\r\n var currentActiveElement = document && document.activeElement;\r\n if (currentActiveElement && Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"elementContains\"])(element, currentActiveElement)) {\r\n return true;\r\n }\r\n return false;\r\n}\r\n/**\r\n * Determines if an, or any of its ancestors, sepcificies that it doesn't want focus to wrap\r\n * @param element - element to start searching from\r\n * @param noWrapDataAttribute - the no wrap data attribute to match (either)\r\n * @returns true if focus should wrap, false otherwise\r\n */\r\nfunction shouldWrapFocus(element, noWrapDataAttribute) {\r\n return Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"elementContainsAttribute\"])(element, noWrapDataAttribute) === 'true' ? false : true;\r\n}\r\nvar targetToFocusOnNextRepaint = undefined;\r\n/**\r\n * Sets focus to an element asynchronously. The focus will be set at the next browser repaint,\r\n * meaning it won't cause any extra recalculations. If more than one focusAsync is called during one frame,\r\n * only the latest called focusAsync element will actually be focused\r\n * @param element - The element to focus\r\n */\r\nfunction focusAsync(element) {\r\n if (element) {\r\n // An element was already queued to be focused, so replace that one with the new element\r\n if (targetToFocusOnNextRepaint) {\r\n targetToFocusOnNextRepaint = element;\r\n return;\r\n }\r\n targetToFocusOnNextRepaint = element;\r\n var win = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getWindow\"])(element);\r\n if (win) {\r\n // element.focus() is a no-op if the element is no longer in the DOM, meaning this is always safe\r\n win.requestAnimationFrame(function () {\r\n targetToFocusOnNextRepaint && targetToFocusOnNextRepaint.focus();\r\n // We are done focusing for this frame, so reset the queued focus element\r\n targetToFocusOnNextRepaint = undefined;\r\n });\r\n }\r\n }\r\n}\r\n/**\r\n * Finds the closest focusable element via an index path from a parent. See\r\n * `getElementIndexPath` for getting an index path from an element to a child.\r\n */\r\nfunction getFocusableByIndexPath(parent, path) {\r\n var element = parent;\r\n for (var _i = 0, path_1 = path; _i < path_1.length; _i++) {\r\n var index = path_1[_i];\r\n var nextChild = element.children[Math.min(index, element.children.length - 1)];\r\n if (!nextChild) {\r\n break;\r\n }\r\n element = nextChild;\r\n }\r\n element =\r\n isElementTabbable(element) && isElementVisible(element)\r\n ? element\r\n : getNextElement(parent, element, true) || getPreviousElement(parent, element);\r\n return element;\r\n}\r\n/**\r\n * Finds the element index path from a parent element to a child element.\r\n *\r\n * If you had this node structure: \"A has children [B, C] and C has child D\",\r\n * the index path from A to D would be [1, 0], or `parent.chidren[1].children[0]`.\r\n */\r\nfunction getElementIndexPath(fromElement, toElement) {\r\n var path = [];\r\n while (toElement && fromElement && toElement !== fromElement) {\r\n var parent_1 = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getParent\"])(toElement, true);\r\n if (parent_1 === null) {\r\n return [];\r\n }\r\n path.unshift(Array.prototype.indexOf.call(parent_1.children, toElement));\r\n toElement = parent_1;\r\n }\r\n return path;\r\n}\r\n//# sourceMappingURL=focus.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/focus.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/hoist.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/hoist.js ***!
\*******************************************************/
/*! exports provided: hoistMethods, unhoistMethods */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hoistMethods\", function() { return hoistMethods; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"unhoistMethods\", function() { return unhoistMethods; });\nvar REACT_LIFECYCLE_EXCLUSIONS = [\r\n 'setState',\r\n 'render',\r\n 'componentWillMount',\r\n 'UNSAFE_componentWillMount',\r\n 'componentDidMount',\r\n 'componentWillReceiveProps',\r\n 'UNSAFE_componentWillReceiveProps',\r\n 'shouldComponentUpdate',\r\n 'componentWillUpdate',\r\n 'getSnapshotBeforeUpdate',\r\n 'UNSAFE_componentWillUpdate',\r\n 'componentDidUpdate',\r\n 'componentWillUnmount'\r\n];\r\n/**\r\n * Allows you to hoist methods, except those in an exclusion set from a source object into a destination object.\r\n *\r\n * @public\r\n * @param destination - The instance of the object to hoist the methods onto.\r\n * @param source - The instance of the object where the methods are hoisted from.\r\n * @param exclusions - (Optional) What methods to exclude from being hoisted.\r\n * @returns An array of names of methods that were hoisted.\r\n */\r\nfunction hoistMethods(\r\n// tslint:disable-next-line:no-any\r\ndestination, \r\n// tslint:disable-next-line:no-any\r\nsource, exclusions) {\r\n if (exclusions === void 0) { exclusions = REACT_LIFECYCLE_EXCLUSIONS; }\r\n var hoisted = [];\r\n var _loop_1 = function (methodName) {\r\n if (typeof source[methodName] === 'function' &&\r\n destination[methodName] === undefined &&\r\n (!exclusions || exclusions.indexOf(methodName) === -1)) {\r\n hoisted.push(methodName);\r\n /* tslint:disable:no-function-expression */\r\n destination[methodName] = function () {\r\n source[methodName].apply(source, arguments);\r\n };\r\n /* tslint:enable */\r\n }\r\n };\r\n for (var methodName in source) {\r\n _loop_1(methodName);\r\n }\r\n return hoisted;\r\n}\r\n/**\r\n * Provides a method for convenience to unhoist hoisted methods.\r\n *\r\n * @public\r\n * @param source - The source object upon which methods were hoisted.\r\n * @param methodNames - An array of method names to unhoist.\r\n */\r\n// tslint:disable-next-line:no-any\r\nfunction unhoistMethods(source, methodNames) {\r\n methodNames.forEach(function (methodName) { return delete source[methodName]; });\r\n}\r\n//# sourceMappingURL=hoist.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/hoist.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/hoistStatics.js":
/*!**************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/hoistStatics.js ***!
\**************************************************************/
/*! exports provided: hoistStatics */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hoistStatics\", function() { return hoistStatics; });\n/**\r\n * Allows you to hoist static functions in components.\r\n * Created for the purpose of fixing broken static functions in classes\r\n * that utilize decorators.\r\n *\r\n * @public\r\n * @param source - The object where the methods are hoisted from.\r\n * @param dest - The object to hoist the methods onto.\r\n * @returns The dest object with methods added\r\n */\r\nfunction hoistStatics(source, dest) {\r\n for (var name_1 in source) {\r\n if (source.hasOwnProperty(name_1)) {\r\n // tslint:disable-next-line:no-any\r\n dest[name_1] = source[name_1];\r\n }\r\n }\r\n return dest;\r\n}\r\n//# sourceMappingURL=hoistStatics.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/hoistStatics.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/index.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/index.js ***!
\*******************************************************/
/*! exports provided: Async, AutoScroll, BaseComponent, nullRender, provideContext, Customizations, CustomizerContext, Customizer, mergeCustomizations, mergeSettings, DelayedRender, EventGroup, FabricPerformance, GlobalSettings, KeyCodes, Rectangle, mergeAriaAttributeValues, findIndex, find, createArray, toMatrix, removeIndex, replaceElement, addElementAtIndex, flatten, arraysEqual, asAsync, assertNever, autobind, classNamesFunction, createRef, css, customizable, DATA_PORTAL_ATTRIBUTE, setVirtualParent, getVirtualParent, getParent, getChildren, elementContains, setSSR, getWindow, getDocument, getRect, setPortalAttribute, portalContainsElement, findElementRecursive, elementContainsAttribute, getFirstFocusable, getLastFocusable, getFirstTabbable, getLastTabbable, focusFirstChild, getPreviousElement, getNextElement, isElementVisible, isElementTabbable, isElementFocusZone, isElementFocusSubZone, doesElementContainFocus, shouldWrapFocus, focusAsync, getFocusableByIndexPath, getElementIndexPath, hoistMethods, unhoistMethods, hoistStatics, IsFocusVisibleClassName, initializeFocusRects, getInitials, isDirectionalKeyCode, addDirectionalKeyCode, getLanguage, setLanguage, getDistanceBetweenPoints, fitContentToBounds, calculatePrecision, precisionRound, setMemoizeWeakMap, resetMemoizations, memoize, memoizeFunction, merge, isIOS, shallowCompare, assign, filteredAssign, getId, resetIds, mapEnumByName, values, isMac, hasHorizontalOverflow, hasVerticalOverflow, hasOverflow, baseElementEvents, baseElementProperties, htmlElementProperties, anchorProperties, buttonProperties, divProperties, inputProperties, textAreaProperties, imageProperties, getNativeProps, getResourceUrl, setBaseUrl, getRTL, setRTL, getRTLSafeKeyCode, DATA_IS_SCROLLABLE_ATTRIBUTE, allowScrollOnElement, disableBodyScroll, enableBodyScroll, getScrollbarWidth, findScrollableParent, format, styled, warnDeprecations, warnMutuallyExclusive, warnConditionallyRequiredProps, warn, setWarningCallback */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Async__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Async */ \"./node_modules/@uifabric/utilities/lib/Async.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Async\", function() { return _Async__WEBPACK_IMPORTED_MODULE_0__[\"Async\"]; });\n\n/* harmony import */ var _AutoScroll__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AutoScroll */ \"./node_modules/@uifabric/utilities/lib/AutoScroll.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AutoScroll\", function() { return _AutoScroll__WEBPACK_IMPORTED_MODULE_1__[\"AutoScroll\"]; });\n\n/* harmony import */ var _BaseComponent__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./BaseComponent */ \"./node_modules/@uifabric/utilities/lib/BaseComponent.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseComponent\", function() { return _BaseComponent__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"nullRender\", function() { return _BaseComponent__WEBPACK_IMPORTED_MODULE_2__[\"nullRender\"]; });\n\n/* harmony import */ var _Context__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Context */ \"./node_modules/@uifabric/utilities/lib/Context.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"provideContext\", function() { return _Context__WEBPACK_IMPORTED_MODULE_3__[\"provideContext\"]; });\n\n/* harmony import */ var _Customizations__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Customizations */ \"./node_modules/@uifabric/utilities/lib/Customizations.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Customizations\", function() { return _Customizations__WEBPACK_IMPORTED_MODULE_4__[\"Customizations\"]; });\n\n/* harmony import */ var _Customizer__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./Customizer */ \"./node_modules/@uifabric/utilities/lib/Customizer.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomizerContext\", function() { return _Customizer__WEBPACK_IMPORTED_MODULE_5__[\"CustomizerContext\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Customizer\", function() { return _Customizer__WEBPACK_IMPORTED_MODULE_5__[\"Customizer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeCustomizations\", function() { return _Customizer__WEBPACK_IMPORTED_MODULE_5__[\"mergeCustomizations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeSettings\", function() { return _Customizer__WEBPACK_IMPORTED_MODULE_5__[\"mergeSettings\"]; });\n\n/* harmony import */ var _DelayedRender__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./DelayedRender */ \"./node_modules/@uifabric/utilities/lib/DelayedRender.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DelayedRender\", function() { return _DelayedRender__WEBPACK_IMPORTED_MODULE_6__[\"DelayedRender\"]; });\n\n/* harmony import */ var _EventGroup__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./EventGroup */ \"./node_modules/@uifabric/utilities/lib/EventGroup.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventGroup\", function() { return _EventGroup__WEBPACK_IMPORTED_MODULE_7__[\"EventGroup\"]; });\n\n/* harmony import */ var _FabricPerformance__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./FabricPerformance */ \"./node_modules/@uifabric/utilities/lib/FabricPerformance.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FabricPerformance\", function() { return _FabricPerformance__WEBPACK_IMPORTED_MODULE_8__[\"FabricPerformance\"]; });\n\n/* harmony import */ var _GlobalSettings__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./GlobalSettings */ \"./node_modules/@uifabric/utilities/lib/GlobalSettings.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GlobalSettings\", function() { return _GlobalSettings__WEBPACK_IMPORTED_MODULE_9__[\"GlobalSettings\"]; });\n\n/* harmony import */ var _KeyCodes__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./KeyCodes */ \"./node_modules/@uifabric/utilities/lib/KeyCodes.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyCodes\", function() { return _KeyCodes__WEBPACK_IMPORTED_MODULE_10__[\"KeyCodes\"]; });\n\n/* harmony import */ var _Rectangle__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./Rectangle */ \"./node_modules/@uifabric/utilities/lib/Rectangle.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Rectangle\", function() { return _Rectangle__WEBPACK_IMPORTED_MODULE_11__[\"Rectangle\"]; });\n\n/* harmony import */ var _aria__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./aria */ \"./node_modules/@uifabric/utilities/lib/aria.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeAriaAttributeValues\", function() { return _aria__WEBPACK_IMPORTED_MODULE_12__[\"mergeAriaAttributeValues\"]; });\n\n/* harmony import */ var _array__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./array */ \"./node_modules/@uifabric/utilities/lib/array.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findIndex\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"findIndex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"find\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"find\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createArray\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"createArray\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"toMatrix\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"toMatrix\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"removeIndex\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"removeIndex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"replaceElement\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"replaceElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"addElementAtIndex\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"addElementAtIndex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"flatten\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"flatten\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"arraysEqual\", function() { return _array__WEBPACK_IMPORTED_MODULE_13__[\"arraysEqual\"]; });\n\n/* harmony import */ var _asAsync__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./asAsync */ \"./node_modules/@uifabric/utilities/lib/asAsync.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"asAsync\", function() { return _asAsync__WEBPACK_IMPORTED_MODULE_14__[\"asAsync\"]; });\n\n/* harmony import */ var _assertNever__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./assertNever */ \"./node_modules/@uifabric/utilities/lib/assertNever.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNever\", function() { return _assertNever__WEBPACK_IMPORTED_MODULE_15__[\"assertNever\"]; });\n\n/* harmony import */ var _autobind__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./autobind */ \"./node_modules/@uifabric/utilities/lib/autobind.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"autobind\", function() { return _autobind__WEBPACK_IMPORTED_MODULE_16__[\"autobind\"]; });\n\n/* harmony import */ var _classNamesFunction__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./classNamesFunction */ \"./node_modules/@uifabric/utilities/lib/classNamesFunction.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"classNamesFunction\", function() { return _classNamesFunction__WEBPACK_IMPORTED_MODULE_17__[\"classNamesFunction\"]; });\n\n/* harmony import */ var _createRef__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./createRef */ \"./node_modules/@uifabric/utilities/lib/createRef.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createRef\", function() { return _createRef__WEBPACK_IMPORTED_MODULE_18__[\"createRef\"]; });\n\n/* harmony import */ var _css__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./css */ \"./node_modules/@uifabric/utilities/lib/css.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"css\", function() { return _css__WEBPACK_IMPORTED_MODULE_19__[\"css\"]; });\n\n/* harmony import */ var _customizable__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./customizable */ \"./node_modules/@uifabric/utilities/lib/customizable.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"customizable\", function() { return _customizable__WEBPACK_IMPORTED_MODULE_20__[\"customizable\"]; });\n\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DATA_PORTAL_ATTRIBUTE\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"DATA_PORTAL_ATTRIBUTE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setVirtualParent\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"setVirtualParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getVirtualParent\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"getVirtualParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getParent\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"getParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getChildren\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"getChildren\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"elementContains\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"elementContains\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setSSR\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"setSSR\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getWindow\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"getWindow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDocument\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"getDocument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRect\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"getRect\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setPortalAttribute\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"setPortalAttribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"portalContainsElement\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"portalContainsElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findElementRecursive\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"findElementRecursive\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"elementContainsAttribute\", function() { return _dom__WEBPACK_IMPORTED_MODULE_21__[\"elementContainsAttribute\"]; });\n\n/* harmony import */ var _focus__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./focus */ \"./node_modules/@uifabric/utilities/lib/focus.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFirstFocusable\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getFirstFocusable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLastFocusable\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getLastFocusable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFirstTabbable\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getFirstTabbable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLastTabbable\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getLastTabbable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusFirstChild\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"focusFirstChild\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getPreviousElement\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getPreviousElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNextElement\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getNextElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementVisible\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"isElementVisible\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementTabbable\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"isElementTabbable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementFocusZone\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"isElementFocusZone\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementFocusSubZone\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"isElementFocusSubZone\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"doesElementContainFocus\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"doesElementContainFocus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"shouldWrapFocus\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"shouldWrapFocus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusAsync\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"focusAsync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFocusableByIndexPath\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getFocusableByIndexPath\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getElementIndexPath\", function() { return _focus__WEBPACK_IMPORTED_MODULE_22__[\"getElementIndexPath\"]; });\n\n/* harmony import */ var _hoist__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./hoist */ \"./node_modules/@uifabric/utilities/lib/hoist.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hoistMethods\", function() { return _hoist__WEBPACK_IMPORTED_MODULE_23__[\"hoistMethods\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"unhoistMethods\", function() { return _hoist__WEBPACK_IMPORTED_MODULE_23__[\"unhoistMethods\"]; });\n\n/* harmony import */ var _hoistStatics__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! ./hoistStatics */ \"./node_modules/@uifabric/utilities/lib/hoistStatics.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hoistStatics\", function() { return _hoistStatics__WEBPACK_IMPORTED_MODULE_24__[\"hoistStatics\"]; });\n\n/* harmony import */ var _initializeFocusRects__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! ./initializeFocusRects */ \"./node_modules/@uifabric/utilities/lib/initializeFocusRects.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IsFocusVisibleClassName\", function() { return _initializeFocusRects__WEBPACK_IMPORTED_MODULE_25__[\"IsFocusVisibleClassName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"initializeFocusRects\", function() { return _initializeFocusRects__WEBPACK_IMPORTED_MODULE_25__[\"initializeFocusRects\"]; });\n\n/* harmony import */ var _initials__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! ./initials */ \"./node_modules/@uifabric/utilities/lib/initials.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getInitials\", function() { return _initials__WEBPACK_IMPORTED_MODULE_26__[\"getInitials\"]; });\n\n/* harmony import */ var _keyboard__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! ./keyboard */ \"./node_modules/@uifabric/utilities/lib/keyboard.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDirectionalKeyCode\", function() { return _keyboard__WEBPACK_IMPORTED_MODULE_27__[\"isDirectionalKeyCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"addDirectionalKeyCode\", function() { return _keyboard__WEBPACK_IMPORTED_MODULE_27__[\"addDirectionalKeyCode\"]; });\n\n/* harmony import */ var _language__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! ./language */ \"./node_modules/@uifabric/utilities/lib/language.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLanguage\", function() { return _language__WEBPACK_IMPORTED_MODULE_28__[\"getLanguage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setLanguage\", function() { return _language__WEBPACK_IMPORTED_MODULE_28__[\"setLanguage\"]; });\n\n/* harmony import */ var _math__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! ./math */ \"./node_modules/@uifabric/utilities/lib/math.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDistanceBetweenPoints\", function() { return _math__WEBPACK_IMPORTED_MODULE_29__[\"getDistanceBetweenPoints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fitContentToBounds\", function() { return _math__WEBPACK_IMPORTED_MODULE_29__[\"fitContentToBounds\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"calculatePrecision\", function() { return _math__WEBPACK_IMPORTED_MODULE_29__[\"calculatePrecision\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"precisionRound\", function() { return _math__WEBPACK_IMPORTED_MODULE_29__[\"precisionRound\"]; });\n\n/* harmony import */ var _memoize__WEBPACK_IMPORTED_MODULE_30__ = __webpack_require__(/*! ./memoize */ \"./node_modules/@uifabric/utilities/lib/memoize.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setMemoizeWeakMap\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_30__[\"setMemoizeWeakMap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resetMemoizations\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_30__[\"resetMemoizations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_30__[\"memoize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoizeFunction\", function() { return _memoize__WEBPACK_IMPORTED_MODULE_30__[\"memoizeFunction\"]; });\n\n/* harmony import */ var _merge__WEBPACK_IMPORTED_MODULE_31__ = __webpack_require__(/*! ./merge */ \"./node_modules/@uifabric/utilities/lib/merge.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"merge\", function() { return _merge__WEBPACK_IMPORTED_MODULE_31__[\"merge\"]; });\n\n/* harmony import */ var _mobileDetector__WEBPACK_IMPORTED_MODULE_32__ = __webpack_require__(/*! ./mobileDetector */ \"./node_modules/@uifabric/utilities/lib/mobileDetector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIOS\", function() { return _mobileDetector__WEBPACK_IMPORTED_MODULE_32__[\"isIOS\"]; });\n\n/* harmony import */ var _object__WEBPACK_IMPORTED_MODULE_33__ = __webpack_require__(/*! ./object */ \"./node_modules/@uifabric/utilities/lib/object.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"shallowCompare\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"shallowCompare\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assign\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"assign\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"filteredAssign\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"filteredAssign\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getId\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"getId\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resetIds\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"resetIds\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mapEnumByName\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"mapEnumByName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"values\", function() { return _object__WEBPACK_IMPORTED_MODULE_33__[\"values\"]; });\n\n/* harmony import */ var _osDetector__WEBPACK_IMPORTED_MODULE_34__ = __webpack_require__(/*! ./osDetector */ \"./node_modules/@uifabric/utilities/lib/osDetector.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isMac\", function() { return _osDetector__WEBPACK_IMPORTED_MODULE_34__[\"isMac\"]; });\n\n/* harmony import */ var _overflow__WEBPACK_IMPORTED_MODULE_35__ = __webpack_require__(/*! ./overflow */ \"./node_modules/@uifabric/utilities/lib/overflow.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasHorizontalOverflow\", function() { return _overflow__WEBPACK_IMPORTED_MODULE_35__[\"hasHorizontalOverflow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasVerticalOverflow\", function() { return _overflow__WEBPACK_IMPORTED_MODULE_35__[\"hasVerticalOverflow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasOverflow\", function() { return _overflow__WEBPACK_IMPORTED_MODULE_35__[\"hasOverflow\"]; });\n\n/* harmony import */ var _properties__WEBPACK_IMPORTED_MODULE_36__ = __webpack_require__(/*! ./properties */ \"./node_modules/@uifabric/utilities/lib/properties.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"baseElementEvents\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"baseElementEvents\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"baseElementProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"baseElementProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"htmlElementProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"htmlElementProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"anchorProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"anchorProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buttonProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"buttonProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"divProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"divProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"inputProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"inputProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"textAreaProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"textAreaProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"imageProperties\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"imageProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNativeProps\", function() { return _properties__WEBPACK_IMPORTED_MODULE_36__[\"getNativeProps\"]; });\n\n/* harmony import */ var _resources__WEBPACK_IMPORTED_MODULE_37__ = __webpack_require__(/*! ./resources */ \"./node_modules/@uifabric/utilities/lib/resources.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getResourceUrl\", function() { return _resources__WEBPACK_IMPORTED_MODULE_37__[\"getResourceUrl\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setBaseUrl\", function() { return _resources__WEBPACK_IMPORTED_MODULE_37__[\"setBaseUrl\"]; });\n\n/* harmony import */ var _rtl__WEBPACK_IMPORTED_MODULE_38__ = __webpack_require__(/*! ./rtl */ \"./node_modules/@uifabric/utilities/lib/rtl.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRTL\", function() { return _rtl__WEBPACK_IMPORTED_MODULE_38__[\"getRTL\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setRTL\", function() { return _rtl__WEBPACK_IMPORTED_MODULE_38__[\"setRTL\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRTLSafeKeyCode\", function() { return _rtl__WEBPACK_IMPORTED_MODULE_38__[\"getRTLSafeKeyCode\"]; });\n\n/* harmony import */ var _scroll__WEBPACK_IMPORTED_MODULE_39__ = __webpack_require__(/*! ./scroll */ \"./node_modules/@uifabric/utilities/lib/scroll.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DATA_IS_SCROLLABLE_ATTRIBUTE\", function() { return _scroll__WEBPACK_IMPORTED_MODULE_39__[\"DATA_IS_SCROLLABLE_ATTRIBUTE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"allowScrollOnElement\", function() { return _scroll__WEBPACK_IMPORTED_MODULE_39__[\"allowScrollOnElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"disableBodyScroll\", function() { return _scroll__WEBPACK_IMPORTED_MODULE_39__[\"disableBodyScroll\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"enableBodyScroll\", function() { return _scroll__WEBPACK_IMPORTED_MODULE_39__[\"enableBodyScroll\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getScrollbarWidth\", function() { return _scroll__WEBPACK_IMPORTED_MODULE_39__[\"getScrollbarWidth\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findScrollableParent\", function() { return _scroll__WEBPACK_IMPORTED_MODULE_39__[\"findScrollableParent\"]; });\n\n/* harmony import */ var _string__WEBPACK_IMPORTED_MODULE_40__ = __webpack_require__(/*! ./string */ \"./node_modules/@uifabric/utilities/lib/string.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"format\", function() { return _string__WEBPACK_IMPORTED_MODULE_40__[\"format\"]; });\n\n/* harmony import */ var _styled__WEBPACK_IMPORTED_MODULE_41__ = __webpack_require__(/*! ./styled */ \"./node_modules/@uifabric/utilities/lib/styled.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"styled\", function() { return _styled__WEBPACK_IMPORTED_MODULE_41__[\"styled\"]; });\n\n/* harmony import */ var _warn__WEBPACK_IMPORTED_MODULE_42__ = __webpack_require__(/*! ./warn */ \"./node_modules/@uifabric/utilities/lib/warn.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warnDeprecations\", function() { return _warn__WEBPACK_IMPORTED_MODULE_42__[\"warnDeprecations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warnMutuallyExclusive\", function() { return _warn__WEBPACK_IMPORTED_MODULE_42__[\"warnMutuallyExclusive\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warnConditionallyRequiredProps\", function() { return _warn__WEBPACK_IMPORTED_MODULE_42__[\"warnConditionallyRequiredProps\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warn\", function() { return _warn__WEBPACK_IMPORTED_MODULE_42__[\"warn\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setWarningCallback\", function() { return _warn__WEBPACK_IMPORTED_MODULE_42__[\"setWarningCallback\"]; });\n\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_43__ = __webpack_require__(/*! ./version */ \"./node_modules/@uifabric/utilities/lib/version.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/index.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/initializeDir.js":
/*!***************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/initializeDir.js ***!
\***************************************************************/
/*! exports provided: initializeDir */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeDir\", function() { return initializeDir; });\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n\r\nfunction initializeDir(window) {\r\n var win = (window || Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getWindow\"])());\r\n if (win && !win.__hasInitializedDir__) {\r\n win.__hasInitializedDir__ = true;\r\n // Ensure that the documentElement has a 'dir' attribute.\r\n var documentElement = win.document.documentElement;\r\n if (!documentElement.hasAttribute('dir')) {\r\n documentElement.setAttribute('dir', 'ltr');\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=initializeDir.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/initializeDir.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/initializeFocusRects.js":
/*!**********************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/initializeFocusRects.js ***!
\**********************************************************************/
/*! exports provided: IsFocusVisibleClassName, initializeFocusRects */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"IsFocusVisibleClassName\", function() { return IsFocusVisibleClassName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"initializeFocusRects\", function() { return initializeFocusRects; });\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n/* harmony import */ var _keyboard__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./keyboard */ \"./node_modules/@uifabric/utilities/lib/keyboard.js\");\n\r\n\r\nvar IsFocusVisibleClassName = 'ms-Fabric--isFocusVisible';\r\n/**\r\n * Initializes the logic which:\r\n *\r\n * 1. Subscribes keydown and mousedown events. (It will only do it once per window,\r\n * so it's safe to call this method multiple times.)\r\n * 2. When the user presses directional keyboard keys, adds the 'ms-Fabric--isFocusVisible' classname\r\n * to the document body.\r\n * 3. When the user clicks a mouse button, we remove the classname if it exists.\r\n *\r\n * This logic allows components on the page to conditionally render focus treatments only\r\n * if the global classname exists, which simplifies logic overall.\r\n *\r\n * @param window - the window used to add the event listeners\r\n */\r\nfunction initializeFocusRects(window) {\r\n var win = (window || Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getWindow\"])());\r\n if (win && !win.__hasInitializeFocusRects__) {\r\n win.__hasInitializeFocusRects__ = true;\r\n win.addEventListener('mousedown', _onMouseDown, true);\r\n win.addEventListener('keydown', _onKeyDown, true);\r\n }\r\n}\r\nfunction _onMouseDown(ev) {\r\n var win = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getWindow\"])(ev.target);\r\n if (win) {\r\n var classList = win.document.body.classList;\r\n if (classList.contains(IsFocusVisibleClassName)) {\r\n classList.remove(IsFocusVisibleClassName);\r\n }\r\n }\r\n}\r\nfunction _onKeyDown(ev) {\r\n var win = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getWindow\"])(ev.target);\r\n if (win) {\r\n var classList = win.document.body.classList;\r\n if (Object(_keyboard__WEBPACK_IMPORTED_MODULE_1__[\"isDirectionalKeyCode\"])(ev.which) && !classList.contains(IsFocusVisibleClassName)) {\r\n classList.add(IsFocusVisibleClassName);\r\n }\r\n }\r\n}\r\n//# sourceMappingURL=initializeFocusRects.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/initializeFocusRects.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/initials.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/initials.js ***!
\**********************************************************/
/*! exports provided: getInitials */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getInitials\", function() { return getInitials; });\n/**\r\n * Regular expression matching characters to ignore when calculating the initials.\r\n * The first part matches characters within parenthesis, including the parenthesis.\r\n * The second part matches special ASCII characters except space, plus some unicode special characters.\r\n */\r\nvar UNWANTED_CHARS_REGEX = /\\([^)]*\\)|[\\0-\\u001F\\!-/:-@\\[-`\\{-\\u00BF\\u0250-\\u036F\\uD800-\\uFFFF]/g;\r\n/**\r\n * Regular expression matching phone numbers. Applied after chars matching UNWANTED_CHARS_REGEX have been removed\r\n * and number has been trimmed for whitespaces\r\n */\r\nvar PHONENUMBER_REGEX = /^\\d+[\\d\\s]*(:?ext|x|)\\s*\\d+$/i;\r\n/** Regular expression matching one or more spaces. */\r\nvar MULTIPLE_WHITESPACES_REGEX = /\\s+/g;\r\n/**\r\n * Regular expression matching languages for which we currently don't support initials.\r\n * Arabic: Arabic, Arabic Supplement, Arabic Extended-A.\r\n * Korean: Hangul Jamo, Hangul Compatibility Jamo, Hangul Jamo Extended-A, Hangul Syllables, Hangul Jamo Extended-B.\r\n * Japanese: Hiragana, Katakana.\r\n * CJK: CJK Unified Ideographs Extension A, CJK Unified Ideographs, CJK Compatibility Ideographs, CJK Unified Ideographs Extension B\r\n */\r\n/* tslint:disable:max-line-length */\r\nvar UNSUPPORTED_TEXT_REGEX = /[\\u0600-\\u06FF\\u0750-\\u077F\\u08A0-\\u08FF\\u1100-\\u11FF\\u3130-\\u318F\\uA960-\\uA97F\\uAC00-\\uD7AF\\uD7B0-\\uD7FF\\u3040-\\u309F\\u30A0-\\u30FF\\u3400-\\u4DBF\\u4E00-\\u9FFF\\uF900-\\uFAFF]|[\\uD840-\\uD869][\\uDC00-\\uDED6]/;\r\n/* tslint:enable:max-line-length */\r\nfunction getInitialsLatin(displayName, isRtl) {\r\n var initials = '';\r\n var splits = displayName.split(' ');\r\n if (splits.length === 2) {\r\n initials += splits[0].charAt(0).toUpperCase();\r\n initials += splits[1].charAt(0).toUpperCase();\r\n }\r\n else if (splits.length === 3) {\r\n initials += splits[0].charAt(0).toUpperCase();\r\n initials += splits[2].charAt(0).toUpperCase();\r\n }\r\n else if (splits.length !== 0) {\r\n initials += splits[0].charAt(0).toUpperCase();\r\n }\r\n if (isRtl && initials.length > 1) {\r\n return initials.charAt(1) + initials.charAt(0);\r\n }\r\n return initials;\r\n}\r\nfunction cleanupDisplayName(displayName) {\r\n displayName = displayName.replace(UNWANTED_CHARS_REGEX, '');\r\n displayName = displayName.replace(MULTIPLE_WHITESPACES_REGEX, ' ');\r\n displayName = displayName.trim();\r\n return displayName;\r\n}\r\n/**\r\n * Get (up to 2 characters) initials based on display name of the persona.\r\n *\r\n * @public\r\n */\r\nfunction getInitials(displayName, isRtl, allowPhoneInitials) {\r\n if (!displayName) {\r\n return '';\r\n }\r\n displayName = cleanupDisplayName(displayName);\r\n // For names containing CJK characters, and phone numbers, we don't display initials\r\n if (UNSUPPORTED_TEXT_REGEX.test(displayName) || (!allowPhoneInitials && PHONENUMBER_REGEX.test(displayName))) {\r\n return '';\r\n }\r\n return getInitialsLatin(displayName, isRtl);\r\n}\r\n//# sourceMappingURL=initials.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/initials.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/keyboard.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/keyboard.js ***!
\**********************************************************/
/*! exports provided: isDirectionalKeyCode, addDirectionalKeyCode */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDirectionalKeyCode\", function() { return isDirectionalKeyCode; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"addDirectionalKeyCode\", function() { return addDirectionalKeyCode; });\n/* harmony import */ var _KeyCodes__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./KeyCodes */ \"./node_modules/@uifabric/utilities/lib/KeyCodes.js\");\n\r\nvar DirectionalKeyCodes = (_a = {},\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].up] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].down] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].left] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].right] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].home] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].end] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].tab] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].pageUp] = 1,\r\n _a[_KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].pageDown] = 1,\r\n _a);\r\n/**\r\n * Returns true if the keycode is a directional keyboard key.\r\n */\r\nfunction isDirectionalKeyCode(which) {\r\n return !!DirectionalKeyCodes[which];\r\n}\r\n/**\r\n * Adds a keycode to the list of keys that, when pressed, should cause the focus outlines to be visible.\r\n * This can be used to add global shortcut keys that directionally move from section to section within\r\n * an app or between focus trap zones.\r\n */\r\nfunction addDirectionalKeyCode(which) {\r\n DirectionalKeyCodes[which] = 1;\r\n}\r\nvar _a;\r\n//# sourceMappingURL=keyboard.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/keyboard.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/language.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/language.js ***!
\**********************************************************/
/*! exports provided: getLanguage, setLanguage */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getLanguage\", function() { return getLanguage; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setLanguage\", function() { return setLanguage; });\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n/* harmony import */ var _localStorage__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./localStorage */ \"./node_modules/@uifabric/utilities/lib/localStorage.js\");\n\r\n\r\n// Default to undefined so that we initialize on first read.\r\nvar _language;\r\n/**\r\n * Gets the rtl state of the page (returns true if in rtl.)\r\n *\r\n * @public\r\n */\r\nfunction getLanguage() {\r\n if (_language === undefined) {\r\n var doc = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getDocument\"])();\r\n var savedLanguage = Object(_localStorage__WEBPACK_IMPORTED_MODULE_1__[\"getItem\"])('language');\r\n if (savedLanguage !== null) {\r\n _language = savedLanguage;\r\n }\r\n if (_language === undefined && doc) {\r\n _language = doc.documentElement.getAttribute('lang');\r\n }\r\n if (_language === undefined) {\r\n _language = 'en';\r\n }\r\n }\r\n return _language;\r\n}\r\n/**\r\n * Sets the rtl state of the page (by adjusting the dir attribute of the html element.)\r\n *\r\n * @public\r\n */\r\nfunction setLanguage(language, avoidPersisting) {\r\n if (avoidPersisting === void 0) { avoidPersisting = false; }\r\n var doc = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getDocument\"])();\r\n if (doc) {\r\n doc.documentElement.setAttribute('lang', language);\r\n }\r\n if (!avoidPersisting) {\r\n Object(_localStorage__WEBPACK_IMPORTED_MODULE_1__[\"setItem\"])('language', language);\r\n }\r\n _language = language;\r\n}\r\n//# sourceMappingURL=language.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/language.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/localStorage.js":
/*!**************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/localStorage.js ***!
\**************************************************************/
/*! exports provided: getItem, setItem */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getItem\", function() { return getItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setItem\", function() { return setItem; });\n/**\r\n * Fetches an item from local storage without throwing an exception\r\n * @param key The key of the item to fetch from local storage\r\n */\r\nfunction getItem(key) {\r\n var result = null;\r\n try {\r\n result = window.localStorage.getItem(key);\r\n }\r\n catch (e) {\r\n /* Eat the exception */\r\n }\r\n return result;\r\n}\r\n/**\r\n * Inserts an item into local storage without throwing an exception\r\n * @param key The key of the item to add to local storage\r\n * @param data The data to put into local storage\r\n */\r\nfunction setItem(key, data) {\r\n try {\r\n window.localStorage.setItem(key, data);\r\n }\r\n catch (e) {\r\n /* Eat the exception */\r\n }\r\n}\r\n//# sourceMappingURL=localStorage.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/localStorage.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/math.js":
/*!******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/math.js ***!
\******************************************************/
/*! exports provided: getDistanceBetweenPoints, fitContentToBounds, calculatePrecision, precisionRound */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getDistanceBetweenPoints\", function() { return getDistanceBetweenPoints; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"fitContentToBounds\", function() { return fitContentToBounds; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"calculatePrecision\", function() { return calculatePrecision; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"precisionRound\", function() { return precisionRound; });\n/**\r\n * Determines the distance between two points.\r\n *\r\n * @public\r\n */\r\nfunction getDistanceBetweenPoints(point1, point2) {\r\n var distance = Math.sqrt(Math.pow(point1.x - point2.x, 2) + Math.pow(point1.y - point2.y, 2));\r\n return distance;\r\n}\r\n/**\r\n * Produces a proportionally-scaled version of an input content size when fit to a bounding size.\r\n * Given a `contentSize` and a `boundsSize`, this function scales `contentSize` proportionally\r\n * using either `contain` or `cover` fit behaviors.\r\n * Use this function to pre-calculate the layout for the CSS `object-fit` and `background-fit` behaviors.\r\n * With `contain`, the output size must be the largest it can be while completely within the `boundsSize`.\r\n * With `cover`, the output size must be the smallest it can be while completely around the `boundsSize`.\r\n * By default, there is a `maxScale` value of 1, which prevents the `contentSize` from being scaled larger.\r\n *\r\n * @param options - the options for the bounds fit operation\r\n */\r\nfunction fitContentToBounds(options) {\r\n var contentSize = options.contentSize, boundsSize = options.boundsSize, _a = options.mode, mode = _a === void 0 ? 'contain' : _a, _b = options.maxScale, maxScale = _b === void 0 ? 1 : _b;\r\n var contentAspectRatio = contentSize.width / contentSize.height;\r\n var boundsAspectRatio = boundsSize.width / boundsSize.height;\r\n var scale;\r\n if (mode === 'contain' ? contentAspectRatio > boundsAspectRatio : contentAspectRatio < boundsAspectRatio) {\r\n scale = boundsSize.width / contentSize.width;\r\n }\r\n else {\r\n scale = boundsSize.height / contentSize.height;\r\n }\r\n var finalScale = Math.min(maxScale, scale);\r\n return {\r\n width: contentSize.width * finalScale,\r\n height: contentSize.height * finalScale\r\n };\r\n}\r\n/**\r\n * Calculates a number's precision based on the number of trailing\r\n * zeros if the number does not have a decimal indicated by a negative\r\n * precision. Otherwise, it calculates the number of digits after\r\n * the decimal point indicated by a positive precision.\r\n * @param value - the value to determine the precision of\r\n */\r\nfunction calculatePrecision(value) {\r\n /**\r\n * Group 1:\r\n * [1-9]([0]+$) matches trailing zeros\r\n * Group 2:\r\n * \\.([0-9]*) matches all digits after a decimal point.\r\n */\r\n var groups = /[1-9]([0]+$)|\\.([0-9]*)/.exec(String(value));\r\n if (!groups) {\r\n return 0;\r\n }\r\n if (groups[1]) {\r\n return -groups[1].length;\r\n }\r\n if (groups[2]) {\r\n return groups[2].length;\r\n }\r\n return 0;\r\n}\r\n/**\r\n * Rounds a number to a certain level of precision. Accepts negative precision.\r\n * @param value - The value that is being rounded.\r\n * @param precision - The number of decimal places to round the number to\r\n */\r\nfunction precisionRound(value, precision, base) {\r\n if (base === void 0) { base = 10; }\r\n var exp = Math.pow(base, precision);\r\n return Math.round(value * exp) / exp;\r\n}\r\n//# sourceMappingURL=math.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/math.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/memoize.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/memoize.js ***!
\*********************************************************/
/*! exports provided: setMemoizeWeakMap, resetMemoizations, memoize, memoizeFunction */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setMemoizeWeakMap\", function() { return setMemoizeWeakMap; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resetMemoizations\", function() { return resetMemoizations; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return memoize; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"memoizeFunction\", function() { return memoizeFunction; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\nvar stylesheet = _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\nif (stylesheet && stylesheet.onReset) {\r\n _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance().onReset(resetMemoizations);\r\n}\r\nvar _resetCounter = 0;\r\nvar _emptyObject = { empty: true };\r\nvar _dictionary = {};\r\nvar _weakMap = typeof WeakMap === 'undefined' ? null : WeakMap;\r\n/**\r\n * Test utility for providing a custom weakmap.\r\n *\r\n * @internal\r\n * */\r\nfunction setMemoizeWeakMap(weakMap) {\r\n _weakMap = weakMap;\r\n}\r\n/**\r\n * Reset memoizations.\r\n */\r\nfunction resetMemoizations() {\r\n _resetCounter++;\r\n}\r\n/**\r\n * Memoize decorator to be used on class methods. WARNING: the `this` reference\r\n * will be inaccessible within a memoized method, given that a cached method's `this`\r\n * would not be instance-specific.\r\n *\r\n * @public\r\n */\r\nfunction memoize(target, key, descriptor) {\r\n // We bind to \"null\" to prevent people from inadvertently pulling values from \"this\",\r\n // rather than passing them in as input values which can be memoized.\r\n var fn = memoizeFunction(descriptor.value && descriptor.value.bind(null));\r\n return {\r\n configurable: true,\r\n get: function () {\r\n return fn;\r\n }\r\n };\r\n}\r\n/**\r\n * Memoizes a function; when you pass in the same parameters multiple times, it returns a cached result.\r\n * Be careful when passing in objects, you need to pass in the same INSTANCE for caching to work. Otherwise\r\n * it will grow the cache unnecessarily. Also avoid using default values that evaluate functions; passing in\r\n * undefined for a value and relying on a default function will execute it the first time, but will not\r\n * re-evaluate subsequent times which may have been unexpected.\r\n *\r\n * By default, the cache will reset after 100 permutations, to avoid abuse cases where the function is\r\n * unintendedly called with unique objects. Without a reset, the cache could grow infinitely, so we safeguard\r\n * by resetting. To override this behavior, pass a value of 0 to the maxCacheSize parameter.\r\n *\r\n * @public\r\n * @param cb - The function to memoize.\r\n * @param maxCacheSize - Max results to cache. If the cache exceeds this value, it will reset on the next call.\r\n * @returns A memoized version of the function.\r\n */\r\nfunction memoizeFunction(cb, maxCacheSize) {\r\n if (maxCacheSize === void 0) { maxCacheSize = 100; }\r\n // Avoid breaking scenarios which don't have weak map.\r\n if (!_weakMap) {\r\n return cb;\r\n }\r\n var rootNode;\r\n var cacheSize = 0;\r\n var localResetCounter = _resetCounter;\r\n // tslint:disable-next-line:no-function-expression\r\n return function memoizedFunction() {\r\n var args = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n args[_i] = arguments[_i];\r\n }\r\n var currentNode = rootNode;\r\n if (rootNode === undefined || localResetCounter !== _resetCounter || (maxCacheSize > 0 && cacheSize > maxCacheSize)) {\r\n rootNode = _createNode();\r\n cacheSize = 0;\r\n localResetCounter = _resetCounter;\r\n }\r\n currentNode = rootNode;\r\n // Traverse the tree until we find the match.\r\n for (var i = 0; i < args.length; i++) {\r\n var arg = _normalizeArg(args[i]);\r\n if (!currentNode.map.has(arg)) {\r\n currentNode.map.set(arg, _createNode());\r\n }\r\n currentNode = currentNode.map.get(arg);\r\n }\r\n if (!currentNode.hasOwnProperty('value')) {\r\n currentNode.value = cb.apply(void 0, args);\r\n cacheSize++;\r\n }\r\n return currentNode.value;\r\n };\r\n}\r\nfunction _normalizeArg(val) {\r\n if (!val) {\r\n return _emptyObject;\r\n }\r\n else if (typeof val === 'object' || typeof val === 'function') {\r\n return val;\r\n }\r\n else if (!_dictionary[val]) {\r\n _dictionary[val] = { val: val };\r\n }\r\n return _dictionary[val];\r\n}\r\nfunction _createNode() {\r\n return {\r\n map: _weakMap ? new _weakMap() : null\r\n };\r\n}\r\n//# sourceMappingURL=memoize.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/memoize.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/merge.js":
/*!*******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/merge.js ***!
\*******************************************************/
/*! exports provided: merge */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"merge\", function() { return merge; });\n/**\r\n * Simple deep merge function. Takes all arguments and returns a deep copy of the objects merged\r\n * together in the order provided. If an object creates a circular reference, it will assign the\r\n * original reference.\r\n */\r\nfunction merge(target) {\r\n var args = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n args[_i - 1] = arguments[_i];\r\n }\r\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\r\n var arg = args_1[_a];\r\n _merge(target || {}, arg);\r\n }\r\n return target;\r\n}\r\n/**\r\n * The _merge helper iterates through all props on source and assigns them to target.\r\n * When the value is an object, we will create a deep clone of the object. However if\r\n * there is a circular reference, the value will not be deep cloned and will persist\r\n * the reference.\r\n */\r\n// tslint:disable-next-line:no-any\r\nfunction _merge(target, source, circularReferences) {\r\n if (circularReferences === void 0) { circularReferences = []; }\r\n circularReferences.push(source);\r\n for (var name_1 in source) {\r\n if (source.hasOwnProperty(name_1)) {\r\n var value = source[name_1];\r\n if (typeof value === 'object') {\r\n var isCircularReference = circularReferences.indexOf(value) > -1;\r\n target[name_1] = isCircularReference ? value : _merge(target[name_1] || {}, value, circularReferences);\r\n }\r\n else {\r\n target[name_1] = value;\r\n }\r\n }\r\n }\r\n circularReferences.pop();\r\n return target;\r\n}\r\n//# sourceMappingURL=merge.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/merge.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/mobileDetector.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/mobileDetector.js ***!
\****************************************************************/
/*! exports provided: isIOS */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isIOS\", function() { return isIOS; });\n/**\r\n * Returns true if and only if the user is on a iOS device.\r\n * Used to determine whether iOS-specific behavior should be applied.\r\n */\r\nvar isIOS = function () {\r\n if (!window || !window.navigator || !window.navigator.userAgent) {\r\n return false;\r\n }\r\n return /iPad|iPhone|iPod/i.test(window.navigator.userAgent);\r\n};\r\n//# sourceMappingURL=mobileDetector.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/mobileDetector.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/object.js":
/*!********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/object.js ***!
\********************************************************/
/*! exports provided: shallowCompare, assign, filteredAssign, getId, resetIds, mapEnumByName, values */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"shallowCompare\", function() { return shallowCompare; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"assign\", function() { return assign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"filteredAssign\", function() { return filteredAssign; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getId\", function() { return getId; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"resetIds\", function() { return resetIds; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"mapEnumByName\", function() { return mapEnumByName; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"values\", function() { return values; });\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n// Initialize global window id.\r\nvar CURRENT_ID_PROPERTY = '__currentId__';\r\nvar DEFAULT_ID_STRING = 'id__';\r\n// tslint:disable-next-line:no-any\r\nvar _global = (typeof window !== 'undefined' && window) || process;\r\nif (_global[CURRENT_ID_PROPERTY] === undefined) {\r\n _global[CURRENT_ID_PROPERTY] = 0;\r\n}\r\n// tslint:disable-next-line:no-any\r\nfunction checkProperties(a, b) {\r\n for (var propName in a) {\r\n if (a.hasOwnProperty(propName)) {\r\n if (!b.hasOwnProperty(propName) || b[propName] !== a[propName]) {\r\n return false;\r\n }\r\n }\r\n }\r\n return true;\r\n}\r\n/**\r\n * Compares a to b and b to a.\r\n *\r\n * @public\r\n */\r\nfunction shallowCompare(a, b) {\r\n return checkProperties(a, b) && checkProperties(b, a);\r\n}\r\n/**\r\n * Makes a resulting merge of a bunch of objects. Pass in the target object followed by 1 or more\r\n * objects as arguments and they will be merged sequentially into the target. Note that this will\r\n * shallow merge; it will not create new cloned values for target members.\r\n *\r\n * @public\r\n * @param target - Target object to merge following object arguments into.\r\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\r\n * @returns Resulting merged target.\r\n */\r\n// tslint:disable-next-line:no-any\r\nfunction assign(target) {\r\n var args = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n args[_i - 1] = arguments[_i];\r\n }\r\n return filteredAssign.apply(this, [null, target].concat(args));\r\n}\r\n/**\r\n * Makes a resulting merge of a bunch of objects, but allows a filter function to be passed in to filter\r\n * the resulting merges. This allows for scenarios where you want to merge \"everything except that one thing\"\r\n * or \"properties that start with data-\". Note that this will shallow merge; it will not create new cloned\r\n * values for target members.\r\n *\r\n * @public\r\n * @param isAllowed - Callback to determine if the given propName is allowed in the result.\r\n * @param target - Target object to merge following object arguments into.\r\n * @param args - One or more objects that will be mixed into the target in the order they are provided.\r\n * @returns Resulting merged target.\r\n */\r\n// tslint:disable-next-line:no-any\r\nfunction filteredAssign(isAllowed, target) {\r\n var args = [];\r\n for (var _i = 2; _i < arguments.length; _i++) {\r\n args[_i - 2] = arguments[_i];\r\n }\r\n target = target || {};\r\n for (var _a = 0, args_1 = args; _a < args_1.length; _a++) {\r\n var sourceObject = args_1[_a];\r\n if (sourceObject) {\r\n for (var propName in sourceObject) {\r\n if (sourceObject.hasOwnProperty(propName) && (!isAllowed || isAllowed(propName))) {\r\n target[propName] = sourceObject[propName];\r\n }\r\n }\r\n }\r\n }\r\n return target;\r\n}\r\n// Configure ids to reset on stylesheet resets.\r\nvar stylesheet = _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_0__[\"Stylesheet\"].getInstance();\r\nif (stylesheet && stylesheet.onReset) {\r\n stylesheet.onReset(resetIds);\r\n}\r\n/**\r\n * Generates a unique id in the global scope (this spans across duplicate copies of the same library.)\r\n *\r\n * @public\r\n */\r\nfunction getId(prefix) {\r\n var index = _global[CURRENT_ID_PROPERTY]++;\r\n return (prefix || DEFAULT_ID_STRING) + index;\r\n}\r\n/**\r\n * Resets id counter to an (optional) number.\r\n *\r\n * @public\r\n */\r\nfunction resetIds(counter) {\r\n if (counter === void 0) { counter = 0; }\r\n _global[CURRENT_ID_PROPERTY] = counter;\r\n}\r\n/* Takes an enum and iterates over each value of the enum (as a string), running the callback on each, returning a mapped array.\r\n * The callback takes as a first parameter the string that represents the name of the entry, and the second parameter is the\r\n * value of that entry, which is the value you'd normally use when using the enum (usually a number).\r\n * */\r\nfunction mapEnumByName(\r\n// tslint:disable-next-line:no-any\r\ntheEnum, callback) {\r\n // map to satisfy compiler since it doesn't realize we strip out undefineds in the .filter() call\r\n return Object.keys(theEnum)\r\n .map(function (p) {\r\n // map on each property name as a string\r\n if (String(Number(p)) !== p) {\r\n // if the property is not just a number (because enums in TypeScript will map both ways)\r\n return callback(p, theEnum[p]);\r\n }\r\n })\r\n .filter(function (v) { return !!v; }); // only return elements with values\r\n}\r\n/**\r\n * Get all values in an object dictionary\r\n *\r\n * @param obj - The dictionary to get values for\r\n */\r\n// tslint:disable-next-line:no-any\r\nfunction values(obj) {\r\n return Object.keys(obj).reduce(function (arr, key) {\r\n arr.push(obj[key]);\r\n return arr;\r\n }, []);\r\n}\r\n//# sourceMappingURL=object.js.map\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../process/browser.js */ \"./node_modules/process/browser.js\")))\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/object.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/osDetector.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/osDetector.js ***!
\************************************************************/
/*! exports provided: isMac */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isMac\", function() { return isMac; });\nvar isMacResult;\r\n/**\r\n * Returns true if the user is on a Mac. Caches the result value.\r\n * @param reset - Reset the cached result value (mainly for testing).\r\n */\r\nfunction isMac(reset) {\r\n if (typeof isMacResult === 'undefined' || reset) {\r\n var userAgent = typeof window !== 'undefined' && window.navigator.userAgent;\r\n isMacResult = !!userAgent && userAgent.indexOf('Macintosh') !== -1;\r\n }\r\n return !!isMacResult;\r\n}\r\n//# sourceMappingURL=osDetector.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/osDetector.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/overflow.js":
/*!**********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/overflow.js ***!
\**********************************************************/
/*! exports provided: hasHorizontalOverflow, hasVerticalOverflow, hasOverflow */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasHorizontalOverflow\", function() { return hasHorizontalOverflow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasVerticalOverflow\", function() { return hasVerticalOverflow; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"hasOverflow\", function() { return hasOverflow; });\n/**\r\n * Detects whether an element's content has horizontal overflow\r\n *\r\n * @public\r\n * @param element - Element to check for overflow\r\n * @returns True if element's content overflows\r\n */\r\nfunction hasHorizontalOverflow(element) {\r\n return element.clientWidth < element.scrollWidth;\r\n}\r\n/**\r\n * Detects whether an element's content has vertical overflow\r\n *\r\n * @public\r\n * @param element - Element to check for overflow\r\n * @returns True if element's content overflows\r\n */\r\nfunction hasVerticalOverflow(element) {\r\n return element.clientHeight < element.scrollHeight;\r\n}\r\n/**\r\n * Detects whether an element's content has overflow in any direction\r\n *\r\n * @public\r\n * @param element - Element to check for overflow\r\n * @returns True if element's content overflows\r\n */\r\nfunction hasOverflow(element) {\r\n return hasHorizontalOverflow(element) || hasVerticalOverflow(element);\r\n}\r\n//# sourceMappingURL=overflow.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/overflow.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/properties.js":
/*!************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/properties.js ***!
\************************************************************/
/*! exports provided: baseElementEvents, baseElementProperties, htmlElementProperties, anchorProperties, buttonProperties, divProperties, inputProperties, textAreaProperties, imageProperties, getNativeProps */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"baseElementEvents\", function() { return baseElementEvents; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"baseElementProperties\", function() { return baseElementProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"htmlElementProperties\", function() { return htmlElementProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"anchorProperties\", function() { return anchorProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"buttonProperties\", function() { return buttonProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"divProperties\", function() { return divProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"inputProperties\", function() { return inputProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"textAreaProperties\", function() { return textAreaProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"imageProperties\", function() { return imageProperties; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getNativeProps\", function() { return getNativeProps; });\n/* harmony import */ var _object__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./object */ \"./node_modules/@uifabric/utilities/lib/object.js\");\n\r\n/**\r\n * An array of events that are allowed on every html element type.\r\n *\r\n * @public\r\n */\r\nvar baseElementEvents = [\r\n 'onCopy',\r\n 'onCut',\r\n 'onPaste',\r\n 'onCompositionEnd',\r\n 'onCompositionStart',\r\n 'onCompositionUpdate',\r\n 'onFocus',\r\n 'onFocusCapture',\r\n 'onBlur',\r\n 'onBlurCapture',\r\n 'onChange',\r\n 'onInput',\r\n 'onSubmit',\r\n 'onLoad',\r\n 'onError',\r\n 'onKeyDown',\r\n 'onKeyDownCapture',\r\n 'onKeyPress',\r\n 'onKeyUp',\r\n 'onAbort',\r\n 'onCanPlay',\r\n 'onCanPlayThrough',\r\n 'onDurationChange',\r\n 'onEmptied',\r\n 'onEncrypted',\r\n 'onEnded',\r\n 'onLoadedData',\r\n 'onLoadedMetadata',\r\n 'onLoadStart',\r\n 'onPause',\r\n 'onPlay',\r\n 'onPlaying',\r\n 'onProgress',\r\n 'onRateChange',\r\n 'onSeeked',\r\n 'onSeeking',\r\n 'onStalled',\r\n 'onSuspend',\r\n 'onTimeUpdate',\r\n 'onVolumeChange',\r\n 'onWaiting',\r\n 'onClick',\r\n 'onClickCapture',\r\n 'onContextMenu',\r\n 'onDoubleClick',\r\n 'onDrag',\r\n 'onDragEnd',\r\n 'onDragEnter',\r\n 'onDragExit',\r\n 'onDragLeave',\r\n 'onDragOver',\r\n 'onDragStart',\r\n 'onDrop',\r\n 'onMouseDown',\r\n 'onMouseDownCapture',\r\n 'onMouseEnter',\r\n 'onMouseLeave',\r\n 'onMouseMove',\r\n 'onMouseOut',\r\n 'onMouseOver',\r\n 'onMouseUp',\r\n 'onMouseUpCapture',\r\n 'onSelect',\r\n 'onTouchCancel',\r\n 'onTouchEnd',\r\n 'onTouchMove',\r\n 'onTouchStart',\r\n 'onScroll',\r\n 'onWheel'\r\n];\r\n/**\r\n * An array of element attributes which are allowed on every html element type.\r\n *\r\n * @public\r\n */\r\nvar baseElementProperties = [\r\n 'defaultChecked',\r\n 'defaultValue',\r\n 'accept',\r\n 'acceptCharset',\r\n 'accessKey',\r\n 'action',\r\n 'allowFullScreen',\r\n 'allowTransparency',\r\n 'alt',\r\n 'async',\r\n 'autoComplete',\r\n 'autoFocus',\r\n 'autoPlay',\r\n 'capture',\r\n 'cellPadding',\r\n 'cellSpacing',\r\n 'charSet',\r\n 'challenge',\r\n 'checked',\r\n 'children',\r\n 'classID',\r\n 'className',\r\n 'cols',\r\n 'colSpan',\r\n 'content',\r\n 'contentEditable',\r\n 'contextMenu',\r\n 'controls',\r\n 'coords',\r\n 'crossOrigin',\r\n 'data',\r\n 'dateTime',\r\n 'default',\r\n 'defer',\r\n 'dir',\r\n 'download',\r\n 'draggable',\r\n 'encType',\r\n 'form',\r\n 'formAction',\r\n 'formEncType',\r\n 'formMethod',\r\n 'formNoValidate',\r\n 'formTarget',\r\n 'frameBorder',\r\n 'headers',\r\n 'height',\r\n 'hidden',\r\n 'high',\r\n 'hrefLang',\r\n 'htmlFor',\r\n 'httpEquiv',\r\n 'icon',\r\n 'id',\r\n 'inputMode',\r\n 'integrity',\r\n 'is',\r\n 'keyParams',\r\n 'keyType',\r\n 'kind',\r\n 'lang',\r\n 'list',\r\n 'loop',\r\n 'low',\r\n 'manifest',\r\n 'marginHeight',\r\n 'marginWidth',\r\n 'max',\r\n 'maxLength',\r\n 'media',\r\n 'mediaGroup',\r\n 'method',\r\n 'min',\r\n 'minLength',\r\n 'multiple',\r\n 'muted',\r\n 'name',\r\n 'noValidate',\r\n 'open',\r\n 'optimum',\r\n 'pattern',\r\n 'placeholder',\r\n 'poster',\r\n 'preload',\r\n 'radioGroup',\r\n 'readOnly',\r\n 'rel',\r\n 'required',\r\n 'role',\r\n 'rows',\r\n 'rowSpan',\r\n 'sandbox',\r\n 'scope',\r\n 'scoped',\r\n 'scrolling',\r\n 'seamless',\r\n 'selected',\r\n 'shape',\r\n 'size',\r\n 'sizes',\r\n 'span',\r\n 'spellCheck',\r\n 'src',\r\n 'srcDoc',\r\n 'srcLang',\r\n 'srcSet',\r\n 'start',\r\n 'step',\r\n 'style',\r\n 'summary',\r\n 'tabIndex',\r\n 'title',\r\n 'type',\r\n 'useMap',\r\n 'value',\r\n 'width',\r\n 'wmode',\r\n 'wrap'\r\n];\r\n/**\r\n * An array of HTML element properties and events.\r\n *\r\n * @public\r\n */\r\nvar htmlElementProperties = baseElementProperties.concat(baseElementEvents);\r\n/**\r\n * An array of A tag properties and events.\r\n *\r\n * @public\r\n */\r\nvar anchorProperties = htmlElementProperties.concat(['href', 'target']);\r\n/**\r\n * An array of BUTTON tag properties and events.\r\n *\r\n * @public\r\n */\r\nvar buttonProperties = htmlElementProperties.concat(['disabled']);\r\n/**\r\n * An array of DIV tag properties and events.\r\n *\r\n * @public\r\n */\r\nvar divProperties = htmlElementProperties.concat(['align', 'noWrap']);\r\n/**\r\n * An array of INPUT tag properties and events.\r\n *\r\n * @public\r\n */\r\nvar inputProperties = buttonProperties;\r\n/**\r\n * An array of TEXTAREA tag properties and events.\r\n *\r\n * @public\r\n */\r\nvar textAreaProperties = buttonProperties;\r\n/**\r\n * An array of IMAGE tag properties and events.\r\n *\r\n * @public\r\n */\r\nvar imageProperties = divProperties;\r\n/**\r\n * Gets native supported props for an html element provided the allowance set. Use one of the property\r\n * sets defined (divProperties, buttonPropertes, etc) to filter out supported properties from a given\r\n * props set. Note that all data- and aria- prefixed attributes will be allowed.\r\n * NOTE: getNativeProps should always be applied first when adding props to a react component. The\r\n * non-native props should be applied second. This will prevent getNativeProps from overriding your custom props.\r\n * For example, if props passed to getNativeProps has an onClick function and getNativeProps is added to\r\n * the component after an onClick function is added, then the getNativeProps onClick will override it.\r\n *\r\n * @public\r\n * @param props - The unfiltered input props\r\n * @param allowedPropsNames- The array of allowed propnames.\r\n * @returns The filtered props\r\n */\r\nfunction getNativeProps(props, allowedPropNames, excludedPropNames) {\r\n return Object(_object__WEBPACK_IMPORTED_MODULE_0__[\"filteredAssign\"])(function (propName) {\r\n return ((!excludedPropNames || excludedPropNames.indexOf(propName) < 0) &&\r\n (propName.indexOf('data-') === 0 || propName.indexOf('aria-') === 0 || allowedPropNames.indexOf(propName) >= 0));\r\n }, {}, props);\r\n}\r\n//# sourceMappingURL=properties.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/properties.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/resources.js":
/*!***********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/resources.js ***!
\***********************************************************/
/*! exports provided: getResourceUrl, setBaseUrl */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getResourceUrl\", function() { return getResourceUrl; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setBaseUrl\", function() { return setBaseUrl; });\nvar _baseUrl = '';\r\n/** Sets the current base url used for fetching images. */\r\nfunction getResourceUrl(url) {\r\n return _baseUrl + url;\r\n}\r\n/** Gets the current base url used for fetching images. */\r\nfunction setBaseUrl(baseUrl) {\r\n _baseUrl = baseUrl;\r\n}\r\n//# sourceMappingURL=resources.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/resources.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/rtl.js":
/*!*****************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/rtl.js ***!
\*****************************************************/
/*! exports provided: getRTL, setRTL, getRTLSafeKeyCode */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRTL\", function() { return getRTL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setRTL\", function() { return setRTL; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getRTLSafeKeyCode\", function() { return getRTLSafeKeyCode; });\n/* harmony import */ var _KeyCodes__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./KeyCodes */ \"./node_modules/@uifabric/utilities/lib/KeyCodes.js\");\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n/* harmony import */ var _sessionStorage__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./sessionStorage */ \"./node_modules/@uifabric/utilities/lib/sessionStorage.js\");\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n\r\n\r\n\r\nvar RTL_LOCAL_STORAGE_KEY = 'isRTL';\r\n// Default to undefined so that we initialize on first read.\r\nvar _isRTL;\r\n/**\r\n * Gets the rtl state of the page (returns true if in rtl.)\r\n */\r\nfunction getRTL() {\r\n if (_isRTL === undefined) {\r\n // Fabric supports persisting the RTL setting between page refreshes via session storage\r\n var savedRTL = Object(_sessionStorage__WEBPACK_IMPORTED_MODULE_2__[\"getItem\"])(RTL_LOCAL_STORAGE_KEY);\r\n if (savedRTL !== null) {\r\n _isRTL = savedRTL === '1';\r\n setRTL(_isRTL);\r\n }\r\n var doc = Object(_dom__WEBPACK_IMPORTED_MODULE_1__[\"getDocument\"])();\r\n if (_isRTL === undefined && doc) {\r\n _isRTL = (doc.body.getAttribute('dir') || doc.documentElement.getAttribute('dir')) === 'rtl';\r\n Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_3__[\"setRTL\"])(_isRTL);\r\n }\r\n }\r\n return !!_isRTL;\r\n}\r\n/**\r\n * Sets the rtl state of the page (by adjusting the dir attribute of the html element.)\r\n */\r\nfunction setRTL(isRTL, persistSetting) {\r\n if (persistSetting === void 0) { persistSetting = false; }\r\n var doc = Object(_dom__WEBPACK_IMPORTED_MODULE_1__[\"getDocument\"])();\r\n if (doc) {\r\n doc.documentElement.setAttribute('dir', isRTL ? 'rtl' : 'ltr');\r\n }\r\n if (persistSetting) {\r\n Object(_sessionStorage__WEBPACK_IMPORTED_MODULE_2__[\"setItem\"])(RTL_LOCAL_STORAGE_KEY, isRTL ? '1' : '0');\r\n }\r\n _isRTL = isRTL;\r\n Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_3__[\"setRTL\"])(_isRTL);\r\n}\r\n/**\r\n * Returns the given key, but flips right/left arrows if necessary.\r\n */\r\nfunction getRTLSafeKeyCode(key) {\r\n if (getRTL()) {\r\n if (key === _KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].left) {\r\n key = _KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].right;\r\n }\r\n else if (key === _KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].right) {\r\n key = _KeyCodes__WEBPACK_IMPORTED_MODULE_0__[\"KeyCodes\"].left;\r\n }\r\n }\r\n return key;\r\n}\r\n//# sourceMappingURL=rtl.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/rtl.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/scroll.js":
/*!********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/scroll.js ***!
\********************************************************/
/*! exports provided: DATA_IS_SCROLLABLE_ATTRIBUTE, allowScrollOnElement, disableBodyScroll, enableBodyScroll, getScrollbarWidth, findScrollableParent */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DATA_IS_SCROLLABLE_ATTRIBUTE\", function() { return DATA_IS_SCROLLABLE_ATTRIBUTE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"allowScrollOnElement\", function() { return allowScrollOnElement; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"disableBodyScroll\", function() { return disableBodyScroll; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"enableBodyScroll\", function() { return enableBodyScroll; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getScrollbarWidth\", function() { return getScrollbarWidth; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"findScrollableParent\", function() { return findScrollableParent; });\n/* harmony import */ var _dom__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./dom */ \"./node_modules/@uifabric/utilities/lib/dom.js\");\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n\r\n\r\nvar _scrollbarWidth;\r\nvar _bodyScrollDisabledCount = 0;\r\nvar DisabledScrollClassName = Object(_uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_1__[\"mergeStyles\"])({\r\n overflow: 'hidden !important'\r\n});\r\n/**\r\n * Placing this attribute on scrollable divs optimizes detection to know\r\n * if the div is scrollable or not (given we can avoid expensive operations\r\n * like getComputedStyle.)\r\n *\r\n * @public\r\n */\r\nvar DATA_IS_SCROLLABLE_ATTRIBUTE = 'data-is-scrollable';\r\nvar _makeElementScrollAllower = function () {\r\n var _previousClientY = 0;\r\n var _element = null;\r\n // remember the clientY for future calls of _preventOverscrolling\r\n var _saveClientY = function (event) {\r\n if (event.targetTouches.length === 1) {\r\n _previousClientY = event.targetTouches[0].clientY;\r\n }\r\n };\r\n // prevent the body from scrolling when the user attempts\r\n // to scroll past the top or bottom of the element\r\n var _preventOverscrolling = function (event) {\r\n // only respond to a single-finger touch\r\n if (event.targetTouches.length !== 1) {\r\n return;\r\n }\r\n // prevent the body touchmove handler from firing\r\n // so that scrolling is allowed within the element\r\n event.stopPropagation();\r\n if (!_element) {\r\n return;\r\n }\r\n var clientY = event.targetTouches[0].clientY - _previousClientY;\r\n var scrollableParent = findScrollableParent(event.target);\r\n if (scrollableParent) {\r\n _element = scrollableParent;\r\n }\r\n // if the element is scrolled to the top,\r\n // prevent the user from scrolling up\r\n if (_element.scrollTop === 0 && clientY > 0) {\r\n event.preventDefault();\r\n }\r\n // if the element is scrolled to the bottom,\r\n // prevent the user from scrolling down\r\n if (_element.scrollHeight - _element.scrollTop <= _element.clientHeight && clientY < 0) {\r\n event.preventDefault();\r\n }\r\n };\r\n return function (element, events) {\r\n if (!element) {\r\n return;\r\n }\r\n events.on(element, 'touchstart', _saveClientY, { passive: false });\r\n events.on(element, 'touchmove', _preventOverscrolling, { passive: false });\r\n _element = element;\r\n };\r\n};\r\n/**\r\n * Allows the user to scroll within a element,\r\n * while preventing the user from scrolling the body\r\n */\r\nvar allowScrollOnElement = _makeElementScrollAllower();\r\nvar _disableIosBodyScroll = function (event) {\r\n event.preventDefault();\r\n};\r\n/**\r\n * Disables the body scrolling.\r\n *\r\n * @public\r\n */\r\nfunction disableBodyScroll() {\r\n var doc = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getDocument\"])();\r\n if (doc && doc.body && !_bodyScrollDisabledCount) {\r\n doc.body.classList.add(DisabledScrollClassName);\r\n doc.body.addEventListener('touchmove', _disableIosBodyScroll, { passive: false, capture: false });\r\n }\r\n _bodyScrollDisabledCount++;\r\n}\r\n/**\r\n * Enables the body scrolling.\r\n *\r\n * @public\r\n */\r\nfunction enableBodyScroll() {\r\n if (_bodyScrollDisabledCount > 0) {\r\n var doc = Object(_dom__WEBPACK_IMPORTED_MODULE_0__[\"getDocument\"])();\r\n if (doc && doc.body && _bodyScrollDisabledCount === 1) {\r\n doc.body.classList.remove(DisabledScrollClassName);\r\n doc.body.removeEventListener('touchmove', _disableIosBodyScroll);\r\n }\r\n _bodyScrollDisabledCount--;\r\n }\r\n}\r\n/**\r\n * Calculates the width of a scrollbar for the browser/os.\r\n *\r\n * @public\r\n */\r\nfunction getScrollbarWidth() {\r\n if (_scrollbarWidth === undefined) {\r\n var scrollDiv = document.createElement('div');\r\n scrollDiv.style.setProperty('width', '100px');\r\n scrollDiv.style.setProperty('height', '100px');\r\n scrollDiv.style.setProperty('overflow', 'scroll');\r\n scrollDiv.style.setProperty('position', 'absolute');\r\n scrollDiv.style.setProperty('top', '-9999px');\r\n document.body.appendChild(scrollDiv);\r\n // Get the scrollbar width\r\n _scrollbarWidth = scrollDiv.offsetWidth - scrollDiv.clientWidth;\r\n // Delete the DIV\r\n document.body.removeChild(scrollDiv);\r\n }\r\n return _scrollbarWidth;\r\n}\r\n/**\r\n * Traverses up the DOM for the element with the data-is-scrollable=true attribute, or returns\r\n * document.body.\r\n *\r\n * @public\r\n */\r\nfunction findScrollableParent(startingElement) {\r\n var el = startingElement;\r\n // First do a quick scan for the scrollable attribute.\r\n while (el && el !== document.body) {\r\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) === 'true') {\r\n return el;\r\n }\r\n el = el.parentElement;\r\n }\r\n // If we haven't found it, the use the slower method: compute styles to evaluate if overflow is set.\r\n el = startingElement;\r\n while (el && el !== document.body) {\r\n if (el.getAttribute(DATA_IS_SCROLLABLE_ATTRIBUTE) !== 'false') {\r\n var computedStyles = getComputedStyle(el);\r\n var overflowY = computedStyles ? computedStyles.getPropertyValue('overflow-y') : '';\r\n if (overflowY && (overflowY === 'scroll' || overflowY === 'auto')) {\r\n return el;\r\n }\r\n }\r\n el = el.parentElement;\r\n }\r\n // Fall back to window scroll.\r\n if (!el || el === document.body) {\r\n // tslint:disable-next-line:no-any\r\n el = window;\r\n }\r\n return el;\r\n}\r\n//# sourceMappingURL=scroll.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/scroll.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/sessionStorage.js":
/*!****************************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/sessionStorage.js ***!
\****************************************************************/
/*! exports provided: getItem, setItem */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getItem\", function() { return getItem; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setItem\", function() { return setItem; });\n/**\r\n * Fetches an item from session storage without throwing an exception\r\n * @param key The key of the item to fetch from session storage\r\n */\r\nfunction getItem(key) {\r\n var result = null;\r\n try {\r\n result = window.sessionStorage.getItem(key);\r\n }\r\n catch (e) {\r\n /* Eat the exception */\r\n }\r\n return result;\r\n}\r\n/**\r\n * Inserts an item into session storage without throwing an exception\r\n * @param key The key of the item to add to session storage\r\n * @param data The data to put into session storage\r\n */\r\nfunction setItem(key, data) {\r\n try {\r\n window.sessionStorage.setItem(key, data);\r\n }\r\n catch (e) {\r\n /* Eat the exception */\r\n }\r\n}\r\n//# sourceMappingURL=sessionStorage.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/sessionStorage.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/string.js":
/*!********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/string.js ***!
\********************************************************/
/*! exports provided: format */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"format\", function() { return format; });\n// Regex that finds { and } so they can be removed on a lookup for string format\r\nvar FORMAT_ARGS_REGEX = /[\\{\\}]/g;\r\n// Regex that finds {#} so it can be replaced by the arguments in string format\r\nvar FORMAT_REGEX = /\\{\\d+\\}/g;\r\n/**\r\n * String format method, used for scenarios where at runtime you\r\n * need to evaluate a formatted string given a tokenized string. This\r\n * usually only is needed in localization scenarios.\r\n\r\n * @example\r\n * ```tsx\r\n * \"I love {0} every {1}\".format(\"CXP\")\r\n * ```\r\n * will result in a Debug Exception.\r\n *\r\n * @public\r\n */\r\n// tslint:disable-next-line:no-any\r\nfunction format(s) {\r\n 'use strict';\r\n var values = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n values[_i - 1] = arguments[_i];\r\n }\r\n var args = values;\r\n // Callback match function\r\n function replace_func(match) {\r\n // looks up in the args\r\n // tslint:disable-next-line:no-any\r\n var replacement = args[match.replace(FORMAT_ARGS_REGEX, '')];\r\n // catches undefined in nondebug and null in debug and nondebug\r\n if (replacement === null || replacement === undefined) {\r\n replacement = '';\r\n }\r\n return replacement;\r\n }\r\n return s.replace(FORMAT_REGEX, replace_func);\r\n}\r\n//# sourceMappingURL=string.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/string.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/styled.js":
/*!********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/styled.js ***!
\********************************************************/
/*! exports provided: styled */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"styled\", function() { return styled; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @uifabric/merge-styles */ \"./node_modules/@uifabric/merge-styles/lib/index.js\");\n/* harmony import */ var _Customizations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Customizations */ \"./node_modules/@uifabric/utilities/lib/Customizations.js\");\n/* harmony import */ var _Customizer__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Customizer */ \"./node_modules/@uifabric/utilities/lib/Customizer.js\");\n\r\n\r\n\r\n\r\n\r\nvar DefaultFields = ['theme', 'styles'];\r\n/**\r\n * The styled HOC wrapper allows you to create a functional wrapper around a given component which will resolve\r\n * getStyles functional props, and mix customized props passed in using concatStyleSets.\r\n *\r\n * @example\r\n * ```tsx\r\n * export const Toggle = styled(\r\n * ToggleBase,\r\n * props => ({ root: { background: 'red' }})\r\n * );\r\n * ```\r\n * @param Component - The unstyled base component to render, which receives styles.\r\n * @param baseStyles - The styles which should be curried with the component.\r\n * @param getProps - A helper which provides default props.\r\n * @param customizable - An object which defines which props can be customized using the Customizer.\r\n */\r\nfunction styled(Component, baseStyles, getProps, customizable) {\r\n customizable = customizable || { scope: '', fields: undefined };\r\n var scope = customizable.scope, _a = customizable.fields, fields = _a === void 0 ? DefaultFields : _a;\r\n var Wrapped = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Wrapped, _super);\r\n function Wrapped() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n _this._inCustomizerContext = false;\r\n _this._onSettingsChanged = function () { return _this.forceUpdate(); };\r\n return _this;\r\n }\r\n Wrapped.prototype.render = function () {\r\n var _this = this;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Customizer__WEBPACK_IMPORTED_MODULE_4__[\"CustomizerContext\"].Consumer, null, function (context) {\r\n _this._inCustomizerContext = !!context.customizations.inCustomizerContext;\r\n var settings = _Customizations__WEBPACK_IMPORTED_MODULE_3__[\"Customizations\"].getSettings(fields, scope, context.customizations);\r\n var customizedStyles = settings.styles, rest = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](settings, [\"styles\"]);\r\n var styles = function (styleProps) { return _resolve(styleProps, baseStyles, customizedStyles, _this.props.styles); };\r\n var additionalProps = getProps ? getProps(_this.props) : undefined;\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](Component, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, rest, additionalProps, _this.props, { styles: styles }));\r\n }));\r\n };\r\n Wrapped.prototype.componentDidMount = function () {\r\n if (!this._inCustomizerContext) {\r\n _Customizations__WEBPACK_IMPORTED_MODULE_3__[\"Customizations\"].observe(this._onSettingsChanged);\r\n }\r\n };\r\n Wrapped.prototype.componentWillUnmount = function () {\r\n if (!this._inCustomizerContext) {\r\n _Customizations__WEBPACK_IMPORTED_MODULE_3__[\"Customizations\"].unobserve(this._onSettingsChanged);\r\n }\r\n };\r\n Wrapped.displayName = \"Styled\" + (Component.displayName || Component.name);\r\n return Wrapped;\r\n }(react__WEBPACK_IMPORTED_MODULE_1__[\"Component\"]));\r\n // This preserves backwards compatibility.\r\n // tslint:disable-next-line:no-any\r\n return Wrapped;\r\n}\r\nfunction _resolve(styleProps) {\r\n var allStyles = [];\r\n for (var _i = 1; _i < arguments.length; _i++) {\r\n allStyles[_i - 1] = arguments[_i];\r\n }\r\n var result = [];\r\n for (var _a = 0, allStyles_1 = allStyles; _a < allStyles_1.length; _a++) {\r\n var styles = allStyles_1[_a];\r\n if (styles) {\r\n result.push(typeof styles === 'function' ? styles(styleProps) : styles);\r\n }\r\n }\r\n if (result.length) {\r\n // cliffkoh: I cannot figure out how to avoid the cast to any here.\r\n // It is something to do with the use of Omit in IStyleSet.\r\n // It might not be necessary once Omit becomes part of lib.d.ts (when we remove our own Omit and rely on\r\n // the official version).\r\n // tslint:disable-next-line:no-any\r\n return _uifabric_merge_styles__WEBPACK_IMPORTED_MODULE_2__[\"concatStyleSets\"].apply(void 0, result);\r\n }\r\n return undefined;\r\n}\r\n//# sourceMappingURL=styled.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/styled.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/version.js":
/*!*********************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/version.js ***!
\*********************************************************/
/*! no exports provided */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/set-version */ \"./node_modules/@uifabric/set-version/lib/index.js\");\n// @uifabric/utilities@6.29.1\r\n// Do not modify this file, the file is generated as part of publish. The checked in version is a placeholder only.\r\n\r\nObject(_uifabric_set_version__WEBPACK_IMPORTED_MODULE_0__[\"setVersion\"])('@uifabric/utilities', '6.29.1');\r\n//# sourceMappingURL=version.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/version.js?");
/***/ }),
/***/ "./node_modules/@uifabric/utilities/lib/warn.js":
/*!******************************************************!*\
!*** ./node_modules/@uifabric/utilities/lib/warn.js ***!
\******************************************************/
/*! exports provided: warnDeprecations, warnMutuallyExclusive, warnConditionallyRequiredProps, warn, setWarningCallback */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"warnDeprecations\", function() { return warnDeprecations; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"warnMutuallyExclusive\", function() { return warnMutuallyExclusive; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"warnConditionallyRequiredProps\", function() { return warnConditionallyRequiredProps; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"warn\", function() { return warn; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setWarningCallback\", function() { return setWarningCallback; });\nvar _warningCallback = undefined;\r\n/**\r\n * Warns when a deprecated props are being used.\r\n *\r\n * @public\r\n * @param componentName - The name of the component being used.\r\n * @param props - The props passed into the component.\r\n * @param deprecationMap - The map of deprecations, where key is the prop name and the value is\r\n * either null or a replacement prop name.\r\n */\r\nfunction warnDeprecations(componentName, props, deprecationMap) {\r\n for (var propName in deprecationMap) {\r\n if (props && propName in props) {\r\n var deprecationMessage = componentName + \" property '\" + propName + \"' was used but has been deprecated.\";\r\n var replacementPropName = deprecationMap[propName];\r\n if (replacementPropName) {\r\n deprecationMessage += \" Use '\" + replacementPropName + \"' instead.\";\r\n }\r\n warn(deprecationMessage);\r\n }\r\n }\r\n}\r\n/**\r\n * Warns when two props which are mutually exclusive are both being used.\r\n *\r\n * @public\r\n * @param componentName - The name of the component being used.\r\n * @param props - The props passed into the component.\r\n * @param exclusiveMap - A map where the key is a parameter, and the value is the other parameter.\r\n */\r\nfunction warnMutuallyExclusive(componentName, props, exclusiveMap) {\r\n for (var propName in exclusiveMap) {\r\n if (props && propName in props) {\r\n var propInExclusiveMapValue = exclusiveMap[propName];\r\n if (propInExclusiveMapValue && propInExclusiveMapValue in props) {\r\n warn(componentName + \" property '\" + propName + \"' is mutually exclusive with '\" + exclusiveMap[propName] + \"'. Use one or the other.\");\r\n }\r\n }\r\n }\r\n}\r\n/**\r\n * Warns when props are required if a condition is met.\r\n *\r\n * @public\r\n * @param componentName - The name of the component being used.\r\n * @param props - The props passed into the component.\r\n * @param requiredProps - The name of the props that are required when the condition is met.\r\n * @param conditionalPropName - The name of the prop that the condition is based on.\r\n * @param condition - Whether the condition is met.\r\n */\r\nfunction warnConditionallyRequiredProps(componentName, props, requiredProps, conditionalPropName, condition) {\r\n if (condition === true) {\r\n for (var _i = 0, requiredProps_1 = requiredProps; _i < requiredProps_1.length; _i++) {\r\n var requiredPropName = requiredProps_1[_i];\r\n if (!(requiredPropName in props)) {\r\n warn(componentName + \" property '\" + requiredPropName + \"' is required when '\" + conditionalPropName + \"' is used.'\");\r\n }\r\n }\r\n }\r\n}\r\n/**\r\n * Sends a warning to console, if the api is present.\r\n *\r\n * @public\r\n * @param message - Warning message.\r\n */\r\nfunction warn(message) {\r\n if (_warningCallback) {\r\n _warningCallback(message);\r\n }\r\n else if (console && console.warn) {\r\n console.warn(message);\r\n }\r\n}\r\n/**\r\n * Configures the warning callback. Passing in undefined will reset it to use the default\r\n * console.warn function.\r\n *\r\n * @public\r\n * @param warningCallback - Callback to override the generated warnings.\r\n */\r\nfunction setWarningCallback(warningCallback) {\r\n _warningCallback = warningCallback;\r\n}\r\n//# sourceMappingURL=warn.js.map\n\n//# sourceURL=webpack:///./node_modules/@uifabric/utilities/lib/warn.js?");
/***/ }),
/***/ "./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js":
/*!**********************************************************************************!*\
!*** ./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js ***!
\**********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
eval("\n\n/**\n * Copyright 2015, Yahoo! Inc.\n * Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.\n */\nvar ReactIs = __webpack_require__(/*! react-is */ \"./node_modules/react-is/index.js\");\nvar REACT_STATICS = {\n childContextTypes: true,\n contextType: true,\n contextTypes: true,\n defaultProps: true,\n displayName: true,\n getDefaultProps: true,\n getDerivedStateFromError: true,\n getDerivedStateFromProps: true,\n mixins: true,\n propTypes: true,\n type: true\n};\n\nvar KNOWN_STATICS = {\n name: true,\n length: true,\n prototype: true,\n caller: true,\n callee: true,\n arguments: true,\n arity: true\n};\n\nvar FORWARD_REF_STATICS = {\n '$$typeof': true,\n render: true,\n defaultProps: true,\n displayName: true,\n propTypes: true\n};\n\nvar TYPE_STATICS = {};\nTYPE_STATICS[ReactIs.ForwardRef] = FORWARD_REF_STATICS;\n\nvar defineProperty = Object.defineProperty;\nvar getOwnPropertyNames = Object.getOwnPropertyNames;\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar getPrototypeOf = Object.getPrototypeOf;\nvar objectPrototype = Object.prototype;\n\nfunction hoistNonReactStatics(targetComponent, sourceComponent, blacklist) {\n if (typeof sourceComponent !== 'string') {\n // don't hoist over string (html) components\n\n if (objectPrototype) {\n var inheritedComponent = getPrototypeOf(sourceComponent);\n if (inheritedComponent && inheritedComponent !== objectPrototype) {\n hoistNonReactStatics(targetComponent, inheritedComponent, blacklist);\n }\n }\n\n var keys = getOwnPropertyNames(sourceComponent);\n\n if (getOwnPropertySymbols) {\n keys = keys.concat(getOwnPropertySymbols(sourceComponent));\n }\n\n var targetStatics = TYPE_STATICS[targetComponent['$$typeof']] || REACT_STATICS;\n var sourceStatics = TYPE_STATICS[sourceComponent['$$typeof']] || REACT_STATICS;\n\n for (var i = 0; i < keys.length; ++i) {\n var key = keys[i];\n if (!KNOWN_STATICS[key] && !(blacklist && blacklist[key]) && !(sourceStatics && sourceStatics[key]) && !(targetStatics && targetStatics[key])) {\n var descriptor = getOwnPropertyDescriptor(sourceComponent, key);\n try {\n // Avoid failures from read-only properties\n defineProperty(targetComponent, key, descriptor);\n } catch (e) {}\n }\n }\n\n return targetComponent;\n }\n\n return targetComponent;\n}\n\nmodule.exports = hoistNonReactStatics;\n\n\n//# sourceURL=webpack:///./node_modules/hoist-non-react-statics/dist/hoist-non-react-statics.cjs.js?");
/***/ }),
/***/ "./node_modules/immer/dist/immer.module.js":
/*!*************************************************!*\
!*** ./node_modules/immer/dist/immer.module.js ***!
\*************************************************/
/*! exports provided: produce, setAutoFreeze, setUseProxies, applyPatches, Immer, original, isDraft, isDraftable, nothing, immerable, default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function(process) {/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"produce\", function() { return produce; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setAutoFreeze\", function() { return setAutoFreeze; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setUseProxies\", function() { return setUseProxies; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"applyPatches\", function() { return applyPatches$1; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Immer\", function() { return Immer; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"original\", function() { return original; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDraft\", function() { return isDraft; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isDraftable\", function() { return isDraftable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"nothing\", function() { return NOTHING; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"immerable\", function() { return DRAFTABLE; });\nvar _typeof = typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\" ? function (obj) {\n return typeof obj;\n} : function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n};\n\n\n\n\n\n\n\n\n\n\n\nvar classCallCheck = function (instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n};\n\nvar createClass = function () {\n function defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n }\n\n return function (Constructor, protoProps, staticProps) {\n if (protoProps) defineProperties(Constructor.prototype, protoProps);\n if (staticProps) defineProperties(Constructor, staticProps);\n return Constructor;\n };\n}();\n\n\n\n\n\nvar defineProperty = function (obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n};\n\nvar NOTHING = typeof Symbol !== \"undefined\" ? Symbol(\"immer-nothing\") : defineProperty({}, \"immer-nothing\", true);\n\nvar DRAFTABLE = typeof Symbol !== \"undefined\" ? Symbol(\"immer-draftable\") : \"__$immer_draftable\";\n\nvar DRAFT_STATE = typeof Symbol !== \"undefined\" ? Symbol(\"immer-state\") : \"__$immer_state\";\n\nfunction isDraft(value) {\n return !!value && !!value[DRAFT_STATE];\n}\n\nfunction isDraftable(value) {\n if (!value || (typeof value === \"undefined\" ? \"undefined\" : _typeof(value)) !== \"object\") return false;\n if (Array.isArray(value)) return true;\n var proto = Object.getPrototypeOf(value);\n if (!proto || proto === Object.prototype) return true;\n return !!value[DRAFTABLE] || !!value.constructor[DRAFTABLE];\n}\n\nfunction original(value) {\n if (value && value[DRAFT_STATE]) {\n return value[DRAFT_STATE].base;\n }\n // otherwise return undefined\n}\n\nvar assign = Object.assign || function assign(target, value) {\n for (var key in value) {\n if (has(value, key)) {\n target[key] = value[key];\n }\n }\n return target;\n};\n\nvar ownKeys = typeof Reflect !== \"undefined\" && Reflect.ownKeys ? Reflect.ownKeys : typeof Object.getOwnPropertySymbols !== \"undefined\" ? function (obj) {\n return Object.getOwnPropertyNames(obj).concat(Object.getOwnPropertySymbols(obj));\n} : Object.getOwnPropertyNames;\n\nfunction shallowCopy(base) {\n var invokeGetters = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;\n\n if (Array.isArray(base)) return base.slice();\n var clone = Object.create(Object.getPrototypeOf(base));\n ownKeys(base).forEach(function (key) {\n if (key === DRAFT_STATE) {\n return; // Never copy over draft state.\n }\n var desc = Object.getOwnPropertyDescriptor(base, key);\n if (desc.get) {\n if (!invokeGetters) {\n throw new Error(\"Immer drafts cannot have computed properties\");\n }\n desc.value = desc.get.call(base);\n }\n if (desc.enumerable) {\n clone[key] = desc.value;\n } else {\n Object.defineProperty(clone, key, {\n value: desc.value,\n writable: true,\n configurable: true\n });\n }\n });\n return clone;\n}\n\nfunction each(value, cb) {\n if (Array.isArray(value)) {\n for (var i = 0; i < value.length; i++) {\n cb(i, value[i], value);\n }\n } else {\n ownKeys(value).forEach(function (key) {\n return cb(key, value[key], value);\n });\n }\n}\n\nfunction isEnumerable(base, prop) {\n return Object.getOwnPropertyDescriptor(base, prop).enumerable;\n}\n\nfunction has(thing, prop) {\n return Object.prototype.hasOwnProperty.call(thing, prop);\n}\n\nfunction is(x, y) {\n // From: https://github.com/facebook/fbjs/blob/c69904a511b900266935168223063dd8772dfc40/packages/fbjs/src/core/shallowEqual.js\n if (x === y) {\n return x !== 0 || 1 / x === 1 / y;\n } else {\n return x !== x && y !== y;\n }\n}\n\n// @ts-check\n\nvar descriptors = {};\n\n// For nested produce calls:\nvar scopes = [];\nvar currentScope = function currentScope() {\n return scopes[scopes.length - 1];\n};\n\nfunction willFinalize(result, baseDraft, needPatches) {\n var scope = currentScope();\n scope.forEach(function (state) {\n return state.finalizing = true;\n });\n if (result === undefined || result === baseDraft) {\n if (needPatches) markChangesRecursively(baseDraft);\n // This is faster when we don't care about which attributes changed.\n markChangesSweep(scope);\n }\n}\n\nfunction createDraft(base, parent) {\n var isArray = Array.isArray(base);\n var draft = clonePotentialDraft(base);\n each(draft, function (prop) {\n proxyProperty(draft, prop, isArray || isEnumerable(base, prop));\n });\n\n // See \"proxy.js\" for property documentation.\n var state = {\n scope: parent ? parent.scope : currentScope(),\n modified: false,\n finalizing: false, // es5 only\n finalized: false,\n assigned: {},\n parent: parent,\n base: base,\n draft: draft,\n copy: null,\n revoke: revoke,\n revoked: false // es5 only\n };\n\n createHiddenProperty(draft, DRAFT_STATE, state);\n state.scope.push(state);\n return draft;\n}\n\nfunction revoke() {\n this.revoked = true;\n}\n\nfunction source(state) {\n return state.copy || state.base;\n}\n\nfunction _get(state, prop) {\n assertUnrevoked(state);\n var value = source(state)[prop];\n // Drafts are only created for proxyable values that exist in the base state.\n if (!state.finalizing && value === state.base[prop] && isDraftable(value)) {\n prepareCopy(state);\n return state.copy[prop] = createDraft(value, state);\n }\n return value;\n}\n\nfunction _set(state, prop, value) {\n assertUnrevoked(state);\n state.assigned[prop] = true;\n if (!state.modified) {\n if (is(source(state)[prop], value)) return;\n markChanged(state);\n prepareCopy(state);\n }\n state.copy[prop] = value;\n}\n\nfunction markChanged(state) {\n if (!state.modified) {\n state.modified = true;\n if (state.parent) markChanged(state.parent);\n }\n}\n\nfunction prepareCopy(state) {\n if (!state.copy) state.copy = clonePotentialDraft(state.base);\n}\n\nfunction clonePotentialDraft(base) {\n var state = base && base[DRAFT_STATE];\n if (state) {\n state.finalizing = true;\n var draft = shallowCopy(state.draft, true);\n state.finalizing = false;\n return draft;\n }\n return shallowCopy(base);\n}\n\nfunction proxyProperty(draft, prop, enumerable) {\n var desc = descriptors[prop];\n if (desc) {\n desc.enumerable = enumerable;\n } else {\n descriptors[prop] = desc = {\n configurable: true,\n enumerable: enumerable,\n get: function get$$1() {\n return _get(this[DRAFT_STATE], prop);\n },\n set: function set$$1(value) {\n _set(this[DRAFT_STATE], prop, value);\n }\n };\n }\n Object.defineProperty(draft, prop, desc);\n}\n\nfunction assertUnrevoked(state) {\n if (state.revoked === true) throw new Error(\"Cannot use a proxy that has been revoked. Did you pass an object from inside an immer function to an async process? \" + JSON.stringify(source(state)));\n}\n\n// This looks expensive, but only proxies are visited, and only objects without known changes are scanned.\nfunction markChangesSweep(scope) {\n // The natural order of drafts in the `scope` array is based on when they\n // were accessed. By processing drafts in reverse natural order, we have a\n // better chance of processing leaf nodes first. When a leaf node is known to\n // have changed, we can avoid any traversal of its ancestor nodes.\n for (var i = scope.length - 1; i >= 0; i--) {\n var state = scope[i];\n if (state.modified === false) {\n if (Array.isArray(state.base)) {\n if (hasArrayChanges(state)) markChanged(state);\n } else if (hasObjectChanges(state)) markChanged(state);\n }\n }\n}\n\nfunction markChangesRecursively(object) {\n if (!object || (typeof object === \"undefined\" ? \"undefined\" : _typeof(object)) !== \"object\") return;\n var state = object[DRAFT_STATE];\n if (!state) return;\n var base = state.base,\n draft = state.draft,\n assigned = state.assigned;\n\n if (!Array.isArray(object)) {\n // Look for added keys.\n Object.keys(draft).forEach(function (key) {\n // The `undefined` check is a fast path for pre-existing keys.\n if (base[key] === undefined && !has(base, key)) {\n assigned[key] = true;\n markChanged(state);\n } else if (!assigned[key]) {\n // Only untouched properties trigger recursion.\n markChangesRecursively(draft[key]);\n }\n });\n // Look for removed keys.\n Object.keys(base).forEach(function (key) {\n // The `undefined` check is a fast path for pre-existing keys.\n if (draft[key] === undefined && !has(draft, key)) {\n assigned[key] = false;\n markChanged(state);\n }\n });\n } else if (hasArrayChanges(state)) {\n markChanged(state);\n assigned.length = true;\n if (draft.length < base.length) {\n for (var i = draft.length; i < base.length; i++) {\n assigned[i] = false;\n }\n } else {\n for (var _i = base.length; _i < draft.length; _i++) {\n assigned[_i] = true;\n }\n }\n for (var _i2 = 0; _i2 < draft.length; _i2++) {\n // Only untouched indices trigger recursion.\n if (assigned[_i2] === undefined) markChangesRecursively(draft[_i2]);\n }\n }\n}\n\nfunction hasObjectChanges(state) {\n var base = state.base,\n draft = state.draft;\n\n // Search for added keys. Start at the back, because non-numeric keys\n // are ordered by time of definition on the object.\n\n var keys = Object.keys(draft);\n for (var i = keys.length - 1; i >= 0; i--) {\n // The `undefined` check is a fast path for pre-existing keys.\n if (base[keys[i]] === undefined && !has(base, keys[i])) {\n return true;\n }\n }\n\n // Since no keys have been added, we can compare lengths to know if an\n // object has been deleted.\n return keys.length !== Object.keys(base).length;\n}\n\nfunction hasArrayChanges(state) {\n var draft = state.draft;\n\n if (draft.length !== state.base.length) return true;\n // See #116\n // If we first shorten the length, our array interceptors will be removed.\n // If after that new items are added, result in the same original length,\n // those last items will have no intercepting property.\n // So if there is no own descriptor on the last position, we know that items were removed and added\n // N.B.: splice, unshift, etc only shift values around, but not prop descriptors, so we only have to check\n // the last one\n var descriptor = Object.getOwnPropertyDescriptor(draft, draft.length - 1);\n // descriptor can be null, but only for newly created sparse arrays, eg. new Array(10)\n if (descriptor && !descriptor.get) return true;\n // For all other cases, we don't have to compare, as they would have been picked up by the index setters\n return false;\n}\n\nfunction createHiddenProperty(target, prop, value) {\n Object.defineProperty(target, prop, {\n value: value,\n enumerable: false,\n writable: true\n });\n}\n\n\n\nvar legacyProxy = Object.freeze({\n\tscopes: scopes,\n\tcurrentScope: currentScope,\n\twillFinalize: willFinalize,\n\tcreateDraft: createDraft\n});\n\n// @ts-check\n\n// For nested produce calls:\nvar scopes$1 = [];\nvar currentScope$1 = function currentScope() {\n return scopes$1[scopes$1.length - 1];\n};\n\n// Do nothing before being finalized.\nfunction willFinalize$1() {}\n\nfunction createDraft$1(base, parent) {\n var state = {\n // Track which produce call this is associated with.\n scope: parent ? parent.scope : currentScope$1(),\n // True for both shallow and deep changes.\n modified: false,\n // Used during finalization.\n finalized: false,\n // Track which properties have been assigned (true) or deleted (false).\n assigned: {},\n // The parent draft state.\n parent: parent,\n // The base state.\n base: base,\n // The base proxy.\n draft: null,\n // Any property proxies.\n drafts: {},\n // The base copy with any updated values.\n copy: null,\n // Called by the `produce` function.\n revoke: null\n };\n\n var _ref = Array.isArray(base) ? Proxy.revocable([state], arrayTraps) : Proxy.revocable(state, objectTraps),\n revoke = _ref.revoke,\n proxy = _ref.proxy;\n\n state.draft = proxy;\n state.revoke = revoke;\n\n state.scope.push(state);\n return proxy;\n}\n\nvar objectTraps = {\n get: get$1,\n has: function has$$1(target, prop) {\n return prop in source$1(target);\n },\n ownKeys: function ownKeys$$1(target) {\n return Reflect.ownKeys(source$1(target));\n },\n\n set: set$1,\n deleteProperty: deleteProperty,\n getOwnPropertyDescriptor: getOwnPropertyDescriptor,\n defineProperty: function defineProperty() {\n throw new Error(\"Object.defineProperty() cannot be used on an Immer draft\"); // prettier-ignore\n },\n getPrototypeOf: function getPrototypeOf(target) {\n return Object.getPrototypeOf(target.base);\n },\n setPrototypeOf: function setPrototypeOf() {\n throw new Error(\"Object.setPrototypeOf() cannot be used on an Immer draft\"); // prettier-ignore\n }\n};\n\nvar arrayTraps = {};\neach(objectTraps, function (key, fn) {\n arrayTraps[key] = function () {\n arguments[0] = arguments[0][0];\n return fn.apply(this, arguments);\n };\n});\narrayTraps.deleteProperty = function (state, prop) {\n if (isNaN(parseInt(prop))) {\n throw new Error(\"Immer only supports deleting array indices\"); // prettier-ignore\n }\n return objectTraps.deleteProperty.call(this, state[0], prop);\n};\narrayTraps.set = function (state, prop, value) {\n if (prop !== \"length\" && isNaN(parseInt(prop))) {\n throw new Error(\"Immer only supports setting array indices and the 'length' property\"); // prettier-ignore\n }\n return objectTraps.set.call(this, state[0], prop, value);\n};\n\nfunction source$1(state) {\n return state.copy || state.base;\n}\n\nfunction get$1(state, prop) {\n if (prop === DRAFT_STATE) return state;\n var drafts = state.drafts;\n\n // Check for existing draft in unmodified state.\n\n if (!state.modified && has(drafts, prop)) {\n return drafts[prop];\n }\n\n var value = source$1(state)[prop];\n if (state.finalized || !isDraftable(value)) return value;\n\n // Check for existing draft in modified state.\n if (state.modified) {\n // Assigned values are never drafted. This catches any drafts we created, too.\n if (value !== state.base[prop]) return value;\n // Store drafts on the copy (when one exists).\n drafts = state.copy;\n }\n\n return drafts[prop] = createDraft$1(value, state);\n}\n\nfunction set$1(state, prop, value) {\n if (!state.modified) {\n // Optimize based on value's truthiness. Truthy values are guaranteed to\n // never be undefined, so we can avoid the `in` operator. Lastly, truthy\n // values may be drafts, but falsy values are never drafts.\n var isUnchanged = value ? is(state.base[prop], value) || value === state.drafts[prop] : is(state.base[prop], value) && prop in state.base;\n if (isUnchanged) return true;\n markChanged$1(state);\n }\n state.assigned[prop] = true;\n state.copy[prop] = value;\n return true;\n}\n\nfunction deleteProperty(state, prop) {\n // The `undefined` check is a fast path for pre-existing keys.\n if (state.base[prop] !== undefined || prop in state.base) {\n state.assigned[prop] = false;\n markChanged$1(state);\n }\n if (state.copy) delete state.copy[prop];\n return true;\n}\n\nfunction getOwnPropertyDescriptor(state, prop) {\n var owner = source$1(state);\n var desc = Reflect.getOwnPropertyDescriptor(owner, prop);\n if (desc) {\n desc.writable = true;\n desc.configurable = !Array.isArray(owner) || prop !== \"length\";\n }\n return desc;\n}\n\nfunction markChanged$1(state) {\n if (!state.modified) {\n state.modified = true;\n state.copy = assign(shallowCopy(state.base), state.drafts);\n state.drafts = null;\n if (state.parent) markChanged$1(state.parent);\n }\n}\n\nvar modernProxy = Object.freeze({\n\tscopes: scopes$1,\n\tcurrentScope: currentScope$1,\n\twillFinalize: willFinalize$1,\n\tcreateDraft: createDraft$1\n});\n\nfunction generatePatches(state, basePath, patches, inversePatches) {\n Array.isArray(state.base) ? generateArrayPatches(state, basePath, patches, inversePatches) : generateObjectPatches(state, basePath, patches, inversePatches);\n}\n\nfunction generateArrayPatches(state, basePath, patches, inversePatches) {\n var base = state.base,\n copy = state.copy,\n assigned = state.assigned;\n\n var minLength = Math.min(base.length, copy.length);\n\n // Look for replaced indices.\n for (var i = 0; i < minLength; i++) {\n if (assigned[i] && base[i] !== copy[i]) {\n var path = basePath.concat(i);\n patches.push({ op: \"replace\", path: path, value: copy[i] });\n inversePatches.push({ op: \"replace\", path: path, value: base[i] });\n }\n }\n\n // Did the array expand?\n if (minLength < copy.length) {\n for (var _i = minLength; _i < copy.length; _i++) {\n patches.push({\n op: \"add\",\n path: basePath.concat(_i),\n value: copy[_i]\n });\n }\n inversePatches.push({\n op: \"replace\",\n path: basePath.concat(\"length\"),\n value: base.length\n });\n }\n\n // ...or did it shrink?\n else if (minLength < base.length) {\n patches.push({\n op: \"replace\",\n path: basePath.concat(\"length\"),\n value: copy.length\n });\n for (var _i2 = minLength; _i2 < base.length; _i2++) {\n inversePatches.push({\n op: \"add\",\n path: basePath.concat(_i2),\n value: base[_i2]\n });\n }\n }\n}\n\nfunction generateObjectPatches(state, basePath, patches, inversePatches) {\n var base = state.base,\n copy = state.copy;\n\n each(state.assigned, function (key, assignedValue) {\n var origValue = base[key];\n var value = copy[key];\n var op = !assignedValue ? \"remove\" : key in base ? \"replace\" : \"add\";\n if (origValue === value && op === \"replace\") return;\n var path = basePath.concat(key);\n patches.push(op === \"remove\" ? { op: op, path: path } : { op: op, path: path, value: value });\n inversePatches.push(op === \"add\" ? { op: \"remove\", path: path } : op === \"remove\" ? { op: \"add\", path: path, value: origValue } : { op: \"replace\", path: path, value: origValue });\n });\n}\n\nfunction applyPatches(draft, patches) {\n for (var i = 0; i < patches.length; i++) {\n var patch = patches[i];\n var path = patch.path;\n\n if (path.length === 0 && patch.op === \"replace\") {\n draft = patch.value;\n } else {\n var base = draft;\n for (var _i3 = 0; _i3 < path.length - 1; _i3++) {\n base = base[path[_i3]];\n if (!base || (typeof base === \"undefined\" ? \"undefined\" : _typeof(base)) !== \"object\") throw new Error(\"Cannot apply patch, path doesn't resolve: \" + path.join(\"/\")); // prettier-ignore\n }\n var key = path[path.length - 1];\n switch (patch.op) {\n case \"replace\":\n case \"add\":\n // TODO: add support is not extensive, it does not support insertion or `-` atm!\n base[key] = patch.value;\n break;\n case \"remove\":\n if (Array.isArray(base)) {\n if (key !== base.length - 1) throw new Error(\"Only the last index of an array can be removed, index: \" + key + \", length: \" + base.length); // prettier-ignore\n base.length -= 1;\n } else {\n delete base[key];\n }\n break;\n default:\n throw new Error(\"Unsupported patch operation: \" + patch.op);\n }\n }\n }\n return draft;\n}\n\nfunction verifyMinified() {}\n\nvar configDefaults = {\n useProxies: typeof Proxy !== \"undefined\" && typeof Reflect !== \"undefined\",\n autoFreeze: typeof process !== \"undefined\" ? \"development\" !== \"production\" : verifyMinified.name === \"verifyMinified\",\n onAssign: null,\n onDelete: null,\n onCopy: null\n};\n\nvar Immer = function () {\n function Immer(config) {\n classCallCheck(this, Immer);\n\n assign(this, configDefaults, config);\n this.setUseProxies(this.useProxies);\n this.produce = this.produce.bind(this);\n }\n\n createClass(Immer, [{\n key: \"produce\",\n value: function produce(base, recipe, patchListener) {\n var _this = this;\n\n // curried invocation\n if (typeof base === \"function\" && typeof recipe !== \"function\") {\n var defaultBase = recipe;\n recipe = base;\n\n // prettier-ignore\n return function () {\n for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {\n args[_key - 1] = arguments[_key];\n }\n\n var base = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : defaultBase;\n return _this.produce(base, function (draft) {\n var _recipe;\n\n return (_recipe = recipe).call.apply(_recipe, [draft, draft].concat(args));\n });\n };\n }\n\n // prettier-ignore\n {\n if (typeof recipe !== \"function\") throw new Error(\"if first argument is not a function, the second argument to produce should be a function\");\n if (patchListener !== undefined && typeof patchListener !== \"function\") throw new Error(\"the third argument of a producer should not be set or a function\");\n }\n\n var result = void 0;\n // Only create proxies for plain objects/arrays.\n if (!isDraftable(base)) {\n result = recipe(base);\n if (result === undefined) return base;\n }\n // The given value must be proxied.\n else {\n this.scopes.push([]);\n var baseDraft = this.createDraft(base);\n try {\n result = recipe.call(baseDraft, baseDraft);\n this.willFinalize(result, baseDraft, !!patchListener);\n\n // Never generate patches when no listener exists.\n var patches = patchListener && [],\n inversePatches = patchListener && [];\n\n // Finalize the modified draft...\n if (result === undefined || result === baseDraft) {\n result = this.finalize(baseDraft, [], patches, inversePatches);\n }\n // ...or use a replacement value.\n else {\n // Users must never modify the draft _and_ return something else.\n if (baseDraft[DRAFT_STATE].modified) throw new Error(\"An immer producer returned a new value *and* modified its draft. Either return a new value *or* modify the draft.\"); // prettier-ignore\n\n // Finalize the replacement in case it contains (or is) a subset of the draft.\n if (isDraftable(result)) result = this.finalize(result);\n\n if (patchListener) {\n patches.push({\n op: \"replace\",\n path: [],\n value: result\n });\n inversePatches.push({\n op: \"replace\",\n path: [],\n value: base\n });\n }\n }\n } finally {\n this.currentScope().forEach(function (state) {\n return state.revoke();\n });\n this.scopes.pop();\n }\n patchListener && patchListener(patches, inversePatches);\n }\n // Normalize the result.\n return result === NOTHING ? undefined : result;\n }\n }, {\n key: \"setAutoFreeze\",\n value: function setAutoFreeze(value) {\n this.autoFreeze = value;\n }\n }, {\n key: \"setUseProxies\",\n value: function setUseProxies(value) {\n this.useProxies = value;\n assign(this, value ? modernProxy : legacyProxy);\n }\n }, {\n key: \"applyPatches\",\n value: function applyPatches$$1(base, patches) {\n // Mutate the base state when a draft is passed.\n if (isDraft(base)) {\n return applyPatches(base, patches);\n }\n // Otherwise, produce a copy of the base state.\n return this.produce(base, function (draft) {\n return applyPatches(draft, patches);\n });\n }\n /**\n * @internal\n * Finalize a draft, returning either the unmodified base state or a modified\n * copy of the base state.\n */\n\n }, {\n key: \"finalize\",\n value: function finalize(draft, path, patches, inversePatches) {\n var _this2 = this;\n\n var state = draft[DRAFT_STATE];\n if (!state) {\n if (Object.isFrozen(draft)) return draft;\n return this.finalizeTree(draft);\n }\n // Never finalize drafts owned by an outer scope.\n if (state.scope !== this.currentScope()) {\n return draft;\n }\n if (!state.modified) return state.base;\n if (!state.finalized) {\n state.finalized = true;\n this.finalizeTree(state.draft, path, patches, inversePatches);\n if (this.onDelete) {\n // The `assigned` object is unreliable with ES5 drafts.\n if (this.useProxies) {\n var assigned = state.assigned;\n\n for (var prop in assigned) {\n if (!assigned[prop]) this.onDelete(state, prop);\n }\n } else {\n var base = state.base,\n copy = state.copy;\n\n each(base, function (prop) {\n if (!has(copy, prop)) _this2.onDelete(state, prop);\n });\n }\n }\n if (this.onCopy) this.onCopy(state);\n\n // Nested producers must never auto-freeze their result,\n // because it may contain drafts from parent producers.\n if (this.autoFreeze && this.scopes.length === 1) {\n Object.freeze(state.copy);\n }\n\n if (patches) generatePatches(state, path, patches, inversePatches);\n }\n return state.copy;\n }\n /**\n * @internal\n * Finalize all drafts in the given state tree.\n */\n\n }, {\n key: \"finalizeTree\",\n value: function finalizeTree(root, path, patches, inversePatches) {\n var _this3 = this;\n\n var state = root[DRAFT_STATE];\n if (state) {\n if (!this.useProxies) {\n state.finalizing = true;\n state.copy = shallowCopy(state.draft, true);\n state.finalizing = false;\n }\n root = state.copy;\n }\n\n var onAssign = this.onAssign;\n\n var finalizeProperty = function finalizeProperty(prop, value, parent) {\n if (value === parent) {\n throw Error(\"Immer forbids circular references\");\n }\n\n // The only possible draft (in the scope of a `finalizeTree` call) is the `root` object.\n var inDraft = !!state && parent === root;\n\n if (isDraft(value)) {\n value =\n // Patches are never generated for assigned properties.\n patches && inDraft && !state.assigned[prop] ? _this3.finalize(value, path.concat(prop), patches, inversePatches) // prettier-ignore\n : _this3.finalize(value);\n\n // Preserve non-enumerable properties.\n if (Array.isArray(parent) || isEnumerable(parent, prop)) {\n parent[prop] = value;\n } else {\n Object.defineProperty(parent, prop, { value: value });\n }\n\n // Unchanged drafts are never passed to the `onAssign` hook.\n if (inDraft && value === state.base[prop]) return;\n }\n // Unchanged draft properties are ignored.\n else if (inDraft && is(value, state.base[prop])) {\n return;\n }\n // Search new objects for unfinalized drafts. Frozen objects should never contain drafts.\n else if (isDraftable(value) && !Object.isFrozen(value)) {\n each(value, finalizeProperty);\n }\n\n if (inDraft && onAssign) {\n onAssign(state, prop, value);\n }\n };\n\n each(root, finalizeProperty);\n return root;\n }\n }]);\n return Immer;\n}();\n\nvar immer = new Immer();\n\n/**\n * The `produce` function takes a value and a \"recipe function\" (whose\n * return value often depends on the base state). The recipe function is\n * free to mutate its first argument however it wants. All mutations are\n * only ever applied to a __copy__ of the base state.\n *\n * Pass only a function to create a \"curried producer\" which relieves you\n * from passing the recipe function every time.\n *\n * Only plain objects and arrays are made mutable. All other objects are\n * considered uncopyable.\n *\n * Note: This function is __bound__ to its `Immer` instance.\n *\n * @param {any} base - the initial state\n * @param {Function} producer - function that receives a proxy of the base state as first argument and which can be freely modified\n * @param {Function} patchListener - optional function that will be called with all the patches produced here\n * @returns {any} a new state, or the initial state if nothing was modified\n */\nvar produce = immer.produce;\n/**\n * Pass true to automatically freeze all copies created by Immer.\n *\n * By default, auto-freezing is disabled in production.\n */\nvar setAutoFreeze = immer.setAutoFreeze.bind(immer);\n\n/**\n * Pass true to use the ES2015 `Proxy` class when creating drafts, which is\n * always faster than using ES5 proxies.\n *\n * By default, feature detection is used, so calling this is rarely necessary.\n */\nvar setUseProxies = immer.setUseProxies.bind(immer);\n\n/**\n * Apply an array of Immer patches to the first argument.\n *\n * This function is a producer, which means copy-on-write is in effect.\n */\nvar applyPatches$1 = immer.applyPatches.bind(immer);\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (produce);\n//# sourceMappingURL=immer.module.js.map\n\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../process/browser.js */ \"./node_modules/process/browser.js\")))\n\n//# sourceURL=webpack:///./node_modules/immer/dist/immer.module.js?");
/***/ }),
/***/ "./node_modules/invariant/browser.js":
/*!*******************************************!*\
!*** ./node_modules/invariant/browser.js ***!
\*******************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
eval("/**\n * Copyright (c) 2013-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\n\n\n/**\n * Use invariant() to assert state which your program assumes to be true.\n *\n * Provide sprintf-style format (only %s is supported) and arguments\n * to provide information about what broke and what you were\n * expecting.\n *\n * The invariant message will be stripped in production, but the invariant\n * will remain to ensure logic does not differ in production.\n */\n\nvar invariant = function(condition, format, a, b, c, d, e, f) {\n if (true) {\n if (format === undefined) {\n throw new Error('invariant requires an error message argument');\n }\n }\n\n if (!condition) {\n var error;\n if (format === undefined) {\n error = new Error(\n 'Minified exception occurred; use the non-minified dev environment ' +\n 'for the full error message and additional helpful warnings.'\n );\n } else {\n var args = [a, b, c, d, e, f];\n var argIndex = 0;\n error = new Error(\n format.replace(/%s/g, function() { return args[argIndex++]; })\n );\n error.name = 'Invariant Violation';\n }\n\n error.framesToPop = 1; // we don't care about invariant's own frame\n throw error;\n }\n};\n\nmodule.exports = invariant;\n\n\n//# sourceURL=webpack:///./node_modules/invariant/browser.js?");
/***/ }),
/***/ "./node_modules/object-assign/index.js":
/*!*********************************************!*\
!*** ./node_modules/object-assign/index.js ***!
\*********************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
eval("/*\nobject-assign\n(c) Sindre Sorhus\n@license MIT\n*/\n\n\n/* eslint-disable no-unused-vars */\nvar getOwnPropertySymbols = Object.getOwnPropertySymbols;\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nvar propIsEnumerable = Object.prototype.propertyIsEnumerable;\n\nfunction toObject(val) {\n\tif (val === null || val === undefined) {\n\t\tthrow new TypeError('Object.assign cannot be called with null or undefined');\n\t}\n\n\treturn Object(val);\n}\n\nfunction shouldUseNative() {\n\ttry {\n\t\tif (!Object.assign) {\n\t\t\treturn false;\n\t\t}\n\n\t\t// Detect buggy property enumeration order in older V8 versions.\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=4118\n\t\tvar test1 = new String('abc'); // eslint-disable-line no-new-wrappers\n\t\ttest1[5] = 'de';\n\t\tif (Object.getOwnPropertyNames(test1)[0] === '5') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test2 = {};\n\t\tfor (var i = 0; i < 10; i++) {\n\t\t\ttest2['_' + String.fromCharCode(i)] = i;\n\t\t}\n\t\tvar order2 = Object.getOwnPropertyNames(test2).map(function (n) {\n\t\t\treturn test2[n];\n\t\t});\n\t\tif (order2.join('') !== '0123456789') {\n\t\t\treturn false;\n\t\t}\n\n\t\t// https://bugs.chromium.org/p/v8/issues/detail?id=3056\n\t\tvar test3 = {};\n\t\t'abcdefghijklmnopqrst'.split('').forEach(function (letter) {\n\t\t\ttest3[letter] = letter;\n\t\t});\n\t\tif (Object.keys(Object.assign({}, test3)).join('') !==\n\t\t\t\t'abcdefghijklmnopqrst') {\n\t\t\treturn false;\n\t\t}\n\n\t\treturn true;\n\t} catch (err) {\n\t\t// We don't expect any of the above to throw, but better to be safe.\n\t\treturn false;\n\t}\n}\n\nmodule.exports = shouldUseNative() ? Object.assign : function (target, source) {\n\tvar from;\n\tvar to = toObject(target);\n\tvar symbols;\n\n\tfor (var s = 1; s < arguments.length; s++) {\n\t\tfrom = Object(arguments[s]);\n\n\t\tfor (var key in from) {\n\t\t\tif (hasOwnProperty.call(from, key)) {\n\t\t\t\tto[key] = from[key];\n\t\t\t}\n\t\t}\n\n\t\tif (getOwnPropertySymbols) {\n\t\t\tsymbols = getOwnPropertySymbols(from);\n\t\t\tfor (var i = 0; i < symbols.length; i++) {\n\t\t\t\tif (propIsEnumerable.call(from, symbols[i])) {\n\t\t\t\t\tto[symbols[i]] = from[symbols[i]];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn to;\n};\n\n\n//# sourceURL=webpack:///./node_modules/object-assign/index.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ActivityItem.js":
/*!*****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ActivityItem.js ***!
\*****************************************************************/
/*! exports provided: ActivityItem */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ActivityItem_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ActivityItem/index */ \"./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActivityItem\", function() { return _components_ActivityItem_index__WEBPACK_IMPORTED_MODULE_0__[\"ActivityItem\"]; });\n\n\r\n//# sourceMappingURL=ActivityItem.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ActivityItem.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Autofill.js":
/*!*************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Autofill.js ***!
\*************************************************************/
/*! exports provided: Autofill, BaseAutoFill */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Autofill_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Autofill/index */ \"./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Autofill\", function() { return _components_Autofill_index__WEBPACK_IMPORTED_MODULE_0__[\"Autofill\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseAutoFill\", function() { return _components_Autofill_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseAutoFill\"]; });\n\n\r\n//# sourceMappingURL=Autofill.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Autofill.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Breadcrumb.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Breadcrumb.js ***!
\***************************************************************/
/*! exports provided: Breadcrumb, BreadcrumbBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Breadcrumb_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Breadcrumb/index */ \"./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Breadcrumb\", function() { return _components_Breadcrumb_index__WEBPACK_IMPORTED_MODULE_0__[\"Breadcrumb\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BreadcrumbBase\", function() { return _components_Breadcrumb_index__WEBPACK_IMPORTED_MODULE_0__[\"BreadcrumbBase\"]; });\n\n\r\n//# sourceMappingURL=Breadcrumb.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Breadcrumb.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Button.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Button.js ***!
\***********************************************************/
/*! exports provided: BaseButton, ElementType, ButtonType, Button, ActionButton, CommandBarButton, CommandButton, CompoundButton, DefaultButton, MessageBarButton, PrimaryButton, IconButton */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Button_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Button/index */ \"./node_modules/office-ui-fabric-react/lib/components/Button/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ElementType\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"ElementType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ButtonType\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"ButtonType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Button\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"Button\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActionButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"ActionButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommandBarButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"CommandBarButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommandButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"CommandButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompoundButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"CompoundButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"DefaultButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageBarButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"MessageBarButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PrimaryButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"PrimaryButton\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IconButton\", function() { return _components_Button_index__WEBPACK_IMPORTED_MODULE_0__[\"IconButton\"]; });\n\n\r\n//# sourceMappingURL=Button.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Button.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Calendar.js":
/*!*************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Calendar.js ***!
\*************************************************************/
/*! exports provided: Calendar, DayOfWeek, DateRangeType, FirstWeekOfYear */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Calendar_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Calendar/index */ \"./node_modules/office-ui-fabric-react/lib/components/Calendar/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Calendar\", function() { return _components_Calendar_index__WEBPACK_IMPORTED_MODULE_0__[\"Calendar\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DayOfWeek\", function() { return _components_Calendar_index__WEBPACK_IMPORTED_MODULE_0__[\"DayOfWeek\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DateRangeType\", function() { return _components_Calendar_index__WEBPACK_IMPORTED_MODULE_0__[\"DateRangeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FirstWeekOfYear\", function() { return _components_Calendar_index__WEBPACK_IMPORTED_MODULE_0__[\"FirstWeekOfYear\"]; });\n\n\r\n//# sourceMappingURL=Calendar.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Calendar.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Callout.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Callout.js ***!
\************************************************************/
/*! exports provided: Callout, FocusTrapCallout, DirectionalHint */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Callout_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Callout/index */ \"./node_modules/office-ui-fabric-react/lib/components/Callout/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Callout\", function() { return _components_Callout_index__WEBPACK_IMPORTED_MODULE_0__[\"Callout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FocusTrapCallout\", function() { return _components_Callout_index__WEBPACK_IMPORTED_MODULE_0__[\"FocusTrapCallout\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectionalHint\", function() { return _components_Callout_index__WEBPACK_IMPORTED_MODULE_0__[\"DirectionalHint\"]; });\n\n\r\n//# sourceMappingURL=Callout.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Callout.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Check.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Check.js ***!
\**********************************************************/
/*! exports provided: Check, CheckBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Check_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Check/index */ \"./node_modules/office-ui-fabric-react/lib/components/Check/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Check\", function() { return _components_Check_index__WEBPACK_IMPORTED_MODULE_0__[\"Check\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CheckBase\", function() { return _components_Check_index__WEBPACK_IMPORTED_MODULE_0__[\"CheckBase\"]; });\n\n\r\n//# sourceMappingURL=Check.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Check.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Checkbox.js":
/*!*************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Checkbox.js ***!
\*************************************************************/
/*! exports provided: Checkbox, CheckboxBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Checkbox_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Checkbox/index */ \"./node_modules/office-ui-fabric-react/lib/components/Checkbox/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Checkbox\", function() { return _components_Checkbox_index__WEBPACK_IMPORTED_MODULE_0__[\"Checkbox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CheckboxBase\", function() { return _components_Checkbox_index__WEBPACK_IMPORTED_MODULE_0__[\"CheckboxBase\"]; });\n\n\r\n//# sourceMappingURL=Checkbox.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Checkbox.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js ***!
\****************************************************************/
/*! exports provided: ChoiceGroup, ChoiceGroupBase, ChoiceGroupOption */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ChoiceGroup_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ChoiceGroup/index */ \"./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChoiceGroup\", function() { return _components_ChoiceGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"ChoiceGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChoiceGroupBase\", function() { return _components_ChoiceGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"ChoiceGroupBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChoiceGroupOption\", function() { return _components_ChoiceGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"ChoiceGroupOption\"]; });\n\n\r\n//# sourceMappingURL=ChoiceGroup.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ChoiceGroup.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ChoiceGroupOption.js":
/*!**********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ChoiceGroupOption.js ***!
\**********************************************************************/
/*! exports provided: ChoiceGroupOption */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ChoiceGroup_ChoiceGroupOption_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ChoiceGroup/ChoiceGroupOption/index */ \"./node_modules/office-ui-fabric-react/lib/components/ChoiceGroup/ChoiceGroupOption/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ChoiceGroupOption\", function() { return _components_ChoiceGroup_ChoiceGroupOption_index__WEBPACK_IMPORTED_MODULE_0__[\"ChoiceGroupOption\"]; });\n\n\r\n//# sourceMappingURL=ChoiceGroupOption.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ChoiceGroupOption.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Coachmark.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Coachmark.js ***!
\**************************************************************/
/*! exports provided: Coachmark, COACHMARK_ATTRIBUTE_NAME, CoachmarkBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Coachmark_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Coachmark/index */ \"./node_modules/office-ui-fabric-react/lib/components/Coachmark/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Coachmark\", function() { return _components_Coachmark_index__WEBPACK_IMPORTED_MODULE_0__[\"Coachmark\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"COACHMARK_ATTRIBUTE_NAME\", function() { return _components_Coachmark_index__WEBPACK_IMPORTED_MODULE_0__[\"COACHMARK_ATTRIBUTE_NAME\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CoachmarkBase\", function() { return _components_Coachmark_index__WEBPACK_IMPORTED_MODULE_0__[\"CoachmarkBase\"]; });\n\n\r\n//# sourceMappingURL=Coachmark.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Coachmark.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Color.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Color.js ***!
\**********************************************************/
/*! exports provided: MAX_COLOR_SATURATION, MAX_COLOR_HUE, MAX_COLOR_VALUE, MAX_COLOR_RGB, MAX_COLOR_RGBA, MAX_COLOR_ALPHA, cssColor, rgb2hex, hsv2hex, rgb2hsv, hsl2hsv, hsv2hsl, hsl2rgb, hsv2rgb, getColorFromString, getColorFromRGBA, getColorFromHSV, getFullColorString, updateSV, updateH, updateRGB, updateA, correctRGB, correctHSV, clamp, Shade, isValidShade, isDark, getShade, getBackgroundShade, getContrastRatio */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utilities/color/index */ \"./node_modules/office-ui-fabric-react/lib/utilities/color/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MAX_COLOR_SATURATION\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"MAX_COLOR_SATURATION\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MAX_COLOR_HUE\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"MAX_COLOR_HUE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MAX_COLOR_VALUE\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"MAX_COLOR_VALUE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MAX_COLOR_RGB\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"MAX_COLOR_RGB\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MAX_COLOR_RGBA\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"MAX_COLOR_RGBA\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MAX_COLOR_ALPHA\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"MAX_COLOR_ALPHA\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"cssColor\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"cssColor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"rgb2hex\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"rgb2hex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hsv2hex\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"hsv2hex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"rgb2hsv\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"rgb2hsv\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hsl2hsv\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"hsl2hsv\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hsv2hsl\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"hsv2hsl\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hsl2rgb\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"hsl2rgb\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hsv2rgb\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"hsv2rgb\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getColorFromString\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getColorFromString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getColorFromRGBA\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getColorFromRGBA\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getColorFromHSV\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getColorFromHSV\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFullColorString\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getFullColorString\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"updateSV\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"updateSV\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"updateH\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"updateH\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"updateRGB\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"updateRGB\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"updateA\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"updateA\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"correctRGB\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"correctRGB\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"correctHSV\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"correctHSV\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"clamp\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"clamp\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shade\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"Shade\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isValidShade\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"isValidShade\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDark\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"isDark\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getShade\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getShade\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getBackgroundShade\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getBackgroundShade\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getContrastRatio\", function() { return _utilities_color_index__WEBPACK_IMPORTED_MODULE_0__[\"getContrastRatio\"]; });\n\n\r\n//# sourceMappingURL=Color.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Color.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ColorPicker.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ColorPicker.js ***!
\****************************************************************/
/*! exports provided: ColorPicker, ColorPickerBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ColorPicker_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ColorPicker/index */ \"./node_modules/office-ui-fabric-react/lib/components/ColorPicker/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorPicker\", function() { return _components_ColorPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"ColorPicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorPickerBase\", function() { return _components_ColorPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"ColorPickerBase\"]; });\n\n\r\n//# sourceMappingURL=ColorPicker.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ColorPicker.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ComboBox.js":
/*!*************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ComboBox.js ***!
\*************************************************************/
/*! exports provided: SelectableOptionMenuItemType, ComboBox, VirtualizedComboBox */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ComboBox_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ComboBox/index */ \"./node_modules/office-ui-fabric-react/lib/components/ComboBox/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectableOptionMenuItemType\", function() { return _components_ComboBox_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectableOptionMenuItemType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ComboBox\", function() { return _components_ComboBox_index__WEBPACK_IMPORTED_MODULE_0__[\"ComboBox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VirtualizedComboBox\", function() { return _components_ComboBox_index__WEBPACK_IMPORTED_MODULE_0__[\"VirtualizedComboBox\"]; });\n\n\r\n//# sourceMappingURL=ComboBox.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ComboBox.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/CommandBar.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/CommandBar.js ***!
\***************************************************************/
/*! exports provided: CommandBar, CommandBarBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_CommandBar_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/CommandBar/index */ \"./node_modules/office-ui-fabric-react/lib/components/CommandBar/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommandBar\", function() { return _components_CommandBar_index__WEBPACK_IMPORTED_MODULE_0__[\"CommandBar\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CommandBarBase\", function() { return _components_CommandBar_index__WEBPACK_IMPORTED_MODULE_0__[\"CommandBarBase\"]; });\n\n\r\n//# sourceMappingURL=CommandBar.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/CommandBar.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ContextualMenu.js":
/*!*******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ContextualMenu.js ***!
\*******************************************************************/
/*! exports provided: ContextualMenu, getSubmenuItems, canAnyMenuItemsCheck, ContextualMenuBase, DirectionalHint, ContextualMenuItemType, ContextualMenuItem, ContextualMenuItemBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ContextualMenu/index */ \"./node_modules/office-ui-fabric-react/lib/components/ContextualMenu/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContextualMenu\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"ContextualMenu\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSubmenuItems\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"getSubmenuItems\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"canAnyMenuItemsCheck\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"canAnyMenuItemsCheck\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContextualMenuBase\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"ContextualMenuBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectionalHint\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"DirectionalHint\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContextualMenuItemType\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"ContextualMenuItemType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContextualMenuItem\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"ContextualMenuItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ContextualMenuItemBase\", function() { return _components_ContextualMenu_index__WEBPACK_IMPORTED_MODULE_0__[\"ContextualMenuItemBase\"]; });\n\n\r\n//# sourceMappingURL=ContextualMenu.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ContextualMenu.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/DatePicker.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/DatePicker.js ***!
\***************************************************************/
/*! exports provided: DatePicker, DatePickerBase, DayOfWeek, DateRangeType, FirstWeekOfYear */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_DatePicker_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/DatePicker/index */ \"./node_modules/office-ui-fabric-react/lib/components/DatePicker/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DatePicker\", function() { return _components_DatePicker_index__WEBPACK_IMPORTED_MODULE_0__[\"DatePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DatePickerBase\", function() { return _components_DatePicker_index__WEBPACK_IMPORTED_MODULE_0__[\"DatePickerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DayOfWeek\", function() { return _components_DatePicker_index__WEBPACK_IMPORTED_MODULE_0__[\"DayOfWeek\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DateRangeType\", function() { return _components_DatePicker_index__WEBPACK_IMPORTED_MODULE_0__[\"DateRangeType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FirstWeekOfYear\", function() { return _components_DatePicker_index__WEBPACK_IMPORTED_MODULE_0__[\"FirstWeekOfYear\"]; });\n\n\r\n//# sourceMappingURL=DatePicker.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/DatePicker.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/DetailsList.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/DetailsList.js ***!
\****************************************************************/
/*! exports provided: SELECTION_CHANGE, SelectionMode, SelectionDirection, Selection, SelectionZone, CollapseAllVisibility, DetailsList, DetailsListBase, buildColumns, ColumnActionsMode, ConstrainMode, ColumnDragEndLocation, DetailsListLayoutMode, CheckboxVisibility, DetailsRow, DetailsRowBase, DetailsRowCheck */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/DetailsList/index */ \"./node_modules/office-ui-fabric-react/lib/components/DetailsList/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SELECTION_CHANGE\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"SELECTION_CHANGE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionMode\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionDirection\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectionDirection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Selection\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"Selection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionZone\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectionZone\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CollapseAllVisibility\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"CollapseAllVisibility\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetailsList\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"DetailsList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetailsListBase\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"DetailsListBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildColumns\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"buildColumns\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColumnActionsMode\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"ColumnActionsMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ConstrainMode\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"ConstrainMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColumnDragEndLocation\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"ColumnDragEndLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetailsListLayoutMode\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"DetailsListLayoutMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CheckboxVisibility\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"CheckboxVisibility\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetailsRow\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"DetailsRow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetailsRowBase\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"DetailsRowBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DetailsRowCheck\", function() { return _components_DetailsList_index__WEBPACK_IMPORTED_MODULE_0__[\"DetailsRowCheck\"]; });\n\n\r\n//# sourceMappingURL=DetailsList.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/DetailsList.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Dialog.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Dialog.js ***!
\***********************************************************/
/*! exports provided: default, Dialog, DialogBase, DialogContent, DialogContentBase, DialogFooter, DialogFooterBase, DialogType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Dialog/index */ \"./node_modules/office-ui-fabric-react/lib/components/Dialog/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Dialog\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"Dialog\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogBase\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"DialogBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogContent\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"DialogContent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogContentBase\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"DialogContentBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogFooter\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"DialogFooter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogFooterBase\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"DialogFooterBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DialogType\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"DialogType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _components_Dialog_index__WEBPACK_IMPORTED_MODULE_0__[\"Dialog\"]; });\n\n\r\n\r\n//# sourceMappingURL=Dialog.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Dialog.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Divider.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Divider.js ***!
\************************************************************/
/*! exports provided: VerticalDivider */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Divider_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Divider/index */ \"./node_modules/office-ui-fabric-react/lib/components/Divider/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"VerticalDivider\", function() { return _components_Divider_index__WEBPACK_IMPORTED_MODULE_0__[\"VerticalDivider\"]; });\n\n\r\n//# sourceMappingURL=Divider.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Divider.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/DocumentCard.js":
/*!*****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/DocumentCard.js ***!
\*****************************************************************/
/*! exports provided: DocumentCard, DocumentCardType, DocumentCardActions, DocumentCardActivity, DocumentCardDetails, DocumentCardLocation, DocumentCardPreview, DocumentCardImage, DocumentCardTitle, DocumentCardLogo, DocumentCardStatus */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/DocumentCard/index */ \"./node_modules/office-ui-fabric-react/lib/components/DocumentCard/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCard\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardType\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardActions\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardActions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardActivity\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardActivity\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardDetails\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardDetails\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardLocation\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardLocation\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardPreview\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardPreview\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardImage\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardImage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardTitle\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardTitle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardLogo\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardLogo\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DocumentCardStatus\", function() { return _components_DocumentCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DocumentCardStatus\"]; });\n\n\r\n//# sourceMappingURL=DocumentCard.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/DocumentCard.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Dropdown.js":
/*!*************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Dropdown.js ***!
\*************************************************************/
/*! exports provided: Dropdown, DropdownBase, DropdownMenuItemType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Dropdown_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Dropdown/index */ \"./node_modules/office-ui-fabric-react/lib/components/Dropdown/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Dropdown\", function() { return _components_Dropdown_index__WEBPACK_IMPORTED_MODULE_0__[\"Dropdown\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DropdownBase\", function() { return _components_Dropdown_index__WEBPACK_IMPORTED_MODULE_0__[\"DropdownBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DropdownMenuItemType\", function() { return _components_Dropdown_index__WEBPACK_IMPORTED_MODULE_0__[\"DropdownMenuItemType\"]; });\n\n\r\n//# sourceMappingURL=Dropdown.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Dropdown.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ExtendedPicker.js":
/*!*******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ExtendedPicker.js ***!
\*******************************************************************/
/*! exports provided: BaseExtendedPicker, BaseExtendedPeoplePicker, ExtendedPeoplePicker, people, mru, groupOne, groupTwo */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ExtendedPicker/index */ \"./node_modules/office-ui-fabric-react/lib/components/ExtendedPicker/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseExtendedPicker\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseExtendedPicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseExtendedPeoplePicker\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseExtendedPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedPeoplePicker\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"ExtendedPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"people\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"people\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mru\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"mru\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"groupOne\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"groupOne\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"groupTwo\", function() { return _components_ExtendedPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"groupTwo\"]; });\n\n\r\n//# sourceMappingURL=ExtendedPicker.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ExtendedPicker.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Fabric.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Fabric.js ***!
\***********************************************************/
/*! exports provided: Fabric, FabricBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Fabric_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Fabric/index */ \"./node_modules/office-ui-fabric-react/lib/components/Fabric/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Fabric\", function() { return _components_Fabric_index__WEBPACK_IMPORTED_MODULE_0__[\"Fabric\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FabricBase\", function() { return _components_Fabric_index__WEBPACK_IMPORTED_MODULE_0__[\"FabricBase\"]; });\n\n\r\n//# sourceMappingURL=Fabric.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Fabric.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Facepile.js":
/*!*************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Facepile.js ***!
\*************************************************************/
/*! exports provided: OverflowButtonType, FacepileBase, Facepile */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Facepile_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Facepile/index */ \"./node_modules/office-ui-fabric-react/lib/components/Facepile/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OverflowButtonType\", function() { return _components_Facepile_index__WEBPACK_IMPORTED_MODULE_0__[\"OverflowButtonType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FacepileBase\", function() { return _components_Facepile_index__WEBPACK_IMPORTED_MODULE_0__[\"FacepileBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Facepile\", function() { return _components_Facepile_index__WEBPACK_IMPORTED_MODULE_0__[\"Facepile\"]; });\n\n\r\n//# sourceMappingURL=Facepile.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Facepile.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/FloatingPicker.js":
/*!*******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/FloatingPicker.js ***!
\*******************************************************************/
/*! exports provided: BaseFloatingPicker, BaseFloatingPeoplePicker, FloatingPeoplePicker, createItem, SuggestionsStore, SuggestionItemType, SuggestionsHeaderFooterItem, SuggestionsControl, SuggestionsCore */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/FloatingPicker/index */ \"./node_modules/office-ui-fabric-react/lib/components/FloatingPicker/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseFloatingPicker\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseFloatingPicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseFloatingPeoplePicker\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseFloatingPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FloatingPeoplePicker\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"FloatingPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createItem\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"createItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionsStore\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionsStore\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionItemType\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionItemType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionsHeaderFooterItem\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionsHeaderFooterItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionsControl\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionsControl\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionsCore\", function() { return _components_FloatingPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionsCore\"]; });\n\n\r\n//# sourceMappingURL=FloatingPicker.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/FloatingPicker.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js":
/*!******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js ***!
\******************************************************************/
/*! exports provided: FocusTrapZone */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_FocusTrapZone_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/FocusTrapZone/index */ \"./node_modules/office-ui-fabric-react/lib/components/FocusTrapZone/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FocusTrapZone\", function() { return _components_FocusTrapZone_index__WEBPACK_IMPORTED_MODULE_0__[\"FocusTrapZone\"]; });\n\n\r\n//# sourceMappingURL=FocusTrapZone.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/FocusTrapZone.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/FocusZone.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/FocusZone.js ***!
\**************************************************************/
/*! exports provided: FocusZone, FocusZoneTabbableElements, FocusZoneDirection */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_FocusZone_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/FocusZone/index */ \"./node_modules/office-ui-fabric-react/lib/components/FocusZone/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FocusZone\", function() { return _components_FocusZone_index__WEBPACK_IMPORTED_MODULE_0__[\"FocusZone\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FocusZoneTabbableElements\", function() { return _components_FocusZone_index__WEBPACK_IMPORTED_MODULE_0__[\"FocusZoneTabbableElements\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FocusZoneDirection\", function() { return _components_FocusZone_index__WEBPACK_IMPORTED_MODULE_0__[\"FocusZoneDirection\"]; });\n\n\r\n//# sourceMappingURL=FocusZone.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/FocusZone.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Foundation.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Foundation.js ***!
\***************************************************************/
/*! exports provided: createComponent, withSlots, createFactory, getSlots, ThemeProvider */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_foundation__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/foundation */ \"./node_modules/@uifabric/foundation/lib/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createComponent\", function() { return _uifabric_foundation__WEBPACK_IMPORTED_MODULE_0__[\"createComponent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"withSlots\", function() { return _uifabric_foundation__WEBPACK_IMPORTED_MODULE_0__[\"withSlots\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createFactory\", function() { return _uifabric_foundation__WEBPACK_IMPORTED_MODULE_0__[\"createFactory\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getSlots\", function() { return _uifabric_foundation__WEBPACK_IMPORTED_MODULE_0__[\"getSlots\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThemeProvider\", function() { return _uifabric_foundation__WEBPACK_IMPORTED_MODULE_0__[\"ThemeProvider\"]; });\n\n\r\n//# sourceMappingURL=Foundation.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Foundation.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Grid.js":
/*!*********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Grid.js ***!
\*********************************************************/
/*! exports provided: Grid, GridCell */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utilities_grid_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utilities/grid/index */ \"./node_modules/office-ui-fabric-react/lib/utilities/grid/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Grid\", function() { return _utilities_grid_index__WEBPACK_IMPORTED_MODULE_0__[\"Grid\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GridCell\", function() { return _utilities_grid_index__WEBPACK_IMPORTED_MODULE_0__[\"GridCell\"]; });\n\n\r\n//# sourceMappingURL=Grid.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Grid.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/GroupedList.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/GroupedList.js ***!
\****************************************************************/
/*! exports provided: CollapseAllVisibility, GroupSpacer, GroupedList, GroupedListBase, GroupHeader, GroupFooter, GroupShowAll */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/GroupedList/index */ \"./node_modules/office-ui-fabric-react/lib/components/GroupedList/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CollapseAllVisibility\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"CollapseAllVisibility\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroupSpacer\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"GroupSpacer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroupedList\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"GroupedList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroupedListBase\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"GroupedListBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroupHeader\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"GroupHeader\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroupFooter\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"GroupFooter\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GroupShowAll\", function() { return _components_GroupedList_index__WEBPACK_IMPORTED_MODULE_0__[\"GroupShowAll\"]; });\n\n\r\n//# sourceMappingURL=GroupedList.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/GroupedList.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/HoverCard.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/HoverCard.js ***!
\**************************************************************/
/*! exports provided: DirectionalHint, HoverCard, HoverCardBase, OpenCardMode, HoverCardType, ExpandingCard, ExpandingCardBase, ExpandingCardMode, PlainCard, PlainCardBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/HoverCard/index */ \"./node_modules/office-ui-fabric-react/lib/components/HoverCard/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectionalHint\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"DirectionalHint\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HoverCard\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"HoverCard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HoverCardBase\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"HoverCardBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OpenCardMode\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"OpenCardMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HoverCardType\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"HoverCardType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpandingCard\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"ExpandingCard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpandingCardBase\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"ExpandingCardBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExpandingCardMode\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"ExpandingCardMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlainCard\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"PlainCard\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PlainCardBase\", function() { return _components_HoverCard_index__WEBPACK_IMPORTED_MODULE_0__[\"PlainCardBase\"]; });\n\n\r\n//# sourceMappingURL=HoverCard.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/HoverCard.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Icon.js":
/*!*********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Icon.js ***!
\*********************************************************/
/*! exports provided: Icon, IconBase, IconType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Icon_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Icon/index */ \"./node_modules/office-ui-fabric-react/lib/components/Icon/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Icon\", function() { return _components_Icon_index__WEBPACK_IMPORTED_MODULE_0__[\"Icon\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IconBase\", function() { return _components_Icon_index__WEBPACK_IMPORTED_MODULE_0__[\"IconBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IconType\", function() { return _components_Icon_index__WEBPACK_IMPORTED_MODULE_0__[\"IconType\"]; });\n\n\r\n//# sourceMappingURL=Icon.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Icon.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Icons.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Icons.js ***!
\**********************************************************/
/*! exports provided: initializeIcons */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _uifabric_icons__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @uifabric/icons */ \"./node_modules/@uifabric/icons/lib/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"initializeIcons\", function() { return _uifabric_icons__WEBPACK_IMPORTED_MODULE_0__[\"initializeIcons\"]; });\n\n\r\n//# sourceMappingURL=Icons.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Icons.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Image.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Image.js ***!
\**********************************************************/
/*! exports provided: Image, ImageFit, ImageCoverStyle, ImageLoadState, ImageBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Image_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Image/index */ \"./node_modules/office-ui-fabric-react/lib/components/Image/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Image\", function() { return _components_Image_index__WEBPACK_IMPORTED_MODULE_0__[\"Image\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageFit\", function() { return _components_Image_index__WEBPACK_IMPORTED_MODULE_0__[\"ImageFit\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageCoverStyle\", function() { return _components_Image_index__WEBPACK_IMPORTED_MODULE_0__[\"ImageCoverStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageLoadState\", function() { return _components_Image_index__WEBPACK_IMPORTED_MODULE_0__[\"ImageLoadState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ImageBase\", function() { return _components_Image_index__WEBPACK_IMPORTED_MODULE_0__[\"ImageBase\"]; });\n\n\r\n//# sourceMappingURL=Image.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Image.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Keytip.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Keytip.js ***!
\***********************************************************/
/*! exports provided: Keytip */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Keytip_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Keytip/index */ \"./node_modules/office-ui-fabric-react/lib/components/Keytip/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Keytip\", function() { return _components_Keytip_index__WEBPACK_IMPORTED_MODULE_0__[\"Keytip\"]; });\n\n\r\n//# sourceMappingURL=Keytip.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Keytip.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/KeytipData.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/KeytipData.js ***!
\***************************************************************/
/*! exports provided: KeytipData */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_KeytipData_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/KeytipData/index */ \"./node_modules/office-ui-fabric-react/lib/components/KeytipData/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeytipData\", function() { return _components_KeytipData_index__WEBPACK_IMPORTED_MODULE_0__[\"KeytipData\"]; });\n\n\r\n//# sourceMappingURL=KeytipData.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/KeytipData.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/KeytipLayer.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/KeytipLayer.js ***!
\****************************************************************/
/*! exports provided: KeytipLayer, KeytipLayerBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_KeytipLayer_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/KeytipLayer/index */ \"./node_modules/office-ui-fabric-react/lib/components/KeytipLayer/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeytipLayer\", function() { return _components_KeytipLayer_index__WEBPACK_IMPORTED_MODULE_0__[\"KeytipLayer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeytipLayerBase\", function() { return _components_KeytipLayer_index__WEBPACK_IMPORTED_MODULE_0__[\"KeytipLayerBase\"]; });\n\n\r\n//# sourceMappingURL=KeytipLayer.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/KeytipLayer.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Label.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Label.js ***!
\**********************************************************/
/*! exports provided: LabelBase, Label */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Label_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Label/index */ \"./node_modules/office-ui-fabric-react/lib/components/Label/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LabelBase\", function() { return _components_Label_index__WEBPACK_IMPORTED_MODULE_0__[\"LabelBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Label\", function() { return _components_Label_index__WEBPACK_IMPORTED_MODULE_0__[\"Label\"]; });\n\n\r\n//# sourceMappingURL=Label.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Label.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Layer.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Layer.js ***!
\**********************************************************/
/*! exports provided: Layer, LayerBase, LayerHost */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./version */ \"./node_modules/office-ui-fabric-react/lib/version.js\");\n/* harmony import */ var _components_Layer_index__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./components/Layer/index */ \"./node_modules/office-ui-fabric-react/lib/components/Layer/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Layer\", function() { return _components_Layer_index__WEBPACK_IMPORTED_MODULE_1__[\"Layer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LayerBase\", function() { return _components_Layer_index__WEBPACK_IMPORTED_MODULE_1__[\"LayerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LayerHost\", function() { return _components_Layer_index__WEBPACK_IMPORTED_MODULE_1__[\"LayerHost\"]; });\n\n\r\n\r\n//# sourceMappingURL=Layer.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Layer.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Link.js":
/*!*********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Link.js ***!
\*********************************************************/
/*! exports provided: Link, LinkBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Link_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Link/index */ \"./node_modules/office-ui-fabric-react/lib/components/Link/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Link\", function() { return _components_Link_index__WEBPACK_IMPORTED_MODULE_0__[\"Link\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"LinkBase\", function() { return _components_Link_index__WEBPACK_IMPORTED_MODULE_0__[\"LinkBase\"]; });\n\n\r\n//# sourceMappingURL=Link.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Link.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/List.js":
/*!*********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/List.js ***!
\*********************************************************/
/*! exports provided: List, ScrollToMode */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_List_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/List/index */ \"./node_modules/office-ui-fabric-react/lib/components/List/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"List\", function() { return _components_List_index__WEBPACK_IMPORTED_MODULE_0__[\"List\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScrollToMode\", function() { return _components_List_index__WEBPACK_IMPORTED_MODULE_0__[\"ScrollToMode\"]; });\n\n\r\n//# sourceMappingURL=List.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/List.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js":
/*!*********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js ***!
\*********************************************************************/
/*! exports provided: MarqueeSelection, SELECTION_CHANGE, SelectionMode, SelectionDirection, Selection, SelectionZone */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_MarqueeSelection_MarqueeSelection__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/MarqueeSelection/MarqueeSelection */ \"./node_modules/office-ui-fabric-react/lib/components/MarqueeSelection/MarqueeSelection.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MarqueeSelection\", function() { return _components_MarqueeSelection_MarqueeSelection__WEBPACK_IMPORTED_MODULE_0__[\"MarqueeSelection\"]; });\n\n/* harmony import */ var _utilities_selection_index__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utilities/selection/index */ \"./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SELECTION_CHANGE\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_1__[\"SELECTION_CHANGE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionMode\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_1__[\"SelectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionDirection\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_1__[\"SelectionDirection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Selection\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_1__[\"Selection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionZone\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_1__[\"SelectionZone\"]; });\n\n\r\n\r\n//# sourceMappingURL=MarqueeSelection.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/MarqueeSelection.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/MessageBar.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/MessageBar.js ***!
\***************************************************************/
/*! exports provided: MessageBar, MessageBarBase, MessageBarType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_MessageBar_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/MessageBar/index */ \"./node_modules/office-ui-fabric-react/lib/components/MessageBar/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageBar\", function() { return _components_MessageBar_index__WEBPACK_IMPORTED_MODULE_0__[\"MessageBar\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageBarBase\", function() { return _components_MessageBar_index__WEBPACK_IMPORTED_MODULE_0__[\"MessageBarBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MessageBarType\", function() { return _components_MessageBar_index__WEBPACK_IMPORTED_MODULE_0__[\"MessageBarType\"]; });\n\n\r\n//# sourceMappingURL=MessageBar.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/MessageBar.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Modal.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Modal.js ***!
\**********************************************************/
/*! exports provided: default, Modal, ModalBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Modal_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Modal/index */ \"./node_modules/office-ui-fabric-react/lib/components/Modal/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Modal\", function() { return _components_Modal_index__WEBPACK_IMPORTED_MODULE_0__[\"Modal\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ModalBase\", function() { return _components_Modal_index__WEBPACK_IMPORTED_MODULE_0__[\"ModalBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"default\", function() { return _components_Modal_index__WEBPACK_IMPORTED_MODULE_0__[\"Modal\"]; });\n\n\r\n\r\n//# sourceMappingURL=Modal.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Modal.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Nav.js":
/*!********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Nav.js ***!
\********************************************************/
/*! exports provided: Nav, isRelativeUrl, NavBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Nav_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Nav/index */ \"./node_modules/office-ui-fabric-react/lib/components/Nav/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Nav\", function() { return _components_Nav_index__WEBPACK_IMPORTED_MODULE_0__[\"Nav\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isRelativeUrl\", function() { return _components_Nav_index__WEBPACK_IMPORTED_MODULE_0__[\"isRelativeUrl\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NavBase\", function() { return _components_Nav_index__WEBPACK_IMPORTED_MODULE_0__[\"NavBase\"]; });\n\n\r\n//# sourceMappingURL=Nav.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Nav.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/OverflowSet.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/OverflowSet.js ***!
\****************************************************************/
/*! exports provided: OverflowSet, OverflowSetBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_OverflowSet_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/OverflowSet/index */ \"./node_modules/office-ui-fabric-react/lib/components/OverflowSet/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OverflowSet\", function() { return _components_OverflowSet_index__WEBPACK_IMPORTED_MODULE_0__[\"OverflowSet\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OverflowSetBase\", function() { return _components_OverflowSet_index__WEBPACK_IMPORTED_MODULE_0__[\"OverflowSetBase\"]; });\n\n\r\n//# sourceMappingURL=OverflowSet.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/OverflowSet.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Overlay.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Overlay.js ***!
\************************************************************/
/*! exports provided: Overlay, OverlayBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Overlay_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Overlay/index */ \"./node_modules/office-ui-fabric-react/lib/components/Overlay/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Overlay\", function() { return _components_Overlay_index__WEBPACK_IMPORTED_MODULE_0__[\"Overlay\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"OverlayBase\", function() { return _components_Overlay_index__WEBPACK_IMPORTED_MODULE_0__[\"OverlayBase\"]; });\n\n\r\n//# sourceMappingURL=Overlay.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Overlay.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Panel.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Panel.js ***!
\**********************************************************/
/*! exports provided: Panel, PanelType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Panel_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Panel/index */ \"./node_modules/office-ui-fabric-react/lib/components/Panel/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Panel\", function() { return _components_Panel_index__WEBPACK_IMPORTED_MODULE_0__[\"Panel\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PanelType\", function() { return _components_Panel_index__WEBPACK_IMPORTED_MODULE_0__[\"PanelType\"]; });\n\n\r\n//# sourceMappingURL=Panel.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Panel.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Persona.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Persona.js ***!
\************************************************************/
/*! exports provided: Persona, PersonaBase, PersonaSize, PersonaPresence, PersonaInitialsColor, personaSize, personaPresenceSize, sizeBoolean, sizeToPixels, presenceBoolean, PersonaCoin, PersonaCoinBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Persona/index */ \"./node_modules/office-ui-fabric-react/lib/components/Persona/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Persona\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"Persona\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaBase\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaSize\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaPresence\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaPresence\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaInitialsColor\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaInitialsColor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"personaSize\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"personaSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"personaPresenceSize\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"personaPresenceSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sizeBoolean\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"sizeBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sizeToPixels\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"sizeToPixels\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"presenceBoolean\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"presenceBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaCoin\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaCoin\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaCoinBase\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaCoinBase\"]; });\n\n\r\n//# sourceMappingURL=Persona.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Persona.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/PersonaCoin.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/PersonaCoin.js ***!
\****************************************************************/
/*! exports provided: Persona, PersonaBase, PersonaSize, PersonaPresence, PersonaInitialsColor, personaSize, personaPresenceSize, sizeBoolean, sizeToPixels, presenceBoolean, PersonaCoin, PersonaCoinBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Persona/index */ \"./node_modules/office-ui-fabric-react/lib/components/Persona/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Persona\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"Persona\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaBase\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaSize\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaPresence\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaPresence\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaInitialsColor\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaInitialsColor\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"personaSize\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"personaSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"personaPresenceSize\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"personaPresenceSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sizeBoolean\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"sizeBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"sizeToPixels\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"sizeToPixels\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"presenceBoolean\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"presenceBoolean\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaCoin\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaCoin\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaCoinBase\", function() { return _components_Persona_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaCoinBase\"]; });\n\n\r\n//# sourceMappingURL=PersonaCoin.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/PersonaCoin.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/PersonaPresence.js":
/*!********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/PersonaPresence.js ***!
\********************************************************************/
/*! exports provided: PersonaPresence, PersonaPresenceBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Persona_PersonaPresence_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Persona/PersonaPresence/index */ \"./node_modules/office-ui-fabric-react/lib/components/Persona/PersonaPresence/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaPresence\", function() { return _components_Persona_PersonaPresence_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaPresence\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PersonaPresenceBase\", function() { return _components_Persona_PersonaPresence_index__WEBPACK_IMPORTED_MODULE_0__[\"PersonaPresenceBase\"]; });\n\n\r\n//# sourceMappingURL=PersonaPresence.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/PersonaPresence.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Pickers.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Pickers.js ***!
\************************************************************/
/*! exports provided: Suggestions, SuggestionActionType, SuggestionsItem, SuggestionsController, Autofill, BaseAutoFill, BasePicker, BasePickerListBelow, ValidationState, BasePeoplePicker, MemberListPeoplePicker, NormalPeoplePickerBase, CompactPeoplePickerBase, ListPeoplePickerBase, createGenericItem, NormalPeoplePicker, CompactPeoplePicker, ListPeoplePicker, PeoplePickerItemBase, PeoplePickerItem, PeoplePickerItemSuggestionBase, PeoplePickerItemSuggestion, TagPickerBase, TagPicker, TagItemBase, TagItem, TagItemSuggestionBase, TagItemSuggestion */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/pickers/index */ \"./node_modules/office-ui-fabric-react/lib/components/pickers/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Suggestions\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"Suggestions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionActionType\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionActionType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionsItem\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionsItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SuggestionsController\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"SuggestionsController\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Autofill\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"Autofill\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseAutoFill\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseAutoFill\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BasePicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"BasePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BasePickerListBelow\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"BasePickerListBelow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValidationState\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"ValidationState\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BasePeoplePicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"BasePeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MemberListPeoplePicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"MemberListPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NormalPeoplePickerBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"NormalPeoplePickerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompactPeoplePickerBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"CompactPeoplePickerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPeoplePickerBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"ListPeoplePickerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createGenericItem\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"createGenericItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"NormalPeoplePicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"NormalPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CompactPeoplePicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"CompactPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ListPeoplePicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"ListPeoplePicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PeoplePickerItemBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"PeoplePickerItemBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PeoplePickerItem\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"PeoplePickerItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PeoplePickerItemSuggestionBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"PeoplePickerItemSuggestionBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PeoplePickerItemSuggestion\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"PeoplePickerItemSuggestion\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagPickerBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"TagPickerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagPicker\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"TagPicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagItemBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"TagItemBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagItem\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"TagItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagItemSuggestionBase\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"TagItemSuggestionBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TagItemSuggestion\", function() { return _components_pickers_index__WEBPACK_IMPORTED_MODULE_0__[\"TagItemSuggestion\"]; });\n\n\r\n//# sourceMappingURL=Pickers.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Pickers.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Pivot.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Pivot.js ***!
\**********************************************************/
/*! exports provided: PivotItem, Pivot, PivotBase, PivotLinkFormat, PivotLinkSize */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Pivot_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Pivot/index */ \"./node_modules/office-ui-fabric-react/lib/components/Pivot/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PivotItem\", function() { return _components_Pivot_index__WEBPACK_IMPORTED_MODULE_0__[\"PivotItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Pivot\", function() { return _components_Pivot_index__WEBPACK_IMPORTED_MODULE_0__[\"Pivot\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PivotBase\", function() { return _components_Pivot_index__WEBPACK_IMPORTED_MODULE_0__[\"PivotBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PivotLinkFormat\", function() { return _components_Pivot_index__WEBPACK_IMPORTED_MODULE_0__[\"PivotLinkFormat\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PivotLinkSize\", function() { return _components_Pivot_index__WEBPACK_IMPORTED_MODULE_0__[\"PivotLinkSize\"]; });\n\n\r\n//# sourceMappingURL=Pivot.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Pivot.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Popup.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Popup.js ***!
\**********************************************************/
/*! exports provided: Popup */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Popup_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Popup/index */ \"./node_modules/office-ui-fabric-react/lib/components/Popup/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Popup\", function() { return _components_Popup_index__WEBPACK_IMPORTED_MODULE_0__[\"Popup\"]; });\n\n\r\n//# sourceMappingURL=Popup.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Popup.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/PositioningContainer.js":
/*!*************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/PositioningContainer.js ***!
\*************************************************************************/
/*! exports provided: PositioningContainer */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Coachmark_PositioningContainer_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Coachmark/PositioningContainer/index */ \"./node_modules/office-ui-fabric-react/lib/components/Coachmark/PositioningContainer/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PositioningContainer\", function() { return _components_Coachmark_PositioningContainer_index__WEBPACK_IMPORTED_MODULE_0__[\"PositioningContainer\"]; });\n\n\r\n//# sourceMappingURL=PositioningContainer.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/PositioningContainer.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ProgressIndicator.js":
/*!**********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ProgressIndicator.js ***!
\**********************************************************************/
/*! exports provided: ProgressIndicator, ProgressIndicatorBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ProgressIndicator_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ProgressIndicator/index */ \"./node_modules/office-ui-fabric-react/lib/components/ProgressIndicator/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProgressIndicator\", function() { return _components_ProgressIndicator_index__WEBPACK_IMPORTED_MODULE_0__[\"ProgressIndicator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ProgressIndicatorBase\", function() { return _components_ProgressIndicator_index__WEBPACK_IMPORTED_MODULE_0__[\"ProgressIndicatorBase\"]; });\n\n\r\n//# sourceMappingURL=ProgressIndicator.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ProgressIndicator.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Rating.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Rating.js ***!
\***********************************************************/
/*! exports provided: Rating, RatingBase, RatingSize */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Rating_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Rating/index */ \"./node_modules/office-ui-fabric-react/lib/components/Rating/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Rating\", function() { return _components_Rating_index__WEBPACK_IMPORTED_MODULE_0__[\"Rating\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RatingBase\", function() { return _components_Rating_index__WEBPACK_IMPORTED_MODULE_0__[\"RatingBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"RatingSize\", function() { return _components_Rating_index__WEBPACK_IMPORTED_MODULE_0__[\"RatingSize\"]; });\n\n\r\n//# sourceMappingURL=Rating.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Rating.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ResizeGroup.js":
/*!****************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ResizeGroup.js ***!
\****************************************************************/
/*! exports provided: ResizeGroup, getMeasurementCache, getNextResizeGroupStateProvider, ResizeGroupBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ResizeGroup_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ResizeGroup/index */ \"./node_modules/office-ui-fabric-react/lib/components/ResizeGroup/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResizeGroup\", function() { return _components_ResizeGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"ResizeGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getMeasurementCache\", function() { return _components_ResizeGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"getMeasurementCache\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNextResizeGroupStateProvider\", function() { return _components_ResizeGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"getNextResizeGroupStateProvider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ResizeGroupBase\", function() { return _components_ResizeGroup_index__WEBPACK_IMPORTED_MODULE_0__[\"ResizeGroupBase\"]; });\n\n\r\n//# sourceMappingURL=ResizeGroup.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ResizeGroup.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ScrollablePane.js":
/*!*******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ScrollablePane.js ***!
\*******************************************************************/
/*! exports provided: ScrollablePane, ScrollablePaneBase, ScrollbarVisibility */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ScrollablePane_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ScrollablePane/index */ \"./node_modules/office-ui-fabric-react/lib/components/ScrollablePane/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScrollablePane\", function() { return _components_ScrollablePane_index__WEBPACK_IMPORTED_MODULE_0__[\"ScrollablePane\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScrollablePaneBase\", function() { return _components_ScrollablePane_index__WEBPACK_IMPORTED_MODULE_0__[\"ScrollablePaneBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScrollbarVisibility\", function() { return _components_ScrollablePane_index__WEBPACK_IMPORTED_MODULE_0__[\"ScrollbarVisibility\"]; });\n\n\r\n//# sourceMappingURL=ScrollablePane.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ScrollablePane.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/SearchBox.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/SearchBox.js ***!
\**************************************************************/
/*! exports provided: SearchBox, SearchBoxBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_SearchBox_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/SearchBox/index */ \"./node_modules/office-ui-fabric-react/lib/components/SearchBox/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchBox\", function() { return _components_SearchBox_index__WEBPACK_IMPORTED_MODULE_0__[\"SearchBox\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SearchBoxBase\", function() { return _components_SearchBox_index__WEBPACK_IMPORTED_MODULE_0__[\"SearchBoxBase\"]; });\n\n\r\n//# sourceMappingURL=SearchBox.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/SearchBox.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/SelectableOption.js":
/*!*********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/SelectableOption.js ***!
\*********************************************************************/
/*! exports provided: SelectableOptionMenuItemType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utilities_selectableOption_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utilities/selectableOption/index */ \"./node_modules/office-ui-fabric-react/lib/utilities/selectableOption/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectableOptionMenuItemType\", function() { return _utilities_selectableOption_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectableOptionMenuItemType\"]; });\n\n\r\n//# sourceMappingURL=SelectableOption.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/SelectableOption.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js":
/*!**********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js ***!
\**********************************************************************/
/*! exports provided: BaseSelectedItemsList, BasePeopleSelectedItemsList, SelectedPeopleList, ExtendedSelectedItem */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_SelectedItemsList_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/SelectedItemsList/index */ \"./node_modules/office-ui-fabric-react/lib/components/SelectedItemsList/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseSelectedItemsList\", function() { return _components_SelectedItemsList_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseSelectedItemsList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BasePeopleSelectedItemsList\", function() { return _components_SelectedItemsList_index__WEBPACK_IMPORTED_MODULE_0__[\"BasePeopleSelectedItemsList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectedPeopleList\", function() { return _components_SelectedItemsList_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectedPeopleList\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtendedSelectedItem\", function() { return _components_SelectedItemsList_index__WEBPACK_IMPORTED_MODULE_0__[\"ExtendedSelectedItem\"]; });\n\n\r\n//# sourceMappingURL=SelectedItemsList.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/SelectedItemsList.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Selection.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Selection.js ***!
\**************************************************************/
/*! exports provided: SELECTION_CHANGE, SelectionMode, SelectionDirection, Selection, SelectionZone */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _utilities_selection_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utilities/selection/index */ \"./node_modules/office-ui-fabric-react/lib/utilities/selection/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SELECTION_CHANGE\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_0__[\"SELECTION_CHANGE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionMode\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionDirection\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectionDirection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Selection\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_0__[\"Selection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SelectionZone\", function() { return _utilities_selection_index__WEBPACK_IMPORTED_MODULE_0__[\"SelectionZone\"]; });\n\n\r\n//# sourceMappingURL=Selection.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Selection.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Shimmer.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Shimmer.js ***!
\************************************************************/
/*! exports provided: Shimmer, ShimmerBase, ShimmerElementType, ShimmerElementsDefaultHeights, ShimmerLine, ShimmerLineBase, ShimmerCircle, ShimmerCircleBase, ShimmerGap, ShimmerGapBase, ShimmerElementsGroup, ShimmerElementsGroupBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Shimmer/index */ \"./node_modules/office-ui-fabric-react/lib/components/Shimmer/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Shimmer\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"Shimmer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerBase\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementType\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerElementType\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementsDefaultHeights\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerElementsDefaultHeights\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerLine\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerLine\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerLineBase\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerLineBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerCircle\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerCircle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerCircleBase\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerCircleBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerGap\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerGap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerGapBase\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerGapBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementsGroup\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerElementsGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmerElementsGroupBase\", function() { return _components_Shimmer_index__WEBPACK_IMPORTED_MODULE_0__[\"ShimmerElementsGroupBase\"]; });\n\n\r\n//# sourceMappingURL=Shimmer.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Shimmer.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js":
/*!*************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js ***!
\*************************************************************************/
/*! exports provided: ShimmeredDetailsList, ShimmeredDetailsListBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_DetailsList_ShimmeredDetailsList__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/DetailsList/ShimmeredDetailsList */ \"./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmeredDetailsList\", function() { return _components_DetailsList_ShimmeredDetailsList__WEBPACK_IMPORTED_MODULE_0__[\"ShimmeredDetailsList\"]; });\n\n/* harmony import */ var _components_DetailsList_ShimmeredDetailsList_base__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./components/DetailsList/ShimmeredDetailsList.base */ \"./node_modules/office-ui-fabric-react/lib/components/DetailsList/ShimmeredDetailsList.base.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ShimmeredDetailsListBase\", function() { return _components_DetailsList_ShimmeredDetailsList_base__WEBPACK_IMPORTED_MODULE_1__[\"ShimmeredDetailsListBase\"]; });\n\n\r\n\r\n//# sourceMappingURL=ShimmeredDetailsList.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ShimmeredDetailsList.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Slider.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Slider.js ***!
\***********************************************************/
/*! exports provided: Slider, ValuePosition, SliderBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Slider_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Slider/index */ \"./node_modules/office-ui-fabric-react/lib/components/Slider/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Slider\", function() { return _components_Slider_index__WEBPACK_IMPORTED_MODULE_0__[\"Slider\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ValuePosition\", function() { return _components_Slider_index__WEBPACK_IMPORTED_MODULE_0__[\"ValuePosition\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SliderBase\", function() { return _components_Slider_index__WEBPACK_IMPORTED_MODULE_0__[\"SliderBase\"]; });\n\n\r\n//# sourceMappingURL=Slider.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Slider.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/SpinButton.js":
/*!***************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/SpinButton.js ***!
\***************************************************************/
/*! exports provided: KeyboardSpinDirection, SpinButton */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_SpinButton_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/SpinButton/index */ \"./node_modules/office-ui-fabric-react/lib/components/SpinButton/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyboardSpinDirection\", function() { return _components_SpinButton_index__WEBPACK_IMPORTED_MODULE_0__[\"KeyboardSpinDirection\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SpinButton\", function() { return _components_SpinButton_index__WEBPACK_IMPORTED_MODULE_0__[\"SpinButton\"]; });\n\n\r\n//# sourceMappingURL=SpinButton.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/SpinButton.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Spinner.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Spinner.js ***!
\************************************************************/
/*! exports provided: Spinner, SpinnerBase, SpinnerSize, SpinnerType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Spinner_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Spinner/index */ \"./node_modules/office-ui-fabric-react/lib/components/Spinner/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Spinner\", function() { return _components_Spinner_index__WEBPACK_IMPORTED_MODULE_0__[\"Spinner\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SpinnerBase\", function() { return _components_Spinner_index__WEBPACK_IMPORTED_MODULE_0__[\"SpinnerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SpinnerSize\", function() { return _components_Spinner_index__WEBPACK_IMPORTED_MODULE_0__[\"SpinnerSize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SpinnerType\", function() { return _components_Spinner_index__WEBPACK_IMPORTED_MODULE_0__[\"SpinnerType\"]; });\n\n\r\n//# sourceMappingURL=Spinner.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Spinner.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Stack.js":
/*!**********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Stack.js ***!
\**********************************************************/
/*! exports provided: StackItem, Stack */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Stack_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Stack/index */ \"./node_modules/office-ui-fabric-react/lib/components/Stack/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StackItem\", function() { return _components_Stack_index__WEBPACK_IMPORTED_MODULE_0__[\"StackItem\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stack\", function() { return _components_Stack_index__WEBPACK_IMPORTED_MODULE_0__[\"Stack\"]; });\n\n\r\n//# sourceMappingURL=Stack.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Stack.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Sticky.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Sticky.js ***!
\***********************************************************/
/*! exports provided: Sticky, StickyPositionType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Sticky_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Sticky/index */ \"./node_modules/office-ui-fabric-react/lib/components/Sticky/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Sticky\", function() { return _components_Sticky_index__WEBPACK_IMPORTED_MODULE_0__[\"Sticky\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"StickyPositionType\", function() { return _components_Sticky_index__WEBPACK_IMPORTED_MODULE_0__[\"StickyPositionType\"]; });\n\n\r\n//# sourceMappingURL=Sticky.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Sticky.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Styling.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Styling.js ***!
\************************************************************/
/*! exports provided: AnimationClassNames, FontClassNames, ColorClassNames, AnimationStyles, AnimationVariables, DefaultPalette, DefaultFontStyles, registerDefaultFontFaces, FontSizes, FontWeights, IconFontSizes, createFontStyles, getFocusStyle, focusClear, hiddenContentStyle, PulsingBeaconAnimationStyles, getGlobalClassNames, ThemeSettingName, getTheme, loadTheme, createTheme, registerOnThemeChangeCallback, removeOnThemeChangeCallback, buildClassMap, getIcon, registerIcons, registerIconAlias, unregisterIcons, setIconOptions, getIconClassName, InjectionMode, Stylesheet, concatStyleSets, fontFace, keyframes, mergeStyleSets, mergeStyles, getThemedContext, HighContrastSelector, HighContrastSelectorWhite, HighContrastSelectorBlack, ScreenWidthMinSmall, ScreenWidthMinMedium, ScreenWidthMinLarge, ScreenWidthMinXLarge, ScreenWidthMinXXLarge, ScreenWidthMinXXXLarge, ScreenWidthMaxSmall, ScreenWidthMaxMedium, ScreenWidthMaxLarge, ScreenWidthMaxXLarge, ScreenWidthMaxXXLarge, ScreenWidthMinUhfMobile, getScreenSelector, normalize, noWrap, getFadedOverflowStyle, ZIndexes */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./version */ \"./node_modules/office-ui-fabric-react/lib/version.js\");\n/* harmony import */ var _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/styling */ \"./node_modules/@uifabric/styling/lib/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationClassNames\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"AnimationClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontClassNames\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"FontClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorClassNames\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ColorClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationStyles\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"AnimationStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AnimationVariables\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"AnimationVariables\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultPalette\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"DefaultPalette\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DefaultFontStyles\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"DefaultFontStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerDefaultFontFaces\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"registerDefaultFontFaces\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontSizes\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"FontSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FontWeights\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"FontWeights\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IconFontSizes\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"IconFontSizes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createFontStyles\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"createFontStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFocusStyle\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getFocusStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusClear\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"focusClear\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hiddenContentStyle\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"hiddenContentStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"PulsingBeaconAnimationStyles\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"PulsingBeaconAnimationStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getGlobalClassNames\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getGlobalClassNames\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThemeSettingName\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ThemeSettingName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getTheme\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"loadTheme\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"loadTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createTheme\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"createTheme\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerOnThemeChangeCallback\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"registerOnThemeChangeCallback\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"removeOnThemeChangeCallback\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"removeOnThemeChangeCallback\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buildClassMap\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"buildClassMap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIcon\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getIcon\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerIcons\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"registerIcons\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"registerIconAlias\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"registerIconAlias\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"unregisterIcons\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"unregisterIcons\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setIconOptions\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"setIconOptions\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getIconClassName\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getIconClassName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"InjectionMode\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"InjectionMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Stylesheet\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"Stylesheet\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"concatStyleSets\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"concatStyleSets\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fontFace\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"fontFace\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"keyframes\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"keyframes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyleSets\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"mergeStyleSets\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeStyles\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"mergeStyles\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getThemedContext\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getThemedContext\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelector\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelector\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorWhite\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelectorWhite\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"HighContrastSelectorBlack\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelectorBlack\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinSmall\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinSmall\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinMedium\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinMedium\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinXXXLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinXXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxSmall\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxSmall\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxMedium\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxMedium\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMaxXXLarge\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMaxXXLarge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ScreenWidthMinUhfMobile\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ScreenWidthMinUhfMobile\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getScreenSelector\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getScreenSelector\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"normalize\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"normalize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"noWrap\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"noWrap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFadedOverflowStyle\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"getFadedOverflowStyle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ZIndexes\", function() { return _uifabric_styling__WEBPACK_IMPORTED_MODULE_1__[\"ZIndexes\"]; });\n\n\r\n\r\n//# sourceMappingURL=Styling.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Styling.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js":
/*!**********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js ***!
\**********************************************************************/
/*! exports provided: SwatchColorPicker, SwatchColorPickerBase, ColorPickerGridCell, ColorPickerGridCellBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_SwatchColorPicker_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/SwatchColorPicker/index */ \"./node_modules/office-ui-fabric-react/lib/components/SwatchColorPicker/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SwatchColorPicker\", function() { return _components_SwatchColorPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SwatchColorPicker\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SwatchColorPickerBase\", function() { return _components_SwatchColorPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"SwatchColorPickerBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorPickerGridCell\", function() { return _components_SwatchColorPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"ColorPickerGridCell\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ColorPickerGridCellBase\", function() { return _components_SwatchColorPicker_index__WEBPACK_IMPORTED_MODULE_0__[\"ColorPickerGridCellBase\"]; });\n\n\r\n//# sourceMappingURL=SwatchColorPicker.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/SwatchColorPicker.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/TeachingBubble.js":
/*!*******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/TeachingBubble.js ***!
\*******************************************************************/
/*! exports provided: TeachingBubble, TeachingBubbleBase, TeachingBubbleContent, TeachingBubbleContentBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_TeachingBubble_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/TeachingBubble/index */ \"./node_modules/office-ui-fabric-react/lib/components/TeachingBubble/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TeachingBubble\", function() { return _components_TeachingBubble_index__WEBPACK_IMPORTED_MODULE_0__[\"TeachingBubble\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TeachingBubbleBase\", function() { return _components_TeachingBubble_index__WEBPACK_IMPORTED_MODULE_0__[\"TeachingBubbleBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TeachingBubbleContent\", function() { return _components_TeachingBubble_index__WEBPACK_IMPORTED_MODULE_0__[\"TeachingBubbleContent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TeachingBubbleContentBase\", function() { return _components_TeachingBubble_index__WEBPACK_IMPORTED_MODULE_0__[\"TeachingBubbleContentBase\"]; });\n\n\r\n//# sourceMappingURL=TeachingBubble.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/TeachingBubble.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/TextField.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/TextField.js ***!
\**************************************************************/
/*! exports provided: TextField, TextFieldBase, DEFAULT_MASK_CHAR, MaskedTextField */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_TextField_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/TextField/index */ \"./node_modules/office-ui-fabric-react/lib/components/TextField/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextField\", function() { return _components_TextField_index__WEBPACK_IMPORTED_MODULE_0__[\"TextField\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TextFieldBase\", function() { return _components_TextField_index__WEBPACK_IMPORTED_MODULE_0__[\"TextFieldBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MASK_CHAR\", function() { return _components_TextField_index__WEBPACK_IMPORTED_MODULE_0__[\"DEFAULT_MASK_CHAR\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"MaskedTextField\", function() { return _components_TextField_index__WEBPACK_IMPORTED_MODULE_0__[\"MaskedTextField\"]; });\n\n\r\n//# sourceMappingURL=TextField.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/TextField.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js":
/*!*******************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js ***!
\*******************************************************************/
/*! exports provided: ThemeGenerator, BaseSlots, FabricSlots, SemanticColorSlots, themeRulesStandardCreator */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_ThemeGenerator_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/ThemeGenerator/index */ \"./node_modules/office-ui-fabric-react/lib/components/ThemeGenerator/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ThemeGenerator\", function() { return _components_ThemeGenerator_index__WEBPACK_IMPORTED_MODULE_0__[\"ThemeGenerator\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseSlots\", function() { return _components_ThemeGenerator_index__WEBPACK_IMPORTED_MODULE_0__[\"BaseSlots\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FabricSlots\", function() { return _components_ThemeGenerator_index__WEBPACK_IMPORTED_MODULE_0__[\"FabricSlots\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"SemanticColorSlots\", function() { return _components_ThemeGenerator_index__WEBPACK_IMPORTED_MODULE_0__[\"SemanticColorSlots\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"themeRulesStandardCreator\", function() { return _components_ThemeGenerator_index__WEBPACK_IMPORTED_MODULE_0__[\"themeRulesStandardCreator\"]; });\n\n\r\n//# sourceMappingURL=ThemeGenerator.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/ThemeGenerator.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Toggle.js":
/*!***********************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Toggle.js ***!
\***********************************************************/
/*! exports provided: Toggle, ToggleBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Toggle_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Toggle/index */ \"./node_modules/office-ui-fabric-react/lib/components/Toggle/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Toggle\", function() { return _components_Toggle_index__WEBPACK_IMPORTED_MODULE_0__[\"Toggle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ToggleBase\", function() { return _components_Toggle_index__WEBPACK_IMPORTED_MODULE_0__[\"ToggleBase\"]; });\n\n\r\n//# sourceMappingURL=Toggle.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Toggle.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Tooltip.js":
/*!************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Tooltip.js ***!
\************************************************************/
/*! exports provided: Tooltip, TooltipBase, TooltipDelay, TooltipHost, TooltipHostBase, TooltipOverflowMode, DirectionalHint */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./components/Tooltip/index */ \"./node_modules/office-ui-fabric-react/lib/components/Tooltip/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Tooltip\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"Tooltip\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooltipBase\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"TooltipBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooltipDelay\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"TooltipDelay\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooltipHost\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"TooltipHost\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooltipHostBase\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"TooltipHostBase\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"TooltipOverflowMode\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"TooltipOverflowMode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DirectionalHint\", function() { return _components_Tooltip_index__WEBPACK_IMPORTED_MODULE_0__[\"DirectionalHint\"]; });\n\n\r\n//# sourceMappingURL=Tooltip.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Tooltip.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/Utilities.js":
/*!**************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/Utilities.js ***!
\**************************************************************/
/*! exports provided: Async, AutoScroll, BaseComponent, nullRender, provideContext, Customizations, CustomizerContext, Customizer, mergeCustomizations, mergeSettings, DelayedRender, EventGroup, FabricPerformance, GlobalSettings, KeyCodes, Rectangle, mergeAriaAttributeValues, findIndex, find, createArray, toMatrix, removeIndex, replaceElement, addElementAtIndex, flatten, arraysEqual, asAsync, assertNever, autobind, classNamesFunction, createRef, css, customizable, DATA_PORTAL_ATTRIBUTE, setVirtualParent, getVirtualParent, getParent, getChildren, elementContains, setSSR, getWindow, getDocument, getRect, setPortalAttribute, portalContainsElement, findElementRecursive, elementContainsAttribute, getFirstFocusable, getLastFocusable, getFirstTabbable, getLastTabbable, focusFirstChild, getPreviousElement, getNextElement, isElementVisible, isElementTabbable, isElementFocusZone, isElementFocusSubZone, doesElementContainFocus, shouldWrapFocus, focusAsync, getFocusableByIndexPath, getElementIndexPath, hoistMethods, unhoistMethods, hoistStatics, IsFocusVisibleClassName, initializeFocusRects, getInitials, isDirectionalKeyCode, addDirectionalKeyCode, getLanguage, setLanguage, getDistanceBetweenPoints, fitContentToBounds, calculatePrecision, precisionRound, setMemoizeWeakMap, resetMemoizations, memoize, memoizeFunction, merge, isIOS, shallowCompare, assign, filteredAssign, getId, resetIds, mapEnumByName, values, isMac, hasHorizontalOverflow, hasVerticalOverflow, hasOverflow, baseElementEvents, baseElementProperties, htmlElementProperties, anchorProperties, buttonProperties, divProperties, inputProperties, textAreaProperties, imageProperties, getNativeProps, getResourceUrl, setBaseUrl, getRTL, setRTL, getRTLSafeKeyCode, DATA_IS_SCROLLABLE_ATTRIBUTE, allowScrollOnElement, disableBodyScroll, enableBodyScroll, getScrollbarWidth, findScrollableParent, format, styled, warnDeprecations, warnMutuallyExclusive, warnConditionallyRequiredProps, warn, setWarningCallback */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _version__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./version */ \"./node_modules/office-ui-fabric-react/lib/version.js\");\n/* harmony import */ var _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @uifabric/utilities */ \"./node_modules/@uifabric/utilities/lib/index.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Async\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Async\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"AutoScroll\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"AutoScroll\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseComponent\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"BaseComponent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"nullRender\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"nullRender\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"provideContext\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"provideContext\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Customizations\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Customizations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"CustomizerContext\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"CustomizerContext\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Customizer\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Customizer\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeCustomizations\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"mergeCustomizations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeSettings\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"mergeSettings\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DelayedRender\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"DelayedRender\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EventGroup\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"EventGroup\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"FabricPerformance\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"FabricPerformance\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"GlobalSettings\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"GlobalSettings\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"KeyCodes\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"KeyCodes\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Rectangle\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"Rectangle\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mergeAriaAttributeValues\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"mergeAriaAttributeValues\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findIndex\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"findIndex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"find\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"find\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createArray\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"createArray\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"toMatrix\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"toMatrix\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"removeIndex\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"removeIndex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"replaceElement\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"replaceElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"addElementAtIndex\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"addElementAtIndex\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"flatten\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"flatten\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"arraysEqual\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"arraysEqual\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"asAsync\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"asAsync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assertNever\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"assertNever\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"autobind\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"autobind\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"classNamesFunction\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"classNamesFunction\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"createRef\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"createRef\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"css\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"css\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"customizable\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"customizable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DATA_PORTAL_ATTRIBUTE\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"DATA_PORTAL_ATTRIBUTE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setVirtualParent\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setVirtualParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getVirtualParent\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getVirtualParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getParent\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getChildren\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getChildren\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"elementContains\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"elementContains\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setSSR\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setSSR\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getWindow\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getWindow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDocument\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getDocument\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRect\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getRect\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setPortalAttribute\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setPortalAttribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"portalContainsElement\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"portalContainsElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findElementRecursive\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"findElementRecursive\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"elementContainsAttribute\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"elementContainsAttribute\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFirstFocusable\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getFirstFocusable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLastFocusable\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getLastFocusable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFirstTabbable\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getFirstTabbable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLastTabbable\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getLastTabbable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusFirstChild\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"focusFirstChild\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getPreviousElement\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getPreviousElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNextElement\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getNextElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementVisible\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isElementVisible\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementTabbable\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isElementTabbable\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementFocusZone\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isElementFocusZone\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isElementFocusSubZone\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isElementFocusSubZone\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"doesElementContainFocus\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"doesElementContainFocus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"shouldWrapFocus\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"shouldWrapFocus\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"focusAsync\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"focusAsync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getFocusableByIndexPath\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getFocusableByIndexPath\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getElementIndexPath\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getElementIndexPath\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hoistMethods\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"hoistMethods\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"unhoistMethods\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"unhoistMethods\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hoistStatics\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"hoistStatics\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"IsFocusVisibleClassName\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"IsFocusVisibleClassName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"initializeFocusRects\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"initializeFocusRects\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getInitials\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getInitials\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isDirectionalKeyCode\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isDirectionalKeyCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"addDirectionalKeyCode\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"addDirectionalKeyCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getLanguage\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getLanguage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setLanguage\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setLanguage\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getDistanceBetweenPoints\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getDistanceBetweenPoints\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"fitContentToBounds\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"fitContentToBounds\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"calculatePrecision\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"calculatePrecision\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"precisionRound\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"precisionRound\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setMemoizeWeakMap\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setMemoizeWeakMap\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resetMemoizations\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"resetMemoizations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoize\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"memoize\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"memoizeFunction\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"memoizeFunction\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"merge\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"merge\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isIOS\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isIOS\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"shallowCompare\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"shallowCompare\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"assign\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"assign\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"filteredAssign\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"filteredAssign\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getId\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getId\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"resetIds\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"resetIds\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"mapEnumByName\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"mapEnumByName\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"values\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"values\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"isMac\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"isMac\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasHorizontalOverflow\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"hasHorizontalOverflow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasVerticalOverflow\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"hasVerticalOverflow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"hasOverflow\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"hasOverflow\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"baseElementEvents\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"baseElementEvents\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"baseElementProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"baseElementProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"htmlElementProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"htmlElementProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"anchorProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"anchorProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"buttonProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"buttonProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"divProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"divProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"inputProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"inputProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"textAreaProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"textAreaProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"imageProperties\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"imageProperties\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getNativeProps\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getNativeProps\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getResourceUrl\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getResourceUrl\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setBaseUrl\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setBaseUrl\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRTL\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getRTL\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setRTL\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setRTL\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getRTLSafeKeyCode\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getRTLSafeKeyCode\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"DATA_IS_SCROLLABLE_ATTRIBUTE\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"DATA_IS_SCROLLABLE_ATTRIBUTE\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"allowScrollOnElement\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"allowScrollOnElement\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"disableBodyScroll\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"disableBodyScroll\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"enableBodyScroll\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"enableBodyScroll\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"getScrollbarWidth\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"getScrollbarWidth\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"findScrollableParent\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"findScrollableParent\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"format\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"format\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"styled\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"styled\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warnDeprecations\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warnDeprecations\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warnMutuallyExclusive\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warnMutuallyExclusive\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warnConditionallyRequiredProps\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warnConditionallyRequiredProps\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"warn\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"warn\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"setWarningCallback\", function() { return _uifabric_utilities__WEBPACK_IMPORTED_MODULE_1__[\"setWarningCallback\"]; });\n\n\r\n\r\n//# sourceMappingURL=Utilities.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/Utilities.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js":
/*!***************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js ***!
\***************************************************************************/
/*! exports provided: DirectionalHint */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DirectionalHint\", function() { return DirectionalHint; });\nvar DirectionalHint = {\r\n /**\r\n * Appear above the target element, with the left edges of the callout and target aligning.\r\n */\r\n topLeftEdge: 0,\r\n /**\r\n * Appear above the target element, with the centers of the callout and target aligning.\r\n */\r\n topCenter: 1,\r\n /**\r\n * Appear above the target element, with the right edges of the callout and target aligning.\r\n */\r\n topRightEdge: 2,\r\n /**\r\n * Appear above the target element, aligning with the target element such that the callout tends toward the center of the screen.\r\n */\r\n topAutoEdge: 3,\r\n /**\r\n * Appear below the target element, with the left edges of the callout and target aligning.\r\n */\r\n bottomLeftEdge: 4,\r\n /**\r\n * Appear below the target element, with the centers of the callout and target aligning.\r\n */\r\n bottomCenter: 5,\r\n /**\r\n * Appear below the target element, with the right edges of the callout and target aligning.\r\n */\r\n bottomRightEdge: 6,\r\n /**\r\n * Appear below the target element, aligning with the target element such that the callout tends toward the center of the screen.\r\n */\r\n bottomAutoEdge: 7,\r\n /**\r\n * Appear to the left of the target element, with the top edges of the callout and target aligning.\r\n */\r\n leftTopEdge: 8,\r\n /**\r\n * Appear to the left of the target element, with the centers of the callout and target aligning.\r\n */\r\n leftCenter: 9,\r\n /**\r\n * Appear to the left of the target element, with the bottom edges of the callout and target aligning.\r\n */\r\n leftBottomEdge: 10,\r\n /**\r\n * Appear to the right of the target element, with the top edges of the callout and target aligning.\r\n */\r\n rightTopEdge: 11,\r\n /**\r\n * Appear to the right of the target element, with the centers of the callout and target aligning.\r\n */\r\n rightCenter: 12,\r\n /**\r\n * Appear to the right of the target element, with the bottom edges of the callout and target aligning.\r\n */\r\n rightBottomEdge: 13\r\n};\r\n//# sourceMappingURL=DirectionalHint.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/common/TestImages.js":
/*!**********************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/common/TestImages.js ***!
\**********************************************************************/
/*! exports provided: TestImages */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TestImages\", function() { return TestImages; });\nvar baseProductionCdnUrl = 'https://static2.sharepointonline.com/files/fabric/office-ui-fabric-react-assets/';\r\nvar TestImages = {\r\n choiceGroupBarUnselected: baseProductionCdnUrl + 'choicegroup-bar-unselected.png',\r\n choiceGroupBarSelected: baseProductionCdnUrl + 'choicegroup-bar-selected.png',\r\n choiceGroupPieUnselected: baseProductionCdnUrl + 'choicegroup-pie-unselected.png',\r\n choiceGroupPieSelected: baseProductionCdnUrl + 'choicegroup-pie-selected.png',\r\n documentPreview: baseProductionCdnUrl + 'document-preview.png',\r\n documentPreviewTwo: baseProductionCdnUrl + 'document-preview2.png',\r\n documentPreviewThree: baseProductionCdnUrl + 'document-preview3.png',\r\n iconOne: baseProductionCdnUrl + 'icon-one.png',\r\n iconPpt: baseProductionCdnUrl + 'icon-ppt.png',\r\n personaFemale: baseProductionCdnUrl + 'persona-female.png',\r\n personaMale: baseProductionCdnUrl + 'persona-male.png'\r\n};\r\n//# sourceMappingURL=TestImages.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/common/TestImages.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js":
/*!****************************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js ***!
\****************************************************************************************************/
/*! exports provided: getClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getClassNames\", function() { return getClassNames; });\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Styling */ \"./node_modules/office-ui-fabric-react/lib/Styling.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n\r\n\r\nvar getClassNames = Object(_Utilities__WEBPACK_IMPORTED_MODULE_1__[\"memoizeFunction\"])(function (styles, className, activityPersonas, isCompact) {\r\n return {\r\n root: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem', className, styles.root, isCompact && styles.isCompactRoot),\r\n pulsingBeacon: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-pulsingBeacon', styles.pulsingBeacon),\r\n personaContainer: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-personaContainer', styles.personaContainer, isCompact && styles.isCompactPersonaContainer),\r\n activityPersona: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-activityPersona', styles.activityPersona, isCompact && styles.isCompactPersona, !isCompact && activityPersonas && activityPersonas.length === 2 && styles.doublePersona),\r\n activityTypeIcon: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-activityTypeIcon', styles.activityTypeIcon, isCompact && styles.isCompactIcon),\r\n activityContent: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-activityContent', styles.activityContent, isCompact && styles.isCompactContent),\r\n activityText: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-activityText', styles.activityText),\r\n commentText: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-commentText', styles.commentText),\r\n timeStamp: Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"mergeStyles\"])('ms-ActivityItem-timeStamp', styles.timeStamp, isCompact && styles.isCompactTimeStamp)\r\n };\r\n});\r\n//# sourceMappingURL=ActivityItem.classNames.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js":
/*!*****************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js ***!
\*****************************************************************************************/
/*! exports provided: ActivityItem */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActivityItem\", function() { return ActivityItem; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _ActivityItem_classNames__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./ActivityItem.classNames */ \"./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.classNames.js\");\n/* harmony import */ var _ActivityItem_styles__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ActivityItem.styles */ \"./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js\");\n/* harmony import */ var _Persona__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../Persona */ \"./node_modules/office-ui-fabric-react/lib/Persona.js\");\n\r\n\r\n\r\n\r\n\r\n\r\nvar ActivityItem = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](ActivityItem, _super);\r\n function ActivityItem(props) {\r\n var _this = _super.call(this, props) || this;\r\n _this._onRenderIcon = function (props) {\r\n if (props.activityPersonas) {\r\n return _this._onRenderPersonaArray(props);\r\n }\r\n else {\r\n return _this.props.activityIcon;\r\n }\r\n };\r\n _this._onRenderActivityDescription = function (props) {\r\n var classNames = _this._getClassNames(props);\r\n var activityDescription = props.activityDescription || props.activityDescriptionText;\r\n if (activityDescription) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { className: classNames.activityText }, activityDescription);\r\n }\r\n return null;\r\n };\r\n _this._onRenderComments = function (props) {\r\n var classNames = _this._getClassNames(props);\r\n var comments = props.comments || props.commentText;\r\n if (!props.isCompact && comments) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.commentText }, comments);\r\n }\r\n return null;\r\n };\r\n _this._onRenderTimeStamp = function (props) {\r\n var classNames = _this._getClassNames(props);\r\n if (!props.isCompact && props.timeStamp) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.timeStamp }, props.timeStamp);\r\n }\r\n return null;\r\n };\r\n // If activityPersonas is an array of persona props, build the persona cluster element.\r\n _this._onRenderPersonaArray = function (props) {\r\n var classNames = _this._getClassNames(props);\r\n var personaElement = null;\r\n var activityPersonas = props.activityPersonas;\r\n if (activityPersonas[0].imageUrl || activityPersonas[0].imageInitials) {\r\n var personaList_1 = [];\r\n var showSize16Personas_1 = activityPersonas.length > 1 || props.isCompact;\r\n var personaLimit_1 = props.isCompact ? 3 : 4;\r\n var style_1 = undefined;\r\n if (props.isCompact) {\r\n style_1 = {\r\n display: 'inline-block',\r\n width: '10px',\r\n minWidth: '10px',\r\n overflow: 'visible'\r\n };\r\n }\r\n activityPersonas\r\n .filter(function (person, index) { return index < personaLimit_1; })\r\n .forEach(function (person, index) {\r\n personaList_1.push(react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Persona__WEBPACK_IMPORTED_MODULE_5__[\"PersonaCoin\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, person, { \r\n // tslint:disable-next-line:no-string-literal\r\n key: person['key'] ? person['key'] : index, className: classNames.activityPersona, size: showSize16Personas_1 ? _Persona__WEBPACK_IMPORTED_MODULE_5__[\"PersonaSize\"].size16 : _Persona__WEBPACK_IMPORTED_MODULE_5__[\"PersonaSize\"].size32, style: style_1 })));\r\n });\r\n personaElement = react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.personaContainer }, personaList_1);\r\n }\r\n return personaElement;\r\n };\r\n return _this;\r\n }\r\n ActivityItem.prototype.render = function () {\r\n var _a = this.props, _b = _a.onRenderIcon, onRenderIcon = _b === void 0 ? this._onRenderIcon : _b, _c = _a.onRenderActivityDescription, onRenderActivityDescription = _c === void 0 ? this._onRenderActivityDescription : _c, _d = _a.onRenderComments, onRenderComments = _d === void 0 ? this._onRenderComments : _d, _e = _a.onRenderTimeStamp, onRenderTimeStamp = _e === void 0 ? this._onRenderTimeStamp : _e, animateBeaconSignal = _a.animateBeaconSignal, isCompact = _a.isCompact;\r\n var classNames = this._getClassNames(this.props);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.root, style: this.props.style },\r\n (this.props.activityPersonas || this.props.activityIcon || this.props.onRenderIcon) && (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.activityTypeIcon },\r\n animateBeaconSignal && isCompact && react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.pulsingBeacon }),\r\n onRenderIcon(this.props))),\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: classNames.activityContent },\r\n onRenderActivityDescription(this.props, this._onRenderActivityDescription),\r\n onRenderComments(this.props, this._onRenderComments),\r\n onRenderTimeStamp(this.props, this._onRenderTimeStamp))));\r\n };\r\n ActivityItem.prototype._getClassNames = function (props) {\r\n return Object(_ActivityItem_classNames__WEBPACK_IMPORTED_MODULE_3__[\"getClassNames\"])(Object(_ActivityItem_styles__WEBPACK_IMPORTED_MODULE_4__[\"getStyles\"])(undefined, props.styles, props.animateBeaconSignal, props.beaconColorOne, props.beaconColorTwo, props.isCompact), props.className, props.activityPersonas, props.isCompact);\r\n };\r\n return ActivityItem;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=ActivityItem.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js":
/*!************************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js ***!
\************************************************************************************************/
/*! exports provided: getStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getStyles\", function() { return getStyles; });\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Styling */ \"./node_modules/office-ui-fabric-react/lib/Styling.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n\r\n\r\nvar DEFAULT_PERSONA_SIZE = '32px';\r\nvar COMPACT_PERSONA_SIZE = '16px';\r\nvar DEFAULT_ICON_SIZE = '16px';\r\nvar COMPACT_ICON_SIZE = '13px';\r\nvar ANIMATION_INNER_DIMENSION = '4px';\r\nvar ANIMATION_OUTER_DIMENSION = '28px';\r\nvar ANIMATION_BORDER_WIDTH = '4px';\r\nvar getStyles = Object(_Utilities__WEBPACK_IMPORTED_MODULE_1__[\"memoizeFunction\"])(function (theme, customStyles, animateBeaconSignal, beaconColorOne, beaconColorTwo, isCompact) {\r\n if (theme === void 0) { theme = Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getTheme\"])(); }\r\n var continuousPulse = _Styling__WEBPACK_IMPORTED_MODULE_0__[\"PulsingBeaconAnimationStyles\"].continuousPulseAnimationSingle(beaconColorOne ? beaconColorOne : theme.palette.themePrimary, beaconColorTwo ? beaconColorTwo : theme.palette.themeTertiary, ANIMATION_INNER_DIMENSION, ANIMATION_OUTER_DIMENSION, ANIMATION_BORDER_WIDTH);\r\n var fadeIn = Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { opacity: 0 },\r\n to: { opacity: 1 }\r\n });\r\n var slideIn = Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"keyframes\"])({\r\n from: { transform: 'translateX(-10px)' },\r\n to: { transform: 'translateX(0)' }\r\n });\r\n var continuousPulseAnimation = {\r\n animationName: continuousPulse,\r\n animationIterationCount: '1',\r\n animationDuration: '.8s',\r\n zIndex: 1\r\n };\r\n var slideInAnimation = {\r\n animationName: slideIn,\r\n animationIterationCount: '1',\r\n animationDuration: '.5s'\r\n };\r\n var fadeInAnimation = {\r\n animationName: fadeIn,\r\n animationIterationCount: '1',\r\n animationDuration: '.5s'\r\n };\r\n var ActivityItemStyles = {\r\n root: [\r\n theme.fonts.small,\r\n {\r\n display: 'flex',\r\n justifyContent: 'flex-start',\r\n alignItems: 'flex-start',\r\n boxSizing: 'border-box',\r\n color: theme.palette.neutralSecondary\r\n },\r\n isCompact && animateBeaconSignal && fadeInAnimation\r\n ],\r\n pulsingBeacon: [\r\n {\r\n position: 'absolute',\r\n top: '50%',\r\n left: '50%',\r\n transform: 'translate(-50%, -50%)',\r\n width: '0px',\r\n height: '0px',\r\n borderRadius: '225px',\r\n borderStyle: 'solid',\r\n opacity: 0\r\n },\r\n isCompact && animateBeaconSignal && continuousPulseAnimation\r\n ],\r\n isCompactRoot: {\r\n alignItems: 'center'\r\n },\r\n personaContainer: {\r\n display: 'flex',\r\n flexWrap: 'wrap',\r\n minWidth: DEFAULT_PERSONA_SIZE,\r\n width: DEFAULT_PERSONA_SIZE,\r\n height: DEFAULT_PERSONA_SIZE\r\n },\r\n isCompactPersonaContainer: {\r\n display: 'inline-flex',\r\n flexWrap: 'nowrap',\r\n flexBasis: 'auto',\r\n height: COMPACT_PERSONA_SIZE,\r\n width: 'auto',\r\n minWidth: '0',\r\n paddingRight: '6px'\r\n },\r\n activityTypeIcon: {\r\n height: DEFAULT_PERSONA_SIZE,\r\n fontSize: DEFAULT_ICON_SIZE,\r\n lineHeight: DEFAULT_ICON_SIZE,\r\n marginTop: '3px'\r\n },\r\n isCompactIcon: {\r\n height: COMPACT_PERSONA_SIZE,\r\n minWidth: COMPACT_PERSONA_SIZE,\r\n fontSize: COMPACT_ICON_SIZE,\r\n lineHeight: COMPACT_ICON_SIZE,\r\n color: theme.palette.themePrimary,\r\n marginTop: '1px',\r\n position: 'relative',\r\n display: 'flex',\r\n justifyContent: 'center',\r\n alignItems: 'center',\r\n selectors: {\r\n '.ms-Persona-imageArea': {\r\n margin: '-2px 0 0 -2px',\r\n border: '2px solid' + theme.palette.white,\r\n borderRadius: '50%',\r\n selectors: (_a = {},\r\n _a[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n border: 'none',\r\n margin: '0'\r\n },\r\n _a)\r\n }\r\n }\r\n },\r\n activityPersona: {\r\n display: 'block'\r\n },\r\n doublePersona: {\r\n selectors: {\r\n ':first-child': {\r\n alignSelf: 'flex-end'\r\n }\r\n }\r\n },\r\n isCompactPersona: {\r\n display: 'inline-block',\r\n width: '8px',\r\n minWidth: '8px',\r\n overflow: 'visible'\r\n },\r\n activityContent: [\r\n {\r\n padding: '0 8px'\r\n },\r\n isCompact && animateBeaconSignal && slideInAnimation\r\n ],\r\n activityText: {\r\n display: 'inline'\r\n },\r\n isCompactContent: {\r\n flex: '1',\r\n padding: '0 4px',\r\n whiteSpace: 'nowrap',\r\n textOverflow: 'ellipsis',\r\n overflowX: 'hidden'\r\n },\r\n commentText: {\r\n color: theme.palette.neutralPrimary\r\n },\r\n timeStamp: [\r\n theme.fonts.tiny,\r\n {\r\n fontWeight: 400,\r\n color: theme.palette.neutralSecondary\r\n }\r\n ],\r\n isCompactTimeStamp: {\r\n display: 'inline-block',\r\n paddingLeft: '0.3em',\r\n fontSize: '1em'\r\n }\r\n };\r\n return Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"concatStyleSets\"])(ActivityItemStyles, customStyles);\r\n var _a;\r\n});\r\n//# sourceMappingURL=ActivityItem.styles.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.styles.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js":
/*!**********************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js ***!
\**********************************************************************************/
/*! exports provided: ActivityItem */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _ActivityItem__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ActivityItem */ \"./node_modules/office-ui-fabric-react/lib/components/ActivityItem/ActivityItem.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ActivityItem\", function() { return _ActivityItem__WEBPACK_IMPORTED_MODULE_0__[\"ActivityItem\"]; });\n\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/ActivityItem/index.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js":
/*!*********************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js ***!
\*********************************************************************************/
/*! exports provided: Autofill, BaseAutoFill */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Autofill\", function() { return Autofill; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaseAutoFill\", function() { return BaseAutoFill; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n\r\n\r\n\r\nvar SELECTION_FORWARD = 'forward';\r\nvar SELECTION_BACKWARD = 'backward';\r\nvar Autofill = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Autofill, _super);\r\n function Autofill(props) {\r\n var _this = _super.call(this, props) || this;\r\n _this._inputElement = react__WEBPACK_IMPORTED_MODULE_1__[\"createRef\"]();\r\n _this._autoFillEnabled = true;\r\n // Composition events are used when the character/text requires several keystrokes to be completed.\r\n // Some examples of this are mobile text input and langauges like Japanese or Arabic.\r\n // Find out more at https://developer.mozilla.org/en-US/docs/Web/Events/compositionstart\r\n _this._onCompositionStart = function (ev) {\r\n _this._autoFillEnabled = false;\r\n };\r\n // Composition events are used when the character/text requires several keystrokes to be completed.\r\n // Some examples of this are mobile text input and langauges like Japanese or Arabic.\r\n // Find out more at https://developer.mozilla.org/en-US/docs/Web/Events/compositionstart\r\n _this._onCompositionEnd = function (ev) {\r\n var inputValue = _this._getCurrentInputValue();\r\n _this._tryEnableAutofill(inputValue, _this.value, false, true);\r\n // Korean characters typing issue has been addressed in React 16.5\r\n // TODO: revert back below lines when we upgrade to React 16.5\r\n // Find out at https://github.com/facebook/react/pull/12563/commits/06524c6c542c571705c0fd7df61ac48f3d5ce244\r\n var isKorean = ev.nativeEvent.locale === 'ko';\r\n // Due to timing, this needs to be async, otherwise no text will be selected.\r\n _this._async.setTimeout(function () {\r\n var updatedInputValue = isKorean ? _this.value : inputValue;\r\n _this._updateValue(updatedInputValue);\r\n }, 0);\r\n };\r\n _this._onClick = function () {\r\n if (_this._value && _this._value !== '' && _this._autoFillEnabled) {\r\n _this._autoFillEnabled = false;\r\n }\r\n };\r\n _this._onKeyDown = function (ev) {\r\n if (_this.props.onKeyDown) {\r\n _this.props.onKeyDown(ev);\r\n }\r\n // If the event is actively being composed, then don't alert autofill.\r\n // Right now typing does not have isComposing, once that has been fixed any should be removed.\r\n if (!ev.nativeEvent.isComposing) {\r\n switch (ev.which) {\r\n case _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].backspace:\r\n _this._autoFillEnabled = false;\r\n break;\r\n case _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].left:\r\n case _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].right:\r\n if (_this._autoFillEnabled) {\r\n _this._value = _this.state.displayValue;\r\n _this._autoFillEnabled = false;\r\n }\r\n break;\r\n default:\r\n if (!_this._autoFillEnabled) {\r\n if (_this.props.enableAutofillOnKeyPress.indexOf(ev.which) !== -1) {\r\n _this._autoFillEnabled = true;\r\n }\r\n }\r\n break;\r\n }\r\n }\r\n };\r\n _this._onInputChanged = function (ev) {\r\n var value = _this._getCurrentInputValue(ev);\r\n // Right now typing does not have isComposing, once that has been fixed any should be removed.\r\n _this._tryEnableAutofill(value, _this._value, ev.nativeEvent.isComposing);\r\n _this._updateValue(value);\r\n };\r\n _this._onChanged = function () {\r\n // Swallow this event, we don't care about it\r\n // We must provide it because React PropTypes marks it as required, but onInput serves the correct purpose\r\n return;\r\n };\r\n /**\r\n * Updates the current input value as well as getting a new display value.\r\n * @param newValue The new value from the input\r\n */\r\n _this._updateValue = function (newValue) {\r\n // Only proceed if the value is nonempty and is different from the old value\r\n // This is to work around the fact that, in IE 11, inputs with a placeholder fire an onInput event on focus\r\n if (!newValue && newValue === _this._value) {\r\n return;\r\n }\r\n _this._value = _this.props.onInputChange ? _this.props.onInputChange(newValue) : newValue;\r\n _this.setState({\r\n displayValue: _this._getDisplayValue(_this._value, _this.props.suggestedDisplayValue)\r\n }, function () { return _this._notifyInputChange(_this._value); });\r\n };\r\n _this._value = props.defaultVisibleValue || '';\r\n _this.state = {\r\n displayValue: props.defaultVisibleValue || ''\r\n };\r\n return _this;\r\n }\r\n Object.defineProperty(Autofill.prototype, \"cursorLocation\", {\r\n get: function () {\r\n if (this._inputElement.current) {\r\n var inputElement = this._inputElement.current;\r\n if (inputElement.selectionDirection !== SELECTION_FORWARD) {\r\n return inputElement.selectionEnd;\r\n }\r\n else {\r\n return inputElement.selectionStart;\r\n }\r\n }\r\n else {\r\n return -1;\r\n }\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(Autofill.prototype, \"isValueSelected\", {\r\n get: function () {\r\n return Boolean(this.inputElement && this.inputElement.selectionStart !== this.inputElement.selectionEnd);\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(Autofill.prototype, \"value\", {\r\n get: function () {\r\n return this._value;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(Autofill.prototype, \"selectionStart\", {\r\n get: function () {\r\n return this._inputElement.current ? this._inputElement.current.selectionStart : -1;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(Autofill.prototype, \"selectionEnd\", {\r\n get: function () {\r\n return this._inputElement.current ? this._inputElement.current.selectionEnd : -1;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(Autofill.prototype, \"inputElement\", {\r\n get: function () {\r\n return this._inputElement.current;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Autofill.prototype.componentWillReceiveProps = function (nextProps) {\r\n var newValue;\r\n if (this.props.updateValueInWillReceiveProps) {\r\n newValue = this.props.updateValueInWillReceiveProps();\r\n }\r\n newValue = this._getDisplayValue(newValue ? newValue : this._value, nextProps.suggestedDisplayValue);\r\n if (typeof newValue === 'string') {\r\n this.setState({ displayValue: newValue });\r\n }\r\n };\r\n Autofill.prototype.componentDidUpdate = function () {\r\n var value = this._value;\r\n var _a = this.props, suggestedDisplayValue = _a.suggestedDisplayValue, shouldSelectFullInputValueInComponentDidUpdate = _a.shouldSelectFullInputValueInComponentDidUpdate, preventValueSelection = _a.preventValueSelection;\r\n var differenceIndex = 0;\r\n if (preventValueSelection) {\r\n return;\r\n }\r\n if (this._autoFillEnabled && value && suggestedDisplayValue && this._doesTextStartWith(suggestedDisplayValue, value)) {\r\n var shouldSelectFullRange = false;\r\n if (shouldSelectFullInputValueInComponentDidUpdate) {\r\n shouldSelectFullRange = shouldSelectFullInputValueInComponentDidUpdate();\r\n }\r\n if (shouldSelectFullRange && this._inputElement.current) {\r\n this._inputElement.current.setSelectionRange(0, suggestedDisplayValue.length, SELECTION_BACKWARD);\r\n }\r\n else {\r\n while (differenceIndex < value.length &&\r\n value[differenceIndex].toLocaleLowerCase() === suggestedDisplayValue[differenceIndex].toLocaleLowerCase()) {\r\n differenceIndex++;\r\n }\r\n if (differenceIndex > 0 && this._inputElement.current) {\r\n this._inputElement.current.setSelectionRange(differenceIndex, suggestedDisplayValue.length, SELECTION_BACKWARD);\r\n }\r\n }\r\n }\r\n };\r\n Autofill.prototype.render = function () {\r\n var displayValue = this.state.displayValue;\r\n var nativeProps = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getNativeProps\"])(this.props, _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"inputProperties\"]);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"input\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, nativeProps, { ref: this._inputElement, value: displayValue, autoCapitalize: 'off', autoComplete: 'off', onCompositionStart: this._onCompositionStart, onCompositionEnd: this._onCompositionEnd, onChange: this._onChanged, onInput: this._onInputChanged, onKeyDown: this._onKeyDown, onClick: this.props.onClick ? this.props.onClick : this._onClick, \"data-lpignore\": true })));\r\n };\r\n Autofill.prototype.focus = function () {\r\n this._inputElement.current && this._inputElement.current.focus();\r\n };\r\n Autofill.prototype.clear = function () {\r\n this._autoFillEnabled = true;\r\n this._updateValue('');\r\n this._inputElement.current && this._inputElement.current.setSelectionRange(0, 0);\r\n };\r\n Autofill.prototype._getCurrentInputValue = function (ev) {\r\n if (ev && ev.target && ev.target.value) {\r\n return ev.target.value;\r\n }\r\n else if (this.inputElement && this.inputElement.value) {\r\n return this.inputElement.value;\r\n }\r\n else {\r\n return '';\r\n }\r\n };\r\n /**\r\n * Attempts to enable autofill. Whether or not autofill is enabled depends on the input value,\r\n * whether or not any text is selected, and only if the new input value is longer than the old input value.\r\n * Autofill should never be set to true if the value is composing. Once compositionEnd is called, then\r\n * it should be completed.\r\n * See https://developer.mozilla.org/en-US/docs/Web/API/CompositionEvent for more information on composition.\r\n * @param newValue\r\n * @param oldValue\r\n * @param isComposing if true then the text is actively being composed and it has not completed.\r\n * @param isComposed if the text is a composed text value.\r\n */\r\n Autofill.prototype._tryEnableAutofill = function (newValue, oldValue, isComposing, isComposed) {\r\n if (!isComposing &&\r\n newValue &&\r\n this._inputElement.current &&\r\n this._inputElement.current.selectionStart === newValue.length &&\r\n !this._autoFillEnabled &&\r\n (newValue.length > oldValue.length || isComposed)) {\r\n this._autoFillEnabled = true;\r\n }\r\n };\r\n Autofill.prototype._notifyInputChange = function (newValue) {\r\n if (this.props.onInputValueChange) {\r\n this.props.onInputValueChange(newValue);\r\n }\r\n };\r\n /**\r\n * Returns a string that should be used as the display value.\r\n * It evaluates this based on whether or not the suggested value starts with the input value\r\n * and whether or not autofill is enabled.\r\n * @param inputValue the value that the input currently has.\r\n * @param suggestedDisplayValue the possible full value\r\n */\r\n Autofill.prototype._getDisplayValue = function (inputValue, suggestedDisplayValue) {\r\n var displayValue = inputValue;\r\n if (suggestedDisplayValue && inputValue && this._doesTextStartWith(suggestedDisplayValue, displayValue) && this._autoFillEnabled) {\r\n displayValue = suggestedDisplayValue;\r\n }\r\n return displayValue;\r\n };\r\n Autofill.prototype._doesTextStartWith = function (text, startWith) {\r\n if (!text || !startWith) {\r\n return false;\r\n }\r\n return text.toLocaleLowerCase().indexOf(startWith.toLocaleLowerCase()) === 0;\r\n };\r\n Autofill.defaultProps = {\r\n enableAutofillOnKeyPress: [_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].down, _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].up]\r\n };\r\n return Autofill;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]));\r\n\r\n/**\r\n * @deprecated do not use.\r\n */\r\nvar BaseAutoFill = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](BaseAutoFill, _super);\r\n function BaseAutoFill() {\r\n return _super !== null && _super.apply(this, arguments) || this;\r\n }\r\n return BaseAutoFill;\r\n}(Autofill));\r\n\r\n//# sourceMappingURL=Autofill.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js":
/*!******************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js ***!
\******************************************************************************/
/*! exports provided: Autofill, BaseAutoFill */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Autofill__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Autofill */ \"./node_modules/office-ui-fabric-react/lib/components/Autofill/Autofill.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Autofill\", function() { return _Autofill__WEBPACK_IMPORTED_MODULE_0__[\"Autofill\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BaseAutoFill\", function() { return _Autofill__WEBPACK_IMPORTED_MODULE_0__[\"BaseAutoFill\"]; });\n\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Autofill/index.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js":
/*!******************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js ***!
\******************************************************************************************/
/*! exports provided: BreadcrumbBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BreadcrumbBase\", function() { return BreadcrumbBase; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _FocusZone__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../FocusZone */ \"./node_modules/office-ui-fabric-react/lib/FocusZone.js\");\n/* harmony import */ var _Link__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../Link */ \"./node_modules/office-ui-fabric-react/lib/Link.js\");\n/* harmony import */ var _Icon__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../Icon */ \"./node_modules/office-ui-fabric-react/lib/Icon.js\");\n/* harmony import */ var _Button__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../../Button */ \"./node_modules/office-ui-fabric-react/lib/Button.js\");\n/* harmony import */ var _common_DirectionalHint__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../../common/DirectionalHint */ \"./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js\");\n/* harmony import */ var _ResizeGroup__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../ResizeGroup */ \"./node_modules/office-ui-fabric-react/lib/ResizeGroup.js\");\n/* harmony import */ var _Tooltip__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ../../Tooltip */ \"./node_modules/office-ui-fabric-react/lib/Tooltip.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nvar getClassNames = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"classNamesFunction\"])();\r\nvar OVERFLOW_KEY = 'overflow';\r\nvar nullFunction = function () { return null; };\r\nvar BreadcrumbBase = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](BreadcrumbBase, _super);\r\n function BreadcrumbBase(props) {\r\n var _this = _super.call(this, props) || this;\r\n _this._focusZone = react__WEBPACK_IMPORTED_MODULE_1__[\"createRef\"]();\r\n _this._onReduceData = function (data) {\r\n var renderedItems = data.renderedItems, renderedOverflowItems = data.renderedOverflowItems;\r\n var overflowIndex = data.props.overflowIndex;\r\n var movedItem = renderedItems[overflowIndex];\r\n renderedItems = renderedItems.slice();\r\n renderedItems.splice(overflowIndex, 1);\r\n renderedOverflowItems = renderedOverflowItems.concat([movedItem]);\r\n if (movedItem !== undefined) {\r\n return tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, data, { renderedItems: renderedItems, renderedOverflowItems: renderedOverflowItems });\r\n }\r\n };\r\n _this._onRenderBreadcrumb = function (data) {\r\n var _a = data.props, ariaLabel = _a.ariaLabel, _b = _a.dividerAs, DividerType = _b === void 0 ? _Icon__WEBPACK_IMPORTED_MODULE_5__[\"Icon\"] : _b, _c = _a.onRenderItem, onRenderItem = _c === void 0 ? _this._onRenderItem : _c, overflowAriaLabel = _a.overflowAriaLabel, overflowIndex = _a.overflowIndex;\r\n var renderedOverflowItems = data.renderedOverflowItems, renderedItems = data.renderedItems;\r\n var contextualItems = renderedOverflowItems.map(function (item, index) { return ({\r\n name: item.text,\r\n key: item.key,\r\n onClick: item.onClick ? _this._onBreadcrumbClicked.bind(_this, item) : null,\r\n href: item.href\r\n }); });\r\n // Find index of last rendered item so the divider icon\r\n // knows not to render on that item\r\n var lastItemIndex = renderedItems.length - 1;\r\n var hasOverflowItems = renderedOverflowItems && renderedOverflowItems.length !== 0;\r\n var itemElements = renderedItems.map(function (item, index) { return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"li\", { className: _this._classNames.listItem, key: item.key || String(index) },\r\n onRenderItem(item, _this._onRenderItem),\r\n (index !== lastItemIndex || (hasOverflowItems && index === overflowIndex - 1)) && (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](DividerType, { className: _this._classNames.chevron, iconName: Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getRTL\"])() ? 'ChevronLeft' : 'ChevronRight', item: item })))); });\r\n if (hasOverflowItems) {\r\n itemElements.splice(overflowIndex, 0, react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"li\", { className: _this._classNames.overflow, key: OVERFLOW_KEY },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Button__WEBPACK_IMPORTED_MODULE_6__[\"IconButton\"], { className: _this._classNames.overflowButton, iconProps: { iconName: 'More' }, role: \"button\", \"aria-haspopup\": \"true\", ariaLabel: overflowAriaLabel, onRenderMenuIcon: nullFunction, menuProps: {\r\n items: contextualItems,\r\n directionalHint: _common_DirectionalHint__WEBPACK_IMPORTED_MODULE_7__[\"DirectionalHint\"].bottomLeftEdge\r\n } }),\r\n overflowIndex !== lastItemIndex + 1 && (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](DividerType, { className: _this._classNames.chevron, iconName: Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getRTL\"])() ? 'ChevronLeft' : 'ChevronRight', item: renderedOverflowItems[renderedOverflowItems.length - 1] }))));\r\n }\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: _this._classNames.root, role: \"navigation\", \"aria-label\": ariaLabel },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_FocusZone__WEBPACK_IMPORTED_MODULE_3__[\"FocusZone\"], { componentRef: _this._focusZone, direction: _FocusZone__WEBPACK_IMPORTED_MODULE_3__[\"FocusZoneDirection\"].horizontal },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"ol\", { className: _this._classNames.list }, itemElements))));\r\n };\r\n _this._onRenderItem = function (item) {\r\n if (item.onClick || item.href) {\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Link__WEBPACK_IMPORTED_MODULE_4__[\"Link\"], { className: _this._classNames.itemLink, href: item.href, \"aria-current\": item.isCurrentItem ? 'page' : undefined, onClick: _this._onBreadcrumbClicked.bind(_this, item) },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Tooltip__WEBPACK_IMPORTED_MODULE_9__[\"TooltipHost\"], { content: item.text, overflowMode: _Tooltip__WEBPACK_IMPORTED_MODULE_9__[\"TooltipOverflowMode\"].Parent }, item.text)));\r\n }\r\n else {\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { className: _this._classNames.item },\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Tooltip__WEBPACK_IMPORTED_MODULE_9__[\"TooltipHost\"], { content: item.text, overflowMode: _Tooltip__WEBPACK_IMPORTED_MODULE_9__[\"TooltipOverflowMode\"].Parent }, item.text)));\r\n }\r\n };\r\n _this._onBreadcrumbClicked = function (item, ev) {\r\n if (item.onClick) {\r\n item.onClick(ev, item);\r\n }\r\n };\r\n _this._validateProps(props);\r\n return _this;\r\n }\r\n /**\r\n * Sets focus to the first breadcrumb link.\r\n */\r\n BreadcrumbBase.prototype.focus = function () {\r\n if (this._focusZone.current) {\r\n this._focusZone.current.focus();\r\n }\r\n };\r\n BreadcrumbBase.prototype.render = function () {\r\n var _a = this.props, _b = _a.onReduceData, onReduceData = _b === void 0 ? this._onReduceData : _b, overflowIndex = _a.overflowIndex, maxDisplayedItems = _a.maxDisplayedItems, items = _a.items, className = _a.className, theme = _a.theme, styles = _a.styles;\r\n var renderedItems = items.slice();\r\n var renderedOverflowItems = renderedItems.splice(overflowIndex, renderedItems.length - maxDisplayedItems);\r\n var breadCrumbData = {\r\n props: this.props,\r\n renderedItems: renderedItems,\r\n renderedOverflowItems: renderedOverflowItems\r\n };\r\n this._classNames = getClassNames(styles, {\r\n className: className,\r\n theme: theme\r\n });\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_ResizeGroup__WEBPACK_IMPORTED_MODULE_8__[\"ResizeGroup\"], { onRenderData: this._onRenderBreadcrumb, onReduceData: onReduceData, data: breadCrumbData });\r\n };\r\n BreadcrumbBase.prototype.componentWillReceiveProps = function (nextProps) {\r\n this._validateProps(nextProps);\r\n };\r\n /**\r\n * Validate incoming props\r\n * @param props Props to validate\r\n */\r\n BreadcrumbBase.prototype._validateProps = function (props) {\r\n var maxDisplayedItems = props.maxDisplayedItems, overflowIndex = props.overflowIndex, items = props.items;\r\n if (overflowIndex < 0 ||\r\n (maxDisplayedItems > 1 && overflowIndex > maxDisplayedItems - 1) ||\r\n (items.length > 0 && overflowIndex > items.length - 1)) {\r\n throw new Error('Breadcrumb: overflowIndex out of range');\r\n }\r\n };\r\n BreadcrumbBase.defaultProps = {\r\n items: [],\r\n maxDisplayedItems: 999,\r\n overflowIndex: 0\r\n };\r\n return BreadcrumbBase;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=Breadcrumb.base.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js":
/*!*************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js ***!
\*************************************************************************************/
/*! exports provided: Breadcrumb */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Breadcrumb\", function() { return Breadcrumb; });\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Breadcrumb_base__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Breadcrumb.base */ \"./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js\");\n/* harmony import */ var _Breadcrumb_styles__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./Breadcrumb.styles */ \"./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js\");\n\r\n\r\n\r\nvar Breadcrumb = Object(_Utilities__WEBPACK_IMPORTED_MODULE_0__[\"styled\"])(_Breadcrumb_base__WEBPACK_IMPORTED_MODULE_1__[\"BreadcrumbBase\"], _Breadcrumb_styles__WEBPACK_IMPORTED_MODULE_2__[\"getStyles\"], undefined, { scope: 'Breadcrumb' });\r\n//# sourceMappingURL=Breadcrumb.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js":
/*!********************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js ***!
\********************************************************************************************/
/*! exports provided: getStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getStyles\", function() { return getStyles; });\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Styling */ \"./node_modules/office-ui-fabric-react/lib/Styling.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n\r\n\r\nvar SingleLineTextStyle = {\r\n whiteSpace: 'nowrap',\r\n textOverflow: 'ellipsis',\r\n overflow: 'hidden'\r\n};\r\nvar MinimumScreenSelector = Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getScreenSelector\"])(0, _Styling__WEBPACK_IMPORTED_MODULE_0__[\"ScreenWidthMaxSmall\"]);\r\nvar MediumScreenSelector = Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getScreenSelector\"])(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"ScreenWidthMinMedium\"], _Styling__WEBPACK_IMPORTED_MODULE_0__[\"ScreenWidthMaxMedium\"]);\r\nvar getStyles = function (props) {\r\n var className = props.className, theme = props.theme;\r\n var overflowButtonFontSize = 16;\r\n var chevronSmallFontSize = 8;\r\n return {\r\n root: [\r\n 'ms-Breadcrumb',\r\n theme.fonts.medium,\r\n {\r\n margin: '23px 0 1px'\r\n },\r\n className\r\n ],\r\n list: [\r\n 'ms-Breadcrumb-list',\r\n {\r\n whiteSpace: 'nowrap',\r\n padding: 0,\r\n margin: 0,\r\n display: 'flex',\r\n alignItems: 'stretch'\r\n }\r\n ],\r\n listItem: [\r\n 'ms-Breadcrumb-listItem',\r\n {\r\n listStyleType: 'none',\r\n margin: '0',\r\n padding: '0',\r\n display: 'flex',\r\n position: 'relative',\r\n alignItems: 'center'\r\n }\r\n ],\r\n chevron: [\r\n 'ms-Breadcrumb-chevron',\r\n {\r\n color: theme.palette.neutralSecondary,\r\n fontSize: theme.fonts.small.fontSize,\r\n selectors: (_a = {},\r\n _a[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n color: 'WindowText',\r\n MsHighContrastAdjust: 'none'\r\n },\r\n _a[MediumScreenSelector] = {\r\n fontSize: chevronSmallFontSize\r\n },\r\n _a[MinimumScreenSelector] = {\r\n fontSize: chevronSmallFontSize\r\n },\r\n _a)\r\n }\r\n ],\r\n overflow: [\r\n 'ms-Breadcrumb-overflow',\r\n {\r\n position: 'relative',\r\n display: 'flex',\r\n alignItems: 'center'\r\n }\r\n ],\r\n overflowButton: [\r\n 'ms-Breadcrumb-overflowButton',\r\n Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getFocusStyle\"])(theme),\r\n SingleLineTextStyle,\r\n {\r\n fontSize: overflowButtonFontSize,\r\n height: '100%',\r\n cursor: 'pointer',\r\n selectors: (_b = {\r\n ':hover': {\r\n backgroundColor: theme.palette.neutralLighter\r\n },\r\n ':active': {\r\n backgroundColor: theme.palette.neutralTertiaryAlt,\r\n color: theme.semanticColors.bodyText\r\n },\r\n ':hover:active': {\r\n // This seems unnecessary.\r\n backgroundColor: theme.palette.neutralQuaternary\r\n }\r\n },\r\n _b[MinimumScreenSelector] = {\r\n padding: '4px 6px'\r\n },\r\n _b[MediumScreenSelector] = {\r\n fontSize: theme.fonts.mediumPlus.fontSize\r\n },\r\n _b)\r\n }\r\n ],\r\n itemLink: [\r\n 'ms-Breadcrumb-itemLink',\r\n Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"getFocusStyle\"])(theme),\r\n SingleLineTextStyle,\r\n theme.fonts.xLarge,\r\n {\r\n textDecoration: 'none',\r\n color: theme.semanticColors.bodyText,\r\n padding: '0 8px',\r\n selectors: (_c = {\r\n ':hover': {\r\n backgroundColor: theme.semanticColors.menuItemBackgroundHovered,\r\n color: 'initial',\r\n cursor: 'pointer',\r\n selectors: (_d = {},\r\n _d[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n color: 'Highlight'\r\n },\r\n _d)\r\n },\r\n ':focus': {\r\n color: theme.palette.neutralDark\r\n },\r\n ':active': {\r\n backgroundColor: theme.palette.neutralTertiaryAlt,\r\n color: theme.palette.neutralPrimary\r\n }\r\n },\r\n _c[MediumScreenSelector] = theme.fonts.large,\r\n _c[MinimumScreenSelector] = [theme.fonts.medium],\r\n _c[\".\" + _Utilities__WEBPACK_IMPORTED_MODULE_1__[\"IsFocusVisibleClassName\"] + \" &:focus\"] = {\r\n outline: \"none\"\r\n },\r\n _c)\r\n }\r\n ],\r\n item: [\r\n 'ms-Breadcrumb-item',\r\n theme.fonts.xLarge,\r\n {\r\n color: theme.semanticColors.bodyText,\r\n padding: '0 8px',\r\n selectors: {\r\n ':hover': {\r\n cursor: 'default'\r\n }\r\n }\r\n }\r\n ]\r\n };\r\n var _a, _b, _c, _d;\r\n};\r\n//# sourceMappingURL=Breadcrumb.styles.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.styles.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js":
/*!********************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js ***!
\********************************************************************************/
/*! exports provided: Breadcrumb, BreadcrumbBase */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _Breadcrumb__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Breadcrumb */ \"./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Breadcrumb\", function() { return _Breadcrumb__WEBPACK_IMPORTED_MODULE_0__[\"Breadcrumb\"]; });\n\n/* harmony import */ var _Breadcrumb_base__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Breadcrumb.base */ \"./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/Breadcrumb.base.js\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"BreadcrumbBase\", function() { return _Breadcrumb_base__WEBPACK_IMPORTED_MODULE_1__[\"BreadcrumbBase\"]; });\n\n\r\n\r\n//# sourceMappingURL=index.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Breadcrumb/index.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js":
/*!************************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js ***!
\************************************************************************************************/
/*! exports provided: ActionButton */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ActionButton\", function() { return ActionButton; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _BaseButton__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../BaseButton */ \"./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _ActionButton_styles__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./ActionButton.styles */ \"./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js\");\n\r\n\r\n\r\n\r\n\r\nvar ActionButton = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](ActionButton, _super);\r\n function ActionButton() {\r\n var _this = _super !== null && _super.apply(this, arguments) || this;\r\n /**\r\n * Tell BaseComponent to bypass resolution of componentRef.\r\n */\r\n _this._skipComponentRefResolution = true;\r\n return _this;\r\n }\r\n ActionButton.prototype.render = function () {\r\n var _a = this.props, styles = _a.styles, theme = _a.theme;\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_BaseButton__WEBPACK_IMPORTED_MODULE_2__[\"BaseButton\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, this.props, { variantClassName: \"ms-Button--action ms-Button--command\", styles: Object(_ActionButton_styles__WEBPACK_IMPORTED_MODULE_4__[\"getStyles\"])(theme, styles), onRenderDescription: _Utilities__WEBPACK_IMPORTED_MODULE_3__[\"nullRender\"] })));\r\n };\r\n ActionButton = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__decorate\"]([\r\n Object(_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"customizable\"])('ActionButton', ['theme', 'styles'], true)\r\n ], ActionButton);\r\n return ActionButton;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_3__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=ActionButton.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js":
/*!*******************************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js ***!
\*******************************************************************************************************/
/*! exports provided: getStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getStyles\", function() { return getStyles; });\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../Styling */ \"./node_modules/office-ui-fabric-react/lib/Styling.js\");\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _BaseButton_styles__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../BaseButton.styles */ \"./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js\");\n\r\n\r\n\r\nvar DEFAULT_BUTTON_HEIGHT = '40px';\r\nvar DEFAULT_PADDING = '0 4px';\r\nvar getStyles = Object(_Utilities__WEBPACK_IMPORTED_MODULE_1__[\"memoizeFunction\"])(function (theme, customStyles) {\r\n var baseButtonStyles = Object(_BaseButton_styles__WEBPACK_IMPORTED_MODULE_2__[\"getStyles\"])(theme);\r\n var actionButtonStyles = {\r\n root: {\r\n padding: DEFAULT_PADDING,\r\n height: DEFAULT_BUTTON_HEIGHT,\r\n color: theme.palette.neutralPrimary,\r\n backgroundColor: 'transparent',\r\n border: '1px solid transparent'\r\n },\r\n rootHovered: {\r\n color: theme.palette.themePrimary,\r\n selectors: (_a = {},\r\n _a[_Styling__WEBPACK_IMPORTED_MODULE_0__[\"HighContrastSelector\"]] = {\r\n borderColor: 'Highlight',\r\n color: 'Highlight'\r\n },\r\n _a)\r\n },\r\n iconHovered: {\r\n color: theme.palette.themePrimary\r\n },\r\n rootPressed: {\r\n color: theme.palette.black\r\n },\r\n rootExpanded: {\r\n color: theme.palette.themePrimary\r\n },\r\n iconPressed: {\r\n color: theme.palette.themeDarker\r\n },\r\n rootDisabled: {\r\n color: theme.palette.neutralTertiary,\r\n backgroundColor: 'transparent'\r\n },\r\n rootChecked: {\r\n color: theme.palette.black\r\n },\r\n iconChecked: {\r\n color: theme.palette.themeDarker\r\n },\r\n flexContainer: {\r\n justifyContent: 'flex-start'\r\n },\r\n icon: {\r\n color: theme.palette.themeDarkAlt\r\n },\r\n iconDisabled: {\r\n color: 'inherit'\r\n },\r\n menuIcon: {\r\n color: theme.palette.neutralSecondary\r\n },\r\n textContainer: {\r\n flexGrow: 0\r\n }\r\n };\r\n return Object(_Styling__WEBPACK_IMPORTED_MODULE_0__[\"concatStyleSets\"])(baseButtonStyles, actionButtonStyles, customStyles);\r\n var _a;\r\n});\r\n//# sourceMappingURL=ActionButton.styles.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.styles.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js":
/*!********************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js ***!
\********************************************************************************************/
/*! exports provided: ButtonGlobalClassNames, getBaseButtonClassNames */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ButtonGlobalClassNames\", function() { return ButtonGlobalClassNames; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getBaseButtonClassNames\", function() { return getBaseButtonClassNames; });\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../Styling */ \"./node_modules/office-ui-fabric-react/lib/Styling.js\");\n\r\n\r\n\r\nvar ButtonGlobalClassNames = {\r\n msButton: 'ms-Button',\r\n msButtonIcon: 'ms-Button-icon',\r\n msButtonMenuIcon: 'ms-Button-menuIcon',\r\n msButtonLabel: 'ms-Button-label',\r\n msButtonDescription: 'ms-Button-description',\r\n msButtonScreenReaderText: 'ms-Button-screenReaderText',\r\n msButtonFlexContainer: 'ms-Button-flexContainer',\r\n msButtonTextContainer: 'ms-Button-textContainer'\r\n};\r\nvar getBaseButtonClassNames = Object(_Utilities__WEBPACK_IMPORTED_MODULE_0__[\"memoizeFunction\"])(function (theme, styles, className, variantClassName, iconClassName, menuIconClassName, disabled, checked, expanded, isSplit) {\r\n var classNames = Object(_Styling__WEBPACK_IMPORTED_MODULE_1__[\"getGlobalClassNames\"])(ButtonGlobalClassNames, theme || {});\r\n var isExpanded = expanded && !isSplit;\r\n return Object(_Styling__WEBPACK_IMPORTED_MODULE_1__[\"mergeStyleSets\"])({\r\n root: [\r\n classNames.msButton,\r\n styles.root,\r\n variantClassName,\r\n checked && ['is-checked', styles.rootChecked],\r\n isExpanded && [\r\n 'is-expanded',\r\n styles.rootExpanded,\r\n {\r\n selectors: (_a = {},\r\n _a[\":hover .\" + classNames.msButtonIcon] = styles.iconExpandedHovered,\r\n // menuIcon falls back to rootExpandedHovered to support original behavior\r\n _a[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconExpandedHovered || styles.rootExpandedHovered,\r\n _a[':hover'] = styles.rootExpandedHovered,\r\n _a)\r\n }\r\n ],\r\n disabled && ['is-disabled', styles.rootDisabled],\r\n !disabled &&\r\n !isExpanded &&\r\n !checked && {\r\n selectors: (_b = {\r\n ':hover': styles.rootHovered\r\n },\r\n _b[\":hover .\" + classNames.msButtonLabel] = styles.labelHovered,\r\n _b[\":hover .\" + classNames.msButtonIcon] = styles.iconHovered,\r\n _b[\":hover .\" + classNames.msButtonDescription] = styles.descriptionHovered,\r\n _b[\":hover .\" + classNames.msButtonMenuIcon] = styles.menuIconHovered,\r\n _b[':focus'] = styles.rootFocused,\r\n _b[':active'] = styles.rootPressed,\r\n _b[\":active .\" + classNames.msButtonIcon] = styles.iconPressed,\r\n _b[\":active .\" + classNames.msButtonDescription] = styles.descriptionPressed,\r\n _b[\":active .\" + classNames.msButtonMenuIcon] = styles.menuIconPressed,\r\n _b)\r\n },\r\n disabled && checked && [styles.rootCheckedDisabled],\r\n !disabled &&\r\n checked && {\r\n selectors: {\r\n ':hover': styles.rootCheckedHovered,\r\n ':active': styles.rootCheckedPressed\r\n }\r\n },\r\n className\r\n ],\r\n flexContainer: [classNames.msButtonFlexContainer, styles.flexContainer],\r\n textContainer: [classNames.msButtonTextContainer, styles.textContainer],\r\n icon: [\r\n classNames.msButtonIcon,\r\n iconClassName,\r\n styles.icon,\r\n isExpanded && styles.iconExpanded,\r\n checked && styles.iconChecked,\r\n disabled && styles.iconDisabled\r\n ],\r\n label: [classNames.msButtonLabel, styles.label, checked && styles.labelChecked, disabled && styles.labelDisabled],\r\n menuIcon: [\r\n classNames.msButtonMenuIcon,\r\n menuIconClassName,\r\n styles.menuIcon,\r\n checked && styles.menuIconChecked,\r\n disabled && styles.menuIconDisabled,\r\n !disabled &&\r\n !isExpanded &&\r\n !checked && {\r\n selectors: {\r\n ':hover': styles.menuIconHovered,\r\n ':active': styles.menuIconPressed\r\n }\r\n },\r\n isExpanded && ['is-expanded', styles.menuIconExpanded]\r\n ],\r\n description: [\r\n classNames.msButtonDescription,\r\n styles.description,\r\n checked && styles.descriptionChecked,\r\n disabled && styles.descriptionDisabled\r\n ],\r\n screenReaderText: [classNames.msButtonScreenReaderText, styles.screenReaderText]\r\n });\r\n var _a, _b;\r\n});\r\n//# sourceMappingURL=BaseButton.classNames.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js":
/*!*********************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js ***!
\*********************************************************************************/
/*! exports provided: BaseButton */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"BaseButton\", function() { return BaseButton; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Icon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../Icon */ \"./node_modules/office-ui-fabric-react/lib/Icon.js\");\n/* harmony import */ var _common_DirectionalHint__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../../common/DirectionalHint */ \"./node_modules/office-ui-fabric-react/lib/common/DirectionalHint.js\");\n/* harmony import */ var _ContextualMenu__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../ContextualMenu */ \"./node_modules/office-ui-fabric-react/lib/ContextualMenu.js\");\n/* harmony import */ var _BaseButton_classNames__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./BaseButton.classNames */ \"./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.classNames.js\");\n/* harmony import */ var _SplitButton_SplitButton_classNames__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./SplitButton/SplitButton.classNames */ \"./node_modules/office-ui-fabric-react/lib/components/Button/SplitButton/SplitButton.classNames.js\");\n/* harmony import */ var _KeytipData__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ../../KeytipData */ \"./node_modules/office-ui-fabric-react/lib/KeytipData.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\nvar TouchIdleDelay = 500; /* ms */\r\nvar BaseButton = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](BaseButton, _super);\r\n function BaseButton(props, rootClassName) {\r\n var _this = _super.call(this, props) || this;\r\n _this._buttonElement = react__WEBPACK_IMPORTED_MODULE_1__[\"createRef\"]();\r\n _this._splitButtonContainer = react__WEBPACK_IMPORTED_MODULE_1__[\"createRef\"]();\r\n _this._onRenderIcon = function (buttonProps, defaultRender) {\r\n var iconProps = _this.props.iconProps;\r\n if (iconProps) {\r\n var className = iconProps.className, rest = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__rest\"](iconProps, [\"className\"]);\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Icon__WEBPACK_IMPORTED_MODULE_3__[\"Icon\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"css\"])(_this._classNames.icon, className) }, rest));\r\n }\r\n return null;\r\n };\r\n _this._onRenderTextContents = function () {\r\n var _a = _this.props, text = _a.text, children = _a.children, _b = _a.secondaryText, secondaryText = _b === void 0 ? _this.props.description : _b, _c = _a.onRenderText, onRenderText = _c === void 0 ? _this._onRenderText : _c, _d = _a.onRenderDescription, onRenderDescription = _d === void 0 ? _this._onRenderDescription : _d;\r\n if (text || typeof children === 'string' || secondaryText) {\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: _this._classNames.textContainer },\r\n onRenderText(_this.props, _this._onRenderText),\r\n onRenderDescription(_this.props, _this._onRenderDescription)));\r\n }\r\n return [onRenderText(_this.props, _this._onRenderText), onRenderDescription(_this.props, _this._onRenderDescription)];\r\n };\r\n _this._onRenderText = function () {\r\n var text = _this.props.text;\r\n var children = _this.props.children;\r\n // For backwards compat, we should continue to take in the text content from children.\r\n if (text === undefined && typeof children === 'string') {\r\n text = children;\r\n }\r\n if (_this._hasText()) {\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { key: _this._labelId, className: _this._classNames.label, id: _this._labelId }, text));\r\n }\r\n return null;\r\n };\r\n _this._onRenderChildren = function () {\r\n var children = _this.props.children;\r\n // If children is just a string, either it or the text will be rendered via onRenderLabel\r\n // If children is another component, it will be rendered after text\r\n if (typeof children === 'string') {\r\n return null;\r\n }\r\n return children;\r\n };\r\n _this._onRenderDescription = function (props) {\r\n var _a = props.secondaryText, secondaryText = _a === void 0 ? _this.props.description : _a;\r\n // ms-Button-description is only shown when the button type is compound.\r\n // In other cases it will not be displayed.\r\n return secondaryText ? (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { key: _this._descriptionId, className: _this._classNames.description, id: _this._descriptionId }, secondaryText)) : null;\r\n };\r\n _this._onRenderAriaDescription = function () {\r\n var ariaDescription = _this.props.ariaDescription;\r\n // If ariaDescription is given, descriptionId will be assigned to ariaDescriptionSpan,\r\n // otherwise it will be assigned to descriptionSpan.\r\n return ariaDescription ? (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { className: _this._classNames.screenReaderText, id: _this._ariaDescriptionId }, ariaDescription)) : null;\r\n };\r\n _this._onRenderMenuIcon = function (props) {\r\n var menuIconProps = _this.props.menuIconProps;\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_Icon__WEBPACK_IMPORTED_MODULE_3__[\"Icon\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ iconName: \"ChevronDown\" }, menuIconProps, { className: _this._classNames.menuIcon }));\r\n };\r\n _this._onRenderMenu = function (menuProps) {\r\n var _a = menuProps.onDismiss, onDismiss = _a === void 0 ? _this._dismissMenu : _a;\r\n var MenuType = _this.props.menuAs || _ContextualMenu__WEBPACK_IMPORTED_MODULE_5__[\"ContextualMenu\"];\r\n // the accessible menu label (accessible name) has a relationship to the button.\r\n // If the menu props do not specify an explicit value for aria-label or aria-labelledBy,\r\n // AND the button has text, we'll set the menu aria-labelledBy to the text element id.\r\n if (!menuProps.ariaLabel && !menuProps.labelElementId && _this._hasText()) {\r\n menuProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, menuProps, { labelElementId: _this._labelId });\r\n }\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](MenuType, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({ id: _this._labelId + '-menu', directionalHint: _common_DirectionalHint__WEBPACK_IMPORTED_MODULE_4__[\"DirectionalHint\"].bottomLeftEdge }, menuProps, { shouldFocusOnContainer: _this.state.menuProps ? _this.state.menuProps.shouldFocusOnContainer : undefined, shouldFocusOnMount: _this.state.menuProps ? _this.state.menuProps.shouldFocusOnMount : undefined, hidden: _this.state.menuProps ? _this.state.menuProps.hidden : undefined, className: Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"css\"])('ms-BaseButton-menuhost', menuProps.className), target: _this._isSplitButton ? _this._splitButtonContainer.current : _this._buttonElement.current, onDismiss: onDismiss })));\r\n };\r\n _this._dismissMenu = function () {\r\n var menuProps = null;\r\n if (_this.props.persistMenu && _this.state.menuProps) {\r\n menuProps = _this.state.menuProps;\r\n menuProps.hidden = true;\r\n }\r\n _this.setState({ menuProps: menuProps });\r\n };\r\n _this._openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\r\n if (shouldFocusOnMount === void 0) { shouldFocusOnMount = true; }\r\n if (_this.props.menuProps) {\r\n var menuProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, _this.props.menuProps, { shouldFocusOnContainer: shouldFocusOnContainer, shouldFocusOnMount: shouldFocusOnMount });\r\n if (_this.props.persistMenu) {\r\n menuProps.hidden = false;\r\n }\r\n _this.setState({ menuProps: menuProps });\r\n }\r\n };\r\n _this._onToggleMenu = function (shouldFocusOnContainer) {\r\n var currentMenuProps = _this.state.menuProps;\r\n var shouldFocusOnMount = true;\r\n if (_this.props.menuProps && _this.props.menuProps.shouldFocusOnMount === false) {\r\n shouldFocusOnMount = false;\r\n }\r\n if (_this.props.persistMenu) {\r\n currentMenuProps && currentMenuProps.hidden ? _this._openMenu(shouldFocusOnContainer, shouldFocusOnMount) : _this._dismissMenu();\r\n }\r\n else {\r\n currentMenuProps ? _this._dismissMenu() : _this._openMenu(shouldFocusOnContainer, shouldFocusOnMount);\r\n }\r\n };\r\n _this._onSplitContainerFocusCapture = function (ev) {\r\n var container = _this._splitButtonContainer.current;\r\n // If the target is coming from the portal we do not need to set focus on the container.\r\n if (!container || (ev.target && Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"portalContainsElement\"])(ev.target, container))) {\r\n return;\r\n }\r\n // We should never be able to focus the individual buttons in a split button. Focus\r\n // should always remain on the container.\r\n container.focus();\r\n };\r\n _this._onSplitButtonPrimaryClick = function (ev) {\r\n if (_this._isExpanded) {\r\n _this._dismissMenu();\r\n }\r\n if (!_this._processingTouch && _this.props.onClick) {\r\n _this.props.onClick(ev);\r\n }\r\n else if (_this._processingTouch) {\r\n _this._onMenuClick(ev);\r\n }\r\n };\r\n _this._onKeyDown = function (ev) {\r\n // explicity cancelling event so click won't fire after this\r\n if (_this.props.disabled && (ev.which === _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].enter || ev.which === _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].space)) {\r\n ev.preventDefault();\r\n ev.stopPropagation();\r\n }\r\n else if (!_this.props.disabled) {\r\n if (_this.props.menuProps) {\r\n _this._onMenuKeyDown(ev);\r\n }\r\n else if (_this.props.onKeyDown !== undefined) {\r\n _this.props.onKeyDown(ev); // not cancelling event because it's not disabled\r\n }\r\n }\r\n };\r\n _this._onKeyUp = function (ev) {\r\n if (!_this.props.disabled && _this.props.onKeyUp !== undefined) {\r\n _this.props.onKeyUp(ev); // not cancelling event because it's not disabled\r\n }\r\n };\r\n _this._onKeyPress = function (ev) {\r\n if (!_this.props.disabled && _this.props.onKeyPress !== undefined) {\r\n _this.props.onKeyPress(ev); // not cancelling event because it's not disabled\r\n }\r\n };\r\n _this._onMouseUp = function (ev) {\r\n if (!_this.props.disabled && _this.props.onMouseUp !== undefined) {\r\n _this.props.onMouseUp(ev); // not cancelling event because it's not disabled\r\n }\r\n };\r\n _this._onMouseDown = function (ev) {\r\n if (!_this.props.disabled && _this.props.onMouseDown !== undefined) {\r\n _this.props.onMouseDown(ev); // not cancelling event because it's not disabled\r\n }\r\n };\r\n _this._onClick = function (ev) {\r\n if (!_this.props.disabled) {\r\n if (_this.props.menuProps) {\r\n _this._onMenuClick(ev);\r\n }\r\n else if (_this.props.onClick !== undefined) {\r\n _this.props.onClick(ev); // not cancelling event because it's not disabled\r\n }\r\n }\r\n };\r\n _this._onSplitButtonContainerKeyDown = function (ev) {\r\n if (ev.which === _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].enter) {\r\n if (_this._buttonElement.current) {\r\n _this._buttonElement.current.click();\r\n ev.preventDefault();\r\n ev.stopPropagation();\r\n }\r\n }\r\n else {\r\n _this._onMenuKeyDown(ev);\r\n }\r\n };\r\n _this._onMenuKeyDown = function (ev) {\r\n if (_this.props.disabled) {\r\n return;\r\n }\r\n if (_this.props.onKeyDown) {\r\n _this.props.onKeyDown(ev);\r\n }\r\n if (!ev.defaultPrevented && _this._isValidMenuOpenKey(ev)) {\r\n var onMenuClick = _this.props.onMenuClick;\r\n if (onMenuClick) {\r\n onMenuClick(ev, _this);\r\n }\r\n _this._onToggleMenu(false);\r\n ev.preventDefault();\r\n ev.stopPropagation();\r\n }\r\n };\r\n _this._onTouchStart = function () {\r\n if (_this._isSplitButton && _this._splitButtonContainer.current && !('onpointerdown' in _this._splitButtonContainer.current)) {\r\n _this._handleTouchAndPointerEvent();\r\n }\r\n };\r\n _this._onMenuClick = function (ev) {\r\n var onMenuClick = _this.props.onMenuClick;\r\n if (onMenuClick) {\r\n onMenuClick(ev, _this);\r\n }\r\n if (!ev.defaultPrevented) {\r\n // When Edge + Narrator are used together (regardless of if the button is in a form or not), pressing\r\n // \"Enter\" fires this method and not _onMenuKeyDown. Checking ev.nativeEvent.detail differentiates\r\n // between a real click event and a keypress event (detail should be the number of mouse clicks).\r\n // ...Plot twist! For a real click event in IE 11, detail is always 0 (Edge sets it properly to 1).\r\n // So we also check the pointerType property, which both Edge and IE set to \"mouse\" for real clicks\r\n // and \"\" for pressing \"Enter\" with Narrator on.\r\n var shouldFocusOnContainer = ev.nativeEvent.detail !== 0 || ev.nativeEvent.pointerType === 'mouse';\r\n _this._onToggleMenu(shouldFocusOnContainer);\r\n ev.preventDefault();\r\n ev.stopPropagation();\r\n }\r\n };\r\n _this._warnConditionallyRequiredProps(['menuProps', 'onClick'], 'split', _this.props.split);\r\n _this._warnDeprecations({\r\n rootProps: undefined,\r\n description: 'secondaryText',\r\n toggled: 'checked'\r\n });\r\n _this._labelId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getId\"])();\r\n _this._descriptionId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getId\"])();\r\n _this._ariaDescriptionId = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getId\"])();\r\n var menuProps = null;\r\n if (props.persistMenu && props.menuProps) {\r\n menuProps = props.menuProps;\r\n menuProps.hidden = true;\r\n }\r\n _this.state = {\r\n menuProps: menuProps\r\n };\r\n return _this;\r\n }\r\n Object.defineProperty(BaseButton.prototype, \"_isSplitButton\", {\r\n get: function () {\r\n return !!this.props.menuProps && !!this.props.onClick && this.props.split === true;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n Object.defineProperty(BaseButton.prototype, \"_isExpanded\", {\r\n get: function () {\r\n if (this.props.persistMenu) {\r\n return !this.state.menuProps.hidden;\r\n }\r\n return !!this.state.menuProps;\r\n },\r\n enumerable: true,\r\n configurable: true\r\n });\r\n BaseButton.prototype.render = function () {\r\n var _a = this.props, ariaDescription = _a.ariaDescription, ariaLabel = _a.ariaLabel, ariaHidden = _a.ariaHidden, className = _a.className, disabled = _a.disabled, allowDisabledFocus = _a.allowDisabledFocus, primaryDisabled = _a.primaryDisabled, _b = _a.secondaryText, secondaryText = _b === void 0 ? this.props.description : _b, href = _a.href, iconProps = _a.iconProps, menuIconProps = _a.menuIconProps, styles = _a.styles, checked = _a.checked, variantClassName = _a.variantClassName, theme = _a.theme, toggle = _a.toggle, getClassNames = _a.getClassNames;\r\n // Button is disabled if the whole button (in case of splitbutton is disabled) or if the primary action is disabled\r\n var isPrimaryButtonDisabled = disabled || primaryDisabled;\r\n this._classNames = getClassNames\r\n ? getClassNames(theme, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, checked, this._isMenuExpanded(), this.props.split, !!allowDisabledFocus)\r\n : Object(_BaseButton_classNames__WEBPACK_IMPORTED_MODULE_6__[\"getBaseButtonClassNames\"])(theme, styles, className, variantClassName, iconProps && iconProps.className, menuIconProps && menuIconProps.className, isPrimaryButtonDisabled, checked, this._isMenuExpanded(), this.props.split);\r\n var _c = this, _ariaDescriptionId = _c._ariaDescriptionId, _labelId = _c._labelId, _descriptionId = _c._descriptionId;\r\n // Anchor tag cannot be disabled hence in disabled state rendering\r\n // anchor button as normal button\r\n var renderAsAnchor = !isPrimaryButtonDisabled && !!href;\r\n var tag = renderAsAnchor ? 'a' : 'button';\r\n var nativeProps = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getNativeProps\"])(Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"assign\"])(renderAsAnchor ? {} : { type: 'button' }, this.props.rootProps, this.props), renderAsAnchor ? _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"anchorProperties\"] : _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"buttonProperties\"], [\r\n 'disabled' // let disabled buttons be focused and styled as disabled.\r\n ]);\r\n // Check for ariaLabel passed in via Button props, and fall back to aria-label passed in via native props\r\n var resolvedAriaLabel = ariaLabel || nativeProps['aria-label'];\r\n // Check for ariaDescription, secondaryText or aria-describedby in the native props to determine source of aria-describedby\r\n // otherwise default to undefined so property does not appear in output.\r\n var ariaDescribedBy = undefined;\r\n if (ariaDescription) {\r\n ariaDescribedBy = _ariaDescriptionId;\r\n }\r\n else if (secondaryText) {\r\n ariaDescribedBy = _descriptionId;\r\n }\r\n else if (nativeProps['aria-describedby']) {\r\n ariaDescribedBy = nativeProps['aria-describedby'];\r\n }\r\n // If an explicit ariaLabel is given, use that as the label and we're done.\r\n // If an explicit aria-labelledby is given, use that and we're done.\r\n // If any kind of description is given (which will end up as an aria-describedby attribute),\r\n // set the labelledby element. Otherwise, the button is labeled implicitly by the descendent\r\n // text on the button (if it exists). Never set both aria-label and aria-labelledby.\r\n var ariaLabelledBy = undefined;\r\n if (!resolvedAriaLabel) {\r\n if (nativeProps['aria-labelledby']) {\r\n ariaLabelledBy = nativeProps['aria-labelledby'];\r\n }\r\n else if (ariaDescribedBy) {\r\n ariaLabelledBy = this._hasText() ? _labelId : undefined;\r\n }\r\n }\r\n var dataIsFocusable = this.props['data-is-focusable'] === false || (disabled && !allowDisabledFocus) || this._isSplitButton ? false : true;\r\n var buttonProps = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"assign\"])(nativeProps, {\r\n className: this._classNames.root,\r\n ref: this._buttonElement,\r\n disabled: isPrimaryButtonDisabled && !allowDisabledFocus,\r\n onKeyDown: this._onKeyDown,\r\n onKeyPress: this._onKeyPress,\r\n onKeyUp: this._onKeyUp,\r\n onMouseDown: this._onMouseDown,\r\n onMouseUp: this._onMouseUp,\r\n onClick: this._onClick,\r\n 'aria-label': resolvedAriaLabel,\r\n 'aria-labelledby': ariaLabelledBy,\r\n 'aria-describedby': ariaDescribedBy,\r\n 'aria-disabled': isPrimaryButtonDisabled,\r\n 'data-is-focusable': dataIsFocusable,\r\n 'aria-pressed': toggle ? !!checked : undefined // aria-pressed attribute should only be present for toggle buttons\r\n });\r\n if (ariaHidden) {\r\n buttonProps['aria-hidden'] = true;\r\n }\r\n if (this._isSplitButton) {\r\n return this._onRenderSplitButtonContent(tag, buttonProps);\r\n }\r\n else if (this.props.menuProps) {\r\n Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"assign\"])(buttonProps, {\r\n 'aria-expanded': this._isExpanded,\r\n 'aria-owns': this.state.menuProps ? this._labelId + '-menu' : null,\r\n 'aria-haspopup': true\r\n });\r\n }\r\n return this._onRenderContent(tag, buttonProps);\r\n };\r\n BaseButton.prototype.componentDidMount = function () {\r\n // For split buttons, touching anywhere in the button should drop the dropdown, which should contain the primary action.\r\n // This gives more hit target space for touch environments. We're setting the onpointerdown here, because React\r\n // does not support Pointer events yet.\r\n if (this._isSplitButton && this._splitButtonContainer.current && 'onpointerdown' in this._splitButtonContainer.current) {\r\n this._events.on(this._splitButtonContainer.current, 'pointerdown', this._onPointerDown, true);\r\n }\r\n };\r\n BaseButton.prototype.componentDidUpdate = function (prevProps, prevState) {\r\n // If Button's menu was closed, run onAfterMenuDismiss\r\n if (this.props.onAfterMenuDismiss && prevState.menuProps && !this.state.menuProps) {\r\n this.props.onAfterMenuDismiss();\r\n }\r\n };\r\n BaseButton.prototype.focus = function () {\r\n if (this._isSplitButton && this._splitButtonContainer.current) {\r\n this._splitButtonContainer.current.focus();\r\n }\r\n else if (this._buttonElement.current) {\r\n this._buttonElement.current.focus();\r\n }\r\n };\r\n BaseButton.prototype.dismissMenu = function () {\r\n this._dismissMenu();\r\n };\r\n BaseButton.prototype.openMenu = function (shouldFocusOnContainer, shouldFocusOnMount) {\r\n this._openMenu(shouldFocusOnContainer, shouldFocusOnMount);\r\n };\r\n BaseButton.prototype._onRenderContent = function (tag, buttonProps) {\r\n var _this = this;\r\n var props = this.props;\r\n var Tag = tag;\r\n var menuIconProps = props.menuIconProps, menuProps = props.menuProps, _a = props.onRenderIcon, onRenderIcon = _a === void 0 ? this._onRenderIcon : _a, _b = props.onRenderAriaDescription, onRenderAriaDescription = _b === void 0 ? this._onRenderAriaDescription : _b, _c = props.onRenderChildren, onRenderChildren = _c === void 0 ? this._onRenderChildren : _c, _d = props.onRenderMenu, onRenderMenu = _d === void 0 ? this._onRenderMenu : _d, _e = props.onRenderMenuIcon, onRenderMenuIcon = _e === void 0 ? this._onRenderMenuIcon : _e, disabled = props.disabled;\r\n var keytipProps = props.keytipProps;\r\n if (keytipProps && menuProps) {\r\n keytipProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, keytipProps, { hasMenu: true });\r\n }\r\n var Content = (\r\n // If we're making a split button, we won't put the keytip here\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_KeytipData__WEBPACK_IMPORTED_MODULE_8__[\"KeytipData\"], { keytipProps: !this._isSplitButton ? keytipProps : undefined, ariaDescribedBy: buttonProps['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](Tag, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, buttonProps, keytipAttributes),\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { className: _this._classNames.flexContainer },\r\n onRenderIcon(props, _this._onRenderIcon),\r\n _this._onRenderTextContents(),\r\n onRenderAriaDescription(props, _this._onRenderAriaDescription),\r\n onRenderChildren(props, _this._onRenderChildren),\r\n !_this._isSplitButton &&\r\n (menuProps || menuIconProps || _this.props.onRenderMenuIcon) &&\r\n onRenderMenuIcon(_this.props, _this._onRenderMenuIcon),\r\n _this.state.menuProps && !_this.state.menuProps.doNotLayer && onRenderMenu(menuProps, _this._onRenderMenu)))); }));\r\n if (menuProps && menuProps.doNotLayer) {\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", { style: { display: 'inline-block' } },\r\n Content,\r\n this.state.menuProps && onRenderMenu(menuProps, this._onRenderMenu)));\r\n }\r\n return Content;\r\n };\r\n BaseButton.prototype._hasText = function () {\r\n // _onRenderTextContents and _onRenderText do not perform the same checks. Below is parity with what _onRenderText used to have\r\n // before the refactor that introduced this function. _onRenderTextContents does not require props.text to be undefined in order\r\n // for props.children to be used as a fallback. Purely a code maintainability/reuse issue, but logged as Issue #4979\r\n return this.props.text !== null && (this.props.text !== undefined || typeof this.props.children === 'string');\r\n };\r\n BaseButton.prototype._isMenuExpanded = function () {\r\n var menuProps = this.state.menuProps;\r\n return !!menuProps && !menuProps.hidden;\r\n };\r\n BaseButton.prototype._onRenderSplitButtonContent = function (tag, buttonProps) {\r\n var _this = this;\r\n var _a = this.props, _b = _a.styles, styles = _b === void 0 ? {} : _b, disabled = _a.disabled, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, getSplitButtonClassNames = _a.getSplitButtonClassNames, primaryDisabled = _a.primaryDisabled, menuProps = _a.menuProps, toggle = _a.toggle;\r\n var keytipProps = this.props.keytipProps;\r\n var classNames = getSplitButtonClassNames\r\n ? getSplitButtonClassNames(!!disabled, !!this.state.menuProps, !!checked, !!allowDisabledFocus)\r\n : styles && Object(_SplitButton_SplitButton_classNames__WEBPACK_IMPORTED_MODULE_7__[\"getClassNames\"])(styles, !!disabled, !!this.state.menuProps, !!checked);\r\n Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"assign\"])(buttonProps, {\r\n onClick: undefined,\r\n tabIndex: -1,\r\n 'data-is-focusable': false\r\n });\r\n var ariaDescribedBy = buttonProps.ariaDescription;\r\n if (keytipProps && menuProps) {\r\n keytipProps = tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, keytipProps, { hasMenu: true });\r\n }\r\n var containerProps = Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"getNativeProps\"])(buttonProps, [], ['disabled']);\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_KeytipData__WEBPACK_IMPORTED_MODULE_8__[\"KeytipData\"], { keytipProps: keytipProps, disabled: disabled }, function (keytipAttributes) { return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"div\", tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, containerProps, { \"data-ktp-target\": keytipAttributes['data-ktp-target'], role: 'button', \"aria-disabled\": disabled, \"aria-haspopup\": true, \"aria-expanded\": _this._isExpanded, \"aria-pressed\": toggle ? !!checked : undefined, \"aria-describedby\": Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"mergeAriaAttributeValues\"])(ariaDescribedBy, keytipAttributes['aria-describedby']), className: classNames && classNames.splitButtonContainer, onKeyDown: _this._onSplitButtonContainerKeyDown, onTouchStart: _this._onTouchStart, ref: _this._splitButtonContainer, \"data-is-focusable\": true, onClick: !disabled && !primaryDisabled ? _this._onSplitButtonPrimaryClick : undefined, tabIndex: !disabled || allowDisabledFocus ? 0 : undefined, \"aria-roledescription\": buttonProps['aria-roledescription'], onFocusCapture: _this._onSplitContainerFocusCapture }),\r\n react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { style: { display: 'flex' } },\r\n _this._onRenderContent(tag, buttonProps),\r\n _this._onRenderSplitButtonMenuButton(classNames, keytipAttributes),\r\n _this._onRenderSplitButtonDivider(classNames)))); }));\r\n };\r\n BaseButton.prototype._onRenderSplitButtonDivider = function (classNames) {\r\n if (classNames && classNames.divider) {\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](\"span\", { className: classNames.divider });\r\n }\r\n return null;\r\n };\r\n BaseButton.prototype._onRenderSplitButtonMenuButton = function (classNames, keytipAttributes) {\r\n var _a = this.props, allowDisabledFocus = _a.allowDisabledFocus, checked = _a.checked, disabled = _a.disabled;\r\n var menuIconProps = this.props.menuIconProps;\r\n var splitButtonAriaLabel = this.props.splitButtonAriaLabel;\r\n if (menuIconProps === undefined) {\r\n menuIconProps = {\r\n iconName: 'ChevronDown'\r\n };\r\n }\r\n var splitButtonProps = {\r\n styles: classNames,\r\n checked: checked,\r\n disabled: disabled,\r\n allowDisabledFocus: allowDisabledFocus,\r\n onClick: this._onMenuClick,\r\n menuProps: undefined,\r\n iconProps: tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, menuIconProps, { className: this._classNames.menuIcon }),\r\n ariaLabel: splitButtonAriaLabel,\r\n 'aria-haspopup': true,\r\n 'aria-expanded': this._isExpanded,\r\n 'data-is-focusable': false\r\n };\r\n // Add data-ktp-execute-target to the split button if the keytip is defined\r\n return (react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](BaseButton, tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, splitButtonProps, { \"data-ktp-execute-target\": keytipAttributes['data-ktp-execute-target'], onMouseDown: this._onMouseDown, tabIndex: -1 })));\r\n };\r\n BaseButton.prototype._onPointerDown = function (ev) {\r\n if (ev.pointerType === 'touch') {\r\n this._handleTouchAndPointerEvent();\r\n ev.preventDefault();\r\n ev.stopImmediatePropagation();\r\n }\r\n };\r\n BaseButton.prototype._handleTouchAndPointerEvent = function () {\r\n var _this = this;\r\n // If we already have an existing timeeout from a previous touch and pointer event\r\n // cancel that timeout so we can set a nwe one.\r\n if (this._lastTouchTimeoutId !== undefined) {\r\n this._async.clearTimeout(this._lastTouchTimeoutId);\r\n this._lastTouchTimeoutId = undefined;\r\n }\r\n this._processingTouch = true;\r\n this._lastTouchTimeoutId = this._async.setTimeout(function () {\r\n _this._processingTouch = false;\r\n _this._lastTouchTimeoutId = undefined;\r\n }, TouchIdleDelay);\r\n };\r\n /**\r\n * Returns if the user hits a valid keyboard key to open the menu\r\n * @param ev - the keyboard event\r\n * @returns True if user clicks on custom trigger key if enabled or alt + down arrow if not. False otherwise.\r\n */\r\n BaseButton.prototype._isValidMenuOpenKey = function (ev) {\r\n if (this.props.menuTriggerKeyCode) {\r\n return ev.which === this.props.menuTriggerKeyCode;\r\n }\r\n else if (this.props.menuProps) {\r\n return ev.which === _Utilities__WEBPACK_IMPORTED_MODULE_2__[\"KeyCodes\"].down && (ev.altKey || ev.metaKey);\r\n }\r\n // Note: When enter is pressed, we will let the event continue to propagate\r\n // to trigger the onClick event on the button\r\n return false;\r\n };\r\n BaseButton.defaultProps = {\r\n baseClassName: 'ms-Button',\r\n styles: {},\r\n split: false\r\n };\r\n return BaseButton;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=BaseButton.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js":
/*!****************************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js ***!
\****************************************************************************************/
/*! exports provided: getStyles */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getStyles\", function() { return getStyles; });\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Styling__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../Styling */ \"./node_modules/office-ui-fabric-react/lib/Styling.js\");\n\r\n\r\nvar noOutline = {\r\n outline: 0\r\n};\r\nvar iconStyle = {\r\n fontSize: _Styling__WEBPACK_IMPORTED_MODULE_1__[\"FontSizes\"].icon,\r\n margin: '0 4px',\r\n height: '16px',\r\n lineHeight: '16px',\r\n textAlign: 'center',\r\n verticalAlign: 'middle',\r\n flexShrink: 0\r\n};\r\n/**\r\n * Gets the base button styles. Note: because it is a base class to be used with the `mergeRules`\r\n * helper, it should have values for all class names in the interface. This let `mergeRules` optimize\r\n * mixing class names together.\r\n */\r\nvar getStyles = Object(_Utilities__WEBPACK_IMPORTED_MODULE_0__[\"memoizeFunction\"])(function (theme) {\r\n var semanticColors = theme.semanticColors;\r\n var border = semanticColors.buttonBorder;\r\n var disabledBackground = semanticColors.disabledBackground;\r\n var disabledText = semanticColors.disabledText;\r\n var buttonHighContrastFocus = {\r\n left: -2,\r\n top: -2,\r\n bottom: -2,\r\n right: -2,\r\n border: 'none',\r\n outlineColor: 'ButtonText'\r\n };\r\n return {\r\n root: [\r\n Object(_Styling__WEBPACK_IMPORTED_MODULE_1__[\"getFocusStyle\"])(theme, -1, 'relative', buttonHighContrastFocus),\r\n theme.fonts.medium,\r\n {\r\n boxSizing: 'border-box',\r\n border: '1px solid ' + border,\r\n userSelect: 'none',\r\n display: 'inline-block',\r\n textDecoration: 'none',\r\n textAlign: 'center',\r\n cursor: 'pointer',\r\n verticalAlign: 'top',\r\n padding: '0 16px',\r\n borderRadius: 0,\r\n selectors: {\r\n // IE11 workaround for preventing shift of child elements of a button when active.\r\n ':active > *': {\r\n position: 'relative',\r\n left: 0,\r\n top: 0\r\n }\r\n }\r\n }\r\n ],\r\n rootDisabled: [\r\n Object(_Styling__WEBPACK_IMPORTED_MODULE_1__[\"getFocusStyle\"])(theme, -1, 'relative', buttonHighContrastFocus),\r\n {\r\n backgroundColor: disabledBackground,\r\n color: disabledText,\r\n cursor: 'default',\r\n pointerEvents: 'none',\r\n selectors: (_a = {\r\n ':hover': noOutline,\r\n ':focus': noOutline\r\n },\r\n _a[_Styling__WEBPACK_IMPORTED_MODULE_1__[\"HighContrastSelector\"]] = {\r\n color: 'grayText',\r\n bordercolor: 'grayText'\r\n },\r\n _a)\r\n }\r\n ],\r\n iconDisabled: {\r\n color: disabledText\r\n },\r\n menuIconDisabled: {\r\n color: disabledText\r\n },\r\n flexContainer: {\r\n display: 'flex',\r\n height: '100%',\r\n flexWrap: 'nowrap',\r\n justifyContent: 'center',\r\n alignItems: 'center'\r\n },\r\n textContainer: {\r\n flexGrow: 1\r\n },\r\n icon: iconStyle,\r\n menuIcon: [\r\n iconStyle,\r\n {\r\n fontSize: _Styling__WEBPACK_IMPORTED_MODULE_1__[\"FontSizes\"].small\r\n }\r\n ],\r\n label: {\r\n margin: '0 4px',\r\n lineHeight: '100%'\r\n },\r\n screenReaderText: _Styling__WEBPACK_IMPORTED_MODULE_1__[\"hiddenContentStyle\"]\r\n };\r\n var _a;\r\n});\r\n//# sourceMappingURL=BaseButton.styles.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Button/BaseButton.styles.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/Button.js":
/*!*****************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/Button.js ***!
\*****************************************************************************/
/*! exports provided: Button */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Button\", function() { return Button; });\n/* harmony import */ var tslib__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! tslib */ \"./node_modules/tslib/tslib.es6.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! react */ \"./node_modules/react/index.js\");\n/* harmony import */ var react__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _Utilities__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../Utilities */ \"./node_modules/office-ui-fabric-react/lib/Utilities.js\");\n/* harmony import */ var _Button_types__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Button.types */ \"./node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js\");\n/* harmony import */ var _DefaultButton_DefaultButton__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./DefaultButton/DefaultButton */ \"./node_modules/office-ui-fabric-react/lib/components/Button/DefaultButton/DefaultButton.js\");\n/* harmony import */ var _ActionButton_ActionButton__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ActionButton/ActionButton */ \"./node_modules/office-ui-fabric-react/lib/components/Button/ActionButton/ActionButton.js\");\n/* harmony import */ var _CompoundButton_CompoundButton__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./CompoundButton/CompoundButton */ \"./node_modules/office-ui-fabric-react/lib/components/Button/CompoundButton/CompoundButton.js\");\n/* harmony import */ var _IconButton_IconButton__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./IconButton/IconButton */ \"./node_modules/office-ui-fabric-react/lib/components/Button/IconButton/IconButton.js\");\n/* harmony import */ var _PrimaryButton_PrimaryButton__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./PrimaryButton/PrimaryButton */ \"./node_modules/office-ui-fabric-react/lib/components/Button/PrimaryButton/PrimaryButton.js\");\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n/**\r\n * This class is deprecated. Use the individual *Button components instead.\r\n * @deprecated Use the individual *Button components instead.\r\n */\r\nvar Button = /** @class */ (function (_super) {\r\n tslib__WEBPACK_IMPORTED_MODULE_0__[\"__extends\"](Button, _super);\r\n function Button(props) {\r\n var _this = _super.call(this, props) || this;\r\n /**\r\n * Set this BaseComponent._skipComponentRefResolution to true, bypassing resolution of componentRef.\r\n */\r\n _this._skipComponentRefResolution = true;\r\n Object(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"warn\"])(\"The Button component has been deprecated. Use specific variants instead. \" +\r\n \"(PrimaryButton, DefaultButton, IconButton, ActionButton, etc.)\");\r\n return _this;\r\n }\r\n Button.prototype.render = function () {\r\n var props = this.props;\r\n switch (props.buttonType) {\r\n case _Button_types__WEBPACK_IMPORTED_MODULE_3__[\"ButtonType\"].command:\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_ActionButton_ActionButton__WEBPACK_IMPORTED_MODULE_5__[\"ActionButton\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props));\r\n case _Button_types__WEBPACK_IMPORTED_MODULE_3__[\"ButtonType\"].compound:\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_CompoundButton_CompoundButton__WEBPACK_IMPORTED_MODULE_6__[\"CompoundButton\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props));\r\n case _Button_types__WEBPACK_IMPORTED_MODULE_3__[\"ButtonType\"].icon:\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_IconButton_IconButton__WEBPACK_IMPORTED_MODULE_7__[\"IconButton\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props));\r\n case _Button_types__WEBPACK_IMPORTED_MODULE_3__[\"ButtonType\"].primary:\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_PrimaryButton_PrimaryButton__WEBPACK_IMPORTED_MODULE_8__[\"PrimaryButton\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props));\r\n default:\r\n return react__WEBPACK_IMPORTED_MODULE_1__[\"createElement\"](_DefaultButton_DefaultButton__WEBPACK_IMPORTED_MODULE_4__[\"DefaultButton\"], tslib__WEBPACK_IMPORTED_MODULE_0__[\"__assign\"]({}, props));\r\n }\r\n };\r\n return Button;\r\n}(_Utilities__WEBPACK_IMPORTED_MODULE_2__[\"BaseComponent\"]));\r\n\r\n//# sourceMappingURL=Button.js.map\n\n//# sourceURL=webpack:///./node_modules/office-ui-fabric-react/lib/components/Button/Button.js?");
/***/ }),
/***/ "./node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js":
/*!***********************************************************************************!*\
!*** ./node_modules/office-ui-fabric-react/lib/components/Button/Button.types.js ***!
\***********************************************************************************/
/*! exports provided: ElementType, ButtonType */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ElementType\", function() { return ElementType; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ButtonType\", function() { return ButtonType; });\nvar ElementType;\r\n(function (ElementType) {\r\n /**