@fluentui/react-toolbar 9.0.0-beta.8 → 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 (178) hide show
  1. package/CHANGELOG.json +533 -4
  2. package/CHANGELOG.md +126 -5
  3. package/README.md +1 -1
  4. package/dist/index.d.ts +54 -45
  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 +7 -8
  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 +52 -12
  20. package/lib/components/Toolbar/useToolbar.js.map +1 -1
  21. package/lib/components/Toolbar/useToolbarContextValues.js +8 -2
  22. package/lib/components/Toolbar/useToolbarContextValues.js.map +1 -1
  23. package/lib/components/Toolbar/useToolbarStyles.js +24 -2
  24. package/lib/components/Toolbar/useToolbarStyles.js.map +1 -1
  25. package/lib/components/ToolbarButton/ToolbarButton.js +5 -11
  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 +3 -5
  34. package/lib/components/ToolbarDivider/ToolbarDivider.js.map +1 -1
  35. package/lib/components/ToolbarDivider/ToolbarDivider.types.js.map +1 -1
  36. package/lib/components/ToolbarDivider/index.js +1 -0
  37. package/lib/components/ToolbarDivider/index.js.map +1 -1
  38. package/lib/components/ToolbarDivider/useToolbarDivider.js +20 -0
  39. package/lib/components/ToolbarDivider/useToolbarDivider.js.map +1 -0
  40. package/lib/components/ToolbarDivider/useToolbarDividerStyles.js +8 -2
  41. package/lib/components/ToolbarDivider/useToolbarDividerStyles.js.map +1 -1
  42. package/lib/components/ToolbarGroup/ToolbarGroup.js +16 -0
  43. package/lib/components/ToolbarGroup/ToolbarGroup.js.map +1 -0
  44. package/lib/components/ToolbarGroup/ToolbarGroup.types.js +2 -0
  45. package/lib/components/ToolbarGroup/ToolbarGroup.types.js.map +1 -0
  46. package/lib/components/ToolbarGroup/index.js +3 -0
  47. package/lib/components/ToolbarGroup/index.js.map +1 -0
  48. package/lib/components/ToolbarGroup/renderToolbarGroup.js +15 -0
  49. package/lib/components/ToolbarGroup/renderToolbarGroup.js.map +1 -0
  50. package/lib/components/ToolbarGroup/useToolbarGroup.js +20 -0
  51. package/lib/components/ToolbarGroup/useToolbarGroup.js.map +1 -0
  52. package/lib/components/ToolbarGroup/useToolbarGroupStyles.js +28 -0
  53. package/lib/components/ToolbarGroup/useToolbarGroupStyles.js.map +1 -0
  54. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.js +15 -0
  55. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.js.map +1 -0
  56. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.types.js +2 -0
  57. package/lib/components/ToolbarRadioButton/ToolbarRadioButton.types.js.map +1 -0
  58. package/lib/components/ToolbarRadioButton/index.js +3 -0
  59. package/lib/components/ToolbarRadioButton/index.js.map +1 -0
  60. package/lib/components/ToolbarRadioButton/useToolbarRadioButton.js +38 -0
  61. package/lib/components/ToolbarRadioButton/useToolbarRadioButton.js.map +1 -0
  62. package/lib/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js +22 -0
  63. package/lib/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js.map +1 -0
  64. package/lib/components/ToolbarToggleButton/ToolbarToggleButton.js +3 -2
  65. package/lib/components/ToolbarToggleButton/ToolbarToggleButton.js.map +1 -1
  66. package/lib/components/ToolbarToggleButton/ToolbarToggleButton.types.js.map +1 -1
  67. package/lib/components/ToolbarToggleButton/index.js.map +1 -1
  68. package/lib/components/ToolbarToggleButton/useToolbarToggleButton.js +14 -6
  69. package/lib/components/ToolbarToggleButton/useToolbarToggleButton.js.map +1 -1
  70. package/lib/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js +22 -0
  71. package/lib/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js.map +1 -0
  72. package/lib/index.js +2 -2
  73. package/lib/index.js.map +1 -1
  74. package/lib-commonjs/Toolbar.js.map +1 -1
  75. package/lib-commonjs/ToolbarButton.js.map +1 -1
  76. package/lib-commonjs/ToolbarDivider.js.map +1 -1
  77. package/lib-commonjs/{ToolbarRadio.js → ToolbarGroup.js} +2 -2
  78. package/lib-commonjs/ToolbarGroup.js.map +1 -0
  79. package/lib-commonjs/{ToolbarRadioGroup.js → ToolbarRadioButton.js} +2 -2
  80. package/lib-commonjs/ToolbarRadioButton.js.map +1 -0
  81. package/lib-commonjs/ToolbarToggleButton.js.map +1 -1
  82. package/lib-commonjs/components/Toolbar/Toolbar.js.map +1 -1
  83. package/lib-commonjs/components/Toolbar/ToolbarContext.js +9 -10
  84. package/lib-commonjs/components/Toolbar/ToolbarContext.js.map +1 -1
  85. package/lib-commonjs/components/Toolbar/index.js.map +1 -1
  86. package/lib-commonjs/components/Toolbar/renderToolbar.js.map +1 -1
  87. package/lib-commonjs/components/Toolbar/useToolbar.js +52 -12
  88. package/lib-commonjs/components/Toolbar/useToolbar.js.map +1 -1
  89. package/lib-commonjs/components/Toolbar/useToolbarContextValues.js +8 -2
  90. package/lib-commonjs/components/Toolbar/useToolbarContextValues.js.map +1 -1
  91. package/lib-commonjs/components/Toolbar/useToolbarStyles.js +24 -2
  92. package/lib-commonjs/components/Toolbar/useToolbarStyles.js.map +1 -1
  93. package/lib-commonjs/components/ToolbarButton/ToolbarButton.js +5 -10
  94. package/lib-commonjs/components/ToolbarButton/ToolbarButton.js.map +1 -1
  95. package/lib-commonjs/components/ToolbarButton/index.js.map +1 -1
  96. package/lib-commonjs/components/ToolbarButton/useToolbarButton.js +33 -0
  97. package/lib-commonjs/components/ToolbarButton/useToolbarButton.js.map +1 -0
  98. package/lib-commonjs/components/ToolbarButton/useToolbarButtonStyles.js +38 -0
  99. package/lib-commonjs/components/ToolbarButton/useToolbarButtonStyles.js.map +1 -0
  100. package/lib-commonjs/components/ToolbarDivider/ToolbarDivider.js +3 -4
  101. package/lib-commonjs/components/ToolbarDivider/ToolbarDivider.js.map +1 -1
  102. package/lib-commonjs/components/ToolbarDivider/index.js +2 -0
  103. package/lib-commonjs/components/ToolbarDivider/index.js.map +1 -1
  104. package/lib-commonjs/components/ToolbarDivider/useToolbarDivider.js +31 -0
  105. package/lib-commonjs/components/ToolbarDivider/useToolbarDivider.js.map +1 -0
  106. package/lib-commonjs/components/ToolbarDivider/useToolbarDividerStyles.js +8 -2
  107. package/lib-commonjs/components/ToolbarDivider/useToolbarDividerStyles.js.map +1 -1
  108. package/lib-commonjs/components/ToolbarGroup/ToolbarGroup.js +27 -0
  109. package/lib-commonjs/components/ToolbarGroup/ToolbarGroup.js.map +1 -0
  110. package/lib-commonjs/components/{ToolbarRadio/ToolbarRadio.types.js → ToolbarGroup/ToolbarGroup.types.js} +1 -1
  111. package/lib-commonjs/components/{ToolbarRadio/ToolbarRadio.types.js.map → ToolbarGroup/ToolbarGroup.types.js.map} +0 -0
  112. package/lib-commonjs/components/ToolbarGroup/index.js +12 -0
  113. package/lib-commonjs/components/ToolbarGroup/index.js.map +1 -0
  114. package/lib-commonjs/components/ToolbarGroup/renderToolbarGroup.js +26 -0
  115. package/lib-commonjs/components/ToolbarGroup/renderToolbarGroup.js.map +1 -0
  116. package/lib-commonjs/components/ToolbarGroup/useToolbarGroup.js +30 -0
  117. package/lib-commonjs/components/ToolbarGroup/useToolbarGroup.js.map +1 -0
  118. package/lib-commonjs/components/ToolbarGroup/useToolbarGroupStyles.js +38 -0
  119. package/lib-commonjs/components/ToolbarGroup/useToolbarGroupStyles.js.map +1 -0
  120. package/lib-commonjs/components/ToolbarRadioButton/ToolbarRadioButton.js +26 -0
  121. package/lib-commonjs/components/ToolbarRadioButton/ToolbarRadioButton.js.map +1 -0
  122. package/lib-commonjs/components/{ToolbarRadioGroup/ToolbarRadioGroup.types.js → ToolbarRadioButton/ToolbarRadioButton.types.js} +1 -1
  123. package/lib-commonjs/components/{ToolbarRadioGroup/ToolbarRadioGroup.types.js.map → ToolbarRadioButton/ToolbarRadioButton.types.js.map} +0 -0
  124. package/lib-commonjs/components/ToolbarRadioButton/index.js +12 -0
  125. package/lib-commonjs/components/ToolbarRadioButton/index.js.map +1 -0
  126. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButton.js +50 -0
  127. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButton.js.map +1 -0
  128. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js +33 -0
  129. package/lib-commonjs/components/ToolbarRadioButton/useToolbarRadioButtonStyles.js.map +1 -0
  130. package/lib-commonjs/components/ToolbarToggleButton/ToolbarToggleButton.js +3 -1
  131. package/lib-commonjs/components/ToolbarToggleButton/ToolbarToggleButton.js.map +1 -1
  132. package/lib-commonjs/components/ToolbarToggleButton/index.js.map +1 -1
  133. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButton.js +13 -5
  134. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButton.js.map +1 -1
  135. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js +33 -0
  136. package/lib-commonjs/components/ToolbarToggleButton/useToolbarToggleButtonStyles.js.map +1 -0
  137. package/lib-commonjs/index.js +7 -7
  138. package/lib-commonjs/index.js.map +1 -1
  139. package/package.json +27 -19
  140. package/Spec.md +0 -140
  141. package/lib/ToolbarRadio.js +0 -2
  142. package/lib/ToolbarRadio.js.map +0 -1
  143. package/lib/ToolbarRadioGroup.js +0 -2
  144. package/lib/ToolbarRadioGroup.js.map +0 -1
  145. package/lib/components/ToolbarRadio/ToolbarRadio.js +0 -21
  146. package/lib/components/ToolbarRadio/ToolbarRadio.js.map +0 -1
  147. package/lib/components/ToolbarRadio/ToolbarRadio.types.js +0 -2
  148. package/lib/components/ToolbarRadio/ToolbarRadio.types.js.map +0 -1
  149. package/lib/components/ToolbarRadio/index.js +0 -3
  150. package/lib/components/ToolbarRadio/index.js.map +0 -1
  151. package/lib/components/ToolbarRadio/useToolbarRadioStyles.js +0 -41
  152. package/lib/components/ToolbarRadio/useToolbarRadioStyles.js.map +0 -1
  153. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.js +0 -20
  154. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.js.map +0 -1
  155. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.types.js +0 -2
  156. package/lib/components/ToolbarRadioGroup/ToolbarRadioGroup.types.js.map +0 -1
  157. package/lib/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js +0 -22
  158. package/lib/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js.map +0 -1
  159. package/lib/components/ToolbarRadioGroup/index.js +0 -3
  160. package/lib/components/ToolbarRadioGroup/index.js.map +0 -1
  161. package/lib/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js +0 -29
  162. package/lib/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js.map +0 -1
  163. package/lib-commonjs/ToolbarRadio.js.map +0 -1
  164. package/lib-commonjs/ToolbarRadioGroup.js.map +0 -1
  165. package/lib-commonjs/components/ToolbarRadio/ToolbarRadio.js +0 -32
  166. package/lib-commonjs/components/ToolbarRadio/ToolbarRadio.js.map +0 -1
  167. package/lib-commonjs/components/ToolbarRadio/index.js +0 -12
  168. package/lib-commonjs/components/ToolbarRadio/index.js.map +0 -1
  169. package/lib-commonjs/components/ToolbarRadio/useToolbarRadioStyles.js +0 -51
  170. package/lib-commonjs/components/ToolbarRadio/useToolbarRadioStyles.js.map +0 -1
  171. package/lib-commonjs/components/ToolbarRadioGroup/ToolbarRadioGroup.js +0 -31
  172. package/lib-commonjs/components/ToolbarRadioGroup/ToolbarRadioGroup.js.map +0 -1
  173. package/lib-commonjs/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js +0 -31
  174. package/lib-commonjs/components/ToolbarRadioGroup/contexts/useRadioGroupContextValues.js.map +0 -1
  175. package/lib-commonjs/components/ToolbarRadioGroup/index.js +0 -12
  176. package/lib-commonjs/components/ToolbarRadioGroup/index.js.map +0 -1
  177. package/lib-commonjs/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js +0 -39
  178. package/lib-commonjs/components/ToolbarRadioGroup/useToolbarRadioGroupStyles.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,536 @@
2
2
  "name": "@fluentui/react-toolbar",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 03 Oct 2022 22:22:53 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",
464
+ "tag": "@fluentui/react-toolbar_v9.0.0-beta.9",
465
+ "version": "9.0.0-beta.9",
466
+ "comments": {
467
+ "prerelease": [
468
+ {
469
+ "author": "lingfangao@hotmail.com",
470
+ "package": "@fluentui/react-toolbar",
471
+ "commit": "2d36a7c692d301b420b6a4b1a78b139fdc955612",
472
+ "comment": "fix: Toolbar selection should work"
473
+ },
474
+ {
475
+ "author": "olfedias@microsoft.com",
476
+ "package": "@fluentui/react-toolbar",
477
+ "commit": "1a527d440e0497ef8046b3ce240492241e7a04ac",
478
+ "comment": "chore: Update Griffel to latest version"
479
+ },
480
+ {
481
+ "author": "beachball",
482
+ "package": "@fluentui/react-toolbar",
483
+ "comment": "Bump @fluentui/react-button to v9.1.4",
484
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
485
+ },
486
+ {
487
+ "author": "beachball",
488
+ "package": "@fluentui/react-toolbar",
489
+ "comment": "Bump @fluentui/react-divider to v9.1.1",
490
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
491
+ },
492
+ {
493
+ "author": "beachball",
494
+ "package": "@fluentui/react-toolbar",
495
+ "comment": "Bump @fluentui/react-utilities to v9.1.1",
496
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
497
+ },
498
+ {
499
+ "author": "beachball",
500
+ "package": "@fluentui/react-toolbar",
501
+ "comment": "Bump @fluentui/react-context-selector to v9.0.4",
502
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
503
+ },
504
+ {
505
+ "author": "beachball",
506
+ "package": "@fluentui/react-toolbar",
507
+ "comment": "Bump @fluentui/react-radio to v9.0.8",
508
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
509
+ },
510
+ {
511
+ "author": "beachball",
512
+ "package": "@fluentui/react-toolbar",
513
+ "comment": "Bump @fluentui/react-tabster to v9.1.3",
514
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
515
+ },
516
+ {
517
+ "author": "beachball",
518
+ "package": "@fluentui/react-toolbar",
519
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.15",
520
+ "commit": "cd05c21e62ff37812d614330eb70f97fd978c97a"
521
+ }
522
+ ],
523
+ "none": [
524
+ {
525
+ "author": "chassunc@microsoft.com",
526
+ "package": "@fluentui/react-toolbar",
527
+ "commit": "41c30da2fdb58551d5ec3ce2450ccab5d2d49969",
528
+ "comment": "chore: update api"
529
+ }
530
+ ]
531
+ }
532
+ },
533
+ {
534
+ "date": "Mon, 03 Oct 2022 22:24:42 GMT",
6
535
  "tag": "@fluentui/react-toolbar_v9.0.0-beta.8",
7
536
  "version": "9.0.0-beta.8",
8
537
  "comments": {
@@ -11,19 +540,19 @@
11
540
  "author": "beachball",
12
541
  "package": "@fluentui/react-toolbar",
13
542
  "comment": "Bump @fluentui/react-button to v9.1.3",
14
- "commit": "b0b7f99bbbb05b0bd136432983a74fea252c7163"
543
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
15
544
  },
16
545
  {
17
546
  "author": "beachball",
18
547
  "package": "@fluentui/react-toolbar",
19
548
  "comment": "Bump @fluentui/react-radio to v9.0.7",
20
- "commit": "b0b7f99bbbb05b0bd136432983a74fea252c7163"
549
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
21
550
  },
22
551
  {
23
552
  "author": "beachball",
24
553
  "package": "@fluentui/react-toolbar",
25
554
  "comment": "Bump @fluentui/react-tabster to v9.1.2",
26
- "commit": "b0b7f99bbbb05b0bd136432983a74fea252c7163"
555
+ "commit": "67a8c98b8d53cd2fa14d668cf639b867b68ad18a"
27
556
  }
28
557
  ]
29
558
  }