@fluentui/react-toolbar 9.0.0-beta.9 → 9.0.0-rc.2

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 (168) hide show
  1. package/CHANGELOG.json +498 -1
  2. package/CHANGELOG.md +119 -2
  3. package/README.md +1 -1
  4. package/dist/index.d.ts +36 -38
  5. package/lib/Toolbar.js.map +1 -1
  6. package/lib/ToolbarButton.js.map +1 -1
  7. package/lib/ToolbarDivider.js.map +1 -1
  8. package/lib/ToolbarGroup.js +2 -0
  9. package/lib/ToolbarGroup.js.map +1 -0
  10. package/lib/ToolbarRadioButton.js +2 -0
  11. package/lib/ToolbarRadioButton.js.map +1 -0
  12. package/lib/ToolbarToggleButton.js.map +1 -1
  13. package/lib/components/Toolbar/Toolbar.js.map +1 -1
  14. package/lib/components/Toolbar/Toolbar.types.js.map +1 -1
  15. package/lib/components/Toolbar/ToolbarContext.js +1 -0
  16. package/lib/components/Toolbar/ToolbarContext.js.map +1 -1
  17. package/lib/components/Toolbar/index.js.map +1 -1
  18. package/lib/components/Toolbar/renderToolbar.js.map +1 -1
  19. package/lib/components/Toolbar/useToolbar.js +49 -11
  20. package/lib/components/Toolbar/useToolbar.js.map +1 -1
  21. package/lib/components/Toolbar/useToolbarContextValues.js +3 -1
  22. package/lib/components/Toolbar/useToolbarContextValues.js.map +1 -1
  23. package/lib/components/Toolbar/useToolbarStyles.js +14 -3
  24. package/lib/components/Toolbar/useToolbarStyles.js.map +1 -1
  25. package/lib/components/ToolbarButton/ToolbarButton.js +5 -9
  26. package/lib/components/ToolbarButton/ToolbarButton.js.map +1 -1
  27. package/lib/components/ToolbarButton/ToolbarButton.types.js.map +1 -1
  28. package/lib/components/ToolbarButton/index.js.map +1 -1
  29. package/lib/components/ToolbarButton/useToolbarButton.js +23 -0
  30. package/lib/components/ToolbarButton/useToolbarButton.js.map +1 -0
  31. package/lib/components/ToolbarButton/useToolbarButtonStyles.js +28 -0
  32. package/lib/components/ToolbarButton/useToolbarButtonStyles.js.map +1 -0
  33. package/lib/components/ToolbarDivider/ToolbarDivider.js.map +1 -1
  34. package/lib/components/ToolbarDivider/ToolbarDivider.types.js.map +1 -1
  35. package/lib/components/ToolbarDivider/index.js.map +1 -1
  36. package/lib/components/ToolbarDivider/useToolbarDivider.js.map +1 -1
  37. package/lib/components/ToolbarDivider/useToolbarDividerStyles.js.map +1 -1
  38. package/lib/components/ToolbarGroup/ToolbarGroup.js +16 -0
  39. package/lib/components/ToolbarGroup/ToolbarGroup.js.map +1 -0
  40. package/lib/components/ToolbarGroup/ToolbarGroup.types.js +2 -0
  41. package/lib/components/ToolbarGroup/ToolbarGroup.types.js.map +1 -0
  42. package/lib/components/ToolbarGroup/index.js +3 -0
  43. package/lib/components/ToolbarGroup/index.js.map +1 -0
  44. package/lib/components/ToolbarGroup/renderToolbarGroup.js +15 -0
  45. package/lib/components/ToolbarGroup/renderToolbarGroup.js.map +1 -0
  46. package/lib/components/ToolbarGroup/useToolbarGroup.js +20 -0
  47. package/lib/components/ToolbarGroup/useToolbarGroup.js.map +1 -0
  48. package/lib/components/ToolbarGroup/useToolbarGroupStyles.js +28 -0
  49. package/lib/components/ToolbarGroup/useToolbarGroupStyles.js.map +1 -0
  50. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.js +15 -0
  51. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.js.map +1 -0
  52. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.types.js +2 -0
  53. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.types.js.map +1 -0
  54. package/lib/components/ToolbarRadioButton/index.js +3 -0
  55. package/lib/components/ToolbarRadioButton/index.js.map +1 -0
  56. package/lib/components/ToolbarRadioButton/useToolbarRadioButton.js +38 -0
  57. package/lib/components/ToolbarRadioButton/useToolbarRadioButton.js.map +1 -0
  58. package/lib/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js +22 -0
  59. package/lib/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js.map +1 -0
  60. package/lib/components/ToolbarToggleButton/ToolbarToggleButton.js +3 -2
  61. package/lib/components/ToolbarToggleButton/ToolbarToggleButton.js.map +1 -1
  62. package/lib/components/ToolbarToggleButton/ToolbarToggleButton.types.js.map +1 -1
  63. package/lib/components/ToolbarToggleButton/index.js.map +1 -1
  64. package/lib/components/ToolbarToggleButton/useToolbarToggleButton.js.map +1 -1
  65. package/lib/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js +22 -0
  66. package/lib/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js.map +1 -0
  67. package/lib/index.js +2 -2
  68. package/lib/index.js.map +1 -1
  69. package/lib-commonjs/Toolbar.js.map +1 -1
  70. package/lib-commonjs/ToolbarButton.js.map +1 -1
  71. package/lib-commonjs/ToolbarDivider.js.map +1 -1
  72. package/lib-commonjs/{ToolbarRadio.js → ToolbarGroup.js} +2 -2
  73. package/lib-commonjs/ToolbarGroup.js.map +1 -0
  74. package/lib-commonjs/{ToolbarRadioGroup.js → ToolbarRadioButton.js} +2 -2
  75. package/lib-commonjs/ToolbarRadioButton.js.map +1 -0
  76. package/lib-commonjs/ToolbarToggleButton.js.map +1 -1
  77. package/lib-commonjs/components/Toolbar/Toolbar.js.map +1 -1
  78. package/lib-commonjs/components/Toolbar/ToolbarContext.js +1 -0
  79. package/lib-commonjs/components/Toolbar/ToolbarContext.js.map +1 -1
  80. package/lib-commonjs/components/Toolbar/index.js.map +1 -1
  81. package/lib-commonjs/components/Toolbar/renderToolbar.js.map +1 -1
  82. package/lib-commonjs/components/Toolbar/useToolbar.js +49 -11
  83. package/lib-commonjs/components/Toolbar/useToolbar.js.map +1 -1
  84. package/lib-commonjs/components/Toolbar/useToolbarContextValues.js +3 -1
  85. package/lib-commonjs/components/Toolbar/useToolbarContextValues.js.map +1 -1
  86. package/lib-commonjs/components/Toolbar/useToolbarStyles.js +14 -3
  87. package/lib-commonjs/components/Toolbar/useToolbarStyles.js.map +1 -1
  88. package/lib-commonjs/components/ToolbarButton/ToolbarButton.js +5 -8
  89. package/lib-commonjs/components/ToolbarButton/ToolbarButton.js.map +1 -1
  90. package/lib-commonjs/components/ToolbarButton/index.js.map +1 -1
  91. package/lib-commonjs/components/ToolbarButton/useToolbarButton.js +33 -0
  92. package/lib-commonjs/components/ToolbarButton/useToolbarButton.js.map +1 -0
  93. package/lib-commonjs/components/ToolbarButton/useToolbarButtonStyles.js +38 -0
  94. package/lib-commonjs/components/ToolbarButton/useToolbarButtonStyles.js.map +1 -0
  95. package/lib-commonjs/components/ToolbarDivider/ToolbarDivider.js.map +1 -1
  96. package/lib-commonjs/components/ToolbarDivider/index.js.map +1 -1
  97. package/lib-commonjs/components/ToolbarDivider/useToolbarDivider.js.map +1 -1
  98. package/lib-commonjs/components/ToolbarDivider/useToolbarDividerStyles.js.map +1 -1
  99. package/lib-commonjs/components/ToolbarGroup/ToolbarGroup.js +27 -0
  100. package/lib-commonjs/components/ToolbarGroup/ToolbarGroup.js.map +1 -0
  101. package/lib-commonjs/components/{ToolbarRadio/ToolbarRadio.types.js → ToolbarGroup/ToolbarGroup.types.js} +1 -1
  102. package/lib-commonjs/components/{ToolbarRadio/ToolbarRadio.types.js.map → ToolbarGroup/ToolbarGroup.types.js.map} +0 -0
  103. package/lib-commonjs/components/ToolbarGroup/index.js +12 -0
  104. package/lib-commonjs/components/ToolbarGroup/index.js.map +1 -0
  105. package/lib-commonjs/components/ToolbarGroup/renderToolbarGroup.js +26 -0
  106. package/lib-commonjs/components/ToolbarGroup/renderToolbarGroup.js.map +1 -0
  107. package/lib-commonjs/components/ToolbarGroup/useToolbarGroup.js +30 -0
  108. package/lib-commonjs/components/ToolbarGroup/useToolbarGroup.js.map +1 -0
  109. package/lib-commonjs/components/ToolbarGroup/useToolbarGroupStyles.js +38 -0
  110. package/lib-commonjs/components/ToolbarGroup/useToolbarGroupStyles.js.map +1 -0
  111. package/lib-commonjs/components/ToolbarRadioButton/ToolbarRadioButton.js +26 -0
  112. package/lib-commonjs/components/ToolbarRadioButton/ToolbarRadioButton.js.map +1 -0
  113. package/lib-commonjs/components/{ToolbarRadioGroup/ToolbarRadioGroup.types.js → ToolbarRadioButton/ToolbarRadioButton.types.js} +1 -1
  114. package/lib-commonjs/components/{ToolbarRadioGroup/ToolbarRadioGroup.types.js.map → ToolbarRadioButton/ToolbarRadioButton.types.js.map} +0 -0
  115. package/lib-commonjs/components/ToolbarRadioButton/index.js +12 -0
  116. package/lib-commonjs/components/ToolbarRadioButton/index.js.map +1 -0
  117. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButton.js +50 -0
  118. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButton.js.map +1 -0
  119. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js +33 -0
  120. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js.map +1 -0
  121. package/lib-commonjs/components/ToolbarToggleButton/ToolbarToggleButton.js +3 -1
  122. package/lib-commonjs/components/ToolbarToggleButton/ToolbarToggleButton.js.map +1 -1
  123. package/lib-commonjs/components/ToolbarToggleButton/index.js.map +1 -1
  124. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButton.js.map +1 -1
  125. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js +33 -0
  126. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js.map +1 -0
  127. package/lib-commonjs/index.js +7 -7
  128. package/lib-commonjs/index.js.map +1 -1
  129. package/package.json +27 -20
  130. package/Spec.md +0 -140
  131. package/lib/ToolbarRadio.js +0 -2
  132. package/lib/ToolbarRadio.js.map +0 -1
  133. package/lib/ToolbarRadioGroup.js +0 -2
  134. package/lib/ToolbarRadioGroup.js.map +0 -1
  135. package/lib/components/ToolbarRadio/ToolbarRadio.js +0 -19
  136. package/lib/components/ToolbarRadio/ToolbarRadio.js.map +0 -1
  137. package/lib/components/ToolbarRadio/ToolbarRadio.types.js +0 -2
  138. package/lib/components/ToolbarRadio/ToolbarRadio.types.js.map +0 -1
  139. package/lib/components/ToolbarRadio/index.js +0 -3
  140. package/lib/components/ToolbarRadio/index.js.map +0 -1
  141. package/lib/components/ToolbarRadio/useToolbarRadioStyles.js +0 -41
  142. package/lib/components/ToolbarRadio/useToolbarRadioStyles.js.map +0 -1
  143. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.js +0 -20
  144. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.js.map +0 -1
  145. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.types.js +0 -2
  146. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.types.js.map +0 -1
  147. package/lib/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js +0 -22
  148. package/lib/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js.map +0 -1
  149. package/lib/components/ToolbarRadioGroup/index.js +0 -3
  150. package/lib/components/ToolbarRadioGroup/index.js.map +0 -1
  151. package/lib/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js +0 -29
  152. package/lib/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js.map +0 -1
  153. package/lib-commonjs/ToolbarRadio.js.map +0 -1
  154. package/lib-commonjs/ToolbarRadioGroup.js.map +0 -1
  155. package/lib-commonjs/components/ToolbarRadio/ToolbarRadio.js +0 -30
  156. package/lib-commonjs/components/ToolbarRadio/ToolbarRadio.js.map +0 -1
  157. package/lib-commonjs/components/ToolbarRadio/index.js +0 -12
  158. package/lib-commonjs/components/ToolbarRadio/index.js.map +0 -1
  159. package/lib-commonjs/components/ToolbarRadio/useToolbarRadioStyles.js +0 -51
  160. package/lib-commonjs/components/ToolbarRadio/useToolbarRadioStyles.js.map +0 -1
  161. package/lib-commonjs/components/ToolbarRadioGroup/ToolbarRadioGroup.js +0 -31
  162. package/lib-commonjs/components/ToolbarRadioGroup/ToolbarRadioGroup.js.map +0 -1
  163. package/lib-commonjs/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js +0 -31
  164. package/lib-commonjs/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js.map +0 -1
  165. package/lib-commonjs/components/ToolbarRadioGroup/index.js +0 -12
  166. package/lib-commonjs/components/ToolbarRadioGroup/index.js.map +0 -1
  167. package/lib-commonjs/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js +0 -39
  168. package/lib-commonjs/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,504 @@
2
2
  "name": "@fluentui/react-toolbar",
3
3
  "entries": [
4
4
  {
5
- "date": "Thu, 13 Oct 2022 10:59:40 GMT",
5
+ "date": "Wed, 21 Dec 2022 10:17:16 GMT",
6
+ "tag": "@fluentui/react-toolbar_v9.0.0-rc.2",
7
+ "version": "9.0.0-rc.2",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@fluentui/react-toolbar",
13
+ "comment": "Bump @fluentui/react-button to v9.1.12",
14
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-toolbar",
19
+ "comment": "Bump @fluentui/react-divider to v9.1.8",
20
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-toolbar",
25
+ "comment": "Bump @fluentui/react-theme to v9.1.5",
26
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-toolbar",
31
+ "comment": "Bump @fluentui/react-radio to v9.0.15",
32
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-toolbar",
37
+ "comment": "Bump @fluentui/react-tabster to v9.3.4",
38
+ "commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
39
+ }
40
+ ]
41
+ }
42
+ },
43
+ {
44
+ "date": "Tue, 20 Dec 2022 14:59:32 GMT",
45
+ "tag": "@fluentui/react-toolbar_v9.0.0-rc.1",
46
+ "version": "9.0.0-rc.1",
47
+ "comments": {
48
+ "none": [
49
+ {
50
+ "author": "chassunc@microsoft.com",
51
+ "package": "@fluentui/react-toolbar",
52
+ "commit": "bb467c1f5f53e3f1bf3adbc5ce1af5e544284744",
53
+ "comment": "chore: bump react toolbar"
54
+ },
55
+ {
56
+ "author": "chassunc@microsoft.com",
57
+ "package": "@fluentui/react-toolbar",
58
+ "commit": "501417bb2baed548d19cfffa6a0e3d2d5f8816fb",
59
+ "comment": "feat: Implement `ToolbarGroup` component"
60
+ },
61
+ {
62
+ "author": "chassunc@microsoft.com",
63
+ "package": "@fluentui/react-toolbar",
64
+ "commit": "267b34f21c2ecef570540be8d17c68b04f365a9d",
65
+ "comment": "feat: add Vertical Button variation for toolbar"
66
+ }
67
+ ],
68
+ "prerelease": [
69
+ {
70
+ "author": "tristan.watanabe@gmail.com",
71
+ "package": "@fluentui/react-toolbar",
72
+ "commit": "a5ab294131ad122d9e76118183e771aeb133d9db",
73
+ "comment": "chore: Migrate to new package structure."
74
+ },
75
+ {
76
+ "author": "beachball",
77
+ "package": "@fluentui/react-toolbar",
78
+ "comment": "Bump @fluentui/react-button to v9.1.11",
79
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
80
+ },
81
+ {
82
+ "author": "beachball",
83
+ "package": "@fluentui/react-toolbar",
84
+ "comment": "Bump @fluentui/react-divider to v9.1.7",
85
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
86
+ },
87
+ {
88
+ "author": "beachball",
89
+ "package": "@fluentui/react-toolbar",
90
+ "comment": "Bump @fluentui/react-theme to v9.1.4",
91
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
92
+ },
93
+ {
94
+ "author": "beachball",
95
+ "package": "@fluentui/react-toolbar",
96
+ "comment": "Bump @fluentui/react-utilities to v9.3.0",
97
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
98
+ },
99
+ {
100
+ "author": "beachball",
101
+ "package": "@fluentui/react-toolbar",
102
+ "comment": "Bump @fluentui/react-context-selector to v9.1.3",
103
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
104
+ },
105
+ {
106
+ "author": "beachball",
107
+ "package": "@fluentui/react-toolbar",
108
+ "comment": "Bump @fluentui/react-radio to v9.0.14",
109
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
110
+ },
111
+ {
112
+ "author": "beachball",
113
+ "package": "@fluentui/react-toolbar",
114
+ "comment": "Bump @fluentui/react-tabster to v9.3.3",
115
+ "commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
116
+ }
117
+ ]
118
+ }
119
+ },
120
+ {
121
+ "date": "Mon, 05 Dec 2022 18:29:37 GMT",
122
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.15",
123
+ "version": "9.0.0-beta.15",
124
+ "comments": {
125
+ "none": [
126
+ {
127
+ "author": "chassunc@microsoft.com",
128
+ "package": "@fluentui/react-toolbar",
129
+ "commit": "803091ab911f810964555cedb64f7355df2d4554",
130
+ "comment": "chore: update default button appearance for toolbar"
131
+ },
132
+ {
133
+ "author": "chassunc@microsoft.com",
134
+ "package": "@fluentui/react-toolbar",
135
+ "commit": "1bff9a3148961667fe516b46fead5798db794ae6",
136
+ "comment": "feat: add large size for toolbar"
137
+ }
138
+ ],
139
+ "prerelease": [
140
+ {
141
+ "author": "beachball",
142
+ "package": "@fluentui/react-toolbar",
143
+ "comment": "Bump @fluentui/react-button to v9.1.10",
144
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
145
+ },
146
+ {
147
+ "author": "beachball",
148
+ "package": "@fluentui/react-toolbar",
149
+ "comment": "Bump @fluentui/react-divider to v9.1.6",
150
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
151
+ },
152
+ {
153
+ "author": "beachball",
154
+ "package": "@fluentui/react-toolbar",
155
+ "comment": "Bump @fluentui/react-theme to v9.1.3",
156
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
157
+ },
158
+ {
159
+ "author": "beachball",
160
+ "package": "@fluentui/react-toolbar",
161
+ "comment": "Bump @fluentui/react-radio to v9.0.13",
162
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
163
+ },
164
+ {
165
+ "author": "beachball",
166
+ "package": "@fluentui/react-toolbar",
167
+ "comment": "Bump @fluentui/react-tabster to v9.3.2",
168
+ "commit": "4c29542a51bf068e171690cc8e59c14489883912"
169
+ }
170
+ ]
171
+ }
172
+ },
173
+ {
174
+ "date": "Thu, 17 Nov 2022 23:05:30 GMT",
175
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.14",
176
+ "version": "9.0.0-beta.14",
177
+ "comments": {
178
+ "none": [
179
+ {
180
+ "author": "martinhochel@microsoft.com",
181
+ "package": "@fluentui/react-toolbar",
182
+ "commit": "ea768501802d65d63ddc63fff3816fb6b5008ae4",
183
+ "comment": "chore: update package scaffold"
184
+ },
185
+ {
186
+ "author": "chassunc@microsoft.com",
187
+ "package": "@fluentui/react-toolbar",
188
+ "commit": "4f5eec8081eed87fce6e8c4a071fb48e37629d1c",
189
+ "comment": "chore: add onClick on test title"
190
+ }
191
+ ],
192
+ "prerelease": [
193
+ {
194
+ "author": "beachball",
195
+ "package": "@fluentui/react-toolbar",
196
+ "comment": "Bump @fluentui/react-button to v9.1.9",
197
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
198
+ },
199
+ {
200
+ "author": "beachball",
201
+ "package": "@fluentui/react-toolbar",
202
+ "comment": "Bump @fluentui/react-divider to v9.1.5",
203
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
204
+ },
205
+ {
206
+ "author": "beachball",
207
+ "package": "@fluentui/react-toolbar",
208
+ "comment": "Bump @fluentui/react-utilities to v9.2.2",
209
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@fluentui/react-toolbar",
214
+ "comment": "Bump @fluentui/react-context-selector to v9.1.2",
215
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@fluentui/react-toolbar",
220
+ "comment": "Bump @fluentui/react-radio to v9.0.12",
221
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
222
+ },
223
+ {
224
+ "author": "beachball",
225
+ "package": "@fluentui/react-toolbar",
226
+ "comment": "Bump @fluentui/react-tabster to v9.3.1",
227
+ "commit": "94e156be5d3b5790d82dccf08c32672733fb9335"
228
+ }
229
+ ]
230
+ }
231
+ },
232
+ {
233
+ "date": "Fri, 11 Nov 2022 14:57:47 GMT",
234
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.13",
235
+ "version": "9.0.0-beta.13",
236
+ "comments": {
237
+ "prerelease": [
238
+ {
239
+ "author": "martinhochel@microsoft.com",
240
+ "package": "@fluentui/react-toolbar",
241
+ "commit": "b3907043bd8d7b650c55e8e7c3119b14f2606c38",
242
+ "comment": "fix: create valid export maps"
243
+ },
244
+ {
245
+ "author": "beachball",
246
+ "package": "@fluentui/react-toolbar",
247
+ "comment": "Bump @fluentui/react-button to v9.1.8",
248
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
249
+ },
250
+ {
251
+ "author": "beachball",
252
+ "package": "@fluentui/react-toolbar",
253
+ "comment": "Bump @fluentui/react-divider to v9.1.4",
254
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
255
+ },
256
+ {
257
+ "author": "beachball",
258
+ "package": "@fluentui/react-toolbar",
259
+ "comment": "Bump @fluentui/react-theme to v9.1.2",
260
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
261
+ },
262
+ {
263
+ "author": "beachball",
264
+ "package": "@fluentui/react-toolbar",
265
+ "comment": "Bump @fluentui/react-utilities to v9.2.1",
266
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
267
+ },
268
+ {
269
+ "author": "beachball",
270
+ "package": "@fluentui/react-toolbar",
271
+ "comment": "Bump @fluentui/react-context-selector to v9.1.1",
272
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
273
+ },
274
+ {
275
+ "author": "beachball",
276
+ "package": "@fluentui/react-toolbar",
277
+ "comment": "Bump @fluentui/react-radio to v9.0.11",
278
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
279
+ },
280
+ {
281
+ "author": "beachball",
282
+ "package": "@fluentui/react-toolbar",
283
+ "comment": "Bump @fluentui/react-tabster to v9.3.0",
284
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
285
+ },
286
+ {
287
+ "author": "beachball",
288
+ "package": "@fluentui/react-toolbar",
289
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.18",
290
+ "commit": "b4c9a0ae8d7444bf746f1307ab01e2dc16310720"
291
+ }
292
+ ],
293
+ "none": [
294
+ {
295
+ "author": "chassunc@microsoft.com",
296
+ "package": "@fluentui/react-toolbar",
297
+ "commit": "65768ac4e7c6d8bc233535ab8726d3c8f3f224bc",
298
+ "comment": "chore: update toolbar stories examples"
299
+ },
300
+ {
301
+ "author": "chassunc@microsoft.com",
302
+ "package": "@fluentui/react-toolbar",
303
+ "commit": "169e9b94b0cf741102596f106ed726d9402145cc",
304
+ "comment": "fix: ToolbarRadio example and click"
305
+ }
306
+ ]
307
+ }
308
+ },
309
+ {
310
+ "date": "Wed, 02 Nov 2022 11:58:05 GMT",
311
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.12",
312
+ "version": "9.0.0-beta.12",
313
+ "comments": {
314
+ "prerelease": [
315
+ {
316
+ "author": "olfedias@microsoft.com",
317
+ "package": "@fluentui/react-toolbar",
318
+ "commit": "c619ba066f11a8654e95375314824ba6b81b003e",
319
+ "comment": "chore: Update Griffel to latest version"
320
+ },
321
+ {
322
+ "author": "olfedias@microsoft.com",
323
+ "package": "@fluentui/react-toolbar",
324
+ "commit": "78d042e6d3053da0902ef75330249dbaedc2493c",
325
+ "comment": "chore: remove dependencies on Fluent UI v8"
326
+ },
327
+ {
328
+ "author": "beachball",
329
+ "package": "@fluentui/react-toolbar",
330
+ "comment": "Bump @fluentui/react-button to v9.1.7",
331
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
332
+ },
333
+ {
334
+ "author": "beachball",
335
+ "package": "@fluentui/react-toolbar",
336
+ "comment": "Bump @fluentui/react-divider to v9.1.3",
337
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
338
+ },
339
+ {
340
+ "author": "beachball",
341
+ "package": "@fluentui/react-toolbar",
342
+ "comment": "Bump @fluentui/react-utilities to v9.2.0",
343
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
344
+ },
345
+ {
346
+ "author": "beachball",
347
+ "package": "@fluentui/react-toolbar",
348
+ "comment": "Bump @fluentui/react-context-selector to v9.1.0",
349
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
350
+ },
351
+ {
352
+ "author": "beachball",
353
+ "package": "@fluentui/react-toolbar",
354
+ "comment": "Bump @fluentui/react-radio to v9.0.10",
355
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
356
+ },
357
+ {
358
+ "author": "beachball",
359
+ "package": "@fluentui/react-toolbar",
360
+ "comment": "Bump @fluentui/react-tabster to v9.2.1",
361
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
362
+ },
363
+ {
364
+ "author": "beachball",
365
+ "package": "@fluentui/react-toolbar",
366
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.17",
367
+ "commit": "393a7b169155997a97a6ce1ad36ee3eafc6f461b"
368
+ }
369
+ ],
370
+ "none": [
371
+ {
372
+ "author": "chassunc@microsoft.com",
373
+ "package": "@fluentui/react-toolbar",
374
+ "commit": "abfb64d82916efdb0e5129cf41081a13e4e9d9ff",
375
+ "comment": "chore: add few small toolbar improvements"
376
+ }
377
+ ]
378
+ }
379
+ },
380
+ {
381
+ "date": "Tue, 25 Oct 2022 22:09:49 GMT",
382
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.11",
383
+ "version": "9.0.0-beta.11",
384
+ "comments": {
385
+ "none": [
386
+ {
387
+ "author": "chassunc@microsoft.com",
388
+ "package": "@fluentui/react-toolbar",
389
+ "commit": "dba7e9c342ca32d05d49d341b3912cd79652f238",
390
+ "comment": "chore: remove best practices"
391
+ },
392
+ {
393
+ "author": "chassunc@microsoft.com",
394
+ "package": "@fluentui/react-toolbar",
395
+ "commit": "9bde21168a1032d2a429939b9b2d7d3ba590726f",
396
+ "comment": "feat: replace ToolbarRadio implementation by usage of toggle button as radio"
397
+ }
398
+ ]
399
+ }
400
+ },
401
+ {
402
+ "date": "Tue, 25 Oct 2022 00:35:39 GMT",
403
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.11",
404
+ "version": "9.0.0-beta.11",
405
+ "comments": {
406
+ "none": [
407
+ {
408
+ "author": "miroslav.stastny@microsoft.com",
409
+ "package": "@fluentui/react-toolbar",
410
+ "commit": "6ced976a8d0e6a0e2e207da8fe0eb810e2bd19bc",
411
+ "comment": "Update package readme"
412
+ }
413
+ ],
414
+ "prerelease": [
415
+ {
416
+ "author": "beachball",
417
+ "package": "@fluentui/react-toolbar",
418
+ "comment": "Bump @fluentui/react-button to v9.1.6",
419
+ "commit": "eef12b9ae58b64ff68576dc2d865b601e46c85b9"
420
+ }
421
+ ]
422
+ }
423
+ },
424
+ {
425
+ "date": "Thu, 20 Oct 2022 08:39:54 GMT",
426
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.10",
427
+ "version": "9.0.0-beta.10",
428
+ "comments": {
429
+ "none": [
430
+ {
431
+ "author": "chassunc@microsoft.com",
432
+ "package": "@fluentui/react-toolbar",
433
+ "commit": "9d4b8f5d85760307e49781ad694ae5db19b2018b",
434
+ "comment": "chore: typo"
435
+ }
436
+ ],
437
+ "prerelease": [
438
+ {
439
+ "author": "olfedias@microsoft.com",
440
+ "package": "@fluentui/react-toolbar",
441
+ "commit": "06865dada128321804646582f564ee86d835d174",
442
+ "comment": "chore: Update Griffel to latest version"
443
+ },
444
+ {
445
+ "author": "mgodbolt@microsoft.com",
446
+ "package": "@fluentui/react-toolbar",
447
+ "commit": "17096b3137d9d3e7c7443ddc3ce0738b2910a334",
448
+ "comment": "chore: Bump peer deps to support React 18"
449
+ },
450
+ {
451
+ "author": "beachball",
452
+ "package": "@fluentui/react-toolbar",
453
+ "comment": "Bump @fluentui/react-button to v9.1.5",
454
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
455
+ },
456
+ {
457
+ "author": "beachball",
458
+ "package": "@fluentui/react-toolbar",
459
+ "comment": "Bump @fluentui/react-divider to v9.1.2",
460
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
461
+ },
462
+ {
463
+ "author": "beachball",
464
+ "package": "@fluentui/react-toolbar",
465
+ "comment": "Bump @fluentui/react-theme to v9.1.1",
466
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
467
+ },
468
+ {
469
+ "author": "beachball",
470
+ "package": "@fluentui/react-toolbar",
471
+ "comment": "Bump @fluentui/react-utilities to v9.1.2",
472
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
473
+ },
474
+ {
475
+ "author": "beachball",
476
+ "package": "@fluentui/react-toolbar",
477
+ "comment": "Bump @fluentui/react-context-selector to v9.0.5",
478
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
479
+ },
480
+ {
481
+ "author": "beachball",
482
+ "package": "@fluentui/react-toolbar",
483
+ "comment": "Bump @fluentui/react-radio to v9.0.9",
484
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
485
+ },
486
+ {
487
+ "author": "beachball",
488
+ "package": "@fluentui/react-toolbar",
489
+ "comment": "Bump @fluentui/react-tabster to v9.2.0",
490
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
491
+ },
492
+ {
493
+ "author": "beachball",
494
+ "package": "@fluentui/react-toolbar",
495
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16",
496
+ "commit": "5ea1372675d910d76cf1b9cbd74d05b7c4e8fcbc"
497
+ }
498
+ ]
499
+ }
500
+ },
501
+ {
502
+ "date": "Thu, 13 Oct 2022 11:03:03 GMT",
6
503
  "tag": "@fluentui/react-toolbar_v9.0.0-beta.9",
7
504
  "version": "9.0.0-beta.9",
8
505
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,12 +1,129 @@
1
1
  # Change Log - @fluentui/react-toolbar
2
2
 
3
- This log was last generated on Thu, 13 Oct 2022 10:59:40 GMT and should not be manually modified.
3
+ This log was last generated on Wed, 21 Dec 2022 10:17:16 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-rc.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-rc.2)
8
+
9
+ Wed, 21 Dec 2022 10:17:16 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-rc.1..@fluentui/react-toolbar_v9.0.0-rc.2)
11
+
12
+ ### Changes
13
+
14
+ - Bump @fluentui/react-button to v9.1.12 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball)
15
+ - Bump @fluentui/react-divider to v9.1.8 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball)
16
+ - Bump @fluentui/react-theme to v9.1.5 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball)
17
+ - Bump @fluentui/react-radio to v9.0.15 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball)
18
+ - Bump @fluentui/react-tabster to v9.3.4 ([commit](https://github.com/microsoft/fluentui/commit/66bf89f634cad4a275e957d7a2214c7e73ff8c2e) by beachball)
19
+
20
+ ## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-rc.1)
21
+
22
+ Tue, 20 Dec 2022 14:59:32 GMT
23
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.15..@fluentui/react-toolbar_v9.0.0-rc.1)
24
+
25
+ ### Changes
26
+
27
+ - chore: Migrate to new package structure. ([PR #25920](https://github.com/microsoft/fluentui/pull/25920) by tristan.watanabe@gmail.com)
28
+ - Bump @fluentui/react-button to v9.1.11 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
29
+ - Bump @fluentui/react-divider to v9.1.7 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
30
+ - Bump @fluentui/react-theme to v9.1.4 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
31
+ - Bump @fluentui/react-utilities to v9.3.0 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
32
+ - Bump @fluentui/react-context-selector to v9.1.3 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
33
+ - Bump @fluentui/react-radio to v9.0.14 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
34
+ - Bump @fluentui/react-tabster to v9.3.3 ([PR #26047](https://github.com/microsoft/fluentui/pull/26047) by beachball)
35
+
36
+ ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.15)
37
+
38
+ Mon, 05 Dec 2022 18:29:37 GMT
39
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.14..@fluentui/react-toolbar_v9.0.0-beta.15)
40
+
41
+ ### Changes
42
+
43
+ - Bump @fluentui/react-button to v9.1.10 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball)
44
+ - Bump @fluentui/react-divider to v9.1.6 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball)
45
+ - Bump @fluentui/react-theme to v9.1.3 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball)
46
+ - Bump @fluentui/react-radio to v9.0.13 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball)
47
+ - Bump @fluentui/react-tabster to v9.3.2 ([PR #25798](https://github.com/microsoft/fluentui/pull/25798) by beachball)
48
+
49
+ ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.14)
50
+
51
+ Thu, 17 Nov 2022 23:05:30 GMT
52
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.13..@fluentui/react-toolbar_v9.0.0-beta.14)
53
+
54
+ ### Changes
55
+
56
+ - Bump @fluentui/react-button to v9.1.9 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball)
57
+ - Bump @fluentui/react-divider to v9.1.5 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball)
58
+ - Bump @fluentui/react-utilities to v9.2.2 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball)
59
+ - Bump @fluentui/react-context-selector to v9.1.2 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball)
60
+ - Bump @fluentui/react-radio to v9.0.12 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball)
61
+ - Bump @fluentui/react-tabster to v9.3.1 ([PR #25683](https://github.com/microsoft/fluentui/pull/25683) by beachball)
62
+
63
+ ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.13)
64
+
65
+ Fri, 11 Nov 2022 14:57:47 GMT
66
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.12..@fluentui/react-toolbar_v9.0.0-beta.13)
67
+
68
+ ### Changes
69
+
70
+ - fix: create valid export maps ([PR #25558](https://github.com/microsoft/fluentui/pull/25558) by martinhochel@microsoft.com)
71
+ - Bump @fluentui/react-button to v9.1.8 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
72
+ - Bump @fluentui/react-divider to v9.1.4 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
73
+ - Bump @fluentui/react-theme to v9.1.2 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
74
+ - Bump @fluentui/react-utilities to v9.2.1 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
75
+ - Bump @fluentui/react-context-selector to v9.1.1 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
76
+ - Bump @fluentui/react-radio to v9.0.11 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
77
+ - Bump @fluentui/react-tabster to v9.3.0 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
78
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.18 ([PR #25615](https://github.com/microsoft/fluentui/pull/25615) by beachball)
79
+
80
+ ## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.12)
81
+
82
+ Wed, 02 Nov 2022 11:58:05 GMT
83
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.11..@fluentui/react-toolbar_v9.0.0-beta.12)
84
+
85
+ ### Changes
86
+
87
+ - chore: Update Griffel to latest version ([PR #25412](https://github.com/microsoft/fluentui/pull/25412) by olfedias@microsoft.com)
88
+ - chore: remove dependencies on Fluent UI v8 ([PR #25466](https://github.com/microsoft/fluentui/pull/25466) by olfedias@microsoft.com)
89
+ - Bump @fluentui/react-button to v9.1.7 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
90
+ - Bump @fluentui/react-divider to v9.1.3 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
91
+ - Bump @fluentui/react-utilities to v9.2.0 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
92
+ - Bump @fluentui/react-context-selector to v9.1.0 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
93
+ - Bump @fluentui/react-radio to v9.0.10 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
94
+ - Bump @fluentui/react-tabster to v9.2.1 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
95
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.17 ([PR #25456](https://github.com/microsoft/fluentui/pull/25456) by beachball)
96
+
97
+ ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.11)
98
+
99
+ Tue, 25 Oct 2022 00:35:39 GMT
100
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.10..@fluentui/react-toolbar_v9.0.0-beta.11)
101
+
102
+ ### Changes
103
+
104
+ - Bump @fluentui/react-button to v9.1.6 ([PR #25363](https://github.com/microsoft/fluentui/pull/25363) by beachball)
105
+
106
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.10)
107
+
108
+ Thu, 20 Oct 2022 08:39:54 GMT
109
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.9..@fluentui/react-toolbar_v9.0.0-beta.10)
110
+
111
+ ### Changes
112
+
113
+ - chore: Update Griffel to latest version ([PR #25212](https://github.com/microsoft/fluentui/pull/25212) by olfedias@microsoft.com)
114
+ - chore: Bump peer deps to support React 18 ([PR #24972](https://github.com/microsoft/fluentui/pull/24972) by mgodbolt@microsoft.com)
115
+ - Bump @fluentui/react-button to v9.1.5 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
116
+ - Bump @fluentui/react-divider to v9.1.2 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
117
+ - Bump @fluentui/react-theme to v9.1.1 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
118
+ - Bump @fluentui/react-utilities to v9.1.2 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
119
+ - Bump @fluentui/react-context-selector to v9.0.5 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
120
+ - Bump @fluentui/react-radio to v9.0.9 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
121
+ - Bump @fluentui/react-tabster to v9.2.0 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
122
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.16 ([PR #25265](https://github.com/microsoft/fluentui/pull/25265) by beachball)
123
+
7
124
  ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-toolbar_v9.0.0-beta.9)
8
125
 
9
- Thu, 13 Oct 2022 10:59:40 GMT
126
+ Thu, 13 Oct 2022 11:03:03 GMT
10
127
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-toolbar_v9.0.0-beta.8..@fluentui/react-toolbar_v9.0.0-beta.9)
11
128
 
12
129
  ### Changes
package/README.md CHANGED
@@ -2,6 +2,6 @@
2
2
 
3
3
  ## WIP
4
4
 
5
- **React Toolbar components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
5
+ **React Toolbar components for [Fluent UI React](https://react.fluentui.dev)**
6
6
 
7
7
  These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.