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

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