- ({
+ columnId: 'lastUpdate',
+ compare: (a, b) => {
+ return a.lastUpdate.label.localeCompare(b.lastUpdate.label);
+ },
+ renderHeaderCell: () => {
+ return 'Last update';
+ },
+ renderCell: item => {
+ return
{item.lastUpdate.label} ;
+ },
+ }),
+];
+
+export const RowNavigation = () => {
+ return (
+
+
+
+ {({ renderHeaderCell }) => {renderHeaderCell()} }
+
+
+ >
+ {({ item, rowId }) => (
+ key={rowId}>
+ {({ renderCell }) => {renderCell(item)} }
+
+ )}
+
+
+ );
+};
+
+RowNavigation.storyName = 'Row Navigation (unstable)';
+RowNavigation.parameters = {
+ docs: {
+ description: {
+ story: [
+ 'Different keyboard navigation strategies are supported through the `focusMode` prop.',
+ '',
+ "> ⚠️ The Fluent UI team doesn't currently know all the a11y specifics of row navigation yet to provide",
+ 'accurate guidance for this scenario. Until then, if using the unstable mode of this keyboard navigation',
+ 'strategy, the user is responsible for the accessibility of the component.',
+ ].join('\n'),
+ },
+ },
+};
diff --git a/packages/react-components/react-table/stories/Table/RowNavigation.stories.tsx b/packages/react-components/react-table/stories/Table/RowNavigation.stories.tsx
new file mode 100644
index 00000000000000..27c6d652971c11
--- /dev/null
+++ b/packages/react-components/react-table/stories/Table/RowNavigation.stories.tsx
@@ -0,0 +1,132 @@
+import * as React from 'react';
+import {
+ FolderRegular,
+ EditRegular,
+ OpenRegular,
+ DocumentRegular,
+ PeopleRegular,
+ DocumentPdfRegular,
+ VideoRegular,
+} from '@fluentui/react-icons';
+import {
+ PresenceBadgeStatus,
+ Avatar,
+ Button,
+ useArrowNavigationGroup,
+ TableBody,
+ TableCell,
+ TableRow,
+ Table,
+ TableHeader,
+ TableHeaderCell,
+ TableCellLayout,
+} from '@fluentui/react-components';
+
+const items = [
+ {
+ file: { label: 'Meeting notes', icon: },
+ author: { label: 'Max Mustermann', status: 'available' },
+ lastUpdated: { label: '7h ago', timestamp: 1 },
+ lastUpdate: {
+ label: 'You edited this',
+ icon: ,
+ },
+ },
+ {
+ file: { label: 'Thursday presentation', icon: },
+ author: { label: 'Erika Mustermann', status: 'busy' },
+ lastUpdated: { label: 'Yesterday at 1:45 PM', timestamp: 2 },
+ lastUpdate: {
+ label: 'You recently opened this',
+ icon: ,
+ },
+ },
+ {
+ file: { label: 'Training recording', icon: },
+ author: { label: 'John Doe', status: 'away' },
+ lastUpdated: { label: 'Yesterday at 1:45 PM', timestamp: 2 },
+ lastUpdate: {
+ label: 'You recently opened this',
+ icon: ,
+ },
+ },
+ {
+ file: { label: 'Purchase order', icon: },
+ author: { label: 'Jane Doe', status: 'offline' },
+ lastUpdated: { label: 'Tue at 9:30 AM', timestamp: 3 },
+ lastUpdate: {
+ label: 'You shared this in a Teams chat',
+ icon: ,
+ },
+ },
+];
+
+const columns = [
+ { columnKey: 'file', label: 'File' },
+ { columnKey: 'author', label: 'Author' },
+ { columnKey: 'lastUpdated', label: 'Last updated' },
+ { columnKey: 'lastUpdate', label: 'Last update' },
+];
+
+export const RowNavigation = () => {
+ const keyboardNavAttr = useArrowNavigationGroup({ axis: 'grid' });
+
+ return (
+
+
+
+ {columns.map(column => (
+ {column.label}
+ ))}
+
+
+
+
+ {items.map(item => (
+
+
+ {item.file.label}
+
+
+
+ }
+ >
+ {item.author.label}
+
+
+ {item.lastUpdated.label}
+
+ {item.lastUpdate.label}
+
+
+
+ }>Edit
+
+
+
+ ))}
+
+
+ );
+};
+
+RowNavigation.storyName = 'Row Navigation (unstable)';
+RowNavigation.parameters = {
+ docs: {
+ description: {
+ story: [
+ 'Different keyboard navigation strategies are supported through the `focusMode` prop.',
+ '',
+ "> ⚠️ The Fluent UI team doesn't currently know know all the a11y specifics of row navigation yet to provide",
+ 'accurate guidance for this scenario. Until then, if using the unstable mode of this keyboard navigation',
+ 'strategy, the user is responsible for the accessibility of the component.',
+ ].join('\n'),
+ },
+ },
+};
diff --git a/packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap b/packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap
index f1528cfc18019d..47fec5b97ffcd8 100644
--- a/packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap
+++ b/packages/react-components/react-tabs/src/components/Tab/__snapshots__/Tab.test.tsx.snap
@@ -222,6 +222,154 @@ exports[`Tab renders medium size correctly with icon slotted 1`] = `
`;
+exports[`Tab renders large size and vertical correctly with icon slotted 1`] = `
+
+
+
+
+
+
+
+
+ Default Tab
+
+
+
+`;
+
+exports[`Tab renders large size correctly with icon slotted 1`] = `
+
+
+
+
+
+
+
+
+ Default Tab
+
+
+
+`;
+
+exports[`Tab renders medium size and vertical correctly with icon slotted 1`] = `
+
+
+
+
+
+
+
+
+ Default Tab
+
+
+
+`;
+
+exports[`Tab renders medium size correctly with icon slotted 1`] = `
+
+
+
+
+
+
+
+
+ Default Tab
+
+
+
+`;
+
exports[`Tab renders small size and vertical correctly with icon slotted 1`] = `
;
// @public (undocumented)
export const textareaClassNames: SlotClassNames;
+// @public @deprecated (undocumented)
+export const TextareaField_unstable: ForwardRefComponent;
+
+// @public @deprecated (undocumented)
+export const textareaFieldClassNames: {
+ control: string;
+ root: string;
+ label: string;
+ validationMessage: string;
+ validationMessageIcon: string;
+ hint: string;
+};
+
+// @public @deprecated (undocumented)
+export type TextareaFieldProps_unstable = DeprecatedFieldProps;
+
+// @public
+export type TextareaOnChangeData = {
+ value: string;
+};
+
// @public
export type TextareaOnChangeData = {
value: string;
diff --git a/packages/react-components/react-textarea/src/components/TextareaField/TextareaField.tsx b/packages/react-components/react-textarea/src/components/TextareaField/TextareaField.tsx
new file mode 100644
index 00000000000000..445b587257dd84
--- /dev/null
+++ b/packages/react-components/react-textarea/src/components/TextareaField/TextareaField.tsx
@@ -0,0 +1,11 @@
+/* eslint-disable deprecation/deprecation */
+import { DeprecatedFieldProps, getDeprecatedFieldClassNames, makeDeprecatedField } from '@fluentui/react-field';
+import type { ForwardRefComponent } from '@fluentui/react-utilities';
+import { Textarea, textareaClassNames, TextareaProps } from '../../Textarea';
+
+/** @deprecated Use Field with Textarea: ` ` */
+export type TextareaFieldProps = DeprecatedFieldProps;
+/** @deprecated Use Field with Textarea: ` ` */
+export const textareaFieldClassNames = getDeprecatedFieldClassNames(textareaClassNames.root);
+/** @deprecated Use Field with Textarea: ` ` */
+export const TextareaField: ForwardRefComponent = makeDeprecatedField(Textarea);
diff --git a/packages/react-components/react-theme-sass/CHANGELOG.md b/packages/react-components/react-theme-sass/CHANGELOG.md
index 4446c48fd0772c..43bebf56247a27 100644
--- a/packages/react-components/react-theme-sass/CHANGELOG.md
+++ b/packages/react-components/react-theme-sass/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Thu, 07 Mar 2024 19:33:26 GMT and should not be m
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.21)
-Thu, 07 Mar 2024 19:33:26 GMT
+Thu, 07 Mar 2024 19:33:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.20..@fluentui/react-theme-sass_v9.0.0-alpha.21)
### Changes
@@ -15,7 +15,7 @@ Thu, 07 Mar 2024 19:33:26 GMT
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.20)
-Thu, 09 Nov 2023 17:29:46 GMT
+Thu, 09 Nov 2023 17:29:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.18..@fluentui/react-theme-sass_v9.0.0-alpha.20)
### Changes
@@ -24,7 +24,7 @@ Thu, 09 Nov 2023 17:29:46 GMT
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.18)
-Tue, 26 Sep 2023 17:49:13 GMT
+Tue, 26 Sep 2023 17:49:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.17..@fluentui/react-theme-sass_v9.0.0-alpha.18)
### Changes
@@ -33,7 +33,7 @@ Tue, 26 Sep 2023 17:49:13 GMT
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.17)
-Tue, 26 Sep 2023 15:31:43 GMT
+Tue, 26 Sep 2023 15:31:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.16..@fluentui/react-theme-sass_v9.0.0-alpha.17)
### Changes
@@ -42,7 +42,7 @@ Tue, 26 Sep 2023 15:31:43 GMT
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.16)
-Tue, 05 Sep 2023 13:29:09 GMT
+Tue, 05 Sep 2023 13:29:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.15..@fluentui/react-theme-sass_v9.0.0-alpha.16)
### Changes
@@ -51,7 +51,7 @@ Tue, 05 Sep 2023 13:29:09 GMT
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.15)
-Wed, 09 Aug 2023 13:17:08 GMT
+Wed, 09 Aug 2023 13:17:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.14..@fluentui/react-theme-sass_v9.0.0-alpha.15)
### Changes
@@ -60,7 +60,7 @@ Wed, 09 Aug 2023 13:17:08 GMT
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.14)
-Fri, 04 Aug 2023 08:52:56 GMT
+Fri, 04 Aug 2023 08:52:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.13..@fluentui/react-theme-sass_v9.0.0-alpha.14)
### Changes
@@ -70,7 +70,7 @@ Fri, 04 Aug 2023 08:52:56 GMT
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.13)
-Tue, 20 Jun 2023 12:39:05 GMT
+Tue, 20 Jun 2023 12:39:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.12..@fluentui/react-theme-sass_v9.0.0-alpha.13)
### Changes
@@ -80,7 +80,7 @@ Tue, 20 Jun 2023 12:39:05 GMT
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.12)
-Fri, 12 May 2023 20:27:57 GMT
+Fri, 12 May 2023 20:27:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.11..@fluentui/react-theme-sass_v9.0.0-alpha.12)
### Changes
@@ -90,7 +90,7 @@ Fri, 12 May 2023 20:27:57 GMT
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.11)
-Mon, 17 Apr 2023 17:54:00 GMT
+Mon, 17 Apr 2023 17:54:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.10..@fluentui/react-theme-sass_v9.0.0-alpha.11)
### Changes
@@ -99,7 +99,7 @@ Mon, 17 Apr 2023 17:54:00 GMT
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.10)
-Tue, 21 Mar 2023 21:23:11 GMT
+Tue, 21 Mar 2023 21:23:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.9..@fluentui/react-theme-sass_v9.0.0-alpha.10)
### Changes
@@ -110,7 +110,7 @@ Tue, 21 Mar 2023 21:23:11 GMT
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.9)
-Wed, 15 Mar 2023 10:19:53 GMT
+Wed, 15 Mar 2023 10:19:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.8..@fluentui/react-theme-sass_v9.0.0-alpha.9)
### Changes
@@ -120,7 +120,7 @@ Wed, 15 Mar 2023 10:19:53 GMT
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.7)
-Wed, 21 Dec 2022 10:20:33 GMT
+Wed, 21 Dec 2022 10:20:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.6..@fluentui/react-theme-sass_v9.0.0-alpha.7)
### Changes
@@ -129,7 +129,7 @@ Wed, 21 Dec 2022 10:20:33 GMT
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.6)
-Tue, 20 Dec 2022 14:59:31 GMT
+Tue, 20 Dec 2022 14:59:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.5..@fluentui/react-theme-sass_v9.0.0-alpha.6)
### Changes
@@ -139,7 +139,7 @@ Tue, 20 Dec 2022 14:59:31 GMT
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.5)
-Mon, 05 Dec 2022 18:29:37 GMT
+Mon, 05 Dec 2022 18:29:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.4..@fluentui/react-theme-sass_v9.0.0-alpha.5)
### Changes
@@ -148,7 +148,7 @@ Mon, 05 Dec 2022 18:29:37 GMT
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.4)
-Fri, 11 Nov 2022 14:57:47 GMT
+Fri, 11 Nov 2022 14:57:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.3..@fluentui/react-theme-sass_v9.0.0-alpha.4)
### Changes
@@ -158,7 +158,7 @@ Fri, 11 Nov 2022 14:57:47 GMT
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.3)
-Thu, 20 Oct 2022 08:39:59 GMT
+Thu, 20 Oct 2022 08:39:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.2..@fluentui/react-theme-sass_v9.0.0-alpha.3)
### Changes
@@ -167,7 +167,7 @@ Thu, 20 Oct 2022 08:39:59 GMT
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme-sass_v9.0.0-alpha.2)
-Thu, 15 Sep 2022 09:49:39 GMT
+Thu, 15 Sep 2022 09:49:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme-sass_v9.0.0-alpha.1..@fluentui/react-theme-sass_v9.0.0-alpha.2)
### Changes
diff --git a/packages/react-components/react-theme/CHANGELOG.md b/packages/react-components/react-theme/CHANGELOG.md
index 0a58788c48c174..5d88e8b90eaaed 100644
--- a/packages/react-components/react-theme/CHANGELOG.md
+++ b/packages/react-components/react-theme/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Mon, 18 Mar 2024 19:50:46 GMT and should not be m
## [9.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.19)
-Mon, 18 Mar 2024 19:50:46 GMT
+Mon, 18 Mar 2024 19:50:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.18..@fluentui/react-theme_v9.1.19)
### Patches
@@ -15,7 +15,7 @@ Mon, 18 Mar 2024 19:50:46 GMT
## [9.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.18)
-Fri, 15 Mar 2024 21:43:49 GMT
+Fri, 15 Mar 2024 21:43:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.17..@fluentui/react-theme_v9.1.18)
### Patches
@@ -24,7 +24,7 @@ Fri, 15 Mar 2024 21:43:49 GMT
## [9.1.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.17)
-Thu, 07 Mar 2024 19:33:27 GMT
+Thu, 07 Mar 2024 19:33:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.16..@fluentui/react-theme_v9.1.17)
### Patches
@@ -33,7 +33,7 @@ Thu, 07 Mar 2024 19:33:27 GMT
## [9.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.16)
-Thu, 09 Nov 2023 17:29:45 GMT
+Thu, 09 Nov 2023 17:29:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.15..@fluentui/react-theme_v9.1.16)
### Patches
@@ -43,7 +43,7 @@ Thu, 09 Nov 2023 17:29:45 GMT
## [9.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.15)
-Wed, 01 Nov 2023 12:55:59 GMT
+Wed, 01 Nov 2023 12:55:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.14..@fluentui/react-theme_v9.1.15)
### Patches
@@ -52,7 +52,7 @@ Wed, 01 Nov 2023 12:55:59 GMT
## [9.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.14)
-Tue, 26 Sep 2023 17:49:13 GMT
+Tue, 26 Sep 2023 17:49:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.13..@fluentui/react-theme_v9.1.14)
### Patches
@@ -62,7 +62,7 @@ Tue, 26 Sep 2023 17:49:13 GMT
## [9.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.13)
-Tue, 26 Sep 2023 15:31:44 GMT
+Tue, 26 Sep 2023 15:31:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.12..@fluentui/react-theme_v9.1.13)
### Patches
@@ -72,7 +72,7 @@ Tue, 26 Sep 2023 15:31:44 GMT
## [9.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.12)
-Tue, 05 Sep 2023 13:29:09 GMT
+Tue, 05 Sep 2023 13:29:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.11..@fluentui/react-theme_v9.1.12)
### Patches
@@ -82,7 +82,7 @@ Tue, 05 Sep 2023 13:29:09 GMT
## [9.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.11)
-Wed, 09 Aug 2023 13:17:11 GMT
+Wed, 09 Aug 2023 13:17:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.10..@fluentui/react-theme_v9.1.11)
### Patches
@@ -91,7 +91,7 @@ Wed, 09 Aug 2023 13:17:11 GMT
## [9.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.10)
-Fri, 04 Aug 2023 08:52:58 GMT
+Fri, 04 Aug 2023 08:52:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.9..@fluentui/react-theme_v9.1.10)
### Patches
@@ -100,7 +100,7 @@ Fri, 04 Aug 2023 08:52:58 GMT
## [9.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.9)
-Tue, 20 Jun 2023 12:39:07 GMT
+Tue, 20 Jun 2023 12:39:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.8..@fluentui/react-theme_v9.1.9)
### Patches
@@ -109,7 +109,7 @@ Tue, 20 Jun 2023 12:39:07 GMT
## [9.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.8)
-Fri, 12 May 2023 20:27:56 GMT
+Fri, 12 May 2023 20:27:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.7..@fluentui/react-theme_v9.1.8)
### Patches
@@ -119,7 +119,7 @@ Fri, 12 May 2023 20:27:56 GMT
## [9.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.7)
-Tue, 21 Mar 2023 21:23:10 GMT
+Tue, 21 Mar 2023 21:23:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.6..@fluentui/react-theme_v9.1.7)
### Patches
@@ -130,7 +130,7 @@ Tue, 21 Mar 2023 21:23:10 GMT
## [9.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.6)
-Wed, 15 Mar 2023 10:19:53 GMT
+Wed, 15 Mar 2023 10:19:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.5..@fluentui/react-theme_v9.1.6)
### Patches
@@ -139,7 +139,7 @@ Wed, 15 Mar 2023 10:19:53 GMT
## [9.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.5)
-Wed, 21 Dec 2022 10:20:32 GMT
+Wed, 21 Dec 2022 10:20:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.4..@fluentui/react-theme_v9.1.5)
### Patches
@@ -149,7 +149,7 @@ Wed, 21 Dec 2022 10:20:32 GMT
## [9.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.4)
-Tue, 20 Dec 2022 14:59:31 GMT
+Tue, 20 Dec 2022 14:59:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.3..@fluentui/react-theme_v9.1.4)
### Patches
@@ -158,7 +158,7 @@ Tue, 20 Dec 2022 14:59:31 GMT
## [9.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.3)
-Mon, 05 Dec 2022 18:29:36 GMT
+Mon, 05 Dec 2022 18:29:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.2..@fluentui/react-theme_v9.1.3)
### Patches
@@ -168,7 +168,7 @@ Mon, 05 Dec 2022 18:29:36 GMT
## [9.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.2)
-Fri, 11 Nov 2022 14:57:46 GMT
+Fri, 11 Nov 2022 14:57:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.1..@fluentui/react-theme_v9.1.2)
### Patches
@@ -178,7 +178,7 @@ Fri, 11 Nov 2022 14:57:46 GMT
## [9.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.1)
-Thu, 20 Oct 2022 08:39:54 GMT
+Thu, 20 Oct 2022 08:39:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.1.0..@fluentui/react-theme_v9.1.1)
### Patches
@@ -187,7 +187,7 @@ Thu, 20 Oct 2022 08:39:54 GMT
## [9.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.1.0)
-Thu, 15 Sep 2022 09:49:36 GMT
+Thu, 15 Sep 2022 09:49:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0..@fluentui/react-theme_v9.1.0)
### Minor changes
@@ -205,7 +205,7 @@ Thu, 15 Sep 2022 09:49:36 GMT
## [9.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0)
-Tue, 28 Jun 2022 15:13:21 GMT
+Tue, 28 Jun 2022 15:13:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.10..@fluentui/react-theme_v9.0.0)
### Patches
@@ -214,7 +214,7 @@ Tue, 28 Jun 2022 15:13:21 GMT
## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.10)
-Thu, 23 Jun 2022 14:25:31 GMT
+Thu, 23 Jun 2022 14:25:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.9..@fluentui/react-theme_v9.0.0-rc.10)
### Changes
@@ -223,7 +223,7 @@ Thu, 23 Jun 2022 14:25:31 GMT
## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.9)
-Mon, 23 May 2022 18:56:50 GMT
+Mon, 23 May 2022 18:56:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.8..@fluentui/react-theme_v9.0.0-rc.9)
### Changes
@@ -232,7 +232,7 @@ Mon, 23 May 2022 18:56:50 GMT
## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.8)
-Mon, 23 May 2022 12:13:56 GMT
+Mon, 23 May 2022 12:13:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.7..@fluentui/react-theme_v9.0.0-rc.8)
### Changes
@@ -241,7 +241,7 @@ Mon, 23 May 2022 12:13:56 GMT
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.7)
-Thu, 05 May 2022 18:26:27 GMT
+Thu, 05 May 2022 18:26:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.6..@fluentui/react-theme_v9.0.0-rc.7)
### Changes
@@ -252,7 +252,7 @@ Thu, 05 May 2022 18:26:27 GMT
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-theme_v9.0.0-rc.6)
-Wed, 04 May 2022 13:26:33 GMT
+Wed, 04 May 2022 13:26:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-theme_v9.0.0-rc.5..@fluentui/react-theme_v9.0.0-rc.6)
### Changes
diff --git a/packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.ts b/packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.ts
new file mode 100644
index 00000000000000..1163e0a32b042c
--- /dev/null
+++ b/packages/react-components/react-toolbar/src/components/ToolbarButton/useToolbarButtonStyles.ts
@@ -0,0 +1,25 @@
+import { makeStyles, mergeClasses } from '@griffel/react';
+import { useButtonStyles_unstable } from '@fluentui/react-button';
+import { ToolbarButtonState } from './ToolbarButton.types';
+
+const useBaseStyles = makeStyles({
+ vertical: {
+ flexDirection: 'column',
+ },
+ verticalIcon: {
+ fontSize: '24px',
+ },
+});
+
+/**
+ * Apply styling to the ToolbarButton slots based on the state
+ */
+export const useToolbarButtonStyles_unstable = (state: ToolbarButtonState) => {
+ useButtonStyles_unstable(state);
+ const buttonStyles = useBaseStyles();
+
+ state.root.className = mergeClasses(state.root.className, state.vertical && buttonStyles.vertical);
+ if (state.icon) {
+ state.icon.className = mergeClasses(state.icon.className, state.vertical && buttonStyles.verticalIcon);
+ }
+};
diff --git a/packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.ts b/packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.ts
new file mode 100644
index 00000000000000..a17b0c5d43dba0
--- /dev/null
+++ b/packages/react-components/react-toolbar/src/components/ToolbarGroup/useToolbarGroupStyles.ts
@@ -0,0 +1,27 @@
+import { SlotClassNames } from '@fluentui/react-utilities';
+import { makeStyles, mergeClasses, shorthands } from '@griffel/react';
+import type { ToolbarGroupSlots, ToolbarGroupState } from './ToolbarGroup.types';
+
+export const toolbarGroupClassNames: SlotClassNames = {
+ root: 'fui-ToolbarGroup',
+};
+
+/**
+ * Styles for the root slot
+ */
+const useStyles = makeStyles({
+ root: {
+ display: 'flex',
+ ...shorthands.gap('8px'),
+ },
+});
+
+/**
+ * Apply styling to the Toolbar slots based on the state
+ */
+export const useToolbarGroupStyles_unstable = (state: ToolbarGroupState): ToolbarGroupState => {
+ const styles = useStyles();
+ state.root.className = mergeClasses(toolbarGroupClassNames.root, styles.root, state.root.className);
+
+ return state;
+};
diff --git a/packages/react-components/react-tree/src/components/Tree/useTreeStyles.ts b/packages/react-components/react-tree/src/components/Tree/useTreeStyles.ts
new file mode 100644
index 00000000000000..ff48e8a9bd434b
--- /dev/null
+++ b/packages/react-components/react-tree/src/components/Tree/useTreeStyles.ts
@@ -0,0 +1,23 @@
+import { makeStyles, mergeClasses } from '@griffel/react';
+import type { TreeSlots, TreeState } from './Tree.types';
+import type { SlotClassNames } from '@fluentui/react-utilities';
+import { tokens } from '@fluentui/react-theme';
+
+export const treeClassNames: SlotClassNames = {
+ root: 'fui-Tree',
+};
+
+const useStyles = makeStyles({
+ root: {
+ display: 'flex',
+ flexDirection: 'column',
+ rowGap: tokens.spacingVerticalXXS,
+ },
+});
+
+export const useTreeStyles_unstable = (state: TreeState): TreeState => {
+ const styles = useStyles();
+ state.root.className = mergeClasses(treeClassNames.root, styles.root, state.root.className);
+
+ return state;
+};
diff --git a/packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.ts b/packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.ts
new file mode 100644
index 00000000000000..cff31c876e5805
--- /dev/null
+++ b/packages/react-components/react-tree/src/components/TreeItem/useTreeItemStyles.ts
@@ -0,0 +1,158 @@
+import { makeStyles, mergeClasses, shorthands } from '@griffel/react';
+import type { TreeItemSlots, TreeItemState } from './TreeItem.types';
+import type { SlotClassNames } from '@fluentui/react-utilities';
+import { tokens } from '@fluentui/react-theme';
+import { createFocusOutlineStyle } from '@fluentui/react-tabster';
+import { useTreeContext_unstable } from '../../contexts/index';
+import * as React from 'react';
+import { levelToken } from '../../utils/tokens';
+
+export const treeItemClassNames: SlotClassNames = {
+ root: 'fui-TreeItem',
+ content: 'fui-TreeItem__content',
+ subtree: 'fui-TreeItem__subtree',
+ expandIcon: 'fui-TreeItem__expandIcon',
+ actions: 'fui-TreeItem__actions',
+};
+
+/**
+ * Styles for the content slot
+ */
+const useContentStyles = makeStyles({
+ base: {
+ position: 'relative',
+ cursor: 'pointer',
+ display: 'flex',
+ backgroundColor: tokens.colorSubtleBackground,
+ color: tokens.colorNeutralForeground2,
+ paddingRight: tokens.spacingHorizontalNone,
+ paddingLeft: `calc(${levelToken.value} * ${tokens.spacingHorizontalXXL})`,
+ ...shorthands.borderRadius(tokens.borderRadiusMedium),
+ ':active': {
+ color: tokens.colorNeutralForeground2Pressed,
+ backgroundColor: tokens.colorSubtleBackgroundPressed,
+ // TODO: stop using treeItemClassNames.expandIcon for styling
+ [`& .${treeItemClassNames.expandIcon}`]: {
+ color: tokens.colorNeutralForeground3Pressed,
+ },
+ },
+ ':hover': {
+ color: tokens.colorNeutralForeground2Hover,
+ backgroundColor: tokens.colorSubtleBackgroundHover,
+ // TODO: stop using treeItemClassNames.expandIcon for styling
+ [`& .${treeItemClassNames.expandIcon}`]: {
+ color: tokens.colorNeutralForeground3Hover,
+ },
+ },
+ },
+ focusIndicator: createFocusOutlineStyle(),
+ // Appearance variations
+ subtle: {},
+ 'subtle-alpha': {
+ ':hover': {
+ backgroundColor: tokens.colorSubtleBackgroundLightAlphaHover,
+ },
+ ':active': {
+ backgroundColor: tokens.colorSubtleBackgroundLightAlphaPressed,
+ },
+ },
+ transparent: {
+ backgroundColor: tokens.colorTransparentBackground,
+ ':hover': {
+ backgroundColor: tokens.colorTransparentBackgroundHover,
+ },
+ ':active': {
+ backgroundColor: tokens.colorTransparentBackgroundPressed,
+ },
+ },
+ leaf: {
+ paddingLeft: `calc((${levelToken.value} * ${tokens.spacingHorizontalXXL}) + ${tokens.spacingHorizontalXXL})`,
+ },
+});
+
+/**
+ * Styles for the expand icon slot
+ */
+const useExpandIconStyles = makeStyles({
+ base: {
+ display: 'flex',
+ alignItems: 'center',
+ justifyContent: 'center',
+ minWidth: '24px',
+ boxSizing: 'border-box',
+ color: tokens.colorNeutralForeground3,
+ ...shorthands.padding(tokens.spacingVerticalXS, 0),
+ },
+});
+
+/**
+ * Styles for the action icon slot
+ */
+const useActionsStyles = makeStyles({
+ base: {
+ display: 'flex',
+ opacity: '0',
+ position: 'absolute',
+ right: 0,
+ top: 0,
+ marginLeft: 'auto',
+ ...shorthands.padding(0, tokens.spacingHorizontalS),
+ },
+ open: {
+ opacity: '1',
+ position: 'relative',
+ },
+});
+
+export const expandIconInlineStyles = {
+ 90: { transform: `rotate(90deg)` },
+ 0: { transform: `rotate(0deg)` },
+ 180: { transform: `rotate(180deg)` },
+} as const;
+
+/**
+ * Apply styling to the TreeItem slots based on the state
+ */
+export const useTreeItemStyles_unstable = (state: TreeItemState): TreeItemState => {
+ const contentStyles = useContentStyles();
+ const expandIconStyles = useExpandIconStyles();
+ const actionsStyles = useActionsStyles();
+
+ const level = useTreeContext_unstable(ctx => ctx.level) - 1;
+ const appearance = useTreeContext_unstable(ctx => ctx.appearance);
+
+ const { actions, subtree, expandIcon, isActionsVisible: showActions } = state;
+
+ state.root.className = mergeClasses(treeItemClassNames.root, state.root.className);
+
+ state.content.className = mergeClasses(
+ treeItemClassNames.content,
+ contentStyles.base,
+ contentStyles[appearance],
+ contentStyles.focusIndicator,
+ state.isLeaf && contentStyles.leaf,
+ state.content.className,
+ );
+
+ state.root.style = {
+ ...state.root.style,
+ [levelToken.name]: level,
+ } as React.CSSProperties;
+
+ if (expandIcon) {
+ expandIcon.className = mergeClasses(treeItemClassNames.expandIcon, expandIconStyles.base, expandIcon.className);
+ }
+ if (actions) {
+ actions.className = mergeClasses(
+ treeItemClassNames.actions,
+ actionsStyles.base,
+ showActions && actionsStyles.open,
+ actions.className,
+ );
+ }
+ if (subtree) {
+ subtree.className = mergeClasses(treeItemClassNames.subtree, subtree.className);
+ }
+
+ return state;
+};
diff --git a/packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.ts b/packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.ts
new file mode 100644
index 00000000000000..5042722a75ea0b
--- /dev/null
+++ b/packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayout.ts
@@ -0,0 +1,35 @@
+import * as React from 'react';
+import { getNativeElementProps, resolveShorthand } from '@fluentui/react-utilities';
+import type { TreeItemLayoutProps, TreeItemLayoutState } from './TreeItemLayout.types';
+import { useTreeItemContext_unstable } from '../../contexts/treeItemContext';
+
+/**
+ * Create the state required to render TreeItemLayout.
+ *
+ * The returned state can be modified with hooks such as useTreeItemLayoutStyles_unstable,
+ * before being passed to renderTreeItemLayout_unstable.
+ *
+ * @param props - props from this instance of TreeItemLayout
+ * @param ref - reference to root HTMLElement of TreeItemLayout
+ */
+export const useTreeItemLayout_unstable = (
+ props: TreeItemLayoutProps,
+ ref: React.Ref,
+): TreeItemLayoutState => {
+ const { iconAfter, iconBefore, aside, as = 'div' } = props;
+ const treeItemContext = useTreeItemContext_unstable();
+
+ return {
+ ...treeItemContext,
+ components: {
+ root: 'div',
+ iconBefore: 'span',
+ iconAfter: 'span',
+ aside: 'span',
+ },
+ root: getNativeElementProps(as, { ...props, ref }),
+ iconBefore: resolveShorthand(iconBefore, { defaultProps: { 'aria-hidden': true } }),
+ iconAfter: resolveShorthand(iconAfter, { defaultProps: { 'aria-hidden': true } }),
+ aside: resolveShorthand(aside, { defaultProps: { 'aria-hidden': true } }),
+ };
+};
diff --git a/packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.ts b/packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.ts
new file mode 100644
index 00000000000000..6cf9475f02bb43
--- /dev/null
+++ b/packages/react-components/react-tree/src/components/TreeItemLayout/useTreeItemLayoutStyles.ts
@@ -0,0 +1,87 @@
+import { makeStyles, mergeClasses, shorthands } from '@griffel/react';
+import type { TreeItemLayoutSlots, TreeItemLayoutState } from './TreeItemLayout.types';
+import type { SlotClassNames } from '@fluentui/react-utilities';
+import { tokens, typographyStyles } from '@fluentui/react-theme';
+import { useTreeContext_unstable } from '../../contexts/treeContext';
+
+export const treeItemLayoutClassNames: SlotClassNames = {
+ root: 'fui-TreeItemLayout',
+ aside: 'fui-TreeItemLayout__aside',
+ iconAfter: 'fui-TreeItemLayout__iconAfter',
+ iconBefore: 'fui-TreeItemLayout__iconBefore',
+};
+
+/**
+ * Styles for the root slot
+ */
+const useRootStyles = makeStyles({
+ base: {
+ display: 'flex',
+ alignItems: 'center',
+ minHeight: '32px',
+ ...shorthands.flex(1),
+ },
+ medium: {
+ columnGap: tokens.spacingHorizontalSNudge,
+ ...typographyStyles.body1,
+ },
+ small: {
+ columnGap: tokens.spacingHorizontalXS,
+ minHeight: '24px',
+ ...typographyStyles.caption1,
+ },
+});
+
+/**
+ * Styles for the before/after icon slot
+ */
+const useIconStyles = makeStyles({
+ base: {
+ display: 'flex',
+ alignItems: 'center',
+ color: tokens.colorNeutralForeground2,
+ lineHeight: tokens.lineHeightBase500,
+ fontSize: tokens.fontSizeBase500,
+ },
+});
+
+/**
+ * Styles for the action icon slot
+ */
+const useAsideStyles = makeStyles({
+ base: {
+ display: 'flex',
+ alignItems: 'center',
+ marginLeft: 'auto',
+ ...shorthands.padding(0, tokens.spacingHorizontalM),
+ ...shorthands.gap(tokens.spacingHorizontalXS),
+ },
+});
+
+/**
+ * Apply styling to the TreeItemLayout slots based on the state
+ */
+export const useTreeItemLayoutStyles_unstable = (state: TreeItemLayoutState): TreeItemLayoutState => {
+ const { iconAfter, iconBefore, aside, root } = state;
+ const rootStyles = useRootStyles();
+ const iconStyles = useIconStyles();
+ const asideStyles = useAsideStyles();
+
+ const size = useTreeContext_unstable(ctx => ctx.size);
+
+ root.className = mergeClasses(treeItemLayoutClassNames.root, rootStyles.base, rootStyles[size], root.className);
+
+ if (iconBefore) {
+ iconBefore.className = mergeClasses(treeItemLayoutClassNames.iconBefore, iconStyles.base, iconBefore.className);
+ }
+
+ if (iconAfter) {
+ iconAfter.className = mergeClasses(treeItemLayoutClassNames.iconAfter, iconStyles.base, iconAfter.className);
+ }
+
+ if (aside) {
+ aside.className = mergeClasses(treeItemLayoutClassNames.aside, asideStyles.base, aside.className);
+ }
+
+ return state;
+};
diff --git a/packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.ts b/packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.ts
new file mode 100644
index 00000000000000..11c058a7e65963
--- /dev/null
+++ b/packages/react-components/react-tree/src/components/TreeItemPersonaLayout/useTreeItemPersonaLayoutStyles.ts
@@ -0,0 +1,116 @@
+import type { TreeItemPersonaLayoutSlots, TreeItemPersonaLayoutState } from './TreeItemPersonaLayout.types';
+import type { SlotClassNames } from '@fluentui/react-utilities';
+import { makeStyles, mergeClasses, shorthands } from '@griffel/react';
+import { tokens, typographyStyles } from '@fluentui/react-theme';
+
+export const treeItemPersonaLayoutClassNames: SlotClassNames = {
+ root: 'fui-TreeItemPersonaLayout',
+ media: 'fui-TreeItemPersonaLayout__media',
+ content: 'fui-TreeItemPersonaLayout__content',
+ description: 'fui-TreeItemPersonaLayout__description',
+ aside: 'fui-TreeItemPersonaLayout__aside',
+ main: 'fui-TreeItemPersonaLayout__main',
+};
+
+/**
+ * Styles for the root slot
+ */
+const useRootStyles = makeStyles({
+ base: {
+ width: '100%',
+ display: 'flex',
+ alignItems: 'center',
+ },
+});
+
+/**
+ * Styles for the expand icon slot
+ */
+const useMediaStyles = makeStyles({
+ base: {
+ display: 'flex',
+ alignItems: 'center',
+ width: '32px',
+ height: '32px',
+ ...shorthands.padding(0, tokens.spacingHorizontalXS, 0, tokens.spacingHorizontalXXS),
+ },
+});
+
+const useContentStyles = makeStyles({
+ base: {
+ width: '100%',
+ display: 'flex',
+ flexDirection: 'column',
+ ...shorthands.padding(
+ tokens.spacingVerticalMNudge,
+ tokens.spacingHorizontalXS,
+ tokens.spacingVerticalMNudge,
+ tokens.spacingHorizontalS,
+ ),
+ ...shorthands.gap(tokens.spacingVerticalNone, tokens.spacingHorizontalNone),
+ },
+});
+const useMainStyles = makeStyles({
+ base: {
+ ...typographyStyles.body1,
+ },
+});
+const useDescriptionStyles = makeStyles({
+ base: {
+ ...typographyStyles.caption1,
+ },
+});
+const useAsideStyles = makeStyles({
+ base: {
+ display: 'flex',
+ flexDirection: 'column',
+ whiteSpace: 'nowrap',
+ paddingRight: tokens.spacingHorizontalM,
+ ...typographyStyles.caption1,
+ },
+});
+
+/**
+ * Apply styling to the TreeItemPersonaLayout slots based on the state
+ */
+export const useTreeItemPersonaLayoutStyles_unstable = (
+ state: TreeItemPersonaLayoutState,
+): TreeItemPersonaLayoutState => {
+ const rootStyles = useRootStyles();
+ const mediaStyles = useMediaStyles();
+ const contentStyles = useContentStyles();
+ const mainStyles = useMainStyles();
+ const descriptionStyles = useDescriptionStyles();
+ const asideStyles = useAsideStyles();
+
+ state.root.className = mergeClasses(treeItemPersonaLayoutClassNames.root, rootStyles.base, state.root.className);
+
+ state.media.className = mergeClasses(treeItemPersonaLayoutClassNames.media, mediaStyles.base, state.media.className);
+
+ if (state.content) {
+ state.content.className = mergeClasses(
+ treeItemPersonaLayoutClassNames.content,
+ contentStyles.base,
+ state.content.className,
+ );
+ }
+ if (state.main) {
+ state.main.className = mergeClasses(treeItemPersonaLayoutClassNames.main, mainStyles.base, state.main.className);
+ }
+ if (state.description) {
+ state.description.className = mergeClasses(
+ treeItemPersonaLayoutClassNames.description,
+ descriptionStyles.base,
+ state.description.className,
+ );
+ }
+ if (state.aside) {
+ state.aside.className = mergeClasses(
+ treeItemPersonaLayoutClassNames.aside,
+ asideStyles.base,
+ state.aside.className,
+ );
+ }
+
+ return state;
+};
diff --git a/packages/react-components/react-tree/src/utils/useTreeWalker.ts b/packages/react-components/react-tree/src/utils/useTreeWalker.ts
new file mode 100644
index 00000000000000..8fbde4eb82de17
--- /dev/null
+++ b/packages/react-components/react-tree/src/utils/useTreeWalker.ts
@@ -0,0 +1,16 @@
+import { useFluent_unstable } from '@fluentui/react-shared-contexts';
+import * as React from 'react';
+
+export function useTreeWalker(whatToShow?: number, filter?: NodeFilter | null) {
+ const rootRef = React.useRef(null);
+ const treeWalkerRef = React.useRef(null);
+ const { targetDocument } = useFluent_unstable();
+
+ React.useEffect(() => {
+ if (rootRef.current && targetDocument) {
+ treeWalkerRef.current = targetDocument.createTreeWalker(rootRef.current, whatToShow, filter);
+ }
+ // eslint-disable-next-line react-hooks/exhaustive-deps
+ }, []);
+ return { treeWalker: treeWalkerRef as React.RefObject, root: rootRef };
+}
diff --git a/packages/react-components/react-tree/stories/Tree/TreeControllingOpenAndClose.stories.tsx b/packages/react-components/react-tree/stories/Tree/TreeControllingOpenAndClose.stories.tsx
new file mode 100644
index 00000000000000..c5c8de9fda816b
--- /dev/null
+++ b/packages/react-components/react-tree/stories/Tree/TreeControllingOpenAndClose.stories.tsx
@@ -0,0 +1,43 @@
+import * as React from 'react';
+import { Tree, TreeItem, TreeItemLayout } from '@fluentui/react-tree';
+import { TreeOpenChangeData, TreeOpenChangeEvent } from '../../src/Tree';
+
+export const ControllingOpenAndClose = () => {
+ const [openItems, setOpenItems] = React.useState([]);
+ const handleOpenChange = (event: TreeOpenChangeEvent, data: TreeOpenChangeData) => {
+ setOpenItems(curr =>
+ data.open ? [...curr, event.currentTarget.id] : curr.filter(id => id !== event.currentTarget.id),
+ );
+ };
+ return (
+
+
+ level 1, item 1
+
+
+ level 2, item 1
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+
+ level 1, item 2
+
+
+ level 2, item 1
+
+
+ level 3, item 1
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/Tree/TreeDefaultOpenTrees.stories.tsx b/packages/react-components/react-tree/stories/Tree/TreeDefaultOpenTrees.stories.tsx
new file mode 100644
index 00000000000000..654b1547facf8d
--- /dev/null
+++ b/packages/react-components/react-tree/stories/Tree/TreeDefaultOpenTrees.stories.tsx
@@ -0,0 +1,38 @@
+import * as React from 'react';
+import { Tree, TreeItem, TreeItemLayout } from '@fluentui/react-tree';
+
+export const DefaultOpenTrees = () => {
+ const defaultOpenTrees = ['default-subtree-1', 'default-subtree-2', 'default-subtree-2-1'];
+
+ return (
+
+
+ level 1, item 1
+
+
+ level 2, item 1
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+
+ level 1, item 2
+
+
+ level 2, item 1
+
+
+ level 3, item 1
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/Tree/TreeExpandCollapseIconOnly.stories.tsx b/packages/react-components/react-tree/stories/Tree/TreeExpandCollapseIconOnly.stories.tsx
new file mode 100644
index 00000000000000..8dcc41265df672
--- /dev/null
+++ b/packages/react-components/react-tree/stories/Tree/TreeExpandCollapseIconOnly.stories.tsx
@@ -0,0 +1,45 @@
+import * as React from 'react';
+import { Tree, TreeItem, TreeItemLayout } from '@fluentui/react-tree';
+import { TreeOpenChangeData, TreeOpenChangeEvent } from '../../src/components/Tree/Tree.types';
+
+export const ExpandCollapseIconOnly = () => {
+ const onOpenChange = (event: TreeOpenChangeEvent, data: TreeOpenChangeData) => {
+ if (data.type === 'click' || data.type === 'enter') {
+ event.preventDefault();
+ // TODO: We might need to add the ID of the treeeItem to the event
+ alert('click on item');
+ }
+ };
+
+ return (
+
+
+ level 1, item 1
+
+
+ level 2, item 1
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+
+ level 1, item 2
+
+
+ level 2, item 1
+
+
+ level 3, item 1
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/Tree/TreeIconAfter.stories.tsx b/packages/react-components/react-tree/stories/Tree/TreeIconAfter.stories.tsx
new file mode 100644
index 00000000000000..7d3cb158a70c83
--- /dev/null
+++ b/packages/react-components/react-tree/stories/Tree/TreeIconAfter.stories.tsx
@@ -0,0 +1,37 @@
+import * as React from 'react';
+import { Tree, TreeItem, TreeItemLayout } from '@fluentui/react-tree';
+import { LockClosed20Regular } from '@fluentui/react-icons';
+
+export const IconAfter = () => {
+ return (
+
+
+ }>level 1, item 1
+
+
+ level 2, item 1
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+
+ }>level 1, item 2
+
+
+ level 2, item 1
+
+
+ level 3, item 1
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/Tree/TreeIconBefore.stories.tsx b/packages/react-components/react-tree/stories/Tree/TreeIconBefore.stories.tsx
new file mode 100644
index 00000000000000..00bbe0e165cc2e
--- /dev/null
+++ b/packages/react-components/react-tree/stories/Tree/TreeIconBefore.stories.tsx
@@ -0,0 +1,37 @@
+import * as React from 'react';
+import { Tree, TreeItem, TreeItemLayout } from '@fluentui/react-tree';
+import { CheckboxChecked20Filled, CheckboxUnchecked20Filled } from '@fluentui/react-icons';
+
+export const IconBefore = () => {
+ return (
+
+
+ }>level 1, item 1
+
+
+ level 2, item 1
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+
+ }>level 1, item 2
+
+
+ level 2, item 1
+
+
+ level 3, item 1
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/Tree/TreeLayout.stories.tsx b/packages/react-components/react-tree/stories/Tree/TreeLayout.stories.tsx
new file mode 100644
index 00000000000000..c76588ad8d6442
--- /dev/null
+++ b/packages/react-components/react-tree/stories/Tree/TreeLayout.stories.tsx
@@ -0,0 +1,104 @@
+import * as React from 'react';
+import { Tree, TreeItem, TreeItemLayout } from '@fluentui/react-tree';
+import {
+ CalendarLtr20Regular,
+ Flag20Regular,
+ FluentIconsProps,
+ Important16Regular,
+ LockClosed20Regular,
+ MoreHorizontal20Regular,
+ SquareMultiple20Regular,
+} from '@fluentui/react-icons';
+import { Button, CounterBadge, Menu, MenuItem, MenuList, MenuPopover, MenuTrigger } from '@fluentui/react-components';
+
+const iconStyleProps: FluentIconsProps = {
+ primaryFill: 'red',
+};
+
+const Badges = () => (
+ <>
+
+
+ >
+);
+
+const RenderIconsAfter = () => (
+ <>
+
+
+ >
+);
+
+const Actions = () => (
+ <>
+ } />
+
+
+ } />
+
+
+
+
+ New
+ New Window
+ Open File
+ Open Folder
+
+
+
+ >
+);
+
+const treeItemLayoutProps = {
+ iconBefore: ,
+ iconAfter: ,
+};
+
+export const Layout = () => {
+ return (
+
+ }>
+ }>
+ Content
+
+
+ }>
+ Tree Item
+
+
+ level 2, item 1
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+
+ level 2, item 2
+
+
+ level 2, item 3
+
+
+
+ }>
+ }>
+ Content
+
+
+ }>
+ level 2, item 1
+
+
+ level 3, item 1
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutDefault.stories.tsx b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutDefault.stories.tsx
new file mode 100644
index 00000000000000..8f4ded4408824d
--- /dev/null
+++ b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutDefault.stories.tsx
@@ -0,0 +1,37 @@
+import * as React from 'react';
+import { Avatar } from '@fluentui/react-components';
+import { Tree, TreeItem, TreeItemPersonaLayout } from '@fluentui/react-tree';
+
+export const Default = () => {
+ return (
+
+
+ }>content
+
+
+ }>content
+
+
+ }>content
+
+
+ }>content
+
+
+
+
+ }>content
+
+
+ }>content
+
+
+ }>content
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutDescription.md b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutDescription.md
new file mode 100644
index 00000000000000..e69de29bb2d1d6
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutMedia.stories.tsx b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutMedia.stories.tsx
new file mode 100644
index 00000000000000..4decbda8d4598d
--- /dev/null
+++ b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutMedia.stories.tsx
@@ -0,0 +1,38 @@
+import * as React from 'react';
+import { Avatar } from '@fluentui/react-components';
+import { Tree, TreeItem, TreeItemPersonaLayout } from '@fluentui/react-tree';
+
+export const Media = () => {
+ return (
+
+
+ }>Default media
+
+
+ }>Smaller size
+
+
+ }>Smaller size
+
+
+ }>Smaller size
+
+
+
+
+ }>Square media
+
+
+ }>Smaller size
+
+
+ }>Smaller size
+
+
+ }>Smaller size
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutReadUnread.stories.tsx b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutReadUnread.stories.tsx
new file mode 100644
index 00000000000000..fb6df6d7b88769
--- /dev/null
+++ b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutReadUnread.stories.tsx
@@ -0,0 +1,31 @@
+import * as React from 'react';
+import { Avatar, makeStyles } from '@fluentui/react-components';
+import { Tree, TreeItem, TreeItemPersonaLayout } from '@fluentui/react-tree';
+
+const useStyles = makeStyles({
+ unread: {
+ fontWeight: 'bold',
+ },
+});
+
+export const ReadUnread = () => {
+ const styles = useStyles();
+
+ return (
+
+
+ }>
+ Read content message
+
+
+
+ Secondary text content
}
+ media={ }
+ >
+ Unread content message
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutWithDescription.stories.tsx b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutWithDescription.stories.tsx
new file mode 100644
index 00000000000000..3beace7f217c82
--- /dev/null
+++ b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreeItemPersonaLayoutWithDescription.stories.tsx
@@ -0,0 +1,51 @@
+import * as React from 'react';
+import { Avatar } from '@fluentui/react-components';
+import { Tree, TreeItem, TreeItemPersonaLayout } from '@fluentui/react-tree';
+
+export const WithDescription = () => {
+ return (
+
+
+ }>
+ Primary text content
+
+
+
+ }>
+ content
+
+
+
+ }>
+ content
+
+
+
+ }>
+ content
+
+
+
+
+
+ }>
+ Primary text content
+
+
+
+ }>
+ content
+
+
+
+ }>
+ content
+
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreePersonaLayout.stories.tsx b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreePersonaLayout.stories.tsx
new file mode 100644
index 00000000000000..563ceb09703b92
--- /dev/null
+++ b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/TreePersonaLayout.stories.tsx
@@ -0,0 +1,134 @@
+import * as React from 'react';
+import {
+ Avatar,
+ Button,
+ CounterBadge,
+ Menu,
+ MenuItem,
+ MenuList,
+ MenuPopover,
+ MenuTrigger,
+ makeStyles,
+ shorthands,
+ tokens,
+} from '@fluentui/react-components';
+import { Tree, TreeItem, TreeItemPersonaLayout } from '@fluentui/react-tree';
+import { Flag20Regular, FluentIconsProps, Important16Regular, MoreHorizontal20Regular } from '@fluentui/react-icons';
+
+const useBadgeStyles = makeStyles({
+ base: {
+ display: 'flex',
+ alignItems: 'center',
+ marginLeft: 'auto',
+ ...shorthands.padding(0, tokens.spacingHorizontalXS),
+ ...shorthands.gap(tokens.spacingHorizontalXS),
+ },
+});
+
+const useStyles = makeStyles({
+ unread: {
+ fontWeight: 'bold',
+ },
+});
+
+const iconStyleProps: FluentIconsProps = {
+ primaryFill: 'red',
+};
+
+const Badges = () => {
+ const badgeStyles = useBadgeStyles();
+ return (
+
+
+
+
+ );
+};
+
+const RenderActions = () => {
+ return (
+ <>
+ } />
+
+
+ } />
+
+
+
+
+ New
+ New Window
+ Open File
+ Open Folder
+
+
+
+ >
+ );
+};
+
+export const TreePersonaLayout = () => {
+ const styles = useStyles();
+
+ return (
+
+ }>
+
+ 00:00 AM
+
+ >
+ }
+ media={ }
+ >
+ Primary text slot
+
+
+
+ }>content
+
+
+ }>
+ content
+
+
+
+ }>
+ content
+
+
+
+
+ }>
+ Secondary text slot}
+ aside={
+ <>
+ 00:00 AM
+
+ >
+ }
+ media={ }
+ >
+ Primary text slot
+
+
+
+ }>
+ content
+
+
+
+ }>
+ content
+
+
+
+
+
+
+
+ );
+};
diff --git a/packages/react-components/react-tree/stories/TreeItemPersonaLayout/index.stories.tsx b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/index.stories.tsx
new file mode 100644
index 00000000000000..f4134a0adaa11c
--- /dev/null
+++ b/packages/react-components/react-tree/stories/TreeItemPersonaLayout/index.stories.tsx
@@ -0,0 +1,21 @@
+import { TreeItemPersonaLayout } from '@fluentui/react-tree';
+
+import descriptionMd from './TreeItemPersonaLayoutDescription.md';
+
+export { Default } from './TreeItemPersonaLayoutDefault.stories';
+export { TreePersonaLayout } from './TreePersonaLayout.stories';
+export { WithDescription } from './TreeItemPersonaLayoutWithDescription.stories';
+export { ReadUnread } from './TreeItemPersonaLayoutReadUnread.stories';
+export { Media } from './TreeItemPersonaLayoutMedia.stories';
+
+export default {
+ title: 'Preview Components/Tree/PersonaTreeItem',
+ component: TreeItemPersonaLayout,
+ parameters: {
+ docs: {
+ description: {
+ component: [descriptionMd].join('\n'),
+ },
+ },
+ },
+};
diff --git a/packages/react-components/react-virtualizer/.npmignore b/packages/react-components/react-virtualizer/.npmignore
new file mode 100644
index 00000000000000..f7ce568a6dbf7c
--- /dev/null
+++ b/packages/react-components/react-virtualizer/.npmignore
@@ -0,0 +1,30 @@
+.storybook/
+.vscode/
+bundle-size/
+config/
+coverage/
+docs/
+etc/
+node_modules/
+src/
+stories/
+dist/types/
+temp/
+__fixtures__
+__mocks__
+__tests__
+
+*.api.json
+*.log
+*.spec.*
+*.cy.*
+*.test.*
+*.yml
+
+# config files
+*config.*
+*rc.*
+.editorconfig
+.eslint*
+.git*
+.prettierignore
diff --git a/packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.ts b/packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.ts
new file mode 100644
index 00000000000000..0f11ce8778d7b9
--- /dev/null
+++ b/packages/react-components/react-virtualizer/src/components/Virtualizer/useVirtualizerStyles.ts
@@ -0,0 +1,122 @@
+import { makeStyles, mergeClasses } from '@griffel/react';
+import { VirtualizerSlots, VirtualizerState } from './Virtualizer.types';
+import type { SlotClassNames } from '@fluentui/react-utilities';
+
+const virtualizerClassName = 'fui-Virtualizer';
+export const virtualizerClassNames: SlotClassNames = {
+ before: `${virtualizerClassName}__before`,
+ beforeContainer: `${virtualizerClassName}__beforeContainer`,
+ after: `${virtualizerClassName}__after`,
+ afterContainer: `${virtualizerClassName}__afterContainer`,
+};
+
+const useStyles = makeStyles({
+ base: {
+ display: 'block',
+ pointerEvents: 'none',
+ },
+ relative: {
+ position: 'relative',
+ },
+ horizontal: {
+ minHeight: '100%',
+ },
+ vertical: {
+ minWidth: '100%',
+ },
+});
+
+/**
+ * Apply styling to the Virtualizer states
+ */
+export const useVirtualizerStyles_unstable = (state: VirtualizerState): VirtualizerState => {
+ const styles = useStyles();
+ const { reversed, axis, beforeBufferHeight, afterBufferHeight, bufferSize } = state;
+ const horizontal = axis === 'horizontal';
+
+ state.before.className = mergeClasses(
+ virtualizerClassNames.before,
+ styles.base,
+ styles.relative,
+ horizontal ? styles.horizontal : styles.vertical,
+ state.before.className,
+ );
+
+ state.after.className = mergeClasses(
+ virtualizerClassNames.after,
+ styles.base,
+ styles.relative,
+ horizontal ? styles.horizontal : styles.vertical,
+ state.after.className,
+ );
+
+ state.beforeContainer.className = mergeClasses(
+ virtualizerClassNames.beforeContainer,
+ styles.base,
+ horizontal ? styles.horizontal : styles.vertical,
+ state.beforeContainer.className,
+ );
+
+ state.afterContainer.className = mergeClasses(
+ virtualizerClassNames.afterContainer,
+ styles.base,
+ horizontal ? styles.horizontal : styles.vertical,
+ state.afterContainer.className,
+ );
+
+ const beforeHeightPx = beforeBufferHeight + 'px';
+ const afterHeightPx = afterBufferHeight + 'px';
+ const beforeBufferHeightPx = beforeBufferHeight + bufferSize + 'px';
+ const afterBufferHeightPx = afterBufferHeight + bufferSize + 'px';
+ const bufferPx = bufferSize + 'px';
+
+ const beforeBuffer = {
+ // Column
+ ...(!reversed && !horizontal && { marginBottom: `-${bufferPx}` }),
+ // Column-Reverse
+ ...(reversed && !horizontal && { marginTop: `-${bufferPx}` }),
+ // Row
+ ...(!reversed && horizontal && { marginLeft: `-${bufferPx}` }),
+ // Row-Reverse
+ ...(reversed && horizontal && { marginRight: `-${bufferPx}` }),
+ };
+
+ const afterBuffer = {
+ // Column
+ ...(!reversed && !horizontal && { marginTop: `-${bufferPx}` }),
+ // Column-Reverse
+ ...(reversed && !horizontal && { marginBottom: `-${bufferPx}` }),
+ // Row
+ ...(!reversed && horizontal && { marginLeft: `-${bufferPx}` }),
+ // Row-Reverse
+ ...(reversed && horizontal && { marginRight: `-${bufferPx}` }),
+ };
+
+ state.before.style = {
+ height: horizontal ? '100%' : beforeBufferHeightPx,
+ width: horizontal ? beforeBufferHeightPx : '100%',
+ ...beforeBuffer,
+ ...state.before.style,
+ };
+
+ state.beforeContainer.style = {
+ height: horizontal ? 'auto' : beforeHeightPx,
+ width: horizontal ? beforeHeightPx : 'auto',
+ ...state.beforeContainer.style,
+ };
+
+ state.after.style = {
+ height: horizontal ? '100%' : afterBufferHeightPx,
+ width: horizontal ? afterBufferHeightPx : '100%',
+ ...afterBuffer,
+ ...state.after.style,
+ };
+
+ state.afterContainer.style = {
+ height: horizontal ? 'auto' : afterHeightPx,
+ width: horizontal ? afterHeightPx : 'auto',
+ ...state.afterContainer.style,
+ };
+
+ return state;
+};
diff --git a/packages/react-monaco-editor/CHANGELOG.md b/packages/react-monaco-editor/CHANGELOG.md
index cad00529c16550..4ae602abef3ad9 100644
--- a/packages/react-monaco-editor/CHANGELOG.md
+++ b/packages/react-monaco-editor/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Thu, 25 Apr 2024 07:25:20 GMT and should not be m
## [1.7.200](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.200)
-Thu, 25 Apr 2024 07:25:20 GMT
+Thu, 25 Apr 2024 07:25:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.199..@fluentui/react-monaco-editor_v1.7.200)
### Patches
@@ -15,7 +15,7 @@ Thu, 25 Apr 2024 07:25:20 GMT
## [1.7.199](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.199)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.198..@fluentui/react-monaco-editor_v1.7.199)
### Patches
@@ -28,7 +28,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [1.7.198](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.198)
-Mon, 22 Apr 2024 07:28:27 GMT
+Mon, 22 Apr 2024 07:28:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.197..@fluentui/react-monaco-editor_v1.7.198)
### Patches
@@ -39,7 +39,7 @@ Mon, 22 Apr 2024 07:28:27 GMT
## [1.7.197](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.197)
-Fri, 19 Apr 2024 07:26:09 GMT
+Fri, 19 Apr 2024 07:26:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.196..@fluentui/react-monaco-editor_v1.7.197)
### Patches
@@ -48,7 +48,7 @@ Fri, 19 Apr 2024 07:26:09 GMT
## [1.7.196](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.196)
-Thu, 18 Apr 2024 07:27:08 GMT
+Thu, 18 Apr 2024 07:27:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.195..@fluentui/react-monaco-editor_v1.7.196)
### Patches
@@ -57,7 +57,7 @@ Thu, 18 Apr 2024 07:27:08 GMT
## [1.7.195](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.195)
-Wed, 17 Apr 2024 07:25:42 GMT
+Wed, 17 Apr 2024 07:25:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.194..@fluentui/react-monaco-editor_v1.7.195)
### Patches
@@ -66,7 +66,7 @@ Wed, 17 Apr 2024 07:25:42 GMT
## [1.7.194](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.194)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.193..@fluentui/react-monaco-editor_v1.7.194)
### Patches
@@ -79,7 +79,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [1.7.193](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.193)
-Wed, 10 Apr 2024 07:28:55 GMT
+Wed, 10 Apr 2024 07:28:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.192..@fluentui/react-monaco-editor_v1.7.193)
### Patches
@@ -89,7 +89,7 @@ Wed, 10 Apr 2024 07:28:55 GMT
## [1.7.192](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.192)
-Tue, 09 Apr 2024 07:26:50 GMT
+Tue, 09 Apr 2024 07:26:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.191..@fluentui/react-monaco-editor_v1.7.192)
### Patches
@@ -99,7 +99,7 @@ Tue, 09 Apr 2024 07:26:50 GMT
## [1.7.191](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.191)
-Mon, 08 Apr 2024 07:25:53 GMT
+Mon, 08 Apr 2024 07:25:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.190..@fluentui/react-monaco-editor_v1.7.191)
### Patches
@@ -108,7 +108,7 @@ Mon, 08 Apr 2024 07:25:53 GMT
## [1.7.190](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.190)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.189..@fluentui/react-monaco-editor_v1.7.190)
### Patches
@@ -121,7 +121,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [1.7.189](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.189)
-Mon, 01 Apr 2024 07:26:16 GMT
+Mon, 01 Apr 2024 07:26:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.188..@fluentui/react-monaco-editor_v1.7.189)
### Patches
@@ -130,7 +130,7 @@ Mon, 01 Apr 2024 07:26:16 GMT
## [1.7.188](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.188)
-Fri, 29 Mar 2024 07:28:45 GMT
+Fri, 29 Mar 2024 07:28:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.187..@fluentui/react-monaco-editor_v1.7.188)
### Patches
@@ -140,7 +140,7 @@ Fri, 29 Mar 2024 07:28:45 GMT
## [1.7.187](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.187)
-Fri, 22 Mar 2024 07:28:53 GMT
+Fri, 22 Mar 2024 07:28:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.186..@fluentui/react-monaco-editor_v1.7.187)
### Patches
@@ -151,7 +151,7 @@ Fri, 22 Mar 2024 07:28:53 GMT
## [1.7.186](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.186)
-Wed, 20 Mar 2024 07:27:31 GMT
+Wed, 20 Mar 2024 07:27:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.185..@fluentui/react-monaco-editor_v1.7.186)
### Patches
@@ -161,7 +161,7 @@ Wed, 20 Mar 2024 07:27:31 GMT
## [1.7.185](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.185)
-Wed, 13 Mar 2024 07:30:28 GMT
+Wed, 13 Mar 2024 07:30:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.184..@fluentui/react-monaco-editor_v1.7.185)
### Patches
@@ -172,7 +172,7 @@ Wed, 13 Mar 2024 07:30:28 GMT
## [1.7.184](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.184)
-Tue, 12 Mar 2024 07:26:23 GMT
+Tue, 12 Mar 2024 07:26:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.183..@fluentui/react-monaco-editor_v1.7.184)
### Patches
@@ -181,7 +181,7 @@ Tue, 12 Mar 2024 07:26:23 GMT
## [1.7.183](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.183)
-Mon, 11 Mar 2024 07:26:26 GMT
+Mon, 11 Mar 2024 07:26:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.182..@fluentui/react-monaco-editor_v1.7.183)
### Patches
@@ -190,7 +190,7 @@ Mon, 11 Mar 2024 07:26:26 GMT
## [1.7.182](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.182)
-Fri, 08 Mar 2024 07:26:30 GMT
+Fri, 08 Mar 2024 07:26:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.181..@fluentui/react-monaco-editor_v1.7.182)
### Patches
@@ -199,7 +199,7 @@ Fri, 08 Mar 2024 07:26:30 GMT
## [1.7.181](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.181)
-Mon, 04 Mar 2024 07:26:19 GMT
+Mon, 04 Mar 2024 07:26:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.180..@fluentui/react-monaco-editor_v1.7.181)
### Patches
@@ -208,7 +208,7 @@ Mon, 04 Mar 2024 07:26:19 GMT
## [1.7.180](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.180)
-Tue, 27 Feb 2024 07:25:42 GMT
+Tue, 27 Feb 2024 07:25:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.179..@fluentui/react-monaco-editor_v1.7.180)
### Patches
@@ -217,7 +217,7 @@ Tue, 27 Feb 2024 07:25:42 GMT
## [1.7.179](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.179)
-Mon, 26 Feb 2024 07:26:18 GMT
+Mon, 26 Feb 2024 07:26:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.178..@fluentui/react-monaco-editor_v1.7.179)
### Patches
@@ -226,7 +226,7 @@ Mon, 26 Feb 2024 07:26:18 GMT
## [1.7.178](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.178)
-Fri, 16 Feb 2024 07:26:24 GMT
+Fri, 16 Feb 2024 07:26:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.177..@fluentui/react-monaco-editor_v1.7.178)
### Patches
@@ -235,7 +235,7 @@ Fri, 16 Feb 2024 07:26:24 GMT
## [1.7.177](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.177)
-Wed, 14 Feb 2024 07:24:16 GMT
+Wed, 14 Feb 2024 07:24:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.176..@fluentui/react-monaco-editor_v1.7.177)
### Patches
@@ -244,7 +244,7 @@ Wed, 14 Feb 2024 07:24:16 GMT
## [1.7.176](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.176)
-Mon, 12 Feb 2024 07:25:24 GMT
+Mon, 12 Feb 2024 07:25:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.175..@fluentui/react-monaco-editor_v1.7.176)
### Patches
@@ -254,7 +254,7 @@ Mon, 12 Feb 2024 07:25:24 GMT
## [1.7.175](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.175)
-Fri, 09 Feb 2024 07:25:49 GMT
+Fri, 09 Feb 2024 07:25:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.174..@fluentui/react-monaco-editor_v1.7.175)
### Patches
@@ -263,7 +263,7 @@ Fri, 09 Feb 2024 07:25:49 GMT
## [1.7.174](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.174)
-Thu, 08 Feb 2024 07:37:50 GMT
+Thu, 08 Feb 2024 07:37:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.173..@fluentui/react-monaco-editor_v1.7.174)
### Patches
@@ -272,7 +272,7 @@ Thu, 08 Feb 2024 07:37:50 GMT
## [1.7.173](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.173)
-Wed, 07 Feb 2024 07:26:19 GMT
+Wed, 07 Feb 2024 07:26:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.172..@fluentui/react-monaco-editor_v1.7.173)
### Patches
@@ -282,7 +282,7 @@ Wed, 07 Feb 2024 07:26:19 GMT
## [1.7.172](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.172)
-Tue, 06 Feb 2024 07:27:42 GMT
+Tue, 06 Feb 2024 07:27:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.171..@fluentui/react-monaco-editor_v1.7.172)
### Patches
@@ -291,7 +291,7 @@ Tue, 06 Feb 2024 07:27:42 GMT
## [1.7.171](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.171)
-Mon, 05 Feb 2024 07:27:40 GMT
+Mon, 05 Feb 2024 07:27:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.170..@fluentui/react-monaco-editor_v1.7.171)
### Patches
@@ -301,7 +301,7 @@ Mon, 05 Feb 2024 07:27:40 GMT
## [1.7.170](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.170)
-Wed, 31 Jan 2024 07:27:57 GMT
+Wed, 31 Jan 2024 07:27:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.169..@fluentui/react-monaco-editor_v1.7.170)
### Patches
@@ -311,7 +311,7 @@ Wed, 31 Jan 2024 07:27:57 GMT
## [1.7.169](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.169)
-Mon, 29 Jan 2024 07:27:14 GMT
+Mon, 29 Jan 2024 07:27:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.168..@fluentui/react-monaco-editor_v1.7.169)
### Patches
@@ -321,7 +321,7 @@ Mon, 29 Jan 2024 07:27:14 GMT
## [1.7.168](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.168)
-Fri, 26 Jan 2024 07:26:12 GMT
+Fri, 26 Jan 2024 07:26:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.167..@fluentui/react-monaco-editor_v1.7.168)
### Patches
@@ -330,7 +330,7 @@ Fri, 26 Jan 2024 07:26:12 GMT
## [1.7.167](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.167)
-Wed, 24 Jan 2024 07:26:58 GMT
+Wed, 24 Jan 2024 07:26:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.166..@fluentui/react-monaco-editor_v1.7.167)
### Patches
@@ -340,7 +340,7 @@ Wed, 24 Jan 2024 07:26:58 GMT
## [1.7.166](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.166)
-Tue, 23 Jan 2024 07:26:42 GMT
+Tue, 23 Jan 2024 07:26:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.165..@fluentui/react-monaco-editor_v1.7.166)
### Patches
@@ -350,7 +350,7 @@ Tue, 23 Jan 2024 07:26:42 GMT
## [1.7.165](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.165)
-Mon, 22 Jan 2024 07:26:52 GMT
+Mon, 22 Jan 2024 07:26:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.164..@fluentui/react-monaco-editor_v1.7.165)
### Patches
@@ -359,7 +359,7 @@ Mon, 22 Jan 2024 07:26:52 GMT
## [1.7.164](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.164)
-Fri, 19 Jan 2024 07:29:32 GMT
+Fri, 19 Jan 2024 07:29:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.163..@fluentui/react-monaco-editor_v1.7.164)
### Patches
@@ -370,7 +370,7 @@ Fri, 19 Jan 2024 07:29:32 GMT
## [1.7.163](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.163)
-Mon, 15 Jan 2024 07:28:14 GMT
+Mon, 15 Jan 2024 07:28:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.162..@fluentui/react-monaco-editor_v1.7.163)
### Patches
@@ -380,7 +380,7 @@ Mon, 15 Jan 2024 07:28:14 GMT
## [1.7.162](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.162)
-Fri, 12 Jan 2024 07:26:36 GMT
+Fri, 12 Jan 2024 07:26:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.161..@fluentui/react-monaco-editor_v1.7.162)
### Patches
@@ -389,7 +389,7 @@ Fri, 12 Jan 2024 07:26:36 GMT
## [1.7.161](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.161)
-Wed, 10 Jan 2024 07:28:50 GMT
+Wed, 10 Jan 2024 07:28:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.160..@fluentui/react-monaco-editor_v1.7.161)
### Patches
@@ -402,7 +402,7 @@ Wed, 10 Jan 2024 07:28:50 GMT
## [1.7.160](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.160)
-Tue, 09 Jan 2024 07:33:09 GMT
+Tue, 09 Jan 2024 07:33:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.159..@fluentui/react-monaco-editor_v1.7.160)
### Patches
@@ -412,7 +412,7 @@ Tue, 09 Jan 2024 07:33:09 GMT
## [1.7.159](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.159)
-Thu, 04 Jan 2024 07:26:40 GMT
+Thu, 04 Jan 2024 07:26:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.158..@fluentui/react-monaco-editor_v1.7.159)
### Patches
@@ -421,7 +421,7 @@ Thu, 04 Jan 2024 07:26:40 GMT
## [1.7.158](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.158)
-Mon, 25 Dec 2023 07:28:36 GMT
+Mon, 25 Dec 2023 07:28:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.157..@fluentui/react-monaco-editor_v1.7.158)
### Patches
@@ -431,7 +431,7 @@ Mon, 25 Dec 2023 07:28:36 GMT
## [1.7.157](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.157)
-Wed, 20 Dec 2023 07:26:55 GMT
+Wed, 20 Dec 2023 07:26:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.156..@fluentui/react-monaco-editor_v1.7.157)
### Patches
@@ -440,7 +440,7 @@ Wed, 20 Dec 2023 07:26:55 GMT
## [1.7.156](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.156)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.155..@fluentui/react-monaco-editor_v1.7.156)
### Patches
@@ -453,7 +453,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [1.7.155](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.155)
-Tue, 12 Dec 2023 07:27:25 GMT
+Tue, 12 Dec 2023 07:27:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.154..@fluentui/react-monaco-editor_v1.7.155)
### Patches
@@ -463,7 +463,7 @@ Tue, 12 Dec 2023 07:27:25 GMT
## [1.7.154](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.154)
-Mon, 04 Dec 2023 07:27:01 GMT
+Mon, 04 Dec 2023 07:27:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.153..@fluentui/react-monaco-editor_v1.7.154)
### Patches
@@ -472,7 +472,7 @@ Mon, 04 Dec 2023 07:27:01 GMT
## [1.7.153](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.153)
-Wed, 29 Nov 2023 07:26:35 GMT
+Wed, 29 Nov 2023 07:26:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.152..@fluentui/react-monaco-editor_v1.7.153)
### Patches
@@ -481,7 +481,7 @@ Wed, 29 Nov 2023 07:26:35 GMT
## [1.7.152](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.152)
-Fri, 24 Nov 2023 07:27:54 GMT
+Fri, 24 Nov 2023 07:27:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.151..@fluentui/react-monaco-editor_v1.7.152)
### Patches
@@ -490,7 +490,7 @@ Fri, 24 Nov 2023 07:27:54 GMT
## [1.7.151](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.151)
-Thu, 16 Nov 2023 07:26:51 GMT
+Thu, 16 Nov 2023 07:26:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.150..@fluentui/react-monaco-editor_v1.7.151)
### Patches
@@ -500,7 +500,7 @@ Thu, 16 Nov 2023 07:26:51 GMT
## [1.7.150](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.150)
-Wed, 15 Nov 2023 07:28:11 GMT
+Wed, 15 Nov 2023 07:28:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.149..@fluentui/react-monaco-editor_v1.7.150)
### Patches
@@ -509,7 +509,7 @@ Wed, 15 Nov 2023 07:28:11 GMT
## [1.7.149](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.149)
-Tue, 14 Nov 2023 07:26:38 GMT
+Tue, 14 Nov 2023 07:26:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.148..@fluentui/react-monaco-editor_v1.7.149)
### Patches
@@ -518,7 +518,7 @@ Tue, 14 Nov 2023 07:26:38 GMT
## [1.7.148](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.148)
-Fri, 10 Nov 2023 07:26:21 GMT
+Fri, 10 Nov 2023 07:26:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.147..@fluentui/react-monaco-editor_v1.7.148)
### Patches
@@ -527,7 +527,7 @@ Fri, 10 Nov 2023 07:26:21 GMT
## [1.7.147](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.147)
-Thu, 09 Nov 2023 07:29:20 GMT
+Thu, 09 Nov 2023 07:29:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.146..@fluentui/react-monaco-editor_v1.7.147)
### Patches
@@ -538,7 +538,7 @@ Thu, 09 Nov 2023 07:29:20 GMT
## [1.7.146](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.146)
-Wed, 08 Nov 2023 07:27:23 GMT
+Wed, 08 Nov 2023 07:27:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.145..@fluentui/react-monaco-editor_v1.7.146)
### Patches
@@ -549,7 +549,7 @@ Wed, 08 Nov 2023 07:27:23 GMT
## [1.7.145](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.145)
-Mon, 06 Nov 2023 07:27:33 GMT
+Mon, 06 Nov 2023 07:27:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.144..@fluentui/react-monaco-editor_v1.7.145)
### Patches
@@ -559,7 +559,7 @@ Mon, 06 Nov 2023 07:27:33 GMT
## [1.7.144](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.144)
-Fri, 03 Nov 2023 07:27:58 GMT
+Fri, 03 Nov 2023 07:27:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.143..@fluentui/react-monaco-editor_v1.7.144)
### Patches
@@ -568,7 +568,7 @@ Fri, 03 Nov 2023 07:27:58 GMT
## [1.7.143](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.143)
-Wed, 01 Nov 2023 07:29:14 GMT
+Wed, 01 Nov 2023 07:29:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.142..@fluentui/react-monaco-editor_v1.7.143)
### Patches
@@ -579,7 +579,7 @@ Wed, 01 Nov 2023 07:29:14 GMT
## [1.7.142](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.142)
-Tue, 31 Oct 2023 07:34:28 GMT
+Tue, 31 Oct 2023 07:34:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.141..@fluentui/react-monaco-editor_v1.7.142)
### Patches
@@ -588,7 +588,7 @@ Tue, 31 Oct 2023 07:34:28 GMT
## [1.7.141](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.141)
-Sat, 28 Oct 2023 00:29:16 GMT
+Sat, 28 Oct 2023 00:29:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.140..@fluentui/react-monaco-editor_v1.7.141)
### Patches
@@ -601,7 +601,7 @@ Sat, 28 Oct 2023 00:29:16 GMT
## [1.7.140](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.140)
-Mon, 23 Oct 2023 07:35:31 GMT
+Mon, 23 Oct 2023 07:35:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.139..@fluentui/react-monaco-editor_v1.7.140)
### Patches
@@ -610,7 +610,7 @@ Mon, 23 Oct 2023 07:35:31 GMT
## [1.7.139](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.139)
-Fri, 20 Oct 2023 07:35:43 GMT
+Fri, 20 Oct 2023 07:35:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.138..@fluentui/react-monaco-editor_v1.7.139)
### Patches
@@ -619,7 +619,7 @@ Fri, 20 Oct 2023 07:35:43 GMT
## [1.7.138](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.138)
-Wed, 18 Oct 2023 07:49:10 GMT
+Wed, 18 Oct 2023 07:49:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.137..@fluentui/react-monaco-editor_v1.7.138)
### Patches
@@ -628,7 +628,7 @@ Wed, 18 Oct 2023 07:49:10 GMT
## [1.7.137](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.137)
-Tue, 17 Oct 2023 07:36:52 GMT
+Tue, 17 Oct 2023 07:36:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.136..@fluentui/react-monaco-editor_v1.7.137)
### Patches
@@ -637,7 +637,7 @@ Tue, 17 Oct 2023 07:36:52 GMT
## [1.7.136](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.136)
-Mon, 16 Oct 2023 07:37:21 GMT
+Mon, 16 Oct 2023 07:37:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.135..@fluentui/react-monaco-editor_v1.7.136)
### Patches
@@ -647,7 +647,7 @@ Mon, 16 Oct 2023 07:37:21 GMT
## [1.7.135](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.135)
-Thu, 12 Oct 2023 07:37:06 GMT
+Thu, 12 Oct 2023 07:37:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.134..@fluentui/react-monaco-editor_v1.7.135)
### Patches
@@ -656,7 +656,7 @@ Thu, 12 Oct 2023 07:37:06 GMT
## [1.7.134](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.134)
-Tue, 10 Oct 2023 07:37:02 GMT
+Tue, 10 Oct 2023 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.133..@fluentui/react-monaco-editor_v1.7.134)
### Patches
@@ -665,7 +665,7 @@ Tue, 10 Oct 2023 07:37:02 GMT
## [1.7.133](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.133)
-Mon, 09 Oct 2023 07:37:25 GMT
+Mon, 09 Oct 2023 07:37:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.132..@fluentui/react-monaco-editor_v1.7.133)
### Patches
@@ -675,7 +675,7 @@ Mon, 09 Oct 2023 07:37:25 GMT
## [1.7.132](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.132)
-Fri, 06 Oct 2023 07:37:00 GMT
+Fri, 06 Oct 2023 07:37:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.131..@fluentui/react-monaco-editor_v1.7.132)
### Patches
@@ -684,7 +684,7 @@ Fri, 06 Oct 2023 07:37:00 GMT
## [1.7.131](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.131)
-Thu, 05 Oct 2023 07:36:20 GMT
+Thu, 05 Oct 2023 07:36:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.130..@fluentui/react-monaco-editor_v1.7.131)
### Patches
@@ -693,7 +693,7 @@ Thu, 05 Oct 2023 07:36:20 GMT
## [1.7.130](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.130)
-Wed, 04 Oct 2023 07:38:36 GMT
+Wed, 04 Oct 2023 07:38:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.129..@fluentui/react-monaco-editor_v1.7.130)
### Patches
@@ -703,7 +703,7 @@ Wed, 04 Oct 2023 07:38:36 GMT
## [1.7.129](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.129)
-Mon, 02 Oct 2023 07:36:47 GMT
+Mon, 02 Oct 2023 07:36:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.128..@fluentui/react-monaco-editor_v1.7.129)
### Patches
@@ -713,7 +713,7 @@ Mon, 02 Oct 2023 07:36:47 GMT
## [1.7.128](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.128)
-Fri, 29 Sep 2023 07:45:30 GMT
+Fri, 29 Sep 2023 07:45:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.127..@fluentui/react-monaco-editor_v1.7.128)
### Patches
@@ -724,7 +724,7 @@ Fri, 29 Sep 2023 07:45:30 GMT
## [1.7.127](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.127)
-Thu, 28 Sep 2023 07:37:17 GMT
+Thu, 28 Sep 2023 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.126..@fluentui/react-monaco-editor_v1.7.127)
### Patches
@@ -734,7 +734,7 @@ Thu, 28 Sep 2023 07:37:17 GMT
## [1.7.126](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.126)
-Mon, 25 Sep 2023 07:36:44 GMT
+Mon, 25 Sep 2023 07:36:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.125..@fluentui/react-monaco-editor_v1.7.126)
### Patches
@@ -743,7 +743,7 @@ Mon, 25 Sep 2023 07:36:44 GMT
## [1.7.125](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.125)
-Mon, 11 Sep 2023 07:35:28 GMT
+Mon, 11 Sep 2023 07:35:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.124..@fluentui/react-monaco-editor_v1.7.125)
### Patches
@@ -752,7 +752,7 @@ Mon, 11 Sep 2023 07:35:28 GMT
## [1.7.124](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.124)
-Thu, 31 Aug 2023 07:36:22 GMT
+Thu, 31 Aug 2023 07:36:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.123..@fluentui/react-monaco-editor_v1.7.124)
### Patches
@@ -762,7 +762,7 @@ Thu, 31 Aug 2023 07:36:22 GMT
## [1.7.123](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.123)
-Tue, 29 Aug 2023 07:44:32 GMT
+Tue, 29 Aug 2023 07:44:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.122..@fluentui/react-monaco-editor_v1.7.123)
### Patches
@@ -771,7 +771,7 @@ Tue, 29 Aug 2023 07:44:32 GMT
## [1.7.122](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.122)
-Mon, 28 Aug 2023 07:36:25 GMT
+Mon, 28 Aug 2023 07:36:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.121..@fluentui/react-monaco-editor_v1.7.122)
### Patches
@@ -781,7 +781,7 @@ Mon, 28 Aug 2023 07:36:25 GMT
## [1.7.121](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.121)
-Fri, 25 Aug 2023 07:35:37 GMT
+Fri, 25 Aug 2023 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.120..@fluentui/react-monaco-editor_v1.7.121)
### Patches
@@ -791,7 +791,7 @@ Fri, 25 Aug 2023 07:35:37 GMT
## [1.7.120](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.120)
-Wed, 23 Aug 2023 07:36:23 GMT
+Wed, 23 Aug 2023 07:36:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.119..@fluentui/react-monaco-editor_v1.7.120)
### Patches
@@ -801,7 +801,7 @@ Wed, 23 Aug 2023 07:36:23 GMT
## [1.7.119](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.119)
-Fri, 18 Aug 2023 07:35:26 GMT
+Fri, 18 Aug 2023 07:35:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.118..@fluentui/react-monaco-editor_v1.7.119)
### Patches
@@ -812,7 +812,7 @@ Fri, 18 Aug 2023 07:35:26 GMT
## [1.7.118](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.118)
-Mon, 14 Aug 2023 07:34:45 GMT
+Mon, 14 Aug 2023 07:34:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.117..@fluentui/react-monaco-editor_v1.7.118)
### Patches
@@ -821,7 +821,7 @@ Mon, 14 Aug 2023 07:34:45 GMT
## [1.7.117](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.117)
-Fri, 11 Aug 2023 07:34:50 GMT
+Fri, 11 Aug 2023 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.116..@fluentui/react-monaco-editor_v1.7.117)
### Patches
@@ -831,7 +831,7 @@ Fri, 11 Aug 2023 07:34:50 GMT
## [1.7.116](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.116)
-Wed, 09 Aug 2023 07:36:09 GMT
+Wed, 09 Aug 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.115..@fluentui/react-monaco-editor_v1.7.116)
### Patches
@@ -840,7 +840,7 @@ Wed, 09 Aug 2023 07:36:09 GMT
## [1.7.115](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.115)
-Fri, 04 Aug 2023 07:35:28 GMT
+Fri, 04 Aug 2023 07:35:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.114..@fluentui/react-monaco-editor_v1.7.115)
### Patches
@@ -850,7 +850,7 @@ Fri, 04 Aug 2023 07:35:28 GMT
## [1.7.114](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.114)
-Wed, 02 Aug 2023 07:34:49 GMT
+Wed, 02 Aug 2023 07:34:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.113..@fluentui/react-monaco-editor_v1.7.114)
### Patches
@@ -859,7 +859,7 @@ Wed, 02 Aug 2023 07:34:49 GMT
## [1.7.113](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.113)
-Fri, 28 Jul 2023 07:34:57 GMT
+Fri, 28 Jul 2023 07:34:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.112..@fluentui/react-monaco-editor_v1.7.113)
### Patches
@@ -868,7 +868,7 @@ Fri, 28 Jul 2023 07:34:57 GMT
## [1.7.112](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.112)
-Tue, 25 Jul 2023 07:44:54 GMT
+Tue, 25 Jul 2023 07:44:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.111..@fluentui/react-monaco-editor_v1.7.112)
### Patches
@@ -878,7 +878,7 @@ Tue, 25 Jul 2023 07:44:54 GMT
## [1.7.111](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.111)
-Tue, 18 Jul 2023 07:35:18 GMT
+Tue, 18 Jul 2023 07:35:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.110..@fluentui/react-monaco-editor_v1.7.111)
### Patches
@@ -888,7 +888,7 @@ Tue, 18 Jul 2023 07:35:18 GMT
## [1.7.110](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.110)
-Mon, 17 Jul 2023 07:39:32 GMT
+Mon, 17 Jul 2023 07:39:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.109..@fluentui/react-monaco-editor_v1.7.110)
### Patches
@@ -898,7 +898,7 @@ Mon, 17 Jul 2023 07:39:32 GMT
## [1.7.109](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.109)
-Fri, 14 Jul 2023 07:36:55 GMT
+Fri, 14 Jul 2023 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.108..@fluentui/react-monaco-editor_v1.7.109)
### Patches
@@ -907,7 +907,7 @@ Fri, 14 Jul 2023 07:36:55 GMT
## [1.7.108](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.108)
-Wed, 12 Jul 2023 07:38:25 GMT
+Wed, 12 Jul 2023 07:38:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.107..@fluentui/react-monaco-editor_v1.7.108)
### Patches
@@ -916,7 +916,7 @@ Wed, 12 Jul 2023 07:38:25 GMT
## [1.7.107](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.107)
-Mon, 10 Jul 2023 07:35:07 GMT
+Mon, 10 Jul 2023 07:35:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.106..@fluentui/react-monaco-editor_v1.7.107)
### Patches
@@ -926,7 +926,7 @@ Mon, 10 Jul 2023 07:35:07 GMT
## [1.7.106](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.106)
-Mon, 03 Jul 2023 07:35:23 GMT
+Mon, 03 Jul 2023 07:35:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.105..@fluentui/react-monaco-editor_v1.7.106)
### Patches
@@ -935,7 +935,7 @@ Mon, 03 Jul 2023 07:35:23 GMT
## [1.7.105](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.105)
-Thu, 29 Jun 2023 07:35:33 GMT
+Thu, 29 Jun 2023 07:35:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.104..@fluentui/react-monaco-editor_v1.7.105)
### Patches
@@ -945,7 +945,7 @@ Thu, 29 Jun 2023 07:35:33 GMT
## [1.7.104](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.104)
-Wed, 28 Jun 2023 07:37:37 GMT
+Wed, 28 Jun 2023 07:37:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.103..@fluentui/react-monaco-editor_v1.7.104)
### Patches
@@ -956,7 +956,7 @@ Wed, 28 Jun 2023 07:37:37 GMT
## [1.7.103](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.103)
-Tue, 27 Jun 2023 07:35:50 GMT
+Tue, 27 Jun 2023 07:35:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.102..@fluentui/react-monaco-editor_v1.7.103)
### Patches
@@ -966,7 +966,7 @@ Tue, 27 Jun 2023 07:35:50 GMT
## [1.7.102](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.102)
-Mon, 26 Jun 2023 07:35:05 GMT
+Mon, 26 Jun 2023 07:35:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.101..@fluentui/react-monaco-editor_v1.7.102)
### Patches
@@ -975,7 +975,7 @@ Mon, 26 Jun 2023 07:35:05 GMT
## [1.7.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.101)
-Tue, 20 Jun 2023 07:36:29 GMT
+Tue, 20 Jun 2023 07:36:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.100..@fluentui/react-monaco-editor_v1.7.101)
### Patches
@@ -984,7 +984,7 @@ Tue, 20 Jun 2023 07:36:29 GMT
## [1.7.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.100)
-Mon, 19 Jun 2023 07:36:39 GMT
+Mon, 19 Jun 2023 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.99..@fluentui/react-monaco-editor_v1.7.100)
### Patches
@@ -995,7 +995,7 @@ Mon, 19 Jun 2023 07:36:39 GMT
## [1.7.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.99)
-Wed, 14 Jun 2023 07:38:33 GMT
+Wed, 14 Jun 2023 07:38:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.98..@fluentui/react-monaco-editor_v1.7.99)
### Patches
@@ -1005,7 +1005,7 @@ Wed, 14 Jun 2023 07:38:33 GMT
## [1.7.98](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.98)
-Thu, 08 Jun 2023 07:35:14 GMT
+Thu, 08 Jun 2023 07:35:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.97..@fluentui/react-monaco-editor_v1.7.98)
### Patches
@@ -1015,7 +1015,7 @@ Thu, 08 Jun 2023 07:35:14 GMT
## [1.7.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.97)
-Wed, 07 Jun 2023 07:33:58 GMT
+Wed, 07 Jun 2023 07:33:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.96..@fluentui/react-monaco-editor_v1.7.97)
### Patches
@@ -1025,7 +1025,7 @@ Wed, 07 Jun 2023 07:33:58 GMT
## [1.7.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.96)
-Tue, 06 Jun 2023 07:35:20 GMT
+Tue, 06 Jun 2023 07:35:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.95..@fluentui/react-monaco-editor_v1.7.96)
### Patches
@@ -1035,7 +1035,7 @@ Tue, 06 Jun 2023 07:35:20 GMT
## [1.7.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.95)
-Mon, 05 Jun 2023 07:37:25 GMT
+Mon, 05 Jun 2023 07:37:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.94..@fluentui/react-monaco-editor_v1.7.95)
### Patches
@@ -1045,7 +1045,7 @@ Mon, 05 Jun 2023 07:37:25 GMT
## [1.7.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.94)
-Fri, 02 Jun 2023 07:35:08 GMT
+Fri, 02 Jun 2023 07:35:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.93..@fluentui/react-monaco-editor_v1.7.94)
### Patches
@@ -1054,7 +1054,7 @@ Fri, 02 Jun 2023 07:35:08 GMT
## [1.7.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.93)
-Thu, 01 Jun 2023 07:38:37 GMT
+Thu, 01 Jun 2023 07:38:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.92..@fluentui/react-monaco-editor_v1.7.93)
### Patches
@@ -1065,7 +1065,7 @@ Thu, 01 Jun 2023 07:38:37 GMT
## [1.7.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.92)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.91..@fluentui/react-monaco-editor_v1.7.92)
### Patches
@@ -1078,7 +1078,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [1.7.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.91)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.90..@fluentui/react-monaco-editor_v1.7.91)
### Patches
@@ -1091,7 +1091,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [1.7.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.90)
-Fri, 26 May 2023 07:37:02 GMT
+Fri, 26 May 2023 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.89..@fluentui/react-monaco-editor_v1.7.90)
### Patches
@@ -1101,7 +1101,7 @@ Fri, 26 May 2023 07:37:02 GMT
## [1.7.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.89)
-Thu, 25 May 2023 07:37:49 GMT
+Thu, 25 May 2023 07:37:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.88..@fluentui/react-monaco-editor_v1.7.89)
### Patches
@@ -1111,7 +1111,7 @@ Thu, 25 May 2023 07:37:49 GMT
## [1.7.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.88)
-Tue, 23 May 2023 07:38:09 GMT
+Tue, 23 May 2023 07:38:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.87..@fluentui/react-monaco-editor_v1.7.88)
### Patches
@@ -1120,7 +1120,7 @@ Tue, 23 May 2023 07:38:09 GMT
## [1.7.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.87)
-Mon, 22 May 2023 07:38:21 GMT
+Mon, 22 May 2023 07:38:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.86..@fluentui/react-monaco-editor_v1.7.87)
### Patches
@@ -1130,7 +1130,7 @@ Mon, 22 May 2023 07:38:21 GMT
## [1.7.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.86)
-Wed, 17 May 2023 07:37:28 GMT
+Wed, 17 May 2023 07:37:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.85..@fluentui/react-monaco-editor_v1.7.86)
### Patches
@@ -1140,7 +1140,7 @@ Wed, 17 May 2023 07:37:28 GMT
## [1.7.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.85)
-Tue, 09 May 2023 07:38:08 GMT
+Tue, 09 May 2023 07:38:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.84..@fluentui/react-monaco-editor_v1.7.85)
### Patches
@@ -1150,7 +1150,7 @@ Tue, 09 May 2023 07:38:08 GMT
## [1.7.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.84)
-Fri, 05 May 2023 18:14:09 GMT
+Fri, 05 May 2023 18:14:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.83..@fluentui/react-monaco-editor_v1.7.84)
### Patches
@@ -1164,7 +1164,7 @@ Fri, 05 May 2023 18:14:09 GMT
## [1.7.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.83)
-Fri, 05 May 2023 07:41:21 GMT
+Fri, 05 May 2023 07:41:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.82..@fluentui/react-monaco-editor_v1.7.83)
### Patches
@@ -1173,7 +1173,7 @@ Fri, 05 May 2023 07:41:21 GMT
## [1.7.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.82)
-Tue, 02 May 2023 22:20:21 GMT
+Tue, 02 May 2023 22:20:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.81..@fluentui/react-monaco-editor_v1.7.82)
### Patches
@@ -1186,7 +1186,7 @@ Tue, 02 May 2023 22:20:21 GMT
## [1.7.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.81)
-Tue, 02 May 2023 00:58:19 GMT
+Tue, 02 May 2023 00:58:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.80..@fluentui/react-monaco-editor_v1.7.81)
### Patches
@@ -1197,7 +1197,7 @@ Tue, 02 May 2023 00:58:19 GMT
## [1.7.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.80)
-Mon, 01 May 2023 07:39:52 GMT
+Mon, 01 May 2023 07:39:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.79..@fluentui/react-monaco-editor_v1.7.80)
### Patches
@@ -1212,7 +1212,7 @@ Mon, 01 May 2023 07:39:52 GMT
## [1.7.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.79)
-Tue, 25 Apr 2023 07:38:32 GMT
+Tue, 25 Apr 2023 07:38:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.78..@fluentui/react-monaco-editor_v1.7.79)
### Patches
@@ -1221,7 +1221,7 @@ Tue, 25 Apr 2023 07:38:32 GMT
## [1.7.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.78)
-Fri, 21 Apr 2023 07:49:09 GMT
+Fri, 21 Apr 2023 07:49:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.77..@fluentui/react-monaco-editor_v1.7.78)
### Patches
@@ -1230,7 +1230,7 @@ Fri, 21 Apr 2023 07:49:09 GMT
## [1.7.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.77)
-Thu, 20 Apr 2023 07:47:57 GMT
+Thu, 20 Apr 2023 07:47:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.76..@fluentui/react-monaco-editor_v1.7.77)
### Patches
@@ -1239,7 +1239,7 @@ Thu, 20 Apr 2023 07:47:57 GMT
## [1.7.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.76)
-Mon, 17 Apr 2023 07:40:26 GMT
+Mon, 17 Apr 2023 07:40:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.75..@fluentui/react-monaco-editor_v1.7.76)
### Patches
@@ -1248,7 +1248,7 @@ Mon, 17 Apr 2023 07:40:26 GMT
## [1.7.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.75)
-Thu, 13 Apr 2023 07:41:10 GMT
+Thu, 13 Apr 2023 07:41:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.74..@fluentui/react-monaco-editor_v1.7.75)
### Patches
@@ -1257,7 +1257,7 @@ Thu, 13 Apr 2023 07:41:10 GMT
## [1.7.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.74)
-Mon, 10 Apr 2023 07:36:30 GMT
+Mon, 10 Apr 2023 07:36:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.73..@fluentui/react-monaco-editor_v1.7.74)
### Patches
@@ -1266,7 +1266,7 @@ Mon, 10 Apr 2023 07:36:30 GMT
## [1.7.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.73)
-Fri, 07 Apr 2023 07:39:19 GMT
+Fri, 07 Apr 2023 07:39:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.72..@fluentui/react-monaco-editor_v1.7.73)
### Patches
@@ -1275,7 +1275,7 @@ Fri, 07 Apr 2023 07:39:19 GMT
## [1.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.72)
-Thu, 06 Apr 2023 07:39:05 GMT
+Thu, 06 Apr 2023 07:39:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.71..@fluentui/react-monaco-editor_v1.7.72)
### Patches
@@ -1284,7 +1284,7 @@ Thu, 06 Apr 2023 07:39:05 GMT
## [1.7.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.71)
-Mon, 03 Apr 2023 07:37:18 GMT
+Mon, 03 Apr 2023 07:37:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.70..@fluentui/react-monaco-editor_v1.7.71)
### Patches
@@ -1293,7 +1293,7 @@ Mon, 03 Apr 2023 07:37:18 GMT
## [1.7.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.70)
-Thu, 30 Mar 2023 07:43:52 GMT
+Thu, 30 Mar 2023 07:43:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.69..@fluentui/react-monaco-editor_v1.7.70)
### Patches
@@ -1302,7 +1302,7 @@ Thu, 30 Mar 2023 07:43:52 GMT
## [1.7.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.69)
-Tue, 28 Mar 2023 07:38:27 GMT
+Tue, 28 Mar 2023 07:38:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.68..@fluentui/react-monaco-editor_v1.7.69)
### Patches
@@ -1311,7 +1311,7 @@ Tue, 28 Mar 2023 07:38:27 GMT
## [1.7.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.68)
-Fri, 24 Mar 2023 22:25:03 GMT
+Fri, 24 Mar 2023 22:25:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.67..@fluentui/react-monaco-editor_v1.7.68)
### Patches
@@ -1320,7 +1320,7 @@ Fri, 24 Mar 2023 22:25:03 GMT
## [1.7.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.67)
-Wed, 22 Mar 2023 08:03:46 GMT
+Wed, 22 Mar 2023 08:03:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.66..@fluentui/react-monaco-editor_v1.7.67)
### Patches
@@ -1329,7 +1329,7 @@ Wed, 22 Mar 2023 08:03:46 GMT
## [1.7.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.66)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.65..@fluentui/react-monaco-editor_v1.7.66)
### Patches
@@ -1341,7 +1341,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [1.7.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.65)
-Tue, 14 Mar 2023 07:38:49 GMT
+Tue, 14 Mar 2023 07:38:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.64..@fluentui/react-monaco-editor_v1.7.65)
### Patches
@@ -1350,7 +1350,7 @@ Tue, 14 Mar 2023 07:38:49 GMT
## [1.7.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.64)
-Fri, 10 Mar 2023 07:38:25 GMT
+Fri, 10 Mar 2023 07:38:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.63..@fluentui/react-monaco-editor_v1.7.64)
### Patches
@@ -1360,7 +1360,7 @@ Fri, 10 Mar 2023 07:38:25 GMT
## [1.7.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.63)
-Thu, 09 Mar 2023 07:39:12 GMT
+Thu, 09 Mar 2023 07:39:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.62..@fluentui/react-monaco-editor_v1.7.63)
### Patches
@@ -1369,7 +1369,7 @@ Thu, 09 Mar 2023 07:39:12 GMT
## [1.7.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.62)
-Mon, 06 Mar 2023 07:43:04 GMT
+Mon, 06 Mar 2023 07:43:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.61..@fluentui/react-monaco-editor_v1.7.62)
### Patches
@@ -1378,7 +1378,7 @@ Mon, 06 Mar 2023 07:43:04 GMT
## [1.7.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.61)
-Wed, 01 Mar 2023 07:45:41 GMT
+Wed, 01 Mar 2023 07:45:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.60..@fluentui/react-monaco-editor_v1.7.61)
### Patches
@@ -1388,7 +1388,7 @@ Wed, 01 Mar 2023 07:45:41 GMT
## [1.7.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.60)
-Wed, 22 Feb 2023 07:44:35 GMT
+Wed, 22 Feb 2023 07:44:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.59..@fluentui/react-monaco-editor_v1.7.60)
### Patches
@@ -1397,7 +1397,7 @@ Wed, 22 Feb 2023 07:44:35 GMT
## [1.7.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.59)
-Wed, 22 Feb 2023 00:32:23 GMT
+Wed, 22 Feb 2023 00:32:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.58..@fluentui/react-monaco-editor_v1.7.59)
### Patches
@@ -1406,7 +1406,7 @@ Wed, 22 Feb 2023 00:32:23 GMT
## [1.7.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.58)
-Sat, 18 Feb 2023 01:37:02 GMT
+Sat, 18 Feb 2023 01:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.57..@fluentui/react-monaco-editor_v1.7.58)
### Patches
@@ -1416,7 +1416,7 @@ Sat, 18 Feb 2023 01:37:02 GMT
## [1.7.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.57)
-Fri, 17 Feb 2023 22:05:37 GMT
+Fri, 17 Feb 2023 22:05:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.56..@fluentui/react-monaco-editor_v1.7.57)
### Patches
@@ -1425,7 +1425,7 @@ Fri, 17 Feb 2023 22:05:37 GMT
## [1.7.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.56)
-Fri, 17 Feb 2023 07:46:38 GMT
+Fri, 17 Feb 2023 07:46:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.55..@fluentui/react-monaco-editor_v1.7.56)
### Patches
@@ -1434,7 +1434,7 @@ Fri, 17 Feb 2023 07:46:38 GMT
## [1.7.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.55)
-Wed, 15 Feb 2023 07:42:17 GMT
+Wed, 15 Feb 2023 07:42:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.54..@fluentui/react-monaco-editor_v1.7.55)
### Patches
@@ -1443,7 +1443,7 @@ Wed, 15 Feb 2023 07:42:17 GMT
## [1.7.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.54)
-Mon, 13 Feb 2023 07:37:39 GMT
+Mon, 13 Feb 2023 07:37:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.53..@fluentui/react-monaco-editor_v1.7.54)
### Patches
@@ -1452,7 +1452,7 @@ Mon, 13 Feb 2023 07:37:39 GMT
## [1.7.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.53)
-Fri, 10 Feb 2023 07:47:24 GMT
+Fri, 10 Feb 2023 07:47:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.52..@fluentui/react-monaco-editor_v1.7.53)
### Patches
@@ -1461,7 +1461,7 @@ Fri, 10 Feb 2023 07:47:24 GMT
## [1.7.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.52)
-Tue, 07 Feb 2023 07:36:28 GMT
+Tue, 07 Feb 2023 07:36:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.51..@fluentui/react-monaco-editor_v1.7.52)
### Patches
@@ -1470,7 +1470,7 @@ Tue, 07 Feb 2023 07:36:28 GMT
## [1.7.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.51)
-Mon, 06 Feb 2023 07:41:31 GMT
+Mon, 06 Feb 2023 07:41:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.50..@fluentui/react-monaco-editor_v1.7.51)
### Patches
@@ -1479,7 +1479,7 @@ Mon, 06 Feb 2023 07:41:31 GMT
## [1.7.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.50)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.49..@fluentui/react-monaco-editor_v1.7.50)
### Patches
@@ -1491,7 +1491,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [1.7.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.49)
-Thu, 02 Feb 2023 07:35:42 GMT
+Thu, 02 Feb 2023 07:35:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.48..@fluentui/react-monaco-editor_v1.7.49)
### Patches
@@ -1500,7 +1500,7 @@ Thu, 02 Feb 2023 07:35:42 GMT
## [1.7.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.48)
-Wed, 01 Feb 2023 07:39:53 GMT
+Wed, 01 Feb 2023 07:39:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.47..@fluentui/react-monaco-editor_v1.7.48)
### Patches
@@ -1509,7 +1509,7 @@ Wed, 01 Feb 2023 07:39:53 GMT
## [1.7.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.47)
-Mon, 30 Jan 2023 07:36:22 GMT
+Mon, 30 Jan 2023 07:36:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.46..@fluentui/react-monaco-editor_v1.7.47)
### Patches
@@ -1518,7 +1518,7 @@ Mon, 30 Jan 2023 07:36:22 GMT
## [1.7.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.46)
-Fri, 27 Jan 2023 07:37:51 GMT
+Fri, 27 Jan 2023 07:37:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.45..@fluentui/react-monaco-editor_v1.7.46)
### Patches
@@ -1527,7 +1527,7 @@ Fri, 27 Jan 2023 07:37:51 GMT
## [1.7.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.45)
-Thu, 26 Jan 2023 07:35:32 GMT
+Thu, 26 Jan 2023 07:35:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.44..@fluentui/react-monaco-editor_v1.7.45)
### Patches
@@ -1536,7 +1536,7 @@ Thu, 26 Jan 2023 07:35:32 GMT
## [1.7.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.44)
-Wed, 18 Jan 2023 07:42:14 GMT
+Wed, 18 Jan 2023 07:42:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.43..@fluentui/react-monaco-editor_v1.7.44)
### Patches
@@ -1545,7 +1545,7 @@ Wed, 18 Jan 2023 07:42:14 GMT
## [1.7.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.43)
-Wed, 11 Jan 2023 07:50:46 GMT
+Wed, 11 Jan 2023 07:50:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.42..@fluentui/react-monaco-editor_v1.7.43)
### Patches
@@ -1554,7 +1554,7 @@ Wed, 11 Jan 2023 07:50:46 GMT
## [1.7.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.42)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.41..@fluentui/react-monaco-editor_v1.7.42)
### Patches
@@ -1566,7 +1566,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [1.7.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.41)
-Mon, 09 Jan 2023 07:49:46 GMT
+Mon, 09 Jan 2023 07:49:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.40..@fluentui/react-monaco-editor_v1.7.41)
### Patches
@@ -1575,7 +1575,7 @@ Mon, 09 Jan 2023 07:49:46 GMT
## [1.7.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.40)
-Thu, 05 Jan 2023 07:59:56 GMT
+Thu, 05 Jan 2023 07:59:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.39..@fluentui/react-monaco-editor_v1.7.40)
### Patches
@@ -1584,7 +1584,7 @@ Thu, 05 Jan 2023 07:59:56 GMT
## [1.7.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.39)
-Fri, 23 Dec 2022 07:55:40 GMT
+Fri, 23 Dec 2022 07:55:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.38..@fluentui/react-monaco-editor_v1.7.39)
### Patches
@@ -1593,7 +1593,7 @@ Fri, 23 Dec 2022 07:55:40 GMT
## [1.7.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.38)
-Wed, 21 Dec 2022 07:47:36 GMT
+Wed, 21 Dec 2022 07:47:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.37..@fluentui/react-monaco-editor_v1.7.38)
### Patches
@@ -1602,7 +1602,7 @@ Wed, 21 Dec 2022 07:47:36 GMT
## [1.7.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.37)
-Tue, 20 Dec 2022 07:53:34 GMT
+Tue, 20 Dec 2022 07:53:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.36..@fluentui/react-monaco-editor_v1.7.37)
### Patches
@@ -1612,7 +1612,7 @@ Tue, 20 Dec 2022 07:53:34 GMT
## [1.7.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.36)
-Fri, 16 Dec 2022 07:50:07 GMT
+Fri, 16 Dec 2022 07:50:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.35..@fluentui/react-monaco-editor_v1.7.36)
### Patches
@@ -1621,7 +1621,7 @@ Fri, 16 Dec 2022 07:50:07 GMT
## [1.7.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.35)
-Tue, 13 Dec 2022 07:46:31 GMT
+Tue, 13 Dec 2022 07:46:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.34..@fluentui/react-monaco-editor_v1.7.35)
### Patches
@@ -1630,7 +1630,7 @@ Tue, 13 Dec 2022 07:46:31 GMT
## [1.7.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.34)
-Fri, 09 Dec 2022 07:54:31 GMT
+Fri, 09 Dec 2022 07:54:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.33..@fluentui/react-monaco-editor_v1.7.34)
### Patches
@@ -1639,7 +1639,7 @@ Fri, 09 Dec 2022 07:54:31 GMT
## [1.7.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.33)
-Thu, 08 Dec 2022 07:46:37 GMT
+Thu, 08 Dec 2022 07:46:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.32..@fluentui/react-monaco-editor_v1.7.33)
### Patches
@@ -1648,7 +1648,7 @@ Thu, 08 Dec 2022 07:46:37 GMT
## [1.7.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.32)
-Mon, 05 Dec 2022 07:54:46 GMT
+Mon, 05 Dec 2022 07:54:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.31..@fluentui/react-monaco-editor_v1.7.32)
### Patches
@@ -1657,7 +1657,7 @@ Mon, 05 Dec 2022 07:54:46 GMT
## [1.7.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.31)
-Fri, 02 Dec 2022 07:54:15 GMT
+Fri, 02 Dec 2022 07:54:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.30..@fluentui/react-monaco-editor_v1.7.31)
### Patches
@@ -1666,7 +1666,7 @@ Fri, 02 Dec 2022 07:54:15 GMT
## [1.7.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.30)
-Wed, 30 Nov 2022 07:46:31 GMT
+Wed, 30 Nov 2022 07:46:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.29..@fluentui/react-monaco-editor_v1.7.30)
### Patches
@@ -1675,7 +1675,7 @@ Wed, 30 Nov 2022 07:46:31 GMT
## [1.7.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.29)
-Thu, 24 Nov 2022 07:53:48 GMT
+Thu, 24 Nov 2022 07:53:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.28..@fluentui/react-monaco-editor_v1.7.29)
### Patches
@@ -1684,7 +1684,7 @@ Thu, 24 Nov 2022 07:53:48 GMT
## [1.7.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.28)
-Wed, 23 Nov 2022 07:54:37 GMT
+Wed, 23 Nov 2022 07:54:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.27..@fluentui/react-monaco-editor_v1.7.28)
### Patches
@@ -1693,7 +1693,7 @@ Wed, 23 Nov 2022 07:54:37 GMT
## [1.7.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.27)
-Tue, 22 Nov 2022 07:47:00 GMT
+Tue, 22 Nov 2022 07:47:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.26..@fluentui/react-monaco-editor_v1.7.27)
### Patches
@@ -1702,7 +1702,7 @@ Tue, 22 Nov 2022 07:47:00 GMT
## [1.7.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.26)
-Thu, 17 Nov 2022 07:51:44 GMT
+Thu, 17 Nov 2022 07:51:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.25..@fluentui/react-monaco-editor_v1.7.26)
### Patches
@@ -1711,7 +1711,7 @@ Thu, 17 Nov 2022 07:51:44 GMT
## [1.7.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.25)
-Wed, 16 Nov 2022 07:47:29 GMT
+Wed, 16 Nov 2022 07:47:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.24..@fluentui/react-monaco-editor_v1.7.25)
### Patches
@@ -1720,7 +1720,7 @@ Wed, 16 Nov 2022 07:47:29 GMT
## [1.7.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.24)
-Tue, 15 Nov 2022 07:44:59 GMT
+Tue, 15 Nov 2022 07:44:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.23..@fluentui/react-monaco-editor_v1.7.24)
### Patches
@@ -1730,7 +1730,7 @@ Tue, 15 Nov 2022 07:44:59 GMT
## [1.7.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.23)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.22..@fluentui/react-monaco-editor_v1.7.23)
### Patches
@@ -1742,7 +1742,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [1.7.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.22)
-Fri, 04 Nov 2022 07:48:07 GMT
+Fri, 04 Nov 2022 07:48:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.21..@fluentui/react-monaco-editor_v1.7.22)
### Patches
@@ -1751,7 +1751,7 @@ Fri, 04 Nov 2022 07:48:07 GMT
## [1.7.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.21)
-Thu, 03 Nov 2022 07:52:12 GMT
+Thu, 03 Nov 2022 07:52:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.20..@fluentui/react-monaco-editor_v1.7.21)
### Patches
@@ -1760,7 +1760,7 @@ Thu, 03 Nov 2022 07:52:12 GMT
## [1.7.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.20)
-Tue, 01 Nov 2022 07:49:22 GMT
+Tue, 01 Nov 2022 07:49:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.19..@fluentui/react-monaco-editor_v1.7.20)
### Patches
@@ -1769,7 +1769,7 @@ Tue, 01 Nov 2022 07:49:22 GMT
## [1.7.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.19)
-Mon, 31 Oct 2022 07:45:40 GMT
+Mon, 31 Oct 2022 07:45:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.18..@fluentui/react-monaco-editor_v1.7.19)
### Patches
@@ -1778,7 +1778,7 @@ Mon, 31 Oct 2022 07:45:40 GMT
## [1.7.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.18)
-Fri, 28 Oct 2022 07:45:08 GMT
+Fri, 28 Oct 2022 07:45:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.17..@fluentui/react-monaco-editor_v1.7.18)
### Patches
@@ -1787,7 +1787,7 @@ Fri, 28 Oct 2022 07:45:08 GMT
## [1.7.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.17)
-Wed, 26 Oct 2022 07:52:54 GMT
+Wed, 26 Oct 2022 07:52:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.16..@fluentui/react-monaco-editor_v1.7.17)
### Patches
@@ -1796,7 +1796,7 @@ Wed, 26 Oct 2022 07:52:54 GMT
## [1.7.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.16)
-Tue, 25 Oct 2022 07:43:18 GMT
+Tue, 25 Oct 2022 07:43:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.15..@fluentui/react-monaco-editor_v1.7.16)
### Patches
@@ -1805,7 +1805,7 @@ Tue, 25 Oct 2022 07:43:18 GMT
## [1.7.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.15)
-Mon, 24 Oct 2022 07:45:24 GMT
+Mon, 24 Oct 2022 07:45:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.14..@fluentui/react-monaco-editor_v1.7.15)
### Patches
@@ -1814,7 +1814,7 @@ Mon, 24 Oct 2022 07:45:24 GMT
## [1.7.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.14)
-Fri, 21 Oct 2022 07:44:53 GMT
+Fri, 21 Oct 2022 07:44:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.13..@fluentui/react-monaco-editor_v1.7.14)
### Patches
@@ -1823,7 +1823,7 @@ Fri, 21 Oct 2022 07:44:53 GMT
## [1.7.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.13)
-Thu, 20 Oct 2022 07:43:14 GMT
+Thu, 20 Oct 2022 07:43:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.12..@fluentui/react-monaco-editor_v1.7.13)
### Patches
@@ -1833,7 +1833,7 @@ Thu, 20 Oct 2022 07:43:14 GMT
## [1.7.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.12)
-Mon, 17 Oct 2022 07:49:17 GMT
+Mon, 17 Oct 2022 07:49:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.11..@fluentui/react-monaco-editor_v1.7.12)
### Patches
@@ -1842,7 +1842,7 @@ Mon, 17 Oct 2022 07:49:17 GMT
## [1.7.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.11)
-Fri, 14 Oct 2022 07:44:02 GMT
+Fri, 14 Oct 2022 07:44:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.10..@fluentui/react-monaco-editor_v1.7.11)
### Patches
@@ -1852,7 +1852,7 @@ Fri, 14 Oct 2022 07:44:02 GMT
## [1.7.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.10)
-Thu, 13 Oct 2022 07:45:27 GMT
+Thu, 13 Oct 2022 07:45:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.9..@fluentui/react-monaco-editor_v1.7.10)
### Patches
@@ -1861,7 +1861,7 @@ Thu, 13 Oct 2022 07:45:27 GMT
## [1.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.9)
-Mon, 10 Oct 2022 07:38:24 GMT
+Mon, 10 Oct 2022 07:38:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.8..@fluentui/react-monaco-editor_v1.7.9)
### Patches
@@ -1870,7 +1870,7 @@ Mon, 10 Oct 2022 07:38:24 GMT
## [1.7.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.8)
-Tue, 04 Oct 2022 07:45:03 GMT
+Tue, 04 Oct 2022 07:45:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.7..@fluentui/react-monaco-editor_v1.7.8)
### Patches
@@ -1879,7 +1879,7 @@ Tue, 04 Oct 2022 07:45:03 GMT
## [1.7.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.7)
-Mon, 03 Oct 2022 07:37:49 GMT
+Mon, 03 Oct 2022 07:37:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.6..@fluentui/react-monaco-editor_v1.7.7)
### Patches
@@ -1888,7 +1888,7 @@ Mon, 03 Oct 2022 07:37:49 GMT
## [1.7.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.6)
-Fri, 30 Sep 2022 07:38:09 GMT
+Fri, 30 Sep 2022 07:38:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.5..@fluentui/react-monaco-editor_v1.7.6)
### Patches
@@ -1897,7 +1897,7 @@ Fri, 30 Sep 2022 07:38:09 GMT
## [1.7.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.5)
-Thu, 29 Sep 2022 07:40:10 GMT
+Thu, 29 Sep 2022 07:40:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.4..@fluentui/react-monaco-editor_v1.7.5)
### Patches
@@ -1906,7 +1906,7 @@ Thu, 29 Sep 2022 07:40:10 GMT
## [1.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.4)
-Wed, 28 Sep 2022 07:37:49 GMT
+Wed, 28 Sep 2022 07:37:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.3..@fluentui/react-monaco-editor_v1.7.4)
### Patches
@@ -1915,7 +1915,7 @@ Wed, 28 Sep 2022 07:37:49 GMT
## [1.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.3)
-Thu, 22 Sep 2022 07:43:45 GMT
+Thu, 22 Sep 2022 07:43:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.2..@fluentui/react-monaco-editor_v1.7.3)
### Patches
@@ -1924,7 +1924,7 @@ Thu, 22 Sep 2022 07:43:45 GMT
## [1.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.2)
-Mon, 19 Sep 2022 07:47:30 GMT
+Mon, 19 Sep 2022 07:47:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.1..@fluentui/react-monaco-editor_v1.7.2)
### Patches
@@ -1933,7 +1933,7 @@ Mon, 19 Sep 2022 07:47:30 GMT
## [1.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.1)
-Fri, 16 Sep 2022 07:37:32 GMT
+Fri, 16 Sep 2022 07:37:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.7.0..@fluentui/react-monaco-editor_v1.7.1)
### Patches
@@ -1942,7 +1942,7 @@ Fri, 16 Sep 2022 07:37:32 GMT
## [1.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.7.0)
-Thu, 15 Sep 2022 19:15:27 GMT
+Thu, 15 Sep 2022 19:15:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.35..@fluentui/react-monaco-editor_v1.7.0)
### Minor changes
@@ -1951,7 +1951,7 @@ Thu, 15 Sep 2022 19:15:27 GMT
## [1.6.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.35)
-Tue, 13 Sep 2022 07:41:03 GMT
+Tue, 13 Sep 2022 07:41:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.34..@fluentui/react-monaco-editor_v1.6.35)
### Patches
@@ -1960,7 +1960,7 @@ Tue, 13 Sep 2022 07:41:03 GMT
## [1.6.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.34)
-Thu, 08 Sep 2022 20:52:16 GMT
+Thu, 08 Sep 2022 20:52:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.33..@fluentui/react-monaco-editor_v1.6.34)
### Patches
@@ -1969,7 +1969,7 @@ Thu, 08 Sep 2022 20:52:16 GMT
## [1.6.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.33)
-Wed, 07 Sep 2022 07:54:43 GMT
+Wed, 07 Sep 2022 07:54:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.32..@fluentui/react-monaco-editor_v1.6.33)
### Patches
@@ -1978,7 +1978,7 @@ Wed, 07 Sep 2022 07:54:43 GMT
## [1.6.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.32)
-Mon, 05 Sep 2022 07:38:30 GMT
+Mon, 05 Sep 2022 07:38:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.31..@fluentui/react-monaco-editor_v1.6.32)
### Patches
@@ -1987,7 +1987,7 @@ Mon, 05 Sep 2022 07:38:30 GMT
## [1.6.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.31)
-Fri, 02 Sep 2022 07:48:53 GMT
+Fri, 02 Sep 2022 07:48:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.30..@fluentui/react-monaco-editor_v1.6.31)
### Patches
@@ -1997,7 +1997,7 @@ Fri, 02 Sep 2022 07:48:53 GMT
## [1.6.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.30)
-Thu, 01 Sep 2022 07:48:11 GMT
+Thu, 01 Sep 2022 07:48:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.29..@fluentui/react-monaco-editor_v1.6.30)
### Patches
@@ -2006,7 +2006,7 @@ Thu, 01 Sep 2022 07:48:11 GMT
## [1.6.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.29)
-Mon, 29 Aug 2022 07:44:38 GMT
+Mon, 29 Aug 2022 07:44:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.28..@fluentui/react-monaco-editor_v1.6.29)
### Patches
@@ -2016,7 +2016,7 @@ Mon, 29 Aug 2022 07:44:38 GMT
## [1.6.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.28)
-Fri, 26 Aug 2022 07:39:58 GMT
+Fri, 26 Aug 2022 07:39:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.27..@fluentui/react-monaco-editor_v1.6.28)
### Patches
@@ -2025,7 +2025,7 @@ Fri, 26 Aug 2022 07:39:58 GMT
## [1.6.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.27)
-Thu, 25 Aug 2022 07:41:03 GMT
+Thu, 25 Aug 2022 07:41:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.26..@fluentui/react-monaco-editor_v1.6.27)
### Patches
@@ -2034,7 +2034,7 @@ Thu, 25 Aug 2022 07:41:03 GMT
## [1.6.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.26)
-Wed, 24 Aug 2022 16:36:06 GMT
+Wed, 24 Aug 2022 16:36:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.25..@fluentui/react-monaco-editor_v1.6.26)
### Patches
@@ -2044,7 +2044,7 @@ Wed, 24 Aug 2022 16:36:06 GMT
## [1.6.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.25)
-Wed, 24 Aug 2022 07:44:42 GMT
+Wed, 24 Aug 2022 07:44:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.24..@fluentui/react-monaco-editor_v1.6.25)
### Patches
@@ -2053,7 +2053,7 @@ Wed, 24 Aug 2022 07:44:42 GMT
## [1.6.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.24)
-Tue, 23 Aug 2022 07:22:50 GMT
+Tue, 23 Aug 2022 07:22:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.23..@fluentui/react-monaco-editor_v1.6.24)
### Patches
@@ -2063,7 +2063,7 @@ Tue, 23 Aug 2022 07:22:50 GMT
## [1.6.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.23)
-Mon, 22 Aug 2022 07:44:26 GMT
+Mon, 22 Aug 2022 07:44:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.22..@fluentui/react-monaco-editor_v1.6.23)
### Patches
@@ -2072,7 +2072,7 @@ Mon, 22 Aug 2022 07:44:26 GMT
## [1.6.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.22)
-Thu, 18 Aug 2022 23:39:31 GMT
+Thu, 18 Aug 2022 23:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.21..@fluentui/react-monaco-editor_v1.6.22)
### Patches
@@ -2082,7 +2082,7 @@ Thu, 18 Aug 2022 23:39:31 GMT
## [1.6.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.21)
-Thu, 18 Aug 2022 07:48:48 GMT
+Thu, 18 Aug 2022 07:48:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.20..@fluentui/react-monaco-editor_v1.6.21)
### Patches
@@ -2091,7 +2091,7 @@ Thu, 18 Aug 2022 07:48:48 GMT
## [1.6.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.20)
-Mon, 15 Aug 2022 07:39:41 GMT
+Mon, 15 Aug 2022 07:39:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.19..@fluentui/react-monaco-editor_v1.6.20)
### Patches
@@ -2101,7 +2101,7 @@ Mon, 15 Aug 2022 07:39:41 GMT
## [1.6.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.19)
-Fri, 12 Aug 2022 07:48:19 GMT
+Fri, 12 Aug 2022 07:48:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.18..@fluentui/react-monaco-editor_v1.6.19)
### Patches
@@ -2110,7 +2110,7 @@ Fri, 12 Aug 2022 07:48:19 GMT
## [1.6.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.18)
-Mon, 08 Aug 2022 20:28:21 GMT
+Mon, 08 Aug 2022 20:28:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.17..@fluentui/react-monaco-editor_v1.6.18)
### Patches
@@ -2119,7 +2119,7 @@ Mon, 08 Aug 2022 20:28:21 GMT
## [1.6.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.17)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.16..@fluentui/react-monaco-editor_v1.6.17)
### Patches
@@ -2131,7 +2131,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [1.6.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.16)
-Thu, 04 Aug 2022 07:42:13 GMT
+Thu, 04 Aug 2022 07:42:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.15..@fluentui/react-monaco-editor_v1.6.16)
### Patches
@@ -2140,7 +2140,7 @@ Thu, 04 Aug 2022 07:42:13 GMT
## [1.6.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.15)
-Tue, 02 Aug 2022 18:04:49 GMT
+Tue, 02 Aug 2022 18:04:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.14..@fluentui/react-monaco-editor_v1.6.15)
### Patches
@@ -2149,7 +2149,7 @@ Tue, 02 Aug 2022 18:04:49 GMT
## [1.6.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.14)
-Tue, 02 Aug 2022 07:44:44 GMT
+Tue, 02 Aug 2022 07:44:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.13..@fluentui/react-monaco-editor_v1.6.14)
### Patches
@@ -2159,7 +2159,7 @@ Tue, 02 Aug 2022 07:44:44 GMT
## [1.6.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.13)
-Mon, 01 Aug 2022 07:39:03 GMT
+Mon, 01 Aug 2022 07:39:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.12..@fluentui/react-monaco-editor_v1.6.13)
### Patches
@@ -2168,7 +2168,7 @@ Mon, 01 Aug 2022 07:39:03 GMT
## [1.6.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.12)
-Fri, 29 Jul 2022 07:41:56 GMT
+Fri, 29 Jul 2022 07:41:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.11..@fluentui/react-monaco-editor_v1.6.12)
### Patches
@@ -2177,7 +2177,7 @@ Fri, 29 Jul 2022 07:41:56 GMT
## [1.6.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.11)
-Thu, 28 Jul 2022 07:41:18 GMT
+Thu, 28 Jul 2022 07:41:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.10..@fluentui/react-monaco-editor_v1.6.11)
### Patches
@@ -2187,7 +2187,7 @@ Thu, 28 Jul 2022 07:41:18 GMT
## [1.6.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.10)
-Wed, 27 Jul 2022 07:37:43 GMT
+Wed, 27 Jul 2022 07:37:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.9..@fluentui/react-monaco-editor_v1.6.10)
### Patches
@@ -2196,7 +2196,7 @@ Wed, 27 Jul 2022 07:37:43 GMT
## [1.6.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.9)
-Tue, 26 Jul 2022 07:39:35 GMT
+Tue, 26 Jul 2022 07:39:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.8..@fluentui/react-monaco-editor_v1.6.9)
### Patches
@@ -2206,7 +2206,7 @@ Tue, 26 Jul 2022 07:39:35 GMT
## [1.6.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.8)
-Mon, 25 Jul 2022 07:36:56 GMT
+Mon, 25 Jul 2022 07:36:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.7..@fluentui/react-monaco-editor_v1.6.8)
### Patches
@@ -2215,7 +2215,7 @@ Mon, 25 Jul 2022 07:36:56 GMT
## [1.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.7)
-Fri, 22 Jul 2022 07:54:16 GMT
+Fri, 22 Jul 2022 07:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.6..@fluentui/react-monaco-editor_v1.6.7)
### Patches
@@ -2224,7 +2224,7 @@ Fri, 22 Jul 2022 07:54:16 GMT
## [1.6.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.6)
-Thu, 21 Jul 2022 07:49:17 GMT
+Thu, 21 Jul 2022 07:49:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.5..@fluentui/react-monaco-editor_v1.6.6)
### Patches
@@ -2233,7 +2233,7 @@ Thu, 21 Jul 2022 07:49:17 GMT
## [1.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.5)
-Wed, 20 Jul 2022 07:42:27 GMT
+Wed, 20 Jul 2022 07:42:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.4..@fluentui/react-monaco-editor_v1.6.5)
### Patches
@@ -2242,7 +2242,7 @@ Wed, 20 Jul 2022 07:42:27 GMT
## [1.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.4)
-Tue, 19 Jul 2022 07:41:07 GMT
+Tue, 19 Jul 2022 07:41:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.3..@fluentui/react-monaco-editor_v1.6.4)
### Patches
@@ -2251,7 +2251,7 @@ Tue, 19 Jul 2022 07:41:07 GMT
## [1.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.3)
-Fri, 15 Jul 2022 20:03:48 GMT
+Fri, 15 Jul 2022 20:03:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.2..@fluentui/react-monaco-editor_v1.6.3)
### Patches
@@ -2260,7 +2260,7 @@ Fri, 15 Jul 2022 20:03:48 GMT
## [1.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.2)
-Thu, 14 Jul 2022 07:45:35 GMT
+Thu, 14 Jul 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.1..@fluentui/react-monaco-editor_v1.6.2)
### Patches
@@ -2269,7 +2269,7 @@ Thu, 14 Jul 2022 07:45:35 GMT
## [1.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.1)
-Tue, 12 Jul 2022 07:41:00 GMT
+Tue, 12 Jul 2022 07:41:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.6.0..@fluentui/react-monaco-editor_v1.6.1)
### Patches
@@ -2279,7 +2279,7 @@ Tue, 12 Jul 2022 07:41:00 GMT
## [1.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.6.0)
-Fri, 08 Jul 2022 07:36:29 GMT
+Fri, 08 Jul 2022 07:36:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.5.1..@fluentui/react-monaco-editor_v1.6.0)
### Minor changes
@@ -2288,7 +2288,7 @@ Fri, 08 Jul 2022 07:36:29 GMT
## [1.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.5.1)
-Thu, 07 Jul 2022 07:37:21 GMT
+Thu, 07 Jul 2022 07:37:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.5.0..@fluentui/react-monaco-editor_v1.5.1)
### Patches
@@ -2297,7 +2297,7 @@ Thu, 07 Jul 2022 07:37:21 GMT
## [1.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.5.0)
-Wed, 06 Jul 2022 07:38:24 GMT
+Wed, 06 Jul 2022 07:38:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.33..@fluentui/react-monaco-editor_v1.5.0)
### Minor changes
@@ -2306,7 +2306,7 @@ Wed, 06 Jul 2022 07:38:24 GMT
## [1.4.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.33)
-Thu, 30 Jun 2022 07:40:48 GMT
+Thu, 30 Jun 2022 07:40:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.32..@fluentui/react-monaco-editor_v1.4.33)
### Patches
@@ -2315,7 +2315,7 @@ Thu, 30 Jun 2022 07:40:48 GMT
## [1.4.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.32)
-Tue, 28 Jun 2022 07:39:04 GMT
+Tue, 28 Jun 2022 07:39:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.31..@fluentui/react-monaco-editor_v1.4.32)
### Patches
@@ -2324,7 +2324,7 @@ Tue, 28 Jun 2022 07:39:04 GMT
## [1.4.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.31)
-Fri, 24 Jun 2022 07:43:32 GMT
+Fri, 24 Jun 2022 07:43:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.30..@fluentui/react-monaco-editor_v1.4.31)
### Patches
@@ -2333,7 +2333,7 @@ Fri, 24 Jun 2022 07:43:32 GMT
## [1.4.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.30)
-Mon, 20 Jun 2022 07:45:13 GMT
+Mon, 20 Jun 2022 07:45:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.29..@fluentui/react-monaco-editor_v1.4.30)
### Patches
@@ -2342,7 +2342,7 @@ Mon, 20 Jun 2022 07:45:13 GMT
## [1.4.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.29)
-Fri, 17 Jun 2022 07:41:59 GMT
+Fri, 17 Jun 2022 07:41:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.28..@fluentui/react-monaco-editor_v1.4.29)
### Patches
@@ -2351,7 +2351,7 @@ Fri, 17 Jun 2022 07:41:59 GMT
## [1.4.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.28)
-Wed, 15 Jun 2022 21:38:03 GMT
+Wed, 15 Jun 2022 21:38:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.27..@fluentui/react-monaco-editor_v1.4.28)
### Patches
@@ -2360,7 +2360,7 @@ Wed, 15 Jun 2022 21:38:03 GMT
## [1.4.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.27)
-Wed, 15 Jun 2022 07:40:22 GMT
+Wed, 15 Jun 2022 07:40:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.26..@fluentui/react-monaco-editor_v1.4.27)
### Patches
@@ -2369,7 +2369,7 @@ Wed, 15 Jun 2022 07:40:22 GMT
## [1.4.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.26)
-Tue, 14 Jun 2022 07:52:11 GMT
+Tue, 14 Jun 2022 07:52:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.25..@fluentui/react-monaco-editor_v1.4.26)
### Patches
@@ -2378,7 +2378,7 @@ Tue, 14 Jun 2022 07:52:11 GMT
## [1.4.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.25)
-Mon, 13 Jun 2022 07:39:08 GMT
+Mon, 13 Jun 2022 07:39:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.24..@fluentui/react-monaco-editor_v1.4.25)
### Patches
@@ -2388,7 +2388,7 @@ Mon, 13 Jun 2022 07:39:08 GMT
## [1.4.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.24)
-Fri, 10 Jun 2022 07:46:14 GMT
+Fri, 10 Jun 2022 07:46:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.23..@fluentui/react-monaco-editor_v1.4.24)
### Patches
@@ -2397,7 +2397,7 @@ Fri, 10 Jun 2022 07:46:14 GMT
## [1.4.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.23)
-Thu, 09 Jun 2022 07:45:28 GMT
+Thu, 09 Jun 2022 07:45:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.22..@fluentui/react-monaco-editor_v1.4.23)
### Patches
@@ -2406,7 +2406,7 @@ Thu, 09 Jun 2022 07:45:28 GMT
## [1.4.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.22)
-Tue, 07 Jun 2022 07:48:04 GMT
+Tue, 07 Jun 2022 07:48:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.21..@fluentui/react-monaco-editor_v1.4.22)
### Patches
@@ -2415,7 +2415,7 @@ Tue, 07 Jun 2022 07:48:04 GMT
## [1.4.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.21)
-Thu, 02 Jun 2022 07:38:04 GMT
+Thu, 02 Jun 2022 07:38:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.20..@fluentui/react-monaco-editor_v1.4.21)
### Patches
@@ -2424,7 +2424,7 @@ Thu, 02 Jun 2022 07:38:04 GMT
## [1.4.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.20)
-Wed, 01 Jun 2022 07:38:24 GMT
+Wed, 01 Jun 2022 07:38:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.19..@fluentui/react-monaco-editor_v1.4.20)
### Patches
@@ -2433,7 +2433,7 @@ Wed, 01 Jun 2022 07:38:24 GMT
## [1.4.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.19)
-Mon, 30 May 2022 07:44:13 GMT
+Mon, 30 May 2022 07:44:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.18..@fluentui/react-monaco-editor_v1.4.19)
### Patches
@@ -2442,7 +2442,7 @@ Mon, 30 May 2022 07:44:13 GMT
## [1.4.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.18)
-Fri, 27 May 2022 07:39:11 GMT
+Fri, 27 May 2022 07:39:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.17..@fluentui/react-monaco-editor_v1.4.18)
### Patches
@@ -2451,7 +2451,7 @@ Fri, 27 May 2022 07:39:11 GMT
## [1.4.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.17)
-Wed, 25 May 2022 07:44:28 GMT
+Wed, 25 May 2022 07:44:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.16..@fluentui/react-monaco-editor_v1.4.17)
### Patches
@@ -2460,7 +2460,7 @@ Wed, 25 May 2022 07:44:28 GMT
## [1.4.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.16)
-Tue, 24 May 2022 07:47:26 GMT
+Tue, 24 May 2022 07:47:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.15..@fluentui/react-monaco-editor_v1.4.16)
### Patches
@@ -2469,7 +2469,7 @@ Tue, 24 May 2022 07:47:26 GMT
## [1.4.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.15)
-Mon, 23 May 2022 07:42:16 GMT
+Mon, 23 May 2022 07:42:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.14..@fluentui/react-monaco-editor_v1.4.15)
### Patches
@@ -2478,7 +2478,7 @@ Mon, 23 May 2022 07:42:16 GMT
## [1.4.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.14)
-Thu, 19 May 2022 07:41:27 GMT
+Thu, 19 May 2022 07:41:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.13..@fluentui/react-monaco-editor_v1.4.14)
### Patches
@@ -2487,7 +2487,7 @@ Thu, 19 May 2022 07:41:27 GMT
## [1.4.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.13)
-Tue, 17 May 2022 07:45:01 GMT
+Tue, 17 May 2022 07:45:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.12..@fluentui/react-monaco-editor_v1.4.13)
### Patches
@@ -2496,7 +2496,7 @@ Tue, 17 May 2022 07:45:01 GMT
## [1.4.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.12)
-Mon, 16 May 2022 07:36:55 GMT
+Mon, 16 May 2022 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.11..@fluentui/react-monaco-editor_v1.4.12)
### Patches
@@ -2505,7 +2505,7 @@ Mon, 16 May 2022 07:36:55 GMT
## [1.4.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.11)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.10..@fluentui/react-monaco-editor_v1.4.11)
### Patches
@@ -2517,7 +2517,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [1.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.10)
-Wed, 11 May 2022 07:42:47 GMT
+Wed, 11 May 2022 07:42:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.9..@fluentui/react-monaco-editor_v1.4.10)
### Patches
@@ -2526,7 +2526,7 @@ Wed, 11 May 2022 07:42:47 GMT
## [1.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.9)
-Mon, 09 May 2022 07:37:42 GMT
+Mon, 09 May 2022 07:37:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.8..@fluentui/react-monaco-editor_v1.4.9)
### Patches
@@ -2535,7 +2535,7 @@ Mon, 09 May 2022 07:37:42 GMT
## [1.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.8)
-Thu, 28 Apr 2022 07:39:56 GMT
+Thu, 28 Apr 2022 07:39:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.7..@fluentui/react-monaco-editor_v1.4.8)
### Patches
@@ -2544,7 +2544,7 @@ Thu, 28 Apr 2022 07:39:56 GMT
## [1.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.7)
-Wed, 27 Apr 2022 07:43:07 GMT
+Wed, 27 Apr 2022 07:43:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.6..@fluentui/react-monaco-editor_v1.4.7)
### Patches
@@ -2553,7 +2553,7 @@ Wed, 27 Apr 2022 07:43:07 GMT
## [1.4.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.6)
-Mon, 25 Apr 2022 07:37:25 GMT
+Mon, 25 Apr 2022 07:37:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.5..@fluentui/react-monaco-editor_v1.4.6)
### Patches
@@ -2562,7 +2562,7 @@ Mon, 25 Apr 2022 07:37:25 GMT
## [1.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.5)
-Thu, 21 Apr 2022 07:36:48 GMT
+Thu, 21 Apr 2022 07:36:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.4..@fluentui/react-monaco-editor_v1.4.5)
### Patches
@@ -2571,7 +2571,7 @@ Thu, 21 Apr 2022 07:36:48 GMT
## [1.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.4)
-Wed, 20 Apr 2022 07:39:23 GMT
+Wed, 20 Apr 2022 07:39:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.3..@fluentui/react-monaco-editor_v1.4.4)
### Patches
@@ -2580,7 +2580,7 @@ Wed, 20 Apr 2022 07:39:23 GMT
## [1.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.3)
-Tue, 19 Apr 2022 21:39:15 GMT
+Tue, 19 Apr 2022 21:39:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.2..@fluentui/react-monaco-editor_v1.4.3)
### Patches
@@ -2589,7 +2589,7 @@ Tue, 19 Apr 2022 21:39:15 GMT
## [1.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.2)
-Mon, 18 Apr 2022 07:38:04 GMT
+Mon, 18 Apr 2022 07:38:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.1..@fluentui/react-monaco-editor_v1.4.2)
### Patches
@@ -2598,7 +2598,7 @@ Mon, 18 Apr 2022 07:38:04 GMT
## [1.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.1)
-Fri, 15 Apr 2022 07:42:48 GMT
+Fri, 15 Apr 2022 07:42:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.4.0..@fluentui/react-monaco-editor_v1.4.1)
### Patches
@@ -2608,7 +2608,7 @@ Fri, 15 Apr 2022 07:42:48 GMT
## [1.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.4.0)
-Thu, 14 Apr 2022 07:38:10 GMT
+Thu, 14 Apr 2022 07:38:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.19..@fluentui/react-monaco-editor_v1.4.0)
### Minor changes
@@ -2619,7 +2619,7 @@ Thu, 14 Apr 2022 07:38:10 GMT
## [1.3.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.19)
-Tue, 12 Apr 2022 07:39:33 GMT
+Tue, 12 Apr 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.18..@fluentui/react-monaco-editor_v1.3.19)
### Patches
@@ -2631,7 +2631,7 @@ Tue, 12 Apr 2022 07:39:33 GMT
## [1.3.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.18)
-Mon, 11 Apr 2022 07:40:58 GMT
+Mon, 11 Apr 2022 07:40:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.17..@fluentui/react-monaco-editor_v1.3.18)
### Patches
@@ -2640,7 +2640,7 @@ Mon, 11 Apr 2022 07:40:58 GMT
## [1.3.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.17)
-Wed, 06 Apr 2022 07:34:58 GMT
+Wed, 06 Apr 2022 07:34:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.16..@fluentui/react-monaco-editor_v1.3.17)
### Patches
@@ -2649,7 +2649,7 @@ Wed, 06 Apr 2022 07:34:58 GMT
## [1.3.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.16)
-Mon, 04 Apr 2022 20:01:04 GMT
+Mon, 04 Apr 2022 20:01:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.15..@fluentui/react-monaco-editor_v1.3.16)
### Patches
@@ -2658,7 +2658,7 @@ Mon, 04 Apr 2022 20:01:04 GMT
## [1.3.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.15)
-Thu, 31 Mar 2022 07:38:07 GMT
+Thu, 31 Mar 2022 07:38:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.14..@fluentui/react-monaco-editor_v1.3.15)
### Patches
@@ -2667,7 +2667,7 @@ Thu, 31 Mar 2022 07:38:07 GMT
## [1.3.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.14)
-Wed, 30 Mar 2022 07:38:55 GMT
+Wed, 30 Mar 2022 07:38:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.13..@fluentui/react-monaco-editor_v1.3.14)
### Patches
@@ -2676,7 +2676,7 @@ Wed, 30 Mar 2022 07:38:55 GMT
## [1.3.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.13)
-Mon, 28 Mar 2022 07:47:27 GMT
+Mon, 28 Mar 2022 07:47:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.12..@fluentui/react-monaco-editor_v1.3.13)
### Patches
@@ -2685,7 +2685,7 @@ Mon, 28 Mar 2022 07:47:27 GMT
## [1.3.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.12)
-Fri, 25 Mar 2022 07:38:05 GMT
+Fri, 25 Mar 2022 07:38:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.11..@fluentui/react-monaco-editor_v1.3.12)
### Patches
@@ -2694,7 +2694,7 @@ Fri, 25 Mar 2022 07:38:05 GMT
## [1.3.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.11)
-Wed, 23 Mar 2022 07:37:29 GMT
+Wed, 23 Mar 2022 07:37:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.10..@fluentui/react-monaco-editor_v1.3.11)
### Patches
@@ -2703,7 +2703,7 @@ Wed, 23 Mar 2022 07:37:29 GMT
## [1.3.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.10)
-Mon, 21 Mar 2022 07:39:45 GMT
+Mon, 21 Mar 2022 07:39:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.9..@fluentui/react-monaco-editor_v1.3.10)
### Patches
@@ -2712,7 +2712,7 @@ Mon, 21 Mar 2022 07:39:45 GMT
## [1.3.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.9)
-Fri, 18 Mar 2022 07:42:02 GMT
+Fri, 18 Mar 2022 07:42:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.8..@fluentui/react-monaco-editor_v1.3.9)
### Patches
@@ -2721,7 +2721,7 @@ Fri, 18 Mar 2022 07:42:02 GMT
## [1.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.8)
-Wed, 16 Mar 2022 07:38:51 GMT
+Wed, 16 Mar 2022 07:38:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.7..@fluentui/react-monaco-editor_v1.3.8)
### Patches
@@ -2730,7 +2730,7 @@ Wed, 16 Mar 2022 07:38:51 GMT
## [1.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.7)
-Tue, 15 Mar 2022 07:45:54 GMT
+Tue, 15 Mar 2022 07:45:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.6..@fluentui/react-monaco-editor_v1.3.7)
### Patches
@@ -2740,7 +2740,7 @@ Tue, 15 Mar 2022 07:45:54 GMT
## [1.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.6)
-Sat, 12 Mar 2022 01:04:50 GMT
+Sat, 12 Mar 2022 01:04:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.5..@fluentui/react-monaco-editor_v1.3.6)
### Patches
@@ -2749,7 +2749,7 @@ Sat, 12 Mar 2022 01:04:50 GMT
## [1.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.5)
-Fri, 11 Mar 2022 19:51:48 GMT
+Fri, 11 Mar 2022 19:51:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.4..@fluentui/react-monaco-editor_v1.3.5)
### Patches
@@ -2758,7 +2758,7 @@ Fri, 11 Mar 2022 19:51:48 GMT
## [1.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.4)
-Fri, 11 Mar 2022 07:34:41 GMT
+Fri, 11 Mar 2022 07:34:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.3..@fluentui/react-monaco-editor_v1.3.4)
### Patches
@@ -2768,7 +2768,7 @@ Fri, 11 Mar 2022 07:34:41 GMT
## [1.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.3)
-Thu, 10 Mar 2022 07:34:50 GMT
+Thu, 10 Mar 2022 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.2..@fluentui/react-monaco-editor_v1.3.3)
### Patches
@@ -2777,7 +2777,7 @@ Thu, 10 Mar 2022 07:34:50 GMT
## [1.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.2)
-Wed, 09 Mar 2022 07:37:30 GMT
+Wed, 09 Mar 2022 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.1..@fluentui/react-monaco-editor_v1.3.2)
### Patches
@@ -2787,7 +2787,7 @@ Wed, 09 Mar 2022 07:37:30 GMT
## [1.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.1)
-Tue, 08 Mar 2022 23:29:58 GMT
+Tue, 08 Mar 2022 23:29:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.3.0..@fluentui/react-monaco-editor_v1.3.1)
### Patches
@@ -2796,7 +2796,7 @@ Tue, 08 Mar 2022 23:29:58 GMT
## [1.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.3.0)
-Tue, 08 Mar 2022 07:35:10 GMT
+Tue, 08 Mar 2022 07:35:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.87..@fluentui/react-monaco-editor_v1.3.0)
### Minor changes
@@ -2805,7 +2805,7 @@ Tue, 08 Mar 2022 07:35:10 GMT
## [1.2.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.87)
-Mon, 07 Mar 2022 07:41:14 GMT
+Mon, 07 Mar 2022 07:41:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.86..@fluentui/react-monaco-editor_v1.2.87)
### Patches
@@ -2814,7 +2814,7 @@ Mon, 07 Mar 2022 07:41:14 GMT
## [1.2.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.86)
-Fri, 04 Mar 2022 07:42:05 GMT
+Fri, 04 Mar 2022 07:42:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.85..@fluentui/react-monaco-editor_v1.2.86)
### Patches
@@ -2823,7 +2823,7 @@ Fri, 04 Mar 2022 07:42:05 GMT
## [1.2.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.85)
-Thu, 03 Mar 2022 07:24:29 GMT
+Thu, 03 Mar 2022 07:24:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.84..@fluentui/react-monaco-editor_v1.2.85)
### Patches
@@ -2834,7 +2834,7 @@ Thu, 03 Mar 2022 07:24:29 GMT
## [1.2.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.84)
-Wed, 02 Mar 2022 07:23:06 GMT
+Wed, 02 Mar 2022 07:23:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.83..@fluentui/react-monaco-editor_v1.2.84)
### Patches
@@ -2843,7 +2843,7 @@ Wed, 02 Mar 2022 07:23:06 GMT
## [1.2.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.83)
-Tue, 01 Mar 2022 07:23:43 GMT
+Tue, 01 Mar 2022 07:23:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.82..@fluentui/react-monaco-editor_v1.2.83)
### Patches
@@ -2853,7 +2853,7 @@ Tue, 01 Mar 2022 07:23:43 GMT
## [1.2.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.82)
-Thu, 24 Feb 2022 07:29:50 GMT
+Thu, 24 Feb 2022 07:29:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.81..@fluentui/react-monaco-editor_v1.2.82)
### Patches
@@ -2863,7 +2863,7 @@ Thu, 24 Feb 2022 07:29:50 GMT
## [1.2.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.81)
-Wed, 23 Feb 2022 07:26:36 GMT
+Wed, 23 Feb 2022 07:26:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.80..@fluentui/react-monaco-editor_v1.2.81)
### Patches
@@ -2872,7 +2872,7 @@ Wed, 23 Feb 2022 07:26:36 GMT
## [1.2.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.80)
-Thu, 17 Feb 2022 07:28:31 GMT
+Thu, 17 Feb 2022 07:28:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.79..@fluentui/react-monaco-editor_v1.2.80)
### Patches
@@ -2882,7 +2882,7 @@ Thu, 17 Feb 2022 07:28:31 GMT
## [1.2.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.79)
-Mon, 14 Feb 2022 07:26:37 GMT
+Mon, 14 Feb 2022 07:26:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.78..@fluentui/react-monaco-editor_v1.2.79)
### Patches
@@ -2891,7 +2891,7 @@ Mon, 14 Feb 2022 07:26:37 GMT
## [1.2.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.78)
-Fri, 11 Feb 2022 07:27:49 GMT
+Fri, 11 Feb 2022 07:27:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.77..@fluentui/react-monaco-editor_v1.2.78)
### Patches
@@ -2901,7 +2901,7 @@ Fri, 11 Feb 2022 07:27:49 GMT
## [1.2.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.77)
-Thu, 10 Feb 2022 07:32:10 GMT
+Thu, 10 Feb 2022 07:32:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.76..@fluentui/react-monaco-editor_v1.2.77)
### Patches
@@ -2910,7 +2910,7 @@ Thu, 10 Feb 2022 07:32:10 GMT
## [1.2.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.76)
-Wed, 09 Feb 2022 07:30:50 GMT
+Wed, 09 Feb 2022 07:30:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.75..@fluentui/react-monaco-editor_v1.2.76)
### Patches
@@ -2920,7 +2920,7 @@ Wed, 09 Feb 2022 07:30:50 GMT
## [1.2.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.75)
-Tue, 08 Feb 2022 07:25:34 GMT
+Tue, 08 Feb 2022 07:25:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.74..@fluentui/react-monaco-editor_v1.2.75)
### Patches
@@ -2929,7 +2929,7 @@ Tue, 08 Feb 2022 07:25:34 GMT
## [1.2.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.74)
-Fri, 04 Feb 2022 07:31:42 GMT
+Fri, 04 Feb 2022 07:31:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.73..@fluentui/react-monaco-editor_v1.2.74)
### Patches
@@ -2938,7 +2938,7 @@ Fri, 04 Feb 2022 07:31:42 GMT
## [1.2.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.73)
-Thu, 03 Feb 2022 07:29:41 GMT
+Thu, 03 Feb 2022 07:29:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.72..@fluentui/react-monaco-editor_v1.2.73)
### Patches
@@ -2948,7 +2948,7 @@ Thu, 03 Feb 2022 07:29:41 GMT
## [1.2.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.72)
-Tue, 01 Feb 2022 07:26:26 GMT
+Tue, 01 Feb 2022 07:26:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.71..@fluentui/react-monaco-editor_v1.2.72)
### Patches
@@ -2957,7 +2957,7 @@ Tue, 01 Feb 2022 07:26:26 GMT
## [1.2.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.71)
-Mon, 31 Jan 2022 07:27:30 GMT
+Mon, 31 Jan 2022 07:27:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.70..@fluentui/react-monaco-editor_v1.2.71)
### Patches
@@ -2966,7 +2966,7 @@ Mon, 31 Jan 2022 07:27:30 GMT
## [1.2.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.70)
-Wed, 26 Jan 2022 07:26:01 GMT
+Wed, 26 Jan 2022 07:26:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.69..@fluentui/react-monaco-editor_v1.2.70)
### Patches
@@ -2975,7 +2975,7 @@ Wed, 26 Jan 2022 07:26:01 GMT
## [1.2.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.69)
-Tue, 25 Jan 2022 07:30:06 GMT
+Tue, 25 Jan 2022 07:30:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.68..@fluentui/react-monaco-editor_v1.2.69)
### Patches
@@ -2984,7 +2984,7 @@ Tue, 25 Jan 2022 07:30:06 GMT
## [1.2.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.68)
-Mon, 24 Jan 2022 07:26:13 GMT
+Mon, 24 Jan 2022 07:26:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.67..@fluentui/react-monaco-editor_v1.2.68)
### Patches
@@ -2993,7 +2993,7 @@ Mon, 24 Jan 2022 07:26:13 GMT
## [1.2.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.67)
-Fri, 21 Jan 2022 07:26:06 GMT
+Fri, 21 Jan 2022 07:26:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.66..@fluentui/react-monaco-editor_v1.2.67)
### Patches
@@ -3002,7 +3002,7 @@ Fri, 21 Jan 2022 07:26:06 GMT
## [1.2.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.66)
-Mon, 17 Jan 2022 09:43:48 GMT
+Mon, 17 Jan 2022 09:43:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.65..@fluentui/react-monaco-editor_v1.2.66)
### Patches
@@ -3011,7 +3011,7 @@ Mon, 17 Jan 2022 09:43:48 GMT
## [1.2.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.65)
-Fri, 14 Jan 2022 07:28:39 GMT
+Fri, 14 Jan 2022 07:28:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.64..@fluentui/react-monaco-editor_v1.2.65)
### Patches
@@ -3020,7 +3020,7 @@ Fri, 14 Jan 2022 07:28:39 GMT
## [1.2.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.64)
-Thu, 13 Jan 2022 07:30:58 GMT
+Thu, 13 Jan 2022 07:30:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.63..@fluentui/react-monaco-editor_v1.2.64)
### Patches
@@ -3029,7 +3029,7 @@ Thu, 13 Jan 2022 07:30:58 GMT
## [1.2.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.63)
-Wed, 12 Jan 2022 07:32:29 GMT
+Wed, 12 Jan 2022 07:32:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.62..@fluentui/react-monaco-editor_v1.2.63)
### Patches
@@ -3038,7 +3038,7 @@ Wed, 12 Jan 2022 07:32:29 GMT
## [1.2.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.62)
-Tue, 11 Jan 2022 07:29:05 GMT
+Tue, 11 Jan 2022 07:29:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.61..@fluentui/react-monaco-editor_v1.2.62)
### Patches
@@ -3047,7 +3047,7 @@ Tue, 11 Jan 2022 07:29:05 GMT
## [1.2.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.61)
-Mon, 10 Jan 2022 07:26:30 GMT
+Mon, 10 Jan 2022 07:26:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.60..@fluentui/react-monaco-editor_v1.2.61)
### Patches
@@ -3056,7 +3056,7 @@ Mon, 10 Jan 2022 07:26:30 GMT
## [1.2.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.60)
-Fri, 07 Jan 2022 07:27:47 GMT
+Fri, 07 Jan 2022 07:27:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.59..@fluentui/react-monaco-editor_v1.2.60)
### Patches
@@ -3065,7 +3065,7 @@ Fri, 07 Jan 2022 07:27:47 GMT
## [1.2.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.59)
-Mon, 03 Jan 2022 23:32:11 GMT
+Mon, 03 Jan 2022 23:32:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.58..@fluentui/react-monaco-editor_v1.2.59)
### Patches
@@ -3075,7 +3075,7 @@ Mon, 03 Jan 2022 23:32:11 GMT
## [1.2.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.58)
-Wed, 22 Dec 2021 07:29:45 GMT
+Wed, 22 Dec 2021 07:29:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.57..@fluentui/react-monaco-editor_v1.2.58)
### Patches
@@ -3084,7 +3084,7 @@ Wed, 22 Dec 2021 07:29:45 GMT
## [1.2.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.57)
-Thu, 16 Dec 2021 07:26:41 GMT
+Thu, 16 Dec 2021 07:26:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.56..@fluentui/react-monaco-editor_v1.2.57)
### Patches
@@ -3093,7 +3093,7 @@ Thu, 16 Dec 2021 07:26:41 GMT
## [1.2.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.56)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.55..@fluentui/react-monaco-editor_v1.2.56)
### Patches
@@ -3103,7 +3103,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [1.2.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.55)
-Tue, 14 Dec 2021 07:30:02 GMT
+Tue, 14 Dec 2021 07:30:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.54..@fluentui/react-monaco-editor_v1.2.55)
### Patches
@@ -3112,7 +3112,7 @@ Tue, 14 Dec 2021 07:30:02 GMT
## [1.2.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.54)
-Fri, 10 Dec 2021 07:30:35 GMT
+Fri, 10 Dec 2021 07:30:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.53..@fluentui/react-monaco-editor_v1.2.54)
### Patches
@@ -3121,7 +3121,7 @@ Fri, 10 Dec 2021 07:30:35 GMT
## [1.2.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.53)
-Thu, 09 Dec 2021 07:27:18 GMT
+Thu, 09 Dec 2021 07:27:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.52..@fluentui/react-monaco-editor_v1.2.53)
### Patches
@@ -3130,7 +3130,7 @@ Thu, 09 Dec 2021 07:27:18 GMT
## [1.2.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.52)
-Wed, 08 Dec 2021 07:28:19 GMT
+Wed, 08 Dec 2021 07:28:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.51..@fluentui/react-monaco-editor_v1.2.52)
### Patches
@@ -3139,7 +3139,7 @@ Wed, 08 Dec 2021 07:28:19 GMT
## [1.2.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.51)
-Tue, 07 Dec 2021 07:31:33 GMT
+Tue, 07 Dec 2021 07:31:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.50..@fluentui/react-monaco-editor_v1.2.51)
### Patches
@@ -3149,7 +3149,7 @@ Tue, 07 Dec 2021 07:31:33 GMT
## [1.2.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.50)
-Fri, 03 Dec 2021 07:36:12 GMT
+Fri, 03 Dec 2021 07:36:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.49..@fluentui/react-monaco-editor_v1.2.50)
### Patches
@@ -3158,7 +3158,7 @@ Fri, 03 Dec 2021 07:36:12 GMT
## [1.2.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.49)
-Wed, 01 Dec 2021 07:41:09 GMT
+Wed, 01 Dec 2021 07:41:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.48..@fluentui/react-monaco-editor_v1.2.49)
### Patches
@@ -3167,7 +3167,7 @@ Wed, 01 Dec 2021 07:41:09 GMT
## [1.2.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.48)
-Tue, 30 Nov 2021 07:37:33 GMT
+Tue, 30 Nov 2021 07:37:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.47..@fluentui/react-monaco-editor_v1.2.48)
### Patches
@@ -3176,7 +3176,7 @@ Tue, 30 Nov 2021 07:37:33 GMT
## [1.2.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.47)
-Thu, 25 Nov 2021 14:54:16 GMT
+Thu, 25 Nov 2021 14:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.46..@fluentui/react-monaco-editor_v1.2.47)
### Patches
@@ -3188,7 +3188,7 @@ Thu, 25 Nov 2021 14:54:16 GMT
## [1.2.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.46)
-Tue, 23 Nov 2021 07:27:34 GMT
+Tue, 23 Nov 2021 07:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.45..@fluentui/react-monaco-editor_v1.2.46)
### Patches
@@ -3197,7 +3197,7 @@ Tue, 23 Nov 2021 07:27:34 GMT
## [1.2.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.45)
-Mon, 22 Nov 2021 07:36:14 GMT
+Mon, 22 Nov 2021 07:36:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.44..@fluentui/react-monaco-editor_v1.2.45)
### Patches
@@ -3206,7 +3206,7 @@ Mon, 22 Nov 2021 07:36:14 GMT
## [1.2.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.44)
-Fri, 19 Nov 2021 07:45:28 GMT
+Fri, 19 Nov 2021 07:45:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.43..@fluentui/react-monaco-editor_v1.2.44)
### Patches
@@ -3215,7 +3215,7 @@ Fri, 19 Nov 2021 07:45:28 GMT
## [1.2.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.43)
-Thu, 18 Nov 2021 07:29:22 GMT
+Thu, 18 Nov 2021 07:29:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.42..@fluentui/react-monaco-editor_v1.2.43)
### Patches
@@ -3224,7 +3224,7 @@ Thu, 18 Nov 2021 07:29:22 GMT
## [1.2.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.42)
-Wed, 17 Nov 2021 07:36:21 GMT
+Wed, 17 Nov 2021 07:36:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.41..@fluentui/react-monaco-editor_v1.2.42)
### Patches
@@ -3233,7 +3233,7 @@ Wed, 17 Nov 2021 07:36:21 GMT
## [1.2.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.41)
-Tue, 16 Nov 2021 07:36:41 GMT
+Tue, 16 Nov 2021 07:36:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.40..@fluentui/react-monaco-editor_v1.2.41)
### Patches
@@ -3242,7 +3242,7 @@ Tue, 16 Nov 2021 07:36:41 GMT
## [1.2.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.40)
-Mon, 15 Nov 2021 07:29:05 GMT
+Mon, 15 Nov 2021 07:29:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.39..@fluentui/react-monaco-editor_v1.2.40)
### Patches
@@ -3251,7 +3251,7 @@ Mon, 15 Nov 2021 07:29:05 GMT
## [1.2.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.39)
-Wed, 10 Nov 2021 07:31:59 GMT
+Wed, 10 Nov 2021 07:31:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.38..@fluentui/react-monaco-editor_v1.2.39)
### Patches
@@ -3261,7 +3261,7 @@ Wed, 10 Nov 2021 07:31:59 GMT
## [1.2.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.38)
-Tue, 09 Nov 2021 07:38:11 GMT
+Tue, 09 Nov 2021 07:38:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.37..@fluentui/react-monaco-editor_v1.2.38)
### Patches
@@ -3270,7 +3270,7 @@ Tue, 09 Nov 2021 07:38:11 GMT
## [1.2.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.37)
-Mon, 08 Nov 2021 07:35:50 GMT
+Mon, 08 Nov 2021 07:35:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.36..@fluentui/react-monaco-editor_v1.2.37)
### Patches
@@ -3279,7 +3279,7 @@ Mon, 08 Nov 2021 07:35:50 GMT
## [1.2.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.36)
-Fri, 05 Nov 2021 07:36:39 GMT
+Fri, 05 Nov 2021 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.35..@fluentui/react-monaco-editor_v1.2.36)
### Patches
@@ -3288,7 +3288,7 @@ Fri, 05 Nov 2021 07:36:39 GMT
## [1.2.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.35)
-Thu, 04 Nov 2021 07:29:42 GMT
+Thu, 04 Nov 2021 07:29:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.34..@fluentui/react-monaco-editor_v1.2.35)
### Patches
@@ -3297,7 +3297,7 @@ Thu, 04 Nov 2021 07:29:42 GMT
## [1.2.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.34)
-Wed, 03 Nov 2021 07:36:03 GMT
+Wed, 03 Nov 2021 07:36:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.33..@fluentui/react-monaco-editor_v1.2.34)
### Patches
@@ -3306,7 +3306,7 @@ Wed, 03 Nov 2021 07:36:03 GMT
## [1.2.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.33)
-Tue, 02 Nov 2021 07:37:02 GMT
+Tue, 02 Nov 2021 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.32..@fluentui/react-monaco-editor_v1.2.33)
### Patches
@@ -3316,7 +3316,7 @@ Tue, 02 Nov 2021 07:37:02 GMT
## [1.2.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.32)
-Mon, 01 Nov 2021 07:32:08 GMT
+Mon, 01 Nov 2021 07:32:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.31..@fluentui/react-monaco-editor_v1.2.32)
### Patches
@@ -3325,7 +3325,7 @@ Mon, 01 Nov 2021 07:32:08 GMT
## [1.2.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.31)
-Fri, 29 Oct 2021 07:29:08 GMT
+Fri, 29 Oct 2021 07:29:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.30..@fluentui/react-monaco-editor_v1.2.31)
### Patches
@@ -3334,7 +3334,7 @@ Fri, 29 Oct 2021 07:29:08 GMT
## [1.2.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.30)
-Thu, 28 Oct 2021 07:29:14 GMT
+Thu, 28 Oct 2021 07:29:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.29..@fluentui/react-monaco-editor_v1.2.30)
### Patches
@@ -3343,7 +3343,7 @@ Thu, 28 Oct 2021 07:29:14 GMT
## [1.2.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.29)
-Wed, 27 Oct 2021 07:29:17 GMT
+Wed, 27 Oct 2021 07:29:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.28..@fluentui/react-monaco-editor_v1.2.29)
### Patches
@@ -3352,7 +3352,7 @@ Wed, 27 Oct 2021 07:29:17 GMT
## [1.2.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.28)
-Tue, 26 Oct 2021 07:39:42 GMT
+Tue, 26 Oct 2021 07:39:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.27..@fluentui/react-monaco-editor_v1.2.28)
### Patches
@@ -3361,7 +3361,7 @@ Tue, 26 Oct 2021 07:39:42 GMT
## [1.2.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.27)
-Mon, 25 Oct 2021 07:38:02 GMT
+Mon, 25 Oct 2021 07:38:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.26..@fluentui/react-monaco-editor_v1.2.27)
### Patches
@@ -3370,7 +3370,7 @@ Mon, 25 Oct 2021 07:38:02 GMT
## [1.2.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.26)
-Thu, 21 Oct 2021 07:28:35 GMT
+Thu, 21 Oct 2021 07:28:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.25..@fluentui/react-monaco-editor_v1.2.26)
### Patches
@@ -3379,7 +3379,7 @@ Thu, 21 Oct 2021 07:28:35 GMT
## [1.2.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.25)
-Wed, 20 Oct 2021 07:30:01 GMT
+Wed, 20 Oct 2021 07:30:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.24..@fluentui/react-monaco-editor_v1.2.25)
### Patches
@@ -3388,7 +3388,7 @@ Wed, 20 Oct 2021 07:30:01 GMT
## [1.2.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.24)
-Wed, 13 Oct 2021 07:31:28 GMT
+Wed, 13 Oct 2021 07:31:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.23..@fluentui/react-monaco-editor_v1.2.24)
### Patches
@@ -3397,7 +3397,7 @@ Wed, 13 Oct 2021 07:31:28 GMT
## [1.2.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.23)
-Mon, 11 Oct 2021 07:36:36 GMT
+Mon, 11 Oct 2021 07:36:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.22..@fluentui/react-monaco-editor_v1.2.23)
### Patches
@@ -3406,7 +3406,7 @@ Mon, 11 Oct 2021 07:36:36 GMT
## [1.2.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.22)
-Fri, 08 Oct 2021 07:31:50 GMT
+Fri, 08 Oct 2021 07:31:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.21..@fluentui/react-monaco-editor_v1.2.22)
### Patches
@@ -3415,7 +3415,7 @@ Fri, 08 Oct 2021 07:31:50 GMT
## [1.2.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.21)
-Tue, 05 Oct 2021 07:37:17 GMT
+Tue, 05 Oct 2021 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.20..@fluentui/react-monaco-editor_v1.2.21)
### Patches
@@ -3425,7 +3425,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
## [1.2.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.20)
-Mon, 04 Oct 2021 07:27:12 GMT
+Mon, 04 Oct 2021 07:27:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.19..@fluentui/react-monaco-editor_v1.2.20)
### Patches
@@ -3434,7 +3434,7 @@ Mon, 04 Oct 2021 07:27:12 GMT
## [1.2.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.19)
-Thu, 30 Sep 2021 07:31:40 GMT
+Thu, 30 Sep 2021 07:31:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.18..@fluentui/react-monaco-editor_v1.2.19)
### Patches
@@ -3443,7 +3443,7 @@ Thu, 30 Sep 2021 07:31:40 GMT
## [1.2.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.18)
-Wed, 29 Sep 2021 07:36:23 GMT
+Wed, 29 Sep 2021 07:36:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.17..@fluentui/react-monaco-editor_v1.2.18)
### Patches
@@ -3452,7 +3452,7 @@ Wed, 29 Sep 2021 07:36:23 GMT
## [1.2.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.17)
-Tue, 28 Sep 2021 22:17:07 GMT
+Tue, 28 Sep 2021 22:17:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.16..@fluentui/react-monaco-editor_v1.2.17)
### Patches
@@ -3462,7 +3462,7 @@ Tue, 28 Sep 2021 22:17:07 GMT
## [1.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.16)
-Tue, 28 Sep 2021 07:37:27 GMT
+Tue, 28 Sep 2021 07:37:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.15..@fluentui/react-monaco-editor_v1.2.16)
### Patches
@@ -3471,7 +3471,7 @@ Tue, 28 Sep 2021 07:37:27 GMT
## [1.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.15)
-Mon, 27 Sep 2021 07:34:24 GMT
+Mon, 27 Sep 2021 07:34:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.14..@fluentui/react-monaco-editor_v1.2.15)
### Patches
@@ -3481,7 +3481,7 @@ Mon, 27 Sep 2021 07:34:24 GMT
## [1.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.14)
-Thu, 23 Sep 2021 07:35:13 GMT
+Thu, 23 Sep 2021 07:35:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.13..@fluentui/react-monaco-editor_v1.2.14)
### Patches
@@ -3490,7 +3490,7 @@ Thu, 23 Sep 2021 07:35:13 GMT
## [1.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.13)
-Wed, 22 Sep 2021 09:55:02 GMT
+Wed, 22 Sep 2021 09:55:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.12..@fluentui/react-monaco-editor_v1.2.13)
### Patches
@@ -3499,7 +3499,7 @@ Wed, 22 Sep 2021 09:55:02 GMT
## [1.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.12)
-Tue, 21 Sep 2021 07:42:34 GMT
+Tue, 21 Sep 2021 07:42:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.11..@fluentui/react-monaco-editor_v1.2.12)
### Patches
@@ -3508,7 +3508,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
## [1.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.11)
-Thu, 16 Sep 2021 07:38:39 GMT
+Thu, 16 Sep 2021 07:38:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.10..@fluentui/react-monaco-editor_v1.2.11)
### Patches
@@ -3517,7 +3517,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
## [1.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.10)
-Tue, 14 Sep 2021 07:38:18 GMT
+Tue, 14 Sep 2021 07:38:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.9..@fluentui/react-monaco-editor_v1.2.10)
### Patches
@@ -3526,7 +3526,7 @@ Tue, 14 Sep 2021 07:38:18 GMT
## [1.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.9)
-Mon, 13 Sep 2021 07:37:03 GMT
+Mon, 13 Sep 2021 07:37:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.8..@fluentui/react-monaco-editor_v1.2.9)
### Patches
@@ -3535,7 +3535,7 @@ Mon, 13 Sep 2021 07:37:03 GMT
## [1.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.8)
-Fri, 10 Sep 2021 07:39:51 GMT
+Fri, 10 Sep 2021 07:39:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.7..@fluentui/react-monaco-editor_v1.2.8)
### Patches
@@ -3544,7 +3544,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
## [1.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.7)
-Thu, 09 Sep 2021 07:39:06 GMT
+Thu, 09 Sep 2021 07:39:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.6..@fluentui/react-monaco-editor_v1.2.7)
### Patches
@@ -3553,7 +3553,7 @@ Thu, 09 Sep 2021 07:39:06 GMT
## [1.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.6)
-Wed, 08 Sep 2021 07:34:11 GMT
+Wed, 08 Sep 2021 07:34:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.5..@fluentui/react-monaco-editor_v1.2.6)
### Patches
@@ -3562,7 +3562,7 @@ Wed, 08 Sep 2021 07:34:11 GMT
## [1.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.5)
-Mon, 06 Sep 2021 07:34:53 GMT
+Mon, 06 Sep 2021 07:34:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.4..@fluentui/react-monaco-editor_v1.2.5)
### Patches
@@ -3571,7 +3571,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
## [1.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.4)
-Thu, 02 Sep 2021 07:36:46 GMT
+Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.3..@fluentui/react-monaco-editor_v1.2.4)
### Patches
@@ -3580,7 +3580,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
## [1.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.3)
-Tue, 31 Aug 2021 07:37:47 GMT
+Tue, 31 Aug 2021 07:37:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.2..@fluentui/react-monaco-editor_v1.2.3)
### Patches
@@ -3589,7 +3589,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
## [1.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.2)
-Mon, 30 Aug 2021 07:35:05 GMT
+Mon, 30 Aug 2021 07:35:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.1..@fluentui/react-monaco-editor_v1.2.2)
### Patches
@@ -3598,7 +3598,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
## [1.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.1)
-Wed, 25 Aug 2021 07:35:19 GMT
+Wed, 25 Aug 2021 07:35:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.2.0..@fluentui/react-monaco-editor_v1.2.1)
### Patches
@@ -3607,7 +3607,7 @@ Wed, 25 Aug 2021 07:35:19 GMT
## [1.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.2.0)
-Tue, 24 Aug 2021 07:34:48 GMT
+Tue, 24 Aug 2021 07:34:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.57..@fluentui/react-monaco-editor_v1.2.0)
### Minor changes
@@ -3616,7 +3616,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
## [1.1.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.57)
-Mon, 23 Aug 2021 07:35:43 GMT
+Mon, 23 Aug 2021 07:35:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.56..@fluentui/react-monaco-editor_v1.1.57)
### Patches
@@ -3625,7 +3625,7 @@ Mon, 23 Aug 2021 07:35:43 GMT
## [1.1.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.56)
-Thu, 19 Aug 2021 07:41:35 GMT
+Thu, 19 Aug 2021 07:41:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.55..@fluentui/react-monaco-editor_v1.1.56)
### Patches
@@ -3634,7 +3634,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
## [1.1.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.55)
-Mon, 16 Aug 2021 07:36:39 GMT
+Mon, 16 Aug 2021 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.54..@fluentui/react-monaco-editor_v1.1.55)
### Patches
@@ -3643,7 +3643,7 @@ Mon, 16 Aug 2021 07:36:39 GMT
## [1.1.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.54)
-Fri, 13 Aug 2021 07:36:34 GMT
+Fri, 13 Aug 2021 07:36:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.53..@fluentui/react-monaco-editor_v1.1.54)
### Patches
@@ -3652,7 +3652,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
## [1.1.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.53)
-Thu, 12 Aug 2021 07:34:46 GMT
+Thu, 12 Aug 2021 07:34:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.52..@fluentui/react-monaco-editor_v1.1.53)
### Patches
@@ -3661,7 +3661,7 @@ Thu, 12 Aug 2021 07:34:46 GMT
## [1.1.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.52)
-Wed, 11 Aug 2021 07:34:54 GMT
+Wed, 11 Aug 2021 07:34:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.51..@fluentui/react-monaco-editor_v1.1.52)
### Patches
@@ -3670,7 +3670,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
## [1.1.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.51)
-Mon, 09 Aug 2021 07:35:14 GMT
+Mon, 09 Aug 2021 07:35:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.50..@fluentui/react-monaco-editor_v1.1.51)
### Patches
@@ -3679,7 +3679,7 @@ Mon, 09 Aug 2021 07:35:14 GMT
## [1.1.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.50)
-Thu, 05 Aug 2021 07:34:24 GMT
+Thu, 05 Aug 2021 07:34:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.49..@fluentui/react-monaco-editor_v1.1.50)
### Patches
@@ -3688,7 +3688,7 @@ Thu, 05 Aug 2021 07:34:24 GMT
## [1.1.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.49)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.48..@fluentui/react-monaco-editor_v1.1.49)
### Patches
@@ -3697,7 +3697,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [1.1.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.48)
-Mon, 02 Aug 2021 07:36:20 GMT
+Mon, 02 Aug 2021 07:36:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.47..@fluentui/react-monaco-editor_v1.1.48)
### Patches
@@ -3706,7 +3706,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
## [1.1.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.47)
-Fri, 30 Jul 2021 07:35:22 GMT
+Fri, 30 Jul 2021 07:35:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.46..@fluentui/react-monaco-editor_v1.1.47)
### Patches
@@ -3715,7 +3715,7 @@ Fri, 30 Jul 2021 07:35:22 GMT
## [1.1.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.46)
-Thu, 29 Jul 2021 07:35:37 GMT
+Thu, 29 Jul 2021 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.45..@fluentui/react-monaco-editor_v1.1.46)
### Patches
@@ -3724,7 +3724,7 @@ Thu, 29 Jul 2021 07:35:37 GMT
## [1.1.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.45)
-Wed, 28 Jul 2021 07:34:11 GMT
+Wed, 28 Jul 2021 07:34:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.44..@fluentui/react-monaco-editor_v1.1.45)
### Patches
@@ -3733,7 +3733,7 @@ Wed, 28 Jul 2021 07:34:11 GMT
## [1.1.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.44)
-Tue, 27 Jul 2021 07:34:27 GMT
+Tue, 27 Jul 2021 07:34:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.43..@fluentui/react-monaco-editor_v1.1.44)
### Patches
@@ -3742,7 +3742,7 @@ Tue, 27 Jul 2021 07:34:27 GMT
## [1.1.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.43)
-Mon, 26 Jul 2021 07:37:30 GMT
+Mon, 26 Jul 2021 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.42..@fluentui/react-monaco-editor_v1.1.43)
### Patches
@@ -3751,7 +3751,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
## [1.1.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.42)
-Fri, 23 Jul 2021 07:38:19 GMT
+Fri, 23 Jul 2021 07:38:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.41..@fluentui/react-monaco-editor_v1.1.42)
### Patches
@@ -3760,7 +3760,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
## [1.1.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.41)
-Thu, 22 Jul 2021 07:36:55 GMT
+Thu, 22 Jul 2021 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.40..@fluentui/react-monaco-editor_v1.1.41)
### Patches
@@ -3769,7 +3769,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
## [1.1.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.40)
-Tue, 20 Jul 2021 22:23:17 GMT
+Tue, 20 Jul 2021 22:23:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.39..@fluentui/react-monaco-editor_v1.1.40)
### Patches
@@ -3778,7 +3778,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
## [1.1.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.39)
-Fri, 16 Jul 2021 00:35:31 GMT
+Fri, 16 Jul 2021 00:35:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.38..@fluentui/react-monaco-editor_v1.1.39)
### Patches
@@ -3787,7 +3787,7 @@ Fri, 16 Jul 2021 00:35:31 GMT
## [1.1.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.38)
-Thu, 15 Jul 2021 07:36:18 GMT
+Thu, 15 Jul 2021 07:36:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.37..@fluentui/react-monaco-editor_v1.1.38)
### Patches
@@ -3796,7 +3796,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
## [1.1.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.37)
-Wed, 14 Jul 2021 07:28:19 GMT
+Wed, 14 Jul 2021 07:28:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.36..@fluentui/react-monaco-editor_v1.1.37)
### Patches
@@ -3805,7 +3805,7 @@ Wed, 14 Jul 2021 07:28:19 GMT
## [1.1.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.36)
-Tue, 13 Jul 2021 22:32:58 GMT
+Tue, 13 Jul 2021 22:32:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.35..@fluentui/react-monaco-editor_v1.1.36)
### Patches
@@ -3814,7 +3814,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
## [1.1.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.35)
-Tue, 13 Jul 2021 07:35:36 GMT
+Tue, 13 Jul 2021 07:35:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.34..@fluentui/react-monaco-editor_v1.1.35)
### Patches
@@ -3823,7 +3823,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
## [1.1.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.34)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.33..@fluentui/react-monaco-editor_v1.1.34)
### Patches
@@ -3832,7 +3832,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [1.1.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.33)
-Thu, 08 Jul 2021 07:32:49 GMT
+Thu, 08 Jul 2021 07:32:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.32..@fluentui/react-monaco-editor_v1.1.33)
### Patches
@@ -3841,7 +3841,7 @@ Thu, 08 Jul 2021 07:32:49 GMT
## [1.1.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.32)
-Wed, 07 Jul 2021 07:32:54 GMT
+Wed, 07 Jul 2021 07:32:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.31..@fluentui/react-monaco-editor_v1.1.32)
### Patches
@@ -3850,7 +3850,7 @@ Wed, 07 Jul 2021 07:32:54 GMT
## [1.1.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.31)
-Thu, 01 Jul 2021 07:35:05 GMT
+Thu, 01 Jul 2021 07:35:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.30..@fluentui/react-monaco-editor_v1.1.31)
### Patches
@@ -3859,7 +3859,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
## [1.1.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.30)
-Tue, 29 Jun 2021 07:33:32 GMT
+Tue, 29 Jun 2021 07:33:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.29..@fluentui/react-monaco-editor_v1.1.30)
### Patches
@@ -3868,7 +3868,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
## [1.1.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.29)
-Mon, 28 Jun 2021 07:35:16 GMT
+Mon, 28 Jun 2021 07:35:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.28..@fluentui/react-monaco-editor_v1.1.29)
### Patches
@@ -3877,7 +3877,7 @@ Mon, 28 Jun 2021 07:35:16 GMT
## [1.1.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.28)
-Tue, 22 Jun 2021 07:35:11 GMT
+Tue, 22 Jun 2021 07:35:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.27..@fluentui/react-monaco-editor_v1.1.28)
### Patches
@@ -3886,7 +3886,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
## [1.1.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.27)
-Mon, 21 Jun 2021 07:34:33 GMT
+Mon, 21 Jun 2021 07:34:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.26..@fluentui/react-monaco-editor_v1.1.27)
### Patches
@@ -3895,7 +3895,7 @@ Mon, 21 Jun 2021 07:34:33 GMT
## [1.1.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.26)
-Fri, 18 Jun 2021 07:30:58 GMT
+Fri, 18 Jun 2021 07:30:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.25..@fluentui/react-monaco-editor_v1.1.26)
### Patches
@@ -3904,7 +3904,7 @@ Fri, 18 Jun 2021 07:30:58 GMT
## [1.1.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.25)
-Wed, 16 Jun 2021 07:34:24 GMT
+Wed, 16 Jun 2021 07:34:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.24..@fluentui/react-monaco-editor_v1.1.25)
### Patches
@@ -3913,7 +3913,7 @@ Wed, 16 Jun 2021 07:34:24 GMT
## [1.1.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.24)
-Tue, 15 Jun 2021 07:40:20 GMT
+Tue, 15 Jun 2021 07:40:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.23..@fluentui/react-monaco-editor_v1.1.24)
### Patches
@@ -3922,7 +3922,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
## [1.1.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.23)
-Fri, 11 Jun 2021 07:34:26 GMT
+Fri, 11 Jun 2021 07:34:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.22..@fluentui/react-monaco-editor_v1.1.23)
### Patches
@@ -3931,7 +3931,7 @@ Fri, 11 Jun 2021 07:34:26 GMT
## [1.1.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.22)
-Thu, 10 Jun 2021 07:32:59 GMT
+Thu, 10 Jun 2021 07:32:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.21..@fluentui/react-monaco-editor_v1.1.22)
### Patches
@@ -3940,7 +3940,7 @@ Thu, 10 Jun 2021 07:32:59 GMT
## [1.1.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.21)
-Wed, 09 Jun 2021 07:33:38 GMT
+Wed, 09 Jun 2021 07:33:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.20..@fluentui/react-monaco-editor_v1.1.21)
### Patches
@@ -3949,7 +3949,7 @@ Wed, 09 Jun 2021 07:33:38 GMT
## [1.1.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.20)
-Tue, 08 Jun 2021 07:32:44 GMT
+Tue, 08 Jun 2021 07:32:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.19..@fluentui/react-monaco-editor_v1.1.20)
### Patches
@@ -3958,7 +3958,7 @@ Tue, 08 Jun 2021 07:32:44 GMT
## [1.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.19)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.18..@fluentui/react-monaco-editor_v1.1.19)
### Patches
@@ -3967,7 +3967,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [1.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.18)
-Fri, 04 Jun 2021 07:37:23 GMT
+Fri, 04 Jun 2021 07:37:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.17..@fluentui/react-monaco-editor_v1.1.18)
### Patches
@@ -3976,7 +3976,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
## [1.1.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.17)
-Mon, 31 May 2021 07:33:15 GMT
+Mon, 31 May 2021 07:33:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.16..@fluentui/react-monaco-editor_v1.1.17)
### Patches
@@ -3985,7 +3985,7 @@ Mon, 31 May 2021 07:33:15 GMT
## [1.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.16)
-Thu, 27 May 2021 07:33:21 GMT
+Thu, 27 May 2021 07:33:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.15..@fluentui/react-monaco-editor_v1.1.16)
### Patches
@@ -3994,7 +3994,7 @@ Thu, 27 May 2021 07:33:21 GMT
## [1.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.15)
-Wed, 26 May 2021 07:35:43 GMT
+Wed, 26 May 2021 07:35:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.14..@fluentui/react-monaco-editor_v1.1.15)
### Patches
@@ -4003,7 +4003,7 @@ Wed, 26 May 2021 07:35:43 GMT
## [1.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.14)
-Tue, 25 May 2021 01:11:03 GMT
+Tue, 25 May 2021 01:11:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.13..@fluentui/react-monaco-editor_v1.1.14)
### Patches
@@ -4012,7 +4012,7 @@ Tue, 25 May 2021 01:11:03 GMT
## [1.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.13)
-Mon, 24 May 2021 07:35:28 GMT
+Mon, 24 May 2021 07:35:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.12..@fluentui/react-monaco-editor_v1.1.13)
### Patches
@@ -4021,7 +4021,7 @@ Mon, 24 May 2021 07:35:28 GMT
## [1.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.12)
-Fri, 21 May 2021 07:34:54 GMT
+Fri, 21 May 2021 07:34:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.11..@fluentui/react-monaco-editor_v1.1.12)
### Patches
@@ -4030,7 +4030,7 @@ Fri, 21 May 2021 07:34:54 GMT
## [1.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.11)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.10..@fluentui/react-monaco-editor_v1.1.11)
### Patches
@@ -4039,7 +4039,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [1.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.10)
-Wed, 19 May 2021 07:34:20 GMT
+Wed, 19 May 2021 07:34:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.9..@fluentui/react-monaco-editor_v1.1.10)
### Patches
@@ -4048,7 +4048,7 @@ Wed, 19 May 2021 07:34:20 GMT
## [1.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.9)
-Tue, 18 May 2021 07:34:38 GMT
+Tue, 18 May 2021 07:34:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.8..@fluentui/react-monaco-editor_v1.1.9)
### Patches
@@ -4057,7 +4057,7 @@ Tue, 18 May 2021 07:34:38 GMT
## [1.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.8)
-Mon, 17 May 2021 07:33:48 GMT
+Mon, 17 May 2021 07:33:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.7..@fluentui/react-monaco-editor_v1.1.8)
### Patches
@@ -4066,7 +4066,7 @@ Mon, 17 May 2021 07:33:48 GMT
## [1.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.7)
-Fri, 14 May 2021 07:35:10 GMT
+Fri, 14 May 2021 07:35:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.6..@fluentui/react-monaco-editor_v1.1.7)
### Patches
@@ -4075,7 +4075,7 @@ Fri, 14 May 2021 07:35:10 GMT
## [1.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.6)
-Thu, 13 May 2021 07:36:55 GMT
+Thu, 13 May 2021 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.5..@fluentui/react-monaco-editor_v1.1.6)
### Patches
@@ -4084,7 +4084,7 @@ Thu, 13 May 2021 07:36:55 GMT
## [1.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.5)
-Wed, 12 May 2021 07:36:20 GMT
+Wed, 12 May 2021 07:36:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.4..@fluentui/react-monaco-editor_v1.1.5)
### Patches
@@ -4093,7 +4093,7 @@ Wed, 12 May 2021 07:36:20 GMT
## [1.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.4)
-Mon, 10 May 2021 07:36:07 GMT
+Mon, 10 May 2021 07:36:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.3..@fluentui/react-monaco-editor_v1.1.4)
### Patches
@@ -4102,7 +4102,7 @@ Mon, 10 May 2021 07:36:07 GMT
## [1.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.3)
-Fri, 07 May 2021 07:34:34 GMT
+Fri, 07 May 2021 07:34:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.2..@fluentui/react-monaco-editor_v1.1.3)
### Patches
@@ -4111,7 +4111,7 @@ Fri, 07 May 2021 07:34:34 GMT
## [1.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.2)
-Thu, 06 May 2021 07:35:51 GMT
+Thu, 06 May 2021 07:35:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.1..@fluentui/react-monaco-editor_v1.1.2)
### Patches
@@ -4120,7 +4120,7 @@ Thu, 06 May 2021 07:35:51 GMT
## [1.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.1)
-Tue, 04 May 2021 07:36:35 GMT
+Tue, 04 May 2021 07:36:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.1.0..@fluentui/react-monaco-editor_v1.1.1)
### Patches
@@ -4129,7 +4129,7 @@ Tue, 04 May 2021 07:36:35 GMT
## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.33..@fluentui/react-monaco-editor_v1.1.0)
### Minor changes
@@ -4147,7 +4147,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [1.0.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.33)
-Wed, 28 Apr 2021 07:32:59 GMT
+Wed, 28 Apr 2021 07:32:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.32..@fluentui/react-monaco-editor_v1.0.33)
### Patches
@@ -4156,7 +4156,7 @@ Wed, 28 Apr 2021 07:32:59 GMT
## [1.0.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.32)
-Tue, 27 Apr 2021 07:34:03 GMT
+Tue, 27 Apr 2021 07:34:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.31..@fluentui/react-monaco-editor_v1.0.32)
### Patches
@@ -4165,7 +4165,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
## [1.0.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.31)
-Mon, 26 Apr 2021 07:34:31 GMT
+Mon, 26 Apr 2021 07:34:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.30..@fluentui/react-monaco-editor_v1.0.31)
### Patches
@@ -4174,7 +4174,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
## [1.0.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.30)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.29..@fluentui/react-monaco-editor_v1.0.30)
### Patches
@@ -4183,7 +4183,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [1.0.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.29)
-Fri, 16 Apr 2021 07:32:08 GMT
+Fri, 16 Apr 2021 07:32:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.28..@fluentui/react-monaco-editor_v1.0.29)
### Patches
@@ -4192,7 +4192,7 @@ Fri, 16 Apr 2021 07:32:08 GMT
## [1.0.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.28)
-Wed, 14 Apr 2021 07:34:12 GMT
+Wed, 14 Apr 2021 07:34:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.27..@fluentui/react-monaco-editor_v1.0.28)
### Patches
@@ -4201,7 +4201,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
## [1.0.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.27)
-Tue, 13 Apr 2021 14:55:56 GMT
+Tue, 13 Apr 2021 14:55:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.26..@fluentui/react-monaco-editor_v1.0.27)
### Patches
@@ -4210,7 +4210,7 @@ Tue, 13 Apr 2021 14:55:56 GMT
## [1.0.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.26)
-Sat, 10 Apr 2021 03:23:10 GMT
+Sat, 10 Apr 2021 03:23:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.25..@fluentui/react-monaco-editor_v1.0.26)
### Patches
@@ -4219,7 +4219,7 @@ Sat, 10 Apr 2021 03:23:10 GMT
## [1.0.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.25)
-Fri, 09 Apr 2021 23:42:49 GMT
+Fri, 09 Apr 2021 23:42:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.24..@fluentui/react-monaco-editor_v1.0.25)
### Patches
@@ -4228,7 +4228,7 @@ Fri, 09 Apr 2021 23:42:49 GMT
## [1.0.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.24)
-Thu, 08 Apr 2021 07:33:06 GMT
+Thu, 08 Apr 2021 07:33:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.23..@fluentui/react-monaco-editor_v1.0.24)
### Patches
@@ -4237,7 +4237,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
## [1.0.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.23)
-Wed, 07 Apr 2021 08:04:03 GMT
+Wed, 07 Apr 2021 08:04:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.22..@fluentui/react-monaco-editor_v1.0.23)
### Patches
@@ -4246,7 +4246,7 @@ Wed, 07 Apr 2021 08:04:03 GMT
## [1.0.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.22)
-Tue, 06 Apr 2021 07:34:10 GMT
+Tue, 06 Apr 2021 07:34:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.21..@fluentui/react-monaco-editor_v1.0.22)
### Patches
@@ -4255,7 +4255,7 @@ Tue, 06 Apr 2021 07:34:10 GMT
## [1.0.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.21)
-Thu, 01 Apr 2021 07:33:24 GMT
+Thu, 01 Apr 2021 07:33:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.20..@fluentui/react-monaco-editor_v1.0.21)
### Patches
@@ -4264,7 +4264,7 @@ Thu, 01 Apr 2021 07:33:24 GMT
## [1.0.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.20)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.19..@fluentui/react-monaco-editor_v1.0.20)
### Patches
@@ -4273,7 +4273,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [1.0.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.19)
-Tue, 30 Mar 2021 07:34:45 GMT
+Tue, 30 Mar 2021 07:34:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.18..@fluentui/react-monaco-editor_v1.0.19)
### Patches
@@ -4282,7 +4282,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
## [1.0.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.18)
-Fri, 26 Mar 2021 07:32:34 GMT
+Fri, 26 Mar 2021 07:32:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.17..@fluentui/react-monaco-editor_v1.0.18)
### Patches
@@ -4291,7 +4291,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
## [1.0.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.17)
-Thu, 25 Mar 2021 07:33:24 GMT
+Thu, 25 Mar 2021 07:33:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.16..@fluentui/react-monaco-editor_v1.0.17)
### Patches
@@ -4300,7 +4300,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
## [1.0.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.16)
-Wed, 24 Mar 2021 07:32:21 GMT
+Wed, 24 Mar 2021 07:32:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.15..@fluentui/react-monaco-editor_v1.0.16)
### Patches
@@ -4309,7 +4309,7 @@ Wed, 24 Mar 2021 07:32:21 GMT
## [1.0.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.15)
-Mon, 22 Mar 2021 07:34:09 GMT
+Mon, 22 Mar 2021 07:34:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.14..@fluentui/react-monaco-editor_v1.0.15)
### Patches
@@ -4318,7 +4318,7 @@ Mon, 22 Mar 2021 07:34:09 GMT
## [1.0.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.14)
-Thu, 18 Mar 2021 20:15:34 GMT
+Thu, 18 Mar 2021 20:15:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.13..@fluentui/react-monaco-editor_v1.0.14)
### Patches
@@ -4327,7 +4327,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
## [1.0.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.13)
-Thu, 18 Mar 2021 07:33:22 GMT
+Thu, 18 Mar 2021 07:33:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.12..@fluentui/react-monaco-editor_v1.0.13)
### Patches
@@ -4336,7 +4336,7 @@ Thu, 18 Mar 2021 07:33:22 GMT
## [1.0.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.12)
-Wed, 17 Mar 2021 07:35:44 GMT
+Wed, 17 Mar 2021 07:35:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.11..@fluentui/react-monaco-editor_v1.0.12)
### Patches
@@ -4345,7 +4345,7 @@ Wed, 17 Mar 2021 07:35:44 GMT
## [1.0.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.11)
-Tue, 16 Mar 2021 07:32:44 GMT
+Tue, 16 Mar 2021 07:32:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.10..@fluentui/react-monaco-editor_v1.0.11)
### Patches
@@ -4354,7 +4354,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
## [1.0.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.10)
-Fri, 12 Mar 2021 20:04:27 GMT
+Fri, 12 Mar 2021 20:04:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.9..@fluentui/react-monaco-editor_v1.0.10)
### Patches
@@ -4363,7 +4363,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
## [1.0.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.9)
-Thu, 11 Mar 2021 07:33:03 GMT
+Thu, 11 Mar 2021 07:33:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.8..@fluentui/react-monaco-editor_v1.0.9)
### Patches
@@ -4372,7 +4372,7 @@ Thu, 11 Mar 2021 07:33:03 GMT
## [1.0.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.8)
-Wed, 10 Mar 2021 07:34:39 GMT
+Wed, 10 Mar 2021 07:34:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.7..@fluentui/react-monaco-editor_v1.0.8)
### Patches
@@ -4381,7 +4381,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
## [1.0.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.7)
-Tue, 09 Mar 2021 07:32:29 GMT
+Tue, 09 Mar 2021 07:32:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.6..@fluentui/react-monaco-editor_v1.0.7)
### Patches
@@ -4390,7 +4390,7 @@ Tue, 09 Mar 2021 07:32:29 GMT
## [1.0.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.6)
-Sun, 07 Mar 2021 23:34:51 GMT
+Sun, 07 Mar 2021 23:34:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.5..@fluentui/react-monaco-editor_v1.0.6)
### Patches
@@ -4399,7 +4399,7 @@ Sun, 07 Mar 2021 23:34:51 GMT
## [1.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.5)
-Wed, 03 Mar 2021 07:45:18 GMT
+Wed, 03 Mar 2021 07:45:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.4..@fluentui/react-monaco-editor_v1.0.5)
### Patches
@@ -4408,7 +4408,7 @@ Wed, 03 Mar 2021 07:45:18 GMT
## [1.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.4)
-Wed, 03 Mar 2021 00:10:09 GMT
+Wed, 03 Mar 2021 00:10:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.3..@fluentui/react-monaco-editor_v1.0.4)
### Patches
@@ -4417,7 +4417,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
## [1.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.3)
-Tue, 02 Mar 2021 07:24:27 GMT
+Tue, 02 Mar 2021 07:24:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.2..@fluentui/react-monaco-editor_v1.0.3)
### Patches
@@ -4426,7 +4426,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
## [1.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.2)
-Mon, 01 Mar 2021 07:20:46 GMT
+Mon, 01 Mar 2021 07:20:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1..@fluentui/react-monaco-editor_v1.0.2)
### Patches
@@ -4435,7 +4435,7 @@ Mon, 01 Mar 2021 07:20:46 GMT
## [1.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-8..@fluentui/react-monaco-editor_v1.0.1)
### Patches
@@ -4444,7 +4444,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [1.0.1-8](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-8)
-Thu, 25 Feb 2021 20:16:39 GMT
+Thu, 25 Feb 2021 20:16:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-7..@fluentui/react-monaco-editor_v1.0.1-8)
### Changes
@@ -4453,7 +4453,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
## [1.0.1-7](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-7)
-Thu, 25 Feb 2021 01:15:27 GMT
+Thu, 25 Feb 2021 01:15:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-6..@fluentui/react-monaco-editor_v1.0.1-7)
### Changes
@@ -4462,7 +4462,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
## [1.0.1-6](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-6)
-Wed, 24 Feb 2021 07:19:56 GMT
+Wed, 24 Feb 2021 07:19:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-5..@fluentui/react-monaco-editor_v1.0.1-6)
### Changes
@@ -4471,7 +4471,7 @@ Wed, 24 Feb 2021 07:19:56 GMT
## [1.0.1-5](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-5)
-Wed, 24 Feb 2021 00:05:29 GMT
+Wed, 24 Feb 2021 00:05:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-4..@fluentui/react-monaco-editor_v1.0.1-5)
### Changes
@@ -4480,7 +4480,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
## [1.0.1-4](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-4)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-3..@fluentui/react-monaco-editor_v1.0.1-4)
### Changes
@@ -4489,7 +4489,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [1.0.1-3](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-3)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-2..@fluentui/react-monaco-editor_v1.0.1-3)
### Changes
@@ -4498,7 +4498,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [1.0.1-2](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-2)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-1..@fluentui/react-monaco-editor_v1.0.1-2)
### Changes
@@ -4507,7 +4507,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [1.0.1-1](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-1)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.1-0..@fluentui/react-monaco-editor_v1.0.1-1)
### Changes
@@ -4516,7 +4516,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [1.0.1-0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.1-0)
-Fri, 12 Feb 2021 12:26:20 GMT
+Fri, 12 Feb 2021 12:26:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0..@fluentui/react-monaco-editor_v1.0.1-0)
### Changes
@@ -4525,7 +4525,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
## [1.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0)
-Thu, 11 Feb 2021 12:18:41 GMT
+Thu, 11 Feb 2021 12:18:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.52..@fluentui/react-monaco-editor_v1.0.0)
### Patches
@@ -4534,7 +4534,7 @@ Thu, 11 Feb 2021 12:18:41 GMT
## [1.0.0-beta.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.52)
-Thu, 11 Feb 2021 00:58:10 GMT
+Thu, 11 Feb 2021 00:58:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.51..@fluentui/react-monaco-editor_v1.0.0-beta.52)
### Changes
@@ -4543,7 +4543,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
## [1.0.0-beta.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.51)
-Wed, 10 Feb 2021 12:20:53 GMT
+Wed, 10 Feb 2021 12:20:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.50..@fluentui/react-monaco-editor_v1.0.0-beta.51)
### Changes
@@ -4552,7 +4552,7 @@ Wed, 10 Feb 2021 12:20:53 GMT
## [1.0.0-beta.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.50)
-Tue, 09 Feb 2021 12:24:19 GMT
+Tue, 09 Feb 2021 12:24:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.49..@fluentui/react-monaco-editor_v1.0.0-beta.50)
### Changes
@@ -4561,7 +4561,7 @@ Tue, 09 Feb 2021 12:24:19 GMT
## [1.0.0-beta.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.49)
-Tue, 09 Feb 2021 00:56:52 GMT
+Tue, 09 Feb 2021 00:56:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.48..@fluentui/react-monaco-editor_v1.0.0-beta.49)
### Changes
@@ -4570,7 +4570,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
## [1.0.0-beta.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.48)
-Fri, 05 Feb 2021 12:20:17 GMT
+Fri, 05 Feb 2021 12:20:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.46..@fluentui/react-monaco-editor_v1.0.0-beta.48)
### Changes
@@ -4579,7 +4579,7 @@ Fri, 05 Feb 2021 12:20:17 GMT
## [1.0.0-beta.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.43)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.38..@fluentui/react-monaco-editor_v1.0.0-beta.43)
### Changes
@@ -4589,7 +4589,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [1.0.0-beta.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.38)
-Thu, 21 Jan 2021 12:36:12 GMT
+Thu, 21 Jan 2021 12:36:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-monaco-editor_v1.0.0-beta.0..@fluentui/react-monaco-editor_v1.0.0-beta.38)
### Changes
@@ -4598,7 +4598,7 @@ Thu, 21 Jan 2021 12:36:12 GMT
## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-monaco-editor_v1.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.13.17..@fluentui/react-monaco-editor_v1.0.0-beta.0)
### Changes
@@ -4619,7 +4619,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
## [0.11.131](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.131)
-Tue, 18 Aug 2020 07:58:00 GMT
+Tue, 18 Aug 2020 07:58:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.112..@uifabric/tsx-editor_v0.11.131)
### Patches
@@ -4628,7 +4628,7 @@ Tue, 18 Aug 2020 07:58:00 GMT
## [0.11.112](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.112)
-Tue, 21 Jul 2020 12:43:08 GMT
+Tue, 21 Jul 2020 12:43:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.111..@uifabric/tsx-editor_v0.11.112)
### Patches
@@ -4637,7 +4637,7 @@ Tue, 21 Jul 2020 12:43:08 GMT
## [0.11.111](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.111)
-Mon, 20 Jul 2020 12:44:29 GMT
+Mon, 20 Jul 2020 12:44:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.109..@uifabric/tsx-editor_v0.11.111)
### Patches
@@ -4646,7 +4646,7 @@ Mon, 20 Jul 2020 12:44:29 GMT
## [0.11.108](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.108)
-Mon, 13 Jul 2020 23:14:39 GMT
+Mon, 13 Jul 2020 23:14:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.99..@uifabric/tsx-editor_v0.11.108)
### Patches
@@ -4655,7 +4655,7 @@ Mon, 13 Jul 2020 23:14:39 GMT
## [0.11.95](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.95)
-Wed, 17 Jun 2020 12:37:16 GMT
+Wed, 17 Jun 2020 12:37:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.94..@uifabric/tsx-editor_v0.11.95)
### Patches
@@ -4664,7 +4664,7 @@ Wed, 17 Jun 2020 12:37:16 GMT
## [0.11.94](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.94)
-Tue, 16 Jun 2020 17:35:36 GMT
+Tue, 16 Jun 2020 17:35:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.67..@uifabric/tsx-editor_v0.11.94)
### Patches
@@ -4673,7 +4673,7 @@ Tue, 16 Jun 2020 17:35:36 GMT
## [0.11.67](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.67)
-Thu, 07 May 2020 01:06:55 GMT
+Thu, 07 May 2020 01:06:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.55..@uifabric/tsx-editor_v0.11.67)
### Patches
@@ -4682,7 +4682,7 @@ Thu, 07 May 2020 01:06:55 GMT
## [0.11.55](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.55)
-Tue, 21 Apr 2020 12:34:50 GMT
+Tue, 21 Apr 2020 12:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.50..@uifabric/tsx-editor_v0.11.55)
### Patches
@@ -4691,7 +4691,7 @@ Tue, 21 Apr 2020 12:34:50 GMT
## [0.11.50](https://github.com/microsoft/fluentui/tree/@uifabric/tsx-editor_v0.11.50)
-Thu, 16 Apr 2020 04:01:45 GMT
+Thu, 16 Apr 2020 04:01:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/tsx-editor_v0.11.49..@uifabric/tsx-editor_v0.11.50)
### Patches
diff --git a/packages/react-window-provider/CHANGELOG.md b/packages/react-window-provider/CHANGELOG.md
index 6b9a8b9099fbd8..437b8b6ebdfcb9 100644
--- a/packages/react-window-provider/CHANGELOG.md
+++ b/packages/react-window-provider/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m
## [2.2.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.21)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.20..@fluentui/react-window-provider_v2.2.21)
### Patches
@@ -15,7 +15,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [2.2.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.20)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.19..@fluentui/react-window-provider_v2.2.20)
### Patches
@@ -24,7 +24,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [2.2.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.19)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.18..@fluentui/react-window-provider_v2.2.19)
### Patches
@@ -33,7 +33,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [2.2.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.18)
-Wed, 10 Jan 2024 07:28:49 GMT
+Wed, 10 Jan 2024 07:28:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.17..@fluentui/react-window-provider_v2.2.18)
### Patches
@@ -43,7 +43,7 @@ Wed, 10 Jan 2024 07:28:49 GMT
## [2.2.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.17)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.16..@fluentui/react-window-provider_v2.2.17)
### Patches
@@ -53,7 +53,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [2.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.16)
-Sat, 28 Oct 2023 00:29:16 GMT
+Sat, 28 Oct 2023 00:29:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.15..@fluentui/react-window-provider_v2.2.16)
### Patches
@@ -62,7 +62,7 @@ Sat, 28 Oct 2023 00:29:16 GMT
## [2.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.15)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.14..@fluentui/react-window-provider_v2.2.15)
### Patches
@@ -72,7 +72,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [2.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.14)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.13..@fluentui/react-window-provider_v2.2.14)
### Patches
@@ -82,7 +82,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [2.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.13)
-Fri, 05 May 2023 18:13:59 GMT
+Fri, 05 May 2023 18:13:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.12..@fluentui/react-window-provider_v2.2.13)
### Patches
@@ -93,7 +93,7 @@ Fri, 05 May 2023 18:13:59 GMT
## [2.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.12)
-Tue, 02 May 2023 22:20:25 GMT
+Tue, 02 May 2023 22:20:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.11..@fluentui/react-window-provider_v2.2.12)
### Patches
@@ -102,7 +102,7 @@ Tue, 02 May 2023 22:20:25 GMT
## [2.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.11)
-Tue, 02 May 2023 00:58:17 GMT
+Tue, 02 May 2023 00:58:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.10..@fluentui/react-window-provider_v2.2.11)
### Patches
@@ -112,7 +112,7 @@ Tue, 02 May 2023 00:58:17 GMT
## [2.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.10)
-Mon, 01 May 2023 07:39:54 GMT
+Mon, 01 May 2023 07:39:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.9..@fluentui/react-window-provider_v2.2.10)
### Patches
@@ -122,7 +122,7 @@ Mon, 01 May 2023 07:39:54 GMT
## [2.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.9)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.8..@fluentui/react-window-provider_v2.2.9)
### Patches
@@ -132,7 +132,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [2.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.8)
-Fri, 10 Mar 2023 07:38:25 GMT
+Fri, 10 Mar 2023 07:38:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.7..@fluentui/react-window-provider_v2.2.8)
### Patches
@@ -141,7 +141,7 @@ Fri, 10 Mar 2023 07:38:25 GMT
## [2.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.7)
-Wed, 01 Mar 2023 07:45:41 GMT
+Wed, 01 Mar 2023 07:45:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.6..@fluentui/react-window-provider_v2.2.7)
### Patches
@@ -150,7 +150,7 @@ Wed, 01 Mar 2023 07:45:41 GMT
## [2.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.6)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.5..@fluentui/react-window-provider_v2.2.6)
### Patches
@@ -160,7 +160,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [2.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.5)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.4..@fluentui/react-window-provider_v2.2.5)
### Patches
@@ -170,7 +170,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [2.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.4)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.3..@fluentui/react-window-provider_v2.2.4)
### Patches
@@ -180,7 +180,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [2.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.3)
-Thu, 20 Oct 2022 07:43:12 GMT
+Thu, 20 Oct 2022 07:43:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.2..@fluentui/react-window-provider_v2.2.3)
### Patches
@@ -190,7 +190,7 @@ Thu, 20 Oct 2022 07:43:12 GMT
## [2.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.2)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.1..@fluentui/react-window-provider_v2.2.2)
### Patches
@@ -200,7 +200,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [2.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.1)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.2.0..@fluentui/react-window-provider_v2.2.1)
### Patches
@@ -210,7 +210,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [2.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.2.0)
-Thu, 03 Mar 2022 07:24:24 GMT
+Thu, 03 Mar 2022 07:24:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.6..@fluentui/react-window-provider_v2.2.0)
### Minor changes
@@ -220,7 +220,7 @@ Thu, 03 Mar 2022 07:24:24 GMT
## [2.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.6)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.5..@fluentui/react-window-provider_v2.1.6)
### Patches
@@ -229,7 +229,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [2.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.5)
-Thu, 25 Nov 2021 14:54:16 GMT
+Thu, 25 Nov 2021 14:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.4..@fluentui/react-window-provider_v2.1.5)
### Patches
@@ -239,7 +239,7 @@ Thu, 25 Nov 2021 14:54:16 GMT
## [2.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.4)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.3..@fluentui/react-window-provider_v2.1.4)
### Patches
@@ -248,7 +248,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [2.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.3)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.2..@fluentui/react-window-provider_v2.1.3)
### Patches
@@ -257,7 +257,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [2.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.2)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.1..@fluentui/react-window-provider_v2.1.2)
### Patches
@@ -266,7 +266,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [2.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.1)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.1.0..@fluentui/react-window-provider_v2.1.1)
### Patches
@@ -275,7 +275,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [2.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.3..@fluentui/react-window-provider_v2.1.0)
### Minor changes
@@ -291,7 +291,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [2.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.3)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.2..@fluentui/react-window-provider_v2.0.3)
### Patches
@@ -300,7 +300,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [2.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.2)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.1..@fluentui/react-window-provider_v2.0.2)
### Patches
@@ -309,7 +309,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [2.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.9..@fluentui/react-window-provider_v2.0.1)
### Patches
@@ -318,7 +318,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [2.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.9)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.8..@fluentui/react-window-provider_v2.0.0-beta.9)
### Changes
@@ -327,7 +327,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [2.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.8)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.7..@fluentui/react-window-provider_v2.0.0-beta.8)
### Changes
@@ -336,7 +336,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [2.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.7)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.6..@fluentui/react-window-provider_v2.0.0-beta.7)
### Changes
@@ -345,7 +345,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [2.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.6)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.5..@fluentui/react-window-provider_v2.0.0-beta.6)
### Changes
@@ -354,7 +354,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [2.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.5)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.4..@fluentui/react-window-provider_v2.0.0-beta.5)
### Changes
@@ -363,7 +363,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [2.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.4)
-Thu, 21 Jan 2021 12:36:12 GMT
+Thu, 21 Jan 2021 12:36:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v2.0.0-beta.0..@fluentui/react-window-provider_v2.0.0-beta.4)
### Changes
@@ -372,7 +372,7 @@ Thu, 21 Jan 2021 12:36:12 GMT
## [2.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-window-provider_v2.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-window-provider_v0.3.2..@fluentui/react-window-provider_v2.0.0-beta.0)
### Changes
diff --git a/packages/scheme-utilities/CHANGELOG.md b/packages/scheme-utilities/CHANGELOG.md
index 57f1b35d7c0462..59631fccb59bc9 100644
--- a/packages/scheme-utilities/CHANGELOG.md
+++ b/packages/scheme-utilities/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m
## [8.3.48](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.48)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.47..@fluentui/scheme-utilities_v8.3.48)
### Patches
@@ -16,7 +16,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [8.3.47](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.47)
-Mon, 22 Apr 2024 07:28:27 GMT
+Mon, 22 Apr 2024 07:28:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.46..@fluentui/scheme-utilities_v8.3.47)
### Patches
@@ -25,7 +25,7 @@ Mon, 22 Apr 2024 07:28:27 GMT
## [8.3.46](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.46)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.45..@fluentui/scheme-utilities_v8.3.46)
### Patches
@@ -35,7 +35,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [8.3.45](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.45)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.44..@fluentui/scheme-utilities_v8.3.45)
### Patches
@@ -45,7 +45,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [8.3.44](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.44)
-Fri, 22 Mar 2024 07:28:53 GMT
+Fri, 22 Mar 2024 07:28:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.43..@fluentui/scheme-utilities_v8.3.44)
### Patches
@@ -54,7 +54,7 @@ Fri, 22 Mar 2024 07:28:53 GMT
## [8.3.43](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.43)
-Wed, 13 Mar 2024 07:30:28 GMT
+Wed, 13 Mar 2024 07:30:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.42..@fluentui/scheme-utilities_v8.3.43)
### Patches
@@ -63,7 +63,7 @@ Wed, 13 Mar 2024 07:30:28 GMT
## [8.3.42](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.42)
-Fri, 19 Jan 2024 07:29:32 GMT
+Fri, 19 Jan 2024 07:29:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.41..@fluentui/scheme-utilities_v8.3.42)
### Patches
@@ -72,7 +72,7 @@ Fri, 19 Jan 2024 07:29:32 GMT
## [8.3.41](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.41)
-Wed, 10 Jan 2024 07:28:50 GMT
+Wed, 10 Jan 2024 07:28:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.40..@fluentui/scheme-utilities_v8.3.41)
### Patches
@@ -82,7 +82,7 @@ Wed, 10 Jan 2024 07:28:50 GMT
## [8.3.40](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.40)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.39..@fluentui/scheme-utilities_v8.3.40)
### Patches
@@ -92,7 +92,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [8.3.39](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.39)
-Thu, 09 Nov 2023 07:29:20 GMT
+Thu, 09 Nov 2023 07:29:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.38..@fluentui/scheme-utilities_v8.3.39)
### Patches
@@ -101,7 +101,7 @@ Thu, 09 Nov 2023 07:29:20 GMT
## [8.3.38](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.38)
-Sat, 28 Oct 2023 00:29:16 GMT
+Sat, 28 Oct 2023 00:29:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.37..@fluentui/scheme-utilities_v8.3.38)
### Patches
@@ -111,7 +111,7 @@ Sat, 28 Oct 2023 00:29:16 GMT
## [8.3.37](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.37)
-Fri, 29 Sep 2023 07:45:30 GMT
+Fri, 29 Sep 2023 07:45:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.36..@fluentui/scheme-utilities_v8.3.37)
### Patches
@@ -120,7 +120,7 @@ Fri, 29 Sep 2023 07:45:30 GMT
## [8.3.36](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.36)
-Fri, 18 Aug 2023 07:35:26 GMT
+Fri, 18 Aug 2023 07:35:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.35..@fluentui/scheme-utilities_v8.3.36)
### Patches
@@ -129,7 +129,7 @@ Fri, 18 Aug 2023 07:35:26 GMT
## [8.3.35](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.35)
-Wed, 28 Jun 2023 07:37:29 GMT
+Wed, 28 Jun 2023 07:37:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.34..@fluentui/scheme-utilities_v8.3.35)
### Patches
@@ -138,7 +138,7 @@ Wed, 28 Jun 2023 07:37:29 GMT
## [8.3.34](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.34)
-Mon, 19 Jun 2023 07:36:39 GMT
+Mon, 19 Jun 2023 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.33..@fluentui/scheme-utilities_v8.3.34)
### Patches
@@ -147,7 +147,7 @@ Mon, 19 Jun 2023 07:36:39 GMT
## [8.3.33](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.33)
-Thu, 01 Jun 2023 07:38:37 GMT
+Thu, 01 Jun 2023 07:38:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.32..@fluentui/scheme-utilities_v8.3.33)
### Patches
@@ -156,7 +156,7 @@ Thu, 01 Jun 2023 07:38:37 GMT
## [8.3.32](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.32)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.31..@fluentui/scheme-utilities_v8.3.32)
### Patches
@@ -166,7 +166,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [8.3.31](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.31)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.30..@fluentui/scheme-utilities_v8.3.31)
### Patches
@@ -176,7 +176,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [8.3.30](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.30)
-Fri, 05 May 2023 18:13:59 GMT
+Fri, 05 May 2023 18:13:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.29..@fluentui/scheme-utilities_v8.3.30)
### Patches
@@ -187,7 +187,7 @@ Fri, 05 May 2023 18:13:59 GMT
## [8.3.29](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.29)
-Tue, 02 May 2023 22:20:21 GMT
+Tue, 02 May 2023 22:20:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.28..@fluentui/scheme-utilities_v8.3.29)
### Patches
@@ -197,7 +197,7 @@ Tue, 02 May 2023 22:20:21 GMT
## [8.3.28](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.28)
-Tue, 02 May 2023 00:58:19 GMT
+Tue, 02 May 2023 00:58:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.27..@fluentui/scheme-utilities_v8.3.28)
### Patches
@@ -207,7 +207,7 @@ Tue, 02 May 2023 00:58:19 GMT
## [8.3.27](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.27)
-Mon, 01 May 2023 07:39:54 GMT
+Mon, 01 May 2023 07:39:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.26..@fluentui/scheme-utilities_v8.3.27)
### Patches
@@ -217,7 +217,7 @@ Mon, 01 May 2023 07:39:54 GMT
## [8.3.26](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.26)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.25..@fluentui/scheme-utilities_v8.3.26)
### Patches
@@ -227,7 +227,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [8.3.25](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.25)
-Wed, 01 Mar 2023 07:45:41 GMT
+Wed, 01 Mar 2023 07:45:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.24..@fluentui/scheme-utilities_v8.3.25)
### Patches
@@ -236,7 +236,7 @@ Wed, 01 Mar 2023 07:45:41 GMT
## [8.3.24](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.24)
-Sat, 18 Feb 2023 01:37:02 GMT
+Sat, 18 Feb 2023 01:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.23..@fluentui/scheme-utilities_v8.3.24)
### Patches
@@ -245,7 +245,7 @@ Sat, 18 Feb 2023 01:37:02 GMT
## [8.3.23](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.23)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.22..@fluentui/scheme-utilities_v8.3.23)
### Patches
@@ -255,7 +255,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [8.3.22](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.22)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.21..@fluentui/scheme-utilities_v8.3.22)
### Patches
@@ -265,7 +265,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [8.3.21](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.21)
-Tue, 20 Dec 2022 07:53:34 GMT
+Tue, 20 Dec 2022 07:53:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.20..@fluentui/scheme-utilities_v8.3.21)
### Patches
@@ -274,7 +274,7 @@ Tue, 20 Dec 2022 07:53:34 GMT
## [8.3.20](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.20)
-Tue, 15 Nov 2022 07:44:59 GMT
+Tue, 15 Nov 2022 07:44:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.19..@fluentui/scheme-utilities_v8.3.20)
### Patches
@@ -283,7 +283,7 @@ Tue, 15 Nov 2022 07:44:59 GMT
## [8.3.19](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.19)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.18..@fluentui/scheme-utilities_v8.3.19)
### Patches
@@ -293,7 +293,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [8.3.18](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.18)
-Thu, 20 Oct 2022 07:43:14 GMT
+Thu, 20 Oct 2022 07:43:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.17..@fluentui/scheme-utilities_v8.3.18)
### Patches
@@ -302,7 +302,7 @@ Thu, 20 Oct 2022 07:43:14 GMT
## [8.3.17](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.17)
-Fri, 02 Sep 2022 07:48:53 GMT
+Fri, 02 Sep 2022 07:48:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.16..@fluentui/scheme-utilities_v8.3.17)
### Patches
@@ -311,7 +311,7 @@ Fri, 02 Sep 2022 07:48:53 GMT
## [8.3.16](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.16)
-Mon, 29 Aug 2022 07:44:38 GMT
+Mon, 29 Aug 2022 07:44:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.15..@fluentui/scheme-utilities_v8.3.16)
### Patches
@@ -320,7 +320,7 @@ Mon, 29 Aug 2022 07:44:38 GMT
## [8.3.15](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.15)
-Wed, 24 Aug 2022 16:36:06 GMT
+Wed, 24 Aug 2022 16:36:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.14..@fluentui/scheme-utilities_v8.3.15)
### Patches
@@ -329,7 +329,7 @@ Wed, 24 Aug 2022 16:36:06 GMT
## [8.3.14](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.14)
-Tue, 23 Aug 2022 07:22:50 GMT
+Tue, 23 Aug 2022 07:22:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.13..@fluentui/scheme-utilities_v8.3.14)
### Patches
@@ -338,7 +338,7 @@ Tue, 23 Aug 2022 07:22:50 GMT
## [8.3.13](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.13)
-Thu, 18 Aug 2022 23:39:31 GMT
+Thu, 18 Aug 2022 23:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.12..@fluentui/scheme-utilities_v8.3.13)
### Patches
@@ -347,7 +347,7 @@ Thu, 18 Aug 2022 23:39:31 GMT
## [8.3.12](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.12)
-Mon, 15 Aug 2022 07:39:41 GMT
+Mon, 15 Aug 2022 07:39:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.11..@fluentui/scheme-utilities_v8.3.12)
### Patches
@@ -356,7 +356,7 @@ Mon, 15 Aug 2022 07:39:41 GMT
## [8.3.11](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.11)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.10..@fluentui/scheme-utilities_v8.3.11)
### Patches
@@ -366,7 +366,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [8.3.10](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.10)
-Tue, 02 Aug 2022 07:44:44 GMT
+Tue, 02 Aug 2022 07:44:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.9..@fluentui/scheme-utilities_v8.3.10)
### Patches
@@ -375,7 +375,7 @@ Tue, 02 Aug 2022 07:44:44 GMT
## [8.3.9](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.9)
-Tue, 26 Jul 2022 07:39:35 GMT
+Tue, 26 Jul 2022 07:39:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.8..@fluentui/scheme-utilities_v8.3.9)
### Patches
@@ -384,7 +384,7 @@ Tue, 26 Jul 2022 07:39:35 GMT
## [8.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.8)
-Tue, 12 Jul 2022 07:41:00 GMT
+Tue, 12 Jul 2022 07:41:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.7..@fluentui/scheme-utilities_v8.3.8)
### Patches
@@ -393,7 +393,7 @@ Tue, 12 Jul 2022 07:41:00 GMT
## [8.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.7)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.6..@fluentui/scheme-utilities_v8.3.7)
### Patches
@@ -403,7 +403,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [8.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.6)
-Fri, 15 Apr 2022 07:42:48 GMT
+Fri, 15 Apr 2022 07:42:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.5..@fluentui/scheme-utilities_v8.3.6)
### Patches
@@ -412,7 +412,7 @@ Fri, 15 Apr 2022 07:42:48 GMT
## [8.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.5)
-Tue, 15 Mar 2022 07:45:54 GMT
+Tue, 15 Mar 2022 07:45:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.4..@fluentui/scheme-utilities_v8.3.5)
### Patches
@@ -421,7 +421,7 @@ Tue, 15 Mar 2022 07:45:54 GMT
## [8.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.4)
-Fri, 11 Mar 2022 07:34:41 GMT
+Fri, 11 Mar 2022 07:34:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.3..@fluentui/scheme-utilities_v8.3.4)
### Patches
@@ -430,7 +430,7 @@ Fri, 11 Mar 2022 07:34:41 GMT
## [8.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.3)
-Thu, 10 Mar 2022 07:34:50 GMT
+Thu, 10 Mar 2022 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.2..@fluentui/scheme-utilities_v8.3.3)
### Patches
@@ -439,7 +439,7 @@ Thu, 10 Mar 2022 07:34:50 GMT
## [8.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.2)
-Wed, 09 Mar 2022 07:37:30 GMT
+Wed, 09 Mar 2022 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.1..@fluentui/scheme-utilities_v8.3.2)
### Patches
@@ -448,7 +448,7 @@ Wed, 09 Mar 2022 07:37:30 GMT
## [8.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.1)
-Tue, 08 Mar 2022 23:29:58 GMT
+Tue, 08 Mar 2022 23:29:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.3.0..@fluentui/scheme-utilities_v8.3.1)
### Patches
@@ -457,7 +457,7 @@ Tue, 08 Mar 2022 23:29:58 GMT
## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.3.0)
-Thu, 03 Mar 2022 07:24:24 GMT
+Thu, 03 Mar 2022 07:24:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.15..@fluentui/scheme-utilities_v8.3.0)
### Minor changes
@@ -468,7 +468,7 @@ Thu, 03 Mar 2022 07:24:24 GMT
## [8.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.15)
-Tue, 01 Mar 2022 07:23:43 GMT
+Tue, 01 Mar 2022 07:23:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.14..@fluentui/scheme-utilities_v8.2.15)
### Patches
@@ -477,7 +477,7 @@ Tue, 01 Mar 2022 07:23:43 GMT
## [8.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.14)
-Thu, 24 Feb 2022 07:29:50 GMT
+Thu, 24 Feb 2022 07:29:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.13..@fluentui/scheme-utilities_v8.2.14)
### Patches
@@ -486,7 +486,7 @@ Thu, 24 Feb 2022 07:29:50 GMT
## [8.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.13)
-Thu, 17 Feb 2022 07:28:31 GMT
+Thu, 17 Feb 2022 07:28:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.12..@fluentui/scheme-utilities_v8.2.13)
### Patches
@@ -495,7 +495,7 @@ Thu, 17 Feb 2022 07:28:31 GMT
## [8.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.12)
-Fri, 11 Feb 2022 07:27:49 GMT
+Fri, 11 Feb 2022 07:27:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.11..@fluentui/scheme-utilities_v8.2.12)
### Patches
@@ -504,7 +504,7 @@ Fri, 11 Feb 2022 07:27:49 GMT
## [8.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.11)
-Wed, 09 Feb 2022 07:30:50 GMT
+Wed, 09 Feb 2022 07:30:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.10..@fluentui/scheme-utilities_v8.2.11)
### Patches
@@ -513,7 +513,7 @@ Wed, 09 Feb 2022 07:30:50 GMT
## [8.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.10)
-Thu, 03 Feb 2022 07:29:41 GMT
+Thu, 03 Feb 2022 07:29:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.9..@fluentui/scheme-utilities_v8.2.10)
### Patches
@@ -522,7 +522,7 @@ Thu, 03 Feb 2022 07:29:41 GMT
## [8.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.9)
-Mon, 03 Jan 2022 23:32:11 GMT
+Mon, 03 Jan 2022 23:32:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.8..@fluentui/scheme-utilities_v8.2.9)
### Patches
@@ -531,7 +531,7 @@ Mon, 03 Jan 2022 23:32:11 GMT
## [8.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.8)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.7..@fluentui/scheme-utilities_v8.2.8)
### Patches
@@ -540,7 +540,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [8.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.7)
-Thu, 25 Nov 2021 14:54:16 GMT
+Thu, 25 Nov 2021 14:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.6..@fluentui/scheme-utilities_v8.2.7)
### Patches
@@ -550,7 +550,7 @@ Thu, 25 Nov 2021 14:54:16 GMT
## [8.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.6)
-Wed, 10 Nov 2021 07:31:59 GMT
+Wed, 10 Nov 2021 07:31:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.5..@fluentui/scheme-utilities_v8.2.6)
### Patches
@@ -559,7 +559,7 @@ Wed, 10 Nov 2021 07:31:59 GMT
## [8.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.5)
-Tue, 02 Nov 2021 07:37:02 GMT
+Tue, 02 Nov 2021 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.4..@fluentui/scheme-utilities_v8.2.5)
### Patches
@@ -568,7 +568,7 @@ Tue, 02 Nov 2021 07:37:02 GMT
## [8.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.4)
-Tue, 05 Oct 2021 07:37:17 GMT
+Tue, 05 Oct 2021 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.3..@fluentui/scheme-utilities_v8.2.4)
### Patches
@@ -577,7 +577,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
## [8.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.3)
-Tue, 28 Sep 2021 22:17:07 GMT
+Tue, 28 Sep 2021 22:17:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.2..@fluentui/scheme-utilities_v8.2.3)
### Patches
@@ -586,7 +586,7 @@ Tue, 28 Sep 2021 22:17:07 GMT
## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.2)
-Thu, 02 Sep 2021 07:36:46 GMT
+Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.1..@fluentui/scheme-utilities_v8.2.2)
### Patches
@@ -595,7 +595,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.1)
-Wed, 25 Aug 2021 07:35:19 GMT
+Wed, 25 Aug 2021 07:35:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.2.0..@fluentui/scheme-utilities_v8.2.1)
### Patches
@@ -604,7 +604,7 @@ Wed, 25 Aug 2021 07:35:19 GMT
## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.2.0)
-Tue, 24 Aug 2021 07:34:48 GMT
+Tue, 24 Aug 2021 07:34:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.7..@fluentui/scheme-utilities_v8.2.0)
### Minor changes
@@ -613,7 +613,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
## [8.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.7)
-Thu, 19 Aug 2021 07:41:35 GMT
+Thu, 19 Aug 2021 07:41:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.6..@fluentui/scheme-utilities_v8.1.7)
### Patches
@@ -622,7 +622,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
## [8.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.6)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.5..@fluentui/scheme-utilities_v8.1.6)
### Patches
@@ -631,7 +631,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [8.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.5)
-Thu, 29 Jul 2021 07:35:37 GMT
+Thu, 29 Jul 2021 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.4..@fluentui/scheme-utilities_v8.1.5)
### Patches
@@ -640,7 +640,7 @@ Thu, 29 Jul 2021 07:35:37 GMT
## [8.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.4)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.3..@fluentui/scheme-utilities_v8.1.4)
### Patches
@@ -649,7 +649,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [8.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.3)
-Mon, 28 Jun 2021 07:35:16 GMT
+Mon, 28 Jun 2021 07:35:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.2..@fluentui/scheme-utilities_v8.1.3)
### Patches
@@ -658,7 +658,7 @@ Mon, 28 Jun 2021 07:35:16 GMT
## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.2)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.1..@fluentui/scheme-utilities_v8.1.2)
### Patches
@@ -667,7 +667,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.1)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.1.0..@fluentui/scheme-utilities_v8.1.1)
### Patches
@@ -676,7 +676,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.5..@fluentui/scheme-utilities_v8.1.0)
### Minor changes
@@ -692,7 +692,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.5)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.4..@fluentui/scheme-utilities_v8.0.5)
### Patches
@@ -701,7 +701,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.4)
-Tue, 13 Apr 2021 14:55:56 GMT
+Tue, 13 Apr 2021 14:55:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.3..@fluentui/scheme-utilities_v8.0.4)
### Patches
@@ -710,7 +710,7 @@ Tue, 13 Apr 2021 14:55:56 GMT
## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.3)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.2..@fluentui/scheme-utilities_v8.0.3)
### Patches
@@ -719,7 +719,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.2)
-Wed, 03 Mar 2021 00:10:09 GMT
+Wed, 03 Mar 2021 00:10:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.1..@fluentui/scheme-utilities_v8.0.2)
### Patches
@@ -728,7 +728,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.19..@fluentui/scheme-utilities_v8.0.1)
### Patches
@@ -737,7 +737,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [8.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.19)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.18..@fluentui/scheme-utilities_v8.0.0-beta.19)
### Changes
@@ -746,7 +746,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [8.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.18)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.17..@fluentui/scheme-utilities_v8.0.0-beta.18)
### Changes
@@ -755,7 +755,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [8.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.17)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.16..@fluentui/scheme-utilities_v8.0.0-beta.17)
### Changes
@@ -764,7 +764,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [8.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.16)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.15..@fluentui/scheme-utilities_v8.0.0-beta.16)
### Changes
@@ -773,7 +773,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [8.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.15)
-Fri, 12 Feb 2021 12:26:20 GMT
+Fri, 12 Feb 2021 12:26:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.14..@fluentui/scheme-utilities_v8.0.0-beta.15)
### Changes
@@ -782,7 +782,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
## [8.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.14)
-Thu, 11 Feb 2021 00:58:10 GMT
+Thu, 11 Feb 2021 00:58:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.13..@fluentui/scheme-utilities_v8.0.0-beta.14)
### Changes
@@ -791,7 +791,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
## [8.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.13)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.1..@fluentui/scheme-utilities_v8.0.0-beta.13)
### Changes
@@ -800,7 +800,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [8.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.1)
-Mon, 26 Oct 2020 12:39:59 GMT
+Mon, 26 Oct 2020 12:39:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/scheme-utilities_v8.0.0-beta.0..@fluentui/scheme-utilities_v8.0.0-beta.1)
### Changes
@@ -809,7 +809,7 @@ Mon, 26 Oct 2020 12:39:59 GMT
## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/scheme-utilities_v8.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/variants_v7.2.21..@fluentui/scheme-utilities_v8.0.0-beta.0)
### Changes
@@ -820,7 +820,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
## [7.2.21](https://github.com/microsoft/fluentui/tree/@uifabric/variants_v7.2.21)
-Sun, 27 Sep 2020 04:20:52 GMT
+Sun, 27 Sep 2020 04:20:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/variants_v7.1.117..@uifabric/variants_v7.2.21)
### Patches
@@ -829,7 +829,7 @@ Sun, 27 Sep 2020 04:20:52 GMT
## [7.1.117](https://github.com/microsoft/fluentui/tree/@uifabric/variants_v7.1.117)
-Tue, 18 Aug 2020 07:58:00 GMT
+Tue, 18 Aug 2020 07:58:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/variants_v7.1.94..@uifabric/variants_v7.1.117)
### Patches
@@ -838,7 +838,7 @@ Tue, 18 Aug 2020 07:58:00 GMT
## [7.1.59](https://github.com/microsoft/fluentui/tree/@uifabric/variants_v7.1.59)
-Thu, 07 May 2020 01:06:55 GMT
+Thu, 07 May 2020 01:06:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/variants_v7.1.42..@uifabric/variants_v7.1.59)
### Patches
@@ -847,7 +847,7 @@ Thu, 07 May 2020 01:06:55 GMT
## [7.1.42](https://github.com/microsoft/fluentui/tree/@uifabric/variants_v7.1.42)
-Thu, 16 Apr 2020 04:01:45 GMT
+Thu, 16 Apr 2020 04:01:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/variants_v7.1.34..@uifabric/variants_v7.1.42)
### Patches
diff --git a/packages/style-utilities/CHANGELOG.md b/packages/style-utilities/CHANGELOG.md
index 028b7d05d8bf61..574f47fa609858 100644
--- a/packages/style-utilities/CHANGELOG.md
+++ b/packages/style-utilities/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m
## [8.10.9](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.9)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.8..@fluentui/style-utilities_v8.10.9)
### Patches
@@ -18,7 +18,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [8.10.8](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.8)
-Mon, 22 Apr 2024 07:28:26 GMT
+Mon, 22 Apr 2024 07:28:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.7..@fluentui/style-utilities_v8.10.8)
### Patches
@@ -30,7 +30,7 @@ Mon, 22 Apr 2024 07:28:26 GMT
## [8.10.7](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.7)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.6..@fluentui/style-utilities_v8.10.7)
### Patches
@@ -42,7 +42,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [8.10.6](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.6)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.5..@fluentui/style-utilities_v8.10.6)
### Patches
@@ -54,7 +54,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [8.10.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.5)
-Fri, 22 Mar 2024 07:28:53 GMT
+Fri, 22 Mar 2024 07:28:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.4..@fluentui/style-utilities_v8.10.5)
### Patches
@@ -64,7 +64,7 @@ Fri, 22 Mar 2024 07:28:53 GMT
## [8.10.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.4)
-Wed, 13 Mar 2024 07:30:28 GMT
+Wed, 13 Mar 2024 07:30:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.3..@fluentui/style-utilities_v8.10.4)
### Patches
@@ -76,7 +76,7 @@ Wed, 13 Mar 2024 07:30:28 GMT
## [8.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.3)
-Wed, 31 Jan 2024 07:27:57 GMT
+Wed, 31 Jan 2024 07:27:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.2..@fluentui/style-utilities_v8.10.3)
### Patches
@@ -85,7 +85,7 @@ Wed, 31 Jan 2024 07:27:57 GMT
## [8.10.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.2)
-Fri, 19 Jan 2024 07:29:32 GMT
+Fri, 19 Jan 2024 07:29:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.1..@fluentui/style-utilities_v8.10.2)
### Patches
@@ -95,7 +95,7 @@ Fri, 19 Jan 2024 07:29:32 GMT
## [8.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.1)
-Wed, 10 Jan 2024 07:28:50 GMT
+Wed, 10 Jan 2024 07:28:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.10.0..@fluentui/style-utilities_v8.10.1)
### Patches
@@ -107,7 +107,7 @@ Wed, 10 Jan 2024 07:28:50 GMT
## [8.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.10.0)
-Tue, 09 Jan 2024 07:33:08 GMT
+Tue, 09 Jan 2024 07:33:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.21..@fluentui/style-utilities_v8.10.0)
### Minor changes
@@ -116,7 +116,7 @@ Tue, 09 Jan 2024 07:33:08 GMT
## [8.9.21](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.21)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.20..@fluentui/style-utilities_v8.9.21)
### Patches
@@ -128,7 +128,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [8.9.20](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.20)
-Thu, 09 Nov 2023 07:29:20 GMT
+Thu, 09 Nov 2023 07:29:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.19..@fluentui/style-utilities_v8.9.20)
### Patches
@@ -138,7 +138,7 @@ Thu, 09 Nov 2023 07:29:20 GMT
## [8.9.19](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.19)
-Sat, 28 Oct 2023 00:29:16 GMT
+Sat, 28 Oct 2023 00:29:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.18..@fluentui/style-utilities_v8.9.19)
### Patches
@@ -150,7 +150,7 @@ Sat, 28 Oct 2023 00:29:16 GMT
## [8.9.18](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.18)
-Fri, 29 Sep 2023 07:45:30 GMT
+Fri, 29 Sep 2023 07:45:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.17..@fluentui/style-utilities_v8.9.18)
### Patches
@@ -160,7 +160,7 @@ Fri, 29 Sep 2023 07:45:30 GMT
## [8.9.17](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.17)
-Fri, 18 Aug 2023 07:35:26 GMT
+Fri, 18 Aug 2023 07:35:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.16..@fluentui/style-utilities_v8.9.17)
### Patches
@@ -170,7 +170,7 @@ Fri, 18 Aug 2023 07:35:26 GMT
## [8.9.16](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.16)
-Wed, 28 Jun 2023 07:37:29 GMT
+Wed, 28 Jun 2023 07:37:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.15..@fluentui/style-utilities_v8.9.16)
### Patches
@@ -180,7 +180,7 @@ Wed, 28 Jun 2023 07:37:29 GMT
## [8.9.15](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.15)
-Mon, 19 Jun 2023 07:36:39 GMT
+Mon, 19 Jun 2023 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.14..@fluentui/style-utilities_v8.9.15)
### Patches
@@ -190,7 +190,7 @@ Mon, 19 Jun 2023 07:36:39 GMT
## [8.9.14](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.14)
-Thu, 01 Jun 2023 07:38:37 GMT
+Thu, 01 Jun 2023 07:38:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.13..@fluentui/style-utilities_v8.9.14)
### Patches
@@ -200,7 +200,7 @@ Thu, 01 Jun 2023 07:38:37 GMT
## [8.9.13](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.13)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.12..@fluentui/style-utilities_v8.9.13)
### Patches
@@ -212,7 +212,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [8.9.12](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.12)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.11..@fluentui/style-utilities_v8.9.12)
### Patches
@@ -224,7 +224,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [8.9.11](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.11)
-Fri, 26 May 2023 07:37:01 GMT
+Fri, 26 May 2023 07:37:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.10..@fluentui/style-utilities_v8.9.11)
### Patches
@@ -233,7 +233,7 @@ Fri, 26 May 2023 07:37:01 GMT
## [8.9.10](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.10)
-Fri, 05 May 2023 18:14:00 GMT
+Fri, 05 May 2023 18:14:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.9..@fluentui/style-utilities_v8.9.10)
### Patches
@@ -246,7 +246,7 @@ Fri, 05 May 2023 18:14:00 GMT
## [8.9.9](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.9)
-Tue, 02 May 2023 22:20:25 GMT
+Tue, 02 May 2023 22:20:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.8..@fluentui/style-utilities_v8.9.9)
### Patches
@@ -256,7 +256,7 @@ Tue, 02 May 2023 22:20:25 GMT
## [8.9.8](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.8)
-Tue, 02 May 2023 00:58:18 GMT
+Tue, 02 May 2023 00:58:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.7..@fluentui/style-utilities_v8.9.8)
### Patches
@@ -269,7 +269,7 @@ Tue, 02 May 2023 00:58:18 GMT
## [8.9.7](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.7)
-Mon, 01 May 2023 07:39:53 GMT
+Mon, 01 May 2023 07:39:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.6..@fluentui/style-utilities_v8.9.7)
### Patches
@@ -282,7 +282,7 @@ Mon, 01 May 2023 07:39:53 GMT
## [8.9.6](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.6)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.5..@fluentui/style-utilities_v8.9.6)
### Patches
@@ -294,7 +294,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [8.9.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.5)
-Thu, 09 Mar 2023 07:39:12 GMT
+Thu, 09 Mar 2023 07:39:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.4..@fluentui/style-utilities_v8.9.5)
### Patches
@@ -303,7 +303,7 @@ Thu, 09 Mar 2023 07:39:12 GMT
## [8.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.4)
-Mon, 06 Mar 2023 07:43:02 GMT
+Mon, 06 Mar 2023 07:43:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.3..@fluentui/style-utilities_v8.9.4)
### Patches
@@ -312,7 +312,7 @@ Mon, 06 Mar 2023 07:43:02 GMT
## [8.9.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.3)
-Wed, 01 Mar 2023 07:45:41 GMT
+Wed, 01 Mar 2023 07:45:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.2..@fluentui/style-utilities_v8.9.3)
### Patches
@@ -322,7 +322,7 @@ Wed, 01 Mar 2023 07:45:41 GMT
## [8.9.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.2)
-Sat, 18 Feb 2023 01:37:02 GMT
+Sat, 18 Feb 2023 01:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.1..@fluentui/style-utilities_v8.9.2)
### Patches
@@ -332,7 +332,7 @@ Sat, 18 Feb 2023 01:37:02 GMT
## [8.9.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.1)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.9.0..@fluentui/style-utilities_v8.9.1)
### Patches
@@ -344,7 +344,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [8.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.9.0)
-Fri, 27 Jan 2023 07:37:50 GMT
+Fri, 27 Jan 2023 07:37:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.8.5..@fluentui/style-utilities_v8.9.0)
### Minor changes
@@ -353,7 +353,7 @@ Fri, 27 Jan 2023 07:37:50 GMT
## [8.8.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.8.5)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.8.4..@fluentui/style-utilities_v8.8.5)
### Patches
@@ -365,7 +365,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [8.8.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.8.4)
-Tue, 20 Dec 2022 07:53:34 GMT
+Tue, 20 Dec 2022 07:53:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.8.3..@fluentui/style-utilities_v8.8.4)
### Patches
@@ -374,7 +374,7 @@ Tue, 20 Dec 2022 07:53:34 GMT
## [8.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.8.3)
-Tue, 15 Nov 2022 07:44:59 GMT
+Tue, 15 Nov 2022 07:44:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.8.2..@fluentui/style-utilities_v8.8.3)
### Patches
@@ -384,7 +384,7 @@ Tue, 15 Nov 2022 07:44:59 GMT
## [8.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.8.2)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.8.1..@fluentui/style-utilities_v8.8.2)
### Patches
@@ -396,7 +396,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [8.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.8.1)
-Thu, 20 Oct 2022 07:43:14 GMT
+Thu, 20 Oct 2022 07:43:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.8.0..@fluentui/style-utilities_v8.8.1)
### Patches
@@ -406,7 +406,7 @@ Thu, 20 Oct 2022 07:43:14 GMT
## [8.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.8.0)
-Mon, 10 Oct 2022 07:38:23 GMT
+Mon, 10 Oct 2022 07:38:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.12..@fluentui/style-utilities_v8.8.0)
### Minor changes
@@ -415,7 +415,7 @@ Mon, 10 Oct 2022 07:38:23 GMT
## [8.7.12](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.12)
-Fri, 02 Sep 2022 07:48:53 GMT
+Fri, 02 Sep 2022 07:48:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.11..@fluentui/style-utilities_v8.7.12)
### Patches
@@ -425,7 +425,7 @@ Fri, 02 Sep 2022 07:48:53 GMT
## [8.7.11](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.11)
-Thu, 01 Sep 2022 07:48:10 GMT
+Thu, 01 Sep 2022 07:48:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.10..@fluentui/style-utilities_v8.7.11)
### Patches
@@ -434,7 +434,7 @@ Thu, 01 Sep 2022 07:48:10 GMT
## [8.7.10](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.10)
-Mon, 29 Aug 2022 07:44:38 GMT
+Mon, 29 Aug 2022 07:44:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.9..@fluentui/style-utilities_v8.7.10)
### Patches
@@ -444,7 +444,7 @@ Mon, 29 Aug 2022 07:44:38 GMT
## [8.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.9)
-Wed, 24 Aug 2022 16:36:04 GMT
+Wed, 24 Aug 2022 16:36:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.8..@fluentui/style-utilities_v8.7.9)
### Patches
@@ -454,7 +454,7 @@ Wed, 24 Aug 2022 16:36:04 GMT
## [8.7.8](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.8)
-Tue, 23 Aug 2022 07:22:49 GMT
+Tue, 23 Aug 2022 07:22:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.7..@fluentui/style-utilities_v8.7.8)
### Patches
@@ -464,7 +464,7 @@ Tue, 23 Aug 2022 07:22:49 GMT
## [8.7.7](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.7)
-Thu, 18 Aug 2022 23:39:31 GMT
+Thu, 18 Aug 2022 23:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.6..@fluentui/style-utilities_v8.7.7)
### Patches
@@ -474,7 +474,7 @@ Thu, 18 Aug 2022 23:39:31 GMT
## [8.7.6](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.6)
-Mon, 15 Aug 2022 07:39:41 GMT
+Mon, 15 Aug 2022 07:39:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.5..@fluentui/style-utilities_v8.7.6)
### Patches
@@ -484,7 +484,7 @@ Mon, 15 Aug 2022 07:39:41 GMT
## [8.7.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.5)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.4..@fluentui/style-utilities_v8.7.5)
### Patches
@@ -496,7 +496,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [8.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.4)
-Tue, 02 Aug 2022 07:44:44 GMT
+Tue, 02 Aug 2022 07:44:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.3..@fluentui/style-utilities_v8.7.4)
### Patches
@@ -506,7 +506,7 @@ Tue, 02 Aug 2022 07:44:44 GMT
## [8.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.3)
-Tue, 26 Jul 2022 07:39:35 GMT
+Tue, 26 Jul 2022 07:39:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.2..@fluentui/style-utilities_v8.7.3)
### Patches
@@ -516,7 +516,7 @@ Tue, 26 Jul 2022 07:39:35 GMT
## [8.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.2)
-Tue, 12 Jul 2022 07:41:00 GMT
+Tue, 12 Jul 2022 07:41:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.1..@fluentui/style-utilities_v8.7.2)
### Patches
@@ -526,7 +526,7 @@ Tue, 12 Jul 2022 07:41:00 GMT
## [8.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.1)
-Tue, 28 Jun 2022 07:39:03 GMT
+Tue, 28 Jun 2022 07:39:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.7.0..@fluentui/style-utilities_v8.7.1)
### Patches
@@ -535,7 +535,7 @@ Tue, 28 Jun 2022 07:39:03 GMT
## [8.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.7.0)
-Tue, 07 Jun 2022 07:48:03 GMT
+Tue, 07 Jun 2022 07:48:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.7..@fluentui/style-utilities_v8.7.0)
### Minor changes
@@ -544,7 +544,7 @@ Tue, 07 Jun 2022 07:48:03 GMT
## [8.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.7)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.6..@fluentui/style-utilities_v8.6.7)
### Patches
@@ -556,7 +556,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [8.6.6](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.6)
-Fri, 15 Apr 2022 07:42:48 GMT
+Fri, 15 Apr 2022 07:42:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.5..@fluentui/style-utilities_v8.6.6)
### Patches
@@ -567,7 +567,7 @@ Fri, 15 Apr 2022 07:42:48 GMT
## [8.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.5)
-Tue, 15 Mar 2022 07:45:54 GMT
+Tue, 15 Mar 2022 07:45:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.4..@fluentui/style-utilities_v8.6.5)
### Patches
@@ -577,7 +577,7 @@ Tue, 15 Mar 2022 07:45:54 GMT
## [8.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.4)
-Fri, 11 Mar 2022 07:34:41 GMT
+Fri, 11 Mar 2022 07:34:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.3..@fluentui/style-utilities_v8.6.4)
### Patches
@@ -588,7 +588,7 @@ Fri, 11 Mar 2022 07:34:41 GMT
## [8.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.3)
-Thu, 10 Mar 2022 07:34:50 GMT
+Thu, 10 Mar 2022 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.2..@fluentui/style-utilities_v8.6.3)
### Patches
@@ -597,7 +597,7 @@ Thu, 10 Mar 2022 07:34:50 GMT
## [8.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.2)
-Wed, 09 Mar 2022 07:37:30 GMT
+Wed, 09 Mar 2022 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.1..@fluentui/style-utilities_v8.6.2)
### Patches
@@ -607,7 +607,7 @@ Wed, 09 Mar 2022 07:37:30 GMT
## [8.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.1)
-Tue, 08 Mar 2022 23:29:58 GMT
+Tue, 08 Mar 2022 23:29:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.6.0..@fluentui/style-utilities_v8.6.1)
### Patches
@@ -616,7 +616,7 @@ Tue, 08 Mar 2022 23:29:58 GMT
## [8.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.6.0)
-Thu, 03 Mar 2022 07:24:24 GMT
+Thu, 03 Mar 2022 07:24:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.8..@fluentui/style-utilities_v8.6.0)
### Minor changes
@@ -629,7 +629,7 @@ Thu, 03 Mar 2022 07:24:24 GMT
## [8.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.8)
-Tue, 01 Mar 2022 07:23:43 GMT
+Tue, 01 Mar 2022 07:23:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.7..@fluentui/style-utilities_v8.5.8)
### Patches
@@ -639,7 +639,7 @@ Tue, 01 Mar 2022 07:23:43 GMT
## [8.5.7](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.7)
-Thu, 24 Feb 2022 07:29:50 GMT
+Thu, 24 Feb 2022 07:29:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.6..@fluentui/style-utilities_v8.5.7)
### Patches
@@ -649,7 +649,7 @@ Thu, 24 Feb 2022 07:29:50 GMT
## [8.5.6](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.6)
-Thu, 17 Feb 2022 07:28:31 GMT
+Thu, 17 Feb 2022 07:28:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.5..@fluentui/style-utilities_v8.5.6)
### Patches
@@ -659,7 +659,7 @@ Thu, 17 Feb 2022 07:28:31 GMT
## [8.5.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.5)
-Fri, 11 Feb 2022 07:27:49 GMT
+Fri, 11 Feb 2022 07:27:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.4..@fluentui/style-utilities_v8.5.5)
### Patches
@@ -669,7 +669,7 @@ Fri, 11 Feb 2022 07:27:49 GMT
## [8.5.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.4)
-Wed, 09 Feb 2022 07:30:50 GMT
+Wed, 09 Feb 2022 07:30:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.3..@fluentui/style-utilities_v8.5.4)
### Patches
@@ -679,7 +679,7 @@ Wed, 09 Feb 2022 07:30:50 GMT
## [8.5.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.3)
-Thu, 03 Feb 2022 07:29:41 GMT
+Thu, 03 Feb 2022 07:29:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.2..@fluentui/style-utilities_v8.5.3)
### Patches
@@ -690,7 +690,7 @@ Thu, 03 Feb 2022 07:29:41 GMT
## [8.5.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.2)
-Mon, 03 Jan 2022 23:32:11 GMT
+Mon, 03 Jan 2022 23:32:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.1..@fluentui/style-utilities_v8.5.2)
### Patches
@@ -701,7 +701,7 @@ Mon, 03 Jan 2022 23:32:11 GMT
## [8.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.1)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.5.0..@fluentui/style-utilities_v8.5.1)
### Patches
@@ -711,7 +711,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [8.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.5.0)
-Thu, 25 Nov 2021 14:54:15 GMT
+Thu, 25 Nov 2021 14:54:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.4.2..@fluentui/style-utilities_v8.5.0)
### Minor changes
@@ -724,7 +724,7 @@ Thu, 25 Nov 2021 14:54:15 GMT
## [8.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.4.2)
-Wed, 10 Nov 2021 07:31:59 GMT
+Wed, 10 Nov 2021 07:31:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.4.1..@fluentui/style-utilities_v8.4.2)
### Patches
@@ -735,7 +735,7 @@ Wed, 10 Nov 2021 07:31:59 GMT
## [8.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.4.1)
-Tue, 02 Nov 2021 07:37:02 GMT
+Tue, 02 Nov 2021 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.4.0..@fluentui/style-utilities_v8.4.1)
### Patches
@@ -745,7 +745,7 @@ Tue, 02 Nov 2021 07:37:02 GMT
## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.4.0)
-Mon, 01 Nov 2021 07:32:08 GMT
+Mon, 01 Nov 2021 07:32:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.3.4..@fluentui/style-utilities_v8.4.0)
### Minor changes
@@ -754,7 +754,7 @@ Mon, 01 Nov 2021 07:32:08 GMT
## [8.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.3.4)
-Tue, 05 Oct 2021 07:37:17 GMT
+Tue, 05 Oct 2021 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.3.3..@fluentui/style-utilities_v8.3.4)
### Patches
@@ -764,7 +764,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
## [8.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.3.3)
-Tue, 28 Sep 2021 22:17:07 GMT
+Tue, 28 Sep 2021 22:17:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.3.2..@fluentui/style-utilities_v8.3.3)
### Patches
@@ -775,7 +775,7 @@ Tue, 28 Sep 2021 22:17:07 GMT
## [8.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.3.2)
-Thu, 02 Sep 2021 07:36:46 GMT
+Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.3.1..@fluentui/style-utilities_v8.3.2)
### Patches
@@ -784,7 +784,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
## [8.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.3.1)
-Wed, 25 Aug 2021 07:35:19 GMT
+Wed, 25 Aug 2021 07:35:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.3.0..@fluentui/style-utilities_v8.3.1)
### Patches
@@ -793,7 +793,7 @@ Wed, 25 Aug 2021 07:35:19 GMT
## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.3.0)
-Thu, 19 Aug 2021 07:41:35 GMT
+Thu, 19 Aug 2021 07:41:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.2.2..@fluentui/style-utilities_v8.3.0)
### Minor changes
@@ -807,7 +807,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.2.2)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.2.1..@fluentui/style-utilities_v8.2.2)
### Patches
@@ -816,7 +816,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.2.1)
-Thu, 29 Jul 2021 07:35:37 GMT
+Thu, 29 Jul 2021 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.2.0..@fluentui/style-utilities_v8.2.1)
### Patches
@@ -825,7 +825,7 @@ Thu, 29 Jul 2021 07:35:37 GMT
## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.2.0)
-Tue, 13 Jul 2021 07:35:36 GMT
+Tue, 13 Jul 2021 07:35:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.1.5..@fluentui/style-utilities_v8.2.0)
### Minor changes
@@ -834,7 +834,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
## [8.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.1.5)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.1.4..@fluentui/style-utilities_v8.1.5)
### Patches
@@ -843,7 +843,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [8.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.1.4)
-Mon, 28 Jun 2021 07:35:16 GMT
+Mon, 28 Jun 2021 07:35:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.1.3..@fluentui/style-utilities_v8.1.4)
### Patches
@@ -852,7 +852,7 @@ Mon, 28 Jun 2021 07:35:16 GMT
## [8.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.1.3)
-Tue, 15 Jun 2021 07:40:20 GMT
+Tue, 15 Jun 2021 07:40:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.1.2..@fluentui/style-utilities_v8.1.3)
### Patches
@@ -861,7 +861,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.1.2)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.1.1..@fluentui/style-utilities_v8.1.2)
### Patches
@@ -870,7 +870,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.1.1)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.1.0..@fluentui/style-utilities_v8.1.1)
### Patches
@@ -879,7 +879,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.5..@fluentui/style-utilities_v8.1.0)
### Minor changes
@@ -897,7 +897,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.5)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.4..@fluentui/style-utilities_v8.0.5)
### Patches
@@ -906,7 +906,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.4)
-Tue, 13 Apr 2021 14:55:56 GMT
+Tue, 13 Apr 2021 14:55:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.3..@fluentui/style-utilities_v8.0.4)
### Patches
@@ -915,7 +915,7 @@ Tue, 13 Apr 2021 14:55:56 GMT
## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.3)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.2..@fluentui/style-utilities_v8.0.3)
### Patches
@@ -924,7 +924,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.2)
-Wed, 03 Mar 2021 00:10:09 GMT
+Wed, 03 Mar 2021 00:10:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.1..@fluentui/style-utilities_v8.0.2)
### Patches
@@ -933,7 +933,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.19..@fluentui/style-utilities_v8.0.1)
### Patches
@@ -942,7 +942,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [8.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.19)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.18..@fluentui/style-utilities_v8.0.0-beta.19)
### Changes
@@ -951,7 +951,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [8.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.18)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.17..@fluentui/style-utilities_v8.0.0-beta.18)
### Changes
@@ -960,7 +960,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [8.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.17)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.16..@fluentui/style-utilities_v8.0.0-beta.17)
### Changes
@@ -969,7 +969,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [8.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.16)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.15..@fluentui/style-utilities_v8.0.0-beta.16)
### Changes
@@ -978,7 +978,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [8.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.15)
-Fri, 12 Feb 2021 12:26:20 GMT
+Fri, 12 Feb 2021 12:26:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.14..@fluentui/style-utilities_v8.0.0-beta.15)
### Changes
@@ -987,7 +987,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
## [8.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.14)
-Thu, 11 Feb 2021 00:58:10 GMT
+Thu, 11 Feb 2021 00:58:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.13..@fluentui/style-utilities_v8.0.0-beta.14)
### Changes
@@ -996,7 +996,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
## [8.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.13)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/style-utilities_v8.0.0-beta.0..@fluentui/style-utilities_v8.0.0-beta.13)
### Changes
@@ -1007,7 +1007,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/style-utilities_v8.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.16.8..@fluentui/style-utilities_v8.0.0-beta.0)
### Changes
@@ -1020,7 +1020,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
## [7.16.8](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.16.8)
-Fri, 25 Sep 2020 12:25:17 GMT
+Fri, 25 Sep 2020 12:25:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.16.7..@uifabric/styling_v7.16.8)
### Patches
@@ -1031,7 +1031,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
## [7.16.7](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.16.7)
-Wed, 23 Sep 2020 12:27:48 GMT
+Wed, 23 Sep 2020 12:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.16.6..@uifabric/styling_v7.16.7)
### Patches
@@ -1040,7 +1040,7 @@ Wed, 23 Sep 2020 12:27:48 GMT
## [7.16.6](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.16.6)
-Tue, 22 Sep 2020 12:25:45 GMT
+Tue, 22 Sep 2020 12:25:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.16.2..@uifabric/styling_v7.16.6)
### Patches
@@ -1049,7 +1049,7 @@ Tue, 22 Sep 2020 12:25:45 GMT
## [7.15.2](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.15.2)
-Tue, 25 Aug 2020 12:36:19 GMT
+Tue, 25 Aug 2020 12:36:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.14.1..@uifabric/styling_v7.15.2)
### Patches
@@ -1058,7 +1058,7 @@ Tue, 25 Aug 2020 12:36:19 GMT
## [7.14.0](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.14.0)
-Thu, 09 Jul 2020 21:59:04 GMT
+Thu, 09 Jul 2020 21:59:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.13.6..@uifabric/styling_v7.14.0)
### Minor changes
@@ -1067,7 +1067,7 @@ Thu, 09 Jul 2020 21:59:04 GMT
## [7.13.6](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.13.6)
-Wed, 01 Jul 2020 12:35:23 GMT
+Wed, 01 Jul 2020 12:35:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.13.3..@uifabric/styling_v7.13.6)
### Patches
@@ -1076,7 +1076,7 @@ Wed, 01 Jul 2020 12:35:23 GMT
## [7.13.0](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.13.0)
-Wed, 17 Jun 2020 16:07:40 GMT
+Wed, 17 Jun 2020 16:07:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.18..@uifabric/styling_v7.13.0)
### Minor changes
@@ -1085,7 +1085,7 @@ Wed, 17 Jun 2020 16:07:40 GMT
## [7.12.17](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.17)
-Wed, 10 Jun 2020 12:37:27 GMT
+Wed, 10 Jun 2020 12:37:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.16..@uifabric/styling_v7.12.17)
### Patches
@@ -1094,7 +1094,7 @@ Wed, 10 Jun 2020 12:37:27 GMT
## [7.12.16](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.16)
-Tue, 09 Jun 2020 12:35:17 GMT
+Tue, 09 Jun 2020 12:35:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.15..@uifabric/styling_v7.12.16)
### Patches
@@ -1103,7 +1103,7 @@ Tue, 09 Jun 2020 12:35:17 GMT
## [7.12.15](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.15)
-Tue, 02 Jun 2020 12:36:30 GMT
+Tue, 02 Jun 2020 12:36:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.10..@uifabric/styling_v7.12.15)
### Patches
@@ -1112,7 +1112,7 @@ Tue, 02 Jun 2020 12:36:30 GMT
## [7.12.4](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.4)
-Fri, 08 May 2020 12:35:40 GMT
+Fri, 08 May 2020 12:35:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.3..@uifabric/styling_v7.12.4)
### Patches
@@ -1121,7 +1121,7 @@ Fri, 08 May 2020 12:35:40 GMT
## [7.12.3](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.3)
-Thu, 07 May 2020 01:06:55 GMT
+Thu, 07 May 2020 01:06:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.2..@uifabric/styling_v7.12.3)
### Patches
@@ -1130,7 +1130,7 @@ Thu, 07 May 2020 01:06:55 GMT
## [7.12.2](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.2)
-Wed, 06 May 2020 12:32:22 GMT
+Wed, 06 May 2020 12:32:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.12.0..@uifabric/styling_v7.12.2)
### Patches
@@ -1139,7 +1139,7 @@ Wed, 06 May 2020 12:32:22 GMT
## [7.12.0](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.12.0)
-Wed, 29 Apr 2020 12:34:58 GMT
+Wed, 29 Apr 2020 12:34:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.11.8..@uifabric/styling_v7.12.0)
### Minor changes
@@ -1148,7 +1148,7 @@ Wed, 29 Apr 2020 12:34:58 GMT
## [7.11.8](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.11.8)
-Wed, 22 Apr 2020 12:33:04 GMT
+Wed, 22 Apr 2020 12:33:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.11.3..@uifabric/styling_v7.11.8)
### Patches
@@ -1157,7 +1157,7 @@ Wed, 22 Apr 2020 12:33:04 GMT
## [7.11.3](https://github.com/microsoft/fluentui/tree/@uifabric/styling_v7.11.3)
-Thu, 16 Apr 2020 04:01:45 GMT
+Thu, 16 Apr 2020 04:01:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/styling_v7.11.2..@uifabric/styling_v7.11.3)
### Patches
diff --git a/packages/theme-samples/CHANGELOG.md b/packages/theme-samples/CHANGELOG.md
index 30d26ebeb3918a..abc03fc410f347 100644
--- a/packages/theme-samples/CHANGELOG.md
+++ b/packages/theme-samples/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m
## [8.7.147](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.147)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.146..@fluentui/theme-samples_v8.7.147)
### Patches
@@ -17,7 +17,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [8.7.146](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.146)
-Mon, 22 Apr 2024 07:28:27 GMT
+Mon, 22 Apr 2024 07:28:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.145..@fluentui/theme-samples_v8.7.146)
### Patches
@@ -27,7 +27,7 @@ Mon, 22 Apr 2024 07:28:27 GMT
## [8.7.145](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.145)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.144..@fluentui/theme-samples_v8.7.145)
### Patches
@@ -38,7 +38,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [8.7.144](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.144)
-Wed, 10 Apr 2024 07:28:55 GMT
+Wed, 10 Apr 2024 07:28:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.143..@fluentui/theme-samples_v8.7.144)
### Patches
@@ -47,7 +47,7 @@ Wed, 10 Apr 2024 07:28:55 GMT
## [8.7.143](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.143)
-Tue, 09 Apr 2024 07:26:50 GMT
+Tue, 09 Apr 2024 07:26:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.142..@fluentui/theme-samples_v8.7.143)
### Patches
@@ -56,7 +56,7 @@ Tue, 09 Apr 2024 07:26:50 GMT
## [8.7.142](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.142)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.141..@fluentui/theme-samples_v8.7.142)
### Patches
@@ -67,7 +67,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [8.7.141](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.141)
-Fri, 29 Mar 2024 07:28:45 GMT
+Fri, 29 Mar 2024 07:28:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.140..@fluentui/theme-samples_v8.7.141)
### Patches
@@ -76,7 +76,7 @@ Fri, 29 Mar 2024 07:28:45 GMT
## [8.7.140](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.140)
-Fri, 22 Mar 2024 07:28:53 GMT
+Fri, 22 Mar 2024 07:28:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.139..@fluentui/theme-samples_v8.7.140)
### Patches
@@ -86,7 +86,7 @@ Fri, 22 Mar 2024 07:28:53 GMT
## [8.7.139](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.139)
-Wed, 20 Mar 2024 07:27:31 GMT
+Wed, 20 Mar 2024 07:27:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.138..@fluentui/theme-samples_v8.7.139)
### Patches
@@ -95,7 +95,7 @@ Wed, 20 Mar 2024 07:27:31 GMT
## [8.7.138](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.138)
-Wed, 13 Mar 2024 07:30:28 GMT
+Wed, 13 Mar 2024 07:30:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.137..@fluentui/theme-samples_v8.7.138)
### Patches
@@ -105,7 +105,7 @@ Wed, 13 Mar 2024 07:30:28 GMT
## [8.7.137](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.137)
-Mon, 12 Feb 2024 07:25:24 GMT
+Mon, 12 Feb 2024 07:25:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.136..@fluentui/theme-samples_v8.7.137)
### Patches
@@ -114,7 +114,7 @@ Mon, 12 Feb 2024 07:25:24 GMT
## [8.7.136](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.136)
-Wed, 07 Feb 2024 07:26:19 GMT
+Wed, 07 Feb 2024 07:26:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.135..@fluentui/theme-samples_v8.7.136)
### Patches
@@ -123,7 +123,7 @@ Wed, 07 Feb 2024 07:26:19 GMT
## [8.7.135](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.135)
-Mon, 05 Feb 2024 07:27:40 GMT
+Mon, 05 Feb 2024 07:27:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.134..@fluentui/theme-samples_v8.7.135)
### Patches
@@ -132,7 +132,7 @@ Mon, 05 Feb 2024 07:27:40 GMT
## [8.7.134](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.134)
-Wed, 31 Jan 2024 07:27:57 GMT
+Wed, 31 Jan 2024 07:27:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.133..@fluentui/theme-samples_v8.7.134)
### Patches
@@ -141,7 +141,7 @@ Wed, 31 Jan 2024 07:27:57 GMT
## [8.7.133](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.133)
-Mon, 29 Jan 2024 07:27:14 GMT
+Mon, 29 Jan 2024 07:27:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.132..@fluentui/theme-samples_v8.7.133)
### Patches
@@ -150,7 +150,7 @@ Mon, 29 Jan 2024 07:27:14 GMT
## [8.7.132](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.132)
-Wed, 24 Jan 2024 07:26:58 GMT
+Wed, 24 Jan 2024 07:26:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.131..@fluentui/theme-samples_v8.7.132)
### Patches
@@ -159,7 +159,7 @@ Wed, 24 Jan 2024 07:26:58 GMT
## [8.7.131](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.131)
-Tue, 23 Jan 2024 07:26:42 GMT
+Tue, 23 Jan 2024 07:26:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.130..@fluentui/theme-samples_v8.7.131)
### Patches
@@ -168,7 +168,7 @@ Tue, 23 Jan 2024 07:26:42 GMT
## [8.7.130](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.130)
-Fri, 19 Jan 2024 07:29:32 GMT
+Fri, 19 Jan 2024 07:29:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.129..@fluentui/theme-samples_v8.7.130)
### Patches
@@ -178,7 +178,7 @@ Fri, 19 Jan 2024 07:29:32 GMT
## [8.7.129](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.129)
-Mon, 15 Jan 2024 07:28:14 GMT
+Mon, 15 Jan 2024 07:28:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.128..@fluentui/theme-samples_v8.7.129)
### Patches
@@ -187,7 +187,7 @@ Mon, 15 Jan 2024 07:28:14 GMT
## [8.7.128](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.128)
-Wed, 10 Jan 2024 07:28:50 GMT
+Wed, 10 Jan 2024 07:28:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.127..@fluentui/theme-samples_v8.7.128)
### Patches
@@ -198,7 +198,7 @@ Wed, 10 Jan 2024 07:28:50 GMT
## [8.7.127](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.127)
-Tue, 09 Jan 2024 07:33:09 GMT
+Tue, 09 Jan 2024 07:33:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.126..@fluentui/theme-samples_v8.7.127)
### Patches
@@ -207,7 +207,7 @@ Tue, 09 Jan 2024 07:33:09 GMT
## [8.7.126](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.126)
-Mon, 25 Dec 2023 07:28:36 GMT
+Mon, 25 Dec 2023 07:28:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.125..@fluentui/theme-samples_v8.7.126)
### Patches
@@ -216,7 +216,7 @@ Mon, 25 Dec 2023 07:28:36 GMT
## [8.7.125](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.125)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.124..@fluentui/theme-samples_v8.7.125)
### Patches
@@ -227,7 +227,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [8.7.124](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.124)
-Tue, 12 Dec 2023 07:27:25 GMT
+Tue, 12 Dec 2023 07:27:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.123..@fluentui/theme-samples_v8.7.124)
### Patches
@@ -236,7 +236,7 @@ Tue, 12 Dec 2023 07:27:25 GMT
## [8.7.123](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.123)
-Thu, 16 Nov 2023 07:26:51 GMT
+Thu, 16 Nov 2023 07:26:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.122..@fluentui/theme-samples_v8.7.123)
### Patches
@@ -245,7 +245,7 @@ Thu, 16 Nov 2023 07:26:51 GMT
## [8.7.122](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.122)
-Thu, 09 Nov 2023 07:29:20 GMT
+Thu, 09 Nov 2023 07:29:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.121..@fluentui/theme-samples_v8.7.122)
### Patches
@@ -255,7 +255,7 @@ Thu, 09 Nov 2023 07:29:20 GMT
## [8.7.121](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.121)
-Wed, 08 Nov 2023 07:27:23 GMT
+Wed, 08 Nov 2023 07:27:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.120..@fluentui/theme-samples_v8.7.121)
### Patches
@@ -264,7 +264,7 @@ Wed, 08 Nov 2023 07:27:23 GMT
## [8.7.120](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.120)
-Mon, 06 Nov 2023 07:27:33 GMT
+Mon, 06 Nov 2023 07:27:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.119..@fluentui/theme-samples_v8.7.120)
### Patches
@@ -273,7 +273,7 @@ Mon, 06 Nov 2023 07:27:33 GMT
## [8.7.119](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.119)
-Wed, 01 Nov 2023 07:29:14 GMT
+Wed, 01 Nov 2023 07:29:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.118..@fluentui/theme-samples_v8.7.119)
### Patches
@@ -282,7 +282,7 @@ Wed, 01 Nov 2023 07:29:14 GMT
## [8.7.118](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.118)
-Sat, 28 Oct 2023 00:29:16 GMT
+Sat, 28 Oct 2023 00:29:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.117..@fluentui/theme-samples_v8.7.118)
### Patches
@@ -293,7 +293,7 @@ Sat, 28 Oct 2023 00:29:16 GMT
## [8.7.117](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.117)
-Mon, 16 Oct 2023 07:37:21 GMT
+Mon, 16 Oct 2023 07:37:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.116..@fluentui/theme-samples_v8.7.117)
### Patches
@@ -302,7 +302,7 @@ Mon, 16 Oct 2023 07:37:21 GMT
## [8.7.116](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.116)
-Mon, 09 Oct 2023 07:37:25 GMT
+Mon, 09 Oct 2023 07:37:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.115..@fluentui/theme-samples_v8.7.116)
### Patches
@@ -311,7 +311,7 @@ Mon, 09 Oct 2023 07:37:25 GMT
## [8.7.115](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.115)
-Wed, 04 Oct 2023 07:38:36 GMT
+Wed, 04 Oct 2023 07:38:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.114..@fluentui/theme-samples_v8.7.115)
### Patches
@@ -320,7 +320,7 @@ Wed, 04 Oct 2023 07:38:36 GMT
## [8.7.114](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.114)
-Mon, 02 Oct 2023 07:36:47 GMT
+Mon, 02 Oct 2023 07:36:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.113..@fluentui/theme-samples_v8.7.114)
### Patches
@@ -329,7 +329,7 @@ Mon, 02 Oct 2023 07:36:47 GMT
## [8.7.113](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.113)
-Fri, 29 Sep 2023 07:45:30 GMT
+Fri, 29 Sep 2023 07:45:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.112..@fluentui/theme-samples_v8.7.113)
### Patches
@@ -339,7 +339,7 @@ Fri, 29 Sep 2023 07:45:30 GMT
## [8.7.112](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.112)
-Thu, 28 Sep 2023 07:37:17 GMT
+Thu, 28 Sep 2023 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.111..@fluentui/theme-samples_v8.7.112)
### Patches
@@ -348,7 +348,7 @@ Thu, 28 Sep 2023 07:37:17 GMT
## [8.7.111](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.111)
-Thu, 31 Aug 2023 07:36:22 GMT
+Thu, 31 Aug 2023 07:36:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.110..@fluentui/theme-samples_v8.7.111)
### Patches
@@ -357,7 +357,7 @@ Thu, 31 Aug 2023 07:36:22 GMT
## [8.7.110](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.110)
-Mon, 28 Aug 2023 07:36:25 GMT
+Mon, 28 Aug 2023 07:36:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.109..@fluentui/theme-samples_v8.7.110)
### Patches
@@ -366,7 +366,7 @@ Mon, 28 Aug 2023 07:36:25 GMT
## [8.7.109](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.109)
-Fri, 25 Aug 2023 07:35:37 GMT
+Fri, 25 Aug 2023 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.108..@fluentui/theme-samples_v8.7.109)
### Patches
@@ -375,7 +375,7 @@ Fri, 25 Aug 2023 07:35:37 GMT
## [8.7.108](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.108)
-Wed, 23 Aug 2023 07:36:23 GMT
+Wed, 23 Aug 2023 07:36:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.107..@fluentui/theme-samples_v8.7.108)
### Patches
@@ -384,7 +384,7 @@ Wed, 23 Aug 2023 07:36:23 GMT
## [8.7.107](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.107)
-Fri, 18 Aug 2023 07:35:26 GMT
+Fri, 18 Aug 2023 07:35:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.106..@fluentui/theme-samples_v8.7.107)
### Patches
@@ -394,7 +394,7 @@ Fri, 18 Aug 2023 07:35:26 GMT
## [8.7.106](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.106)
-Fri, 11 Aug 2023 07:34:50 GMT
+Fri, 11 Aug 2023 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.105..@fluentui/theme-samples_v8.7.106)
### Patches
@@ -403,7 +403,7 @@ Fri, 11 Aug 2023 07:34:50 GMT
## [8.7.105](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.105)
-Fri, 04 Aug 2023 07:35:28 GMT
+Fri, 04 Aug 2023 07:35:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.104..@fluentui/theme-samples_v8.7.105)
### Patches
@@ -412,7 +412,7 @@ Fri, 04 Aug 2023 07:35:28 GMT
## [8.7.104](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.104)
-Tue, 25 Jul 2023 07:44:54 GMT
+Tue, 25 Jul 2023 07:44:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.103..@fluentui/theme-samples_v8.7.104)
### Patches
@@ -421,7 +421,7 @@ Tue, 25 Jul 2023 07:44:54 GMT
## [8.7.103](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.103)
-Tue, 18 Jul 2023 07:35:18 GMT
+Tue, 18 Jul 2023 07:35:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.102..@fluentui/theme-samples_v8.7.103)
### Patches
@@ -430,7 +430,7 @@ Tue, 18 Jul 2023 07:35:18 GMT
## [8.7.102](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.102)
-Mon, 17 Jul 2023 07:39:32 GMT
+Mon, 17 Jul 2023 07:39:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.101..@fluentui/theme-samples_v8.7.102)
### Patches
@@ -439,7 +439,7 @@ Mon, 17 Jul 2023 07:39:32 GMT
## [8.7.101](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.101)
-Mon, 10 Jul 2023 07:35:07 GMT
+Mon, 10 Jul 2023 07:35:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.100..@fluentui/theme-samples_v8.7.101)
### Patches
@@ -448,7 +448,7 @@ Mon, 10 Jul 2023 07:35:07 GMT
## [8.7.100](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.100)
-Thu, 29 Jun 2023 07:35:33 GMT
+Thu, 29 Jun 2023 07:35:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.99..@fluentui/theme-samples_v8.7.100)
### Patches
@@ -457,7 +457,7 @@ Thu, 29 Jun 2023 07:35:33 GMT
## [8.7.99](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.99)
-Wed, 28 Jun 2023 07:37:30 GMT
+Wed, 28 Jun 2023 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.98..@fluentui/theme-samples_v8.7.99)
### Patches
@@ -467,7 +467,7 @@ Wed, 28 Jun 2023 07:37:30 GMT
## [8.7.98](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.98)
-Tue, 27 Jun 2023 07:35:50 GMT
+Tue, 27 Jun 2023 07:35:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.97..@fluentui/theme-samples_v8.7.98)
### Patches
@@ -476,7 +476,7 @@ Tue, 27 Jun 2023 07:35:50 GMT
## [8.7.97](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.97)
-Mon, 19 Jun 2023 07:36:39 GMT
+Mon, 19 Jun 2023 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.96..@fluentui/theme-samples_v8.7.97)
### Patches
@@ -486,7 +486,7 @@ Mon, 19 Jun 2023 07:36:39 GMT
## [8.7.96](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.96)
-Wed, 14 Jun 2023 07:38:33 GMT
+Wed, 14 Jun 2023 07:38:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.95..@fluentui/theme-samples_v8.7.96)
### Patches
@@ -495,7 +495,7 @@ Wed, 14 Jun 2023 07:38:33 GMT
## [8.7.95](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.95)
-Thu, 08 Jun 2023 07:35:14 GMT
+Thu, 08 Jun 2023 07:35:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.94..@fluentui/theme-samples_v8.7.95)
### Patches
@@ -504,7 +504,7 @@ Thu, 08 Jun 2023 07:35:14 GMT
## [8.7.94](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.94)
-Wed, 07 Jun 2023 07:33:58 GMT
+Wed, 07 Jun 2023 07:33:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.93..@fluentui/theme-samples_v8.7.94)
### Patches
@@ -513,7 +513,7 @@ Wed, 07 Jun 2023 07:33:58 GMT
## [8.7.93](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.93)
-Tue, 06 Jun 2023 07:35:20 GMT
+Tue, 06 Jun 2023 07:35:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.92..@fluentui/theme-samples_v8.7.93)
### Patches
@@ -522,7 +522,7 @@ Tue, 06 Jun 2023 07:35:20 GMT
## [8.7.92](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.92)
-Mon, 05 Jun 2023 07:37:25 GMT
+Mon, 05 Jun 2023 07:37:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.91..@fluentui/theme-samples_v8.7.92)
### Patches
@@ -531,7 +531,7 @@ Mon, 05 Jun 2023 07:37:25 GMT
## [8.7.91](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.91)
-Thu, 01 Jun 2023 07:38:37 GMT
+Thu, 01 Jun 2023 07:38:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.90..@fluentui/theme-samples_v8.7.91)
### Patches
@@ -541,7 +541,7 @@ Thu, 01 Jun 2023 07:38:37 GMT
## [8.7.90](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.90)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.89..@fluentui/theme-samples_v8.7.90)
### Patches
@@ -552,7 +552,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [8.7.89](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.89)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.88..@fluentui/theme-samples_v8.7.89)
### Patches
@@ -563,7 +563,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [8.7.88](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.88)
-Fri, 26 May 2023 07:37:02 GMT
+Fri, 26 May 2023 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.87..@fluentui/theme-samples_v8.7.88)
### Patches
@@ -572,7 +572,7 @@ Fri, 26 May 2023 07:37:02 GMT
## [8.7.87](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.87)
-Thu, 25 May 2023 07:37:49 GMT
+Thu, 25 May 2023 07:37:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.86..@fluentui/theme-samples_v8.7.87)
### Patches
@@ -581,7 +581,7 @@ Thu, 25 May 2023 07:37:49 GMT
## [8.7.86](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.86)
-Mon, 22 May 2023 07:38:21 GMT
+Mon, 22 May 2023 07:38:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.85..@fluentui/theme-samples_v8.7.86)
### Patches
@@ -590,7 +590,7 @@ Mon, 22 May 2023 07:38:21 GMT
## [8.7.85](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.85)
-Wed, 17 May 2023 07:37:28 GMT
+Wed, 17 May 2023 07:37:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.84..@fluentui/theme-samples_v8.7.85)
### Patches
@@ -599,7 +599,7 @@ Wed, 17 May 2023 07:37:28 GMT
## [8.7.84](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.84)
-Tue, 09 May 2023 07:38:08 GMT
+Tue, 09 May 2023 07:38:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.83..@fluentui/theme-samples_v8.7.84)
### Patches
@@ -608,7 +608,7 @@ Tue, 09 May 2023 07:38:08 GMT
## [8.7.83](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.83)
-Fri, 05 May 2023 18:14:01 GMT
+Fri, 05 May 2023 18:14:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.82..@fluentui/theme-samples_v8.7.83)
### Patches
@@ -620,7 +620,7 @@ Fri, 05 May 2023 18:14:01 GMT
## [8.7.82](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.82)
-Tue, 02 May 2023 22:20:22 GMT
+Tue, 02 May 2023 22:20:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.81..@fluentui/theme-samples_v8.7.82)
### Patches
@@ -631,7 +631,7 @@ Tue, 02 May 2023 22:20:22 GMT
## [8.7.81](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.81)
-Tue, 02 May 2023 00:58:19 GMT
+Tue, 02 May 2023 00:58:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.80..@fluentui/theme-samples_v8.7.81)
### Patches
@@ -642,7 +642,7 @@ Tue, 02 May 2023 00:58:19 GMT
## [8.7.80](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.80)
-Mon, 01 May 2023 07:39:54 GMT
+Mon, 01 May 2023 07:39:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.79..@fluentui/theme-samples_v8.7.80)
### Patches
@@ -653,7 +653,7 @@ Mon, 01 May 2023 07:39:54 GMT
## [8.7.79](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.79)
-Tue, 25 Apr 2023 07:38:32 GMT
+Tue, 25 Apr 2023 07:38:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.78..@fluentui/theme-samples_v8.7.79)
### Patches
@@ -662,7 +662,7 @@ Tue, 25 Apr 2023 07:38:32 GMT
## [8.7.78](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.78)
-Fri, 21 Apr 2023 07:49:09 GMT
+Fri, 21 Apr 2023 07:49:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.77..@fluentui/theme-samples_v8.7.78)
### Patches
@@ -671,7 +671,7 @@ Fri, 21 Apr 2023 07:49:09 GMT
## [8.7.77](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.77)
-Thu, 20 Apr 2023 07:47:57 GMT
+Thu, 20 Apr 2023 07:47:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.76..@fluentui/theme-samples_v8.7.77)
### Patches
@@ -680,7 +680,7 @@ Thu, 20 Apr 2023 07:47:57 GMT
## [8.7.76](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.76)
-Mon, 17 Apr 2023 07:40:26 GMT
+Mon, 17 Apr 2023 07:40:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.75..@fluentui/theme-samples_v8.7.76)
### Patches
@@ -689,7 +689,7 @@ Mon, 17 Apr 2023 07:40:26 GMT
## [8.7.75](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.75)
-Thu, 13 Apr 2023 07:41:10 GMT
+Thu, 13 Apr 2023 07:41:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.74..@fluentui/theme-samples_v8.7.75)
### Patches
@@ -698,7 +698,7 @@ Thu, 13 Apr 2023 07:41:10 GMT
## [8.7.74](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.74)
-Mon, 10 Apr 2023 07:36:30 GMT
+Mon, 10 Apr 2023 07:36:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.73..@fluentui/theme-samples_v8.7.74)
### Patches
@@ -707,7 +707,7 @@ Mon, 10 Apr 2023 07:36:30 GMT
## [8.7.73](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.73)
-Fri, 07 Apr 2023 07:39:19 GMT
+Fri, 07 Apr 2023 07:39:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.72..@fluentui/theme-samples_v8.7.73)
### Patches
@@ -716,7 +716,7 @@ Fri, 07 Apr 2023 07:39:19 GMT
## [8.7.72](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.72)
-Thu, 06 Apr 2023 07:39:05 GMT
+Thu, 06 Apr 2023 07:39:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.71..@fluentui/theme-samples_v8.7.72)
### Patches
@@ -725,7 +725,7 @@ Thu, 06 Apr 2023 07:39:05 GMT
## [8.7.71](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.71)
-Mon, 03 Apr 2023 07:37:18 GMT
+Mon, 03 Apr 2023 07:37:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.70..@fluentui/theme-samples_v8.7.71)
### Patches
@@ -734,7 +734,7 @@ Mon, 03 Apr 2023 07:37:18 GMT
## [8.7.70](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.70)
-Thu, 30 Mar 2023 07:43:52 GMT
+Thu, 30 Mar 2023 07:43:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.69..@fluentui/theme-samples_v8.7.70)
### Patches
@@ -743,7 +743,7 @@ Thu, 30 Mar 2023 07:43:52 GMT
## [8.7.69](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.69)
-Tue, 28 Mar 2023 07:38:27 GMT
+Tue, 28 Mar 2023 07:38:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.68..@fluentui/theme-samples_v8.7.69)
### Patches
@@ -752,7 +752,7 @@ Tue, 28 Mar 2023 07:38:27 GMT
## [8.7.68](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.68)
-Fri, 24 Mar 2023 22:25:03 GMT
+Fri, 24 Mar 2023 22:25:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.67..@fluentui/theme-samples_v8.7.68)
### Patches
@@ -761,7 +761,7 @@ Fri, 24 Mar 2023 22:25:03 GMT
## [8.7.67](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.67)
-Wed, 22 Mar 2023 08:03:46 GMT
+Wed, 22 Mar 2023 08:03:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.66..@fluentui/theme-samples_v8.7.67)
### Patches
@@ -770,7 +770,7 @@ Wed, 22 Mar 2023 08:03:46 GMT
## [8.7.66](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.66)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.65..@fluentui/theme-samples_v8.7.66)
### Patches
@@ -781,7 +781,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [8.7.65](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.65)
-Tue, 14 Mar 2023 07:38:49 GMT
+Tue, 14 Mar 2023 07:38:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.64..@fluentui/theme-samples_v8.7.65)
### Patches
@@ -790,7 +790,7 @@ Tue, 14 Mar 2023 07:38:49 GMT
## [8.7.64](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.64)
-Fri, 10 Mar 2023 07:38:25 GMT
+Fri, 10 Mar 2023 07:38:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.63..@fluentui/theme-samples_v8.7.64)
### Patches
@@ -799,7 +799,7 @@ Fri, 10 Mar 2023 07:38:25 GMT
## [8.7.63](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.63)
-Thu, 09 Mar 2023 07:39:12 GMT
+Thu, 09 Mar 2023 07:39:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.62..@fluentui/theme-samples_v8.7.63)
### Patches
@@ -808,7 +808,7 @@ Thu, 09 Mar 2023 07:39:12 GMT
## [8.7.62](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.62)
-Mon, 06 Mar 2023 07:43:04 GMT
+Mon, 06 Mar 2023 07:43:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.61..@fluentui/theme-samples_v8.7.62)
### Patches
@@ -817,7 +817,7 @@ Mon, 06 Mar 2023 07:43:04 GMT
## [8.7.61](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.61)
-Wed, 01 Mar 2023 07:45:41 GMT
+Wed, 01 Mar 2023 07:45:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.60..@fluentui/theme-samples_v8.7.61)
### Patches
@@ -827,7 +827,7 @@ Wed, 01 Mar 2023 07:45:41 GMT
## [8.7.60](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.60)
-Wed, 22 Feb 2023 07:44:35 GMT
+Wed, 22 Feb 2023 07:44:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.59..@fluentui/theme-samples_v8.7.60)
### Patches
@@ -836,7 +836,7 @@ Wed, 22 Feb 2023 07:44:35 GMT
## [8.7.59](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.59)
-Wed, 22 Feb 2023 00:32:23 GMT
+Wed, 22 Feb 2023 00:32:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.58..@fluentui/theme-samples_v8.7.59)
### Patches
@@ -845,7 +845,7 @@ Wed, 22 Feb 2023 00:32:23 GMT
## [8.7.58](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.58)
-Sat, 18 Feb 2023 01:37:02 GMT
+Sat, 18 Feb 2023 01:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.57..@fluentui/theme-samples_v8.7.58)
### Patches
@@ -855,7 +855,7 @@ Sat, 18 Feb 2023 01:37:02 GMT
## [8.7.57](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.57)
-Fri, 17 Feb 2023 22:05:37 GMT
+Fri, 17 Feb 2023 22:05:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.56..@fluentui/theme-samples_v8.7.57)
### Patches
@@ -864,7 +864,7 @@ Fri, 17 Feb 2023 22:05:37 GMT
## [8.7.56](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.56)
-Fri, 17 Feb 2023 07:46:38 GMT
+Fri, 17 Feb 2023 07:46:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.55..@fluentui/theme-samples_v8.7.56)
### Patches
@@ -873,7 +873,7 @@ Fri, 17 Feb 2023 07:46:38 GMT
## [8.7.55](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.55)
-Wed, 15 Feb 2023 07:42:17 GMT
+Wed, 15 Feb 2023 07:42:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.54..@fluentui/theme-samples_v8.7.55)
### Patches
@@ -882,7 +882,7 @@ Wed, 15 Feb 2023 07:42:17 GMT
## [8.7.54](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.54)
-Mon, 13 Feb 2023 07:37:39 GMT
+Mon, 13 Feb 2023 07:37:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.53..@fluentui/theme-samples_v8.7.54)
### Patches
@@ -891,7 +891,7 @@ Mon, 13 Feb 2023 07:37:39 GMT
## [8.7.53](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.53)
-Fri, 10 Feb 2023 07:47:24 GMT
+Fri, 10 Feb 2023 07:47:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.52..@fluentui/theme-samples_v8.7.53)
### Patches
@@ -900,7 +900,7 @@ Fri, 10 Feb 2023 07:47:24 GMT
## [8.7.52](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.52)
-Tue, 07 Feb 2023 07:36:28 GMT
+Tue, 07 Feb 2023 07:36:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.51..@fluentui/theme-samples_v8.7.52)
### Patches
@@ -909,7 +909,7 @@ Tue, 07 Feb 2023 07:36:28 GMT
## [8.7.51](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.51)
-Mon, 06 Feb 2023 07:41:31 GMT
+Mon, 06 Feb 2023 07:41:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.50..@fluentui/theme-samples_v8.7.51)
### Patches
@@ -918,7 +918,7 @@ Mon, 06 Feb 2023 07:41:31 GMT
## [8.7.50](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.50)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.49..@fluentui/theme-samples_v8.7.50)
### Patches
@@ -929,7 +929,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [8.7.49](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.49)
-Thu, 02 Feb 2023 07:35:42 GMT
+Thu, 02 Feb 2023 07:35:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.48..@fluentui/theme-samples_v8.7.49)
### Patches
@@ -938,7 +938,7 @@ Thu, 02 Feb 2023 07:35:42 GMT
## [8.7.48](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.48)
-Wed, 01 Feb 2023 07:39:53 GMT
+Wed, 01 Feb 2023 07:39:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.47..@fluentui/theme-samples_v8.7.48)
### Patches
@@ -947,7 +947,7 @@ Wed, 01 Feb 2023 07:39:53 GMT
## [8.7.47](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.47)
-Mon, 30 Jan 2023 07:36:22 GMT
+Mon, 30 Jan 2023 07:36:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.46..@fluentui/theme-samples_v8.7.47)
### Patches
@@ -956,7 +956,7 @@ Mon, 30 Jan 2023 07:36:22 GMT
## [8.7.46](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.46)
-Fri, 27 Jan 2023 07:37:51 GMT
+Fri, 27 Jan 2023 07:37:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.45..@fluentui/theme-samples_v8.7.46)
### Patches
@@ -965,7 +965,7 @@ Fri, 27 Jan 2023 07:37:51 GMT
## [8.7.45](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.45)
-Thu, 26 Jan 2023 07:35:32 GMT
+Thu, 26 Jan 2023 07:35:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.44..@fluentui/theme-samples_v8.7.45)
### Patches
@@ -974,7 +974,7 @@ Thu, 26 Jan 2023 07:35:32 GMT
## [8.7.44](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.44)
-Wed, 18 Jan 2023 07:42:14 GMT
+Wed, 18 Jan 2023 07:42:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.43..@fluentui/theme-samples_v8.7.44)
### Patches
@@ -983,7 +983,7 @@ Wed, 18 Jan 2023 07:42:14 GMT
## [8.7.43](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.43)
-Wed, 11 Jan 2023 07:50:48 GMT
+Wed, 11 Jan 2023 07:50:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.42..@fluentui/theme-samples_v8.7.43)
### Patches
@@ -992,7 +992,7 @@ Wed, 11 Jan 2023 07:50:48 GMT
## [8.7.42](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.42)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.41..@fluentui/theme-samples_v8.7.42)
### Patches
@@ -1003,7 +1003,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [8.7.41](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.41)
-Mon, 09 Jan 2023 07:49:46 GMT
+Mon, 09 Jan 2023 07:49:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.40..@fluentui/theme-samples_v8.7.41)
### Patches
@@ -1012,7 +1012,7 @@ Mon, 09 Jan 2023 07:49:46 GMT
## [8.7.40](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.40)
-Thu, 05 Jan 2023 07:59:57 GMT
+Thu, 05 Jan 2023 07:59:57 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.39..@fluentui/theme-samples_v8.7.40)
### Patches
@@ -1021,7 +1021,7 @@ Thu, 05 Jan 2023 07:59:57 GMT
## [8.7.39](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.39)
-Fri, 23 Dec 2022 07:55:40 GMT
+Fri, 23 Dec 2022 07:55:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.38..@fluentui/theme-samples_v8.7.39)
### Patches
@@ -1030,7 +1030,7 @@ Fri, 23 Dec 2022 07:55:40 GMT
## [8.7.38](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.38)
-Wed, 21 Dec 2022 07:47:36 GMT
+Wed, 21 Dec 2022 07:47:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.37..@fluentui/theme-samples_v8.7.38)
### Patches
@@ -1039,7 +1039,7 @@ Wed, 21 Dec 2022 07:47:36 GMT
## [8.7.37](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.37)
-Tue, 20 Dec 2022 07:53:34 GMT
+Tue, 20 Dec 2022 07:53:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.36..@fluentui/theme-samples_v8.7.37)
### Patches
@@ -1049,7 +1049,7 @@ Tue, 20 Dec 2022 07:53:34 GMT
## [8.7.36](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.36)
-Fri, 16 Dec 2022 07:50:07 GMT
+Fri, 16 Dec 2022 07:50:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.35..@fluentui/theme-samples_v8.7.36)
### Patches
@@ -1058,7 +1058,7 @@ Fri, 16 Dec 2022 07:50:07 GMT
## [8.7.35](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.35)
-Tue, 13 Dec 2022 07:46:31 GMT
+Tue, 13 Dec 2022 07:46:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.34..@fluentui/theme-samples_v8.7.35)
### Patches
@@ -1067,7 +1067,7 @@ Tue, 13 Dec 2022 07:46:31 GMT
## [8.7.34](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.34)
-Fri, 09 Dec 2022 07:54:31 GMT
+Fri, 09 Dec 2022 07:54:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.33..@fluentui/theme-samples_v8.7.34)
### Patches
@@ -1076,7 +1076,7 @@ Fri, 09 Dec 2022 07:54:31 GMT
## [8.7.33](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.33)
-Thu, 08 Dec 2022 07:46:37 GMT
+Thu, 08 Dec 2022 07:46:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.32..@fluentui/theme-samples_v8.7.33)
### Patches
@@ -1085,7 +1085,7 @@ Thu, 08 Dec 2022 07:46:37 GMT
## [8.7.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.32)
-Mon, 05 Dec 2022 07:54:46 GMT
+Mon, 05 Dec 2022 07:54:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.31..@fluentui/theme-samples_v8.7.32)
### Patches
@@ -1094,7 +1094,7 @@ Mon, 05 Dec 2022 07:54:46 GMT
## [8.7.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.31)
-Fri, 02 Dec 2022 07:54:15 GMT
+Fri, 02 Dec 2022 07:54:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.30..@fluentui/theme-samples_v8.7.31)
### Patches
@@ -1103,7 +1103,7 @@ Fri, 02 Dec 2022 07:54:15 GMT
## [8.7.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.30)
-Wed, 30 Nov 2022 07:46:31 GMT
+Wed, 30 Nov 2022 07:46:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.29..@fluentui/theme-samples_v8.7.30)
### Patches
@@ -1112,7 +1112,7 @@ Wed, 30 Nov 2022 07:46:31 GMT
## [8.7.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.29)
-Thu, 24 Nov 2022 07:53:48 GMT
+Thu, 24 Nov 2022 07:53:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.28..@fluentui/theme-samples_v8.7.29)
### Patches
@@ -1121,7 +1121,7 @@ Thu, 24 Nov 2022 07:53:48 GMT
## [8.7.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.28)
-Wed, 23 Nov 2022 07:54:37 GMT
+Wed, 23 Nov 2022 07:54:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.27..@fluentui/theme-samples_v8.7.28)
### Patches
@@ -1130,7 +1130,7 @@ Wed, 23 Nov 2022 07:54:37 GMT
## [8.7.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.27)
-Tue, 22 Nov 2022 07:47:00 GMT
+Tue, 22 Nov 2022 07:47:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.26..@fluentui/theme-samples_v8.7.27)
### Patches
@@ -1139,7 +1139,7 @@ Tue, 22 Nov 2022 07:47:00 GMT
## [8.7.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.26)
-Thu, 17 Nov 2022 07:51:44 GMT
+Thu, 17 Nov 2022 07:51:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.25..@fluentui/theme-samples_v8.7.26)
### Patches
@@ -1148,7 +1148,7 @@ Thu, 17 Nov 2022 07:51:44 GMT
## [8.7.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.25)
-Wed, 16 Nov 2022 07:47:29 GMT
+Wed, 16 Nov 2022 07:47:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.24..@fluentui/theme-samples_v8.7.25)
### Patches
@@ -1157,7 +1157,7 @@ Wed, 16 Nov 2022 07:47:29 GMT
## [8.7.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.24)
-Tue, 15 Nov 2022 07:44:59 GMT
+Tue, 15 Nov 2022 07:44:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.23..@fluentui/theme-samples_v8.7.24)
### Patches
@@ -1167,7 +1167,7 @@ Tue, 15 Nov 2022 07:44:59 GMT
## [8.7.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.23)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.22..@fluentui/theme-samples_v8.7.23)
### Patches
@@ -1178,7 +1178,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [8.7.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.22)
-Fri, 04 Nov 2022 07:48:07 GMT
+Fri, 04 Nov 2022 07:48:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.21..@fluentui/theme-samples_v8.7.22)
### Patches
@@ -1187,7 +1187,7 @@ Fri, 04 Nov 2022 07:48:07 GMT
## [8.7.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.21)
-Thu, 03 Nov 2022 07:52:12 GMT
+Thu, 03 Nov 2022 07:52:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.20..@fluentui/theme-samples_v8.7.21)
### Patches
@@ -1196,7 +1196,7 @@ Thu, 03 Nov 2022 07:52:12 GMT
## [8.7.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.20)
-Tue, 01 Nov 2022 07:49:22 GMT
+Tue, 01 Nov 2022 07:49:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.19..@fluentui/theme-samples_v8.7.20)
### Patches
@@ -1205,7 +1205,7 @@ Tue, 01 Nov 2022 07:49:22 GMT
## [8.7.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.19)
-Mon, 31 Oct 2022 07:45:40 GMT
+Mon, 31 Oct 2022 07:45:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.18..@fluentui/theme-samples_v8.7.19)
### Patches
@@ -1214,7 +1214,7 @@ Mon, 31 Oct 2022 07:45:40 GMT
## [8.7.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.18)
-Fri, 28 Oct 2022 07:45:08 GMT
+Fri, 28 Oct 2022 07:45:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.17..@fluentui/theme-samples_v8.7.18)
### Patches
@@ -1223,7 +1223,7 @@ Fri, 28 Oct 2022 07:45:08 GMT
## [8.7.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.17)
-Wed, 26 Oct 2022 07:52:54 GMT
+Wed, 26 Oct 2022 07:52:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.16..@fluentui/theme-samples_v8.7.17)
### Patches
@@ -1232,7 +1232,7 @@ Wed, 26 Oct 2022 07:52:54 GMT
## [8.7.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.16)
-Tue, 25 Oct 2022 07:43:18 GMT
+Tue, 25 Oct 2022 07:43:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.15..@fluentui/theme-samples_v8.7.16)
### Patches
@@ -1241,7 +1241,7 @@ Tue, 25 Oct 2022 07:43:18 GMT
## [8.7.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.15)
-Mon, 24 Oct 2022 07:45:24 GMT
+Mon, 24 Oct 2022 07:45:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.14..@fluentui/theme-samples_v8.7.15)
### Patches
@@ -1250,7 +1250,7 @@ Mon, 24 Oct 2022 07:45:24 GMT
## [8.7.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.14)
-Fri, 21 Oct 2022 07:44:53 GMT
+Fri, 21 Oct 2022 07:44:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.13..@fluentui/theme-samples_v8.7.14)
### Patches
@@ -1259,7 +1259,7 @@ Fri, 21 Oct 2022 07:44:53 GMT
## [8.7.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.13)
-Thu, 20 Oct 2022 07:43:14 GMT
+Thu, 20 Oct 2022 07:43:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.12..@fluentui/theme-samples_v8.7.13)
### Patches
@@ -1269,7 +1269,7 @@ Thu, 20 Oct 2022 07:43:14 GMT
## [8.7.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.12)
-Mon, 17 Oct 2022 07:49:17 GMT
+Mon, 17 Oct 2022 07:49:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.11..@fluentui/theme-samples_v8.7.12)
### Patches
@@ -1278,7 +1278,7 @@ Mon, 17 Oct 2022 07:49:17 GMT
## [8.7.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.11)
-Fri, 14 Oct 2022 07:44:02 GMT
+Fri, 14 Oct 2022 07:44:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.10..@fluentui/theme-samples_v8.7.11)
### Patches
@@ -1287,7 +1287,7 @@ Fri, 14 Oct 2022 07:44:02 GMT
## [8.7.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.10)
-Thu, 13 Oct 2022 07:45:27 GMT
+Thu, 13 Oct 2022 07:45:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.9..@fluentui/theme-samples_v8.7.10)
### Patches
@@ -1296,7 +1296,7 @@ Thu, 13 Oct 2022 07:45:27 GMT
## [8.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.9)
-Mon, 10 Oct 2022 07:38:24 GMT
+Mon, 10 Oct 2022 07:38:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.8..@fluentui/theme-samples_v8.7.9)
### Patches
@@ -1305,7 +1305,7 @@ Mon, 10 Oct 2022 07:38:24 GMT
## [8.7.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.8)
-Tue, 04 Oct 2022 07:45:03 GMT
+Tue, 04 Oct 2022 07:45:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.7..@fluentui/theme-samples_v8.7.8)
### Patches
@@ -1314,7 +1314,7 @@ Tue, 04 Oct 2022 07:45:03 GMT
## [8.7.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.7)
-Mon, 03 Oct 2022 07:37:49 GMT
+Mon, 03 Oct 2022 07:37:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.6..@fluentui/theme-samples_v8.7.7)
### Patches
@@ -1323,7 +1323,7 @@ Mon, 03 Oct 2022 07:37:49 GMT
## [8.7.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.6)
-Fri, 30 Sep 2022 07:38:09 GMT
+Fri, 30 Sep 2022 07:38:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.5..@fluentui/theme-samples_v8.7.6)
### Patches
@@ -1332,7 +1332,7 @@ Fri, 30 Sep 2022 07:38:09 GMT
## [8.7.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.5)
-Thu, 29 Sep 2022 07:40:10 GMT
+Thu, 29 Sep 2022 07:40:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.4..@fluentui/theme-samples_v8.7.5)
### Patches
@@ -1341,7 +1341,7 @@ Thu, 29 Sep 2022 07:40:10 GMT
## [8.7.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.4)
-Wed, 28 Sep 2022 07:37:49 GMT
+Wed, 28 Sep 2022 07:37:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.3..@fluentui/theme-samples_v8.7.4)
### Patches
@@ -1350,7 +1350,7 @@ Wed, 28 Sep 2022 07:37:49 GMT
## [8.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.3)
-Thu, 22 Sep 2022 07:43:45 GMT
+Thu, 22 Sep 2022 07:43:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.2..@fluentui/theme-samples_v8.7.3)
### Patches
@@ -1359,7 +1359,7 @@ Thu, 22 Sep 2022 07:43:45 GMT
## [8.7.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.2)
-Mon, 19 Sep 2022 07:47:30 GMT
+Mon, 19 Sep 2022 07:47:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.1..@fluentui/theme-samples_v8.7.2)
### Patches
@@ -1368,7 +1368,7 @@ Mon, 19 Sep 2022 07:47:30 GMT
## [8.7.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.1)
-Fri, 16 Sep 2022 07:37:32 GMT
+Fri, 16 Sep 2022 07:37:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.7.0..@fluentui/theme-samples_v8.7.1)
### Patches
@@ -1377,7 +1377,7 @@ Fri, 16 Sep 2022 07:37:32 GMT
## [8.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.7.0)
-Thu, 15 Sep 2022 19:15:27 GMT
+Thu, 15 Sep 2022 19:15:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.35..@fluentui/theme-samples_v8.7.0)
### Minor changes
@@ -1386,7 +1386,7 @@ Thu, 15 Sep 2022 19:15:27 GMT
## [8.6.35](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.35)
-Tue, 13 Sep 2022 07:41:03 GMT
+Tue, 13 Sep 2022 07:41:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.34..@fluentui/theme-samples_v8.6.35)
### Patches
@@ -1395,7 +1395,7 @@ Tue, 13 Sep 2022 07:41:03 GMT
## [8.6.34](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.34)
-Thu, 08 Sep 2022 20:52:16 GMT
+Thu, 08 Sep 2022 20:52:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.33..@fluentui/theme-samples_v8.6.34)
### Patches
@@ -1404,7 +1404,7 @@ Thu, 08 Sep 2022 20:52:16 GMT
## [8.6.33](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.33)
-Wed, 07 Sep 2022 07:54:43 GMT
+Wed, 07 Sep 2022 07:54:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.32..@fluentui/theme-samples_v8.6.33)
### Patches
@@ -1413,7 +1413,7 @@ Wed, 07 Sep 2022 07:54:43 GMT
## [8.6.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.32)
-Mon, 05 Sep 2022 07:38:30 GMT
+Mon, 05 Sep 2022 07:38:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.31..@fluentui/theme-samples_v8.6.32)
### Patches
@@ -1422,7 +1422,7 @@ Mon, 05 Sep 2022 07:38:30 GMT
## [8.6.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.31)
-Fri, 02 Sep 2022 07:48:53 GMT
+Fri, 02 Sep 2022 07:48:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.30..@fluentui/theme-samples_v8.6.31)
### Patches
@@ -1432,7 +1432,7 @@ Fri, 02 Sep 2022 07:48:53 GMT
## [8.6.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.30)
-Thu, 01 Sep 2022 07:48:11 GMT
+Thu, 01 Sep 2022 07:48:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.29..@fluentui/theme-samples_v8.6.30)
### Patches
@@ -1441,7 +1441,7 @@ Thu, 01 Sep 2022 07:48:11 GMT
## [8.6.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.29)
-Mon, 29 Aug 2022 07:44:38 GMT
+Mon, 29 Aug 2022 07:44:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.28..@fluentui/theme-samples_v8.6.29)
### Patches
@@ -1451,7 +1451,7 @@ Mon, 29 Aug 2022 07:44:38 GMT
## [8.6.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.28)
-Fri, 26 Aug 2022 07:39:58 GMT
+Fri, 26 Aug 2022 07:39:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.27..@fluentui/theme-samples_v8.6.28)
### Patches
@@ -1460,7 +1460,7 @@ Fri, 26 Aug 2022 07:39:58 GMT
## [8.6.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.27)
-Thu, 25 Aug 2022 07:41:03 GMT
+Thu, 25 Aug 2022 07:41:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.26..@fluentui/theme-samples_v8.6.27)
### Patches
@@ -1469,7 +1469,7 @@ Thu, 25 Aug 2022 07:41:03 GMT
## [8.6.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.26)
-Wed, 24 Aug 2022 16:36:06 GMT
+Wed, 24 Aug 2022 16:36:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.25..@fluentui/theme-samples_v8.6.26)
### Patches
@@ -1479,7 +1479,7 @@ Wed, 24 Aug 2022 16:36:06 GMT
## [8.6.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.25)
-Wed, 24 Aug 2022 07:44:42 GMT
+Wed, 24 Aug 2022 07:44:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.24..@fluentui/theme-samples_v8.6.25)
### Patches
@@ -1488,7 +1488,7 @@ Wed, 24 Aug 2022 07:44:42 GMT
## [8.6.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.24)
-Tue, 23 Aug 2022 07:22:50 GMT
+Tue, 23 Aug 2022 07:22:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.23..@fluentui/theme-samples_v8.6.24)
### Patches
@@ -1498,7 +1498,7 @@ Tue, 23 Aug 2022 07:22:50 GMT
## [8.6.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.23)
-Mon, 22 Aug 2022 07:44:26 GMT
+Mon, 22 Aug 2022 07:44:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.22..@fluentui/theme-samples_v8.6.23)
### Patches
@@ -1507,7 +1507,7 @@ Mon, 22 Aug 2022 07:44:26 GMT
## [8.6.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.22)
-Thu, 18 Aug 2022 23:39:31 GMT
+Thu, 18 Aug 2022 23:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.21..@fluentui/theme-samples_v8.6.22)
### Patches
@@ -1517,7 +1517,7 @@ Thu, 18 Aug 2022 23:39:31 GMT
## [8.6.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.21)
-Thu, 18 Aug 2022 07:48:48 GMT
+Thu, 18 Aug 2022 07:48:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.20..@fluentui/theme-samples_v8.6.21)
### Patches
@@ -1526,7 +1526,7 @@ Thu, 18 Aug 2022 07:48:48 GMT
## [8.6.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.20)
-Mon, 15 Aug 2022 07:39:41 GMT
+Mon, 15 Aug 2022 07:39:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.19..@fluentui/theme-samples_v8.6.20)
### Patches
@@ -1536,7 +1536,7 @@ Mon, 15 Aug 2022 07:39:41 GMT
## [8.6.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.19)
-Fri, 12 Aug 2022 07:48:19 GMT
+Fri, 12 Aug 2022 07:48:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.18..@fluentui/theme-samples_v8.6.19)
### Patches
@@ -1545,7 +1545,7 @@ Fri, 12 Aug 2022 07:48:19 GMT
## [8.6.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.18)
-Mon, 08 Aug 2022 20:28:21 GMT
+Mon, 08 Aug 2022 20:28:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.17..@fluentui/theme-samples_v8.6.18)
### Patches
@@ -1554,7 +1554,7 @@ Mon, 08 Aug 2022 20:28:21 GMT
## [8.6.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.17)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.16..@fluentui/theme-samples_v8.6.17)
### Patches
@@ -1565,7 +1565,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [8.6.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.16)
-Thu, 04 Aug 2022 07:42:13 GMT
+Thu, 04 Aug 2022 07:42:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.15..@fluentui/theme-samples_v8.6.16)
### Patches
@@ -1574,7 +1574,7 @@ Thu, 04 Aug 2022 07:42:13 GMT
## [8.6.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.15)
-Tue, 02 Aug 2022 18:04:49 GMT
+Tue, 02 Aug 2022 18:04:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.14..@fluentui/theme-samples_v8.6.15)
### Patches
@@ -1583,7 +1583,7 @@ Tue, 02 Aug 2022 18:04:49 GMT
## [8.6.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.14)
-Tue, 02 Aug 2022 07:44:44 GMT
+Tue, 02 Aug 2022 07:44:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.13..@fluentui/theme-samples_v8.6.14)
### Patches
@@ -1593,7 +1593,7 @@ Tue, 02 Aug 2022 07:44:44 GMT
## [8.6.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.13)
-Mon, 01 Aug 2022 07:39:03 GMT
+Mon, 01 Aug 2022 07:39:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.12..@fluentui/theme-samples_v8.6.13)
### Patches
@@ -1602,7 +1602,7 @@ Mon, 01 Aug 2022 07:39:03 GMT
## [8.6.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.12)
-Fri, 29 Jul 2022 07:41:56 GMT
+Fri, 29 Jul 2022 07:41:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.11..@fluentui/theme-samples_v8.6.12)
### Patches
@@ -1611,7 +1611,7 @@ Fri, 29 Jul 2022 07:41:56 GMT
## [8.6.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.11)
-Thu, 28 Jul 2022 07:41:18 GMT
+Thu, 28 Jul 2022 07:41:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.10..@fluentui/theme-samples_v8.6.11)
### Patches
@@ -1620,7 +1620,7 @@ Thu, 28 Jul 2022 07:41:18 GMT
## [8.6.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.10)
-Wed, 27 Jul 2022 07:37:43 GMT
+Wed, 27 Jul 2022 07:37:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.9..@fluentui/theme-samples_v8.6.10)
### Patches
@@ -1629,7 +1629,7 @@ Wed, 27 Jul 2022 07:37:43 GMT
## [8.6.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.9)
-Tue, 26 Jul 2022 07:39:35 GMT
+Tue, 26 Jul 2022 07:39:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.8..@fluentui/theme-samples_v8.6.9)
### Patches
@@ -1639,7 +1639,7 @@ Tue, 26 Jul 2022 07:39:35 GMT
## [8.6.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.8)
-Mon, 25 Jul 2022 07:36:56 GMT
+Mon, 25 Jul 2022 07:36:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.7..@fluentui/theme-samples_v8.6.8)
### Patches
@@ -1648,7 +1648,7 @@ Mon, 25 Jul 2022 07:36:56 GMT
## [8.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.7)
-Fri, 22 Jul 2022 07:54:16 GMT
+Fri, 22 Jul 2022 07:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.6..@fluentui/theme-samples_v8.6.7)
### Patches
@@ -1657,7 +1657,7 @@ Fri, 22 Jul 2022 07:54:16 GMT
## [8.6.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.6)
-Thu, 21 Jul 2022 07:49:17 GMT
+Thu, 21 Jul 2022 07:49:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.5..@fluentui/theme-samples_v8.6.6)
### Patches
@@ -1666,7 +1666,7 @@ Thu, 21 Jul 2022 07:49:17 GMT
## [8.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.5)
-Wed, 20 Jul 2022 07:42:27 GMT
+Wed, 20 Jul 2022 07:42:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.4..@fluentui/theme-samples_v8.6.5)
### Patches
@@ -1675,7 +1675,7 @@ Wed, 20 Jul 2022 07:42:27 GMT
## [8.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.4)
-Tue, 19 Jul 2022 07:41:07 GMT
+Tue, 19 Jul 2022 07:41:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.3..@fluentui/theme-samples_v8.6.4)
### Patches
@@ -1684,7 +1684,7 @@ Tue, 19 Jul 2022 07:41:07 GMT
## [8.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.3)
-Fri, 15 Jul 2022 20:03:48 GMT
+Fri, 15 Jul 2022 20:03:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.2..@fluentui/theme-samples_v8.6.3)
### Patches
@@ -1693,7 +1693,7 @@ Fri, 15 Jul 2022 20:03:48 GMT
## [8.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.2)
-Thu, 14 Jul 2022 07:45:35 GMT
+Thu, 14 Jul 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.1..@fluentui/theme-samples_v8.6.2)
### Patches
@@ -1702,7 +1702,7 @@ Thu, 14 Jul 2022 07:45:35 GMT
## [8.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.1)
-Tue, 12 Jul 2022 07:41:00 GMT
+Tue, 12 Jul 2022 07:41:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.6.0..@fluentui/theme-samples_v8.6.1)
### Patches
@@ -1712,7 +1712,7 @@ Tue, 12 Jul 2022 07:41:00 GMT
## [8.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.6.0)
-Fri, 08 Jul 2022 07:36:29 GMT
+Fri, 08 Jul 2022 07:36:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.5.1..@fluentui/theme-samples_v8.6.0)
### Minor changes
@@ -1721,7 +1721,7 @@ Fri, 08 Jul 2022 07:36:29 GMT
## [8.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.5.1)
-Thu, 07 Jul 2022 07:37:21 GMT
+Thu, 07 Jul 2022 07:37:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.5.0..@fluentui/theme-samples_v8.5.1)
### Patches
@@ -1730,7 +1730,7 @@ Thu, 07 Jul 2022 07:37:21 GMT
## [8.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.5.0)
-Wed, 06 Jul 2022 07:38:24 GMT
+Wed, 06 Jul 2022 07:38:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.53..@fluentui/theme-samples_v8.5.0)
### Minor changes
@@ -1739,7 +1739,7 @@ Wed, 06 Jul 2022 07:38:24 GMT
## [8.4.53](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.53)
-Thu, 30 Jun 2022 07:40:48 GMT
+Thu, 30 Jun 2022 07:40:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.52..@fluentui/theme-samples_v8.4.53)
### Patches
@@ -1748,7 +1748,7 @@ Thu, 30 Jun 2022 07:40:48 GMT
## [8.4.52](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.52)
-Tue, 28 Jun 2022 07:39:04 GMT
+Tue, 28 Jun 2022 07:39:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.51..@fluentui/theme-samples_v8.4.52)
### Patches
@@ -1757,7 +1757,7 @@ Tue, 28 Jun 2022 07:39:04 GMT
## [8.4.51](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.51)
-Fri, 24 Jun 2022 07:43:32 GMT
+Fri, 24 Jun 2022 07:43:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.50..@fluentui/theme-samples_v8.4.51)
### Patches
@@ -1766,7 +1766,7 @@ Fri, 24 Jun 2022 07:43:32 GMT
## [8.4.50](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.50)
-Mon, 20 Jun 2022 07:45:13 GMT
+Mon, 20 Jun 2022 07:45:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.49..@fluentui/theme-samples_v8.4.50)
### Patches
@@ -1775,7 +1775,7 @@ Mon, 20 Jun 2022 07:45:13 GMT
## [8.4.49](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.49)
-Fri, 17 Jun 2022 07:41:59 GMT
+Fri, 17 Jun 2022 07:41:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.48..@fluentui/theme-samples_v8.4.49)
### Patches
@@ -1784,7 +1784,7 @@ Fri, 17 Jun 2022 07:41:59 GMT
## [8.4.48](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.48)
-Wed, 15 Jun 2022 21:38:03 GMT
+Wed, 15 Jun 2022 21:38:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.47..@fluentui/theme-samples_v8.4.48)
### Patches
@@ -1793,7 +1793,7 @@ Wed, 15 Jun 2022 21:38:03 GMT
## [8.4.47](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.47)
-Wed, 15 Jun 2022 07:40:22 GMT
+Wed, 15 Jun 2022 07:40:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.46..@fluentui/theme-samples_v8.4.47)
### Patches
@@ -1802,7 +1802,7 @@ Wed, 15 Jun 2022 07:40:22 GMT
## [8.4.46](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.46)
-Tue, 14 Jun 2022 07:52:11 GMT
+Tue, 14 Jun 2022 07:52:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.45..@fluentui/theme-samples_v8.4.46)
### Patches
@@ -1811,7 +1811,7 @@ Tue, 14 Jun 2022 07:52:11 GMT
## [8.4.45](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.45)
-Mon, 13 Jun 2022 07:39:08 GMT
+Mon, 13 Jun 2022 07:39:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.44..@fluentui/theme-samples_v8.4.45)
### Patches
@@ -1820,7 +1820,7 @@ Mon, 13 Jun 2022 07:39:08 GMT
## [8.4.44](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.44)
-Fri, 10 Jun 2022 07:46:14 GMT
+Fri, 10 Jun 2022 07:46:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.43..@fluentui/theme-samples_v8.4.44)
### Patches
@@ -1829,7 +1829,7 @@ Fri, 10 Jun 2022 07:46:14 GMT
## [8.4.43](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.43)
-Thu, 09 Jun 2022 07:45:28 GMT
+Thu, 09 Jun 2022 07:45:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.42..@fluentui/theme-samples_v8.4.43)
### Patches
@@ -1838,7 +1838,7 @@ Thu, 09 Jun 2022 07:45:28 GMT
## [8.4.42](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.42)
-Tue, 07 Jun 2022 07:48:04 GMT
+Tue, 07 Jun 2022 07:48:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.41..@fluentui/theme-samples_v8.4.42)
### Patches
@@ -1847,7 +1847,7 @@ Tue, 07 Jun 2022 07:48:04 GMT
## [8.4.41](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.41)
-Thu, 02 Jun 2022 07:38:04 GMT
+Thu, 02 Jun 2022 07:38:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.40..@fluentui/theme-samples_v8.4.41)
### Patches
@@ -1856,7 +1856,7 @@ Thu, 02 Jun 2022 07:38:04 GMT
## [8.4.40](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.40)
-Wed, 01 Jun 2022 07:38:24 GMT
+Wed, 01 Jun 2022 07:38:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.39..@fluentui/theme-samples_v8.4.40)
### Patches
@@ -1865,7 +1865,7 @@ Wed, 01 Jun 2022 07:38:24 GMT
## [8.4.39](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.39)
-Mon, 30 May 2022 07:44:13 GMT
+Mon, 30 May 2022 07:44:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.38..@fluentui/theme-samples_v8.4.39)
### Patches
@@ -1874,7 +1874,7 @@ Mon, 30 May 2022 07:44:13 GMT
## [8.4.38](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.38)
-Fri, 27 May 2022 07:39:11 GMT
+Fri, 27 May 2022 07:39:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.37..@fluentui/theme-samples_v8.4.38)
### Patches
@@ -1883,7 +1883,7 @@ Fri, 27 May 2022 07:39:11 GMT
## [8.4.37](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.37)
-Wed, 25 May 2022 07:44:28 GMT
+Wed, 25 May 2022 07:44:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.36..@fluentui/theme-samples_v8.4.37)
### Patches
@@ -1892,7 +1892,7 @@ Wed, 25 May 2022 07:44:28 GMT
## [8.4.36](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.36)
-Tue, 24 May 2022 07:47:26 GMT
+Tue, 24 May 2022 07:47:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.35..@fluentui/theme-samples_v8.4.36)
### Patches
@@ -1901,7 +1901,7 @@ Tue, 24 May 2022 07:47:26 GMT
## [8.4.35](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.35)
-Mon, 23 May 2022 07:42:17 GMT
+Mon, 23 May 2022 07:42:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.34..@fluentui/theme-samples_v8.4.35)
### Patches
@@ -1910,7 +1910,7 @@ Mon, 23 May 2022 07:42:17 GMT
## [8.4.34](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.34)
-Thu, 19 May 2022 07:41:27 GMT
+Thu, 19 May 2022 07:41:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.33..@fluentui/theme-samples_v8.4.34)
### Patches
@@ -1919,7 +1919,7 @@ Thu, 19 May 2022 07:41:27 GMT
## [8.4.33](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.33)
-Tue, 17 May 2022 07:45:01 GMT
+Tue, 17 May 2022 07:45:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.32..@fluentui/theme-samples_v8.4.33)
### Patches
@@ -1928,7 +1928,7 @@ Tue, 17 May 2022 07:45:01 GMT
## [8.4.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.32)
-Mon, 16 May 2022 07:36:55 GMT
+Mon, 16 May 2022 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.31..@fluentui/theme-samples_v8.4.32)
### Patches
@@ -1937,7 +1937,7 @@ Mon, 16 May 2022 07:36:55 GMT
## [8.4.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.31)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.30..@fluentui/theme-samples_v8.4.31)
### Patches
@@ -1948,7 +1948,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [8.4.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.30)
-Wed, 11 May 2022 07:42:47 GMT
+Wed, 11 May 2022 07:42:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.29..@fluentui/theme-samples_v8.4.30)
### Patches
@@ -1957,7 +1957,7 @@ Wed, 11 May 2022 07:42:47 GMT
## [8.4.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.29)
-Mon, 09 May 2022 07:37:42 GMT
+Mon, 09 May 2022 07:37:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.28..@fluentui/theme-samples_v8.4.29)
### Patches
@@ -1966,7 +1966,7 @@ Mon, 09 May 2022 07:37:42 GMT
## [8.4.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.28)
-Thu, 28 Apr 2022 07:39:56 GMT
+Thu, 28 Apr 2022 07:39:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.27..@fluentui/theme-samples_v8.4.28)
### Patches
@@ -1975,7 +1975,7 @@ Thu, 28 Apr 2022 07:39:56 GMT
## [8.4.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.27)
-Wed, 27 Apr 2022 07:43:07 GMT
+Wed, 27 Apr 2022 07:43:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.26..@fluentui/theme-samples_v8.4.27)
### Patches
@@ -1984,7 +1984,7 @@ Wed, 27 Apr 2022 07:43:07 GMT
## [8.4.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.26)
-Mon, 25 Apr 2022 07:37:25 GMT
+Mon, 25 Apr 2022 07:37:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.25..@fluentui/theme-samples_v8.4.26)
### Patches
@@ -1993,7 +1993,7 @@ Mon, 25 Apr 2022 07:37:25 GMT
## [8.4.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.25)
-Thu, 21 Apr 2022 07:36:48 GMT
+Thu, 21 Apr 2022 07:36:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.24..@fluentui/theme-samples_v8.4.25)
### Patches
@@ -2002,7 +2002,7 @@ Thu, 21 Apr 2022 07:36:48 GMT
## [8.4.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.24)
-Wed, 20 Apr 2022 07:39:23 GMT
+Wed, 20 Apr 2022 07:39:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.23..@fluentui/theme-samples_v8.4.24)
### Patches
@@ -2011,7 +2011,7 @@ Wed, 20 Apr 2022 07:39:23 GMT
## [8.4.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.23)
-Tue, 19 Apr 2022 21:39:15 GMT
+Tue, 19 Apr 2022 21:39:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.22..@fluentui/theme-samples_v8.4.23)
### Patches
@@ -2020,7 +2020,7 @@ Tue, 19 Apr 2022 21:39:15 GMT
## [8.4.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.22)
-Mon, 18 Apr 2022 07:38:04 GMT
+Mon, 18 Apr 2022 07:38:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.21..@fluentui/theme-samples_v8.4.22)
### Patches
@@ -2029,7 +2029,7 @@ Mon, 18 Apr 2022 07:38:04 GMT
## [8.4.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.21)
-Fri, 15 Apr 2022 07:42:48 GMT
+Fri, 15 Apr 2022 07:42:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.20..@fluentui/theme-samples_v8.4.21)
### Patches
@@ -2039,7 +2039,7 @@ Fri, 15 Apr 2022 07:42:48 GMT
## [8.4.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.20)
-Thu, 14 Apr 2022 07:38:11 GMT
+Thu, 14 Apr 2022 07:38:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.19..@fluentui/theme-samples_v8.4.20)
### Patches
@@ -2048,7 +2048,7 @@ Thu, 14 Apr 2022 07:38:11 GMT
## [8.4.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.19)
-Tue, 12 Apr 2022 07:39:33 GMT
+Tue, 12 Apr 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.18..@fluentui/theme-samples_v8.4.19)
### Patches
@@ -2057,7 +2057,7 @@ Tue, 12 Apr 2022 07:39:33 GMT
## [8.4.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.18)
-Mon, 11 Apr 2022 07:40:58 GMT
+Mon, 11 Apr 2022 07:40:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.17..@fluentui/theme-samples_v8.4.18)
### Patches
@@ -2066,7 +2066,7 @@ Mon, 11 Apr 2022 07:40:58 GMT
## [8.4.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.17)
-Wed, 06 Apr 2022 07:34:58 GMT
+Wed, 06 Apr 2022 07:34:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.16..@fluentui/theme-samples_v8.4.17)
### Patches
@@ -2075,7 +2075,7 @@ Wed, 06 Apr 2022 07:34:58 GMT
## [8.4.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.16)
-Mon, 04 Apr 2022 20:01:04 GMT
+Mon, 04 Apr 2022 20:01:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.15..@fluentui/theme-samples_v8.4.16)
### Patches
@@ -2084,7 +2084,7 @@ Mon, 04 Apr 2022 20:01:04 GMT
## [8.4.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.15)
-Thu, 31 Mar 2022 07:38:07 GMT
+Thu, 31 Mar 2022 07:38:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.14..@fluentui/theme-samples_v8.4.15)
### Patches
@@ -2093,7 +2093,7 @@ Thu, 31 Mar 2022 07:38:07 GMT
## [8.4.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.14)
-Wed, 30 Mar 2022 07:38:55 GMT
+Wed, 30 Mar 2022 07:38:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.13..@fluentui/theme-samples_v8.4.14)
### Patches
@@ -2102,7 +2102,7 @@ Wed, 30 Mar 2022 07:38:55 GMT
## [8.4.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.13)
-Mon, 28 Mar 2022 07:47:27 GMT
+Mon, 28 Mar 2022 07:47:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.12..@fluentui/theme-samples_v8.4.13)
### Patches
@@ -2111,7 +2111,7 @@ Mon, 28 Mar 2022 07:47:27 GMT
## [8.4.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.12)
-Fri, 25 Mar 2022 07:38:05 GMT
+Fri, 25 Mar 2022 07:38:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.11..@fluentui/theme-samples_v8.4.12)
### Patches
@@ -2120,7 +2120,7 @@ Fri, 25 Mar 2022 07:38:05 GMT
## [8.4.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.11)
-Wed, 23 Mar 2022 07:37:29 GMT
+Wed, 23 Mar 2022 07:37:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.10..@fluentui/theme-samples_v8.4.11)
### Patches
@@ -2129,7 +2129,7 @@ Wed, 23 Mar 2022 07:37:29 GMT
## [8.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.10)
-Mon, 21 Mar 2022 07:39:45 GMT
+Mon, 21 Mar 2022 07:39:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.9..@fluentui/theme-samples_v8.4.10)
### Patches
@@ -2138,7 +2138,7 @@ Mon, 21 Mar 2022 07:39:45 GMT
## [8.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.9)
-Fri, 18 Mar 2022 07:42:02 GMT
+Fri, 18 Mar 2022 07:42:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.8..@fluentui/theme-samples_v8.4.9)
### Patches
@@ -2147,7 +2147,7 @@ Fri, 18 Mar 2022 07:42:02 GMT
## [8.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.8)
-Wed, 16 Mar 2022 07:38:51 GMT
+Wed, 16 Mar 2022 07:38:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.7..@fluentui/theme-samples_v8.4.8)
### Patches
@@ -2156,7 +2156,7 @@ Wed, 16 Mar 2022 07:38:51 GMT
## [8.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.7)
-Tue, 15 Mar 2022 07:45:54 GMT
+Tue, 15 Mar 2022 07:45:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.6..@fluentui/theme-samples_v8.4.7)
### Patches
@@ -2166,7 +2166,7 @@ Tue, 15 Mar 2022 07:45:54 GMT
## [8.4.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.6)
-Sat, 12 Mar 2022 01:04:50 GMT
+Sat, 12 Mar 2022 01:04:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.5..@fluentui/theme-samples_v8.4.6)
### Patches
@@ -2175,7 +2175,7 @@ Sat, 12 Mar 2022 01:04:50 GMT
## [8.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.5)
-Fri, 11 Mar 2022 19:51:48 GMT
+Fri, 11 Mar 2022 19:51:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.4..@fluentui/theme-samples_v8.4.5)
### Patches
@@ -2184,7 +2184,7 @@ Fri, 11 Mar 2022 19:51:48 GMT
## [8.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.4)
-Fri, 11 Mar 2022 07:34:41 GMT
+Fri, 11 Mar 2022 07:34:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.3..@fluentui/theme-samples_v8.4.4)
### Patches
@@ -2194,7 +2194,7 @@ Fri, 11 Mar 2022 07:34:41 GMT
## [8.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.3)
-Thu, 10 Mar 2022 07:34:50 GMT
+Thu, 10 Mar 2022 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.2..@fluentui/theme-samples_v8.4.3)
### Patches
@@ -2204,7 +2204,7 @@ Thu, 10 Mar 2022 07:34:50 GMT
## [8.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.2)
-Wed, 09 Mar 2022 07:37:30 GMT
+Wed, 09 Mar 2022 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.1..@fluentui/theme-samples_v8.4.2)
### Patches
@@ -2214,7 +2214,7 @@ Wed, 09 Mar 2022 07:37:30 GMT
## [8.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.1)
-Tue, 08 Mar 2022 23:29:58 GMT
+Tue, 08 Mar 2022 23:29:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.4.0..@fluentui/theme-samples_v8.4.1)
### Patches
@@ -2224,7 +2224,7 @@ Tue, 08 Mar 2022 23:29:58 GMT
## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.4.0)
-Tue, 08 Mar 2022 07:35:11 GMT
+Tue, 08 Mar 2022 07:35:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.3.2..@fluentui/theme-samples_v8.4.0)
### Minor changes
@@ -2233,7 +2233,7 @@ Tue, 08 Mar 2022 07:35:11 GMT
## [8.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.3.2)
-Mon, 07 Mar 2022 07:41:14 GMT
+Mon, 07 Mar 2022 07:41:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.3.1..@fluentui/theme-samples_v8.3.2)
### Patches
@@ -2242,7 +2242,7 @@ Mon, 07 Mar 2022 07:41:14 GMT
## [8.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.3.1)
-Fri, 04 Mar 2022 07:42:05 GMT
+Fri, 04 Mar 2022 07:42:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.3.0..@fluentui/theme-samples_v8.3.1)
### Patches
@@ -2251,7 +2251,7 @@ Fri, 04 Mar 2022 07:42:05 GMT
## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.3.0)
-Thu, 03 Mar 2022 07:24:25 GMT
+Thu, 03 Mar 2022 07:24:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.84..@fluentui/theme-samples_v8.3.0)
### Minor changes
@@ -2263,7 +2263,7 @@ Thu, 03 Mar 2022 07:24:25 GMT
## [8.2.84](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.84)
-Wed, 02 Mar 2022 07:23:06 GMT
+Wed, 02 Mar 2022 07:23:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.83..@fluentui/theme-samples_v8.2.84)
### Patches
@@ -2272,7 +2272,7 @@ Wed, 02 Mar 2022 07:23:06 GMT
## [8.2.83](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.83)
-Tue, 01 Mar 2022 07:23:43 GMT
+Tue, 01 Mar 2022 07:23:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.82..@fluentui/theme-samples_v8.2.83)
### Patches
@@ -2282,7 +2282,7 @@ Tue, 01 Mar 2022 07:23:43 GMT
## [8.2.82](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.82)
-Thu, 24 Feb 2022 07:29:50 GMT
+Thu, 24 Feb 2022 07:29:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.81..@fluentui/theme-samples_v8.2.82)
### Patches
@@ -2292,7 +2292,7 @@ Thu, 24 Feb 2022 07:29:50 GMT
## [8.2.81](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.81)
-Wed, 23 Feb 2022 07:26:36 GMT
+Wed, 23 Feb 2022 07:26:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.80..@fluentui/theme-samples_v8.2.81)
### Patches
@@ -2301,7 +2301,7 @@ Wed, 23 Feb 2022 07:26:36 GMT
## [8.2.80](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.80)
-Thu, 17 Feb 2022 07:28:31 GMT
+Thu, 17 Feb 2022 07:28:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.79..@fluentui/theme-samples_v8.2.80)
### Patches
@@ -2311,7 +2311,7 @@ Thu, 17 Feb 2022 07:28:31 GMT
## [8.2.79](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.79)
-Mon, 14 Feb 2022 07:26:37 GMT
+Mon, 14 Feb 2022 07:26:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.78..@fluentui/theme-samples_v8.2.79)
### Patches
@@ -2320,7 +2320,7 @@ Mon, 14 Feb 2022 07:26:37 GMT
## [8.2.78](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.78)
-Fri, 11 Feb 2022 07:27:49 GMT
+Fri, 11 Feb 2022 07:27:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.77..@fluentui/theme-samples_v8.2.78)
### Patches
@@ -2330,7 +2330,7 @@ Fri, 11 Feb 2022 07:27:49 GMT
## [8.2.77](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.77)
-Thu, 10 Feb 2022 07:32:10 GMT
+Thu, 10 Feb 2022 07:32:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.76..@fluentui/theme-samples_v8.2.77)
### Patches
@@ -2339,7 +2339,7 @@ Thu, 10 Feb 2022 07:32:10 GMT
## [8.2.76](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.76)
-Wed, 09 Feb 2022 07:30:50 GMT
+Wed, 09 Feb 2022 07:30:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.75..@fluentui/theme-samples_v8.2.76)
### Patches
@@ -2349,7 +2349,7 @@ Wed, 09 Feb 2022 07:30:50 GMT
## [8.2.75](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.75)
-Tue, 08 Feb 2022 07:25:34 GMT
+Tue, 08 Feb 2022 07:25:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.74..@fluentui/theme-samples_v8.2.75)
### Patches
@@ -2358,7 +2358,7 @@ Tue, 08 Feb 2022 07:25:34 GMT
## [8.2.74](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.74)
-Fri, 04 Feb 2022 07:31:42 GMT
+Fri, 04 Feb 2022 07:31:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.73..@fluentui/theme-samples_v8.2.74)
### Patches
@@ -2367,7 +2367,7 @@ Fri, 04 Feb 2022 07:31:42 GMT
## [8.2.73](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.73)
-Thu, 03 Feb 2022 07:29:41 GMT
+Thu, 03 Feb 2022 07:29:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.72..@fluentui/theme-samples_v8.2.73)
### Patches
@@ -2377,7 +2377,7 @@ Thu, 03 Feb 2022 07:29:41 GMT
## [8.2.72](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.72)
-Tue, 01 Feb 2022 07:26:26 GMT
+Tue, 01 Feb 2022 07:26:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.71..@fluentui/theme-samples_v8.2.72)
### Patches
@@ -2386,7 +2386,7 @@ Tue, 01 Feb 2022 07:26:26 GMT
## [8.2.71](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.71)
-Mon, 31 Jan 2022 07:27:30 GMT
+Mon, 31 Jan 2022 07:27:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.70..@fluentui/theme-samples_v8.2.71)
### Patches
@@ -2395,7 +2395,7 @@ Mon, 31 Jan 2022 07:27:30 GMT
## [8.2.70](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.70)
-Wed, 26 Jan 2022 07:26:01 GMT
+Wed, 26 Jan 2022 07:26:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.69..@fluentui/theme-samples_v8.2.70)
### Patches
@@ -2404,7 +2404,7 @@ Wed, 26 Jan 2022 07:26:01 GMT
## [8.2.69](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.69)
-Tue, 25 Jan 2022 07:30:06 GMT
+Tue, 25 Jan 2022 07:30:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.68..@fluentui/theme-samples_v8.2.69)
### Patches
@@ -2413,7 +2413,7 @@ Tue, 25 Jan 2022 07:30:06 GMT
## [8.2.68](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.68)
-Mon, 24 Jan 2022 07:26:13 GMT
+Mon, 24 Jan 2022 07:26:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.67..@fluentui/theme-samples_v8.2.68)
### Patches
@@ -2422,7 +2422,7 @@ Mon, 24 Jan 2022 07:26:13 GMT
## [8.2.67](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.67)
-Fri, 21 Jan 2022 07:26:06 GMT
+Fri, 21 Jan 2022 07:26:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.66..@fluentui/theme-samples_v8.2.67)
### Patches
@@ -2431,7 +2431,7 @@ Fri, 21 Jan 2022 07:26:06 GMT
## [8.2.66](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.66)
-Mon, 17 Jan 2022 09:43:48 GMT
+Mon, 17 Jan 2022 09:43:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.65..@fluentui/theme-samples_v8.2.66)
### Patches
@@ -2440,7 +2440,7 @@ Mon, 17 Jan 2022 09:43:48 GMT
## [8.2.65](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.65)
-Fri, 14 Jan 2022 07:28:39 GMT
+Fri, 14 Jan 2022 07:28:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.64..@fluentui/theme-samples_v8.2.65)
### Patches
@@ -2449,7 +2449,7 @@ Fri, 14 Jan 2022 07:28:39 GMT
## [8.2.64](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.64)
-Thu, 13 Jan 2022 07:30:58 GMT
+Thu, 13 Jan 2022 07:30:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.63..@fluentui/theme-samples_v8.2.64)
### Patches
@@ -2458,7 +2458,7 @@ Thu, 13 Jan 2022 07:30:58 GMT
## [8.2.63](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.63)
-Wed, 12 Jan 2022 07:32:29 GMT
+Wed, 12 Jan 2022 07:32:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.62..@fluentui/theme-samples_v8.2.63)
### Patches
@@ -2467,7 +2467,7 @@ Wed, 12 Jan 2022 07:32:29 GMT
## [8.2.62](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.62)
-Tue, 11 Jan 2022 07:29:05 GMT
+Tue, 11 Jan 2022 07:29:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.61..@fluentui/theme-samples_v8.2.62)
### Patches
@@ -2476,7 +2476,7 @@ Tue, 11 Jan 2022 07:29:05 GMT
## [8.2.61](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.61)
-Mon, 10 Jan 2022 07:26:30 GMT
+Mon, 10 Jan 2022 07:26:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.60..@fluentui/theme-samples_v8.2.61)
### Patches
@@ -2485,7 +2485,7 @@ Mon, 10 Jan 2022 07:26:30 GMT
## [8.2.60](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.60)
-Fri, 07 Jan 2022 07:27:47 GMT
+Fri, 07 Jan 2022 07:27:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.59..@fluentui/theme-samples_v8.2.60)
### Patches
@@ -2494,7 +2494,7 @@ Fri, 07 Jan 2022 07:27:47 GMT
## [8.2.59](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.59)
-Mon, 03 Jan 2022 23:32:11 GMT
+Mon, 03 Jan 2022 23:32:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.58..@fluentui/theme-samples_v8.2.59)
### Patches
@@ -2504,7 +2504,7 @@ Mon, 03 Jan 2022 23:32:11 GMT
## [8.2.58](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.58)
-Wed, 22 Dec 2021 07:29:45 GMT
+Wed, 22 Dec 2021 07:29:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.57..@fluentui/theme-samples_v8.2.58)
### Patches
@@ -2513,7 +2513,7 @@ Wed, 22 Dec 2021 07:29:45 GMT
## [8.2.57](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.57)
-Thu, 16 Dec 2021 07:26:41 GMT
+Thu, 16 Dec 2021 07:26:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.56..@fluentui/theme-samples_v8.2.57)
### Patches
@@ -2522,7 +2522,7 @@ Thu, 16 Dec 2021 07:26:41 GMT
## [8.2.56](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.56)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.55..@fluentui/theme-samples_v8.2.56)
### Patches
@@ -2532,7 +2532,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [8.2.55](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.55)
-Tue, 14 Dec 2021 07:30:02 GMT
+Tue, 14 Dec 2021 07:30:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.54..@fluentui/theme-samples_v8.2.55)
### Patches
@@ -2541,7 +2541,7 @@ Tue, 14 Dec 2021 07:30:02 GMT
## [8.2.54](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.54)
-Fri, 10 Dec 2021 07:30:35 GMT
+Fri, 10 Dec 2021 07:30:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.53..@fluentui/theme-samples_v8.2.54)
### Patches
@@ -2550,7 +2550,7 @@ Fri, 10 Dec 2021 07:30:35 GMT
## [8.2.53](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.53)
-Thu, 09 Dec 2021 07:27:18 GMT
+Thu, 09 Dec 2021 07:27:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.52..@fluentui/theme-samples_v8.2.53)
### Patches
@@ -2559,7 +2559,7 @@ Thu, 09 Dec 2021 07:27:18 GMT
## [8.2.52](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.52)
-Wed, 08 Dec 2021 07:28:19 GMT
+Wed, 08 Dec 2021 07:28:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.51..@fluentui/theme-samples_v8.2.52)
### Patches
@@ -2568,7 +2568,7 @@ Wed, 08 Dec 2021 07:28:19 GMT
## [8.2.51](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.51)
-Tue, 07 Dec 2021 07:31:33 GMT
+Tue, 07 Dec 2021 07:31:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.50..@fluentui/theme-samples_v8.2.51)
### Patches
@@ -2577,7 +2577,7 @@ Tue, 07 Dec 2021 07:31:33 GMT
## [8.2.50](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.50)
-Fri, 03 Dec 2021 07:36:12 GMT
+Fri, 03 Dec 2021 07:36:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.49..@fluentui/theme-samples_v8.2.50)
### Patches
@@ -2586,7 +2586,7 @@ Fri, 03 Dec 2021 07:36:12 GMT
## [8.2.49](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.49)
-Wed, 01 Dec 2021 07:41:09 GMT
+Wed, 01 Dec 2021 07:41:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.48..@fluentui/theme-samples_v8.2.49)
### Patches
@@ -2595,7 +2595,7 @@ Wed, 01 Dec 2021 07:41:09 GMT
## [8.2.48](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.48)
-Tue, 30 Nov 2021 07:37:33 GMT
+Tue, 30 Nov 2021 07:37:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.47..@fluentui/theme-samples_v8.2.48)
### Patches
@@ -2604,7 +2604,7 @@ Tue, 30 Nov 2021 07:37:33 GMT
## [8.2.47](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.47)
-Thu, 25 Nov 2021 14:54:16 GMT
+Thu, 25 Nov 2021 14:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.46..@fluentui/theme-samples_v8.2.47)
### Patches
@@ -2615,7 +2615,7 @@ Thu, 25 Nov 2021 14:54:16 GMT
## [8.2.46](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.46)
-Tue, 23 Nov 2021 07:27:34 GMT
+Tue, 23 Nov 2021 07:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.45..@fluentui/theme-samples_v8.2.46)
### Patches
@@ -2624,7 +2624,7 @@ Tue, 23 Nov 2021 07:27:34 GMT
## [8.2.45](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.45)
-Mon, 22 Nov 2021 07:36:14 GMT
+Mon, 22 Nov 2021 07:36:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.44..@fluentui/theme-samples_v8.2.45)
### Patches
@@ -2633,7 +2633,7 @@ Mon, 22 Nov 2021 07:36:14 GMT
## [8.2.44](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.44)
-Fri, 19 Nov 2021 07:45:28 GMT
+Fri, 19 Nov 2021 07:45:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.43..@fluentui/theme-samples_v8.2.44)
### Patches
@@ -2642,7 +2642,7 @@ Fri, 19 Nov 2021 07:45:28 GMT
## [8.2.43](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.43)
-Thu, 18 Nov 2021 07:29:22 GMT
+Thu, 18 Nov 2021 07:29:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.42..@fluentui/theme-samples_v8.2.43)
### Patches
@@ -2651,7 +2651,7 @@ Thu, 18 Nov 2021 07:29:22 GMT
## [8.2.42](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.42)
-Wed, 17 Nov 2021 07:36:21 GMT
+Wed, 17 Nov 2021 07:36:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.41..@fluentui/theme-samples_v8.2.42)
### Patches
@@ -2660,7 +2660,7 @@ Wed, 17 Nov 2021 07:36:21 GMT
## [8.2.41](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.41)
-Tue, 16 Nov 2021 07:36:41 GMT
+Tue, 16 Nov 2021 07:36:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.40..@fluentui/theme-samples_v8.2.41)
### Patches
@@ -2669,7 +2669,7 @@ Tue, 16 Nov 2021 07:36:41 GMT
## [8.2.40](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.40)
-Mon, 15 Nov 2021 07:29:05 GMT
+Mon, 15 Nov 2021 07:29:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.39..@fluentui/theme-samples_v8.2.40)
### Patches
@@ -2678,7 +2678,7 @@ Mon, 15 Nov 2021 07:29:05 GMT
## [8.2.39](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.39)
-Wed, 10 Nov 2021 07:31:59 GMT
+Wed, 10 Nov 2021 07:31:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.38..@fluentui/theme-samples_v8.2.39)
### Patches
@@ -2688,7 +2688,7 @@ Wed, 10 Nov 2021 07:31:59 GMT
## [8.2.38](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.38)
-Tue, 09 Nov 2021 07:38:11 GMT
+Tue, 09 Nov 2021 07:38:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.37..@fluentui/theme-samples_v8.2.38)
### Patches
@@ -2697,7 +2697,7 @@ Tue, 09 Nov 2021 07:38:11 GMT
## [8.2.37](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.37)
-Mon, 08 Nov 2021 07:35:50 GMT
+Mon, 08 Nov 2021 07:35:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.36..@fluentui/theme-samples_v8.2.37)
### Patches
@@ -2706,7 +2706,7 @@ Mon, 08 Nov 2021 07:35:50 GMT
## [8.2.36](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.36)
-Fri, 05 Nov 2021 07:36:39 GMT
+Fri, 05 Nov 2021 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.35..@fluentui/theme-samples_v8.2.36)
### Patches
@@ -2715,7 +2715,7 @@ Fri, 05 Nov 2021 07:36:39 GMT
## [8.2.35](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.35)
-Thu, 04 Nov 2021 07:29:42 GMT
+Thu, 04 Nov 2021 07:29:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.34..@fluentui/theme-samples_v8.2.35)
### Patches
@@ -2724,7 +2724,7 @@ Thu, 04 Nov 2021 07:29:42 GMT
## [8.2.34](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.34)
-Wed, 03 Nov 2021 07:36:03 GMT
+Wed, 03 Nov 2021 07:36:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.33..@fluentui/theme-samples_v8.2.34)
### Patches
@@ -2733,7 +2733,7 @@ Wed, 03 Nov 2021 07:36:03 GMT
## [8.2.33](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.33)
-Tue, 02 Nov 2021 07:37:02 GMT
+Tue, 02 Nov 2021 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.32..@fluentui/theme-samples_v8.2.33)
### Patches
@@ -2743,7 +2743,7 @@ Tue, 02 Nov 2021 07:37:02 GMT
## [8.2.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.32)
-Mon, 01 Nov 2021 07:32:08 GMT
+Mon, 01 Nov 2021 07:32:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.31..@fluentui/theme-samples_v8.2.32)
### Patches
@@ -2752,7 +2752,7 @@ Mon, 01 Nov 2021 07:32:08 GMT
## [8.2.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.31)
-Fri, 29 Oct 2021 07:29:08 GMT
+Fri, 29 Oct 2021 07:29:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.30..@fluentui/theme-samples_v8.2.31)
### Patches
@@ -2761,7 +2761,7 @@ Fri, 29 Oct 2021 07:29:08 GMT
## [8.2.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.30)
-Thu, 28 Oct 2021 07:29:14 GMT
+Thu, 28 Oct 2021 07:29:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.29..@fluentui/theme-samples_v8.2.30)
### Patches
@@ -2770,7 +2770,7 @@ Thu, 28 Oct 2021 07:29:14 GMT
## [8.2.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.29)
-Wed, 27 Oct 2021 07:29:17 GMT
+Wed, 27 Oct 2021 07:29:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.28..@fluentui/theme-samples_v8.2.29)
### Patches
@@ -2779,7 +2779,7 @@ Wed, 27 Oct 2021 07:29:17 GMT
## [8.2.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.28)
-Tue, 26 Oct 2021 07:39:42 GMT
+Tue, 26 Oct 2021 07:39:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.27..@fluentui/theme-samples_v8.2.28)
### Patches
@@ -2788,7 +2788,7 @@ Tue, 26 Oct 2021 07:39:42 GMT
## [8.2.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.27)
-Mon, 25 Oct 2021 07:38:02 GMT
+Mon, 25 Oct 2021 07:38:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.26..@fluentui/theme-samples_v8.2.27)
### Patches
@@ -2797,7 +2797,7 @@ Mon, 25 Oct 2021 07:38:02 GMT
## [8.2.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.26)
-Thu, 21 Oct 2021 07:28:35 GMT
+Thu, 21 Oct 2021 07:28:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.25..@fluentui/theme-samples_v8.2.26)
### Patches
@@ -2806,7 +2806,7 @@ Thu, 21 Oct 2021 07:28:35 GMT
## [8.2.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.25)
-Wed, 20 Oct 2021 07:30:01 GMT
+Wed, 20 Oct 2021 07:30:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.24..@fluentui/theme-samples_v8.2.25)
### Patches
@@ -2815,7 +2815,7 @@ Wed, 20 Oct 2021 07:30:01 GMT
## [8.2.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.24)
-Wed, 13 Oct 2021 07:31:28 GMT
+Wed, 13 Oct 2021 07:31:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.23..@fluentui/theme-samples_v8.2.24)
### Patches
@@ -2824,7 +2824,7 @@ Wed, 13 Oct 2021 07:31:28 GMT
## [8.2.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.23)
-Mon, 11 Oct 2021 07:36:36 GMT
+Mon, 11 Oct 2021 07:36:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.22..@fluentui/theme-samples_v8.2.23)
### Patches
@@ -2833,7 +2833,7 @@ Mon, 11 Oct 2021 07:36:36 GMT
## [8.2.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.22)
-Fri, 08 Oct 2021 07:31:50 GMT
+Fri, 08 Oct 2021 07:31:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.21..@fluentui/theme-samples_v8.2.22)
### Patches
@@ -2842,7 +2842,7 @@ Fri, 08 Oct 2021 07:31:50 GMT
## [8.2.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.21)
-Tue, 05 Oct 2021 07:37:17 GMT
+Tue, 05 Oct 2021 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.20..@fluentui/theme-samples_v8.2.21)
### Patches
@@ -2852,7 +2852,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
## [8.2.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.20)
-Mon, 04 Oct 2021 07:27:12 GMT
+Mon, 04 Oct 2021 07:27:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.19..@fluentui/theme-samples_v8.2.20)
### Patches
@@ -2861,7 +2861,7 @@ Mon, 04 Oct 2021 07:27:12 GMT
## [8.2.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.19)
-Thu, 30 Sep 2021 07:31:40 GMT
+Thu, 30 Sep 2021 07:31:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.18..@fluentui/theme-samples_v8.2.19)
### Patches
@@ -2870,7 +2870,7 @@ Thu, 30 Sep 2021 07:31:40 GMT
## [8.2.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.18)
-Wed, 29 Sep 2021 07:36:23 GMT
+Wed, 29 Sep 2021 07:36:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.17..@fluentui/theme-samples_v8.2.18)
### Patches
@@ -2879,7 +2879,7 @@ Wed, 29 Sep 2021 07:36:23 GMT
## [8.2.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.17)
-Tue, 28 Sep 2021 22:17:07 GMT
+Tue, 28 Sep 2021 22:17:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.16..@fluentui/theme-samples_v8.2.17)
### Patches
@@ -2889,7 +2889,7 @@ Tue, 28 Sep 2021 22:17:07 GMT
## [8.2.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.16)
-Tue, 28 Sep 2021 07:37:27 GMT
+Tue, 28 Sep 2021 07:37:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.15..@fluentui/theme-samples_v8.2.16)
### Patches
@@ -2898,7 +2898,7 @@ Tue, 28 Sep 2021 07:37:27 GMT
## [8.2.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.15)
-Mon, 27 Sep 2021 07:34:24 GMT
+Mon, 27 Sep 2021 07:34:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.14..@fluentui/theme-samples_v8.2.15)
### Patches
@@ -2907,7 +2907,7 @@ Mon, 27 Sep 2021 07:34:24 GMT
## [8.2.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.14)
-Thu, 23 Sep 2021 07:35:13 GMT
+Thu, 23 Sep 2021 07:35:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.13..@fluentui/theme-samples_v8.2.14)
### Patches
@@ -2916,7 +2916,7 @@ Thu, 23 Sep 2021 07:35:13 GMT
## [8.2.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.13)
-Wed, 22 Sep 2021 09:55:02 GMT
+Wed, 22 Sep 2021 09:55:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.12..@fluentui/theme-samples_v8.2.13)
### Patches
@@ -2925,7 +2925,7 @@ Wed, 22 Sep 2021 09:55:02 GMT
## [8.2.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.12)
-Tue, 21 Sep 2021 07:42:34 GMT
+Tue, 21 Sep 2021 07:42:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.11..@fluentui/theme-samples_v8.2.12)
### Patches
@@ -2934,7 +2934,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
## [8.2.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.11)
-Thu, 16 Sep 2021 07:38:39 GMT
+Thu, 16 Sep 2021 07:38:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.10..@fluentui/theme-samples_v8.2.11)
### Patches
@@ -2943,7 +2943,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
## [8.2.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.10)
-Tue, 14 Sep 2021 07:38:18 GMT
+Tue, 14 Sep 2021 07:38:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.9..@fluentui/theme-samples_v8.2.10)
### Patches
@@ -2952,7 +2952,7 @@ Tue, 14 Sep 2021 07:38:18 GMT
## [8.2.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.9)
-Mon, 13 Sep 2021 07:37:03 GMT
+Mon, 13 Sep 2021 07:37:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.8..@fluentui/theme-samples_v8.2.9)
### Patches
@@ -2961,7 +2961,7 @@ Mon, 13 Sep 2021 07:37:03 GMT
## [8.2.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.8)
-Fri, 10 Sep 2021 07:39:51 GMT
+Fri, 10 Sep 2021 07:39:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.7..@fluentui/theme-samples_v8.2.8)
### Patches
@@ -2970,7 +2970,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
## [8.2.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.7)
-Thu, 09 Sep 2021 07:39:06 GMT
+Thu, 09 Sep 2021 07:39:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.6..@fluentui/theme-samples_v8.2.7)
### Patches
@@ -2979,7 +2979,7 @@ Thu, 09 Sep 2021 07:39:06 GMT
## [8.2.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.6)
-Wed, 08 Sep 2021 07:34:11 GMT
+Wed, 08 Sep 2021 07:34:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.5..@fluentui/theme-samples_v8.2.6)
### Patches
@@ -2988,7 +2988,7 @@ Wed, 08 Sep 2021 07:34:11 GMT
## [8.2.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.5)
-Mon, 06 Sep 2021 07:34:53 GMT
+Mon, 06 Sep 2021 07:34:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.4..@fluentui/theme-samples_v8.2.5)
### Patches
@@ -2997,7 +2997,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
## [8.2.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.4)
-Thu, 02 Sep 2021 07:36:46 GMT
+Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.3..@fluentui/theme-samples_v8.2.4)
### Patches
@@ -3006,7 +3006,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
## [8.2.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.3)
-Tue, 31 Aug 2021 07:37:47 GMT
+Tue, 31 Aug 2021 07:37:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.2..@fluentui/theme-samples_v8.2.3)
### Patches
@@ -3015,7 +3015,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.2)
-Mon, 30 Aug 2021 07:35:05 GMT
+Mon, 30 Aug 2021 07:35:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.1..@fluentui/theme-samples_v8.2.2)
### Patches
@@ -3024,7 +3024,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.1)
-Wed, 25 Aug 2021 07:35:19 GMT
+Wed, 25 Aug 2021 07:35:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.2.0..@fluentui/theme-samples_v8.2.1)
### Patches
@@ -3033,7 +3033,7 @@ Wed, 25 Aug 2021 07:35:19 GMT
## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.2.0)
-Tue, 24 Aug 2021 07:34:48 GMT
+Tue, 24 Aug 2021 07:34:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.57..@fluentui/theme-samples_v8.2.0)
### Minor changes
@@ -3042,7 +3042,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
## [8.1.57](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.57)
-Mon, 23 Aug 2021 07:35:43 GMT
+Mon, 23 Aug 2021 07:35:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.56..@fluentui/theme-samples_v8.1.57)
### Patches
@@ -3051,7 +3051,7 @@ Mon, 23 Aug 2021 07:35:43 GMT
## [8.1.56](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.56)
-Thu, 19 Aug 2021 07:41:35 GMT
+Thu, 19 Aug 2021 07:41:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.55..@fluentui/theme-samples_v8.1.56)
### Patches
@@ -3060,7 +3060,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
## [8.1.55](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.55)
-Mon, 16 Aug 2021 07:36:39 GMT
+Mon, 16 Aug 2021 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.54..@fluentui/theme-samples_v8.1.55)
### Patches
@@ -3069,7 +3069,7 @@ Mon, 16 Aug 2021 07:36:39 GMT
## [8.1.54](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.54)
-Fri, 13 Aug 2021 07:36:34 GMT
+Fri, 13 Aug 2021 07:36:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.53..@fluentui/theme-samples_v8.1.54)
### Patches
@@ -3078,7 +3078,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
## [8.1.53](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.53)
-Thu, 12 Aug 2021 07:34:46 GMT
+Thu, 12 Aug 2021 07:34:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.52..@fluentui/theme-samples_v8.1.53)
### Patches
@@ -3087,7 +3087,7 @@ Thu, 12 Aug 2021 07:34:46 GMT
## [8.1.52](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.52)
-Wed, 11 Aug 2021 07:34:54 GMT
+Wed, 11 Aug 2021 07:34:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.51..@fluentui/theme-samples_v8.1.52)
### Patches
@@ -3096,7 +3096,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
## [8.1.51](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.51)
-Mon, 09 Aug 2021 07:35:14 GMT
+Mon, 09 Aug 2021 07:35:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.50..@fluentui/theme-samples_v8.1.51)
### Patches
@@ -3105,7 +3105,7 @@ Mon, 09 Aug 2021 07:35:14 GMT
## [8.1.50](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.50)
-Thu, 05 Aug 2021 07:34:24 GMT
+Thu, 05 Aug 2021 07:34:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.49..@fluentui/theme-samples_v8.1.50)
### Patches
@@ -3114,7 +3114,7 @@ Thu, 05 Aug 2021 07:34:24 GMT
## [8.1.49](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.49)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.48..@fluentui/theme-samples_v8.1.49)
### Patches
@@ -3123,7 +3123,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [8.1.48](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.48)
-Mon, 02 Aug 2021 07:36:20 GMT
+Mon, 02 Aug 2021 07:36:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.47..@fluentui/theme-samples_v8.1.48)
### Patches
@@ -3132,7 +3132,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
## [8.1.47](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.47)
-Fri, 30 Jul 2021 07:35:22 GMT
+Fri, 30 Jul 2021 07:35:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.46..@fluentui/theme-samples_v8.1.47)
### Patches
@@ -3141,7 +3141,7 @@ Fri, 30 Jul 2021 07:35:22 GMT
## [8.1.46](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.46)
-Thu, 29 Jul 2021 07:35:37 GMT
+Thu, 29 Jul 2021 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.45..@fluentui/theme-samples_v8.1.46)
### Patches
@@ -3150,7 +3150,7 @@ Thu, 29 Jul 2021 07:35:37 GMT
## [8.1.45](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.45)
-Wed, 28 Jul 2021 07:34:11 GMT
+Wed, 28 Jul 2021 07:34:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.44..@fluentui/theme-samples_v8.1.45)
### Patches
@@ -3159,7 +3159,7 @@ Wed, 28 Jul 2021 07:34:11 GMT
## [8.1.44](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.44)
-Tue, 27 Jul 2021 07:34:27 GMT
+Tue, 27 Jul 2021 07:34:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.43..@fluentui/theme-samples_v8.1.44)
### Patches
@@ -3168,7 +3168,7 @@ Tue, 27 Jul 2021 07:34:27 GMT
## [8.1.43](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.43)
-Mon, 26 Jul 2021 07:37:30 GMT
+Mon, 26 Jul 2021 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.42..@fluentui/theme-samples_v8.1.43)
### Patches
@@ -3177,7 +3177,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
## [8.1.42](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.42)
-Fri, 23 Jul 2021 07:38:19 GMT
+Fri, 23 Jul 2021 07:38:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.41..@fluentui/theme-samples_v8.1.42)
### Patches
@@ -3186,7 +3186,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
## [8.1.41](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.41)
-Thu, 22 Jul 2021 07:36:55 GMT
+Thu, 22 Jul 2021 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.40..@fluentui/theme-samples_v8.1.41)
### Patches
@@ -3195,7 +3195,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
## [8.1.40](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.40)
-Tue, 20 Jul 2021 22:23:17 GMT
+Tue, 20 Jul 2021 22:23:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.39..@fluentui/theme-samples_v8.1.40)
### Patches
@@ -3204,7 +3204,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
## [8.1.39](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.39)
-Fri, 16 Jul 2021 00:35:31 GMT
+Fri, 16 Jul 2021 00:35:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.38..@fluentui/theme-samples_v8.1.39)
### Patches
@@ -3213,7 +3213,7 @@ Fri, 16 Jul 2021 00:35:31 GMT
## [8.1.38](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.38)
-Thu, 15 Jul 2021 07:36:18 GMT
+Thu, 15 Jul 2021 07:36:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.37..@fluentui/theme-samples_v8.1.38)
### Patches
@@ -3222,7 +3222,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
## [8.1.37](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.37)
-Wed, 14 Jul 2021 07:28:19 GMT
+Wed, 14 Jul 2021 07:28:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.36..@fluentui/theme-samples_v8.1.37)
### Patches
@@ -3231,7 +3231,7 @@ Wed, 14 Jul 2021 07:28:19 GMT
## [8.1.36](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.36)
-Tue, 13 Jul 2021 22:32:58 GMT
+Tue, 13 Jul 2021 22:32:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.35..@fluentui/theme-samples_v8.1.36)
### Patches
@@ -3240,7 +3240,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
## [8.1.35](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.35)
-Tue, 13 Jul 2021 07:35:36 GMT
+Tue, 13 Jul 2021 07:35:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.34..@fluentui/theme-samples_v8.1.35)
### Patches
@@ -3249,7 +3249,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
## [8.1.34](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.34)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.33..@fluentui/theme-samples_v8.1.34)
### Patches
@@ -3258,7 +3258,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [8.1.33](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.33)
-Thu, 08 Jul 2021 07:32:49 GMT
+Thu, 08 Jul 2021 07:32:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.32..@fluentui/theme-samples_v8.1.33)
### Patches
@@ -3267,7 +3267,7 @@ Thu, 08 Jul 2021 07:32:49 GMT
## [8.1.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.32)
-Wed, 07 Jul 2021 07:32:54 GMT
+Wed, 07 Jul 2021 07:32:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.31..@fluentui/theme-samples_v8.1.32)
### Patches
@@ -3276,7 +3276,7 @@ Wed, 07 Jul 2021 07:32:54 GMT
## [8.1.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.31)
-Thu, 01 Jul 2021 07:35:05 GMT
+Thu, 01 Jul 2021 07:35:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.30..@fluentui/theme-samples_v8.1.31)
### Patches
@@ -3285,7 +3285,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
## [8.1.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.30)
-Tue, 29 Jun 2021 07:33:32 GMT
+Tue, 29 Jun 2021 07:33:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.29..@fluentui/theme-samples_v8.1.30)
### Patches
@@ -3294,7 +3294,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
## [8.1.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.29)
-Mon, 28 Jun 2021 07:35:16 GMT
+Mon, 28 Jun 2021 07:35:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.28..@fluentui/theme-samples_v8.1.29)
### Patches
@@ -3303,7 +3303,7 @@ Mon, 28 Jun 2021 07:35:16 GMT
## [8.1.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.28)
-Tue, 22 Jun 2021 07:35:11 GMT
+Tue, 22 Jun 2021 07:35:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.27..@fluentui/theme-samples_v8.1.28)
### Patches
@@ -3312,7 +3312,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
## [8.1.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.27)
-Mon, 21 Jun 2021 07:34:33 GMT
+Mon, 21 Jun 2021 07:34:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.26..@fluentui/theme-samples_v8.1.27)
### Patches
@@ -3321,7 +3321,7 @@ Mon, 21 Jun 2021 07:34:33 GMT
## [8.1.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.26)
-Fri, 18 Jun 2021 07:30:58 GMT
+Fri, 18 Jun 2021 07:30:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.25..@fluentui/theme-samples_v8.1.26)
### Patches
@@ -3330,7 +3330,7 @@ Fri, 18 Jun 2021 07:30:58 GMT
## [8.1.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.25)
-Wed, 16 Jun 2021 07:34:24 GMT
+Wed, 16 Jun 2021 07:34:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.24..@fluentui/theme-samples_v8.1.25)
### Patches
@@ -3339,7 +3339,7 @@ Wed, 16 Jun 2021 07:34:24 GMT
## [8.1.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.24)
-Tue, 15 Jun 2021 07:40:20 GMT
+Tue, 15 Jun 2021 07:40:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.23..@fluentui/theme-samples_v8.1.24)
### Patches
@@ -3348,7 +3348,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
## [8.1.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.23)
-Fri, 11 Jun 2021 07:34:26 GMT
+Fri, 11 Jun 2021 07:34:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.22..@fluentui/theme-samples_v8.1.23)
### Patches
@@ -3357,7 +3357,7 @@ Fri, 11 Jun 2021 07:34:26 GMT
## [8.1.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.22)
-Thu, 10 Jun 2021 07:32:59 GMT
+Thu, 10 Jun 2021 07:32:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.21..@fluentui/theme-samples_v8.1.22)
### Patches
@@ -3366,7 +3366,7 @@ Thu, 10 Jun 2021 07:32:59 GMT
## [8.1.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.21)
-Wed, 09 Jun 2021 07:33:38 GMT
+Wed, 09 Jun 2021 07:33:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.20..@fluentui/theme-samples_v8.1.21)
### Patches
@@ -3375,7 +3375,7 @@ Wed, 09 Jun 2021 07:33:38 GMT
## [8.1.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.20)
-Tue, 08 Jun 2021 07:32:44 GMT
+Tue, 08 Jun 2021 07:32:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.19..@fluentui/theme-samples_v8.1.20)
### Patches
@@ -3384,7 +3384,7 @@ Tue, 08 Jun 2021 07:32:44 GMT
## [8.1.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.19)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.18..@fluentui/theme-samples_v8.1.19)
### Patches
@@ -3393,7 +3393,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [8.1.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.18)
-Fri, 04 Jun 2021 07:37:23 GMT
+Fri, 04 Jun 2021 07:37:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.17..@fluentui/theme-samples_v8.1.18)
### Patches
@@ -3402,7 +3402,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
## [8.1.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.17)
-Mon, 31 May 2021 07:33:15 GMT
+Mon, 31 May 2021 07:33:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.16..@fluentui/theme-samples_v8.1.17)
### Patches
@@ -3411,7 +3411,7 @@ Mon, 31 May 2021 07:33:15 GMT
## [8.1.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.16)
-Thu, 27 May 2021 07:33:21 GMT
+Thu, 27 May 2021 07:33:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.15..@fluentui/theme-samples_v8.1.16)
### Patches
@@ -3420,7 +3420,7 @@ Thu, 27 May 2021 07:33:21 GMT
## [8.1.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.15)
-Wed, 26 May 2021 07:35:43 GMT
+Wed, 26 May 2021 07:35:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.14..@fluentui/theme-samples_v8.1.15)
### Patches
@@ -3429,7 +3429,7 @@ Wed, 26 May 2021 07:35:43 GMT
## [8.1.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.14)
-Tue, 25 May 2021 01:11:03 GMT
+Tue, 25 May 2021 01:11:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.13..@fluentui/theme-samples_v8.1.14)
### Patches
@@ -3438,7 +3438,7 @@ Tue, 25 May 2021 01:11:03 GMT
## [8.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.13)
-Mon, 24 May 2021 07:35:28 GMT
+Mon, 24 May 2021 07:35:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.12..@fluentui/theme-samples_v8.1.13)
### Patches
@@ -3447,7 +3447,7 @@ Mon, 24 May 2021 07:35:28 GMT
## [8.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.12)
-Fri, 21 May 2021 07:34:54 GMT
+Fri, 21 May 2021 07:34:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.11..@fluentui/theme-samples_v8.1.12)
### Patches
@@ -3456,7 +3456,7 @@ Fri, 21 May 2021 07:34:54 GMT
## [8.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.11)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.10..@fluentui/theme-samples_v8.1.11)
### Patches
@@ -3465,7 +3465,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [8.1.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.10)
-Wed, 19 May 2021 07:34:20 GMT
+Wed, 19 May 2021 07:34:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.9..@fluentui/theme-samples_v8.1.10)
### Patches
@@ -3474,7 +3474,7 @@ Wed, 19 May 2021 07:34:20 GMT
## [8.1.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.9)
-Tue, 18 May 2021 07:34:38 GMT
+Tue, 18 May 2021 07:34:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.8..@fluentui/theme-samples_v8.1.9)
### Patches
@@ -3483,7 +3483,7 @@ Tue, 18 May 2021 07:34:38 GMT
## [8.1.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.8)
-Mon, 17 May 2021 07:33:48 GMT
+Mon, 17 May 2021 07:33:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.7..@fluentui/theme-samples_v8.1.8)
### Patches
@@ -3492,7 +3492,7 @@ Mon, 17 May 2021 07:33:48 GMT
## [8.1.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.7)
-Fri, 14 May 2021 07:35:10 GMT
+Fri, 14 May 2021 07:35:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.6..@fluentui/theme-samples_v8.1.7)
### Patches
@@ -3501,7 +3501,7 @@ Fri, 14 May 2021 07:35:10 GMT
## [8.1.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.6)
-Thu, 13 May 2021 07:36:55 GMT
+Thu, 13 May 2021 07:36:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.5..@fluentui/theme-samples_v8.1.6)
### Patches
@@ -3510,7 +3510,7 @@ Thu, 13 May 2021 07:36:55 GMT
## [8.1.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.5)
-Wed, 12 May 2021 07:36:20 GMT
+Wed, 12 May 2021 07:36:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.4..@fluentui/theme-samples_v8.1.5)
### Patches
@@ -3519,7 +3519,7 @@ Wed, 12 May 2021 07:36:20 GMT
## [8.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.4)
-Mon, 10 May 2021 07:36:07 GMT
+Mon, 10 May 2021 07:36:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.3..@fluentui/theme-samples_v8.1.4)
### Patches
@@ -3528,7 +3528,7 @@ Mon, 10 May 2021 07:36:07 GMT
## [8.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.3)
-Fri, 07 May 2021 07:34:34 GMT
+Fri, 07 May 2021 07:34:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.2..@fluentui/theme-samples_v8.1.3)
### Patches
@@ -3537,7 +3537,7 @@ Fri, 07 May 2021 07:34:34 GMT
## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.2)
-Thu, 06 May 2021 07:35:51 GMT
+Thu, 06 May 2021 07:35:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.1..@fluentui/theme-samples_v8.1.2)
### Patches
@@ -3546,7 +3546,7 @@ Thu, 06 May 2021 07:35:51 GMT
## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.1)
-Tue, 04 May 2021 07:36:35 GMT
+Tue, 04 May 2021 07:36:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.1.0..@fluentui/theme-samples_v8.1.1)
### Patches
@@ -3555,7 +3555,7 @@ Tue, 04 May 2021 07:36:35 GMT
## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.32..@fluentui/theme-samples_v8.1.0)
### Minor changes
@@ -3572,7 +3572,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [8.0.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.32)
-Wed, 28 Apr 2021 07:32:59 GMT
+Wed, 28 Apr 2021 07:32:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.31..@fluentui/theme-samples_v8.0.32)
### Patches
@@ -3581,7 +3581,7 @@ Wed, 28 Apr 2021 07:32:59 GMT
## [8.0.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.31)
-Tue, 27 Apr 2021 07:34:03 GMT
+Tue, 27 Apr 2021 07:34:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.30..@fluentui/theme-samples_v8.0.31)
### Patches
@@ -3590,7 +3590,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
## [8.0.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.30)
-Mon, 26 Apr 2021 07:34:31 GMT
+Mon, 26 Apr 2021 07:34:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.29..@fluentui/theme-samples_v8.0.30)
### Patches
@@ -3599,7 +3599,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
## [8.0.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.29)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.28..@fluentui/theme-samples_v8.0.29)
### Patches
@@ -3608,7 +3608,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [8.0.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.28)
-Fri, 16 Apr 2021 07:32:08 GMT
+Fri, 16 Apr 2021 07:32:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.27..@fluentui/theme-samples_v8.0.28)
### Patches
@@ -3617,7 +3617,7 @@ Fri, 16 Apr 2021 07:32:08 GMT
## [8.0.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.27)
-Wed, 14 Apr 2021 07:34:12 GMT
+Wed, 14 Apr 2021 07:34:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.26..@fluentui/theme-samples_v8.0.27)
### Patches
@@ -3626,7 +3626,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
## [8.0.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.26)
-Tue, 13 Apr 2021 14:55:56 GMT
+Tue, 13 Apr 2021 14:55:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.25..@fluentui/theme-samples_v8.0.26)
### Patches
@@ -3635,7 +3635,7 @@ Tue, 13 Apr 2021 14:55:56 GMT
## [8.0.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.25)
-Sat, 10 Apr 2021 03:23:10 GMT
+Sat, 10 Apr 2021 03:23:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.24..@fluentui/theme-samples_v8.0.25)
### Patches
@@ -3644,7 +3644,7 @@ Sat, 10 Apr 2021 03:23:10 GMT
## [8.0.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.24)
-Fri, 09 Apr 2021 23:42:49 GMT
+Fri, 09 Apr 2021 23:42:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.23..@fluentui/theme-samples_v8.0.24)
### Patches
@@ -3653,7 +3653,7 @@ Fri, 09 Apr 2021 23:42:49 GMT
## [8.0.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.23)
-Thu, 08 Apr 2021 07:33:06 GMT
+Thu, 08 Apr 2021 07:33:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.22..@fluentui/theme-samples_v8.0.23)
### Patches
@@ -3662,7 +3662,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
## [8.0.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.22)
-Wed, 07 Apr 2021 08:04:03 GMT
+Wed, 07 Apr 2021 08:04:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.21..@fluentui/theme-samples_v8.0.22)
### Patches
@@ -3671,7 +3671,7 @@ Wed, 07 Apr 2021 08:04:03 GMT
## [8.0.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.21)
-Tue, 06 Apr 2021 07:34:10 GMT
+Tue, 06 Apr 2021 07:34:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.20..@fluentui/theme-samples_v8.0.21)
### Patches
@@ -3680,7 +3680,7 @@ Tue, 06 Apr 2021 07:34:10 GMT
## [8.0.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.20)
-Thu, 01 Apr 2021 07:33:24 GMT
+Thu, 01 Apr 2021 07:33:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.19..@fluentui/theme-samples_v8.0.20)
### Patches
@@ -3689,7 +3689,7 @@ Thu, 01 Apr 2021 07:33:24 GMT
## [8.0.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.19)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.18..@fluentui/theme-samples_v8.0.19)
### Patches
@@ -3698,7 +3698,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [8.0.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.18)
-Tue, 30 Mar 2021 07:34:45 GMT
+Tue, 30 Mar 2021 07:34:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.17..@fluentui/theme-samples_v8.0.18)
### Patches
@@ -3707,7 +3707,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
## [8.0.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.17)
-Thu, 25 Mar 2021 07:33:24 GMT
+Thu, 25 Mar 2021 07:33:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.16..@fluentui/theme-samples_v8.0.17)
### Patches
@@ -3716,7 +3716,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
## [8.0.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.16)
-Wed, 24 Mar 2021 07:32:21 GMT
+Wed, 24 Mar 2021 07:32:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.15..@fluentui/theme-samples_v8.0.16)
### Patches
@@ -3725,7 +3725,7 @@ Wed, 24 Mar 2021 07:32:21 GMT
## [8.0.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.15)
-Mon, 22 Mar 2021 07:34:09 GMT
+Mon, 22 Mar 2021 07:34:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.14..@fluentui/theme-samples_v8.0.15)
### Patches
@@ -3734,7 +3734,7 @@ Mon, 22 Mar 2021 07:34:09 GMT
## [8.0.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.14)
-Thu, 18 Mar 2021 20:15:34 GMT
+Thu, 18 Mar 2021 20:15:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.13..@fluentui/theme-samples_v8.0.14)
### Patches
@@ -3743,7 +3743,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
## [8.0.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.13)
-Thu, 18 Mar 2021 07:33:22 GMT
+Thu, 18 Mar 2021 07:33:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.12..@fluentui/theme-samples_v8.0.13)
### Patches
@@ -3752,7 +3752,7 @@ Thu, 18 Mar 2021 07:33:22 GMT
## [8.0.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.12)
-Wed, 17 Mar 2021 07:35:44 GMT
+Wed, 17 Mar 2021 07:35:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.11..@fluentui/theme-samples_v8.0.12)
### Patches
@@ -3761,7 +3761,7 @@ Wed, 17 Mar 2021 07:35:44 GMT
## [8.0.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.11)
-Tue, 16 Mar 2021 07:32:44 GMT
+Tue, 16 Mar 2021 07:32:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.10..@fluentui/theme-samples_v8.0.11)
### Patches
@@ -3770,7 +3770,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
## [8.0.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.10)
-Fri, 12 Mar 2021 20:04:27 GMT
+Fri, 12 Mar 2021 20:04:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.9..@fluentui/theme-samples_v8.0.10)
### Patches
@@ -3779,7 +3779,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
## [8.0.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.9)
-Thu, 11 Mar 2021 07:33:03 GMT
+Thu, 11 Mar 2021 07:33:03 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.8..@fluentui/theme-samples_v8.0.9)
### Patches
@@ -3788,7 +3788,7 @@ Thu, 11 Mar 2021 07:33:03 GMT
## [8.0.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.8)
-Wed, 10 Mar 2021 07:34:39 GMT
+Wed, 10 Mar 2021 07:34:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.7..@fluentui/theme-samples_v8.0.8)
### Patches
@@ -3797,7 +3797,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
## [8.0.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.7)
-Tue, 09 Mar 2021 07:32:29 GMT
+Tue, 09 Mar 2021 07:32:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.6..@fluentui/theme-samples_v8.0.7)
### Patches
@@ -3806,7 +3806,7 @@ Tue, 09 Mar 2021 07:32:29 GMT
## [8.0.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.6)
-Sun, 07 Mar 2021 23:34:51 GMT
+Sun, 07 Mar 2021 23:34:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.5..@fluentui/theme-samples_v8.0.6)
### Patches
@@ -3815,7 +3815,7 @@ Sun, 07 Mar 2021 23:34:51 GMT
## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.5)
-Wed, 03 Mar 2021 07:45:18 GMT
+Wed, 03 Mar 2021 07:45:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.4..@fluentui/theme-samples_v8.0.5)
### Patches
@@ -3824,7 +3824,7 @@ Wed, 03 Mar 2021 07:45:18 GMT
## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.4)
-Wed, 03 Mar 2021 00:10:09 GMT
+Wed, 03 Mar 2021 00:10:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.3..@fluentui/theme-samples_v8.0.4)
### Patches
@@ -3833,7 +3833,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.3)
-Tue, 02 Mar 2021 07:24:27 GMT
+Tue, 02 Mar 2021 07:24:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.2..@fluentui/theme-samples_v8.0.3)
### Patches
@@ -3842,7 +3842,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.2)
-Mon, 01 Mar 2021 07:20:46 GMT
+Mon, 01 Mar 2021 07:20:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.1..@fluentui/theme-samples_v8.0.2)
### Patches
@@ -3851,7 +3851,7 @@ Mon, 01 Mar 2021 07:20:46 GMT
## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.61..@fluentui/theme-samples_v8.0.1)
### Patches
@@ -3860,7 +3860,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [8.0.0-beta.61](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.61)
-Thu, 25 Feb 2021 20:16:39 GMT
+Thu, 25 Feb 2021 20:16:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.60..@fluentui/theme-samples_v8.0.0-beta.61)
### Changes
@@ -3869,7 +3869,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
## [8.0.0-beta.60](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.60)
-Thu, 25 Feb 2021 01:15:27 GMT
+Thu, 25 Feb 2021 01:15:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.59..@fluentui/theme-samples_v8.0.0-beta.60)
### Changes
@@ -3878,7 +3878,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
## [8.0.0-beta.59](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.59)
-Wed, 24 Feb 2021 07:19:56 GMT
+Wed, 24 Feb 2021 07:19:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.58..@fluentui/theme-samples_v8.0.0-beta.59)
### Changes
@@ -3887,7 +3887,7 @@ Wed, 24 Feb 2021 07:19:56 GMT
## [8.0.0-beta.58](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.58)
-Wed, 24 Feb 2021 00:05:29 GMT
+Wed, 24 Feb 2021 00:05:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.57..@fluentui/theme-samples_v8.0.0-beta.58)
### Changes
@@ -3896,7 +3896,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
## [8.0.0-beta.57](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.57)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.56..@fluentui/theme-samples_v8.0.0-beta.57)
### Changes
@@ -3905,7 +3905,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [8.0.0-beta.56](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.56)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.55..@fluentui/theme-samples_v8.0.0-beta.56)
### Changes
@@ -3914,7 +3914,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [8.0.0-beta.55](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.55)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.54..@fluentui/theme-samples_v8.0.0-beta.55)
### Changes
@@ -3923,7 +3923,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [8.0.0-beta.54](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.54)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.53..@fluentui/theme-samples_v8.0.0-beta.54)
### Changes
@@ -3932,7 +3932,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [8.0.0-beta.53](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.53)
-Fri, 12 Feb 2021 12:26:20 GMT
+Fri, 12 Feb 2021 12:26:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.52..@fluentui/theme-samples_v8.0.0-beta.53)
### Changes
@@ -3941,7 +3941,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
## [8.0.0-beta.52](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.52)
-Thu, 11 Feb 2021 00:58:10 GMT
+Thu, 11 Feb 2021 00:58:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.51..@fluentui/theme-samples_v8.0.0-beta.52)
### Changes
@@ -3950,7 +3950,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
## [8.0.0-beta.51](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.51)
-Wed, 10 Feb 2021 12:20:53 GMT
+Wed, 10 Feb 2021 12:20:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.50..@fluentui/theme-samples_v8.0.0-beta.51)
### Changes
@@ -3959,7 +3959,7 @@ Wed, 10 Feb 2021 12:20:53 GMT
## [8.0.0-beta.50](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.50)
-Tue, 09 Feb 2021 12:24:19 GMT
+Tue, 09 Feb 2021 12:24:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.49..@fluentui/theme-samples_v8.0.0-beta.50)
### Changes
@@ -3968,7 +3968,7 @@ Tue, 09 Feb 2021 12:24:19 GMT
## [8.0.0-beta.49](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.49)
-Tue, 09 Feb 2021 00:56:52 GMT
+Tue, 09 Feb 2021 00:56:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.48..@fluentui/theme-samples_v8.0.0-beta.49)
### Changes
@@ -3977,7 +3977,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
## [8.0.0-beta.48](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.48)
-Fri, 05 Feb 2021 12:20:17 GMT
+Fri, 05 Feb 2021 12:20:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.46..@fluentui/theme-samples_v8.0.0-beta.48)
### Changes
@@ -3986,7 +3986,7 @@ Fri, 05 Feb 2021 12:20:17 GMT
## [8.0.0-beta.43](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.43)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme-samples_v8.0.0-beta.0..@fluentui/theme-samples_v8.0.0-beta.43)
### Changes
@@ -3995,7 +3995,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme-samples_v8.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.1.20..@fluentui/theme-samples_v8.0.0-beta.0)
### Changes
@@ -4008,7 +4008,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
## [7.0.126](https://github.com/microsoft/fluentui/tree/@uifabric/theme-samples_v7.0.126)
-Tue, 18 Aug 2020 07:58:00 GMT
+Tue, 18 Aug 2020 07:58:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.0.104..@uifabric/theme-samples_v7.0.126)
### Patches
@@ -4017,7 +4017,7 @@ Tue, 18 Aug 2020 07:58:00 GMT
## [7.0.69](https://github.com/microsoft/fluentui/tree/@uifabric/theme-samples_v7.0.69)
-Thu, 07 May 2020 01:06:55 GMT
+Thu, 07 May 2020 01:06:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.0.67..@uifabric/theme-samples_v7.0.69)
### Patches
@@ -4026,7 +4026,7 @@ Thu, 07 May 2020 01:06:55 GMT
## [7.0.67](https://github.com/microsoft/fluentui/tree/@uifabric/theme-samples_v7.0.67)
-Tue, 05 May 2020 12:34:22 GMT
+Tue, 05 May 2020 12:34:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.0.64..@uifabric/theme-samples_v7.0.67)
### Patches
@@ -4035,7 +4035,7 @@ Tue, 05 May 2020 12:34:22 GMT
## [7.0.64](https://github.com/microsoft/fluentui/tree/@uifabric/theme-samples_v7.0.64)
-Thu, 30 Apr 2020 12:31:44 GMT
+Thu, 30 Apr 2020 12:31:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.0.60..@uifabric/theme-samples_v7.0.64)
### Patches
@@ -4044,7 +4044,7 @@ Thu, 30 Apr 2020 12:31:44 GMT
## [7.0.60](https://github.com/microsoft/fluentui/tree/@uifabric/theme-samples_v7.0.60)
-Fri, 24 Apr 2020 12:39:25 GMT
+Fri, 24 Apr 2020 12:39:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.0.52..@uifabric/theme-samples_v7.0.60)
### Patches
@@ -4053,7 +4053,7 @@ Fri, 24 Apr 2020 12:39:25 GMT
## [7.0.52](https://github.com/microsoft/fluentui/tree/@uifabric/theme-samples_v7.0.52)
-Thu, 16 Apr 2020 04:01:45 GMT
+Thu, 16 Apr 2020 04:01:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/theme-samples_v7.0.44..@uifabric/theme-samples_v7.0.52)
### Patches
diff --git a/packages/theme/CHANGELOG.md b/packages/theme/CHANGELOG.md
index 06c9ca8a980edd..0b2599f0634828 100644
--- a/packages/theme/CHANGELOG.md
+++ b/packages/theme/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m
## [2.6.47](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.47)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.46..@fluentui/theme_v2.6.47)
### Patches
@@ -17,7 +17,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [2.6.46](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.46)
-Mon, 22 Apr 2024 07:28:27 GMT
+Mon, 22 Apr 2024 07:28:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.45..@fluentui/theme_v2.6.46)
### Patches
@@ -27,7 +27,7 @@ Mon, 22 Apr 2024 07:28:27 GMT
## [2.6.45](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.45)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.44..@fluentui/theme_v2.6.45)
### Patches
@@ -38,7 +38,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [2.6.44](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.44)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.43..@fluentui/theme_v2.6.44)
### Patches
@@ -49,7 +49,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [2.6.43](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.43)
-Fri, 22 Mar 2024 07:28:53 GMT
+Fri, 22 Mar 2024 07:28:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.42..@fluentui/theme_v2.6.43)
### Patches
@@ -58,7 +58,7 @@ Fri, 22 Mar 2024 07:28:53 GMT
## [2.6.42](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.42)
-Wed, 13 Mar 2024 07:30:28 GMT
+Wed, 13 Mar 2024 07:30:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.41..@fluentui/theme_v2.6.42)
### Patches
@@ -68,7 +68,7 @@ Wed, 13 Mar 2024 07:30:28 GMT
## [2.6.41](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.41)
-Fri, 19 Jan 2024 07:29:32 GMT
+Fri, 19 Jan 2024 07:29:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.40..@fluentui/theme_v2.6.41)
### Patches
@@ -77,7 +77,7 @@ Fri, 19 Jan 2024 07:29:32 GMT
## [2.6.40](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.40)
-Wed, 10 Jan 2024 07:28:50 GMT
+Wed, 10 Jan 2024 07:28:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.39..@fluentui/theme_v2.6.40)
### Patches
@@ -88,7 +88,7 @@ Wed, 10 Jan 2024 07:28:50 GMT
## [2.6.39](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.39)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.38..@fluentui/theme_v2.6.39)
### Patches
@@ -99,7 +99,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [2.6.38](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.38)
-Thu, 09 Nov 2023 07:29:20 GMT
+Thu, 09 Nov 2023 07:29:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.37..@fluentui/theme_v2.6.38)
### Patches
@@ -108,7 +108,7 @@ Thu, 09 Nov 2023 07:29:20 GMT
## [2.6.37](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.37)
-Sat, 28 Oct 2023 00:29:16 GMT
+Sat, 28 Oct 2023 00:29:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.36..@fluentui/theme_v2.6.37)
### Patches
@@ -119,7 +119,7 @@ Sat, 28 Oct 2023 00:29:16 GMT
## [2.6.36](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.36)
-Fri, 29 Sep 2023 07:45:30 GMT
+Fri, 29 Sep 2023 07:45:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.35..@fluentui/theme_v2.6.36)
### Patches
@@ -128,7 +128,7 @@ Fri, 29 Sep 2023 07:45:30 GMT
## [2.6.35](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.35)
-Fri, 18 Aug 2023 07:35:26 GMT
+Fri, 18 Aug 2023 07:35:26 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.34..@fluentui/theme_v2.6.35)
### Patches
@@ -137,7 +137,7 @@ Fri, 18 Aug 2023 07:35:26 GMT
## [2.6.34](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.34)
-Wed, 28 Jun 2023 07:37:30 GMT
+Wed, 28 Jun 2023 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.33..@fluentui/theme_v2.6.34)
### Patches
@@ -146,7 +146,7 @@ Wed, 28 Jun 2023 07:37:30 GMT
## [2.6.33](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.33)
-Mon, 19 Jun 2023 07:36:39 GMT
+Mon, 19 Jun 2023 07:36:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.32..@fluentui/theme_v2.6.33)
### Patches
@@ -155,7 +155,7 @@ Mon, 19 Jun 2023 07:36:39 GMT
## [2.6.32](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.32)
-Thu, 01 Jun 2023 07:38:37 GMT
+Thu, 01 Jun 2023 07:38:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.31..@fluentui/theme_v2.6.32)
### Patches
@@ -164,7 +164,7 @@ Thu, 01 Jun 2023 07:38:37 GMT
## [2.6.31](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.31)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.30..@fluentui/theme_v2.6.31)
### Patches
@@ -175,7 +175,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [2.6.30](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.30)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.29..@fluentui/theme_v2.6.30)
### Patches
@@ -186,7 +186,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [2.6.29](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.29)
-Fri, 05 May 2023 18:14:01 GMT
+Fri, 05 May 2023 18:14:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.28..@fluentui/theme_v2.6.29)
### Patches
@@ -198,7 +198,7 @@ Fri, 05 May 2023 18:14:01 GMT
## [2.6.28](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.28)
-Tue, 02 May 2023 22:20:25 GMT
+Tue, 02 May 2023 22:20:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.27..@fluentui/theme_v2.6.28)
### Patches
@@ -207,7 +207,7 @@ Tue, 02 May 2023 22:20:25 GMT
## [2.6.27](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.27)
-Tue, 02 May 2023 00:58:18 GMT
+Tue, 02 May 2023 00:58:18 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.26..@fluentui/theme_v2.6.27)
### Patches
@@ -219,7 +219,7 @@ Tue, 02 May 2023 00:58:18 GMT
## [2.6.26](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.26)
-Mon, 01 May 2023 07:39:54 GMT
+Mon, 01 May 2023 07:39:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.25..@fluentui/theme_v2.6.26)
### Patches
@@ -230,7 +230,7 @@ Mon, 01 May 2023 07:39:54 GMT
## [2.6.25](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.25)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.24..@fluentui/theme_v2.6.25)
### Patches
@@ -241,7 +241,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [2.6.24](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.24)
-Wed, 01 Mar 2023 07:45:41 GMT
+Wed, 01 Mar 2023 07:45:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.23..@fluentui/theme_v2.6.24)
### Patches
@@ -250,7 +250,7 @@ Wed, 01 Mar 2023 07:45:41 GMT
## [2.6.23](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.23)
-Sat, 18 Feb 2023 01:37:02 GMT
+Sat, 18 Feb 2023 01:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.22..@fluentui/theme_v2.6.23)
### Patches
@@ -259,7 +259,7 @@ Sat, 18 Feb 2023 01:37:02 GMT
## [2.6.22](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.22)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.21..@fluentui/theme_v2.6.22)
### Patches
@@ -270,7 +270,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [2.6.21](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.21)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.20..@fluentui/theme_v2.6.21)
### Patches
@@ -281,7 +281,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [2.6.20](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.20)
-Tue, 20 Dec 2022 07:53:34 GMT
+Tue, 20 Dec 2022 07:53:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.19..@fluentui/theme_v2.6.20)
### Patches
@@ -290,7 +290,7 @@ Tue, 20 Dec 2022 07:53:34 GMT
## [2.6.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.19)
-Tue, 15 Nov 2022 07:44:59 GMT
+Tue, 15 Nov 2022 07:44:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.18..@fluentui/theme_v2.6.19)
### Patches
@@ -299,7 +299,7 @@ Tue, 15 Nov 2022 07:44:59 GMT
## [2.6.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.18)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.17..@fluentui/theme_v2.6.18)
### Patches
@@ -310,7 +310,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [2.6.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.17)
-Thu, 20 Oct 2022 07:43:13 GMT
+Thu, 20 Oct 2022 07:43:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.16..@fluentui/theme_v2.6.17)
### Patches
@@ -320,7 +320,7 @@ Thu, 20 Oct 2022 07:43:13 GMT
## [2.6.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.16)
-Fri, 02 Sep 2022 07:48:53 GMT
+Fri, 02 Sep 2022 07:48:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.15..@fluentui/theme_v2.6.16)
### Patches
@@ -329,7 +329,7 @@ Fri, 02 Sep 2022 07:48:53 GMT
## [2.6.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.15)
-Mon, 29 Aug 2022 07:44:38 GMT
+Mon, 29 Aug 2022 07:44:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.14..@fluentui/theme_v2.6.15)
### Patches
@@ -338,7 +338,7 @@ Mon, 29 Aug 2022 07:44:38 GMT
## [2.6.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.14)
-Wed, 24 Aug 2022 16:36:05 GMT
+Wed, 24 Aug 2022 16:36:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.13..@fluentui/theme_v2.6.14)
### Patches
@@ -347,7 +347,7 @@ Wed, 24 Aug 2022 16:36:05 GMT
## [2.6.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.13)
-Tue, 23 Aug 2022 07:22:49 GMT
+Tue, 23 Aug 2022 07:22:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.12..@fluentui/theme_v2.6.13)
### Patches
@@ -356,7 +356,7 @@ Tue, 23 Aug 2022 07:22:49 GMT
## [2.6.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.12)
-Thu, 18 Aug 2022 23:39:31 GMT
+Thu, 18 Aug 2022 23:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.11..@fluentui/theme_v2.6.12)
### Patches
@@ -365,7 +365,7 @@ Thu, 18 Aug 2022 23:39:31 GMT
## [2.6.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.11)
-Mon, 15 Aug 2022 07:39:41 GMT
+Mon, 15 Aug 2022 07:39:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.10..@fluentui/theme_v2.6.11)
### Patches
@@ -374,7 +374,7 @@ Mon, 15 Aug 2022 07:39:41 GMT
## [2.6.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.10)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.9..@fluentui/theme_v2.6.10)
### Patches
@@ -385,7 +385,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [2.6.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.9)
-Tue, 02 Aug 2022 07:44:44 GMT
+Tue, 02 Aug 2022 07:44:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.8..@fluentui/theme_v2.6.9)
### Patches
@@ -394,7 +394,7 @@ Tue, 02 Aug 2022 07:44:44 GMT
## [2.6.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.8)
-Tue, 26 Jul 2022 07:39:35 GMT
+Tue, 26 Jul 2022 07:39:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.7..@fluentui/theme_v2.6.8)
### Patches
@@ -403,7 +403,7 @@ Tue, 26 Jul 2022 07:39:35 GMT
## [2.6.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.7)
-Tue, 12 Jul 2022 07:41:00 GMT
+Tue, 12 Jul 2022 07:41:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.6..@fluentui/theme_v2.6.7)
### Patches
@@ -412,7 +412,7 @@ Tue, 12 Jul 2022 07:41:00 GMT
## [2.6.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.6)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.5..@fluentui/theme_v2.6.6)
### Patches
@@ -423,7 +423,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [2.6.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.5)
-Fri, 15 Apr 2022 07:42:48 GMT
+Fri, 15 Apr 2022 07:42:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.4..@fluentui/theme_v2.6.5)
### Patches
@@ -433,7 +433,7 @@ Fri, 15 Apr 2022 07:42:48 GMT
## [2.6.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.4)
-Tue, 15 Mar 2022 07:45:54 GMT
+Tue, 15 Mar 2022 07:45:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.3..@fluentui/theme_v2.6.4)
### Patches
@@ -442,7 +442,7 @@ Tue, 15 Mar 2022 07:45:54 GMT
## [2.6.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.3)
-Fri, 11 Mar 2022 07:34:41 GMT
+Fri, 11 Mar 2022 07:34:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.2..@fluentui/theme_v2.6.3)
### Patches
@@ -452,7 +452,7 @@ Fri, 11 Mar 2022 07:34:41 GMT
## [2.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.2)
-Thu, 10 Mar 2022 07:34:50 GMT
+Thu, 10 Mar 2022 07:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.1..@fluentui/theme_v2.6.2)
### Patches
@@ -461,7 +461,7 @@ Thu, 10 Mar 2022 07:34:50 GMT
## [2.6.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.1)
-Wed, 09 Mar 2022 07:37:30 GMT
+Wed, 09 Mar 2022 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.6.0..@fluentui/theme_v2.6.1)
### Patches
@@ -470,7 +470,7 @@ Wed, 09 Mar 2022 07:37:30 GMT
## [2.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.6.0)
-Tue, 08 Mar 2022 23:29:58 GMT
+Tue, 08 Mar 2022 23:29:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.5.0..@fluentui/theme_v2.6.0)
### Minor changes
@@ -479,7 +479,7 @@ Tue, 08 Mar 2022 23:29:58 GMT
## [2.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.5.0)
-Thu, 03 Mar 2022 07:24:25 GMT
+Thu, 03 Mar 2022 07:24:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.12..@fluentui/theme_v2.5.0)
### Minor changes
@@ -491,7 +491,7 @@ Thu, 03 Mar 2022 07:24:25 GMT
## [2.4.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.12)
-Tue, 01 Mar 2022 07:23:43 GMT
+Tue, 01 Mar 2022 07:23:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.11..@fluentui/theme_v2.4.12)
### Patches
@@ -500,7 +500,7 @@ Tue, 01 Mar 2022 07:23:43 GMT
## [2.4.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.11)
-Thu, 24 Feb 2022 07:29:50 GMT
+Thu, 24 Feb 2022 07:29:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.10..@fluentui/theme_v2.4.11)
### Patches
@@ -509,7 +509,7 @@ Thu, 24 Feb 2022 07:29:50 GMT
## [2.4.10](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.10)
-Thu, 17 Feb 2022 07:28:31 GMT
+Thu, 17 Feb 2022 07:28:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.9..@fluentui/theme_v2.4.10)
### Patches
@@ -518,7 +518,7 @@ Thu, 17 Feb 2022 07:28:31 GMT
## [2.4.9](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.9)
-Fri, 11 Feb 2022 07:27:49 GMT
+Fri, 11 Feb 2022 07:27:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.8..@fluentui/theme_v2.4.9)
### Patches
@@ -527,7 +527,7 @@ Fri, 11 Feb 2022 07:27:49 GMT
## [2.4.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.8)
-Wed, 09 Feb 2022 07:30:50 GMT
+Wed, 09 Feb 2022 07:30:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.7..@fluentui/theme_v2.4.8)
### Patches
@@ -536,7 +536,7 @@ Wed, 09 Feb 2022 07:30:50 GMT
## [2.4.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.7)
-Thu, 03 Feb 2022 07:29:41 GMT
+Thu, 03 Feb 2022 07:29:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.6..@fluentui/theme_v2.4.7)
### Patches
@@ -546,7 +546,7 @@ Thu, 03 Feb 2022 07:29:41 GMT
## [2.4.6](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.6)
-Mon, 03 Jan 2022 23:32:11 GMT
+Mon, 03 Jan 2022 23:32:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.5..@fluentui/theme_v2.4.6)
### Patches
@@ -556,7 +556,7 @@ Mon, 03 Jan 2022 23:32:11 GMT
## [2.4.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.5)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.4..@fluentui/theme_v2.4.5)
### Patches
@@ -565,7 +565,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [2.4.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.4)
-Thu, 25 Nov 2021 14:54:16 GMT
+Thu, 25 Nov 2021 14:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.3..@fluentui/theme_v2.4.4)
### Patches
@@ -576,7 +576,7 @@ Thu, 25 Nov 2021 14:54:16 GMT
## [2.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.3)
-Wed, 10 Nov 2021 07:31:59 GMT
+Wed, 10 Nov 2021 07:31:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.2..@fluentui/theme_v2.4.3)
### Patches
@@ -586,7 +586,7 @@ Wed, 10 Nov 2021 07:31:59 GMT
## [2.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.2)
-Tue, 02 Nov 2021 07:37:02 GMT
+Tue, 02 Nov 2021 07:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.1..@fluentui/theme_v2.4.2)
### Patches
@@ -595,7 +595,7 @@ Tue, 02 Nov 2021 07:37:02 GMT
## [2.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.1)
-Tue, 05 Oct 2021 07:37:17 GMT
+Tue, 05 Oct 2021 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.4.0..@fluentui/theme_v2.4.1)
### Patches
@@ -604,7 +604,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
## [2.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.4.0)
-Tue, 28 Sep 2021 22:17:07 GMT
+Tue, 28 Sep 2021 22:17:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.3.2..@fluentui/theme_v2.4.0)
### Minor changes
@@ -615,7 +615,7 @@ Tue, 28 Sep 2021 22:17:07 GMT
## [2.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.3.2)
-Thu, 02 Sep 2021 07:36:46 GMT
+Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.3.1..@fluentui/theme_v2.3.2)
### Patches
@@ -624,7 +624,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
## [2.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.3.1)
-Wed, 25 Aug 2021 07:35:19 GMT
+Wed, 25 Aug 2021 07:35:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.3.0..@fluentui/theme_v2.3.1)
### Patches
@@ -633,7 +633,7 @@ Wed, 25 Aug 2021 07:35:19 GMT
## [2.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.3.0)
-Tue, 24 Aug 2021 07:34:48 GMT
+Tue, 24 Aug 2021 07:34:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.2.2..@fluentui/theme_v2.3.0)
### Minor changes
@@ -642,7 +642,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
## [2.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.2.2)
-Thu, 19 Aug 2021 07:41:35 GMT
+Thu, 19 Aug 2021 07:41:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.2.1..@fluentui/theme_v2.2.2)
### Patches
@@ -651,7 +651,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
## [2.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.2.1)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.2.0..@fluentui/theme_v2.2.1)
### Patches
@@ -660,7 +660,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [2.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.2.0)
-Thu, 29 Jul 2021 07:35:37 GMT
+Thu, 29 Jul 2021 07:35:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.1.4..@fluentui/theme_v2.2.0)
### Minor changes
@@ -669,7 +669,7 @@ Thu, 29 Jul 2021 07:35:37 GMT
## [2.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.1.4)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.1.3..@fluentui/theme_v2.1.4)
### Patches
@@ -678,7 +678,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [2.1.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.1.3)
-Mon, 28 Jun 2021 07:35:16 GMT
+Mon, 28 Jun 2021 07:35:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.1.2..@fluentui/theme_v2.1.3)
### Patches
@@ -687,7 +687,7 @@ Mon, 28 Jun 2021 07:35:16 GMT
## [2.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.1.2)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.1.1..@fluentui/theme_v2.1.2)
### Patches
@@ -696,7 +696,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [2.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.1.1)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.1.0..@fluentui/theme_v2.1.1)
### Patches
@@ -705,7 +705,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [2.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.5..@fluentui/theme_v2.1.0)
### Minor changes
@@ -722,7 +722,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [2.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.5)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.4..@fluentui/theme_v2.0.5)
### Patches
@@ -731,7 +731,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [2.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.4)
-Tue, 13 Apr 2021 14:55:56 GMT
+Tue, 13 Apr 2021 14:55:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.3..@fluentui/theme_v2.0.4)
### Patches
@@ -740,7 +740,7 @@ Tue, 13 Apr 2021 14:55:56 GMT
## [2.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.3)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.2..@fluentui/theme_v2.0.3)
### Patches
@@ -749,7 +749,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [2.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.2)
-Wed, 03 Mar 2021 00:10:09 GMT
+Wed, 03 Mar 2021 00:10:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.1..@fluentui/theme_v2.0.2)
### Patches
@@ -758,7 +758,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
## [2.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.19..@fluentui/theme_v2.0.1)
### Patches
@@ -767,7 +767,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [2.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.19)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.18..@fluentui/theme_v2.0.0-beta.19)
### Changes
@@ -776,7 +776,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [2.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.18)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.17..@fluentui/theme_v2.0.0-beta.18)
### Changes
@@ -785,7 +785,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [2.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.17)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.16..@fluentui/theme_v2.0.0-beta.17)
### Changes
@@ -794,7 +794,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [2.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.16)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.15..@fluentui/theme_v2.0.0-beta.16)
### Changes
@@ -803,7 +803,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [2.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.15)
-Fri, 12 Feb 2021 12:26:20 GMT
+Fri, 12 Feb 2021 12:26:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.14..@fluentui/theme_v2.0.0-beta.15)
### Changes
@@ -812,7 +812,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
## [2.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.14)
-Thu, 11 Feb 2021 00:58:10 GMT
+Thu, 11 Feb 2021 00:58:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.13..@fluentui/theme_v2.0.0-beta.14)
### Changes
@@ -821,7 +821,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
## [2.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.13)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.12..@fluentui/theme_v2.0.0-beta.13)
### Changes
@@ -830,7 +830,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [2.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.12)
-Thu, 21 Jan 2021 12:36:12 GMT
+Thu, 21 Jan 2021 12:36:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.11..@fluentui/theme_v2.0.0-beta.12)
### Changes
@@ -839,7 +839,7 @@ Thu, 21 Jan 2021 12:36:12 GMT
## [2.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.11)
-Fri, 15 Jan 2021 12:30:40 GMT
+Fri, 15 Jan 2021 12:30:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.8..@fluentui/theme_v2.0.0-beta.11)
### Changes
@@ -848,7 +848,7 @@ Fri, 15 Jan 2021 12:30:40 GMT
## [2.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.8)
-Tue, 01 Dec 2020 12:38:05 GMT
+Tue, 01 Dec 2020 12:38:05 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.7..@fluentui/theme_v2.0.0-beta.8)
### Changes
@@ -857,7 +857,7 @@ Tue, 01 Dec 2020 12:38:05 GMT
## [2.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.7)
-Mon, 23 Nov 2020 12:31:40 GMT
+Mon, 23 Nov 2020 12:31:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.5..@fluentui/theme_v2.0.0-beta.7)
### Changes
@@ -866,7 +866,7 @@ Mon, 23 Nov 2020 12:31:40 GMT
## [2.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.5)
-Tue, 03 Nov 2020 12:32:23 GMT
+Tue, 03 Nov 2020 12:32:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.3..@fluentui/theme_v2.0.0-beta.5)
### Changes
@@ -875,7 +875,7 @@ Tue, 03 Nov 2020 12:32:23 GMT
## [2.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.3)
-Wed, 28 Oct 2020 12:32:24 GMT
+Wed, 28 Oct 2020 12:32:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v2.0.0-beta.0..@fluentui/theme_v2.0.0-beta.3)
### Changes
@@ -884,7 +884,7 @@ Wed, 28 Oct 2020 12:32:24 GMT
## [2.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v2.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v1.2.1..@fluentui/theme_v2.0.0-beta.0)
### Changes
@@ -904,7 +904,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
## [1.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v1.2.1)
-Sun, 27 Sep 2020 04:20:52 GMT
+Sun, 27 Sep 2020 04:20:52 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v1.2.0..@fluentui/theme_v1.2.1)
### Patches
@@ -914,7 +914,7 @@ Sun, 27 Sep 2020 04:20:52 GMT
## [1.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v1.2.0)
-Fri, 25 Sep 2020 12:25:17 GMT
+Fri, 25 Sep 2020 12:25:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v1.1.0..@fluentui/theme_v1.2.0)
### Minor changes
@@ -924,7 +924,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
## [1.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v1.1.0)
-Wed, 23 Sep 2020 12:27:48 GMT
+Wed, 23 Sep 2020 12:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v0.4.0..@fluentui/theme_v1.1.0)
### Minor changes
@@ -937,7 +937,7 @@ Wed, 23 Sep 2020 12:27:48 GMT
## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v0.4.0)
-Tue, 22 Sep 2020 12:25:45 GMT
+Tue, 22 Sep 2020 12:25:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v0.3.0..@fluentui/theme_v0.4.0)
### Minor changes
@@ -946,7 +946,7 @@ Tue, 22 Sep 2020 12:25:45 GMT
## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v0.3.0)
-Thu, 17 Sep 2020 12:25:04 GMT
+Thu, 17 Sep 2020 12:25:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v0.1.2..@fluentui/theme_v0.3.0)
### Minor changes
@@ -955,7 +955,7 @@ Thu, 17 Sep 2020 12:25:04 GMT
## [0.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/theme_v0.1.2)
-Wed, 26 Aug 2020 12:35:38 GMT
+Wed, 26 Aug 2020 12:35:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/theme_v0.1.1..@fluentui/theme_v0.1.2)
### Patches
diff --git a/packages/tokens/CHANGELOG.md b/packages/tokens/CHANGELOG.md
index e0a7bea8540d66..c7af2f526ef6a2 100644
--- a/packages/tokens/CHANGELOG.md
+++ b/packages/tokens/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Mon, 18 Mar 2024 19:50:46 GMT and should not be m
## [1.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.16)
-Mon, 18 Mar 2024 19:50:46 GMT
+Mon, 18 Mar 2024 19:50:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.15..@fluentui/tokens_v1.0.0-alpha.16)
### Changes
@@ -15,7 +15,7 @@ Mon, 18 Mar 2024 19:50:46 GMT
## [1.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.15)
-Fri, 15 Mar 2024 21:43:49 GMT
+Fri, 15 Mar 2024 21:43:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.14..@fluentui/tokens_v1.0.0-alpha.15)
### Changes
@@ -24,7 +24,7 @@ Fri, 15 Mar 2024 21:43:49 GMT
## [1.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.14)
-Thu, 07 Mar 2024 19:33:27 GMT
+Thu, 07 Mar 2024 19:33:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.13..@fluentui/tokens_v1.0.0-alpha.14)
### Changes
@@ -33,7 +33,7 @@ Thu, 07 Mar 2024 19:33:27 GMT
## [1.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.13)
-Thu, 09 Nov 2023 17:29:48 GMT
+Thu, 09 Nov 2023 17:29:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.12..@fluentui/tokens_v1.0.0-alpha.13)
### Changes
@@ -42,7 +42,7 @@ Thu, 09 Nov 2023 17:29:48 GMT
## [1.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.12)
-Wed, 01 Nov 2023 12:55:59 GMT
+Wed, 01 Nov 2023 12:55:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.11..@fluentui/tokens_v1.0.0-alpha.12)
### Changes
@@ -51,7 +51,7 @@ Wed, 01 Nov 2023 12:55:59 GMT
## [1.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.11)
-Tue, 26 Sep 2023 17:49:15 GMT
+Tue, 26 Sep 2023 17:49:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.10..@fluentui/tokens_v1.0.0-alpha.11)
### Changes
@@ -60,7 +60,7 @@ Tue, 26 Sep 2023 17:49:15 GMT
## [1.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.10)
-Tue, 26 Sep 2023 15:31:40 GMT
+Tue, 26 Sep 2023 15:31:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.9..@fluentui/tokens_v1.0.0-alpha.10)
### Changes
@@ -69,7 +69,7 @@ Tue, 26 Sep 2023 15:31:40 GMT
## [1.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.9)
-Tue, 05 Sep 2023 13:29:13 GMT
+Tue, 05 Sep 2023 13:29:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.8..@fluentui/tokens_v1.0.0-alpha.9)
### Changes
@@ -78,7 +78,7 @@ Tue, 05 Sep 2023 13:29:13 GMT
## [1.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.8)
-Wed, 09 Aug 2023 13:17:11 GMT
+Wed, 09 Aug 2023 13:17:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.7..@fluentui/tokens_v1.0.0-alpha.8)
### Changes
@@ -87,7 +87,7 @@ Wed, 09 Aug 2023 13:17:11 GMT
## [1.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.7)
-Fri, 04 Aug 2023 08:52:58 GMT
+Fri, 04 Aug 2023 08:52:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.6..@fluentui/tokens_v1.0.0-alpha.7)
### Changes
@@ -97,7 +97,7 @@ Fri, 04 Aug 2023 08:52:58 GMT
## [1.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.6)
-Tue, 20 Jun 2023 12:39:07 GMT
+Tue, 20 Jun 2023 12:39:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.5..@fluentui/tokens_v1.0.0-alpha.6)
### Changes
@@ -107,7 +107,7 @@ Tue, 20 Jun 2023 12:39:07 GMT
## [1.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.5)
-Fri, 12 May 2023 20:28:07 GMT
+Fri, 12 May 2023 20:28:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.4..@fluentui/tokens_v1.0.0-alpha.5)
### Changes
@@ -116,7 +116,7 @@ Fri, 12 May 2023 20:28:07 GMT
## [1.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.4)
-Tue, 21 Mar 2023 21:23:17 GMT
+Tue, 21 Mar 2023 21:23:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.3..@fluentui/tokens_v1.0.0-alpha.4)
### Changes
@@ -126,7 +126,7 @@ Tue, 21 Mar 2023 21:23:17 GMT
## [1.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.3)
-Wed, 15 Mar 2023 10:19:53 GMT
+Wed, 15 Mar 2023 10:19:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.2..@fluentui/tokens_v1.0.0-alpha.3)
### Changes
@@ -135,7 +135,7 @@ Wed, 15 Mar 2023 10:19:53 GMT
## [1.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/tokens_v1.0.0-alpha.2)
-Wed, 21 Dec 2022 10:20:33 GMT
+Wed, 21 Dec 2022 10:20:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/tokens_v1.0.0-alpha.1..@fluentui/tokens_v1.0.0-alpha.2)
### Changes
diff --git a/packages/utilities/CHANGELOG.md b/packages/utilities/CHANGELOG.md
index 0a01d2266bf03f..c30ae010861bfd 100644
--- a/packages/utilities/CHANGELOG.md
+++ b/packages/utilities/CHANGELOG.md
@@ -6,7 +6,7 @@ This log was last generated on Wed, 24 Apr 2024 07:27:48 GMT and should not be m
## [8.15.4](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.15.4)
-Wed, 24 Apr 2024 07:27:48 GMT
+Wed, 24 Apr 2024 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.15.3..@fluentui/utilities_v8.15.4)
### Patches
@@ -18,7 +18,7 @@ Wed, 24 Apr 2024 07:27:48 GMT
## [8.15.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.15.3)
-Mon, 22 Apr 2024 07:28:27 GMT
+Mon, 22 Apr 2024 07:28:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.15.2..@fluentui/utilities_v8.15.3)
### Patches
@@ -29,7 +29,7 @@ Mon, 22 Apr 2024 07:28:27 GMT
## [8.15.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.15.2)
-Fri, 12 Apr 2024 07:29:11 GMT
+Fri, 12 Apr 2024 07:29:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.15.1..@fluentui/utilities_v8.15.2)
### Patches
@@ -40,7 +40,7 @@ Fri, 12 Apr 2024 07:29:11 GMT
## [8.15.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.15.1)
-Wed, 03 Apr 2024 07:29:31 GMT
+Wed, 03 Apr 2024 07:29:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.15.0..@fluentui/utilities_v8.15.1)
### Patches
@@ -51,7 +51,7 @@ Wed, 03 Apr 2024 07:29:31 GMT
## [8.15.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.15.0)
-Fri, 22 Mar 2024 07:28:53 GMT
+Fri, 22 Mar 2024 07:28:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.14.0..@fluentui/utilities_v8.15.0)
### Minor changes
@@ -60,7 +60,7 @@ Fri, 22 Mar 2024 07:28:53 GMT
## [8.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.14.0)
-Wed, 13 Mar 2024 07:30:28 GMT
+Wed, 13 Mar 2024 07:30:28 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.24..@fluentui/utilities_v8.14.0)
### Minor changes
@@ -70,7 +70,7 @@ Wed, 13 Mar 2024 07:30:28 GMT
## [8.13.24](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.24)
-Fri, 19 Jan 2024 07:29:32 GMT
+Fri, 19 Jan 2024 07:29:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.23..@fluentui/utilities_v8.13.24)
### Patches
@@ -79,7 +79,7 @@ Fri, 19 Jan 2024 07:29:32 GMT
## [8.13.23](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.23)
-Wed, 10 Jan 2024 07:28:50 GMT
+Wed, 10 Jan 2024 07:28:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.22..@fluentui/utilities_v8.13.23)
### Patches
@@ -91,7 +91,7 @@ Wed, 10 Jan 2024 07:28:50 GMT
## [8.13.22](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.22)
-Thu, 14 Dec 2023 07:30:10 GMT
+Thu, 14 Dec 2023 07:30:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.21..@fluentui/utilities_v8.13.22)
### Patches
@@ -102,7 +102,7 @@ Thu, 14 Dec 2023 07:30:10 GMT
## [8.13.21](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.21)
-Thu, 09 Nov 2023 07:29:19 GMT
+Thu, 09 Nov 2023 07:29:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.20..@fluentui/utilities_v8.13.21)
### Patches
@@ -111,7 +111,7 @@ Thu, 09 Nov 2023 07:29:19 GMT
## [8.13.20](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.20)
-Sat, 28 Oct 2023 00:29:15 GMT
+Sat, 28 Oct 2023 00:29:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.19..@fluentui/utilities_v8.13.20)
### Patches
@@ -122,7 +122,7 @@ Sat, 28 Oct 2023 00:29:15 GMT
## [8.13.19](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.19)
-Fri, 29 Sep 2023 07:45:30 GMT
+Fri, 29 Sep 2023 07:45:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.18..@fluentui/utilities_v8.13.19)
### Patches
@@ -131,7 +131,7 @@ Fri, 29 Sep 2023 07:45:30 GMT
## [8.13.18](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.18)
-Wed, 28 Jun 2023 07:37:30 GMT
+Wed, 28 Jun 2023 07:37:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.17..@fluentui/utilities_v8.13.18)
### Patches
@@ -140,7 +140,7 @@ Wed, 28 Jun 2023 07:37:30 GMT
## [8.13.17](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.17)
-Mon, 19 Jun 2023 07:36:38 GMT
+Mon, 19 Jun 2023 07:36:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.16..@fluentui/utilities_v8.13.17)
### Patches
@@ -149,7 +149,7 @@ Mon, 19 Jun 2023 07:36:38 GMT
## [8.13.16](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.16)
-Thu, 01 Jun 2023 07:38:37 GMT
+Thu, 01 Jun 2023 07:38:37 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.15..@fluentui/utilities_v8.13.16)
### Patches
@@ -158,7 +158,7 @@ Thu, 01 Jun 2023 07:38:37 GMT
## [8.13.15](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.15)
-Wed, 31 May 2023 07:38:40 GMT
+Wed, 31 May 2023 07:38:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.14..@fluentui/utilities_v8.13.15)
### Patches
@@ -171,7 +171,7 @@ Wed, 31 May 2023 07:38:40 GMT
## [8.13.14](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.14)
-Tue, 30 May 2023 07:36:09 GMT
+Tue, 30 May 2023 07:36:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.13..@fluentui/utilities_v8.13.14)
### Patches
@@ -184,7 +184,7 @@ Tue, 30 May 2023 07:36:09 GMT
## [8.13.13](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.13)
-Fri, 05 May 2023 18:14:01 GMT
+Fri, 05 May 2023 18:14:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.12..@fluentui/utilities_v8.13.13)
### Patches
@@ -198,7 +198,7 @@ Fri, 05 May 2023 18:14:01 GMT
## [8.13.12](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.12)
-Tue, 02 May 2023 22:20:25 GMT
+Tue, 02 May 2023 22:20:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.11..@fluentui/utilities_v8.13.12)
### Patches
@@ -207,7 +207,7 @@ Tue, 02 May 2023 22:20:25 GMT
## [8.13.11](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.11)
-Tue, 02 May 2023 00:58:19 GMT
+Tue, 02 May 2023 00:58:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.10..@fluentui/utilities_v8.13.11)
### Patches
@@ -220,7 +220,7 @@ Tue, 02 May 2023 00:58:19 GMT
## [8.13.10](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.10)
-Mon, 01 May 2023 07:39:54 GMT
+Mon, 01 May 2023 07:39:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.9..@fluentui/utilities_v8.13.10)
### Patches
@@ -233,7 +233,7 @@ Mon, 01 May 2023 07:39:54 GMT
## [8.13.9](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.9)
-Fri, 17 Mar 2023 08:15:56 GMT
+Fri, 17 Mar 2023 08:15:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.8..@fluentui/utilities_v8.13.9)
### Patches
@@ -246,7 +246,7 @@ Fri, 17 Mar 2023 08:15:56 GMT
## [8.13.8](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.8)
-Wed, 01 Mar 2023 07:45:40 GMT
+Wed, 01 Mar 2023 07:45:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.7..@fluentui/utilities_v8.13.8)
### Patches
@@ -256,7 +256,7 @@ Wed, 01 Mar 2023 07:45:40 GMT
## [8.13.7](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.7)
-Sat, 18 Feb 2023 01:37:02 GMT
+Sat, 18 Feb 2023 01:37:02 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.6..@fluentui/utilities_v8.13.7)
### Patches
@@ -265,7 +265,7 @@ Sat, 18 Feb 2023 01:37:02 GMT
## [8.13.6](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.6)
-Fri, 03 Feb 2023 07:50:06 GMT
+Fri, 03 Feb 2023 07:50:06 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.5..@fluentui/utilities_v8.13.6)
### Patches
@@ -278,7 +278,7 @@ Fri, 03 Feb 2023 07:50:06 GMT
## [8.13.5](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.5)
-Tue, 10 Jan 2023 07:50:15 GMT
+Tue, 10 Jan 2023 07:50:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.4..@fluentui/utilities_v8.13.5)
### Patches
@@ -291,7 +291,7 @@ Tue, 10 Jan 2023 07:50:15 GMT
## [8.13.4](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.4)
-Tue, 15 Nov 2022 07:44:58 GMT
+Tue, 15 Nov 2022 07:44:58 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.3..@fluentui/utilities_v8.13.4)
### Patches
@@ -300,7 +300,7 @@ Tue, 15 Nov 2022 07:44:58 GMT
## [8.13.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.3)
-Wed, 09 Nov 2022 07:48:12 GMT
+Wed, 09 Nov 2022 07:48:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.2..@fluentui/utilities_v8.13.3)
### Patches
@@ -313,7 +313,7 @@ Wed, 09 Nov 2022 07:48:12 GMT
## [8.13.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.2)
-Thu, 20 Oct 2022 07:43:13 GMT
+Thu, 20 Oct 2022 07:43:13 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.1..@fluentui/utilities_v8.13.2)
### Patches
@@ -323,7 +323,7 @@ Thu, 20 Oct 2022 07:43:13 GMT
## [8.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.1)
-Fri, 02 Sep 2022 07:48:51 GMT
+Fri, 02 Sep 2022 07:48:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.13.0..@fluentui/utilities_v8.13.1)
### Patches
@@ -332,7 +332,7 @@ Fri, 02 Sep 2022 07:48:51 GMT
## [8.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.13.0)
-Mon, 29 Aug 2022 07:44:38 GMT
+Mon, 29 Aug 2022 07:44:38 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.12.0..@fluentui/utilities_v8.13.0)
### Minor changes
@@ -341,7 +341,7 @@ Mon, 29 Aug 2022 07:44:38 GMT
## [8.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.12.0)
-Thu, 18 Aug 2022 23:39:30 GMT
+Thu, 18 Aug 2022 23:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.11.0..@fluentui/utilities_v8.12.0)
### Minor changes
@@ -354,7 +354,7 @@ Thu, 18 Aug 2022 23:39:30 GMT
## [8.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.11.0)
-Mon, 15 Aug 2022 07:39:40 GMT
+Mon, 15 Aug 2022 07:39:40 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.10.2..@fluentui/utilities_v8.11.0)
### Minor changes
@@ -363,7 +363,7 @@ Mon, 15 Aug 2022 07:39:40 GMT
## [8.10.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.10.2)
-Mon, 08 Aug 2022 07:39:33 GMT
+Mon, 08 Aug 2022 07:39:33 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.10.1..@fluentui/utilities_v8.10.2)
### Patches
@@ -376,7 +376,7 @@ Mon, 08 Aug 2022 07:39:33 GMT
## [8.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.10.1)
-Tue, 02 Aug 2022 07:44:44 GMT
+Tue, 02 Aug 2022 07:44:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.10.0..@fluentui/utilities_v8.10.1)
### Patches
@@ -385,7 +385,7 @@ Tue, 02 Aug 2022 07:44:44 GMT
## [8.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.10.0)
-Tue, 26 Jul 2022 07:39:35 GMT
+Tue, 26 Jul 2022 07:39:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.9.0..@fluentui/utilities_v8.10.0)
### Minor changes
@@ -394,7 +394,7 @@ Tue, 26 Jul 2022 07:39:35 GMT
## [8.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.9.0)
-Tue, 12 Jul 2022 07:40:59 GMT
+Tue, 12 Jul 2022 07:40:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.8.3..@fluentui/utilities_v8.9.0)
### Minor changes
@@ -403,7 +403,7 @@ Tue, 12 Jul 2022 07:40:59 GMT
## [8.8.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.8.3)
-Fri, 13 May 2022 07:45:35 GMT
+Fri, 13 May 2022 07:45:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.8.2..@fluentui/utilities_v8.8.3)
### Patches
@@ -416,7 +416,7 @@ Fri, 13 May 2022 07:45:35 GMT
## [8.8.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.8.2)
-Fri, 15 Apr 2022 07:42:48 GMT
+Fri, 15 Apr 2022 07:42:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.8.1..@fluentui/utilities_v8.8.2)
### Patches
@@ -426,7 +426,7 @@ Fri, 15 Apr 2022 07:42:48 GMT
## [8.8.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.8.1)
-Tue, 15 Mar 2022 07:45:54 GMT
+Tue, 15 Mar 2022 07:45:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.8.0..@fluentui/utilities_v8.8.1)
### Patches
@@ -435,7 +435,7 @@ Tue, 15 Mar 2022 07:45:54 GMT
## [8.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.8.0)
-Fri, 11 Mar 2022 07:34:41 GMT
+Fri, 11 Mar 2022 07:34:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.7.0..@fluentui/utilities_v8.8.0)
### Minor changes
@@ -446,7 +446,7 @@ Fri, 11 Mar 2022 07:34:41 GMT
## [8.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.7.0)
-Wed, 09 Mar 2022 07:37:29 GMT
+Wed, 09 Mar 2022 07:37:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.6.0..@fluentui/utilities_v8.7.0)
### Minor changes
@@ -455,7 +455,7 @@ Wed, 09 Mar 2022 07:37:29 GMT
## [8.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.6.0)
-Thu, 03 Mar 2022 07:24:25 GMT
+Thu, 03 Mar 2022 07:24:25 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.5.0..@fluentui/utilities_v8.6.0)
### Minor changes
@@ -468,7 +468,7 @@ Thu, 03 Mar 2022 07:24:25 GMT
## [8.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.5.0)
-Tue, 01 Mar 2022 07:23:42 GMT
+Tue, 01 Mar 2022 07:23:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.4.3..@fluentui/utilities_v8.5.0)
### Minor changes
@@ -477,7 +477,7 @@ Tue, 01 Mar 2022 07:23:42 GMT
## [8.4.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.4.3)
-Thu, 24 Feb 2022 07:29:50 GMT
+Thu, 24 Feb 2022 07:29:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.4.2..@fluentui/utilities_v8.4.3)
### Patches
@@ -486,7 +486,7 @@ Thu, 24 Feb 2022 07:29:50 GMT
## [8.4.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.4.2)
-Thu, 17 Feb 2022 07:28:31 GMT
+Thu, 17 Feb 2022 07:28:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.4.1..@fluentui/utilities_v8.4.2)
### Patches
@@ -495,7 +495,7 @@ Thu, 17 Feb 2022 07:28:31 GMT
## [8.4.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.4.1)
-Fri, 11 Feb 2022 07:27:48 GMT
+Fri, 11 Feb 2022 07:27:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.4.0..@fluentui/utilities_v8.4.1)
### Patches
@@ -504,7 +504,7 @@ Fri, 11 Feb 2022 07:27:48 GMT
## [8.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.4.0)
-Wed, 09 Feb 2022 07:30:50 GMT
+Wed, 09 Feb 2022 07:30:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.10..@fluentui/utilities_v8.4.0)
### Minor changes
@@ -513,7 +513,7 @@ Wed, 09 Feb 2022 07:30:50 GMT
## [8.3.10](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.10)
-Thu, 03 Feb 2022 07:29:41 GMT
+Thu, 03 Feb 2022 07:29:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.9..@fluentui/utilities_v8.3.10)
### Patches
@@ -523,7 +523,7 @@ Thu, 03 Feb 2022 07:29:41 GMT
## [8.3.9](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.9)
-Mon, 03 Jan 2022 23:32:11 GMT
+Mon, 03 Jan 2022 23:32:11 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.8..@fluentui/utilities_v8.3.9)
### Patches
@@ -533,7 +533,7 @@ Mon, 03 Jan 2022 23:32:11 GMT
## [8.3.8](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.8)
-Wed, 15 Dec 2021 07:31:29 GMT
+Wed, 15 Dec 2021 07:31:29 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.7..@fluentui/utilities_v8.3.8)
### Patches
@@ -542,7 +542,7 @@ Wed, 15 Dec 2021 07:31:29 GMT
## [8.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.7)
-Thu, 25 Nov 2021 14:54:16 GMT
+Thu, 25 Nov 2021 14:54:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.6..@fluentui/utilities_v8.3.7)
### Patches
@@ -555,7 +555,7 @@ Thu, 25 Nov 2021 14:54:16 GMT
## [8.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.6)
-Wed, 10 Nov 2021 07:31:59 GMT
+Wed, 10 Nov 2021 07:31:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.5..@fluentui/utilities_v8.3.6)
### Patches
@@ -565,7 +565,7 @@ Wed, 10 Nov 2021 07:31:59 GMT
## [8.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.5)
-Tue, 02 Nov 2021 07:37:01 GMT
+Tue, 02 Nov 2021 07:37:01 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.4..@fluentui/utilities_v8.3.5)
### Patches
@@ -574,7 +574,7 @@ Tue, 02 Nov 2021 07:37:01 GMT
## [8.3.4](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.4)
-Tue, 05 Oct 2021 07:37:17 GMT
+Tue, 05 Oct 2021 07:37:17 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.3..@fluentui/utilities_v8.3.4)
### Patches
@@ -583,7 +583,7 @@ Tue, 05 Oct 2021 07:37:17 GMT
## [8.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.3)
-Tue, 28 Sep 2021 22:17:07 GMT
+Tue, 28 Sep 2021 22:17:07 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.2..@fluentui/utilities_v8.3.3)
### Patches
@@ -593,7 +593,7 @@ Tue, 28 Sep 2021 22:17:07 GMT
## [8.3.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.2)
-Thu, 02 Sep 2021 07:36:46 GMT
+Thu, 02 Sep 2021 07:36:46 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.1..@fluentui/utilities_v8.3.2)
### Patches
@@ -602,7 +602,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
## [8.3.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.1)
-Wed, 25 Aug 2021 07:35:19 GMT
+Wed, 25 Aug 2021 07:35:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.3.0..@fluentui/utilities_v8.3.1)
### Patches
@@ -611,7 +611,7 @@ Wed, 25 Aug 2021 07:35:19 GMT
## [8.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.3.0)
-Thu, 19 Aug 2021 07:41:35 GMT
+Thu, 19 Aug 2021 07:41:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.2.2..@fluentui/utilities_v8.3.0)
### Minor changes
@@ -620,7 +620,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
## [8.2.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.2.2)
-Tue, 03 Aug 2021 07:39:30 GMT
+Tue, 03 Aug 2021 07:39:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.2.1..@fluentui/utilities_v8.2.2)
### Patches
@@ -629,7 +629,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
## [8.2.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.2.1)
-Fri, 09 Jul 2021 07:39:31 GMT
+Fri, 09 Jul 2021 07:39:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.2.0..@fluentui/utilities_v8.2.1)
### Patches
@@ -638,7 +638,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
## [8.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.2.0)
-Mon, 28 Jun 2021 07:35:16 GMT
+Mon, 28 Jun 2021 07:35:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.1.2..@fluentui/utilities_v8.2.0)
### Minor changes
@@ -647,7 +647,7 @@ Mon, 28 Jun 2021 07:35:16 GMT
## [8.1.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.1.2)
-Mon, 07 Jun 2021 07:38:15 GMT
+Mon, 07 Jun 2021 07:38:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.1.1..@fluentui/utilities_v8.1.2)
### Patches
@@ -656,7 +656,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
## [8.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.1.1)
-Thu, 20 May 2021 07:41:54 GMT
+Thu, 20 May 2021 07:41:54 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.1.0..@fluentui/utilities_v8.1.1)
### Patches
@@ -665,7 +665,7 @@ Thu, 20 May 2021 07:41:54 GMT
## [8.1.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.1.0)
-Fri, 30 Apr 2021 07:42:23 GMT
+Fri, 30 Apr 2021 07:42:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.5..@fluentui/utilities_v8.1.0)
### Minor changes
@@ -684,7 +684,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
## [8.0.5](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.5)
-Fri, 23 Apr 2021 07:37:10 GMT
+Fri, 23 Apr 2021 07:37:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.4..@fluentui/utilities_v8.0.5)
### Patches
@@ -693,7 +693,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
## [8.0.4](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.4)
-Tue, 13 Apr 2021 14:55:56 GMT
+Tue, 13 Apr 2021 14:55:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.3..@fluentui/utilities_v8.0.4)
### Patches
@@ -702,7 +702,7 @@ Tue, 13 Apr 2021 14:55:56 GMT
## [8.0.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.3)
-Wed, 31 Mar 2021 00:53:43 GMT
+Wed, 31 Mar 2021 00:53:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.2..@fluentui/utilities_v8.0.3)
### Patches
@@ -711,7 +711,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
## [8.0.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.2)
-Wed, 03 Mar 2021 00:10:09 GMT
+Wed, 03 Mar 2021 00:10:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.1..@fluentui/utilities_v8.0.2)
### Patches
@@ -720,7 +720,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
## [8.0.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.1)
-Fri, 26 Feb 2021 01:16:27 GMT
+Fri, 26 Feb 2021 01:16:27 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.15..@fluentui/utilities_v8.0.1)
### Patches
@@ -729,7 +729,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
## [8.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.15)
-Mon, 22 Feb 2021 12:26:22 GMT
+Mon, 22 Feb 2021 12:26:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.14..@fluentui/utilities_v8.0.0-beta.15)
### Changes
@@ -738,7 +738,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
## [8.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.14)
-Thu, 18 Feb 2021 19:38:50 GMT
+Thu, 18 Feb 2021 19:38:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.13..@fluentui/utilities_v8.0.0-beta.14)
### Changes
@@ -747,7 +747,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
## [8.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.13)
-Thu, 18 Feb 2021 12:27:34 GMT
+Thu, 18 Feb 2021 12:27:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.12..@fluentui/utilities_v8.0.0-beta.13)
### Changes
@@ -756,7 +756,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
## [8.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.12)
-Mon, 15 Feb 2021 12:22:00 GMT
+Mon, 15 Feb 2021 12:22:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.11..@fluentui/utilities_v8.0.0-beta.12)
### Changes
@@ -765,7 +765,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
## [8.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.11)
-Thu, 11 Feb 2021 00:58:10 GMT
+Thu, 11 Feb 2021 00:58:10 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.10..@fluentui/utilities_v8.0.0-beta.11)
### Changes
@@ -774,7 +774,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
## [8.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.10)
-Thu, 28 Jan 2021 12:25:56 GMT
+Thu, 28 Jan 2021 12:25:56 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.9..@fluentui/utilities_v8.0.0-beta.10)
### Changes
@@ -783,7 +783,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
## [8.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.9)
-Thu, 21 Jan 2021 12:36:12 GMT
+Thu, 21 Jan 2021 12:36:12 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.6..@fluentui/utilities_v8.0.0-beta.9)
### Changes
@@ -792,7 +792,7 @@ Thu, 21 Jan 2021 12:36:12 GMT
## [8.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.6)
-Wed, 11 Nov 2020 12:30:44 GMT
+Wed, 11 Nov 2020 12:30:44 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.5..@fluentui/utilities_v8.0.0-beta.6)
### Changes
@@ -801,7 +801,7 @@ Wed, 11 Nov 2020 12:30:44 GMT
## [8.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.5)
-Tue, 03 Nov 2020 12:32:23 GMT
+Tue, 03 Nov 2020 12:32:23 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.4..@fluentui/utilities_v8.0.0-beta.5)
### Changes
@@ -810,7 +810,7 @@ Tue, 03 Nov 2020 12:32:23 GMT
## [8.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.4)
-Mon, 02 Nov 2020 12:32:47 GMT
+Mon, 02 Nov 2020 12:32:47 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.3..@fluentui/utilities_v8.0.0-beta.4)
### Changes
@@ -819,7 +819,7 @@ Mon, 02 Nov 2020 12:32:47 GMT
## [8.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.3)
-Wed, 28 Oct 2020 12:32:24 GMT
+Wed, 28 Oct 2020 12:32:24 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.2..@fluentui/utilities_v8.0.0-beta.3)
### Changes
@@ -828,7 +828,7 @@ Wed, 28 Oct 2020 12:32:24 GMT
## [8.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.2)
-Tue, 27 Oct 2020 12:35:09 GMT
+Tue, 27 Oct 2020 12:35:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.1..@fluentui/utilities_v8.0.0-beta.2)
### Changes
@@ -837,7 +837,7 @@ Tue, 27 Oct 2020 12:35:09 GMT
## [8.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.1)
-Mon, 26 Oct 2020 12:39:59 GMT
+Mon, 26 Oct 2020 12:39:59 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/utilities_v8.0.0-beta.0..@fluentui/utilities_v8.0.0-beta.1)
### Changes
@@ -846,7 +846,7 @@ Mon, 26 Oct 2020 12:39:59 GMT
## [8.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/utilities_v8.0.0-beta.0)
-Fri, 23 Oct 2020 03:26:15 GMT
+Fri, 23 Oct 2020 03:26:15 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.32.3..@fluentui/utilities_v8.0.0-beta.0)
### Changes
@@ -861,7 +861,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
## [7.32.3](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.32.3)
-Tue, 22 Sep 2020 12:25:45 GMT
+Tue, 22 Sep 2020 12:25:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.32.0..@uifabric/utilities_v7.32.3)
### Patches
@@ -870,7 +870,7 @@ Tue, 22 Sep 2020 12:25:45 GMT
## [7.32.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.32.0)
-Wed, 16 Sep 2020 12:27:22 GMT
+Wed, 16 Sep 2020 12:27:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.31.0..@uifabric/utilities_v7.32.0)
### Minor changes
@@ -879,7 +879,7 @@ Wed, 16 Sep 2020 12:27:22 GMT
## [7.30.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.30.0)
-Tue, 25 Aug 2020 12:36:19 GMT
+Tue, 25 Aug 2020 12:36:19 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.28.0..@uifabric/utilities_v7.30.0)
### Minor changes
@@ -892,7 +892,7 @@ Tue, 25 Aug 2020 12:36:19 GMT
## [7.28.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.28.0)
-Fri, 14 Aug 2020 12:43:53 GMT
+Fri, 14 Aug 2020 12:43:53 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.27.0..@uifabric/utilities_v7.28.0)
### Minor changes
@@ -901,7 +901,7 @@ Fri, 14 Aug 2020 12:43:53 GMT
## [7.27.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.27.0)
-Mon, 10 Aug 2020 06:19:21 GMT
+Mon, 10 Aug 2020 06:19:21 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.26.1..@uifabric/utilities_v7.27.0)
### Minor changes
@@ -911,7 +911,7 @@ Mon, 10 Aug 2020 06:19:21 GMT
## [7.26.1](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.26.1)
-Fri, 07 Aug 2020 12:40:14 GMT
+Fri, 07 Aug 2020 12:40:14 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.26.0..@uifabric/utilities_v7.26.1)
### Patches
@@ -920,7 +920,7 @@ Fri, 07 Aug 2020 12:40:14 GMT
## [7.26.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.26.0)
-Thu, 06 Aug 2020 12:40:48 GMT
+Thu, 06 Aug 2020 12:40:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.25.1..@uifabric/utilities_v7.26.0)
### Minor changes
@@ -929,7 +929,7 @@ Thu, 06 Aug 2020 12:40:48 GMT
## [7.25.1](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.25.1)
-Tue, 04 Aug 2020 12:42:32 GMT
+Tue, 04 Aug 2020 12:42:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.25.0..@uifabric/utilities_v7.25.1)
### Patches
@@ -938,7 +938,7 @@ Tue, 04 Aug 2020 12:42:32 GMT
## [7.25.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.25.0)
-Mon, 03 Aug 2020 12:45:42 GMT
+Mon, 03 Aug 2020 12:45:42 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.24.6..@uifabric/utilities_v7.25.0)
### Minor changes
@@ -947,7 +947,7 @@ Mon, 03 Aug 2020 12:45:42 GMT
## [7.24.6](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.24.6)
-Fri, 31 Jul 2020 12:47:45 GMT
+Fri, 31 Jul 2020 12:47:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.24.5..@uifabric/utilities_v7.24.6)
### Patches
@@ -956,7 +956,7 @@ Fri, 31 Jul 2020 12:47:45 GMT
## [7.24.5](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.24.5)
-Wed, 22 Jul 2020 12:40:51 GMT
+Wed, 22 Jul 2020 12:40:51 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.24.4..@uifabric/utilities_v7.24.5)
### Patches
@@ -965,7 +965,7 @@ Wed, 22 Jul 2020 12:40:51 GMT
## [7.24.3](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.24.3)
-Fri, 17 Jul 2020 12:38:41 GMT
+Fri, 17 Jul 2020 12:38:41 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.24.2..@uifabric/utilities_v7.24.3)
### Patches
@@ -974,7 +974,7 @@ Fri, 17 Jul 2020 12:38:41 GMT
## [7.24.1](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.24.1)
-Mon, 13 Jul 2020 23:14:39 GMT
+Mon, 13 Jul 2020 23:14:39 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.24.0..@uifabric/utilities_v7.24.1)
### Patches
@@ -983,7 +983,7 @@ Mon, 13 Jul 2020 23:14:39 GMT
## [7.24.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.24.0)
-Thu, 09 Jul 2020 21:59:04 GMT
+Thu, 09 Jul 2020 21:59:04 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.23.0..@uifabric/utilities_v7.24.0)
### Minor changes
@@ -992,7 +992,7 @@ Thu, 09 Jul 2020 21:59:04 GMT
## [7.23.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.23.0)
-Fri, 03 Jul 2020 12:36:49 GMT
+Fri, 03 Jul 2020 12:36:49 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.22.0..@uifabric/utilities_v7.23.0)
### Minor changes
@@ -1001,7 +1001,7 @@ Fri, 03 Jul 2020 12:36:49 GMT
## [7.22.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.22.0)
-Tue, 30 Jun 2020 12:33:36 GMT
+Tue, 30 Jun 2020 12:33:36 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.21.4..@uifabric/utilities_v7.22.0)
### Minor changes
@@ -1010,7 +1010,7 @@ Tue, 30 Jun 2020 12:33:36 GMT
## [7.21.4](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.21.4)
-Mon, 29 Jun 2020 12:36:08 GMT
+Mon, 29 Jun 2020 12:36:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.21.3..@uifabric/utilities_v7.21.4)
### Patches
@@ -1019,7 +1019,7 @@ Mon, 29 Jun 2020 12:36:08 GMT
## [7.21.1](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.21.1)
-Mon, 22 Jun 2020 12:42:16 GMT
+Mon, 22 Jun 2020 12:42:16 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.21.0..@uifabric/utilities_v7.21.1)
### Patches
@@ -1028,7 +1028,7 @@ Mon, 22 Jun 2020 12:42:16 GMT
## [7.21.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.21.0)
-Mon, 15 Jun 2020 12:45:48 GMT
+Mon, 15 Jun 2020 12:45:48 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.20.3..@uifabric/utilities_v7.21.0)
### Minor changes
@@ -1037,7 +1037,7 @@ Mon, 15 Jun 2020 12:45:48 GMT
## [7.20.3](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.20.3)
-Tue, 02 Jun 2020 12:36:30 GMT
+Tue, 02 Jun 2020 12:36:30 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.20.2..@uifabric/utilities_v7.20.3)
### Patches
@@ -1048,7 +1048,7 @@ Tue, 02 Jun 2020 12:36:30 GMT
## [7.20.2](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.20.2)
-Thu, 28 May 2020 12:42:08 GMT
+Thu, 28 May 2020 12:42:08 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.20.1..@uifabric/utilities_v7.20.2)
### Patches
@@ -1057,7 +1057,7 @@ Thu, 28 May 2020 12:42:08 GMT
## [7.20.1](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.20.1)
-Wed, 27 May 2020 12:40:00 GMT
+Wed, 27 May 2020 12:40:00 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.20.0..@uifabric/utilities_v7.20.1)
### Patches
@@ -1066,7 +1066,7 @@ Wed, 27 May 2020 12:40:00 GMT
## [7.20.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.20.0)
-Mon, 25 May 2020 12:38:22 GMT
+Mon, 25 May 2020 12:38:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.19.0..@uifabric/utilities_v7.20.0)
### Minor changes
@@ -1075,7 +1075,7 @@ Mon, 25 May 2020 12:38:22 GMT
## [7.19.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.19.0)
-Fri, 22 May 2020 12:37:35 GMT
+Fri, 22 May 2020 12:37:35 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.18.0..@uifabric/utilities_v7.19.0)
### Minor changes
@@ -1084,7 +1084,7 @@ Fri, 22 May 2020 12:37:35 GMT
## [7.18.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.18.0)
-Thu, 21 May 2020 12:34:43 GMT
+Thu, 21 May 2020 12:34:43 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.17.2..@uifabric/utilities_v7.18.0)
### Minor changes
@@ -1093,7 +1093,7 @@ Thu, 21 May 2020 12:34:43 GMT
## [7.17.2](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.17.2)
-Fri, 15 May 2020 12:42:20 GMT
+Fri, 15 May 2020 12:42:20 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.17.0..@uifabric/utilities_v7.17.2)
### Patches
@@ -1102,7 +1102,7 @@ Fri, 15 May 2020 12:42:20 GMT
## [7.17.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.17.0)
-Thu, 14 May 2020 12:34:32 GMT
+Thu, 14 May 2020 12:34:32 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.16.4..@uifabric/utilities_v7.17.0)
### Minor changes
@@ -1111,7 +1111,7 @@ Thu, 14 May 2020 12:34:32 GMT
## [7.16.4](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.16.4)
-Mon, 11 May 2020 12:36:34 GMT
+Mon, 11 May 2020 12:36:34 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.16.2..@uifabric/utilities_v7.16.4)
### Patches
@@ -1120,7 +1120,7 @@ Mon, 11 May 2020 12:36:34 GMT
## [7.16.2](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.16.2)
-Thu, 07 May 2020 01:06:55 GMT
+Thu, 07 May 2020 01:06:55 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.16.1..@uifabric/utilities_v7.16.2)
### Patches
@@ -1129,7 +1129,7 @@ Thu, 07 May 2020 01:06:55 GMT
## [7.16.1](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.16.1)
-Tue, 05 May 2020 12:34:22 GMT
+Tue, 05 May 2020 12:34:22 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.16.0..@uifabric/utilities_v7.16.1)
### Patches
@@ -1138,7 +1138,7 @@ Tue, 05 May 2020 12:34:22 GMT
## [7.16.0](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.16.0)
-Tue, 28 Apr 2020 12:34:09 GMT
+Tue, 28 Apr 2020 12:34:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.15.11..@uifabric/utilities_v7.16.0)
### Minor changes
@@ -1147,7 +1147,7 @@ Tue, 28 Apr 2020 12:34:09 GMT
## [7.15.11](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.15.11)
-Tue, 21 Apr 2020 12:34:50 GMT
+Tue, 21 Apr 2020 12:34:50 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.15.10..@uifabric/utilities_v7.15.11)
### Patches
@@ -1158,7 +1158,7 @@ Tue, 21 Apr 2020 12:34:50 GMT
## [7.15.10](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.15.10)
-Sun, 19 Apr 2020 02:02:09 GMT
+Sun, 19 Apr 2020 02:02:09 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.15.8..@uifabric/utilities_v7.15.10)
### Patches
@@ -1167,7 +1167,7 @@ Sun, 19 Apr 2020 02:02:09 GMT
## [7.15.8](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.15.8)
-Thu, 16 Apr 2020 12:37:31 GMT
+Thu, 16 Apr 2020 12:37:31 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.15.7..@uifabric/utilities_v7.15.8)
### Patches
@@ -1176,7 +1176,7 @@ Thu, 16 Apr 2020 12:37:31 GMT
## [7.15.7](https://github.com/microsoft/fluentui/tree/@uifabric/utilities_v7.15.7)
-Thu, 16 Apr 2020 04:01:45 GMT
+Thu, 16 Apr 2020 04:01:45 GMT
[Compare changes](https://github.com/microsoft/fluentui/compare/@uifabric/utilities_v7.15.6..@uifabric/utilities_v7.15.7)
### Patches
diff --git a/packages/web-components/CHANGELOG.json b/packages/web-components/CHANGELOG.json
index 5ec4f66b5f7245..6a43c383f46abb 100644
--- a/packages/web-components/CHANGELOG.json
+++ b/packages/web-components/CHANGELOG.json
@@ -226,6 +226,81 @@
]
}
},
+ {
+ "date": "Thu, 26 Jan 2023 07:35:32 GMT",
+ "tag": "@fluentui/web-components_v2.5.12",
+ "version": "2.5.12",
+ "comments": {
+ "patch": [
+ {
+ "author": "martinhochel@microsoft.com",
+ "package": "@fluentui/web-components",
+ "commit": "c5ad495ac5b9f4a10906f241b6b4ce54dbd9e7d1",
+ "comment": "feat: bump tslib to 2.1 to align with rest of monorepo packages"
+ }
+ ]
+ }
+ },
+ {
+ "date": "Wed, 11 Jan 2023 07:50:49 GMT",
+ "tag": "@fluentui/web-components_v2.5.11",
+ "version": "2.5.11",
+ "comments": {
+ "patch": [
+ {
+ "author": "mgodbolt@microsoft.com",
+ "package": "@fluentui/web-components",
+ "commit": "854d1159c9a57d496f6db1ab9f20885136d20cc6",
+ "comment": "chore: upgrade version of storybook"
+ }
+ ]
+ }
+ },
+ {
+ "date": "Tue, 10 Jan 2023 07:50:14 GMT",
+ "tag": "@fluentui/web-components_v2.5.10",
+ "version": "2.5.10",
+ "comments": {
+ "patch": [
+ {
+ "author": "jes@microsoft.com",
+ "package": "@fluentui/web-components",
+ "commit": "49ead1dcd8c34cf87b151e0c0cc7bd716260f22f",
+ "comment": "fix: layering zindex issue with sub menus"
+ }
+ ]
+ }
+ },
+ {
+ "date": "Thu, 05 Jan 2023 07:59:57 GMT",
+ "tag": "@fluentui/web-components_v2.5.9",
+ "version": "2.5.9",
+ "comments": {
+ "patch": [
+ {
+ "author": "abcy@microsoft.com",
+ "package": "@fluentui/web-components",
+ "commit": "b53326ef8367bbd954237bd039c5520188ed1071",
+ "comment": "Fix fluent-tooltip not showing anchor pointer when wc prefix is changed"
+ }
+ ]
+ }
+ },
+ {
+ "date": "Tue, 15 Nov 2022 07:44:58 GMT",
+ "tag": "@fluentui/web-components_v2.5.8",
+ "version": "2.5.8",
+ "comments": {
+ "none": [
+ {
+ "author": "martinhochel@microsoft.com",
+ "package": "@fluentui/web-components",
+ "commit": "d419dfa7124fb15ebae8a27b30bdad869964301b",
+ "comment": "chore(.storybook): disable telemetry"
+ }
+ ]
+ }
+ },
{
"date": "Wed, 26 Oct 2022 07:52:54 GMT",
"tag": "@fluentui/web-components_v2.5.8",
diff --git a/packages/web-components/CHANGELOG.md b/packages/web-components/CHANGELOG.md
index b1ded5291e07f9..c2b21de8213937 100644
--- a/packages/web-components/CHANGELOG.md
+++ b/packages/web-components/CHANGELOG.md
@@ -103,6 +103,42 @@ Thu, 05 Jan 2023 07:59:57 GMT
- Fix fluent-tooltip not showing anchor pointer when wc prefix is changed ([PR #26154](https://github.com/microsoft/fluentui/pull/26154) by abcy@microsoft.com)
+## [2.5.12](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.12)
+
+Thu, 26 Jan 2023 07:35:32 GMT
+[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.11..@fluentui/web-components_v2.5.12)
+
+### Patches
+
+- feat: bump tslib to 2.1 to align with rest of monorepo packages ([PR #26457](https://github.com/microsoft/fluentui/pull/26457) by martinhochel@microsoft.com)
+
+## [2.5.11](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.11)
+
+Wed, 11 Jan 2023 07:50:49 GMT
+[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.10..@fluentui/web-components_v2.5.11)
+
+### Patches
+
+- chore: upgrade version of storybook ([PR #26259](https://github.com/microsoft/fluentui/pull/26259) by mgodbolt@microsoft.com)
+
+## [2.5.10](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.10)
+
+Tue, 10 Jan 2023 07:50:14 GMT
+[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.9..@fluentui/web-components_v2.5.10)
+
+### Patches
+
+- fix: layering zindex issue with sub menus ([PR #26260](https://github.com/microsoft/fluentui/pull/26260) by jes@microsoft.com)
+
+## [2.5.9](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.9)
+
+Thu, 05 Jan 2023 07:59:57 GMT
+[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/web-components_v2.5.8..@fluentui/web-components_v2.5.9)
+
+### Patches
+
+- Fix fluent-tooltip not showing anchor pointer when wc prefix is changed ([PR #26154](https://github.com/microsoft/fluentui/pull/26154) by abcy@microsoft.com)
+
## [2.5.8](https://github.com/microsoft/fluentui/tree/@fluentui/web-components_v2.5.8)
Wed, 26 Oct 2022 07:52:54 GMT
diff --git a/scripts/babel/types.ts b/scripts/babel/types.ts
deleted file mode 100644
index a0dcb31cfb32d2..00000000000000
--- a/scripts/babel/types.ts
+++ /dev/null
@@ -1,7 +0,0 @@
-import type { PluginTarget } from '@babel/core';
-
-export interface BabelPresetOptions {
- tsBaseConfigPath: string;
-}
-
-export type BabelPluginItem = [PluginTarget, Record];
diff --git a/scripts/beachball/check-wc-3-changefiles.js b/scripts/beachball/check-wc-3-changefiles.js
index 8ed3ca8301bfb1..117e0bdf44f495 100644
--- a/scripts/beachball/check-wc-3-changefiles.js
+++ b/scripts/beachball/check-wc-3-changefiles.js
@@ -1,5 +1,5 @@
-const path = require('path');
const fs = require('fs');
+const path = require('path');
/**
* @typedef {{
@@ -42,6 +42,8 @@ function main(/** @type {string} */ root) {
if (content.type !== 'none' || content.dependentChangeType !== 'none') {
return changeFilePath;
}
+
+ return;
})
.filter(Boolean));
diff --git a/scripts/beachball/check-wc-3-changefiles.spec.ts b/scripts/beachball/check-wc-3-changefiles.spec.ts
index f53b761cff3d5e..3d0d3068167e81 100644
--- a/scripts/beachball/check-wc-3-changefiles.spec.ts
+++ b/scripts/beachball/check-wc-3-changefiles.spec.ts
@@ -1,12 +1,17 @@
import * as fs from 'fs';
import * as path from 'path';
+
import tmp from 'tmp';
+
import { main } from './check-wc-3-changefiles';
import type { ChangeFile } from './check-wc-3-changefiles';
tmp.setGracefulCleanup();
function setup(changefiles: Array) {
+ // eslint-disable-next-line @typescript-eslint/no-empty-function
+ const noop = () => {};
+
const root = tmp.dirSync({ prefix: 'changefiles', unsafeCleanup: true }).name;
const changesRoot = path.join(root, 'change');
@@ -18,8 +23,9 @@ function setup(changefiles: Array) {
fs.writeFileSync(changeFilePath, JSON.stringify(change, null, 2), 'utf-8');
});
- const consoleErrorSpy = jest.spyOn(console, 'error').mockImplementation(() => {});
- const processExitSpy = jest.spyOn(process, 'exit').mockImplementation((() => {}) as any);
+ const consoleErrorSpy = jest.spyOn(console, 'error').mockImplementation(noop);
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
+ const processExitSpy = jest.spyOn(process, 'exit').mockImplementation(noop as any);
return { root: changesRoot, consoleErrorSpy, processExitSpy };
}
diff --git a/scripts/beachball/config.test.ts b/scripts/beachball/config.test.ts
index f125d07c5474c3..80d31fdc3cd682 100644
--- a/scripts/beachball/config.test.ts
+++ b/scripts/beachball/config.test.ts
@@ -1,6 +1,7 @@
import v8Config from './release-v8.config';
import vNextConfig from './release-vNext.config';
import webComponentsConfig from './release-web-components.config';
+import { config as sharedConfig } from './shared.config';
describe(`beachball configs`, () => {
it(`should generate shared config`, () => {
diff --git a/scripts/beachball/release-web-components.config.js b/scripts/beachball/release-web-components.config.js
index a85e627d58657f..5e5e15ab4aa516 100644
--- a/scripts/beachball/release-web-components.config.js
+++ b/scripts/beachball/release-web-components.config.js
@@ -1,9 +1,9 @@
if (process.env.NODE_ENV !== 'test') {
- require('../ts-node-register');
+ require('../ts-node/register');
}
-const { getConfig } = require('./utils');
const { config: sharedConfig } = require('./shared.config');
+const { getConfig } = require('./utils');
const { scope } = getConfig({ version: 'web-components' });
diff --git a/scripts/executors/buildTo.js b/scripts/executors/buildTo.js
new file mode 100644
index 00000000000000..2f256d756f8efe
--- /dev/null
+++ b/scripts/executors/buildTo.js
@@ -0,0 +1,31 @@
+const { runTo } = require('./runTo');
+
+const isExecutedFromCli = require.main === module;
+
+function main() {
+ const argv = process.argv.slice(2);
+
+ // Display a usage message when there are no projects specified
+ if (argv.length < 1) {
+ console.log(`Usage:
+
+ yarn buildto [ ...] []
+
+This command builds all packages up to and including "packagename1" (and "packagename2" etc).
+The package name can be a substring.
+If multiple packages match a pattern, they will all be built (along with their dependencies).
+`);
+
+ process.exit(0);
+ }
+
+ const restIndex = argv.findIndex(arg => arg.startsWith('--'));
+ const projects = restIndex === -1 ? argv : argv.slice(0, restIndex);
+ const rest = restIndex === -1 ? [] : argv.slice(argv[restIndex] === '--' ? restIndex + 1 : restIndex);
+
+ runTo('build', projects, rest);
+}
+
+if (isExecutedFromCli) {
+ main();
+}
diff --git a/scripts/generators/create-component/plop-templates/stories/{{componentName}}/{{componentName}}BestPractices.md b/scripts/generators/create-component/plop-templates/stories/{{componentName}}/{{componentName}}BestPractices.md
new file mode 100644
index 00000000000000..08ff8ddeeb5f86
--- /dev/null
+++ b/scripts/generators/create-component/plop-templates/stories/{{componentName}}/{{componentName}}BestPractices.md
@@ -0,0 +1,5 @@
+## Best practices
+
+### Do
+
+### Don't
diff --git a/scripts/generators/create-component/plop-templates/stories/{{componentName}}/{{componentName}}Description.md b/scripts/generators/create-component/plop-templates/stories/{{componentName}}/{{componentName}}Description.md
new file mode 100644
index 00000000000000..e69de29bb2d1d6
diff --git a/scripts/gulp/src/config.ts b/scripts/gulp/src/config.ts
index 6aa5ae4197adf6..a10d69a5352001 100644
--- a/scripts/gulp/src/config.ts
+++ b/scripts/gulp/src/config.ts
@@ -28,6 +28,13 @@ function getProjectsExceptV0() {
return projects;
}
+import { getLernaAliases } from '@fluentui/scripts-monorepo';
+
+// northstar packages should pull these from npm, not the repo
+const excludedPackages = ['@fluentui/dom-utilities'];
+const lernaAliases = (options: Omit[number], 'excludedPackages'>) =>
+ getLernaAliases({ excludedPackages, ...options });
+
// ------------------------------------
// Environment vars
// ------------------------------------
diff --git a/scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts b/scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts
index 89d73d9cfed738..1a9315446a1e53 100644
--- a/scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts
+++ b/scripts/gulp/src/plugins/gulp-component-menu-behaviors.ts
@@ -7,7 +7,6 @@ import gutil from 'gulp-util';
import _ from 'lodash';
import through2, { TransformFunction } from 'through2';
import Vinyl from 'vinyl';
-
import config from '../config';
const { paths } = config;
diff --git a/scripts/gulp/src/tasks/test-dependencies/utils.ts b/scripts/gulp/src/tasks/test-dependencies/utils.ts
index e7221a54890e60..2b3ef3f3d369d1 100644
--- a/scripts/gulp/src/tasks/test-dependencies/utils.ts
+++ b/scripts/gulp/src/tasks/test-dependencies/utils.ts
@@ -1,5 +1,4 @@
import * as path from 'path';
-
import { LicenseWebpackPlugin } from 'license-webpack-plugin';
import webpack from 'webpack';
diff --git a/scripts/gulp/src/webpack/webpack.config.ts b/scripts/gulp/src/webpack/webpack.config.ts
index 5cf5ef8f45cff5..7c85bbd21fcb1a 100644
--- a/scripts/gulp/src/webpack/webpack.config.ts
+++ b/scripts/gulp/src/webpack/webpack.config.ts
@@ -7,6 +7,8 @@ import TerserPlugin from 'terser-webpack-plugin';
import webpack from 'webpack';
import { BundleAnalyzerPlugin } from 'webpack-bundle-analyzer';
+import { getDefaultEnvironmentVars } from '@fluentui/scripts-monorepo';
+
import config from '../config';
const { paths } = config;
diff --git a/scripts/monorepo/src/get-lerna-aliases.js b/scripts/monorepo/src/get-lerna-aliases.js
new file mode 100644
index 00000000000000..81e9f7e414f7cf
--- /dev/null
+++ b/scripts/monorepo/src/get-lerna-aliases.js
@@ -0,0 +1,16 @@
+const lernaAlias = require('lerna-alias');
+
+/**
+ *
+ * @param {{excludedPackages:string[];type:keyof typeof lernaAlias} & lernaAlias.Options} options
+ */
+function getLernaAliases(options) {
+ const { excludedPackages, type, ...lernaOptions } = options;
+ const aliases = lernaAlias[type](lernaOptions);
+ for (const pkg of excludedPackages) {
+ delete aliases[`^${pkg}$`];
+ }
+ return aliases;
+}
+
+exports.getLernaAliases = getLernaAliases;
diff --git a/scripts/projects-test/src/utils.ts b/scripts/projects-test/src/utils.ts
index 2405a9f8f9f190..d338124caceb2f 100644
--- a/scripts/projects-test/src/utils.ts
+++ b/scripts/projects-test/src/utils.ts
@@ -1,4 +1,5 @@
import fs from 'fs';
+import fsExtra from 'fs-extra';
import path from 'path';
import { workspaceRoot } from '@fluentui/scripts-monorepo';
diff --git a/tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts b/tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts
index 75d5d41ec37fcb..62b18a6dcc546c 100644
--- a/tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts
+++ b/tools/workspace-plugin/src/generators/dependency-mismatch/index.spec.ts
@@ -194,6 +194,7 @@ describe('dependency-mismatch generator', () => {
const packageJson = readTargetPackageJson();
expect(packageJson.dependencies).toMatchInlineSnapshot(`
Object {
+ "@proj/dom-utilities": "^1.1.1",
"@proj/react-portal-compat-context": "^9.0.1",
}
`);
diff --git a/yarn.lock b/yarn.lock
index 3818718a90bcd4..93e78fbc2c3f10 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -6611,6 +6611,20 @@ adal-node@^0.2.3:
uuid "^3.1.0"
xpath.js "~1.1.0"
+adal-node@^0.2.3:
+ version "0.2.3"
+ resolved "https://registry.yarnpkg.com/adal-node/-/adal-node-0.2.3.tgz#87ed3dbed344f6e114e36bf18fe1c4e7d3cc6069"
+ integrity sha512-gMKr8RuYEYvsj7jyfCv/4BfKToQThz20SP71N3AtFn3ia3yAR8Qt2T3aVQhuJzunWs2b38ZsQV0qsZPdwZr7VQ==
+ dependencies:
+ "@xmldom/xmldom" "^0.7.0"
+ async "^2.6.3"
+ axios "^0.21.1"
+ date-utils "*"
+ jws "3.x.x"
+ underscore ">= 1.3.1"
+ uuid "^3.1.0"
+ xpath.js "~1.1.0"
+
add-px-to-style@1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/add-px-to-style/-/add-px-to-style-1.0.0.tgz#d0c135441fa8014a8137904531096f67f28f263a"
@@ -8500,7 +8514,7 @@ camel-case@^3.0.0:
no-case "^2.2.0"
upper-case "^1.1.1"
-camel-case@^4.1.1, camel-case@^4.1.2:
+camel-case@^4.1.1:
version "4.1.2"
resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a"
integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==
@@ -9579,6 +9593,16 @@ cosmiconfig@8.2.0, cosmiconfig@^8.2.0:
parse-json "^5.0.0"
path-type "^4.0.0"
+cosmiconfig@8.0.0:
+ version "8.0.0"
+ resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.0.0.tgz#e9feae014eab580f858f8a0288f38997a7bebe97"
+ integrity sha512-da1EafcpH6b/TD8vDRaWV7xFINlHlF6zKsGwS1TsuVJTZRkquaS5HTMq7uq6h31619QjbsYl21gVDOm32KM1vQ==
+ dependencies:
+ import-fresh "^3.2.1"
+ js-yaml "^4.1.0"
+ parse-json "^5.0.0"
+ path-type "^4.0.0"
+
cosmiconfig@^5.1.0:
version "5.2.1"
resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-5.2.1.tgz#040f726809c591e77a17c0a3626ca45b4f168b1a"
@@ -10077,7 +10101,7 @@ d3-interpolate@1, "d3-interpolate@1.2.0 - 3", d3-interpolate@^1.1.4:
dependencies:
d3-color "1"
-d3-path@1:
+d3-path@1, "d3-path@1 - 2":
version "1.0.7"
resolved "https://registry.yarnpkg.com/d3-path/-/d3-path-1.0.7.tgz#8de7cd693a75ac0b5480d3abaccd94793e58aae8"
integrity sha512-q0cW1RpvA5c5ma2rch62mX8AYaiLX0+bdaSM2wxSU9tXjU4DNvkx9qiUvjkuWCj3p22UO/hlPivujqMiR9PDzA==
@@ -10133,6 +10157,13 @@ d3-selection@^2.0.0:
resolved "https://registry.yarnpkg.com/d3-selection/-/d3-selection-2.0.0.tgz#94a11638ea2141b7565f883780dabc7ef6a61066"
integrity sha512-XoGGqhLUN/W14NmaqcO/bb1nqjDAw5WtSYb2X8wiuQWvSZUsUVYsOSkOybUrNvcBjaywBdYPy03eXHMXjk9nZA==
+d3-shape@2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-2.1.0.tgz#3b6a82ccafbc45de55b57fcf956c584ded3b666f"
+ integrity sha512-PnjUqfM2PpskbSLTJvAzp2Wv4CZsnAgTfcVRTwW03QR3MkXF8Uo7B1y/lWkAsmbKwuecto++4NlsYcvYpXpTHA==
+ dependencies:
+ d3-path "1 - 2"
+
d3-shape@^1.1.0, d3-shape@^1.2.0:
version "1.3.7"
resolved "https://registry.yarnpkg.com/d3-shape/-/d3-shape-1.3.7.tgz#df63801be07bc986bc54f63789b4fe502992b5d7"
@@ -11871,7 +11902,7 @@ execa@^5.0.0, execa@^5.1.1:
signal-exit "^3.0.3"
strip-final-newline "^2.0.0"
-executable@^4.1.0, executable@^4.1.1:
+executable@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/executable/-/executable-4.1.1.tgz#41532bff361d3e57af4d763b70582db18f5d133c"
integrity sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==
@@ -11956,21 +11987,6 @@ express@4.19.2, express@^4.17.1, express@^4.17.3:
utils-merge "1.0.1"
vary "~1.1.2"
-ext-list@^2.0.0:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/ext-list/-/ext-list-2.2.2.tgz#0b98e64ed82f5acf0f2931babf69212ef52ddd37"
- integrity sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==
- dependencies:
- mime-db "^1.28.0"
-
-ext-name@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/ext-name/-/ext-name-5.0.0.tgz#70781981d183ee15d13993c8822045c506c8f0a6"
- integrity sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==
- dependencies:
- ext-list "^2.0.0"
- sort-keys-length "^1.0.0"
-
ext@^1.1.2:
version "1.4.0"
resolved "https://registry.yarnpkg.com/ext/-/ext-1.4.0.tgz#89ae7a07158f79d35517882904324077e4379244"
@@ -17569,7 +17585,7 @@ miller-rabin@^4.0.0:
bn.js "^4.0.0"
brorand "^1.0.1"
-mime-db@1.52.0, "mime-db@>= 1.40.0 < 2", mime-db@^1.28.0:
+mime-db@1.52.0, "mime-db@>= 1.40.0 < 2":
version "1.52.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.52.0.tgz#bbabcdc02859f4987301c856e3387ce5ec43bf70"
integrity sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==
@@ -18735,13 +18751,6 @@ os-browserify@^0.3.0:
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
-os-filter-obj@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/os-filter-obj/-/os-filter-obj-2.0.0.tgz#1c0b62d5f3a2442749a2d139e6dddee6e81d8d16"
- integrity sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==
- dependencies:
- arch "^2.1.0"
-
os-homedir@^1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
@@ -18983,6 +18992,11 @@ pako@^2.0.4:
resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
+pako@^2.0.4:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/pako/-/pako-2.1.0.tgz#266cc37f98c7d883545d11335c00fbd4062c9a86"
+ integrity sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==
+
pako@~1.0.2, pako@~1.0.5:
version "1.0.11"
resolved "https://registry.yarnpkg.com/pako/-/pako-1.0.11.tgz#6c9599d340d54dfd3946380252a35705a6b992bf"
@@ -19004,7 +19018,7 @@ param-case@^2.1.0:
dependencies:
no-case "^2.2.0"
-param-case@^3.0.3, param-case@^3.0.4:
+param-case@^3.0.3:
version "3.0.4"
resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5"
integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==
@@ -21452,7 +21466,7 @@ safe-buffer@5.1.1:
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.1.tgz#893312af69b2123def71f57889001671eeb2c853"
integrity sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==
-safe-buffer@5.1.2, safe-buffer@>=5.1.0, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
@@ -23560,7 +23574,7 @@ tsconfig-paths@^3.12.0, tsconfig-paths@^3.9.0:
minimist "^1.2.0"
strip-bom "^3.0.0"
-tslib@1.11.2:
+tslib@1.11.2, tslib@^1.10.0, tslib@^1.8.1, tslib@^1.9.0, tslib@^1.9.3:
version "1.11.2"
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.2.tgz#9c79d83272c9a7aaf166f73915c9667ecdde3cc9"
integrity sha512-tTSkux6IGPnUGUd1XAZHcpu85MOkIl5zX49pO+jfsie3eP0B6pyhOlLXm3cAC6T7s+euSDDUUV+Acop5WmtkVg==
@@ -23680,6 +23694,15 @@ typed-rest-client@^1.8.4:
tunnel "0.0.6"
underscore "^1.12.1"
+typed-rest-client@^1.8.4:
+ version "1.8.9"
+ resolved "https://registry.yarnpkg.com/typed-rest-client/-/typed-rest-client-1.8.9.tgz#e560226bcadfe71b0fb5c416b587f8da3b8f92d8"
+ integrity sha512-uSmjE38B80wjL85UFX3sTYEUlvZ1JgCRhsWj/fJ4rZ0FqDUFoIuodtiVeE+cUqiVTOKPdKrp/sdftD15MDek6g==
+ dependencies:
+ qs "^6.9.1"
+ tunnel "0.0.6"
+ underscore "^1.12.1"
+
typedarray-to-buffer@^3.1.5:
version "3.1.5"
resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080"