@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.md CHANGED
@@ -1,12 +1,434 @@
1
1
  # Change Log - @fluentui/react-infobutton
2
2
 
3
- This log was last generated on Wed, 21 Dec 2022 10:17:16 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 03 Jul 2023 13:32:38 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
+ ## [9.0.0-beta.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.40)
8
+
9
+ Mon, 03 Jul 2023 13:32:38 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.39..@fluentui/react-infobutton_v9.0.0-beta.40)
11
+
12
+ ### Changes
13
+
14
+ - Bump @fluentui/react-popover to v9.7.5 ([PR #28394](https://github.com/microsoft/fluentui/pull/28394) by beachball)
15
+ - Bump @fluentui/react-tabster to v9.10.0 ([PR #28394](https://github.com/microsoft/fluentui/pull/28394) by beachball)
16
+
17
+ ## [9.0.0-beta.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.39)
18
+
19
+ Mon, 03 Jul 2023 11:57:14 GMT
20
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.38..@fluentui/react-infobutton_v9.0.0-beta.39)
21
+
22
+ ### Changes
23
+
24
+ - Bump @fluentui/react-label to v9.1.19 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball)
25
+ - Bump @fluentui/react-popover to v9.7.4 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball)
26
+ - Bump @fluentui/react-tabster to v9.9.2 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball)
27
+ - Bump @fluentui/react-utilities to v9.10.1 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball)
28
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.10 ([PR #28412](https://github.com/microsoft/fluentui/pull/28412) by beachball)
29
+
30
+ ## [9.0.0-beta.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.38)
31
+
32
+ Wed, 28 Jun 2023 11:12:27 GMT
33
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.37..@fluentui/react-infobutton_v9.0.0-beta.38)
34
+
35
+ ### Changes
36
+
37
+ - Bump @fluentui/react-label to v9.1.18 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
38
+ - Bump @fluentui/react-popover to v9.7.3 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
39
+ - Bump @fluentui/react-tabster to v9.9.1 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
40
+ - Bump @fluentui/react-utilities to v9.10.0 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
41
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.9 ([PR #28320](https://github.com/microsoft/fluentui/pull/28320) by beachball)
42
+
43
+ ## [9.0.0-beta.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.37)
44
+
45
+ Tue, 27 Jun 2023 11:21:23 GMT
46
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.36..@fluentui/react-infobutton_v9.0.0-beta.37)
47
+
48
+ ### Changes
49
+
50
+ - Bump @fluentui/react-popover to v9.7.2 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball)
51
+ - Bump @fluentui/react-tabster to v9.9.0 ([PR #28291](https://github.com/microsoft/fluentui/pull/28291) by beachball)
52
+
53
+ ## [9.0.0-beta.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.36)
54
+
55
+ Mon, 26 Jun 2023 09:53:55 GMT
56
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.35..@fluentui/react-infobutton_v9.0.0-beta.36)
57
+
58
+ ### Changes
59
+
60
+ - Bump @fluentui/react-label to v9.1.17 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
61
+ - Bump @fluentui/react-popover to v9.7.1 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
62
+ - Bump @fluentui/react-tabster to v9.8.1 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
63
+ - Bump @fluentui/react-utilities to v9.9.4 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
64
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.8 ([PR #28296](https://github.com/microsoft/fluentui/pull/28296) by beachball)
65
+
66
+ ## [9.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.35)
67
+
68
+ Tue, 20 Jun 2023 12:38:58 GMT
69
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.34..@fluentui/react-infobutton_v9.0.0-beta.35)
70
+
71
+ ### Changes
72
+
73
+ - chore: Create InfoIconLabel component scaffold. ([PR #28200](https://github.com/microsoft/fluentui/pull/28200) by esteban.230@hotmail.com)
74
+ - chore: Create InfoTip component. ([PR #28071](https://github.com/microsoft/fluentui/pull/28071) by esteban.230@hotmail.com)
75
+ - chore: update @fluentui/react-icons to 2.0.203 ([PR #28203](https://github.com/microsoft/fluentui/pull/28203) by ololubek@microsoft.com)
76
+ - chore: Rename InfoTip to InfoIcon to better align with InfoButton. ([PR #28177](https://github.com/microsoft/fluentui/pull/28177) by esteban.230@hotmail.com)
77
+ - Bump @fluentui/react-label to v9.1.16 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
78
+ - Bump @fluentui/react-popover to v9.7.0 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
79
+ - Bump @fluentui/react-tabster to v9.8.0 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
80
+ - Bump @fluentui/react-theme to v9.1.9 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
81
+ - Bump @fluentui/react-utilities to v9.9.3 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
82
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.7 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
83
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.23 ([PR #28229](https://github.com/microsoft/fluentui/pull/28229) by beachball)
84
+
85
+ ## [9.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.34)
86
+
87
+ Wed, 31 May 2023 06:46:14 GMT
88
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.33..@fluentui/react-infobutton_v9.0.0-beta.34)
89
+
90
+ ### Changes
91
+
92
+ - chore: Update Griffel to v1.5.7. ([PR #27925](https://github.com/microsoft/fluentui/pull/27925) by seanmonahan@microsoft.com)
93
+ - Bump @fluentui/react-label to v9.1.15 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball)
94
+ - Bump @fluentui/react-popover to v9.6.0 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball)
95
+ - Bump @fluentui/react-tabster to v9.7.5 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball)
96
+ - Bump @fluentui/react-utilities to v9.9.2 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball)
97
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.6 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball)
98
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.22 ([PR #28054](https://github.com/microsoft/fluentui/pull/28054) by beachball)
99
+
100
+ ## [9.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.33)
101
+
102
+ Thu, 25 May 2023 10:00:48 GMT
103
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.32..@fluentui/react-infobutton_v9.0.0-beta.33)
104
+
105
+ ### Changes
106
+
107
+ - Bump @fluentui/react-label to v9.1.14 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball)
108
+ - Bump @fluentui/react-popover to v9.5.15 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball)
109
+ - Bump @fluentui/react-tabster to v9.7.4 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball)
110
+ - Bump @fluentui/react-utilities to v9.9.1 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball)
111
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.5 ([PR #27988](https://github.com/microsoft/fluentui/pull/27988) by beachball)
112
+
113
+ ## [9.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.32)
114
+
115
+ Wed, 24 May 2023 20:45:27 GMT
116
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.31..@fluentui/react-infobutton_v9.0.0-beta.32)
117
+
118
+ ### Changes
119
+
120
+ - Bump @fluentui/react-label to v9.1.13 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball)
121
+ - Bump @fluentui/react-popover to v9.5.14 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball)
122
+ - Bump @fluentui/react-tabster to v9.7.3 ([PR #27989](https://github.com/microsoft/fluentui/pull/27989) by beachball)
123
+
124
+ ## [9.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.31)
125
+
126
+ Thu, 18 May 2023 13:11:08 GMT
127
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.30..@fluentui/react-infobutton_v9.0.0-beta.31)
128
+
129
+ ### Changes
130
+
131
+ - Bump @fluentui/react-popover to v9.5.13 ([PR #27540](https://github.com/microsoft/fluentui/pull/27540) by beachball)
132
+ - Bump @fluentui/react-tabster to v9.7.2 ([PR #27540](https://github.com/microsoft/fluentui/pull/27540) by beachball)
133
+
134
+ ## [9.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.30)
135
+
136
+ Thu, 18 May 2023 00:39:07 GMT
137
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.29..@fluentui/react-infobutton_v9.0.0-beta.30)
138
+
139
+ ### Changes
140
+
141
+ - fix: Add aria-owns to InfoLabel. ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by esteban.230@hotmail.com)
142
+ - Bump @fluentui/react-label to v9.1.12 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
143
+ - Bump @fluentui/react-popover to v9.5.12 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
144
+ - Bump @fluentui/react-tabster to v9.7.1 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
145
+ - Bump @fluentui/react-utilities to v9.9.0 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
146
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.4 ([PR #27834](https://github.com/microsoft/fluentui/pull/27834) by beachball)
147
+
148
+ ## [9.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.29)
149
+
150
+ Fri, 12 May 2023 20:27:20 GMT
151
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.28..@fluentui/react-infobutton_v9.0.0-beta.29)
152
+
153
+ ### Changes
154
+
155
+ - chore: exclude .swcrc from being published ([PR #27740](https://github.com/microsoft/fluentui/pull/27740) by olfedias@microsoft.com)
156
+ - chore: move makeStyles() calls to .styles.ts files ([PR #27710](https://github.com/microsoft/fluentui/pull/27710) by olfedias@microsoft.com)
157
+ - Bump @fluentui/react-label to v9.1.11 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
158
+ - Bump @fluentui/react-popover to v9.5.11 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
159
+ - Bump @fluentui/react-tabster to v9.7.0 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
160
+ - Bump @fluentui/react-theme to v9.1.8 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
161
+ - Bump @fluentui/react-utilities to v9.8.1 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
162
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.3 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
163
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.21 ([PR #27827](https://github.com/microsoft/fluentui/pull/27827) by beachball)
164
+
165
+ ## [9.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.28)
166
+
167
+ Mon, 24 Apr 2023 08:12:37 GMT
168
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.27..@fluentui/react-infobutton_v9.0.0-beta.28)
169
+
170
+ ### Changes
171
+
172
+ - chore: adopt custom JSX pragma ([PR #27615](https://github.com/microsoft/fluentui/pull/27615) by bernardo.sunderhus@gmail.com)
173
+ - Bump @fluentui/react-label to v9.1.10 ([commit](https://github.com/microsoft/fluentui/commit/505433ac64f144c9cca456097413d6af4582e5ee) by beachball)
174
+ - Bump @fluentui/react-popover to v9.5.10 ([commit](https://github.com/microsoft/fluentui/commit/505433ac64f144c9cca456097413d6af4582e5ee) by beachball)
175
+ - Bump @fluentui/react-jsx-runtime to v9.0.0-alpha.2 ([commit](https://github.com/microsoft/fluentui/commit/505433ac64f144c9cca456097413d6af4582e5ee) by beachball)
176
+
177
+ ## [9.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.27)
178
+
179
+ Mon, 17 Apr 2023 17:54:02 GMT
180
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.26..@fluentui/react-infobutton_v9.0.0-beta.27)
181
+
182
+ ### Changes
183
+
184
+ - Bump @fluentui/react-label to v9.1.9 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
185
+ - Bump @fluentui/react-popover to v9.5.9 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
186
+ - Bump @fluentui/react-tabster to v9.6.5 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
187
+ - Bump @fluentui/react-utilities to v9.8.0 ([PR #27564](https://github.com/microsoft/fluentui/pull/27564) by beachball)
188
+
189
+ ## [9.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.26)
190
+
191
+ Wed, 12 Apr 2023 09:31:45 GMT
192
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.25..@fluentui/react-infobutton_v9.0.0-beta.26)
193
+
194
+ ### Changes
195
+
196
+ - Bump @fluentui/react-label to v9.1.8 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
197
+ - Bump @fluentui/react-popover to v9.5.8 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
198
+ - Bump @fluentui/react-tabster to v9.6.4 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
199
+ - Bump @fluentui/react-utilities to v9.7.4 ([PR #27274](https://github.com/microsoft/fluentui/pull/27274) by beachball)
200
+
201
+ ## [9.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.25)
202
+
203
+ Tue, 04 Apr 2023 18:44:48 GMT
204
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.23..@fluentui/react-infobutton_v9.0.0-beta.25)
205
+
206
+ ### Changes
207
+
208
+ - chore: Rename content slot to info. ([PR #27316](https://github.com/microsoft/fluentui/pull/27316) by esteban.230@hotmail.com)
209
+ - Bump @fluentui/react-label to v9.1.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
210
+ - Bump @fluentui/react-popover to v9.5.7 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
211
+ - Bump @fluentui/react-tabster to v9.6.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
212
+ - Bump @fluentui/react-utilities to v9.7.3 ([PR #27434](https://github.com/microsoft/fluentui/pull/27434) by beachball)
213
+
214
+ ## [9.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.23)
215
+
216
+ Tue, 21 Mar 2023 21:23:36 GMT
217
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.22..@fluentui/react-infobutton_v9.0.0-beta.23)
218
+
219
+ ### Changes
220
+
221
+ - chore: Bumping version of @fluentui/react-icons to ^2.0.196. ([PR #27100](https://github.com/microsoft/fluentui/pull/27100) by makotom@microsoft.com)
222
+ - fix: add node field to package.json exports map. ([PR #27154](https://github.com/microsoft/fluentui/pull/27154) by tristan.watanabe@gmail.com)
223
+ - chore: migrate to swc transpilation approach. ([PR #27250](https://github.com/microsoft/fluentui/pull/27250) by tristan.watanabe@gmail.com)
224
+ - Bump @fluentui/react-label to v9.1.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
225
+ - Bump @fluentui/react-popover to v9.5.5 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
226
+ - Bump @fluentui/react-tabster to v9.6.1 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
227
+ - Bump @fluentui/react-theme to v9.1.7 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
228
+ - Bump @fluentui/react-utilities to v9.7.2 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
229
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20 ([PR #27271](https://github.com/microsoft/fluentui/pull/27271) by beachball)
230
+
231
+ ## [9.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.22)
232
+
233
+ Thu, 16 Mar 2023 14:36:57 GMT
234
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.21..@fluentui/react-infobutton_v9.0.0-beta.22)
235
+
236
+ ### Changes
237
+
238
+ - feat: Add InfoLabel component ([PR #27118](https://github.com/microsoft/fluentui/pull/27118) by behowell@microsoft.com)
239
+ - Bump @fluentui/react-label to v9.1.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
240
+ - Bump @fluentui/react-popover to v9.5.4 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
241
+ - Bump @fluentui/react-tabster to v9.6.0 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
242
+ - Bump @fluentui/react-utilities to v9.7.1 ([PR #27229](https://github.com/microsoft/fluentui/pull/27229) by beachball)
243
+
244
+ ## [9.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.21)
245
+
246
+ Wed, 15 Mar 2023 10:19:53 GMT
247
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.20..@fluentui/react-infobutton_v9.0.0-beta.21)
248
+
249
+ ### Changes
250
+
251
+ - Bump @fluentui/react-popover to v9.5.3 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
252
+ - Bump @fluentui/react-tabster to v9.5.7 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
253
+ - Bump @fluentui/react-theme to v9.1.6 ([PR #27213](https://github.com/microsoft/fluentui/pull/27213) by beachball)
254
+
255
+ ## [9.0.0-beta.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.20)
256
+
257
+ Mon, 13 Mar 2023 08:58:26 GMT
258
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.19..@fluentui/react-infobutton_v9.0.0-beta.20)
259
+
260
+ ### Changes
261
+
262
+ - Bump @fluentui/react-popover to v9.5.2 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
263
+ - Bump @fluentui/react-tabster to v9.5.6 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
264
+ - Bump @fluentui/react-utilities to v9.7.0 ([PR #27161](https://github.com/microsoft/fluentui/pull/27161) by beachball)
265
+
266
+ ## [9.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.19)
267
+
268
+ Fri, 10 Mar 2023 07:14:01 GMT
269
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.18..@fluentui/react-infobutton_v9.0.0-beta.19)
270
+
271
+ ### Changes
272
+
273
+ - Bump @fluentui/react-popover to v9.5.1 ([PR #27157](https://github.com/microsoft/fluentui/pull/27157) by beachball)
274
+ - Bump @fluentui/react-tabster to v9.5.5 ([PR #27157](https://github.com/microsoft/fluentui/pull/27157) by beachball)
275
+ - Bump @fluentui/react-utilities to v9.6.2 ([PR #27157](https://github.com/microsoft/fluentui/pull/27157) by beachball)
276
+
277
+ ## [9.0.0-beta.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.18)
278
+
279
+ Wed, 08 Mar 2023 17:42:51 GMT
280
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.17..@fluentui/react-infobutton_v9.0.0-beta.18)
281
+
282
+ ### Changes
283
+
284
+ - Bump @fluentui/react-popover to v9.5.0 ([PR #27127](https://github.com/microsoft/fluentui/pull/27127) by beachball)
285
+ - Bump @fluentui/react-tabster to v9.5.4 ([PR #27127](https://github.com/microsoft/fluentui/pull/27127) by beachball)
286
+ - Bump @fluentui/react-utilities to v9.6.1 ([PR #27127](https://github.com/microsoft/fluentui/pull/27127) by beachball)
287
+
288
+ ## [9.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.17)
289
+
290
+ Wed, 22 Feb 2023 23:06:07 GMT
291
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.16..@fluentui/react-infobutton_v9.0.0-beta.17)
292
+
293
+ ### Changes
294
+
295
+ - Bump @fluentui/react-popover to v9.4.11 ([PR #26616](https://github.com/microsoft/fluentui/pull/26616) by beachball)
296
+
297
+ ## [9.0.0-beta.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.16)
298
+
299
+ Wed, 15 Feb 2023 11:44:52 GMT
300
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.15..@fluentui/react-infobutton_v9.0.0-beta.16)
301
+
302
+ ### Changes
303
+
304
+ - Bump @fluentui/react-popover to v9.4.10 ([PR #26845](https://github.com/microsoft/fluentui/pull/26845) by beachball)
305
+ - Bump @fluentui/react-tabster to v9.5.3 ([PR #26845](https://github.com/microsoft/fluentui/pull/26845) by beachball)
306
+ - Bump @fluentui/react-utilities to v9.6.0 ([PR #26845](https://github.com/microsoft/fluentui/pull/26845) by beachball)
307
+
308
+ ## [9.0.0-beta.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.15)
309
+
310
+ Mon, 13 Feb 2023 23:43:14 GMT
311
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.14..@fluentui/react-infobutton_v9.0.0-beta.15)
312
+
313
+ ### Changes
314
+
315
+ - Bump @fluentui/react-popover to v9.4.9 ([PR #26814](https://github.com/microsoft/fluentui/pull/26814) by beachball)
316
+ - Bump @fluentui/react-tabster to v9.5.2 ([PR #26814](https://github.com/microsoft/fluentui/pull/26814) by beachball)
317
+ - Bump @fluentui/react-utilities to v9.5.3 ([PR #26814](https://github.com/microsoft/fluentui/pull/26814) by beachball)
318
+
319
+ ## [9.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.14)
320
+
321
+ Mon, 13 Feb 2023 09:35:48 GMT
322
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.13..@fluentui/react-infobutton_v9.0.0-beta.14)
323
+
324
+ ### Changes
325
+
326
+ - Bump @fluentui/react-popover to v9.4.8 ([PR #26800](https://github.com/microsoft/fluentui/pull/26800) by beachball)
327
+
328
+ ## [9.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.13)
329
+
330
+ Fri, 10 Feb 2023 08:50:02 GMT
331
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.12..@fluentui/react-infobutton_v9.0.0-beta.13)
332
+
333
+ ### Changes
334
+
335
+ - Bump @fluentui/react-popover to v9.4.7 ([commit](https://github.com/microsoft/fluentui/commit/cc62f050f8231e8f21a2cf7dddf33003e0ba3931) by beachball)
336
+ - Bump @fluentui/react-tabster to v9.5.1 ([commit](https://github.com/microsoft/fluentui/commit/cc62f050f8231e8f21a2cf7dddf33003e0ba3931) by beachball)
337
+ - Bump @fluentui/react-utilities to v9.5.2 ([commit](https://github.com/microsoft/fluentui/commit/cc62f050f8231e8f21a2cf7dddf33003e0ba3931) by beachball)
338
+
339
+ ## [9.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.12)
340
+
341
+ Tue, 07 Feb 2023 14:13:05 GMT
342
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.11..@fluentui/react-infobutton_v9.0.0-beta.12)
343
+
344
+ ### Changes
345
+
346
+ - chore: Add aria-label to InfoButton's button and add a11y guidance for using InfoButton with a label. ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by esteban.230@hotmail.com)
347
+ - chore: Making the content focusable and updating example's text. ([PR #26596](https://github.com/microsoft/fluentui/pull/26596) by esteban.230@hotmail.com)
348
+ - Bump @fluentui/react-popover to v9.4.6 ([PR #26732](https://github.com/microsoft/fluentui/pull/26732) by beachball)
349
+ - Bump @fluentui/react-tabster to v9.5.0 ([PR #26732](https://github.com/microsoft/fluentui/pull/26732) by beachball)
350
+
351
+ ## [9.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.11)
352
+
353
+ Tue, 31 Jan 2023 19:53:58 GMT
354
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.10..@fluentui/react-infobutton_v9.0.0-beta.11)
355
+
356
+ ### Changes
357
+
358
+ - Bump @fluentui/react-popover to v9.4.5 ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by beachball)
359
+ - Bump @fluentui/react-tabster to v9.4.2 ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by beachball)
360
+ - Bump @fluentui/react-utilities to v9.5.1 ([PR #26557](https://github.com/microsoft/fluentui/pull/26557) by beachball)
361
+
362
+ ## [9.0.0-beta.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.10)
363
+
364
+ Thu, 26 Jan 2023 13:31:03 GMT
365
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.9..@fluentui/react-infobutton_v9.0.0-beta.10)
366
+
367
+ ### Changes
368
+
369
+ - Bump @fluentui/react-popover to v9.4.4 ([PR #26496](https://github.com/microsoft/fluentui/pull/26496) by beachball)
370
+ - Bump @fluentui/react-tabster to v9.4.1 ([PR #26496](https://github.com/microsoft/fluentui/pull/26496) by beachball)
371
+ - Bump @fluentui/react-utilities to v9.5.0 ([PR #26496](https://github.com/microsoft/fluentui/pull/26496) by beachball)
372
+
373
+ ## [9.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.9)
374
+
375
+ Mon, 23 Jan 2023 16:43:12 GMT
376
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.8..@fluentui/react-infobutton_v9.0.0-beta.9)
377
+
378
+ ### Changes
379
+
380
+ - Bump @fluentui/react-popover to v9.4.3 ([PR #26434](https://github.com/microsoft/fluentui/pull/26434) by beachball)
381
+
382
+ ## [9.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.8)
383
+
384
+ Wed, 18 Jan 2023 16:32:57 GMT
385
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.7..@fluentui/react-infobutton_v9.0.0-beta.8)
386
+
387
+ ### Changes
388
+
389
+ - Bump @fluentui/react-popover to v9.4.2 ([PR #26377](https://github.com/microsoft/fluentui/pull/26377) by beachball)
390
+ - Bump @fluentui/react-tabster to v9.4.0 ([PR #26377](https://github.com/microsoft/fluentui/pull/26377) by beachball)
391
+
392
+ ## [9.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.7)
393
+
394
+ Mon, 16 Jan 2023 08:39:02 GMT
395
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.6..@fluentui/react-infobutton_v9.0.0-beta.7)
396
+
397
+ ### Changes
398
+
399
+ - fix: Update border for Teams HCM to be transparent. ([PR #26305](https://github.com/microsoft/fluentui/pull/26305) by esteban.230@hotmail.com)
400
+ - fix: Update PopoverSurface's role to note and remove need to cast props passed to popover slot. ([PR #26300](https://github.com/microsoft/fluentui/pull/26300) by esteban.230@hotmail.com)
401
+ - Bump @fluentui/react-popover to v9.4.1 ([commit](https://github.com/microsoft/fluentui/commit/a870d8360e47f3ea03358c4e75e89e08a74845d7) by beachball)
402
+ - Bump @fluentui/react-tabster to v9.3.7 ([commit](https://github.com/microsoft/fluentui/commit/a870d8360e47f3ea03358c4e75e89e08a74845d7) by beachball)
403
+
404
+ ## [9.0.0-beta.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.6)
405
+
406
+ Mon, 09 Jan 2023 14:35:02 GMT
407
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.5..@fluentui/react-infobutton_v9.0.0-beta.6)
408
+
409
+ ### Changes
410
+
411
+ - Bump @fluentui/react-popover to v9.4.0 ([PR #26255](https://github.com/microsoft/fluentui/pull/26255) by beachball)
412
+ - Bump @fluentui/react-tabster to v9.3.6 ([PR #26255](https://github.com/microsoft/fluentui/pull/26255) by beachball)
413
+ - Bump @fluentui/react-utilities to v9.4.0 ([PR #26255](https://github.com/microsoft/fluentui/pull/26255) by beachball)
414
+
415
+ ## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.5)
416
+
417
+ Wed, 04 Jan 2023 01:40:08 GMT
418
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.4..@fluentui/react-infobutton_v9.0.0-beta.5)
419
+
420
+ ### Changes
421
+
422
+ - chore: migrate to new package structure. ([PR #26111](https://github.com/microsoft/fluentui/pull/26111) by tristan.watanabe@gmail.com)
423
+ - chore: Update Griffel to latest version ([PR #26045](https://github.com/microsoft/fluentui/pull/26045) by olfedias@microsoft.com)
424
+ - Bump @fluentui/react-popover to v9.3.6 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball)
425
+ - Bump @fluentui/react-tabster to v9.3.5 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball)
426
+ - Bump @fluentui/react-utilities to v9.3.1 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball)
427
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19 ([PR #26114](https://github.com/microsoft/fluentui/pull/26114) by beachball)
428
+
7
429
  ## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-infobutton_v9.0.0-beta.4)
8
430
 
9
- Wed, 21 Dec 2022 10:17:16 GMT
431
+ Wed, 21 Dec 2022 10:20:33 GMT
10
432
  [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-infobutton_v9.0.0-beta.3..@fluentui/react-infobutton_v9.0.0-beta.4)
11
433
 
12
434
  ### Changes
package/dist/index.d.ts CHANGED
@@ -3,6 +3,7 @@
3
3
  import type { ComponentProps } from '@fluentui/react-utilities';
4
4
  import type { ComponentState } from '@fluentui/react-utilities';
5
5
  import { ForwardRefComponent } from '@fluentui/react-utilities';
6
+ import { Label } from '@fluentui/react-label';
6
7
  import type { PopoverProps } from '@fluentui/react-popover';
7
8
  import type { PopoverSurface } from '@fluentui/react-popover';
8
9
  import * as React_2 from 'react';
@@ -31,13 +32,13 @@ export declare type InfoButtonProps = Omit<ComponentProps<Partial<InfoButtonSlot
31
32
  export declare type InfoButtonSlots = {
32
33
  root: NonNullable<Slot<'button'>>;
33
34
  /**
34
- * The Popover element that wraps the content and root. Use this slot to pass props to the Popover.
35
+ * The Popover element that wraps the info and root slots. Use this slot to pass props to the Popover.
35
36
  */
36
- popover: NonNullable<Slot<PopoverProps>>;
37
+ popover: NonNullable<Slot<Partial<PopoverProps>>>;
37
38
  /**
38
- * The content to be displayed in the PopoverSurface when the button is pressed.
39
+ * The information to be displayed in the PopoverSurface when the button is pressed.
39
40
  */
40
- content: NonNullable<Slot<typeof PopoverSurface>>;
41
+ info: NonNullable<Slot<typeof PopoverSurface>>;
41
42
  };
42
43
 
43
44
  /**
@@ -45,11 +46,110 @@ export declare type InfoButtonSlots = {
45
46
  */
46
47
  export declare type InfoButtonState = ComponentState<InfoButtonSlots> & Required<Pick<InfoButtonProps, 'size'>>;
47
48
 
49
+ /**
50
+ * InfoIcon component - TODO: add more docs
51
+ */
52
+ export declare const InfoIcon: ForwardRefComponent<InfoIconProps>;
53
+
54
+ export declare const infoIconClassNames: SlotClassNames<InfoIconSlots>;
55
+
56
+ /**
57
+ * InfoIconLabel component - TODO: add more docs
58
+ */
59
+ export declare const InfoIconLabel: ForwardRefComponent<InfoIconLabelProps>;
60
+
61
+ export declare const infoIconLabelClassNames: SlotClassNames<InfoIconLabelSlots>;
62
+
63
+ /**
64
+ * InfoIconLabel Props
65
+ */
66
+ export declare type InfoIconLabelProps = ComponentProps<InfoIconLabelSlots> & {};
67
+
68
+ export declare type InfoIconLabelSlots = {
69
+ root: Slot<'div'>;
70
+ };
71
+
72
+ /**
73
+ * State used in rendering InfoIconLabel
74
+ */
75
+ export declare type InfoIconLabelState = ComponentState<InfoIconLabelSlots>;
76
+
77
+ /**
78
+ * InfoIcon Props
79
+ */
80
+ export declare type InfoIconProps = ComponentProps<InfoIconSlots> & {};
81
+
82
+ export declare type InfoIconSlots = {
83
+ root: Slot<'div'>;
84
+ };
85
+
86
+ /**
87
+ * State used in rendering InfoIcon
88
+ */
89
+ export declare type InfoIconState = ComponentState<InfoIconSlots>;
90
+
91
+ /**
92
+ * InfoLabel component
93
+ */
94
+ export declare const InfoLabel: ForwardRefComponent<InfoLabelProps>;
95
+
96
+ export declare const infoLabelClassNames: SlotClassNames<InfoLabelSlots>;
97
+
98
+ /**
99
+ * InfoLabel Props
100
+ */
101
+ export declare type InfoLabelProps = ComponentProps<Partial<InfoLabelSlots>, 'label'> & {
102
+ /**
103
+ * The content of the InfoButton's popover.
104
+ */
105
+ info?: InfoButtonProps['info'];
106
+ };
107
+
108
+ export declare type InfoLabelSlots = {
109
+ root: NonNullable<Slot<'span'>>;
110
+ /**
111
+ * The Label component.
112
+ *
113
+ * It is not typically necessary to use this prop. The label text is the child of the `<InfoLabel>`, and other props
114
+ * such as `size` and `required` should be set directly on the `InfoLabel`.
115
+ *
116
+ * This is the PRIMARY slot: all native properties specified directly on `<InfoLabel>` will be applied to this slot,
117
+ * except `className` and `style`, which remain on the root slot.
118
+ */
119
+ label: NonNullable<Slot<typeof Label>>;
120
+ /**
121
+ * The InfoButton component.
122
+ *
123
+ * It is not typically necessary to use this prop. The content can be set using the `info` prop of the InfoLabel.
124
+ */
125
+ infoButton: Slot<typeof InfoButton>;
126
+ };
127
+
128
+ /**
129
+ * State used in rendering InfoLabel
130
+ */
131
+ export declare type InfoLabelState = ComponentState<InfoLabelSlots> & Pick<InfoLabelProps, 'size'>;
132
+
48
133
  /**
49
134
  * Render the final JSX of InfoButton
50
135
  */
51
136
  export declare const renderInfoButton_unstable: (state: InfoButtonState) => JSX.Element;
52
137
 
138
+ /**
139
+ * Render the final JSX of InfoIcon
140
+ */
141
+ export declare const renderInfoIcon_unstable: (state: InfoIconState) => JSX.Element;
142
+
143
+ /**
144
+ * Render the final JSX of InfoIconLabel
145
+ */
146
+ export declare const renderInfoIconLabel_unstable: (state: InfoIconLabelState) => JSX.Element;
147
+
148
+ /**
149
+ * Render the final JSX of InfoLabel
150
+ */
151
+ export declare const renderInfoLabel_unstable: (state: InfoLabelState) => JSX.Element;
152
+
53
153
  /**
54
154
  * Create the state required to render InfoButton.
55
155
  *
@@ -66,4 +166,52 @@ export declare const useInfoButton_unstable: (props: InfoButtonProps, ref: React
66
166
  */
67
167
  export declare const useInfoButtonStyles_unstable: (state: InfoButtonState) => InfoButtonState;
68
168
 
169
+ /**
170
+ * Create the state required to render InfoIcon.
171
+ *
172
+ * The returned state can be modified with hooks such as useInfoIconStyles_unstable,
173
+ * before being passed to renderInfoIcon_unstable.
174
+ *
175
+ * @param props - props from this instance of InfoIcon
176
+ * @param ref - reference to root HTMLElement of InfoIcon
177
+ */
178
+ export declare const useInfoIcon_unstable: (props: InfoIconProps, ref: React_2.Ref<HTMLElement>) => InfoIconState;
179
+
180
+ /**
181
+ * Create the state required to render InfoIconLabel.
182
+ *
183
+ * The returned state can be modified with hooks such as useInfoIconLabelStyles_unstable,
184
+ * before being passed to renderInfoIconLabel_unstable.
185
+ *
186
+ * @param props - props from this instance of InfoIconLabel
187
+ * @param ref - reference to root HTMLElement of InfoIconLabel
188
+ */
189
+ export declare const useInfoIconLabel_unstable: (props: InfoIconLabelProps, ref: React_2.Ref<HTMLElement>) => InfoIconLabelState;
190
+
191
+ /**
192
+ * Apply styling to the InfoIconLabel slots based on the state
193
+ */
194
+ export declare const useInfoIconLabelStyles_unstable: (state: InfoIconLabelState) => InfoIconLabelState;
195
+
196
+ /**
197
+ * Apply styling to the InfoIcon slots based on the state
198
+ */
199
+ export declare const useInfoIconStyles_unstable: (state: InfoIconState) => InfoIconState;
200
+
201
+ /**
202
+ * Create the state required to render InfoLabel.
203
+ *
204
+ * The returned state can be modified with hooks such as useInfoLabelStyles_unstable,
205
+ * before being passed to renderInfoLabel_unstable.
206
+ *
207
+ * @param props - props from this instance of InfoLabel
208
+ * @param ref - reference to label element of InfoLabel
209
+ */
210
+ export declare const useInfoLabel_unstable: (props: InfoLabelProps, ref: React_2.Ref<HTMLLabelElement>) => InfoLabelState;
211
+
212
+ /**
213
+ * Apply styling to the InfoLabel slots based on the state
214
+ */
215
+ export declare const useInfoLabelStyles_unstable: (state: InfoLabelState) => InfoLabelState;
216
+
69
217
  export { }
package/lib/InfoButton.js CHANGED
@@ -1,2 +1 @@
1
1
  export * from './components/InfoButton/index';
2
- //# sourceMappingURL=InfoButton.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InfoButton.js","sourceRoot":"../src/","sources":["packages/react-components/react-infobutton/src/InfoButton.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC","sourcesContent":["export * from './components/InfoButton/index';\n"]}
1
+ {"version":3,"sources":["InfoButton.ts"],"sourcesContent":["export * from './components/InfoButton/index';\n"],"names":[],"mappings":"AAAA,cAAc,gCAAgC"}
@@ -0,0 +1 @@
1
+ export * from './components/InfoIcon/index';
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["InfoIcon.ts"],"sourcesContent":["export * from './components/InfoIcon/index';\n"],"names":[],"mappings":"AAAA,cAAc,8BAA8B"}
@@ -0,0 +1 @@
1
+ export * from './components/InfoIconLabel/index';