@fluentui/react-button 0.20.15 → 0.20.16

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.json CHANGED
@@ -2,7 +2,22 @@
2
2
  "name": "@fluentui/react-button",
3
3
  "entries": [
4
4
  {
5
- "date": "Tue, 04 Oct 2022 18:11:20 GMT",
5
+ "date": "Mon, 31 Oct 2022 12:21:19 GMT",
6
+ "tag": "@fluentui/react-button_v0.20.16",
7
+ "version": "0.20.16",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "comment": "Bump @fluentui/react-theme-provider to v0.19.16",
12
+ "author": "gcox@microsoft.com",
13
+ "commit": "3727ad313afda0d34c28b76c39eba0dc17dba8da",
14
+ "package": "@fluentui/react-button"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Tue, 04 Oct 2022 18:13:33 GMT",
6
21
  "tag": "@fluentui/react-button_v0.20.15",
7
22
  "version": "0.20.15",
8
23
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,21 @@
1
1
  # Change Log - @fluentui/react-button
2
2
 
3
- This log was last generated on Tue, 04 Oct 2022 18:11:20 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 31 Oct 2022 12:21:19 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [0.20.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.20.16)
8
+
9
+ Mon, 31 Oct 2022 12:21:19 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.20.15..@fluentui/react-button_v0.20.16)
11
+
12
+ ### Patches
13
+
14
+ - Bump @fluentui/react-theme-provider to v0.19.16 ([PR #25387](https://github.com/microsoft/fluentui/pull/25387) by gcox@microsoft.com)
15
+
7
16
  ## [0.20.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.20.15)
8
17
 
9
- Tue, 04 Oct 2022 18:11:20 GMT
18
+ Tue, 04 Oct 2022 18:13:33 GMT
10
19
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.20.14..@fluentui/react-button_v0.20.15)
11
20
 
12
21
  ### Patches
package/dist/demo-app.js CHANGED
@@ -440,7 +440,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n/**\n
440
440
  /***/ (function(module, exports, __webpack_require__) {
441
441
 
442
442
  "use strict";
443
- eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"../../node_modules/tslib/tslib.es6.js\");\nexports.InjectionMode = {\n /**\n * Avoids style injection, use getRules() to read the styles.\n */\n none: 0,\n /**\n * Inserts rules using the insertRule api.\n */\n insertNode: 1,\n /**\n * Appends rules using appendChild.\n */\n appendChild: 2,\n};\nvar STYLESHEET_SETTING = '__stylesheet__';\n/**\n * MSIE 11 doesn't cascade styles based on DOM ordering, but rather on the order that each style node\n * is created. As such, to maintain consistent priority, IE11 should reuse a single style node.\n */\nvar REUSE_STYLE_NODE = typeof navigator !== 'undefined' && /rv:11.0/.test(navigator.userAgent);\nvar _global = {};\n// Grab window.\ntry {\n _global = window;\n}\ncatch (_a) {\n /* leave as blank object */\n}\nvar _stylesheet;\n/**\n * Represents the state of styles registered in the page. Abstracts\n * the surface for adding styles to the stylesheet, exposes helpers\n * for reading the styles registered in server rendered scenarios.\n *\n * @public\n */\nvar Stylesheet = /** @class */ (function () {\n function Stylesheet(config) {\n this._rules = [];\n this._preservedRules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._keyToClassName = {};\n this._onResetCallbacks = [];\n this._classNameToArgs = {};\n this._config = tslib_1.__assign({ injectionMode: exports.InjectionMode.insertNode, defaultPrefix: 'css', namespace: undefined, cspSettings: undefined }, config);\n this._keyToClassName = this._config.classNameCache || {};\n }\n /**\n * Gets the singleton instance.\n */\n Stylesheet.getInstance = function () {\n var _a;\n _stylesheet = _global[STYLESHEET_SETTING];\n if (!_stylesheet || (_stylesheet._lastStyleElement && _stylesheet._lastStyleElement.ownerDocument !== document)) {\n var fabricConfig = ((_a = _global) === null || _a === void 0 ? void 0 : _a.FabricConfig) || {};\n _stylesheet = _global[STYLESHEET_SETTING] = new Stylesheet(fabricConfig.mergeStyles);\n }\n return _stylesheet;\n };\n /**\n * Configures the stylesheet.\n */\n Stylesheet.prototype.setConfig = function (config) {\n this._config = tslib_1.__assign(tslib_1.__assign({}, this._config), config);\n };\n /**\n * Configures a reset callback.\n *\n * @param callback - A callback which will be called when the Stylesheet is reset.\n */\n Stylesheet.prototype.onReset = function (callback) {\n this._onResetCallbacks.push(callback);\n };\n /**\n * Generates a unique classname.\n *\n * @param displayName - Optional value to use as a prefix.\n */\n Stylesheet.prototype.getClassName = function (displayName) {\n var namespace = this._config.namespace;\n var prefix = displayName || this._config.defaultPrefix;\n return \"\" + (namespace ? namespace + '-' : '') + prefix + \"-\" + this._counter++;\n };\n /**\n * Used internally to cache information about a class which was\n * registered with the stylesheet.\n */\n Stylesheet.prototype.cacheClassName = function (className, key, args, rules) {\n this._keyToClassName[key] = className;\n this._classNameToArgs[className] = {\n args: args,\n rules: rules,\n };\n };\n /**\n * Gets the appropriate classname given a key which was previously\n * registered using cacheClassName.\n */\n Stylesheet.prototype.classNameFromKey = function (key) {\n return this._keyToClassName[key];\n };\n /**\n * Gets all classnames cache with the stylesheet.\n */\n Stylesheet.prototype.getClassNameCache = function () {\n return this._keyToClassName;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.argsFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.args;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.insertedRulesFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.rules;\n };\n /**\n * Inserts a css rule into the stylesheet.\n * @param preserve - Preserves the rule beyond a reset boundary.\n */\n Stylesheet.prototype.insertRule = function (rule, preserve) {\n var injectionMode = this._config.injectionMode;\n var element = injectionMode !== exports.InjectionMode.none ? this._getStyleElement() : undefined;\n if (preserve) {\n this._preservedRules.push(rule);\n }\n if (element) {\n switch (this._config.injectionMode) {\n case exports.InjectionMode.insertNode:\n var sheet = element.sheet;\n try {\n sheet.insertRule(rule, sheet.cssRules.length);\n }\n catch (e) {\n // The browser will throw exceptions on unsupported rules (such as a moz prefix in webkit.)\n // We need to swallow the exceptions for this scenario, otherwise we'd need to filter\n // which could be slower and bulkier.\n }\n break;\n case exports.InjectionMode.appendChild:\n element.appendChild(document.createTextNode(rule));\n break;\n }\n }\n else {\n this._rules.push(rule);\n }\n if (this._config.onInsertRule) {\n this._config.onInsertRule(rule);\n }\n };\n /**\n * Gets all rules registered with the stylesheet; only valid when\n * using InsertionMode.none.\n */\n Stylesheet.prototype.getRules = function (includePreservedRules) {\n return ((includePreservedRules ? this._preservedRules.join('') : '') + this._rules.join('') + this._rulesToInsert.join(''));\n };\n /**\n * Resets the internal state of the stylesheet. Only used in server\n * rendered scenarios where we're using InsertionMode.none.\n */\n Stylesheet.prototype.reset = function () {\n this._rules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._classNameToArgs = {};\n this._keyToClassName = {};\n this._onResetCallbacks.forEach(function (callback) { return callback(); });\n };\n // Forces the regeneration of incoming styles without totally resetting the stylesheet.\n Stylesheet.prototype.resetKeys = function () {\n this._keyToClassName = {};\n };\n Stylesheet.prototype._getStyleElement = function () {\n var _this = this;\n if (!this._styleElement && typeof document !== 'undefined') {\n this._styleElement = this._createStyleElement();\n if (!REUSE_STYLE_NODE) {\n // Reset the style element on the next frame.\n window.requestAnimationFrame(function () {\n _this._styleElement = undefined;\n });\n }\n }\n return this._styleElement;\n };\n Stylesheet.prototype._createStyleElement = function () {\n var head = document.head;\n var styleElement = document.createElement('style');\n styleElement.setAttribute('data-merge-styles', 'true');\n var cspSettings = this._config.cspSettings;\n if (cspSettings) {\n if (cspSettings.nonce) {\n styleElement.setAttribute('nonce', cspSettings.nonce);\n }\n }\n if (this._lastStyleElement) {\n // If the `nextElementSibling` is null, then the insertBefore will act as a regular append.\n // https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore#Syntax\n head.insertBefore(styleElement, this._lastStyleElement.nextElementSibling);\n }\n else {\n var placeholderStyleTag = this._findPlaceholderStyleTag();\n if (placeholderStyleTag) {\n head.insertBefore(styleElement, placeholderStyleTag.nextElementSibling);\n }\n else {\n head.insertBefore(styleElement, head.childNodes[0]);\n }\n }\n this._lastStyleElement = styleElement;\n return styleElement;\n };\n Stylesheet.prototype._findPlaceholderStyleTag = function () {\n var head = document.head;\n if (head) {\n return head.querySelector('style[data-merge-styles]');\n }\n return null;\n };\n return Stylesheet;\n}());\nexports.Stylesheet = Stylesheet;\n\n\n//# sourceURL=webpack:///../merge-styles/src/Stylesheet.ts?");
443
+ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar tslib_1 = __webpack_require__(/*! tslib */ \"../../node_modules/tslib/tslib.es6.js\");\nexports.InjectionMode = {\n /**\n * Avoids style injection, use getRules() to read the styles.\n */\n none: 0,\n /**\n * Inserts rules using the insertRule api.\n */\n insertNode: 1,\n /**\n * Appends rules using appendChild.\n */\n appendChild: 2,\n};\nvar STYLESHEET_SETTING = '__stylesheet__';\n/**\n * MSIE 11 doesn't cascade styles based on DOM ordering, but rather on the order that each style node\n * is created. As such, to maintain consistent priority, IE11 should reuse a single style node.\n */\nvar REUSE_STYLE_NODE = typeof navigator !== 'undefined' && /rv:11.0/.test(navigator.userAgent);\nvar _global = {};\n// Grab window.\ntry {\n _global = window;\n}\ncatch (_a) {\n /* leave as blank object */\n}\nvar _stylesheet;\n/**\n * Represents the state of styles registered in the page. Abstracts\n * the surface for adding styles to the stylesheet, exposes helpers\n * for reading the styles registered in server rendered scenarios.\n *\n * @public\n */\nvar Stylesheet = /** @class */ (function () {\n function Stylesheet(config) {\n this._rules = [];\n this._preservedRules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._keyToClassName = {};\n this._onResetCallbacks = [];\n this._classNameToArgs = {};\n this._config = tslib_1.__assign({ injectionMode: exports.InjectionMode.insertNode, defaultPrefix: 'css', namespace: undefined, cspSettings: undefined }, config);\n this._keyToClassName = this._config.classNameCache || {};\n }\n /**\n * Gets the singleton instance.\n */\n Stylesheet.getInstance = function () {\n var _a;\n _stylesheet = _global[STYLESHEET_SETTING];\n if (!_stylesheet || (_stylesheet._lastStyleElement && _stylesheet._lastStyleElement.ownerDocument !== document)) {\n var fabricConfig = ((_a = _global) === null || _a === void 0 ? void 0 : _a.FabricConfig) || {};\n _stylesheet = _global[STYLESHEET_SETTING] = new Stylesheet(fabricConfig.mergeStyles);\n }\n return _stylesheet;\n };\n /**\n * Configures the stylesheet.\n */\n Stylesheet.prototype.setConfig = function (config) {\n this._config = tslib_1.__assign(tslib_1.__assign({}, this._config), config);\n };\n /**\n * Configures a reset callback.\n *\n * @param callback - A callback which will be called when the Stylesheet is reset.\n */\n Stylesheet.prototype.onReset = function (callback) {\n this._onResetCallbacks.push(callback);\n };\n /**\n * Generates a unique classname.\n *\n * @param displayName - Optional value to use as a prefix.\n */\n Stylesheet.prototype.getClassName = function (displayName) {\n var namespace = this._config.namespace;\n var prefix = displayName || this._config.defaultPrefix;\n return \"\" + (namespace ? namespace + '-' : '') + prefix + \"-\" + this._counter++;\n };\n /**\n * Used internally to cache information about a class which was\n * registered with the stylesheet.\n */\n Stylesheet.prototype.cacheClassName = function (className, key, args, rules) {\n this._keyToClassName[key] = className;\n this._classNameToArgs[className] = {\n args: args,\n rules: rules,\n };\n };\n /**\n * Gets the appropriate classname given a key which was previously\n * registered using cacheClassName.\n */\n Stylesheet.prototype.classNameFromKey = function (key) {\n return this._keyToClassName[key];\n };\n /**\n * Gets all classnames cache with the stylesheet.\n */\n Stylesheet.prototype.getClassNameCache = function () {\n return this._keyToClassName;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.argsFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.args;\n };\n /**\n * Gets the arguments associated with a given classname which was\n * previously registered using cacheClassName.\n */\n Stylesheet.prototype.insertedRulesFromClassName = function (className) {\n var entry = this._classNameToArgs[className];\n return entry && entry.rules;\n };\n /**\n * Inserts a css rule into the stylesheet.\n * @param preserve - Preserves the rule beyond a reset boundary.\n */\n Stylesheet.prototype.insertRule = function (rule, preserve) {\n var injectionMode = this._config.injectionMode;\n var element = injectionMode !== exports.InjectionMode.none ? this._getStyleElement() : undefined;\n if (preserve) {\n this._preservedRules.push(rule);\n }\n if (element) {\n switch (this._config.injectionMode) {\n case exports.InjectionMode.insertNode:\n var sheet = element.sheet;\n try {\n sheet.insertRule(rule, sheet.cssRules.length);\n }\n catch (e) {\n // The browser will throw exceptions on unsupported rules (such as a moz prefix in webkit.)\n // We need to swallow the exceptions for this scenario, otherwise we'd need to filter\n // which could be slower and bulkier.\n }\n break;\n case exports.InjectionMode.appendChild:\n element.appendChild(document.createTextNode(rule));\n break;\n }\n }\n else {\n this._rules.push(rule);\n }\n if (this._config.onInsertRule) {\n this._config.onInsertRule(rule);\n }\n };\n /**\n * Gets all rules registered with the stylesheet; only valid when\n * using InsertionMode.none.\n */\n Stylesheet.prototype.getRules = function (includePreservedRules) {\n return ((includePreservedRules ? this._preservedRules.join('') : '') + this._rules.join('') + this._rulesToInsert.join(''));\n };\n /**\n * Resets the internal state of the stylesheet. Only used in server\n * rendered scenarios where we're using InsertionMode.none.\n */\n Stylesheet.prototype.reset = function () {\n this._rules = [];\n this._rulesToInsert = [];\n this._counter = 0;\n this._classNameToArgs = {};\n this._keyToClassName = {};\n this._onResetCallbacks.forEach(function (callback) { return callback(); });\n };\n // Forces the regeneration of incoming styles without totally resetting the stylesheet.\n Stylesheet.prototype.resetKeys = function () {\n this._keyToClassName = {};\n };\n Stylesheet.prototype._getStyleElement = function () {\n var _this = this;\n if (!this._styleElement && typeof document !== 'undefined') {\n this._styleElement = this._createStyleElement();\n if (!REUSE_STYLE_NODE) {\n // Reset the style element on the next frame.\n window.requestAnimationFrame(function () {\n _this._styleElement = undefined;\n });\n }\n }\n return this._styleElement;\n };\n Stylesheet.prototype._createStyleElement = function () {\n var head = document.head;\n var styleElement = document.createElement('style');\n var nodeToInsertBefore = null;\n styleElement.setAttribute('data-merge-styles', 'true');\n var cspSettings = this._config.cspSettings;\n if (cspSettings) {\n if (cspSettings.nonce) {\n styleElement.setAttribute('nonce', cspSettings.nonce);\n }\n }\n if (this._lastStyleElement) {\n // If the `nextElementSibling` is null, then the insertBefore will act as a regular append.\n // https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore#Syntax\n nodeToInsertBefore = this._lastStyleElement.nextElementSibling;\n }\n else {\n var placeholderStyleTag = this._findPlaceholderStyleTag();\n if (placeholderStyleTag) {\n nodeToInsertBefore = placeholderStyleTag.nextElementSibling;\n }\n else {\n nodeToInsertBefore = head.childNodes[0];\n }\n }\n head.insertBefore(styleElement, head.contains(nodeToInsertBefore) ? nodeToInsertBefore : null);\n this._lastStyleElement = styleElement;\n return styleElement;\n };\n Stylesheet.prototype._findPlaceholderStyleTag = function () {\n var head = document.head;\n if (head) {\n return head.querySelector('style[data-merge-styles]');\n }\n return null;\n };\n return Stylesheet;\n}());\nexports.Stylesheet = Stylesheet;\n\n\n//# sourceURL=webpack:///../merge-styles/src/Stylesheet.ts?");
444
444
 
445
445
  /***/ }),
446
446
 
@@ -25219,7 +25219,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar th
25219
25219
  /***/ (function(module, exports, __webpack_require__) {
25220
25220
 
25221
25221
  "use strict";
25222
- eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nvar set_version_1 = __webpack_require__(/*! @uifabric/set-version */ \"../set-version/src/index.ts\");\nset_version_1.setVersion('@fluentui/react-theme-provider', '0.19.14');\n\n\n//# sourceURL=webpack:///../react-theme-provider/src/version.ts?");
25222
+ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nvar set_version_1 = __webpack_require__(/*! @uifabric/set-version */ \"../set-version/src/index.ts\");\nset_version_1.setVersion('@fluentui/react-theme-provider', '0.19.15');\n\n\n//# sourceURL=webpack:///../react-theme-provider/src/version.ts?");
25223
25223
 
25224
25224
  /***/ }),
25225
25225
 
@@ -25651,7 +25651,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar bu
25651
25651
  /***/ (function(module, exports, __webpack_require__) {
25652
25652
 
25653
25653
  "use strict";
25654
- eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nvar set_version_1 = __webpack_require__(/*! @uifabric/set-version */ \"../set-version/src/index.ts\");\nset_version_1.setVersion('@uifabric/styling', '7.24.0');\n\n\n//# sourceURL=webpack:///../styling/src/version.ts?");
25654
+ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nvar set_version_1 = __webpack_require__(/*! @uifabric/set-version */ \"../set-version/src/index.ts\");\nset_version_1.setVersion('@uifabric/styling', '7.25.0');\n\n\n//# sourceURL=webpack:///../styling/src/version.ts?");
25655
25655
 
25656
25656
  /***/ }),
25657
25657
 
@@ -27727,7 +27727,7 @@ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\nvar ts
27727
27727
  /***/ (function(module, exports, __webpack_require__) {
27728
27728
 
27729
27729
  "use strict";
27730
- eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nvar set_version_1 = __webpack_require__(/*! @uifabric/set-version */ \"../set-version/src/index.ts\");\nset_version_1.setVersion('@fluentui/react-button', '0.20.14');\n\n\n//# sourceURL=webpack:///./src/version.ts?");
27730
+ eval("\nObject.defineProperty(exports, \"__esModule\", { value: true });\n// Do not modify this file; it is generated as part of publish.\n// The checked in version is a placeholder only and will not be updated.\nvar set_version_1 = __webpack_require__(/*! @uifabric/set-version */ \"../set-version/src/index.ts\");\nset_version_1.setVersion('@fluentui/react-button', '0.20.15');\n\n\n//# sourceURL=webpack:///./src/version.ts?");
27731
27731
 
27732
27732
  /***/ }),
27733
27733
 
@@ -71,4 +71,4 @@
71
71
  }</script><style>#root[hidden],
72
72
  #docs-root[hidden] {
73
73
  display: none !important;
74
- }</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script src="runtime~main.9db2ed9759cdc21f816b.bundle.js"></script><script src="vendors~main.9db2ed9759cdc21f816b.bundle.js"></script><script src="main.9db2ed9759cdc21f816b.bundle.js"></script></body></html>
74
+ }</style></head><body><div class="sb-nopreview sb-wrapper"><div class="sb-nopreview_main"><h1 class="sb-nopreview_heading sb-heading">No Preview</h1><p>Sorry, but you either have no stories or none are selected somehow.</p><ul><li>Please check the Storybook config.</li><li>Try reloading the page.</li></ul><p>If the problem persists, check the browser console, or the terminal you've run Storybook from.</p></div></div><div class="sb-errordisplay sb-wrapper"><pre id="error-message" class="sb-heading"></pre><pre class="sb-errordisplay_code"><code id="error-stack"></code></pre></div><div id="root"></div><div id="docs-root"></div><script src="runtime~main.99285b8b4757d19c21e2.bundle.js"></script><script src="vendors~main.99285b8b4757d19c21e2.bundle.js"></script><script src="main.99285b8b4757d19c21e2.bundle.js"></script></body></html>
@@ -3828,7 +3828,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
3828
3828
  // Do not modify this file; it is generated as part of publish.
3829
3829
  // The checked in version is a placeholder only and will not be updated.
3830
3830
  var set_version_1 = __webpack_require__(57);
3831
- set_version_1.setVersion('office-ui-fabric-react', '7.199.2');
3831
+ set_version_1.setVersion('office-ui-fabric-react', '7.199.4');
3832
3832
 
3833
3833
 
3834
3834
  /***/ }),
@@ -4037,6 +4037,7 @@ var Stylesheet = /** @class */ (function () {
4037
4037
  Stylesheet.prototype._createStyleElement = function () {
4038
4038
  var head = document.head;
4039
4039
  var styleElement = document.createElement('style');
4040
+ var nodeToInsertBefore = null;
4040
4041
  styleElement.setAttribute('data-merge-styles', 'true');
4041
4042
  var cspSettings = this._config.cspSettings;
4042
4043
  if (cspSettings) {
@@ -4047,17 +4048,18 @@ var Stylesheet = /** @class */ (function () {
4047
4048
  if (this._lastStyleElement) {
4048
4049
  // If the `nextElementSibling` is null, then the insertBefore will act as a regular append.
4049
4050
  // https://developer.mozilla.org/en-US/docs/Web/API/Node/insertBefore#Syntax
4050
- head.insertBefore(styleElement, this._lastStyleElement.nextElementSibling);
4051
+ nodeToInsertBefore = this._lastStyleElement.nextElementSibling;
4051
4052
  }
4052
4053
  else {
4053
4054
  var placeholderStyleTag = this._findPlaceholderStyleTag();
4054
4055
  if (placeholderStyleTag) {
4055
- head.insertBefore(styleElement, placeholderStyleTag.nextElementSibling);
4056
+ nodeToInsertBefore = placeholderStyleTag.nextElementSibling;
4056
4057
  }
4057
4058
  else {
4058
- head.insertBefore(styleElement, head.childNodes[0]);
4059
+ nodeToInsertBefore = head.childNodes[0];
4059
4060
  }
4060
4061
  }
4062
+ head.insertBefore(styleElement, head.contains(nodeToInsertBefore) ? nodeToInsertBefore : null);
4061
4063
  this._lastStyleElement = styleElement;
4062
4064
  return styleElement;
4063
4065
  };
@@ -53287,7 +53289,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
53287
53289
  // Do not modify this file; it is generated as part of publish.
53288
53290
  // The checked in version is a placeholder only and will not be updated.
53289
53291
  var set_version_1 = __webpack_require__(57);
53290
- set_version_1.setVersion('@uifabric/styling', '7.24.0');
53292
+ set_version_1.setVersion('@uifabric/styling', '7.25.0');
53291
53293
 
53292
53294
 
53293
53295
  /***/ }),
@@ -54566,7 +54568,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
54566
54568
  // Do not modify this file; it is generated as part of publish.
54567
54569
  // The checked in version is a placeholder only and will not be updated.
54568
54570
  var set_version_1 = __webpack_require__(57);
54569
- set_version_1.setVersion('@fluentui/react-focus', '7.18.15');
54571
+ set_version_1.setVersion('@fluentui/react-focus', '7.18.16');
54570
54572
 
54571
54573
 
54572
54574
  /***/ }),
@@ -57077,7 +57079,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
57077
57079
  // Do not modify this file; it is generated as part of publish.
57078
57080
  // The checked in version is a placeholder only and will not be updated.
57079
57081
  var set_version_1 = __webpack_require__(57);
57080
- set_version_1.setVersion('@fluentui/react-theme-provider', '0.19.14');
57082
+ set_version_1.setVersion('@fluentui/react-theme-provider', '0.19.15');
57081
57083
 
57082
57084
 
57083
57085
  /***/ }),
@@ -71073,7 +71075,7 @@ var GroupHeaderBase = /** @class */ (function (_super) {
71073
71075
  React.createElement("div", { className: this._classNames.dropIcon, role: "presentation" },
71074
71076
  React.createElement(Icon_1.Icon, { iconName: "Tag" })),
71075
71077
  React.createElement("div", { role: "gridcell" },
71076
- React.createElement("button", tslib_1.__assign({ "data-is-focusable": false, type: "button", className: this._classNames.expand, onClick: this._onToggleClick, "aria-expanded": !this.state.isCollapsed }, expandButtonProps),
71078
+ React.createElement("button", tslib_1.__assign({ "data-is-focusable": false, "data-selection-disabled": true, type: "button", className: this._classNames.expand, onClick: this._onToggleClick, "aria-expanded": !this.state.isCollapsed }, expandButtonProps),
71077
71079
  React.createElement(Icon_1.Icon, { className: this._classNames.expandIsCollapsed, iconName: expandButtonIcon || (isRTL ? 'ChevronLeftMed' : 'ChevronRightMed') }))),
71078
71080
  onRenderTitle(this.props),
71079
71081
  isLoadingVisible && React.createElement(Spinner_1.Spinner, { label: loadingText }))));
@@ -79558,7 +79560,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
79558
79560
  // Do not modify this file; it is generated as part of publish.
79559
79561
  // The checked in version is a placeholder only and will not be updated.
79560
79562
  var set_version_1 = __webpack_require__(57);
79561
- set_version_1.setVersion('@uifabric/icons', '7.9.3');
79563
+ set_version_1.setVersion('@uifabric/icons', '7.9.4');
79562
79564
 
79563
79565
 
79564
79566
  /***/ }),
@@ -83538,7 +83540,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
83538
83540
  // Do not modify this file; it is generated as part of publish.
83539
83541
  // The checked in version is a placeholder only and will not be updated.
83540
83542
  var set_version_1 = __webpack_require__(57);
83541
- set_version_1.setVersion('@uifabric/foundation', '7.10.14');
83543
+ set_version_1.setVersion('@uifabric/foundation', '7.10.15');
83542
83544
 
83543
83545
 
83544
83546
  /***/ }),
@@ -87291,7 +87293,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
87291
87293
  // Do not modify this file; it is generated as part of publish.
87292
87294
  // The checked in version is a placeholder only and will not be updated.
87293
87295
  var set_version_1 = __webpack_require__(57);
87294
- set_version_1.setVersion('@fluentui/react-button', '0.20.14');
87296
+ set_version_1.setVersion('@fluentui/react-button', '0.20.15');
87295
87297
 
87296
87298
 
87297
87299
  /***/ }),
@@ -127768,4 +127770,4 @@ exports.ToggleButtons = function () { return (React.createElement(office_ui_fabr
127768
127770
 
127769
127771
  /***/ })
127770
127772
  ],[[943,1,2]]]);
127771
- //# sourceMappingURL=main.9db2ed9759cdc21f816b.bundle.js.map
127773
+ //# sourceMappingURL=main.99285b8b4757d19c21e2.bundle.js.map