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

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