@fluentui/react-infobutton 9.0.0-beta.4 → 9.0.0-beta.41

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 (129) hide show
  1. package/CHANGELOG.json +1255 -1
  2. package/CHANGELOG.md +436 -2
  3. package/dist/index.d.ts +152 -4
  4. package/lib/InfoButton.js +0 -1
  5. package/lib/InfoButton.js.map +1 -1
  6. package/lib/InfoIcon.js +1 -0
  7. package/lib/InfoIcon.js.map +1 -0
  8. package/lib/InfoIconLabel.js +1 -0
  9. package/lib/InfoIconLabel.js.map +1 -0
  10. package/lib/InfoLabel.js +1 -0
  11. package/lib/InfoLabel.js.map +1 -0
  12. package/lib/components/InfoButton/DefaultInfoButtonIcons.js +3 -4
  13. package/lib/components/InfoButton/DefaultInfoButtonIcons.js.map +1 -1
  14. package/lib/components/InfoButton/InfoButton.js +5 -8
  15. package/lib/components/InfoButton/InfoButton.js.map +1 -1
  16. package/lib/components/InfoButton/InfoButton.types.js +1 -2
  17. package/lib/components/InfoButton/InfoButton.types.js.map +1 -1
  18. package/lib/components/InfoButton/index.js +1 -2
  19. package/lib/components/InfoButton/index.js.map +1 -1
  20. package/lib/components/InfoButton/renderInfoButton.js +5 -14
  21. package/lib/components/InfoButton/renderInfoButton.js.map +1 -1
  22. package/lib/components/InfoButton/useInfoButton.js +46 -50
  23. package/lib/components/InfoButton/useInfoButton.js.map +1 -1
  24. package/lib/components/InfoButton/useInfoButtonStyles.styles.js +153 -0
  25. package/lib/components/InfoButton/useInfoButtonStyles.styles.js.map +1 -0
  26. package/lib/components/InfoIcon/InfoIcon.js +12 -0
  27. package/lib/components/InfoIcon/InfoIcon.js.map +1 -0
  28. package/lib/components/InfoIcon/InfoIcon.types.js +2 -0
  29. package/lib/components/InfoIcon/InfoIcon.types.js.map +1 -0
  30. package/lib/components/InfoIcon/index.js +5 -0
  31. package/lib/components/InfoIcon/index.js.map +1 -0
  32. package/lib/components/InfoIcon/renderInfoIcon.js +9 -0
  33. package/lib/components/InfoIcon/renderInfoIcon.js.map +1 -0
  34. package/lib/components/InfoIcon/useInfoIcon.js +25 -0
  35. package/lib/components/InfoIcon/useInfoIcon.js.map +1 -0
  36. package/lib/components/InfoIcon/useInfoIconStyles.styles.js +21 -0
  37. package/lib/components/InfoIcon/useInfoIconStyles.styles.js.map +1 -0
  38. package/lib/components/InfoIconLabel/InfoIconLabel.js +12 -0
  39. package/lib/components/InfoIconLabel/InfoIconLabel.js.map +1 -0
  40. package/lib/components/InfoIconLabel/InfoIconLabel.types.js +2 -0
  41. package/lib/components/InfoIconLabel/InfoIconLabel.types.js.map +1 -0
  42. package/lib/components/InfoIconLabel/index.js +5 -0
  43. package/lib/components/InfoIconLabel/index.js.map +1 -0
  44. package/lib/components/InfoIconLabel/renderInfoIconLabel.js +9 -0
  45. package/lib/components/InfoIconLabel/renderInfoIconLabel.js.map +1 -0
  46. package/lib/components/InfoIconLabel/useInfoIconLabel.js +25 -0
  47. package/lib/components/InfoIconLabel/useInfoIconLabel.js.map +1 -0
  48. package/lib/components/InfoIconLabel/useInfoIconLabelStyles.styles.js +21 -0
  49. package/lib/components/InfoIconLabel/useInfoIconLabelStyles.styles.js.map +1 -0
  50. package/lib/components/InfoLabel/InfoLabel.js +12 -0
  51. package/lib/components/InfoLabel/InfoLabel.js.map +1 -0
  52. package/lib/components/InfoLabel/InfoLabel.types.js +1 -0
  53. package/lib/components/InfoLabel/InfoLabel.types.js.map +1 -0
  54. package/lib/components/InfoLabel/index.js +5 -0
  55. package/lib/components/InfoLabel/index.js.map +1 -0
  56. package/lib/components/InfoLabel/renderInfoLabel.js +8 -0
  57. package/lib/components/InfoLabel/renderInfoLabel.js.map +1 -0
  58. package/lib/components/InfoLabel/useInfoLabel.js +64 -0
  59. package/lib/components/InfoLabel/useInfoLabel.js.map +1 -0
  60. package/lib/components/InfoLabel/useInfoLabelStyles.styles.js +43 -0
  61. package/lib/components/InfoLabel/useInfoLabelStyles.styles.js.map +1 -0
  62. package/lib/index.js +3 -1
  63. package/lib/index.js.map +1 -1
  64. package/lib-commonjs/InfoButton.js +3 -7
  65. package/lib-commonjs/InfoButton.js.map +1 -1
  66. package/lib-commonjs/InfoIcon.js +6 -0
  67. package/lib-commonjs/InfoIcon.js.map +1 -0
  68. package/lib-commonjs/InfoIconLabel.js +6 -0
  69. package/lib-commonjs/InfoIconLabel.js.map +1 -0
  70. package/lib-commonjs/InfoLabel.js +6 -0
  71. package/lib-commonjs/InfoLabel.js.map +1 -0
  72. package/lib-commonjs/components/InfoButton/DefaultInfoButtonIcons.js +16 -10
  73. package/lib-commonjs/components/InfoButton/DefaultInfoButtonIcons.js.map +1 -1
  74. package/lib-commonjs/components/InfoButton/InfoButton.js +15 -22
  75. package/lib-commonjs/components/InfoButton/InfoButton.js.map +1 -1
  76. package/lib-commonjs/components/InfoButton/InfoButton.types.js +1 -3
  77. package/lib-commonjs/components/InfoButton/InfoButton.types.js.map +1 -1
  78. package/lib-commonjs/components/InfoButton/index.js +7 -15
  79. package/lib-commonjs/components/InfoButton/index.js.map +1 -1
  80. package/lib-commonjs/components/InfoButton/renderInfoButton.js +12 -27
  81. package/lib-commonjs/components/InfoButton/renderInfoButton.js.map +1 -1
  82. package/lib-commonjs/components/InfoButton/useInfoButton.js +56 -74
  83. package/lib-commonjs/components/InfoButton/useInfoButton.js.map +1 -1
  84. package/lib-commonjs/components/InfoButton/useInfoButtonStyles.styles.js +340 -0
  85. package/lib-commonjs/components/InfoButton/useInfoButtonStyles.styles.js.map +1 -0
  86. package/lib-commonjs/components/InfoIcon/InfoIcon.js +19 -0
  87. package/lib-commonjs/components/InfoIcon/InfoIcon.js.map +1 -0
  88. package/lib-commonjs/components/InfoIcon/InfoIcon.types.js +6 -0
  89. package/lib-commonjs/components/InfoIcon/InfoIcon.types.js.map +1 -0
  90. package/lib-commonjs/components/InfoIcon/index.js +10 -0
  91. package/lib-commonjs/components/InfoIcon/index.js.map +1 -0
  92. package/lib-commonjs/components/InfoIcon/renderInfoIcon.js +15 -0
  93. package/lib-commonjs/components/InfoIcon/renderInfoIcon.js.map +1 -0
  94. package/lib-commonjs/components/InfoIcon/useInfoIcon.js +26 -0
  95. package/lib-commonjs/components/InfoIcon/useInfoIcon.js.map +1 -0
  96. package/lib-commonjs/components/InfoIcon/useInfoIconStyles.styles.js +30 -0
  97. package/lib-commonjs/components/InfoIcon/useInfoIconStyles.styles.js.map +1 -0
  98. package/lib-commonjs/components/InfoIconLabel/InfoIconLabel.js +19 -0
  99. package/lib-commonjs/components/InfoIconLabel/InfoIconLabel.js.map +1 -0
  100. package/lib-commonjs/components/InfoIconLabel/InfoIconLabel.types.js +6 -0
  101. package/lib-commonjs/components/InfoIconLabel/InfoIconLabel.types.js.map +1 -0
  102. package/lib-commonjs/components/InfoIconLabel/index.js +10 -0
  103. package/lib-commonjs/components/InfoIconLabel/index.js.map +1 -0
  104. package/lib-commonjs/components/InfoIconLabel/renderInfoIconLabel.js +15 -0
  105. package/lib-commonjs/components/InfoIconLabel/renderInfoIconLabel.js.map +1 -0
  106. package/lib-commonjs/components/InfoIconLabel/useInfoIconLabel.js +26 -0
  107. package/lib-commonjs/components/InfoIconLabel/useInfoIconLabel.js.map +1 -0
  108. package/lib-commonjs/components/InfoIconLabel/useInfoIconLabelStyles.styles.js +30 -0
  109. package/lib-commonjs/components/InfoIconLabel/useInfoIconLabelStyles.styles.js.map +1 -0
  110. package/lib-commonjs/components/InfoLabel/InfoLabel.js +19 -0
  111. package/lib-commonjs/components/InfoLabel/InfoLabel.js.map +1 -0
  112. package/lib-commonjs/components/InfoLabel/InfoLabel.types.js +4 -0
  113. package/lib-commonjs/components/InfoLabel/InfoLabel.types.js.map +1 -0
  114. package/lib-commonjs/components/InfoLabel/index.js +10 -0
  115. package/lib-commonjs/components/InfoLabel/index.js.map +1 -0
  116. package/lib-commonjs/components/InfoLabel/renderInfoLabel.js +14 -0
  117. package/lib-commonjs/components/InfoLabel/renderInfoLabel.js.map +1 -0
  118. package/lib-commonjs/components/InfoLabel/useInfoLabel.js +65 -0
  119. package/lib-commonjs/components/InfoLabel/useInfoLabel.js.map +1 -0
  120. package/lib-commonjs/components/InfoLabel/useInfoLabelStyles.styles.js +62 -0
  121. package/lib-commonjs/components/InfoLabel/useInfoLabelStyles.styles.js.map +1 -0
  122. package/lib-commonjs/index.js +32 -36
  123. package/lib-commonjs/index.js.map +1 -1
  124. package/package.json +17 -12
  125. package/Spec.md +0 -143
  126. package/lib/components/InfoButton/useInfoButtonStyles.js +0 -187
  127. package/lib/components/InfoButton/useInfoButtonStyles.js.map +0 -1
  128. package/lib-commonjs/components/InfoButton/useInfoButtonStyles.js +0 -200
  129. package/lib-commonjs/components/InfoButton/useInfoButtonStyles.js.map +0 -1
package/CHANGELOG.json CHANGED
@@ -2,7 +2,1261 @@
2
2
  "name": "@fluentui/react-infobutton",
3
3
  "entries": [
4
4
  {
5
- "date": "Wed, 21 Dec 2022 10:17:16 GMT",
5
+ "date": "Tue, 11 Jul 2023 18:44:12 GMT",
6
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.41",
7
+ "version": "9.0.0-beta.41",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "beachball",
12
+ "package": "@fluentui/react-infobutton",
13
+ "comment": "Bump @fluentui/react-label to v9.1.20",
14
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
15
+ },
16
+ {
17
+ "author": "beachball",
18
+ "package": "@fluentui/react-infobutton",
19
+ "comment": "Bump @fluentui/react-popover to v9.7.6",
20
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-infobutton",
25
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.11",
26
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-infobutton",
31
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0",
32
+ "commit": "f958e7e175264e289a6ecdc5b108e826f6b34e74"
33
+ }
34
+ ]
35
+ }
36
+ },
37
+ {
38
+ "date": "Mon, 03 Jul 2023 13:34:28 GMT",
39
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.40",
40
+ "version": "9.0.0-beta.40",
41
+ "comments": {
42
+ "prerelease": [
43
+ {
44
+ "author": "beachball",
45
+ "package": "@fluentui/react-infobutton",
46
+ "comment": "Bump @fluentui/react-popover to v9.7.5",
47
+ "commit": "d2c95969c67521ea1df57e1339f8743b09b68772"
48
+ },
49
+ {
50
+ "author": "beachball",
51
+ "package": "@fluentui/react-infobutton",
52
+ "comment": "Bump @fluentui/react-tabster to v9.10.0",
53
+ "commit": "d2c95969c67521ea1df57e1339f8743b09b68772"
54
+ }
55
+ ]
56
+ }
57
+ },
58
+ {
59
+ "date": "Mon, 03 Jul 2023 11:57:14 GMT",
60
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.39",
61
+ "version": "9.0.0-beta.39",
62
+ "comments": {
63
+ "prerelease": [
64
+ {
65
+ "author": "beachball",
66
+ "package": "@fluentui/react-infobutton",
67
+ "comment": "Bump @fluentui/react-label to v9.1.19",
68
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
69
+ },
70
+ {
71
+ "author": "beachball",
72
+ "package": "@fluentui/react-infobutton",
73
+ "comment": "Bump @fluentui/react-popover to v9.7.4",
74
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
75
+ },
76
+ {
77
+ "author": "beachball",
78
+ "package": "@fluentui/react-infobutton",
79
+ "comment": "Bump @fluentui/react-tabster to v9.9.2",
80
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
81
+ },
82
+ {
83
+ "author": "beachball",
84
+ "package": "@fluentui/react-infobutton",
85
+ "comment": "Bump @fluentui/react-utilities to v9.10.1",
86
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
87
+ },
88
+ {
89
+ "author": "beachball",
90
+ "package": "@fluentui/react-infobutton",
91
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.10",
92
+ "commit": "61633ba5de03e0ddf4839dba6da325e30c7ce9bd"
93
+ }
94
+ ]
95
+ }
96
+ },
97
+ {
98
+ "date": "Wed, 28 Jun 2023 11:12:27 GMT",
99
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.38",
100
+ "version": "9.0.0-beta.38",
101
+ "comments": {
102
+ "none": [
103
+ {
104
+ "author": "martinhochel@microsoft.com",
105
+ "package": "@fluentui/react-infobutton",
106
+ "commit": "fbe878e9c9785588197481f172c42c2c0a230292",
107
+ "comment": "fix: update .npmignore to unify v8 packages and exclude project.json"
108
+ }
109
+ ],
110
+ "prerelease": [
111
+ {
112
+ "author": "beachball",
113
+ "package": "@fluentui/react-infobutton",
114
+ "comment": "Bump @fluentui/react-label to v9.1.18",
115
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
116
+ },
117
+ {
118
+ "author": "beachball",
119
+ "package": "@fluentui/react-infobutton",
120
+ "comment": "Bump @fluentui/react-popover to v9.7.3",
121
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
122
+ },
123
+ {
124
+ "author": "beachball",
125
+ "package": "@fluentui/react-infobutton",
126
+ "comment": "Bump @fluentui/react-tabster to v9.9.1",
127
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
128
+ },
129
+ {
130
+ "author": "beachball",
131
+ "package": "@fluentui/react-infobutton",
132
+ "comment": "Bump @fluentui/react-utilities to v9.10.0",
133
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
134
+ },
135
+ {
136
+ "author": "beachball",
137
+ "package": "@fluentui/react-infobutton",
138
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9",
139
+ "commit": "08de131d5f3346e001dcd8d2f0f3809c698f16d7"
140
+ }
141
+ ]
142
+ }
143
+ },
144
+ {
145
+ "date": "Tue, 27 Jun 2023 11:21:23 GMT",
146
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.37",
147
+ "version": "9.0.0-beta.37",
148
+ "comments": {
149
+ "prerelease": [
150
+ {
151
+ "author": "beachball",
152
+ "package": "@fluentui/react-infobutton",
153
+ "comment": "Bump @fluentui/react-popover to v9.7.2",
154
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
155
+ },
156
+ {
157
+ "author": "beachball",
158
+ "package": "@fluentui/react-infobutton",
159
+ "comment": "Bump @fluentui/react-tabster to v9.9.0",
160
+ "commit": "1c7e6451a11fb9c59e344df616394a320e8031c4"
161
+ }
162
+ ]
163
+ }
164
+ },
165
+ {
166
+ "date": "Mon, 26 Jun 2023 09:53:55 GMT",
167
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.36",
168
+ "version": "9.0.0-beta.36",
169
+ "comments": {
170
+ "prerelease": [
171
+ {
172
+ "author": "beachball",
173
+ "package": "@fluentui/react-infobutton",
174
+ "comment": "Bump @fluentui/react-label to v9.1.17",
175
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
176
+ },
177
+ {
178
+ "author": "beachball",
179
+ "package": "@fluentui/react-infobutton",
180
+ "comment": "Bump @fluentui/react-popover to v9.7.1",
181
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
182
+ },
183
+ {
184
+ "author": "beachball",
185
+ "package": "@fluentui/react-infobutton",
186
+ "comment": "Bump @fluentui/react-tabster to v9.8.1",
187
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
188
+ },
189
+ {
190
+ "author": "beachball",
191
+ "package": "@fluentui/react-infobutton",
192
+ "comment": "Bump @fluentui/react-utilities to v9.9.4",
193
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
194
+ },
195
+ {
196
+ "author": "beachball",
197
+ "package": "@fluentui/react-infobutton",
198
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8",
199
+ "commit": "3e47257676ace0598b9ed336a54befd4d063c332"
200
+ }
201
+ ]
202
+ }
203
+ },
204
+ {
205
+ "date": "Tue, 20 Jun 2023 12:38:58 GMT",
206
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.35",
207
+ "version": "9.0.0-beta.35",
208
+ "comments": {
209
+ "prerelease": [
210
+ {
211
+ "author": "esteban.230@hotmail.com",
212
+ "package": "@fluentui/react-infobutton",
213
+ "commit": "2180922aed405f0a49734a64608749011cece831",
214
+ "comment": "chore: Create InfoIconLabel component scaffold."
215
+ },
216
+ {
217
+ "author": "esteban.230@hotmail.com",
218
+ "package": "@fluentui/react-infobutton",
219
+ "commit": "cb3741ddf649785332da7f0d57dfa93a965dab75",
220
+ "comment": "chore: Create InfoTip component."
221
+ },
222
+ {
223
+ "author": "ololubek@microsoft.com",
224
+ "package": "@fluentui/react-infobutton",
225
+ "commit": "8a5ae3aa00faa327c58887a99a5698b18f2930ee",
226
+ "comment": "chore: update @fluentui/react-icons to 2.0.203"
227
+ },
228
+ {
229
+ "author": "esteban.230@hotmail.com",
230
+ "package": "@fluentui/react-infobutton",
231
+ "commit": "91b9ce05995846aaa882d86755583e5b1a703717",
232
+ "comment": "chore: Rename InfoTip to InfoIcon to better align with InfoButton."
233
+ },
234
+ {
235
+ "author": "beachball",
236
+ "package": "@fluentui/react-infobutton",
237
+ "comment": "Bump @fluentui/react-label to v9.1.16",
238
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
239
+ },
240
+ {
241
+ "author": "beachball",
242
+ "package": "@fluentui/react-infobutton",
243
+ "comment": "Bump @fluentui/react-popover to v9.7.0",
244
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
245
+ },
246
+ {
247
+ "author": "beachball",
248
+ "package": "@fluentui/react-infobutton",
249
+ "comment": "Bump @fluentui/react-tabster to v9.8.0",
250
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
251
+ },
252
+ {
253
+ "author": "beachball",
254
+ "package": "@fluentui/react-infobutton",
255
+ "comment": "Bump @fluentui/react-theme to v9.1.9",
256
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
257
+ },
258
+ {
259
+ "author": "beachball",
260
+ "package": "@fluentui/react-infobutton",
261
+ "comment": "Bump @fluentui/react-utilities to v9.9.3",
262
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
263
+ },
264
+ {
265
+ "author": "beachball",
266
+ "package": "@fluentui/react-infobutton",
267
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.7",
268
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
269
+ },
270
+ {
271
+ "author": "beachball",
272
+ "package": "@fluentui/react-infobutton",
273
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.23",
274
+ "commit": "81c9b35e0830297b2aca2cece2ae67b3899c4647"
275
+ }
276
+ ]
277
+ }
278
+ },
279
+ {
280
+ "date": "Wed, 31 May 2023 06:46:14 GMT",
281
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.34",
282
+ "version": "9.0.0-beta.34",
283
+ "comments": {
284
+ "prerelease": [
285
+ {
286
+ "author": "seanmonahan@microsoft.com",
287
+ "package": "@fluentui/react-infobutton",
288
+ "commit": "d640b972d7ac86bfb76ae6c6329f12cdd33b3b7c",
289
+ "comment": "chore: Update Griffel to v1.5.7."
290
+ },
291
+ {
292
+ "author": "beachball",
293
+ "package": "@fluentui/react-infobutton",
294
+ "comment": "Bump @fluentui/react-label to v9.1.15",
295
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
296
+ },
297
+ {
298
+ "author": "beachball",
299
+ "package": "@fluentui/react-infobutton",
300
+ "comment": "Bump @fluentui/react-popover to v9.6.0",
301
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
302
+ },
303
+ {
304
+ "author": "beachball",
305
+ "package": "@fluentui/react-infobutton",
306
+ "comment": "Bump @fluentui/react-tabster to v9.7.5",
307
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
308
+ },
309
+ {
310
+ "author": "beachball",
311
+ "package": "@fluentui/react-infobutton",
312
+ "comment": "Bump @fluentui/react-utilities to v9.9.2",
313
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
314
+ },
315
+ {
316
+ "author": "beachball",
317
+ "package": "@fluentui/react-infobutton",
318
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.6",
319
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
320
+ },
321
+ {
322
+ "author": "beachball",
323
+ "package": "@fluentui/react-infobutton",
324
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.22",
325
+ "commit": "17ca96c6b7f684f36a5c63e40e78b4986a86c713"
326
+ }
327
+ ]
328
+ }
329
+ },
330
+ {
331
+ "date": "Thu, 25 May 2023 10:00:48 GMT",
332
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.33",
333
+ "version": "9.0.0-beta.33",
334
+ "comments": {
335
+ "prerelease": [
336
+ {
337
+ "author": "beachball",
338
+ "package": "@fluentui/react-infobutton",
339
+ "comment": "Bump @fluentui/react-label to v9.1.14",
340
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
341
+ },
342
+ {
343
+ "author": "beachball",
344
+ "package": "@fluentui/react-infobutton",
345
+ "comment": "Bump @fluentui/react-popover to v9.5.15",
346
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
347
+ },
348
+ {
349
+ "author": "beachball",
350
+ "package": "@fluentui/react-infobutton",
351
+ "comment": "Bump @fluentui/react-tabster to v9.7.4",
352
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
353
+ },
354
+ {
355
+ "author": "beachball",
356
+ "package": "@fluentui/react-infobutton",
357
+ "comment": "Bump @fluentui/react-utilities to v9.9.1",
358
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
359
+ },
360
+ {
361
+ "author": "beachball",
362
+ "package": "@fluentui/react-infobutton",
363
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.5",
364
+ "commit": "8f7c1b7591b3e665ae39e1b22ab0f0b28fb795c4"
365
+ }
366
+ ]
367
+ }
368
+ },
369
+ {
370
+ "date": "Wed, 24 May 2023 20:45:27 GMT",
371
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.32",
372
+ "version": "9.0.0-beta.32",
373
+ "comments": {
374
+ "none": [
375
+ {
376
+ "author": "olfedias@microsoft.com",
377
+ "package": "@fluentui/react-infobutton",
378
+ "commit": "69e0617a93cb44ef42f3bd19284b7dc5fe27fed3",
379
+ "comment": "chore: update test-ssr script"
380
+ }
381
+ ],
382
+ "prerelease": [
383
+ {
384
+ "author": "beachball",
385
+ "package": "@fluentui/react-infobutton",
386
+ "comment": "Bump @fluentui/react-label to v9.1.13",
387
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
388
+ },
389
+ {
390
+ "author": "beachball",
391
+ "package": "@fluentui/react-infobutton",
392
+ "comment": "Bump @fluentui/react-popover to v9.5.14",
393
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
394
+ },
395
+ {
396
+ "author": "beachball",
397
+ "package": "@fluentui/react-infobutton",
398
+ "comment": "Bump @fluentui/react-tabster to v9.7.3",
399
+ "commit": "3f088b7b09988e7c05af1c953021acc94c273026"
400
+ }
401
+ ]
402
+ }
403
+ },
404
+ {
405
+ "date": "Thu, 18 May 2023 13:11:08 GMT",
406
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.31",
407
+ "version": "9.0.0-beta.31",
408
+ "comments": {
409
+ "prerelease": [
410
+ {
411
+ "author": "beachball",
412
+ "package": "@fluentui/react-infobutton",
413
+ "comment": "Bump @fluentui/react-popover to v9.5.13",
414
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
415
+ },
416
+ {
417
+ "author": "beachball",
418
+ "package": "@fluentui/react-infobutton",
419
+ "comment": "Bump @fluentui/react-tabster to v9.7.2",
420
+ "commit": "1e6f5c8eec4b67c051fb3aa429e303115570ae4d"
421
+ }
422
+ ]
423
+ }
424
+ },
425
+ {
426
+ "date": "Thu, 18 May 2023 00:39:07 GMT",
427
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.30",
428
+ "version": "9.0.0-beta.30",
429
+ "comments": {
430
+ "none": [
431
+ {
432
+ "author": "olfedias@microsoft.com",
433
+ "package": "@fluentui/react-infobutton",
434
+ "commit": "06cd515eda59a3078bfe32f9cc7c1f281cd20208",
435
+ "comment": "chore: add test-ssr script to v9 packages"
436
+ }
437
+ ],
438
+ "prerelease": [
439
+ {
440
+ "author": "esteban.230@hotmail.com",
441
+ "package": "@fluentui/react-infobutton",
442
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb",
443
+ "comment": "fix: Add aria-owns to InfoLabel."
444
+ },
445
+ {
446
+ "author": "beachball",
447
+ "package": "@fluentui/react-infobutton",
448
+ "comment": "Bump @fluentui/react-label to v9.1.12",
449
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
450
+ },
451
+ {
452
+ "author": "beachball",
453
+ "package": "@fluentui/react-infobutton",
454
+ "comment": "Bump @fluentui/react-popover to v9.5.12",
455
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
456
+ },
457
+ {
458
+ "author": "beachball",
459
+ "package": "@fluentui/react-infobutton",
460
+ "comment": "Bump @fluentui/react-tabster to v9.7.1",
461
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
462
+ },
463
+ {
464
+ "author": "beachball",
465
+ "package": "@fluentui/react-infobutton",
466
+ "comment": "Bump @fluentui/react-utilities to v9.9.0",
467
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
468
+ },
469
+ {
470
+ "author": "beachball",
471
+ "package": "@fluentui/react-infobutton",
472
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4",
473
+ "commit": "c496a1cf1ec82c08753df72c9061e84b77b7daeb"
474
+ }
475
+ ]
476
+ }
477
+ },
478
+ {
479
+ "date": "Fri, 12 May 2023 20:27:20 GMT",
480
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.29",
481
+ "version": "9.0.0-beta.29",
482
+ "comments": {
483
+ "prerelease": [
484
+ {
485
+ "author": "olfedias@microsoft.com",
486
+ "package": "@fluentui/react-infobutton",
487
+ "commit": "c28decb23d191a0daaaf6d5d1832429715102129",
488
+ "comment": "chore: exclude .swcrc from being published"
489
+ },
490
+ {
491
+ "author": "olfedias@microsoft.com",
492
+ "package": "@fluentui/react-infobutton",
493
+ "commit": "871192b67e1bc8a68da1b4c55b4e0ee2aed0b604",
494
+ "comment": "chore: move makeStyles() calls to .styles.ts files"
495
+ },
496
+ {
497
+ "author": "beachball",
498
+ "package": "@fluentui/react-infobutton",
499
+ "comment": "Bump @fluentui/react-label to v9.1.11",
500
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
501
+ },
502
+ {
503
+ "author": "beachball",
504
+ "package": "@fluentui/react-infobutton",
505
+ "comment": "Bump @fluentui/react-popover to v9.5.11",
506
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
507
+ },
508
+ {
509
+ "author": "beachball",
510
+ "package": "@fluentui/react-infobutton",
511
+ "comment": "Bump @fluentui/react-tabster to v9.7.0",
512
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
513
+ },
514
+ {
515
+ "author": "beachball",
516
+ "package": "@fluentui/react-infobutton",
517
+ "comment": "Bump @fluentui/react-theme to v9.1.8",
518
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
519
+ },
520
+ {
521
+ "author": "beachball",
522
+ "package": "@fluentui/react-infobutton",
523
+ "comment": "Bump @fluentui/react-utilities to v9.8.1",
524
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
525
+ },
526
+ {
527
+ "author": "beachball",
528
+ "package": "@fluentui/react-infobutton",
529
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3",
530
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
531
+ },
532
+ {
533
+ "author": "beachball",
534
+ "package": "@fluentui/react-infobutton",
535
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21",
536
+ "commit": "79c08ce5bbf6387b2b18ba4c3d2d5681e0177d4b"
537
+ }
538
+ ],
539
+ "none": [
540
+ {
541
+ "author": "martinhochel@microsoft.com",
542
+ "package": "@fluentui/react-infobutton",
543
+ "commit": "dbda7fa69e3000aaf8dd4a061e254ebd35198b8e",
544
+ "comment": "fix: update npmignore files to fix npm8/node16 regression how npm publish works"
545
+ }
546
+ ]
547
+ }
548
+ },
549
+ {
550
+ "date": "Mon, 24 Apr 2023 08:12:37 GMT",
551
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.28",
552
+ "version": "9.0.0-beta.28",
553
+ "comments": {
554
+ "prerelease": [
555
+ {
556
+ "author": "bernardo.sunderhus@gmail.com",
557
+ "package": "@fluentui/react-infobutton",
558
+ "commit": "dd76eca6f3584188994575d1d15d805a24ee9a91",
559
+ "comment": "chore: adopt custom JSX pragma"
560
+ },
561
+ {
562
+ "author": "beachball",
563
+ "package": "@fluentui/react-infobutton",
564
+ "comment": "Bump @fluentui/react-label to v9.1.10",
565
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
566
+ },
567
+ {
568
+ "author": "beachball",
569
+ "package": "@fluentui/react-infobutton",
570
+ "comment": "Bump @fluentui/react-popover to v9.5.10",
571
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
572
+ },
573
+ {
574
+ "author": "beachball",
575
+ "package": "@fluentui/react-infobutton",
576
+ "comment": "Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2",
577
+ "commit": "505433ac64f144c9cca456097413d6af4582e5ee"
578
+ }
579
+ ]
580
+ }
581
+ },
582
+ {
583
+ "date": "Mon, 17 Apr 2023 17:54:02 GMT",
584
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.27",
585
+ "version": "9.0.0-beta.27",
586
+ "comments": {
587
+ "prerelease": [
588
+ {
589
+ "author": "beachball",
590
+ "package": "@fluentui/react-infobutton",
591
+ "comment": "Bump @fluentui/react-label to v9.1.9",
592
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
593
+ },
594
+ {
595
+ "author": "beachball",
596
+ "package": "@fluentui/react-infobutton",
597
+ "comment": "Bump @fluentui/react-popover to v9.5.9",
598
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
599
+ },
600
+ {
601
+ "author": "beachball",
602
+ "package": "@fluentui/react-infobutton",
603
+ "comment": "Bump @fluentui/react-tabster to v9.6.5",
604
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
605
+ },
606
+ {
607
+ "author": "beachball",
608
+ "package": "@fluentui/react-infobutton",
609
+ "comment": "Bump @fluentui/react-utilities to v9.8.0",
610
+ "commit": "35d247e0b6a8c2b22e69942afbabe18043e59585"
611
+ }
612
+ ]
613
+ }
614
+ },
615
+ {
616
+ "date": "Wed, 12 Apr 2023 09:31:45 GMT",
617
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.26",
618
+ "version": "9.0.0-beta.26",
619
+ "comments": {
620
+ "prerelease": [
621
+ {
622
+ "author": "beachball",
623
+ "package": "@fluentui/react-infobutton",
624
+ "comment": "Bump @fluentui/react-label to v9.1.8",
625
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
626
+ },
627
+ {
628
+ "author": "beachball",
629
+ "package": "@fluentui/react-infobutton",
630
+ "comment": "Bump @fluentui/react-popover to v9.5.8",
631
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
632
+ },
633
+ {
634
+ "author": "beachball",
635
+ "package": "@fluentui/react-infobutton",
636
+ "comment": "Bump @fluentui/react-tabster to v9.6.4",
637
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
638
+ },
639
+ {
640
+ "author": "beachball",
641
+ "package": "@fluentui/react-infobutton",
642
+ "comment": "Bump @fluentui/react-utilities to v9.7.4",
643
+ "commit": "45cb6089b0f5f464ae0dd9e9cba7e199a9d67cd8"
644
+ }
645
+ ]
646
+ }
647
+ },
648
+ {
649
+ "date": "Tue, 04 Apr 2023 18:44:48 GMT",
650
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.25",
651
+ "version": "9.0.0-beta.25",
652
+ "comments": {
653
+ "prerelease": [
654
+ {
655
+ "author": "esteban.230@hotmail.com",
656
+ "package": "@fluentui/react-infobutton",
657
+ "commit": "df9564ee42c12b0dfab646f9e4dd4038c636d3ee",
658
+ "comment": "chore: Rename content slot to info."
659
+ },
660
+ {
661
+ "author": "beachball",
662
+ "package": "@fluentui/react-infobutton",
663
+ "comment": "Bump @fluentui/react-label to v9.1.7",
664
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
665
+ },
666
+ {
667
+ "author": "beachball",
668
+ "package": "@fluentui/react-infobutton",
669
+ "comment": "Bump @fluentui/react-popover to v9.5.7",
670
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
671
+ },
672
+ {
673
+ "author": "beachball",
674
+ "package": "@fluentui/react-infobutton",
675
+ "comment": "Bump @fluentui/react-tabster to v9.6.3",
676
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
677
+ },
678
+ {
679
+ "author": "beachball",
680
+ "package": "@fluentui/react-infobutton",
681
+ "comment": "Bump @fluentui/react-utilities to v9.7.3",
682
+ "commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
683
+ }
684
+ ]
685
+ }
686
+ },
687
+ {
688
+ "date": "Tue, 21 Mar 2023 21:23:36 GMT",
689
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.23",
690
+ "version": "9.0.0-beta.23",
691
+ "comments": {
692
+ "prerelease": [
693
+ {
694
+ "author": "makotom@microsoft.com",
695
+ "package": "@fluentui/react-infobutton",
696
+ "commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74",
697
+ "comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196."
698
+ },
699
+ {
700
+ "author": "tristan.watanabe@gmail.com",
701
+ "package": "@fluentui/react-infobutton",
702
+ "commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
703
+ "comment": "fix: add node field to package.json exports map."
704
+ },
705
+ {
706
+ "author": "tristan.watanabe@gmail.com",
707
+ "package": "@fluentui/react-infobutton",
708
+ "commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
709
+ "comment": "chore: migrate to swc transpilation approach."
710
+ },
711
+ {
712
+ "author": "beachball",
713
+ "package": "@fluentui/react-infobutton",
714
+ "comment": "Bump @fluentui/react-label to v9.1.5",
715
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
716
+ },
717
+ {
718
+ "author": "beachball",
719
+ "package": "@fluentui/react-infobutton",
720
+ "comment": "Bump @fluentui/react-popover to v9.5.5",
721
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
722
+ },
723
+ {
724
+ "author": "beachball",
725
+ "package": "@fluentui/react-infobutton",
726
+ "comment": "Bump @fluentui/react-tabster to v9.6.1",
727
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
728
+ },
729
+ {
730
+ "author": "beachball",
731
+ "package": "@fluentui/react-infobutton",
732
+ "comment": "Bump @fluentui/react-theme to v9.1.7",
733
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
734
+ },
735
+ {
736
+ "author": "beachball",
737
+ "package": "@fluentui/react-infobutton",
738
+ "comment": "Bump @fluentui/react-utilities to v9.7.2",
739
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
740
+ },
741
+ {
742
+ "author": "beachball",
743
+ "package": "@fluentui/react-infobutton",
744
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20",
745
+ "commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
746
+ }
747
+ ]
748
+ }
749
+ },
750
+ {
751
+ "date": "Thu, 16 Mar 2023 14:36:57 GMT",
752
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.22",
753
+ "version": "9.0.0-beta.22",
754
+ "comments": {
755
+ "prerelease": [
756
+ {
757
+ "author": "behowell@microsoft.com",
758
+ "package": "@fluentui/react-infobutton",
759
+ "commit": "b106479e831318cfb3ddf10871e4240530498f31",
760
+ "comment": "feat: Add InfoLabel component"
761
+ },
762
+ {
763
+ "author": "beachball",
764
+ "package": "@fluentui/react-infobutton",
765
+ "comment": "Bump @fluentui/react-label to v9.1.4",
766
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
767
+ },
768
+ {
769
+ "author": "beachball",
770
+ "package": "@fluentui/react-infobutton",
771
+ "comment": "Bump @fluentui/react-popover to v9.5.4",
772
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
773
+ },
774
+ {
775
+ "author": "beachball",
776
+ "package": "@fluentui/react-infobutton",
777
+ "comment": "Bump @fluentui/react-tabster to v9.6.0",
778
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
779
+ },
780
+ {
781
+ "author": "beachball",
782
+ "package": "@fluentui/react-infobutton",
783
+ "comment": "Bump @fluentui/react-utilities to v9.7.1",
784
+ "commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
785
+ }
786
+ ]
787
+ }
788
+ },
789
+ {
790
+ "date": "Wed, 15 Mar 2023 10:19:53 GMT",
791
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.21",
792
+ "version": "9.0.0-beta.21",
793
+ "comments": {
794
+ "prerelease": [
795
+ {
796
+ "author": "beachball",
797
+ "package": "@fluentui/react-infobutton",
798
+ "comment": "Bump @fluentui/react-popover to v9.5.3",
799
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
800
+ },
801
+ {
802
+ "author": "beachball",
803
+ "package": "@fluentui/react-infobutton",
804
+ "comment": "Bump @fluentui/react-tabster to v9.5.7",
805
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
806
+ },
807
+ {
808
+ "author": "beachball",
809
+ "package": "@fluentui/react-infobutton",
810
+ "comment": "Bump @fluentui/react-theme to v9.1.6",
811
+ "commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
812
+ }
813
+ ]
814
+ }
815
+ },
816
+ {
817
+ "date": "Mon, 13 Mar 2023 08:58:26 GMT",
818
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.20",
819
+ "version": "9.0.0-beta.20",
820
+ "comments": {
821
+ "prerelease": [
822
+ {
823
+ "author": "beachball",
824
+ "package": "@fluentui/react-infobutton",
825
+ "comment": "Bump @fluentui/react-popover to v9.5.2",
826
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
827
+ },
828
+ {
829
+ "author": "beachball",
830
+ "package": "@fluentui/react-infobutton",
831
+ "comment": "Bump @fluentui/react-tabster to v9.5.6",
832
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
833
+ },
834
+ {
835
+ "author": "beachball",
836
+ "package": "@fluentui/react-infobutton",
837
+ "comment": "Bump @fluentui/react-utilities to v9.7.0",
838
+ "commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
839
+ }
840
+ ]
841
+ }
842
+ },
843
+ {
844
+ "date": "Fri, 10 Mar 2023 07:14:01 GMT",
845
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.19",
846
+ "version": "9.0.0-beta.19",
847
+ "comments": {
848
+ "prerelease": [
849
+ {
850
+ "author": "beachball",
851
+ "package": "@fluentui/react-infobutton",
852
+ "comment": "Bump @fluentui/react-popover to v9.5.1",
853
+ "commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584"
854
+ },
855
+ {
856
+ "author": "beachball",
857
+ "package": "@fluentui/react-infobutton",
858
+ "comment": "Bump @fluentui/react-tabster to v9.5.5",
859
+ "commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584"
860
+ },
861
+ {
862
+ "author": "beachball",
863
+ "package": "@fluentui/react-infobutton",
864
+ "comment": "Bump @fluentui/react-utilities to v9.6.2",
865
+ "commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584"
866
+ }
867
+ ]
868
+ }
869
+ },
870
+ {
871
+ "date": "Wed, 08 Mar 2023 17:42:51 GMT",
872
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.18",
873
+ "version": "9.0.0-beta.18",
874
+ "comments": {
875
+ "prerelease": [
876
+ {
877
+ "author": "beachball",
878
+ "package": "@fluentui/react-infobutton",
879
+ "comment": "Bump @fluentui/react-popover to v9.5.0",
880
+ "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
881
+ },
882
+ {
883
+ "author": "beachball",
884
+ "package": "@fluentui/react-infobutton",
885
+ "comment": "Bump @fluentui/react-tabster to v9.5.4",
886
+ "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
887
+ },
888
+ {
889
+ "author": "beachball",
890
+ "package": "@fluentui/react-infobutton",
891
+ "comment": "Bump @fluentui/react-utilities to v9.6.1",
892
+ "commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
893
+ }
894
+ ]
895
+ }
896
+ },
897
+ {
898
+ "date": "Wed, 22 Feb 2023 23:06:07 GMT",
899
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.17",
900
+ "version": "9.0.0-beta.17",
901
+ "comments": {
902
+ "prerelease": [
903
+ {
904
+ "author": "beachball",
905
+ "package": "@fluentui/react-infobutton",
906
+ "comment": "Bump @fluentui/react-popover to v9.4.11",
907
+ "commit": "9ee6caa17f745e014ecba467a4528181ae49be30"
908
+ }
909
+ ]
910
+ }
911
+ },
912
+ {
913
+ "date": "Wed, 15 Feb 2023 11:44:52 GMT",
914
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.16",
915
+ "version": "9.0.0-beta.16",
916
+ "comments": {
917
+ "prerelease": [
918
+ {
919
+ "author": "beachball",
920
+ "package": "@fluentui/react-infobutton",
921
+ "comment": "Bump @fluentui/react-popover to v9.4.10",
922
+ "commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
923
+ },
924
+ {
925
+ "author": "beachball",
926
+ "package": "@fluentui/react-infobutton",
927
+ "comment": "Bump @fluentui/react-tabster to v9.5.3",
928
+ "commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
929
+ },
930
+ {
931
+ "author": "beachball",
932
+ "package": "@fluentui/react-infobutton",
933
+ "comment": "Bump @fluentui/react-utilities to v9.6.0",
934
+ "commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
935
+ }
936
+ ]
937
+ }
938
+ },
939
+ {
940
+ "date": "Mon, 13 Feb 2023 23:43:14 GMT",
941
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.15",
942
+ "version": "9.0.0-beta.15",
943
+ "comments": {
944
+ "prerelease": [
945
+ {
946
+ "author": "beachball",
947
+ "package": "@fluentui/react-infobutton",
948
+ "comment": "Bump @fluentui/react-popover to v9.4.9",
949
+ "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
950
+ },
951
+ {
952
+ "author": "beachball",
953
+ "package": "@fluentui/react-infobutton",
954
+ "comment": "Bump @fluentui/react-tabster to v9.5.2",
955
+ "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
956
+ },
957
+ {
958
+ "author": "beachball",
959
+ "package": "@fluentui/react-infobutton",
960
+ "comment": "Bump @fluentui/react-utilities to v9.5.3",
961
+ "commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
962
+ }
963
+ ]
964
+ }
965
+ },
966
+ {
967
+ "date": "Mon, 13 Feb 2023 09:35:48 GMT",
968
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.14",
969
+ "version": "9.0.0-beta.14",
970
+ "comments": {
971
+ "prerelease": [
972
+ {
973
+ "author": "beachball",
974
+ "package": "@fluentui/react-infobutton",
975
+ "comment": "Bump @fluentui/react-popover to v9.4.8",
976
+ "commit": "b24aed22677cb12a74f185feee89edefd1601b9a"
977
+ }
978
+ ]
979
+ }
980
+ },
981
+ {
982
+ "date": "Fri, 10 Feb 2023 08:50:02 GMT",
983
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.13",
984
+ "version": "9.0.0-beta.13",
985
+ "comments": {
986
+ "prerelease": [
987
+ {
988
+ "author": "beachball",
989
+ "package": "@fluentui/react-infobutton",
990
+ "comment": "Bump @fluentui/react-popover to v9.4.7",
991
+ "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
992
+ },
993
+ {
994
+ "author": "beachball",
995
+ "package": "@fluentui/react-infobutton",
996
+ "comment": "Bump @fluentui/react-tabster to v9.5.1",
997
+ "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
998
+ },
999
+ {
1000
+ "author": "beachball",
1001
+ "package": "@fluentui/react-infobutton",
1002
+ "comment": "Bump @fluentui/react-utilities to v9.5.2",
1003
+ "commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
1004
+ }
1005
+ ]
1006
+ }
1007
+ },
1008
+ {
1009
+ "date": "Tue, 07 Feb 2023 14:13:05 GMT",
1010
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.12",
1011
+ "version": "9.0.0-beta.12",
1012
+ "comments": {
1013
+ "prerelease": [
1014
+ {
1015
+ "author": "esteban.230@hotmail.com",
1016
+ "package": "@fluentui/react-infobutton",
1017
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746",
1018
+ "comment": "chore: Add aria-label to InfoButton's button and add a11y guidance for using InfoButton with a label."
1019
+ },
1020
+ {
1021
+ "author": "esteban.230@hotmail.com",
1022
+ "package": "@fluentui/react-infobutton",
1023
+ "commit": "34514e3502e2830d81f9de25956be8b624cd3c20",
1024
+ "comment": "chore: Making the content focusable and updating example's text."
1025
+ },
1026
+ {
1027
+ "author": "beachball",
1028
+ "package": "@fluentui/react-infobutton",
1029
+ "comment": "Bump @fluentui/react-popover to v9.4.6",
1030
+ "commit": "8a1405562b3328c408f15e3bf511d3eb6a0c0e66"
1031
+ },
1032
+ {
1033
+ "author": "beachball",
1034
+ "package": "@fluentui/react-infobutton",
1035
+ "comment": "Bump @fluentui/react-tabster to v9.5.0",
1036
+ "commit": "8a1405562b3328c408f15e3bf511d3eb6a0c0e66"
1037
+ }
1038
+ ]
1039
+ }
1040
+ },
1041
+ {
1042
+ "date": "Tue, 31 Jan 2023 19:53:58 GMT",
1043
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.11",
1044
+ "version": "9.0.0-beta.11",
1045
+ "comments": {
1046
+ "prerelease": [
1047
+ {
1048
+ "author": "beachball",
1049
+ "package": "@fluentui/react-infobutton",
1050
+ "comment": "Bump @fluentui/react-popover to v9.4.5",
1051
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746"
1052
+ },
1053
+ {
1054
+ "author": "beachball",
1055
+ "package": "@fluentui/react-infobutton",
1056
+ "comment": "Bump @fluentui/react-tabster to v9.4.2",
1057
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746"
1058
+ },
1059
+ {
1060
+ "author": "beachball",
1061
+ "package": "@fluentui/react-infobutton",
1062
+ "comment": "Bump @fluentui/react-utilities to v9.5.1",
1063
+ "commit": "794d9e845cb952f597ba786e70cd8d248be62746"
1064
+ }
1065
+ ]
1066
+ }
1067
+ },
1068
+ {
1069
+ "date": "Thu, 26 Jan 2023 13:31:03 GMT",
1070
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.10",
1071
+ "version": "9.0.0-beta.10",
1072
+ "comments": {
1073
+ "prerelease": [
1074
+ {
1075
+ "author": "beachball",
1076
+ "package": "@fluentui/react-infobutton",
1077
+ "comment": "Bump @fluentui/react-popover to v9.4.4",
1078
+ "commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
1079
+ },
1080
+ {
1081
+ "author": "beachball",
1082
+ "package": "@fluentui/react-infobutton",
1083
+ "comment": "Bump @fluentui/react-tabster to v9.4.1",
1084
+ "commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
1085
+ },
1086
+ {
1087
+ "author": "beachball",
1088
+ "package": "@fluentui/react-infobutton",
1089
+ "comment": "Bump @fluentui/react-utilities to v9.5.0",
1090
+ "commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
1091
+ }
1092
+ ]
1093
+ }
1094
+ },
1095
+ {
1096
+ "date": "Mon, 23 Jan 2023 16:43:12 GMT",
1097
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.9",
1098
+ "version": "9.0.0-beta.9",
1099
+ "comments": {
1100
+ "prerelease": [
1101
+ {
1102
+ "author": "beachball",
1103
+ "package": "@fluentui/react-infobutton",
1104
+ "comment": "Bump @fluentui/react-popover to v9.4.3",
1105
+ "commit": "828c4260edc4fba07c9ccc8e94f15051c7fd25d3"
1106
+ }
1107
+ ]
1108
+ }
1109
+ },
1110
+ {
1111
+ "date": "Wed, 18 Jan 2023 16:32:57 GMT",
1112
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.8",
1113
+ "version": "9.0.0-beta.8",
1114
+ "comments": {
1115
+ "prerelease": [
1116
+ {
1117
+ "author": "beachball",
1118
+ "package": "@fluentui/react-infobutton",
1119
+ "comment": "Bump @fluentui/react-popover to v9.4.2",
1120
+ "commit": "13cf1d07a6df4617106c731ba0379b6102a08104"
1121
+ },
1122
+ {
1123
+ "author": "beachball",
1124
+ "package": "@fluentui/react-infobutton",
1125
+ "comment": "Bump @fluentui/react-tabster to v9.4.0",
1126
+ "commit": "13cf1d07a6df4617106c731ba0379b6102a08104"
1127
+ }
1128
+ ]
1129
+ }
1130
+ },
1131
+ {
1132
+ "date": "Mon, 16 Jan 2023 08:39:02 GMT",
1133
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.7",
1134
+ "version": "9.0.0-beta.7",
1135
+ "comments": {
1136
+ "prerelease": [
1137
+ {
1138
+ "author": "esteban.230@hotmail.com",
1139
+ "package": "@fluentui/react-infobutton",
1140
+ "commit": "4aa7a43c0c302dc151d6446abfde95fe9637edb0",
1141
+ "comment": "fix: Update border for Teams HCM to be transparent."
1142
+ },
1143
+ {
1144
+ "author": "esteban.230@hotmail.com",
1145
+ "package": "@fluentui/react-infobutton",
1146
+ "commit": "b326546752a1df3cf4d626dee2d5c47b59ba00ae",
1147
+ "comment": "fix: Update PopoverSurface's role to note and remove need to cast props passed to popover slot."
1148
+ },
1149
+ {
1150
+ "author": "beachball",
1151
+ "package": "@fluentui/react-infobutton",
1152
+ "comment": "Bump @fluentui/react-popover to v9.4.1",
1153
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
1154
+ },
1155
+ {
1156
+ "author": "beachball",
1157
+ "package": "@fluentui/react-infobutton",
1158
+ "comment": "Bump @fluentui/react-tabster to v9.3.7",
1159
+ "commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
1160
+ }
1161
+ ],
1162
+ "none": [
1163
+ {
1164
+ "author": "martinhochel@microsoft.com",
1165
+ "package": "@fluentui/react-infobutton",
1166
+ "commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f",
1167
+ "comment": "chore: migrate to packaged scripts"
1168
+ }
1169
+ ]
1170
+ }
1171
+ },
1172
+ {
1173
+ "date": "Mon, 09 Jan 2023 14:35:02 GMT",
1174
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.6",
1175
+ "version": "9.0.0-beta.6",
1176
+ "comments": {
1177
+ "prerelease": [
1178
+ {
1179
+ "author": "beachball",
1180
+ "package": "@fluentui/react-infobutton",
1181
+ "comment": "Bump @fluentui/react-popover to v9.4.0",
1182
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
1183
+ },
1184
+ {
1185
+ "author": "beachball",
1186
+ "package": "@fluentui/react-infobutton",
1187
+ "comment": "Bump @fluentui/react-tabster to v9.3.6",
1188
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
1189
+ },
1190
+ {
1191
+ "author": "beachball",
1192
+ "package": "@fluentui/react-infobutton",
1193
+ "comment": "Bump @fluentui/react-utilities to v9.4.0",
1194
+ "commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
1195
+ }
1196
+ ]
1197
+ }
1198
+ },
1199
+ {
1200
+ "date": "Wed, 04 Jan 2023 01:40:08 GMT",
1201
+ "tag": "@fluentui/react-infobutton_v9.0.0-beta.5",
1202
+ "version": "9.0.0-beta.5",
1203
+ "comments": {
1204
+ "prerelease": [
1205
+ {
1206
+ "author": "tristan.watanabe@gmail.com",
1207
+ "package": "@fluentui/react-infobutton",
1208
+ "commit": "b1f29f551486777885af53a857220bffa5342b0f",
1209
+ "comment": "chore: migrate to new package structure."
1210
+ },
1211
+ {
1212
+ "author": "olfedias@microsoft.com",
1213
+ "package": "@fluentui/react-infobutton",
1214
+ "commit": "2c38f1e4ae07b2b60df596efe11015a68f166dbf",
1215
+ "comment": "chore: Update Griffel to latest version"
1216
+ },
1217
+ {
1218
+ "author": "beachball",
1219
+ "package": "@fluentui/react-infobutton",
1220
+ "comment": "Bump @fluentui/react-popover to v9.3.6",
1221
+ "commit": "3e322d15529451be153e97298873253e21af4082"
1222
+ },
1223
+ {
1224
+ "author": "beachball",
1225
+ "package": "@fluentui/react-infobutton",
1226
+ "comment": "Bump @fluentui/react-tabster to v9.3.5",
1227
+ "commit": "3e322d15529451be153e97298873253e21af4082"
1228
+ },
1229
+ {
1230
+ "author": "beachball",
1231
+ "package": "@fluentui/react-infobutton",
1232
+ "comment": "Bump @fluentui/react-utilities to v9.3.1",
1233
+ "commit": "3e322d15529451be153e97298873253e21af4082"
1234
+ },
1235
+ {
1236
+ "author": "beachball",
1237
+ "package": "@fluentui/react-infobutton",
1238
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19",
1239
+ "commit": "3e322d15529451be153e97298873253e21af4082"
1240
+ }
1241
+ ],
1242
+ "none": [
1243
+ {
1244
+ "author": "martinhochel@microsoft.com",
1245
+ "package": "@fluentui/react-infobutton",
1246
+ "commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105",
1247
+ "comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging"
1248
+ },
1249
+ {
1250
+ "author": "martinhochel@microsoft.com",
1251
+ "package": "@fluentui/react-infobutton",
1252
+ "commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca",
1253
+ "comment": "chore(scripts): use for @fluentui/scripts version within all package.json"
1254
+ }
1255
+ ]
1256
+ }
1257
+ },
1258
+ {
1259
+ "date": "Wed, 21 Dec 2022 10:20:33 GMT",
6
1260
  "tag": "@fluentui/react-infobutton_v9.0.0-beta.4",
7
1261
  "version": "9.0.0-beta.4",
8
1262
  "comments": {