@fluentui/react-alert 9.0.0-beta.98 → 9.0.1-0
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.
- package/CHANGELOG.md +558 -2
- package/dist/index.d.cts +87 -0
- package/dist/index.d.ts +3 -5
- package/lib/Alert.js +1 -1
- package/lib/Alert.js.map +1 -1
- package/lib/components/Alert/Alert.js +11 -10
- package/lib/components/Alert/Alert.js.map +1 -1
- package/lib/components/Alert/Alert.types.js +4 -0
- package/lib/components/Alert/Alert.types.js.map +1 -1
- package/lib/components/Alert/index.js +4 -5
- package/lib/components/Alert/index.js.map +1 -1
- package/lib/components/Alert/renderAlert.js +3 -3
- package/lib/components/Alert/renderAlert.js.map +1 -1
- package/lib/components/Alert/useAlert.js +6 -6
- package/lib/components/Alert/useAlert.js.map +1 -1
- package/lib/components/Alert/useAlertStyles.styles.js +71 -40
- package/lib/components/Alert/useAlertStyles.styles.js.map +1 -1
- package/lib/components/Alert/useAlertStyles.styles.raw.js +110 -0
- package/lib/components/Alert/useAlertStyles.styles.raw.js.map +1 -0
- package/lib/index.js +2 -2
- package/lib/index.js.map +1 -1
- package/lib-commonjs/Alert.cjs +28 -0
- package/lib-commonjs/Alert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/{Alert.js → Alert.cjs} +9 -8
- package/lib-commonjs/components/Alert/Alert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/Alert.types.cjs +8 -0
- package/lib-commonjs/components/Alert/Alert.types.cjs.map +1 -0
- package/lib-commonjs/components/Alert/index.cjs +31 -0
- package/lib-commonjs/components/Alert/index.cjs.map +1 -0
- package/lib-commonjs/components/Alert/{renderAlert.js → renderAlert.cjs} +1 -1
- package/lib-commonjs/components/Alert/renderAlert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/useAlert.cjs.map +1 -0
- package/lib-commonjs/components/Alert/{useAlertStyles.styles.js → useAlertStyles.styles.cjs} +100 -119
- package/lib-commonjs/components/Alert/useAlertStyles.styles.cjs.map +1 -0
- package/lib-commonjs/components/Alert/useAlertStyles.styles.raw.cjs +123 -0
- package/lib-commonjs/components/Alert/useAlertStyles.styles.raw.cjs.map +1 -0
- package/lib-commonjs/{index.js → index.cjs} +2 -2
- package/lib-commonjs/index.cjs.map +1 -0
- package/package.json +25 -40
- package/lib-commonjs/Alert.js +0 -6
- package/lib-commonjs/Alert.js.map +0 -1
- package/lib-commonjs/components/Alert/Alert.js.map +0 -1
- package/lib-commonjs/components/Alert/Alert.types.js +0 -4
- package/lib-commonjs/components/Alert/Alert.types.js.map +0 -1
- package/lib-commonjs/components/Alert/index.js +0 -10
- package/lib-commonjs/components/Alert/index.js.map +0 -1
- package/lib-commonjs/components/Alert/renderAlert.js.map +0 -1
- package/lib-commonjs/components/Alert/useAlert.js.map +0 -1
- package/lib-commonjs/components/Alert/useAlertStyles.styles.js.map +0 -1
- package/lib-commonjs/index.js.map +0 -1
- /package/lib-commonjs/components/Alert/{useAlert.js → useAlert.cjs} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,568 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-alert
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
<!-- This log was last generated on Tue, 11 Aug 2026 17:16:03 GMT and should not be manually modified. -->
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.1-0](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.1-0)
|
|
8
|
+
|
|
9
|
+
Tue, 11 Aug 2026 17:16:03 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.143..@fluentui/react-alert_v9.0.1-0)
|
|
11
|
+
|
|
12
|
+
### Patches (pre-release)
|
|
13
|
+
|
|
14
|
+
- Bump @fluentui/react-avatar to v9.11.5 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
|
|
15
|
+
- Bump @fluentui/react-button to v9.11.0 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
|
|
16
|
+
- Bump @fluentui/react-jsx-runtime to v9.4.5 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
|
|
17
|
+
- Bump @fluentui/react-tabster to v9.26.17 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
|
|
18
|
+
- Bump @fluentui/react-theme to v9.2.2 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
|
|
19
|
+
- Bump @fluentui/react-utilities to v9.26.6 ([commit](https://github.com/microsoft/fluentui/commit/undefined) by beachball)
|
|
20
|
+
|
|
21
|
+
### Changes
|
|
22
|
+
|
|
23
|
+
- Ship ESM-first (type:module): valid ESM under lib/, CommonJS under lib-commonjs/*.cjs, and drop the `node` export condition - bare-Node `import` resolves ESM, `require` resolves CJS; node-targeted bundlers tree-shake. ([PR #36327](https://github.com/microsoft/fluentui/pull/36327) by martinhochel@microsoft.com)
|
|
24
|
+
|
|
25
|
+
## [9.0.0-beta.143](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.143)
|
|
26
|
+
|
|
27
|
+
Tue, 04 Aug 2026 10:12:14 GMT
|
|
28
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.142..@fluentui/react-alert_v9.0.0-beta.143)
|
|
29
|
+
|
|
30
|
+
### Changes
|
|
31
|
+
|
|
32
|
+
- Bump @fluentui/react-avatar to v9.11.4 ([PR #36453](https://github.com/microsoft/fluentui/pull/36453) by beachball)
|
|
33
|
+
|
|
34
|
+
## [9.0.0-beta.142](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.142)
|
|
35
|
+
|
|
36
|
+
Mon, 29 Jun 2026 15:15:07 GMT
|
|
37
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.141..@fluentui/react-alert_v9.0.0-beta.142)
|
|
38
|
+
|
|
39
|
+
### Changes
|
|
40
|
+
|
|
41
|
+
- Bump @fluentui/react-button to v9.10.1 ([commit](https://github.com/microsoft/fluentui/commit/aedc345f58bc16bb8540615b5afdf3d2d3569db4) by beachball)
|
|
42
|
+
|
|
43
|
+
## [9.0.0-beta.141](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.141)
|
|
44
|
+
|
|
45
|
+
Wed, 24 Jun 2026 11:10:10 GMT
|
|
46
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.140..@fluentui/react-alert_v9.0.0-beta.141)
|
|
47
|
+
|
|
48
|
+
### Changes
|
|
49
|
+
|
|
50
|
+
- Bump @fluentui/react-avatar to v9.11.3 ([commit](https://github.com/microsoft/fluentui/commit/a4b871ca80c1f16f35ab4229def4fe02be7f30ea) by beachball)
|
|
51
|
+
- Bump @fluentui/react-button to v9.10.0 ([commit](https://github.com/microsoft/fluentui/commit/a4b871ca80c1f16f35ab4229def4fe02be7f30ea) by beachball)
|
|
52
|
+
- Bump @fluentui/react-tabster to v9.26.16 ([commit](https://github.com/microsoft/fluentui/commit/a4b871ca80c1f16f35ab4229def4fe02be7f30ea) by beachball)
|
|
53
|
+
- Bump @fluentui/react-utilities to v9.26.5 ([commit](https://github.com/microsoft/fluentui/commit/a4b871ca80c1f16f35ab4229def4fe02be7f30ea) by beachball)
|
|
54
|
+
- Bump @fluentui/react-jsx-runtime to v9.4.4 ([commit](https://github.com/microsoft/fluentui/commit/a4b871ca80c1f16f35ab4229def4fe02be7f30ea) by beachball)
|
|
55
|
+
|
|
56
|
+
## [9.0.0-beta.140](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.140)
|
|
57
|
+
|
|
58
|
+
Tue, 26 May 2026 09:39:42 GMT
|
|
59
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.139..@fluentui/react-alert_v9.0.0-beta.140)
|
|
60
|
+
|
|
61
|
+
### Changes
|
|
62
|
+
|
|
63
|
+
- Bump @fluentui/react-avatar to v9.11.2 ([PR #36246](https://github.com/microsoft/fluentui/pull/36246) by beachball)
|
|
64
|
+
- Bump @fluentui/react-button to v9.9.2 ([PR #36246](https://github.com/microsoft/fluentui/pull/36246) by beachball)
|
|
65
|
+
- Bump @fluentui/react-tabster to v9.26.15 ([PR #36246](https://github.com/microsoft/fluentui/pull/36246) by beachball)
|
|
66
|
+
- Bump @fluentui/react-utilities to v9.26.4 ([PR #36246](https://github.com/microsoft/fluentui/pull/36246) by beachball)
|
|
67
|
+
- Bump @fluentui/react-jsx-runtime to v9.4.3 ([PR #36246](https://github.com/microsoft/fluentui/pull/36246) by beachball)
|
|
68
|
+
|
|
69
|
+
## [9.0.0-beta.139](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.139)
|
|
70
|
+
|
|
71
|
+
Thu, 23 Apr 2026 14:21:22 GMT
|
|
72
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.138..@fluentui/react-alert_v9.0.0-beta.139)
|
|
73
|
+
|
|
74
|
+
### Changes
|
|
75
|
+
|
|
76
|
+
- Bump @fluentui/react-avatar to v9.11.1 ([PR #36035](https://github.com/microsoft/fluentui/pull/36035) by beachball)
|
|
77
|
+
- Bump @fluentui/react-button to v9.9.1 ([PR #36035](https://github.com/microsoft/fluentui/pull/36035) by beachball)
|
|
78
|
+
- Bump @fluentui/react-tabster to v9.26.14 ([PR #36035](https://github.com/microsoft/fluentui/pull/36035) by beachball)
|
|
79
|
+
- Bump @fluentui/react-utilities to v9.26.3 ([PR #36035](https://github.com/microsoft/fluentui/pull/36035) by beachball)
|
|
80
|
+
- Bump @fluentui/react-jsx-runtime to v9.4.2 ([PR #36035](https://github.com/microsoft/fluentui/pull/36035) by beachball)
|
|
81
|
+
|
|
82
|
+
## [9.0.0-beta.138](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.138)
|
|
83
|
+
|
|
84
|
+
Wed, 01 Apr 2026 15:52:43 GMT
|
|
85
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.137..@fluentui/react-alert_v9.0.0-beta.138)
|
|
86
|
+
|
|
87
|
+
### Changes
|
|
88
|
+
|
|
89
|
+
- Bump @fluentui/react-avatar to v9.11.0 ([PR #35912](https://github.com/microsoft/fluentui/pull/35912) by beachball)
|
|
90
|
+
|
|
91
|
+
## [9.0.0-beta.137](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.137)
|
|
92
|
+
|
|
93
|
+
Mon, 30 Mar 2026 14:37:41 GMT
|
|
94
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.136..@fluentui/react-alert_v9.0.0-beta.137)
|
|
95
|
+
|
|
96
|
+
### Changes
|
|
97
|
+
|
|
98
|
+
- Bump @fluentui/react-avatar to v9.10.4 ([PR #35907](https://github.com/microsoft/fluentui/pull/35907) by beachball)
|
|
99
|
+
|
|
100
|
+
## [9.0.0-beta.136](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.136)
|
|
101
|
+
|
|
102
|
+
Thu, 26 Mar 2026 08:12:54 GMT
|
|
103
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.135..@fluentui/react-alert_v9.0.0-beta.136)
|
|
104
|
+
|
|
105
|
+
### Changes
|
|
106
|
+
|
|
107
|
+
- Bump @fluentui/react-avatar to v9.10.3 ([PR #35824](https://github.com/microsoft/fluentui/pull/35824) by beachball)
|
|
108
|
+
- Bump @fluentui/react-button to v9.9.0 ([PR #35824](https://github.com/microsoft/fluentui/pull/35824) by beachball)
|
|
109
|
+
|
|
110
|
+
## [9.0.0-beta.135](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.135)
|
|
111
|
+
|
|
112
|
+
Tue, 03 Mar 2026 09:43:43 GMT
|
|
113
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.134..@fluentui/react-alert_v9.0.0-beta.135)
|
|
114
|
+
|
|
115
|
+
### Changes
|
|
116
|
+
|
|
117
|
+
- Bump @fluentui/react-avatar to v9.10.2 ([commit](https://github.com/microsoft/fluentui/commit/81e1556b008bfbd07fe427d89af6142459d74c6f) by beachball)
|
|
118
|
+
|
|
119
|
+
## [9.0.0-beta.134](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.134)
|
|
120
|
+
|
|
121
|
+
Wed, 25 Feb 2026 13:32:28 GMT
|
|
122
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.133..@fluentui/react-alert_v9.0.0-beta.134)
|
|
123
|
+
|
|
124
|
+
### Changes
|
|
125
|
+
|
|
126
|
+
- Bump @fluentui/react-avatar to v9.10.1 ([PR #35782](https://github.com/microsoft/fluentui/pull/35782) by beachball)
|
|
127
|
+
- Bump @fluentui/react-button to v9.8.2 ([PR #35782](https://github.com/microsoft/fluentui/pull/35782) by beachball)
|
|
128
|
+
- Bump @fluentui/react-tabster to v9.26.13 ([PR #35782](https://github.com/microsoft/fluentui/pull/35782) by beachball)
|
|
129
|
+
- Bump @fluentui/react-utilities to v9.26.2 ([PR #35782](https://github.com/microsoft/fluentui/pull/35782) by beachball)
|
|
130
|
+
- Bump @fluentui/react-jsx-runtime to v9.4.1 ([PR #35782](https://github.com/microsoft/fluentui/pull/35782) by beachball)
|
|
131
|
+
|
|
132
|
+
## [9.0.0-beta.133](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.133)
|
|
133
|
+
|
|
134
|
+
Thu, 12 Feb 2026 10:46:15 GMT
|
|
135
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.132..@fluentui/react-alert_v9.0.0-beta.133)
|
|
136
|
+
|
|
137
|
+
### Changes
|
|
138
|
+
|
|
139
|
+
- Bump @fluentui/react-avatar to v9.10.0 ([PR #35743](https://github.com/microsoft/fluentui/pull/35743) by beachball)
|
|
140
|
+
- Bump @fluentui/react-button to v9.8.1 ([PR #35743](https://github.com/microsoft/fluentui/pull/35743) by beachball)
|
|
141
|
+
- Bump @fluentui/react-jsx-runtime to v9.4.0 ([PR #35743](https://github.com/microsoft/fluentui/pull/35743) by beachball)
|
|
142
|
+
|
|
143
|
+
## [9.0.0-beta.132](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.132)
|
|
144
|
+
|
|
145
|
+
Thu, 22 Jan 2026 17:07:01 GMT
|
|
146
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.131..@fluentui/react-alert_v9.0.0-beta.132)
|
|
147
|
+
|
|
148
|
+
### Changes
|
|
149
|
+
|
|
150
|
+
- Bump @fluentui/react-avatar to v9.9.14 ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by beachball)
|
|
151
|
+
- Bump @fluentui/react-button to v9.8.0 ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by beachball)
|
|
152
|
+
- Bump @fluentui/react-tabster to v9.26.12 ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by beachball)
|
|
153
|
+
- Bump @fluentui/react-theme to v9.2.1 ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by beachball)
|
|
154
|
+
- Bump @fluentui/react-utilities to v9.26.1 ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by beachball)
|
|
155
|
+
- Bump @fluentui/react-jsx-runtime to v9.3.5 ([PR #35574](https://github.com/microsoft/fluentui/pull/35574) by beachball)
|
|
156
|
+
|
|
157
|
+
## [9.0.0-beta.131](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.131)
|
|
158
|
+
|
|
159
|
+
Wed, 17 Dec 2025 18:10:11 GMT
|
|
160
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.130..@fluentui/react-alert_v9.0.0-beta.131)
|
|
161
|
+
|
|
162
|
+
### Changes
|
|
163
|
+
|
|
164
|
+
- Bump @fluentui/react-avatar to v9.9.13 ([PR #35582](https://github.com/microsoft/fluentui/pull/35582) by beachball)
|
|
165
|
+
- Bump @fluentui/react-button to v9.7.1 ([PR #35582](https://github.com/microsoft/fluentui/pull/35582) by beachball)
|
|
166
|
+
- Bump @fluentui/react-tabster to v9.26.11 ([PR #35582](https://github.com/microsoft/fluentui/pull/35582) by beachball)
|
|
167
|
+
- Bump @fluentui/react-utilities to v9.26.0 ([PR #35582](https://github.com/microsoft/fluentui/pull/35582) by beachball)
|
|
168
|
+
- Bump @fluentui/react-jsx-runtime to v9.3.4 ([PR #35582](https://github.com/microsoft/fluentui/pull/35582) by beachball)
|
|
169
|
+
|
|
170
|
+
## [9.0.0-beta.130](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.130)
|
|
171
|
+
|
|
172
|
+
Fri, 05 Dec 2025 22:38:42 GMT
|
|
173
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.129..@fluentui/react-alert_v9.0.0-beta.130)
|
|
174
|
+
|
|
175
|
+
### Changes
|
|
176
|
+
|
|
177
|
+
- Bump @fluentui/react-button to v9.7.0 ([PR #35537](https://github.com/microsoft/fluentui/pull/35537) by beachball)
|
|
178
|
+
|
|
179
|
+
## [9.0.0-beta.129](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.129)
|
|
180
|
+
|
|
181
|
+
Tue, 11 Nov 2025 19:18:16 GMT
|
|
182
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.128..@fluentui/react-alert_v9.0.0-beta.129)
|
|
183
|
+
|
|
184
|
+
### Changes
|
|
185
|
+
|
|
186
|
+
- chore: Bump @griffel/react package. ([PR #35469](https://github.com/microsoft/fluentui/pull/35469) by estebanmu@microsoft.com)
|
|
187
|
+
- Bump @fluentui/react-avatar to v9.9.12 ([PR #35462](https://github.com/microsoft/fluentui/pull/35462) by beachball)
|
|
188
|
+
- Bump @fluentui/react-button to v9.6.12 ([PR #35462](https://github.com/microsoft/fluentui/pull/35462) by beachball)
|
|
189
|
+
- Bump @fluentui/react-tabster to v9.26.10 ([PR #35462](https://github.com/microsoft/fluentui/pull/35462) by beachball)
|
|
190
|
+
- Bump @fluentui/react-utilities to v9.25.4 ([PR #35462](https://github.com/microsoft/fluentui/pull/35462) by beachball)
|
|
191
|
+
- Bump @fluentui/react-jsx-runtime to v9.3.3 ([PR #35462](https://github.com/microsoft/fluentui/pull/35462) by beachball)
|
|
192
|
+
|
|
193
|
+
## [9.0.0-beta.128](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.128)
|
|
194
|
+
|
|
195
|
+
Thu, 06 Nov 2025 15:01:25 GMT
|
|
196
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.127..@fluentui/react-alert_v9.0.0-beta.128)
|
|
197
|
+
|
|
198
|
+
### Changes
|
|
199
|
+
|
|
200
|
+
- Bump @fluentui/react-avatar to v9.9.11 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
|
|
201
|
+
- Bump @fluentui/react-button to v9.6.11 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
|
|
202
|
+
- Bump @fluentui/react-tabster to v9.26.9 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
|
|
203
|
+
- Bump @fluentui/react-utilities to v9.25.3 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
|
|
204
|
+
- Bump @fluentui/react-jsx-runtime to v9.3.2 ([PR #35466](https://github.com/microsoft/fluentui/pull/35466) by beachball)
|
|
205
|
+
|
|
206
|
+
## [9.0.0-beta.127](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.127)
|
|
207
|
+
|
|
208
|
+
Fri, 31 Oct 2025 16:22:06 GMT
|
|
209
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.126..@fluentui/react-alert_v9.0.0-beta.127)
|
|
210
|
+
|
|
211
|
+
### Changes
|
|
212
|
+
|
|
213
|
+
- Bump @fluentui/react-avatar to v9.9.10 ([PR #35402](https://github.com/microsoft/fluentui/pull/35402) by beachball)
|
|
214
|
+
- Bump @fluentui/react-button to v9.6.10 ([PR #35402](https://github.com/microsoft/fluentui/pull/35402) by beachball)
|
|
215
|
+
- Bump @fluentui/react-tabster to v9.26.8 ([PR #35402](https://github.com/microsoft/fluentui/pull/35402) by beachball)
|
|
216
|
+
- Bump @fluentui/react-utilities to v9.25.2 ([PR #35402](https://github.com/microsoft/fluentui/pull/35402) by beachball)
|
|
217
|
+
- Bump @fluentui/react-jsx-runtime to v9.3.1 ([PR #35402](https://github.com/microsoft/fluentui/pull/35402) by beachball)
|
|
218
|
+
|
|
219
|
+
## [9.0.0-beta.126](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.126)
|
|
220
|
+
|
|
221
|
+
Tue, 21 Oct 2025 14:16:59 GMT
|
|
222
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.125..@fluentui/react-alert_v9.0.0-beta.126)
|
|
223
|
+
|
|
224
|
+
### Changes
|
|
225
|
+
|
|
226
|
+
- Bump @fluentui/react-avatar to v9.9.9 ([PR #35343](https://github.com/microsoft/fluentui/pull/35343) by beachball)
|
|
227
|
+
- Bump @fluentui/react-button to v9.6.9 ([PR #35343](https://github.com/microsoft/fluentui/pull/35343) by beachball)
|
|
228
|
+
- Bump @fluentui/react-jsx-runtime to v9.3.0 ([PR #35343](https://github.com/microsoft/fluentui/pull/35343) by beachball)
|
|
229
|
+
|
|
230
|
+
## [9.0.0-beta.125](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.125)
|
|
231
|
+
|
|
232
|
+
Wed, 08 Oct 2025 12:04:51 GMT
|
|
233
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.124..@fluentui/react-alert_v9.0.0-beta.125)
|
|
234
|
+
|
|
235
|
+
### Changes
|
|
236
|
+
|
|
237
|
+
- feat: add react 19 support ([PR #35285](https://github.com/microsoft/fluentui/pull/35285) by martinhochel@microsoft.com)
|
|
238
|
+
- Bump @fluentui/react-avatar to v9.9.8 ([PR #35294](https://github.com/microsoft/fluentui/pull/35294) by beachball)
|
|
239
|
+
- Bump @fluentui/react-button to v9.6.8 ([PR #35294](https://github.com/microsoft/fluentui/pull/35294) by beachball)
|
|
240
|
+
- Bump @fluentui/react-tabster to v9.26.7 ([PR #35294](https://github.com/microsoft/fluentui/pull/35294) by beachball)
|
|
241
|
+
- Bump @fluentui/react-utilities to v9.25.1 ([PR #35294](https://github.com/microsoft/fluentui/pull/35294) by beachball)
|
|
242
|
+
- Bump @fluentui/react-jsx-runtime to v9.2.2 ([PR #35294](https://github.com/microsoft/fluentui/pull/35294) by beachball)
|
|
243
|
+
|
|
244
|
+
## [9.0.0-beta.124](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.124)
|
|
245
|
+
|
|
246
|
+
Thu, 06 Jun 2024 15:26:45 GMT
|
|
247
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.123..@fluentui/react-alert_v9.0.0-beta.124)
|
|
248
|
+
|
|
249
|
+
### Changes
|
|
250
|
+
|
|
251
|
+
- Bump @fluentui/react-avatar to v9.6.29 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
|
|
252
|
+
- Bump @fluentui/react-button to v9.3.83 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
|
|
253
|
+
- Bump @fluentui/react-tabster to v9.21.5 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
|
|
254
|
+
- Bump @fluentui/react-utilities to v9.18.10 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
|
|
255
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.39 ([PR #31586](https://github.com/microsoft/fluentui/pull/31586) by beachball)
|
|
256
|
+
|
|
257
|
+
## [9.0.0-beta.123](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.123)
|
|
258
|
+
|
|
259
|
+
Thu, 23 May 2024 08:02:39 GMT
|
|
260
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.122..@fluentui/react-alert_v9.0.0-beta.123)
|
|
261
|
+
|
|
262
|
+
### Changes
|
|
263
|
+
|
|
264
|
+
- chore: replace usage of .shorthands() in styles ([PR #31458](https://github.com/microsoft/fluentui/pull/31458) by olfedias@microsoft.com)
|
|
265
|
+
- Bump @fluentui/react-avatar to v9.6.28 ([commit](https://github.com/microsoft/fluentui/commit/03599d609e8310b08c57d1f871cffbf717d79207) by beachball)
|
|
266
|
+
- Bump @fluentui/react-button to v9.3.82 ([commit](https://github.com/microsoft/fluentui/commit/03599d609e8310b08c57d1f871cffbf717d79207) by beachball)
|
|
267
|
+
- Bump @fluentui/react-tabster to v9.21.4 ([commit](https://github.com/microsoft/fluentui/commit/03599d609e8310b08c57d1f871cffbf717d79207) by beachball)
|
|
268
|
+
|
|
269
|
+
## [9.0.0-beta.122](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.122)
|
|
270
|
+
|
|
271
|
+
Mon, 20 May 2024 12:44:51 GMT
|
|
272
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.121..@fluentui/react-alert_v9.0.0-beta.122)
|
|
273
|
+
|
|
274
|
+
### Changes
|
|
275
|
+
|
|
276
|
+
- chore: bump @griffel/react ([PR #31258](https://github.com/microsoft/fluentui/pull/31258) by olfedias@microsoft.com)
|
|
277
|
+
- Bump @fluentui/react-avatar to v9.6.27 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
|
|
278
|
+
- Bump @fluentui/react-button to v9.3.81 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
|
|
279
|
+
- Bump @fluentui/react-tabster to v9.21.3 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
|
|
280
|
+
- Bump @fluentui/react-utilities to v9.18.9 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
|
|
281
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.38 ([PR #26682](https://github.com/microsoft/fluentui/pull/26682) by beachball)
|
|
282
|
+
|
|
283
|
+
## [9.0.0-beta.121](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.121)
|
|
284
|
+
|
|
285
|
+
Thu, 16 May 2024 09:25:11 GMT
|
|
286
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.120..@fluentui/react-alert_v9.0.0-beta.121)
|
|
287
|
+
|
|
288
|
+
### Changes
|
|
289
|
+
|
|
290
|
+
- chore: Upgrade react-icons version to 2.0.239 to pick up provider export map fix. ([PR #31287](https://github.com/microsoft/fluentui/pull/31287) by ololubek@microsoft.com)
|
|
291
|
+
- Bump @fluentui/react-avatar to v9.6.26 ([PR #31390](https://github.com/microsoft/fluentui/pull/31390) by beachball)
|
|
292
|
+
- Bump @fluentui/react-button to v9.3.80 ([PR #31390](https://github.com/microsoft/fluentui/pull/31390) by beachball)
|
|
293
|
+
|
|
294
|
+
## [9.0.0-beta.120](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.120)
|
|
295
|
+
|
|
296
|
+
Thu, 09 May 2024 19:35:12 GMT
|
|
297
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.119..@fluentui/react-alert_v9.0.0-beta.120)
|
|
298
|
+
|
|
299
|
+
### Changes
|
|
300
|
+
|
|
301
|
+
- Bump @fluentui/react-avatar to v9.6.25 ([PR #31321](https://github.com/microsoft/fluentui/pull/31321) by beachball)
|
|
302
|
+
- Bump @fluentui/react-button to v9.3.79 ([PR #31321](https://github.com/microsoft/fluentui/pull/31321) by beachball)
|
|
303
|
+
- Bump @fluentui/react-tabster to v9.21.2 ([PR #31321](https://github.com/microsoft/fluentui/pull/31321) by beachball)
|
|
304
|
+
|
|
305
|
+
## [9.0.0-beta.119](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.119)
|
|
306
|
+
|
|
307
|
+
Mon, 06 May 2024 12:55:02 GMT
|
|
308
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.118..@fluentui/react-alert_v9.0.0-beta.119)
|
|
309
|
+
|
|
310
|
+
### Changes
|
|
311
|
+
|
|
312
|
+
- Bump @fluentui/react-avatar to v9.6.24 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
|
313
|
+
- Bump @fluentui/react-button to v9.3.78 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
|
314
|
+
- Bump @fluentui/react-tabster to v9.21.1 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
|
315
|
+
- Bump @fluentui/react-utilities to v9.18.8 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
|
316
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.37 ([PR #31271](https://github.com/microsoft/fluentui/pull/31271) by beachball)
|
|
317
|
+
|
|
318
|
+
## [9.0.0-beta.118](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.118)
|
|
319
|
+
|
|
320
|
+
Thu, 02 May 2024 11:36:28 GMT
|
|
321
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.117..@fluentui/react-alert_v9.0.0-beta.118)
|
|
322
|
+
|
|
323
|
+
### Changes
|
|
324
|
+
|
|
325
|
+
- chore: upgrade @fluentui/react-icons to 2.0.237. ([PR #31139](https://github.com/microsoft/fluentui/pull/31139) by ololubek@microsoft.com)
|
|
326
|
+
- Bump @fluentui/react-avatar to v9.6.23 ([PR #31231](https://github.com/microsoft/fluentui/pull/31231) by beachball)
|
|
327
|
+
- Bump @fluentui/react-button to v9.3.77 ([PR #31231](https://github.com/microsoft/fluentui/pull/31231) by beachball)
|
|
328
|
+
- Bump @fluentui/react-tabster to v9.21.0 ([PR #31231](https://github.com/microsoft/fluentui/pull/31231) by beachball)
|
|
329
|
+
|
|
330
|
+
## [9.0.0-beta.117](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.117)
|
|
331
|
+
|
|
332
|
+
Tue, 23 Apr 2024 08:17:49 GMT
|
|
333
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.116..@fluentui/react-alert_v9.0.0-beta.117)
|
|
334
|
+
|
|
335
|
+
### Changes
|
|
336
|
+
|
|
337
|
+
- Bump @fluentui/react-avatar to v9.6.22 ([PR #31113](https://github.com/microsoft/fluentui/pull/31113) by beachball)
|
|
338
|
+
- Bump @fluentui/react-button to v9.3.76 ([PR #31113](https://github.com/microsoft/fluentui/pull/31113) by beachball)
|
|
339
|
+
- Bump @fluentui/react-tabster to v9.20.1 ([PR #31113](https://github.com/microsoft/fluentui/pull/31113) by beachball)
|
|
340
|
+
- Bump @fluentui/react-utilities to v9.18.7 ([PR #31113](https://github.com/microsoft/fluentui/pull/31113) by beachball)
|
|
341
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.36 ([PR #31113](https://github.com/microsoft/fluentui/pull/31113) by beachball)
|
|
342
|
+
|
|
343
|
+
## [9.0.0-beta.116](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.116)
|
|
344
|
+
|
|
345
|
+
Wed, 17 Apr 2024 21:53:47 GMT
|
|
346
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.115..@fluentui/react-alert_v9.0.0-beta.116)
|
|
347
|
+
|
|
348
|
+
### Changes
|
|
349
|
+
|
|
350
|
+
- chore: Update react-icons to 2.0.235 ([PR #31011](https://github.com/microsoft/fluentui/pull/31011) by ololubek@microsoft.com)
|
|
351
|
+
- Bump @fluentui/react-avatar to v9.6.21 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
|
|
352
|
+
- Bump @fluentui/react-button to v9.3.75 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
|
|
353
|
+
- Bump @fluentui/react-tabster to v9.20.0 ([PR #31100](https://github.com/microsoft/fluentui/pull/31100) by beachball)
|
|
354
|
+
|
|
355
|
+
## [9.0.0-beta.115](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.115)
|
|
356
|
+
|
|
357
|
+
Tue, 02 Apr 2024 09:48:01 GMT
|
|
358
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.114..@fluentui/react-alert_v9.0.0-beta.115)
|
|
359
|
+
|
|
360
|
+
### Changes
|
|
361
|
+
|
|
362
|
+
- Bump @fluentui/react-avatar to v9.6.20 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
|
|
363
|
+
- Bump @fluentui/react-button to v9.3.74 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
|
|
364
|
+
- Bump @fluentui/react-tabster to v9.19.6 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
|
|
365
|
+
- Bump @fluentui/react-utilities to v9.18.6 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
|
|
366
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.35 ([PR #30644](https://github.com/microsoft/fluentui/pull/30644) by beachball)
|
|
367
|
+
|
|
368
|
+
## [9.0.0-beta.114](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.114)
|
|
369
|
+
|
|
370
|
+
Mon, 18 Mar 2024 19:50:46 GMT
|
|
371
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.113..@fluentui/react-alert_v9.0.0-beta.114)
|
|
372
|
+
|
|
373
|
+
### Changes
|
|
374
|
+
|
|
375
|
+
- Bump @fluentui/react-avatar to v9.6.19 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
376
|
+
- Bump @fluentui/react-button to v9.3.73 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
377
|
+
- Bump @fluentui/react-tabster to v9.19.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
378
|
+
- Bump @fluentui/react-theme to v9.1.19 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
379
|
+
- Bump @fluentui/react-utilities to v9.18.5 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
380
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.34 ([PR #30600](https://github.com/microsoft/fluentui/pull/30600) by beachball)
|
|
381
|
+
|
|
382
|
+
## [9.0.0-beta.113](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.113)
|
|
383
|
+
|
|
384
|
+
Fri, 15 Mar 2024 21:43:49 GMT
|
|
385
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.112..@fluentui/react-alert_v9.0.0-beta.113)
|
|
386
|
+
|
|
387
|
+
### Changes
|
|
388
|
+
|
|
389
|
+
- Bump @fluentui/react-avatar to v9.6.18 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
|
|
390
|
+
- Bump @fluentui/react-button to v9.3.72 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
|
|
391
|
+
- Bump @fluentui/react-tabster to v9.19.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
|
|
392
|
+
- Bump @fluentui/react-theme to v9.1.18 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
|
|
393
|
+
- Bump @fluentui/react-utilities to v9.18.4 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
|
|
394
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.33 ([PR #30740](https://github.com/microsoft/fluentui/pull/30740) by beachball)
|
|
395
|
+
|
|
396
|
+
## [9.0.0-beta.112](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.112)
|
|
397
|
+
|
|
398
|
+
Thu, 07 Mar 2024 19:33:27 GMT
|
|
399
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.111..@fluentui/react-alert_v9.0.0-beta.112)
|
|
400
|
+
|
|
401
|
+
### Changes
|
|
402
|
+
|
|
403
|
+
- Bump @fluentui/react-avatar to v9.6.17 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
|
|
404
|
+
- Bump @fluentui/react-button to v9.3.71 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
|
|
405
|
+
- Bump @fluentui/react-tabster to v9.19.3 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
|
|
406
|
+
- Bump @fluentui/react-theme to v9.1.17 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
|
|
407
|
+
- Bump @fluentui/react-utilities to v9.18.3 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
|
|
408
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.32 ([PR #30687](https://github.com/microsoft/fluentui/pull/30687) by beachball)
|
|
409
|
+
|
|
410
|
+
## [9.0.0-beta.111](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.111)
|
|
411
|
+
|
|
412
|
+
Wed, 28 Feb 2024 02:34:19 GMT
|
|
413
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.110..@fluentui/react-alert_v9.0.0-beta.111)
|
|
414
|
+
|
|
415
|
+
### Changes
|
|
416
|
+
|
|
417
|
+
- Bump @fluentui/react-avatar to v9.6.16 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
|
|
418
|
+
- Bump @fluentui/react-button to v9.3.70 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
|
|
419
|
+
- Bump @fluentui/react-tabster to v9.19.2 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
|
|
420
|
+
- Bump @fluentui/react-utilities to v9.18.2 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
|
|
421
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.31 ([PR #30639](https://github.com/microsoft/fluentui/pull/30639) by beachball)
|
|
422
|
+
|
|
423
|
+
## [9.0.0-beta.110](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.110)
|
|
424
|
+
|
|
425
|
+
Tue, 20 Feb 2024 14:22:30 GMT
|
|
426
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.109..@fluentui/react-alert_v9.0.0-beta.110)
|
|
427
|
+
|
|
428
|
+
### Changes
|
|
429
|
+
|
|
430
|
+
- Bump @fluentui/react-avatar to v9.6.15 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
|
|
431
|
+
- Bump @fluentui/react-button to v9.3.69 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
|
|
432
|
+
- Bump @fluentui/react-tabster to v9.19.1 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
|
|
433
|
+
- Bump @fluentui/react-utilities to v9.18.1 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
|
|
434
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.30 ([PR #30543](https://github.com/microsoft/fluentui/pull/30543) by beachball)
|
|
435
|
+
|
|
436
|
+
## [9.0.0-beta.109](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.109)
|
|
437
|
+
|
|
438
|
+
Tue, 06 Feb 2024 17:55:21 GMT
|
|
439
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.108..@fluentui/react-alert_v9.0.0-beta.109)
|
|
440
|
+
|
|
441
|
+
### Changes
|
|
442
|
+
|
|
443
|
+
- Bump @fluentui/react-avatar to v9.6.14 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
|
|
444
|
+
- Bump @fluentui/react-button to v9.3.68 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
|
|
445
|
+
- Bump @fluentui/react-tabster to v9.19.0 ([PR #30392](https://github.com/microsoft/fluentui/pull/30392) by beachball)
|
|
446
|
+
|
|
447
|
+
## [9.0.0-beta.108](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.108)
|
|
448
|
+
|
|
449
|
+
Tue, 30 Jan 2024 23:16:54 GMT
|
|
450
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.107..@fluentui/react-alert_v9.0.0-beta.108)
|
|
451
|
+
|
|
452
|
+
### Changes
|
|
453
|
+
|
|
454
|
+
- Bump @fluentui/react-avatar to v9.6.13 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
|
|
455
|
+
- Bump @fluentui/react-button to v9.3.67 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
|
|
456
|
+
- Bump @fluentui/react-tabster to v9.18.0 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
|
|
457
|
+
- Bump @fluentui/react-utilities to v9.18.0 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
|
|
458
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.29 ([PR #29983](https://github.com/microsoft/fluentui/pull/29983) by beachball)
|
|
459
|
+
|
|
460
|
+
## [9.0.0-beta.107](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.107)
|
|
461
|
+
|
|
462
|
+
Mon, 29 Jan 2024 13:56:06 GMT
|
|
463
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.106..@fluentui/react-alert_v9.0.0-beta.107)
|
|
464
|
+
|
|
465
|
+
### Changes
|
|
466
|
+
|
|
467
|
+
- Bump @fluentui/react-avatar to v9.6.12 ([PR #30383](https://github.com/microsoft/fluentui/pull/30383) by beachball)
|
|
468
|
+
|
|
469
|
+
## [9.0.0-beta.106](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.106)
|
|
470
|
+
|
|
471
|
+
Fri, 26 Jan 2024 10:40:22 GMT
|
|
472
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.105..@fluentui/react-alert_v9.0.0-beta.106)
|
|
473
|
+
|
|
474
|
+
### Changes
|
|
475
|
+
|
|
476
|
+
- Bump @fluentui/react-avatar to v9.6.11 ([PR #30391](https://github.com/microsoft/fluentui/pull/30391) by beachball)
|
|
477
|
+
|
|
478
|
+
## [9.0.0-beta.105](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.105)
|
|
479
|
+
|
|
480
|
+
Tue, 23 Jan 2024 15:11:00 GMT
|
|
481
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.104..@fluentui/react-alert_v9.0.0-beta.105)
|
|
482
|
+
|
|
483
|
+
### Changes
|
|
484
|
+
|
|
485
|
+
- Bump @fluentui/react-avatar to v9.6.10 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
|
|
486
|
+
- Bump @fluentui/react-button to v9.3.66 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
|
|
487
|
+
- Bump @fluentui/react-tabster to v9.17.4 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
|
|
488
|
+
- Bump @fluentui/react-utilities to v9.17.0 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
|
|
489
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.28 ([PR #30359](https://github.com/microsoft/fluentui/pull/30359) by beachball)
|
|
490
|
+
|
|
491
|
+
## [9.0.0-beta.104](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.104)
|
|
492
|
+
|
|
493
|
+
Thu, 18 Jan 2024 14:25:03 GMT
|
|
494
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.103..@fluentui/react-alert_v9.0.0-beta.104)
|
|
495
|
+
|
|
496
|
+
### Changes
|
|
497
|
+
|
|
498
|
+
- Bump @fluentui/react-avatar to v9.6.9 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
|
|
499
|
+
- Bump @fluentui/react-button to v9.3.65 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
|
|
500
|
+
- Bump @fluentui/react-tabster to v9.17.3 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
|
|
501
|
+
- Bump @fluentui/react-utilities to v9.16.1 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
|
|
502
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.27 ([PR #30046](https://github.com/microsoft/fluentui/pull/30046) by beachball)
|
|
503
|
+
|
|
504
|
+
## [9.0.0-beta.103](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.103)
|
|
505
|
+
|
|
506
|
+
Wed, 17 Jan 2024 16:18:50 GMT
|
|
507
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.102..@fluentui/react-alert_v9.0.0-beta.103)
|
|
508
|
+
|
|
509
|
+
### Changes
|
|
510
|
+
|
|
511
|
+
- Bump @fluentui/react-avatar to v9.6.8 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
|
|
512
|
+
- Bump @fluentui/react-button to v9.3.64 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
|
|
513
|
+
- Bump @fluentui/react-tabster to v9.17.2 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
|
|
514
|
+
- Bump @fluentui/react-utilities to v9.16.0 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
|
|
515
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.26 ([PR #30339](https://github.com/microsoft/fluentui/pull/30339) by beachball)
|
|
516
|
+
|
|
517
|
+
## [9.0.0-beta.102](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.102)
|
|
518
|
+
|
|
519
|
+
Tue, 16 Jan 2024 13:14:13 GMT
|
|
520
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.101..@fluentui/react-alert_v9.0.0-beta.102)
|
|
521
|
+
|
|
522
|
+
### Changes
|
|
523
|
+
|
|
524
|
+
- fix: correct version of @types/react-dom peer dep that matches for 16.x ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by mgodbolt@microsoft.com)
|
|
525
|
+
- Bump @fluentui/react-avatar to v9.6.7 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
|
|
526
|
+
- Bump @fluentui/react-button to v9.3.63 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
|
|
527
|
+
- Bump @fluentui/react-tabster to v9.17.1 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
|
|
528
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.25 ([PR #30299](https://github.com/microsoft/fluentui/pull/30299) by beachball)
|
|
529
|
+
|
|
530
|
+
## [9.0.0-beta.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.101)
|
|
531
|
+
|
|
532
|
+
Thu, 11 Jan 2024 09:04:29 GMT
|
|
533
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.100..@fluentui/react-alert_v9.0.0-beta.101)
|
|
534
|
+
|
|
535
|
+
### Changes
|
|
536
|
+
|
|
537
|
+
- Bump @fluentui/react-avatar to v9.6.6 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball)
|
|
538
|
+
- Bump @fluentui/react-button to v9.3.62 ([PR #30259](https://github.com/microsoft/fluentui/pull/30259) by beachball)
|
|
539
|
+
|
|
540
|
+
## [9.0.0-beta.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.100)
|
|
541
|
+
|
|
542
|
+
Tue, 09 Jan 2024 10:21:34 GMT
|
|
543
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.99..@fluentui/react-alert_v9.0.0-beta.100)
|
|
544
|
+
|
|
545
|
+
### Changes
|
|
546
|
+
|
|
547
|
+
- Bump @fluentui/react-avatar to v9.6.5 ([PR #30217](https://github.com/microsoft/fluentui/pull/30217) by beachball)
|
|
548
|
+
|
|
549
|
+
## [9.0.0-beta.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.99)
|
|
550
|
+
|
|
551
|
+
Mon, 08 Jan 2024 16:24:19 GMT
|
|
552
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.98..@fluentui/react-alert_v9.0.0-beta.99)
|
|
553
|
+
|
|
554
|
+
### Changes
|
|
555
|
+
|
|
556
|
+
- Update version of @fluentui/react-icons to 2.0.224 ([PR #30078](https://github.com/microsoft/fluentui/pull/30078) by ololubek@microsoft.com)
|
|
557
|
+
- Bump @fluentui/react-avatar to v9.6.4 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
|
|
558
|
+
- Bump @fluentui/react-button to v9.3.61 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
|
|
559
|
+
- Bump @fluentui/react-tabster to v9.17.0 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
|
|
560
|
+
- Bump @fluentui/react-utilities to v9.15.6 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
|
|
561
|
+
- Bump @fluentui/react-jsx-runtime to v9.0.24 ([PR #30179](https://github.com/microsoft/fluentui/pull/30179) by beachball)
|
|
562
|
+
|
|
7
563
|
## [9.0.0-beta.98](https://github.com/microsoft/fluentui/tree/@fluentui/react-alert_v9.0.0-beta.98)
|
|
8
564
|
|
|
9
|
-
Wed, 03 Jan 2024 09:
|
|
565
|
+
Wed, 03 Jan 2024 09:26:44 GMT
|
|
10
566
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-alert_v9.0.0-beta.97..@fluentui/react-alert_v9.0.0-beta.98)
|
|
11
567
|
|
|
12
568
|
### Changes
|