@fluentui/react-tabster 0.0.0-nightlyfc5cfdc52420220215.1 → 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/CHANGELOG.json +460 -10
  2. package/CHANGELOG.md +231 -85
  3. package/README.md +5 -14
  4. package/dist/{react-tabster.d.ts → index.d.ts} +30 -11
  5. package/{lib → dist}/tsdoc-metadata.json +0 -0
  6. package/lib/{symbols.js → focus/constants.js} +5 -1
  7. package/lib/focus/constants.js.map +1 -0
  8. package/lib/focus/createCustomFocusIndicatorStyle.js +18 -0
  9. package/lib/focus/createCustomFocusIndicatorStyle.js.map +1 -0
  10. package/lib/{hooks/useFocusIndicatorStyle.js → focus/createFocusOutlineStyle.js} +21 -41
  11. package/lib/focus/createFocusOutlineStyle.js.map +1 -0
  12. package/lib/focus/index.js +3 -0
  13. package/lib/focus/index.js.map +1 -0
  14. package/lib/hooks/index.js +2 -3
  15. package/lib/hooks/index.js.map +1 -1
  16. package/lib/hooks/useArrowNavigationGroup.js +5 -1
  17. package/lib/hooks/useArrowNavigationGroup.js.map +1 -1
  18. package/lib/hooks/useFocusFinders.js.map +1 -1
  19. package/lib/hooks/useFocusableGroup.js +1 -1
  20. package/lib/hooks/useFocusableGroup.js.map +1 -1
  21. package/lib/hooks/useKeyboardNavAttribute.js +5 -3
  22. package/lib/hooks/useKeyboardNavAttribute.js.map +1 -1
  23. package/lib/hooks/useModalAttributes.js +4 -2
  24. package/lib/hooks/useModalAttributes.js.map +1 -1
  25. package/lib/hooks/useTabster.js +1 -1
  26. package/lib/hooks/useTabster.js.map +1 -1
  27. package/lib/hooks/useTabsterAttributes.js +1 -0
  28. package/lib/hooks/useTabsterAttributes.js.map +1 -1
  29. package/lib/index.js +2 -1
  30. package/lib/index.js.map +1 -1
  31. package/lib-commonjs/{symbols.js → focus/constants.js} +6 -2
  32. package/lib-commonjs/focus/constants.js.map +1 -0
  33. package/lib-commonjs/focus/createCustomFocusIndicatorStyle.js +28 -0
  34. package/lib-commonjs/focus/createCustomFocusIndicatorStyle.js.map +1 -0
  35. package/lib-commonjs/{hooks/useFocusIndicatorStyle.js → focus/createFocusOutlineStyle.js} +25 -45
  36. package/lib-commonjs/focus/createFocusOutlineStyle.js.map +1 -0
  37. package/lib-commonjs/focus/index.js +12 -0
  38. package/lib-commonjs/focus/index.js.map +1 -0
  39. package/lib-commonjs/hooks/index.js +4 -6
  40. package/lib-commonjs/hooks/index.js.map +1 -1
  41. package/lib-commonjs/hooks/useArrowNavigationGroup.js +5 -1
  42. package/lib-commonjs/hooks/useArrowNavigationGroup.js.map +1 -1
  43. package/lib-commonjs/hooks/useFocusFinders.js.map +1 -1
  44. package/lib-commonjs/hooks/useFocusableGroup.js +1 -1
  45. package/lib-commonjs/hooks/useFocusableGroup.js.map +1 -1
  46. package/lib-commonjs/hooks/useKeyboardNavAttribute.js +7 -5
  47. package/lib-commonjs/hooks/useKeyboardNavAttribute.js.map +1 -1
  48. package/lib-commonjs/hooks/useModalAttributes.js +4 -2
  49. package/lib-commonjs/hooks/useModalAttributes.js.map +1 -1
  50. package/lib-commonjs/hooks/useTabster.js +1 -1
  51. package/lib-commonjs/hooks/useTabster.js.map +1 -1
  52. package/lib-commonjs/hooks/useTabsterAttributes.js +1 -0
  53. package/lib-commonjs/hooks/useTabsterAttributes.js.map +1 -1
  54. package/lib-commonjs/index.js +53 -2
  55. package/lib-commonjs/index.js.map +1 -1
  56. package/package.json +20 -18
  57. package/lib/hooks/index.d.ts +0 -7
  58. package/lib/hooks/useArrowNavigationGroup.d.ts +0 -22
  59. package/lib/hooks/useFocusFinders.d.ts +0 -11
  60. package/lib/hooks/useFocusIndicatorStyle.d.ts +0 -33
  61. package/lib/hooks/useFocusIndicatorStyle.js.map +0 -1
  62. package/lib/hooks/useFocusableGroup.d.ts +0 -12
  63. package/lib/hooks/useKeyboardNavAttribute.d.ts +0 -5
  64. package/lib/hooks/useModalAttributes.d.ts +0 -22
  65. package/lib/hooks/useTabster.d.ts +0 -9
  66. package/lib/hooks/useTabsterAttributes.d.ts +0 -5
  67. package/lib/index.d.ts +0 -1
  68. package/lib/symbols.d.ts +0 -2
  69. package/lib/symbols.js.map +0 -1
  70. package/lib-commonjs/hooks/index.d.ts +0 -7
  71. package/lib-commonjs/hooks/useArrowNavigationGroup.d.ts +0 -22
  72. package/lib-commonjs/hooks/useFocusFinders.d.ts +0 -11
  73. package/lib-commonjs/hooks/useFocusIndicatorStyle.d.ts +0 -33
  74. package/lib-commonjs/hooks/useFocusIndicatorStyle.js.map +0 -1
  75. package/lib-commonjs/hooks/useFocusableGroup.d.ts +0 -12
  76. package/lib-commonjs/hooks/useKeyboardNavAttribute.d.ts +0 -5
  77. package/lib-commonjs/hooks/useModalAttributes.d.ts +0 -22
  78. package/lib-commonjs/hooks/useTabster.d.ts +0 -9
  79. package/lib-commonjs/hooks/useTabsterAttributes.d.ts +0 -5
  80. package/lib-commonjs/index.d.ts +0 -1
  81. package/lib-commonjs/symbols.d.ts +0 -2
  82. package/lib-commonjs/symbols.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,23 +1,169 @@
1
1
  # Change Log - @fluentui/react-tabster
2
2
 
3
- This log was last generated on Tue, 15 Feb 2022 04:11:42 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 28 Jun 2022 04:30:33 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## [0.0.0-nightlyfc5cfdc52420220215.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v0.0.0-nightlyfc5cfdc52420220215.1)
7
+ ## [0.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v0.0.0)
8
8
 
9
- Tue, 15 Feb 2022 04:11:42 GMT
10
- [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.1..@fluentui/react-tabster_v0.0.0-nightlyfc5cfdc52420220215.1)
9
+ Tue, 28 Jun 2022 04:30:33 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.14..@fluentui/react-tabster_v0.0.0)
11
+
12
+ ### Patches
13
+
14
+ - feat: Initial 9.0.0 release ([PR #23733](https://github.com/microsoft/fluentui/pull/23733) by lingfangao@hotmail.com)
15
+ - Bump @fluentui/react-shared-contexts to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
16
+ - Bump @fluentui/react-theme to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
17
+ - Bump @fluentui/react-utilities to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
18
+
19
+ ### Changes
20
+
21
+ - feat: Add new `legacyTrapFocus` option to `useModalAttributes` ([PR #23598](https://github.com/microsoft/fluentui/pull/23598) by lingfangao@hotmail.com)
22
+ - chore: Mark teams-prg owned APIs with @internal ([PR #23689](https://github.com/microsoft/fluentui/pull/23689) by lingfangao@hotmail.com)
23
+ - chore: Using ::before and ::after instead of :before and :after. ([PR #23469](https://github.com/microsoft/fluentui/pull/23469) by Humberto.Morimoto@microsoft.com)
24
+ - Bump Griffel dependencies ([PR #23688](https://github.com/microsoft/fluentui/pull/23688) by lingfangao@hotmail.com)
25
+ - Update 9.0.0-rc dependencies to use caret range ([PR #23732](https://github.com/microsoft/fluentui/pull/23732) by lingfangao@hotmail.com)
26
+
27
+ ## [9.0.0-rc.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.14)
28
+
29
+ Thu, 23 Jun 2022 14:25:31 GMT
30
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.13..@fluentui/react-tabster_v9.0.0-rc.14)
31
+
32
+ ### Changes
33
+
34
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.11 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
35
+ - Bump @fluentui/react-theme to v9.0.0-rc.10 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
36
+
37
+ ## [9.0.0-rc.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.13)
38
+
39
+ Tue, 31 May 2022 21:28:48 GMT
40
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.12..@fluentui/react-tabster_v9.0.0-rc.13)
41
+
42
+ ### Changes
43
+
44
+ - chore: Update Griffel to latest version ([PR #23275](https://github.com/microsoft/fluentui/pull/23275) by olfedias@microsoft.com)
45
+ - updates import to react-shared-components ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by bernardo.sunderhus@gmail.com)
46
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
47
+ - Bump @fluentui/react-utilities to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
48
+
49
+ ## [9.0.0-rc.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.12)
50
+
51
+ Thu, 26 May 2022 21:01:31 GMT
52
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.11..@fluentui/react-tabster_v9.0.0-rc.12)
53
+
54
+ ### Changes
55
+
56
+ - Remove usage of focus-visible pseudo-class to conform to browser support matrix. ([PR #23255](https://github.com/microsoft/fluentui/pull/23255) by tristan.watanabe@gmail.com)
57
+
58
+ ## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.11)
59
+
60
+ Mon, 23 May 2022 18:56:49 GMT
61
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.10..@fluentui/react-tabster_v9.0.0-rc.11)
62
+
63
+ ### Changes
64
+
65
+ - BREAKING: update string unions to use spinal-case ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by seanmonahan@microsoft.com)
66
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
67
+ - Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
68
+
69
+ ## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.10)
70
+
71
+ Mon, 23 May 2022 12:13:51 GMT
72
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.9..@fluentui/react-tabster_v9.0.0-rc.10)
73
+
74
+ ### Changes
75
+
76
+ - chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
77
+ - Update tabster dependency from ^1.3.3 to ^1.4.0 ([PR #23109](https://github.com/microsoft/fluentui/pull/23109) by seanmonahan@microsoft.com)
78
+ - chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
79
+ - feat: ship rolluped only dts ([PR #22828](https://github.com/microsoft/fluentui/pull/22828) by martinhochel@microsoft.com)
80
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
81
+ - Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
82
+ - Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
83
+
84
+ ## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.9)
85
+
86
+ Thu, 05 May 2022 18:26:30 GMT
87
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.8..@fluentui/react-tabster_v9.0.0-rc.9)
88
+
89
+ ### Changes
90
+
91
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
92
+ - Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
93
+ - Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
94
+
95
+ ## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.8)
96
+
97
+ Wed, 04 May 2022 13:26:53 GMT
98
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.7..@fluentui/react-tabster_v9.0.0-rc.8)
99
+
100
+ ### Changes
101
+
102
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
103
+ - Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
104
+ - Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
105
+
106
+ ## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.7)
107
+
108
+ Mon, 25 Apr 2022 09:32:15 GMT
109
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.6..@fluentui/react-tabster_v9.0.0-rc.7)
110
+
111
+ ### Changes
112
+
113
+ - Adjusting accordion keyboard navigation. ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by marata@microsoft.com)
114
+
115
+ ## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.6)
116
+
117
+ Tue, 19 Apr 2022 19:16:59 GMT
118
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.5..@fluentui/react-tabster_v9.0.0-rc.6)
119
+
120
+ ### Changes
121
+
122
+ - chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
123
+ - Removing star exports at src/index.ts. ([PR #22367](https://github.com/microsoft/fluentui/pull/22367) by Humberto.Morimoto@microsoft.com)
124
+ - fix styles in getFocusOutlineStyles() ([PR #22070](https://github.com/microsoft/fluentui/pull/22070) by olfedias@microsoft.com)
125
+ - feat(react-tabster): Add grid navigation ([PR #22085](https://github.com/microsoft/fluentui/pull/22085) by jukapsia@microsoft.com)
126
+ - Upgrading tabster to latest version. ([PR #22492](https://github.com/microsoft/fluentui/pull/22492) by Humberto.Morimoto@microsoft.com)
127
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
128
+ - Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
129
+ - Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
130
+
131
+ ## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.5)
132
+
133
+ Fri, 04 Mar 2022 05:17:31 GMT
134
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.4..@fluentui/react-tabster_v9.0.0-rc.5)
135
+
136
+ ### Changes
137
+
138
+ - Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
139
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
140
+ - Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
141
+ - Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
142
+
143
+ ## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.4)
144
+
145
+ Tue, 01 Mar 2022 02:17:39 GMT
146
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.3..@fluentui/react-tabster_v9.0.0-rc.4)
147
+
148
+ ### Changes
149
+
150
+ - fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
151
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
152
+
153
+ ## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.3)
154
+
155
+ Fri, 18 Feb 2022 13:35:35 GMT
156
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-rc.1..@fluentui/react-tabster_v9.0.0-rc.3)
11
157
 
12
158
  ### Changes
13
159
 
14
- - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by email not defined)
15
- - Bump @fluentui/react-shared-contexts to v0.0.0-nightlyfc5cfdc52420220215.1 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by beachball)
16
- - Bump @fluentui/react-utilities to v0.0.0-nightlyfc5cfdc52420220215.1 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by beachball)
160
+ - fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
161
+ - Bump @fluentui/react-shared-contexts to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
162
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
17
163
 
18
164
  ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-rc.1)
19
165
 
20
- Thu, 10 Feb 2022 08:50:55 GMT
166
+ Thu, 10 Feb 2022 08:50:55 GMT
21
167
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-beta.5..@fluentui/react-tabster_v9.0.0-rc.1)
22
168
 
23
169
  ### Changes
@@ -35,7 +181,7 @@ Thu, 10 Feb 2022 08:50:55 GMT
35
181
 
36
182
  ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-beta.5)
37
183
 
38
- Thu, 25 Nov 2021 08:34:17 GMT
184
+ Thu, 25 Nov 2021 08:34:17 GMT
39
185
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-beta.4..@fluentui/react-tabster_v9.0.0-beta.5)
40
186
 
41
187
  ### Changes
@@ -47,7 +193,7 @@ Thu, 25 Nov 2021 08:34:17 GMT
47
193
 
48
194
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-beta.4)
49
195
 
50
- Fri, 12 Nov 2021 13:25:07 GMT
196
+ Fri, 12 Nov 2021 13:25:07 GMT
51
197
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-beta.3..@fluentui/react-tabster_v9.0.0-beta.4)
52
198
 
53
199
  ### Changes
@@ -62,7 +208,7 @@ Fri, 12 Nov 2021 13:25:07 GMT
62
208
 
63
209
  ## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-beta.3)
64
210
 
65
- Wed, 27 Oct 2021 12:14:22 GMT
211
+ Wed, 27 Oct 2021 12:14:22 GMT
66
212
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-beta.2..@fluentui/react-tabster_v9.0.0-beta.3)
67
213
 
68
214
  ### Changes
@@ -75,7 +221,7 @@ Wed, 27 Oct 2021 12:14:22 GMT
75
221
 
76
222
  ## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-beta.2)
77
223
 
78
- Tue, 12 Oct 2021 19:45:58 GMT
224
+ Tue, 12 Oct 2021 19:45:58 GMT
79
225
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-beta.1..@fluentui/react-tabster_v9.0.0-beta.2)
80
226
 
81
227
  ### Changes
@@ -84,7 +230,7 @@ Tue, 12 Oct 2021 19:45:58 GMT
84
230
 
85
231
  ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-beta.1)
86
232
 
87
- Wed, 06 Oct 2021 10:37:22 GMT
233
+ Wed, 06 Oct 2021 10:37:22 GMT
88
234
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.73..@fluentui/react-tabster_v9.0.0-beta.1)
89
235
 
90
236
  ### Changes
@@ -97,7 +243,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
97
243
 
98
244
  ## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.73)
99
245
 
100
- Tue, 05 Oct 2021 12:47:58 GMT
246
+ Tue, 05 Oct 2021 12:47:58 GMT
101
247
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.72..@fluentui/react-tabster_v9.0.0-alpha.73)
102
248
 
103
249
  ### Changes
@@ -107,7 +253,7 @@ Tue, 05 Oct 2021 12:47:58 GMT
107
253
 
108
254
  ## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.72)
109
255
 
110
- Tue, 05 Oct 2021 09:28:07 GMT
256
+ Tue, 05 Oct 2021 09:28:07 GMT
111
257
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.71..@fluentui/react-tabster_v9.0.0-alpha.72)
112
258
 
113
259
  ### Changes
@@ -117,7 +263,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
117
263
 
118
264
  ## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.71)
119
265
 
120
- Fri, 01 Oct 2021 14:13:08 GMT
266
+ Fri, 01 Oct 2021 14:13:08 GMT
121
267
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.69..@fluentui/react-tabster_v9.0.0-alpha.71)
122
268
 
123
269
  ### Changes
@@ -130,7 +276,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
130
276
 
131
277
  ## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.69)
132
278
 
133
- Fri, 01 Oct 2021 09:44:56 GMT
279
+ Fri, 01 Oct 2021 09:44:56 GMT
134
280
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.68..@fluentui/react-tabster_v9.0.0-alpha.69)
135
281
 
136
282
  ### Changes
@@ -139,7 +285,7 @@ Fri, 01 Oct 2021 09:44:56 GMT
139
285
 
140
286
  ## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.68)
141
287
 
142
- Wed, 29 Sep 2021 08:06:11 GMT
288
+ Wed, 29 Sep 2021 08:06:11 GMT
143
289
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.67..@fluentui/react-tabster_v9.0.0-alpha.68)
144
290
 
145
291
  ### Changes
@@ -149,7 +295,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
149
295
 
150
296
  ## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.67)
151
297
 
152
- Mon, 27 Sep 2021 08:06:00 GMT
298
+ Mon, 27 Sep 2021 08:06:00 GMT
153
299
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.66..@fluentui/react-tabster_v9.0.0-alpha.67)
154
300
 
155
301
  ### Changes
@@ -160,7 +306,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
160
306
 
161
307
  ## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.66)
162
308
 
163
- Fri, 24 Sep 2021 09:17:17 GMT
309
+ Fri, 24 Sep 2021 09:17:17 GMT
164
310
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.65..@fluentui/react-tabster_v9.0.0-alpha.66)
165
311
 
166
312
  ### Changes
@@ -170,7 +316,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
170
316
 
171
317
  ## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.65)
172
318
 
173
- Thu, 23 Sep 2021 08:21:34 GMT
319
+ Thu, 23 Sep 2021 08:21:34 GMT
174
320
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.64..@fluentui/react-tabster_v9.0.0-alpha.65)
175
321
 
176
322
  ### Changes
@@ -180,7 +326,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
180
326
 
181
327
  ## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.64)
182
328
 
183
- Wed, 22 Sep 2021 10:10:07 GMT
329
+ Wed, 22 Sep 2021 10:10:07 GMT
184
330
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.63..@fluentui/react-tabster_v9.0.0-alpha.64)
185
331
 
186
332
  ### Changes
@@ -190,7 +336,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
190
336
 
191
337
  ## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.63)
192
338
 
193
- Tue, 21 Sep 2021 07:42:34 GMT
339
+ Tue, 21 Sep 2021 07:42:34 GMT
194
340
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.62..@fluentui/react-tabster_v9.0.0-alpha.63)
195
341
 
196
342
  ### Changes
@@ -200,7 +346,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
200
346
 
201
347
  ## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.62)
202
348
 
203
- Mon, 20 Sep 2021 07:36:26 GMT
349
+ Mon, 20 Sep 2021 07:36:26 GMT
204
350
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.61..@fluentui/react-tabster_v9.0.0-alpha.62)
205
351
 
206
352
  ### Changes
@@ -209,7 +355,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
209
355
 
210
356
  ## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.61)
211
357
 
212
- Fri, 17 Sep 2021 07:35:26 GMT
358
+ Fri, 17 Sep 2021 07:35:26 GMT
213
359
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.60..@fluentui/react-tabster_v9.0.0-alpha.61)
214
360
 
215
361
  ### Changes
@@ -218,7 +364,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
218
364
 
219
365
  ## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.60)
220
366
 
221
- Thu, 16 Sep 2021 07:38:39 GMT
367
+ Thu, 16 Sep 2021 07:38:39 GMT
222
368
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.59..@fluentui/react-tabster_v9.0.0-alpha.60)
223
369
 
224
370
  ### Changes
@@ -227,7 +373,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
227
373
 
228
374
  ## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.59)
229
375
 
230
- Tue, 14 Sep 2021 20:09:02 GMT
376
+ Tue, 14 Sep 2021 20:09:02 GMT
231
377
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.58..@fluentui/react-tabster_v9.0.0-alpha.59)
232
378
 
233
379
  ### Changes
@@ -236,7 +382,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
236
382
 
237
383
  ## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.58)
238
384
 
239
- Fri, 10 Sep 2021 16:31:53 GMT
385
+ Fri, 10 Sep 2021 16:31:53 GMT
240
386
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.57..@fluentui/react-tabster_v9.0.0-alpha.58)
241
387
 
242
388
  ### Changes
@@ -246,7 +392,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
246
392
 
247
393
  ## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.57)
248
394
 
249
- Fri, 10 Sep 2021 07:39:51 GMT
395
+ Fri, 10 Sep 2021 07:39:51 GMT
250
396
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.56..@fluentui/react-tabster_v9.0.0-alpha.57)
251
397
 
252
398
  ### Changes
@@ -255,7 +401,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
255
401
 
256
402
  ## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.56)
257
403
 
258
- Mon, 06 Sep 2021 07:34:53 GMT
404
+ Mon, 06 Sep 2021 07:34:53 GMT
259
405
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.55..@fluentui/react-tabster_v9.0.0-alpha.56)
260
406
 
261
407
  ### Changes
@@ -264,7 +410,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
264
410
 
265
411
  ## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.55)
266
412
 
267
- Wed, 01 Sep 2021 07:39:56 GMT
413
+ Wed, 01 Sep 2021 07:39:56 GMT
268
414
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.54..@fluentui/react-tabster_v9.0.0-alpha.55)
269
415
 
270
416
  ### Changes
@@ -273,7 +419,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
273
419
 
274
420
  ## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.54)
275
421
 
276
- Tue, 31 Aug 2021 07:37:47 GMT
422
+ Tue, 31 Aug 2021 07:37:47 GMT
277
423
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.53..@fluentui/react-tabster_v9.0.0-alpha.54)
278
424
 
279
425
  ### Changes
@@ -282,7 +428,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
282
428
 
283
429
  ## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.53)
284
430
 
285
- Tue, 24 Aug 2021 07:34:48 GMT
431
+ Tue, 24 Aug 2021 07:34:48 GMT
286
432
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.52..@fluentui/react-tabster_v9.0.0-alpha.53)
287
433
 
288
434
  ### Changes
@@ -291,7 +437,7 @@ Tue, 24 Aug 2021 07:34:48 GMT
291
437
 
292
438
  ## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.52)
293
439
 
294
- Fri, 20 Aug 2021 07:37:28 GMT
440
+ Fri, 20 Aug 2021 07:37:28 GMT
295
441
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.51..@fluentui/react-tabster_v9.0.0-alpha.52)
296
442
 
297
443
  ### Changes
@@ -300,7 +446,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
300
446
 
301
447
  ## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.51)
302
448
 
303
- Thu, 19 Aug 2021 07:41:35 GMT
449
+ Thu, 19 Aug 2021 07:41:35 GMT
304
450
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.50..@fluentui/react-tabster_v9.0.0-alpha.51)
305
451
 
306
452
  ### Changes
@@ -309,7 +455,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
309
455
 
310
456
  ## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.50)
311
457
 
312
- Fri, 13 Aug 2021 07:36:34 GMT
458
+ Fri, 13 Aug 2021 07:36:34 GMT
313
459
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.49..@fluentui/react-tabster_v9.0.0-alpha.50)
314
460
 
315
461
  ### Changes
@@ -318,7 +464,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
318
464
 
319
465
  ## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.49)
320
466
 
321
- Fri, 06 Aug 2021 07:35:14 GMT
467
+ Fri, 06 Aug 2021 07:35:14 GMT
322
468
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.48..@fluentui/react-tabster_v9.0.0-alpha.49)
323
469
 
324
470
  ### Changes
@@ -327,7 +473,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
327
473
 
328
474
  ## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.48)
329
475
 
330
- Tue, 03 Aug 2021 07:39:30 GMT
476
+ Tue, 03 Aug 2021 07:39:30 GMT
331
477
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.47..@fluentui/react-tabster_v9.0.0-alpha.48)
332
478
 
333
479
  ### Patches
@@ -341,7 +487,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
341
487
 
342
488
  ## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.47)
343
489
 
344
- Mon, 02 Aug 2021 07:36:20 GMT
490
+ Mon, 02 Aug 2021 07:36:20 GMT
345
491
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.46..@fluentui/react-tabster_v9.0.0-alpha.47)
346
492
 
347
493
  ### Changes
@@ -350,7 +496,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
350
496
 
351
497
  ## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.46)
352
498
 
353
- Mon, 26 Jul 2021 07:37:30 GMT
499
+ Mon, 26 Jul 2021 07:37:30 GMT
354
500
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.45..@fluentui/react-tabster_v9.0.0-alpha.46)
355
501
 
356
502
  ### Changes
@@ -359,7 +505,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
359
505
 
360
506
  ## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.45)
361
507
 
362
- Fri, 23 Jul 2021 07:38:19 GMT
508
+ Fri, 23 Jul 2021 07:38:19 GMT
363
509
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.44..@fluentui/react-tabster_v9.0.0-alpha.45)
364
510
 
365
511
  ### Changes
@@ -368,7 +514,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
368
514
 
369
515
  ## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.44)
370
516
 
371
- Thu, 22 Jul 2021 07:36:55 GMT
517
+ Thu, 22 Jul 2021 07:36:55 GMT
372
518
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.43..@fluentui/react-tabster_v9.0.0-alpha.44)
373
519
 
374
520
  ### Changes
@@ -377,7 +523,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
377
523
 
378
524
  ## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.43)
379
525
 
380
- Thu, 15 Jul 2021 07:36:18 GMT
526
+ Thu, 15 Jul 2021 07:36:18 GMT
381
527
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.42..@fluentui/react-tabster_v9.0.0-alpha.43)
382
528
 
383
529
  ### Changes
@@ -386,7 +532,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
386
532
 
387
533
  ## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.42)
388
534
 
389
- Tue, 13 Jul 2021 22:32:58 GMT
535
+ Tue, 13 Jul 2021 22:32:58 GMT
390
536
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.41..@fluentui/react-tabster_v9.0.0-alpha.42)
391
537
 
392
538
  ### Changes
@@ -395,7 +541,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
395
541
 
396
542
  ## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.41)
397
543
 
398
- Tue, 13 Jul 2021 07:35:36 GMT
544
+ Tue, 13 Jul 2021 07:35:36 GMT
399
545
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.40..@fluentui/react-tabster_v9.0.0-alpha.41)
400
546
 
401
547
  ### Changes
@@ -404,7 +550,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
404
550
 
405
551
  ## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.40)
406
552
 
407
- Fri, 09 Jul 2021 07:39:31 GMT
553
+ Fri, 09 Jul 2021 07:39:31 GMT
408
554
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.39..@fluentui/react-tabster_v9.0.0-alpha.40)
409
555
 
410
556
  ### Patches
@@ -418,7 +564,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
418
564
 
419
565
  ## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.39)
420
566
 
421
- Fri, 02 Jul 2021 23:15:55 GMT
567
+ Fri, 02 Jul 2021 23:15:55 GMT
422
568
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.38..@fluentui/react-tabster_v9.0.0-alpha.39)
423
569
 
424
570
  ### Changes
@@ -427,7 +573,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
427
573
 
428
574
  ## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.38)
429
575
 
430
- Fri, 02 Jul 2021 07:37:06 GMT
576
+ Fri, 02 Jul 2021 07:37:06 GMT
431
577
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.37..@fluentui/react-tabster_v9.0.0-alpha.38)
432
578
 
433
579
  ### Changes
@@ -436,7 +582,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
436
582
 
437
583
  ## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.37)
438
584
 
439
- Thu, 01 Jul 2021 07:35:05 GMT
585
+ Thu, 01 Jul 2021 07:35:05 GMT
440
586
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.36..@fluentui/react-tabster_v9.0.0-alpha.37)
441
587
 
442
588
  ### Changes
@@ -445,7 +591,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
445
591
 
446
592
  ## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.36)
447
593
 
448
- Wed, 30 Jun 2021 07:38:35 GMT
594
+ Wed, 30 Jun 2021 07:38:35 GMT
449
595
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.35..@fluentui/react-tabster_v9.0.0-alpha.36)
450
596
 
451
597
  ### Changes
@@ -454,7 +600,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
454
600
 
455
601
  ## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.35)
456
602
 
457
- Tue, 29 Jun 2021 07:33:32 GMT
603
+ Tue, 29 Jun 2021 07:33:32 GMT
458
604
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.34..@fluentui/react-tabster_v9.0.0-alpha.35)
459
605
 
460
606
  ### Changes
@@ -463,7 +609,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
463
609
 
464
610
  ## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.34)
465
611
 
466
- Tue, 15 Jun 2021 07:40:20 GMT
612
+ Tue, 15 Jun 2021 07:40:20 GMT
467
613
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.33..@fluentui/react-tabster_v9.0.0-alpha.34)
468
614
 
469
615
  ### Changes
@@ -472,7 +618,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
472
618
 
473
619
  ## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.33)
474
620
 
475
- Mon, 07 Jun 2021 07:38:15 GMT
621
+ Mon, 07 Jun 2021 07:38:15 GMT
476
622
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.32..@fluentui/react-tabster_v9.0.0-alpha.33)
477
623
 
478
624
  ### Patches
@@ -486,7 +632,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
486
632
 
487
633
  ## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.32)
488
634
 
489
- Fri, 04 Jun 2021 07:37:23 GMT
635
+ Fri, 04 Jun 2021 07:37:23 GMT
490
636
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.31..@fluentui/react-tabster_v9.0.0-alpha.32)
491
637
 
492
638
  ### Changes
@@ -495,7 +641,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
495
641
 
496
642
  ## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.31)
497
643
 
498
- Thu, 03 Jun 2021 07:36:03 GMT
644
+ Thu, 03 Jun 2021 07:36:03 GMT
499
645
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.30..@fluentui/react-tabster_v9.0.0-alpha.31)
500
646
 
501
647
  ### Changes
@@ -504,7 +650,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
504
650
 
505
651
  ## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.30)
506
652
 
507
- Tue, 01 Jun 2021 07:31:58 GMT
653
+ Tue, 01 Jun 2021 07:31:58 GMT
508
654
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.29..@fluentui/react-tabster_v9.0.0-alpha.30)
509
655
 
510
656
  ### Changes
@@ -514,7 +660,7 @@ Tue, 01 Jun 2021 07:31:58 GMT
514
660
 
515
661
  ## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.29)
516
662
 
517
- Fri, 28 May 2021 07:33:57 GMT
663
+ Fri, 28 May 2021 07:33:57 GMT
518
664
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.28..@fluentui/react-tabster_v9.0.0-alpha.29)
519
665
 
520
666
  ### Changes
@@ -523,7 +669,7 @@ Fri, 28 May 2021 07:33:57 GMT
523
669
 
524
670
  ## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.28)
525
671
 
526
- Wed, 26 May 2021 07:35:43 GMT
672
+ Wed, 26 May 2021 07:35:43 GMT
527
673
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.27..@fluentui/react-tabster_v9.0.0-alpha.28)
528
674
 
529
675
  ### Changes
@@ -532,16 +678,16 @@ Wed, 26 May 2021 07:35:43 GMT
532
678
 
533
679
  ## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.27)
534
680
 
535
- Fri, 21 May 2021 07:34:54 GMT
681
+ Fri, 21 May 2021 07:34:54 GMT
536
682
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.26..@fluentui/react-tabster_v9.0.0-alpha.27)
537
683
 
538
684
  ### Changes
539
685
 
540
- - Return memoized find* callbacks from `useFocusFinders` ([PR #18262](https://github.com/microsoft/fluentui/pull/18262) by lingfan.gao@microsoft.com)
686
+ - Return memoized find\* callbacks from `useFocusFinders` ([PR #18262](https://github.com/microsoft/fluentui/pull/18262) by lingfan.gao@microsoft.com)
541
687
 
542
688
  ## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.26)
543
689
 
544
- Thu, 20 May 2021 07:41:54 GMT
690
+ Thu, 20 May 2021 07:41:54 GMT
545
691
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.25..@fluentui/react-tabster_v9.0.0-alpha.26)
546
692
 
547
693
  ### Patches
@@ -555,7 +701,7 @@ Thu, 20 May 2021 07:41:54 GMT
555
701
 
556
702
  ## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.25)
557
703
 
558
- Wed, 19 May 2021 07:34:20 GMT
704
+ Wed, 19 May 2021 07:34:20 GMT
559
705
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.24..@fluentui/react-tabster_v9.0.0-alpha.25)
560
706
 
561
707
  ### Changes
@@ -564,7 +710,7 @@ Wed, 19 May 2021 07:34:20 GMT
564
710
 
565
711
  ## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.24)
566
712
 
567
- Thu, 13 May 2021 07:36:55 GMT
713
+ Thu, 13 May 2021 07:36:55 GMT
568
714
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.23..@fluentui/react-tabster_v9.0.0-alpha.24)
569
715
 
570
716
  ### Changes
@@ -573,7 +719,7 @@ Thu, 13 May 2021 07:36:55 GMT
573
719
 
574
720
  ## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.23)
575
721
 
576
- Wed, 12 May 2021 07:36:20 GMT
722
+ Wed, 12 May 2021 07:36:20 GMT
577
723
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.22..@fluentui/react-tabster_v9.0.0-alpha.23)
578
724
 
579
725
  ### Changes
@@ -582,7 +728,7 @@ Wed, 12 May 2021 07:36:20 GMT
582
728
 
583
729
  ## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.22)
584
730
 
585
- Mon, 03 May 2021 07:45:19 GMT
731
+ Mon, 03 May 2021 07:45:19 GMT
586
732
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.21..@fluentui/react-tabster_v9.0.0-alpha.22)
587
733
 
588
734
  ### Changes
@@ -591,7 +737,7 @@ Mon, 03 May 2021 07:45:19 GMT
591
737
 
592
738
  ## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.21)
593
739
 
594
- Fri, 30 Apr 2021 07:42:23 GMT
740
+ Fri, 30 Apr 2021 07:42:23 GMT
595
741
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.20..@fluentui/react-tabster_v9.0.0-alpha.21)
596
742
 
597
743
  ### Patches
@@ -605,7 +751,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
605
751
 
606
752
  ## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.20)
607
753
 
608
- Wed, 28 Apr 2021 07:32:59 GMT
754
+ Wed, 28 Apr 2021 07:32:59 GMT
609
755
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.19..@fluentui/react-tabster_v9.0.0-alpha.20)
610
756
 
611
757
  ### Changes
@@ -614,7 +760,7 @@ Wed, 28 Apr 2021 07:32:59 GMT
614
760
 
615
761
  ## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.19)
616
762
 
617
- Fri, 23 Apr 2021 07:37:10 GMT
763
+ Fri, 23 Apr 2021 07:37:10 GMT
618
764
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.18..@fluentui/react-tabster_v9.0.0-alpha.19)
619
765
 
620
766
  ### Patches
@@ -628,7 +774,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
628
774
 
629
775
  ## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.18)
630
776
 
631
- Thu, 22 Apr 2021 07:33:28 GMT
777
+ Thu, 22 Apr 2021 07:33:28 GMT
632
778
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.17..@fluentui/react-tabster_v9.0.0-alpha.18)
633
779
 
634
780
  ### Changes
@@ -637,7 +783,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
637
783
 
638
784
  ## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.17)
639
785
 
640
- Wed, 21 Apr 2021 07:31:50 GMT
786
+ Wed, 21 Apr 2021 07:31:50 GMT
641
787
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.16..@fluentui/react-tabster_v9.0.0-alpha.17)
642
788
 
643
789
  ### Changes
@@ -646,7 +792,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
646
792
 
647
793
  ## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.16)
648
794
 
649
- Tue, 20 Apr 2021 07:31:35 GMT
795
+ Tue, 20 Apr 2021 07:31:35 GMT
650
796
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.15..@fluentui/react-tabster_v9.0.0-alpha.16)
651
797
 
652
798
  ### Changes
@@ -655,7 +801,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
655
801
 
656
802
  ## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.15)
657
803
 
658
- Fri, 16 Apr 2021 18:08:21 GMT
804
+ Fri, 16 Apr 2021 18:08:21 GMT
659
805
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-tabster_v9.0.0-alpha.14..@fluentui/react-tabster_v9.0.0-alpha.15)
660
806
 
661
807
  ### Changes
@@ -664,7 +810,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
664
810
 
665
811
  ## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-tabster_v9.0.0-alpha.14)
666
812
 
667
- Thu, 01 Apr 2021 20:13:37 GMT
813
+ Thu, 01 Apr 2021 20:13:37 GMT
668
814
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.13..@fluentui/react-tabster_v9.0.0-alpha.14)
669
815
 
670
816
  ### Changes
@@ -673,7 +819,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
673
819
 
674
820
  ## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.13)
675
821
 
676
- Wed, 31 Mar 2021 00:53:43 GMT
822
+ Wed, 31 Mar 2021 00:53:43 GMT
677
823
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.12..@fluentui/react-focus-management_v9.0.0-alpha.13)
678
824
 
679
825
  ### Patches
@@ -687,7 +833,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
687
833
 
688
834
  ## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.12)
689
835
 
690
- Tue, 30 Mar 2021 07:34:45 GMT
836
+ Tue, 30 Mar 2021 07:34:45 GMT
691
837
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.11..@fluentui/react-focus-management_v9.0.0-alpha.12)
692
838
 
693
839
  ### Changes
@@ -696,7 +842,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
696
842
 
697
843
  ## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.11)
698
844
 
699
- Fri, 26 Mar 2021 07:32:34 GMT
845
+ Fri, 26 Mar 2021 07:32:34 GMT
700
846
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.10..@fluentui/react-focus-management_v9.0.0-alpha.11)
701
847
 
702
848
  ### Changes
@@ -705,7 +851,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
705
851
 
706
852
  ## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.10)
707
853
 
708
- Thu, 25 Mar 2021 07:33:24 GMT
854
+ Thu, 25 Mar 2021 07:33:24 GMT
709
855
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.9..@fluentui/react-focus-management_v9.0.0-alpha.10)
710
856
 
711
857
  ### Changes
@@ -714,7 +860,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
714
860
 
715
861
  ## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.9)
716
862
 
717
- Tue, 23 Mar 2021 07:31:43 GMT
863
+ Tue, 23 Mar 2021 07:31:43 GMT
718
864
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.8..@fluentui/react-focus-management_v9.0.0-alpha.9)
719
865
 
720
866
  ### Changes
@@ -723,7 +869,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
723
869
 
724
870
  ## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.8)
725
871
 
726
- Thu, 18 Mar 2021 20:15:34 GMT
872
+ Thu, 18 Mar 2021 20:15:34 GMT
727
873
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.7..@fluentui/react-focus-management_v9.0.0-alpha.8)
728
874
 
729
875
  ### Changes
@@ -732,7 +878,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
732
878
 
733
879
  ## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.7)
734
880
 
735
- Mon, 15 Mar 2021 07:36:20 GMT
881
+ Mon, 15 Mar 2021 07:36:20 GMT
736
882
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.6..@fluentui/react-focus-management_v9.0.0-alpha.7)
737
883
 
738
884
  ### Changes
@@ -741,7 +887,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
741
887
 
742
888
  ## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.6)
743
889
 
744
- Wed, 10 Mar 2021 07:34:39 GMT
890
+ Wed, 10 Mar 2021 07:34:39 GMT
745
891
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.5..@fluentui/react-focus-management_v9.0.0-alpha.6)
746
892
 
747
893
  ### Changes
@@ -750,7 +896,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
750
896
 
751
897
  ## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.5)
752
898
 
753
- Fri, 05 Mar 2021 20:30:59 GMT
899
+ Fri, 05 Mar 2021 20:30:59 GMT
754
900
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.4..@fluentui/react-focus-management_v9.0.0-alpha.5)
755
901
 
756
902
  ### Changes
@@ -759,7 +905,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
759
905
 
760
906
  ## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.4)
761
907
 
762
- Wed, 03 Mar 2021 00:10:09 GMT
908
+ Wed, 03 Mar 2021 00:10:09 GMT
763
909
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.3..@fluentui/react-focus-management_v9.0.0-alpha.4)
764
910
 
765
911
  ### Changes
@@ -768,7 +914,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
768
914
 
769
915
  ## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.3)
770
916
 
771
- Tue, 02 Mar 2021 07:24:27 GMT
917
+ Tue, 02 Mar 2021 07:24:27 GMT
772
918
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.2..@fluentui/react-focus-management_v9.0.0-alpha.3)
773
919
 
774
920
  ### Changes
@@ -777,7 +923,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
777
923
 
778
924
  ## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-focus-management_v9.0.0-alpha.2)
779
925
 
780
- Fri, 26 Feb 2021 01:16:27 GMT
926
+ Fri, 26 Feb 2021 01:16:27 GMT
781
927
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-focus-management_v9.0.0-alpha.1..@fluentui/react-focus-management_v9.0.0-alpha.2)
782
928
 
783
929
  ### Patches