@fluentui/react-button 9.0.0-rc.5 → 9.0.0-rc.8
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.json +196 -1
- package/CHANGELOG.md +221 -175
- package/dist/{react-button.d.ts → index.d.ts} +22 -3
- package/lib/components/Button/Button.types.d.ts +3 -1
- package/lib/components/Button/Button.types.js.map +1 -1
- package/lib/components/Button/index.d.ts +1 -1
- package/lib/components/Button/index.js +3 -1
- package/lib/components/Button/index.js.map +1 -1
- package/lib/components/Button/useButton.js +1 -0
- package/lib/components/Button/useButton.js.map +1 -1
- package/lib/components/Button/useButtonStyles.d.ts +3 -0
- package/lib/components/Button/useButtonStyles.js +103 -57
- package/lib/components/Button/useButtonStyles.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.d.ts +1 -1
- package/lib/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/index.js +3 -1
- package/lib/components/CompoundButton/index.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButton.js +7 -2
- package/lib/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +3 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.js +22 -10
- package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib/components/MenuButton/index.d.ts +1 -1
- package/lib/components/MenuButton/index.js +3 -1
- package/lib/components/MenuButton/index.js.map +1 -1
- package/lib/components/MenuButton/useMenuButtonStyles.d.ts +3 -0
- package/lib/components/MenuButton/useMenuButtonStyles.js +5 -2
- package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.types.d.ts +1 -1
- package/lib/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib/components/SplitButton/index.d.ts +1 -1
- package/lib/components/SplitButton/index.js +3 -1
- package/lib/components/SplitButton/index.js.map +1 -1
- package/lib/components/SplitButton/useSplitButton.js +1 -0
- package/lib/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButtonStyles.d.ts +3 -0
- package/lib/components/SplitButton/useSplitButtonStyles.js +17 -8
- package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib/components/ToggleButton/index.d.ts +1 -1
- package/lib/components/ToggleButton/index.js +3 -1
- package/lib/components/ToggleButton/index.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButton.d.ts +1 -1
- package/lib/components/ToggleButton/useToggleButton.js +3 -41
- package/lib/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +5 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.js +73 -60
- package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib/index.d.ts +11 -5
- package/lib/index.js +11 -5
- package/lib/index.js.map +1 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.js +2 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/useToggleState.d.ts +3 -0
- package/lib/utils/useToggleState.js +37 -0
- package/lib/utils/useToggleState.js.map +1 -0
- package/lib-commonjs/components/Button/Button.types.d.ts +3 -1
- package/lib-commonjs/components/Button/index.d.ts +1 -1
- package/lib-commonjs/components/Button/index.js +2 -0
- package/lib-commonjs/components/Button/index.js.map +1 -1
- package/lib-commonjs/components/Button/useButton.js +1 -0
- package/lib-commonjs/components/Button/useButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButtonStyles.d.ts +3 -0
- package/lib-commonjs/components/Button/useButtonStyles.js +104 -57
- package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/index.js +2 -0
- package/lib-commonjs/components/CompoundButton/index.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js +7 -2
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +3 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +22 -10
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib-commonjs/components/MenuButton/index.d.ts +1 -1
- package/lib-commonjs/components/MenuButton/index.js +2 -0
- package/lib-commonjs/components/MenuButton/index.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +3 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +5 -2
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +1 -1
- package/lib-commonjs/components/SplitButton/index.d.ts +1 -1
- package/lib-commonjs/components/SplitButton/index.js +2 -0
- package/lib-commonjs/components/SplitButton/index.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButton.js +1 -0
- package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +3 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +17 -8
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/index.d.ts +1 -1
- package/lib-commonjs/components/ToggleButton/index.js +2 -0
- package/lib-commonjs/components/ToggleButton/index.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButton.js +3 -42
- package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +5 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +77 -62
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib-commonjs/index.d.ts +11 -5
- package/lib-commonjs/index.js +204 -6
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/index.d.ts +1 -0
- package/lib-commonjs/utils/index.js +10 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/lib-commonjs/utils/useToggleState.d.ts +3 -0
- package/lib-commonjs/utils/useToggleState.js +48 -0
- package/lib-commonjs/utils/useToggleState.js.map +1 -0
- package/package.json +12 -22
- package/dist/demo/index.html +0 -71
- package/dist/demo/react-dom.development.js +0 -21413
- package/dist/demo/react.development.js +0 -3155
package/CHANGELOG.md
CHANGED
|
@@ -1,12 +1,58 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-button
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Wed, 04 May 2022 13:24:05 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
+
## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.8)
|
|
8
|
+
|
|
9
|
+
Wed, 04 May 2022 13:24:05 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.7..@fluentui/react-button_v9.0.0-rc.8)
|
|
11
|
+
|
|
12
|
+
### Changes
|
|
13
|
+
|
|
14
|
+
- Bump @fluentui/keyboard-keys to v9.0.0-rc.5 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
15
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
16
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
17
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
18
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
19
|
+
|
|
20
|
+
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.7)
|
|
21
|
+
|
|
22
|
+
Mon, 25 Apr 2022 09:32:16 GMT
|
|
23
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.6..@fluentui/react-button_v9.0.0-rc.7)
|
|
24
|
+
|
|
25
|
+
### Changes
|
|
26
|
+
|
|
27
|
+
- Adding useToggleState hook to scaffold toggleable behavior for individual consumption. ([PR #22279](https://github.com/microsoft/fluentui/pull/22279) by Humberto.Morimoto@microsoft.com)
|
|
28
|
+
- fix(Button): Text color in HC mode for hover, active and checked states. ([PR #22566](https://github.com/microsoft/fluentui/pull/22566) by jukapsia@microsoft.com)
|
|
29
|
+
- Button: Stop applying active styles when mouse moves away while it is being held and improving styles in High Contrast mode. ([PR #22574](https://github.com/microsoft/fluentui/pull/22574) by Humberto.Morimoto@microsoft.com)
|
|
30
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
|
|
31
|
+
|
|
32
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.6)
|
|
33
|
+
|
|
34
|
+
Tue, 19 Apr 2022 19:17:12 GMT
|
|
35
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.5..@fluentui/react-button_v9.0.0-rc.6)
|
|
36
|
+
|
|
37
|
+
### Changes
|
|
38
|
+
|
|
39
|
+
- Disabling lint rule for deprecated [component]ClassName exports. ([PR #22131](https://github.com/microsoft/fluentui/pull/22131) by Humberto.Morimoto@microsoft.com)
|
|
40
|
+
- Button: Deprecating block prop. ([PR #22148](https://github.com/microsoft/fluentui/pull/22148) by Humberto.Morimoto@microsoft.com)
|
|
41
|
+
- Button components: Making root a non-nullable slot. ([PR #22147](https://github.com/microsoft/fluentui/pull/22147) by Humberto.Morimoto@microsoft.com)
|
|
42
|
+
- CompoundButton: Fixing bug where component was iconOnly even when secondaryContent was being provided. ([PR #22107](https://github.com/microsoft/fluentui/pull/22107) by Humberto.Morimoto@microsoft.com)
|
|
43
|
+
- Removing star exports. ([PR #22111](https://github.com/microsoft/fluentui/pull/22111) by Humberto.Morimoto@microsoft.com)
|
|
44
|
+
- Add deprecation messages to react-button ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
|
|
45
|
+
- chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
|
|
46
|
+
- update react-icons version to ^2.0.166-rc.3 from ^2.0.159-beta.10 ([PR #22512](https://github.com/microsoft/fluentui/pull/22512) by seanmonahan@microsoft.com)
|
|
47
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
48
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
49
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
50
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
51
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
52
|
+
|
|
7
53
|
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.5)
|
|
8
54
|
|
|
9
|
-
Fri, 04 Mar 2022 05:
|
|
55
|
+
Fri, 04 Mar 2022 05:17:34 GMT
|
|
10
56
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.4..@fluentui/react-button_v9.0.0-rc.5)
|
|
11
57
|
|
|
12
58
|
### Changes
|
|
@@ -21,7 +67,7 @@ Fri, 04 Mar 2022 05:15:48 GMT
|
|
|
21
67
|
|
|
22
68
|
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.4)
|
|
23
69
|
|
|
24
|
-
Tue, 01 Mar 2022 02:17:35 GMT
|
|
70
|
+
Tue, 01 Mar 2022 02:17:35 GMT
|
|
25
71
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.3..@fluentui/react-button_v9.0.0-rc.4)
|
|
26
72
|
|
|
27
73
|
### Changes
|
|
@@ -33,7 +79,7 @@ Tue, 01 Mar 2022 02:17:35 GMT
|
|
|
33
79
|
|
|
34
80
|
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.3)
|
|
35
81
|
|
|
36
|
-
Fri, 18 Feb 2022 13:35:28 GMT
|
|
82
|
+
Fri, 18 Feb 2022 13:35:28 GMT
|
|
37
83
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.1..@fluentui/react-button_v9.0.0-rc.3)
|
|
38
84
|
|
|
39
85
|
### Changes
|
|
@@ -51,7 +97,7 @@ Fri, 18 Feb 2022 13:35:28 GMT
|
|
|
51
97
|
|
|
52
98
|
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.1)
|
|
53
99
|
|
|
54
|
-
Thu, 10 Feb 2022 08:51:46 GMT
|
|
100
|
+
Thu, 10 Feb 2022 08:51:46 GMT
|
|
55
101
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.5..@fluentui/react-button_v9.0.0-rc.1)
|
|
56
102
|
|
|
57
103
|
### Changes
|
|
@@ -60,7 +106,7 @@ Thu, 10 Feb 2022 08:51:46 GMT
|
|
|
60
106
|
- Button: Changing border radius of small button to borderRadiusMedium from borderRadiusSmall. ([PR #21494](https://github.com/microsoft/fluentui/pull/21494) by Humberto.Morimoto@microsoft.com)
|
|
61
107
|
- Replace make-styles packages with griffel equivalents. ([PR #21436](https://github.com/microsoft/fluentui/pull/21436) by olfedias@microsoft.com)
|
|
62
108
|
- Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
|
|
63
|
-
- BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
|
|
109
|
+
- BREAKING: Rename component hooks add the suffix \_unstable, as their API has not been finalized yet ([PR #21365](https://github.com/microsoft/fluentui/pull/21365) by behowell@microsoft.com)
|
|
64
110
|
- Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
|
|
65
111
|
- (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
|
|
66
112
|
- Replacing use of functions in makeStyles with direct use of tokens. ([PR #21039](https://github.com/microsoft/fluentui/pull/21039) by Humberto.Morimoto@microsoft.com)
|
|
@@ -84,7 +130,7 @@ Thu, 10 Feb 2022 08:51:46 GMT
|
|
|
84
130
|
|
|
85
131
|
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.5)
|
|
86
132
|
|
|
87
|
-
Thu, 25 Nov 2021 08:34:12 GMT
|
|
133
|
+
Thu, 25 Nov 2021 08:34:12 GMT
|
|
88
134
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.4..@fluentui/react-button_v9.0.0-beta.5)
|
|
89
135
|
|
|
90
136
|
### Changes
|
|
@@ -101,7 +147,7 @@ Thu, 25 Nov 2021 08:34:12 GMT
|
|
|
101
147
|
|
|
102
148
|
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.4)
|
|
103
149
|
|
|
104
|
-
Fri, 12 Nov 2021 13:25:16 GMT
|
|
150
|
+
Fri, 12 Nov 2021 13:25:16 GMT
|
|
105
151
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.3..@fluentui/react-button_v9.0.0-beta.4)
|
|
106
152
|
|
|
107
153
|
### Changes
|
|
@@ -121,7 +167,7 @@ Fri, 12 Nov 2021 13:25:16 GMT
|
|
|
121
167
|
|
|
122
168
|
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.3)
|
|
123
169
|
|
|
124
|
-
Wed, 27 Oct 2021 12:14:15 GMT
|
|
170
|
+
Wed, 27 Oct 2021 12:14:15 GMT
|
|
125
171
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.2..@fluentui/react-button_v9.0.0-beta.3)
|
|
126
172
|
|
|
127
173
|
### Changes
|
|
@@ -139,7 +185,7 @@ Wed, 27 Oct 2021 12:14:15 GMT
|
|
|
139
185
|
|
|
140
186
|
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.2)
|
|
141
187
|
|
|
142
|
-
Tue, 12 Oct 2021 19:45:58 GMT
|
|
188
|
+
Tue, 12 Oct 2021 19:45:58 GMT
|
|
143
189
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.1..@fluentui/react-button_v9.0.0-beta.2)
|
|
144
190
|
|
|
145
191
|
### Changes
|
|
@@ -149,7 +195,7 @@ Tue, 12 Oct 2021 19:45:58 GMT
|
|
|
149
195
|
|
|
150
196
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.1)
|
|
151
197
|
|
|
152
|
-
Wed, 06 Oct 2021 10:37:22 GMT
|
|
198
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
|
153
199
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.101..@fluentui/react-button_v9.0.0-beta.1)
|
|
154
200
|
|
|
155
201
|
### Changes
|
|
@@ -167,7 +213,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
|
|
|
167
213
|
|
|
168
214
|
## [9.0.0-alpha.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.101)
|
|
169
215
|
|
|
170
|
-
Tue, 05 Oct 2021 12:47:58 GMT
|
|
216
|
+
Tue, 05 Oct 2021 12:47:58 GMT
|
|
171
217
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.100..@fluentui/react-button_v9.0.0-alpha.101)
|
|
172
218
|
|
|
173
219
|
### Changes
|
|
@@ -182,7 +228,7 @@ Tue, 05 Oct 2021 12:47:58 GMT
|
|
|
182
228
|
|
|
183
229
|
## [9.0.0-alpha.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.100)
|
|
184
230
|
|
|
185
|
-
Tue, 05 Oct 2021 09:28:07 GMT
|
|
231
|
+
Tue, 05 Oct 2021 09:28:07 GMT
|
|
186
232
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.99..@fluentui/react-button_v9.0.0-alpha.100)
|
|
187
233
|
|
|
188
234
|
### Changes
|
|
@@ -199,7 +245,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
|
|
|
199
245
|
|
|
200
246
|
## [9.0.0-alpha.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.99)
|
|
201
247
|
|
|
202
|
-
Fri, 01 Oct 2021 14:13:08 GMT
|
|
248
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
|
203
249
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.97..@fluentui/react-button_v9.0.0-alpha.99)
|
|
204
250
|
|
|
205
251
|
### Changes
|
|
@@ -217,7 +263,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
|
|
|
217
263
|
|
|
218
264
|
## [9.0.0-alpha.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.97)
|
|
219
265
|
|
|
220
|
-
Fri, 01 Oct 2021 12:30:46 GMT
|
|
266
|
+
Fri, 01 Oct 2021 12:30:46 GMT
|
|
221
267
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.96..@fluentui/react-button_v9.0.0-alpha.97)
|
|
222
268
|
|
|
223
269
|
### Changes
|
|
@@ -228,7 +274,7 @@ Fri, 01 Oct 2021 12:30:46 GMT
|
|
|
228
274
|
|
|
229
275
|
## [9.0.0-alpha.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.96)
|
|
230
276
|
|
|
231
|
-
Fri, 01 Oct 2021 09:44:56 GMT
|
|
277
|
+
Fri, 01 Oct 2021 09:44:56 GMT
|
|
232
278
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.95..@fluentui/react-button_v9.0.0-alpha.96)
|
|
233
279
|
|
|
234
280
|
### Changes
|
|
@@ -239,7 +285,7 @@ Fri, 01 Oct 2021 09:44:56 GMT
|
|
|
239
285
|
|
|
240
286
|
## [9.0.0-alpha.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.95)
|
|
241
287
|
|
|
242
|
-
Thu, 30 Sep 2021 09:18:15 GMT
|
|
288
|
+
Thu, 30 Sep 2021 09:18:15 GMT
|
|
243
289
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.94..@fluentui/react-button_v9.0.0-alpha.95)
|
|
244
290
|
|
|
245
291
|
### Changes
|
|
@@ -248,7 +294,7 @@ Thu, 30 Sep 2021 09:18:15 GMT
|
|
|
248
294
|
|
|
249
295
|
## [9.0.0-alpha.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.94)
|
|
250
296
|
|
|
251
|
-
Wed, 29 Sep 2021 08:06:11 GMT
|
|
297
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
|
252
298
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.93..@fluentui/react-button_v9.0.0-alpha.94)
|
|
253
299
|
|
|
254
300
|
### Changes
|
|
@@ -262,7 +308,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
|
|
|
262
308
|
|
|
263
309
|
## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.93)
|
|
264
310
|
|
|
265
|
-
Mon, 27 Sep 2021 08:06:00 GMT
|
|
311
|
+
Mon, 27 Sep 2021 08:06:00 GMT
|
|
266
312
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.92..@fluentui/react-button_v9.0.0-alpha.93)
|
|
267
313
|
|
|
268
314
|
### Changes
|
|
@@ -277,7 +323,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
|
|
|
277
323
|
|
|
278
324
|
## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.92)
|
|
279
325
|
|
|
280
|
-
Fri, 24 Sep 2021 09:17:17 GMT
|
|
326
|
+
Fri, 24 Sep 2021 09:17:17 GMT
|
|
281
327
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.91..@fluentui/react-button_v9.0.0-alpha.92)
|
|
282
328
|
|
|
283
329
|
### Changes
|
|
@@ -292,7 +338,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
|
|
|
292
338
|
|
|
293
339
|
## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.91)
|
|
294
340
|
|
|
295
|
-
Thu, 23 Sep 2021 08:21:34 GMT
|
|
341
|
+
Thu, 23 Sep 2021 08:21:34 GMT
|
|
296
342
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.90..@fluentui/react-button_v9.0.0-alpha.91)
|
|
297
343
|
|
|
298
344
|
### Changes
|
|
@@ -308,7 +354,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
|
|
|
308
354
|
|
|
309
355
|
## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.90)
|
|
310
356
|
|
|
311
|
-
Wed, 22 Sep 2021 10:10:07 GMT
|
|
357
|
+
Wed, 22 Sep 2021 10:10:07 GMT
|
|
312
358
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.89..@fluentui/react-button_v9.0.0-alpha.90)
|
|
313
359
|
|
|
314
360
|
### Changes
|
|
@@ -325,7 +371,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
|
|
|
325
371
|
|
|
326
372
|
## [9.0.0-alpha.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.89)
|
|
327
373
|
|
|
328
|
-
Tue, 21 Sep 2021 07:42:34 GMT
|
|
374
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
|
329
375
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.88..@fluentui/react-button_v9.0.0-alpha.89)
|
|
330
376
|
|
|
331
377
|
### Changes
|
|
@@ -340,7 +386,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
|
|
|
340
386
|
|
|
341
387
|
## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.88)
|
|
342
388
|
|
|
343
|
-
Mon, 20 Sep 2021 07:36:26 GMT
|
|
389
|
+
Mon, 20 Sep 2021 07:36:26 GMT
|
|
344
390
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.87..@fluentui/react-button_v9.0.0-alpha.88)
|
|
345
391
|
|
|
346
392
|
### Changes
|
|
@@ -350,7 +396,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
|
|
|
350
396
|
|
|
351
397
|
## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.87)
|
|
352
398
|
|
|
353
|
-
Fri, 17 Sep 2021 07:35:26 GMT
|
|
399
|
+
Fri, 17 Sep 2021 07:35:26 GMT
|
|
354
400
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.86..@fluentui/react-button_v9.0.0-alpha.87)
|
|
355
401
|
|
|
356
402
|
### Changes
|
|
@@ -361,7 +407,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
|
|
|
361
407
|
|
|
362
408
|
## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.86)
|
|
363
409
|
|
|
364
|
-
Thu, 16 Sep 2021 07:38:39 GMT
|
|
410
|
+
Thu, 16 Sep 2021 07:38:39 GMT
|
|
365
411
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.85..@fluentui/react-button_v9.0.0-alpha.86)
|
|
366
412
|
|
|
367
413
|
### Changes
|
|
@@ -370,7 +416,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
|
|
|
370
416
|
|
|
371
417
|
## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.85)
|
|
372
418
|
|
|
373
|
-
Tue, 14 Sep 2021 20:09:02 GMT
|
|
419
|
+
Tue, 14 Sep 2021 20:09:02 GMT
|
|
374
420
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.84..@fluentui/react-button_v9.0.0-alpha.85)
|
|
375
421
|
|
|
376
422
|
### Changes
|
|
@@ -379,7 +425,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
|
|
|
379
425
|
|
|
380
426
|
## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.84)
|
|
381
427
|
|
|
382
|
-
Fri, 10 Sep 2021 16:31:53 GMT
|
|
428
|
+
Fri, 10 Sep 2021 16:31:53 GMT
|
|
383
429
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.83..@fluentui/react-button_v9.0.0-alpha.84)
|
|
384
430
|
|
|
385
431
|
### Changes
|
|
@@ -389,7 +435,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
|
|
|
389
435
|
|
|
390
436
|
## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.83)
|
|
391
437
|
|
|
392
|
-
Fri, 10 Sep 2021 07:39:51 GMT
|
|
438
|
+
Fri, 10 Sep 2021 07:39:51 GMT
|
|
393
439
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.82..@fluentui/react-button_v9.0.0-alpha.83)
|
|
394
440
|
|
|
395
441
|
### Changes
|
|
@@ -398,7 +444,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
|
|
|
398
444
|
|
|
399
445
|
## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.82)
|
|
400
446
|
|
|
401
|
-
Wed, 08 Sep 2021 07:34:11 GMT
|
|
447
|
+
Wed, 08 Sep 2021 07:34:11 GMT
|
|
402
448
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.81..@fluentui/react-button_v9.0.0-alpha.82)
|
|
403
449
|
|
|
404
450
|
### Changes
|
|
@@ -407,7 +453,7 @@ Wed, 08 Sep 2021 07:34:11 GMT
|
|
|
407
453
|
|
|
408
454
|
## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.81)
|
|
409
455
|
|
|
410
|
-
Mon, 06 Sep 2021 07:34:53 GMT
|
|
456
|
+
Mon, 06 Sep 2021 07:34:53 GMT
|
|
411
457
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.80..@fluentui/react-button_v9.0.0-alpha.81)
|
|
412
458
|
|
|
413
459
|
### Changes
|
|
@@ -416,7 +462,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
|
|
|
416
462
|
|
|
417
463
|
## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.80)
|
|
418
464
|
|
|
419
|
-
Fri, 03 Sep 2021 00:13:07 GMT
|
|
465
|
+
Fri, 03 Sep 2021 00:13:07 GMT
|
|
420
466
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.79..@fluentui/react-button_v9.0.0-alpha.80)
|
|
421
467
|
|
|
422
468
|
### Changes
|
|
@@ -425,7 +471,7 @@ Fri, 03 Sep 2021 00:13:07 GMT
|
|
|
425
471
|
|
|
426
472
|
## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.79)
|
|
427
473
|
|
|
428
|
-
Thu, 02 Sep 2021 07:36:46 GMT
|
|
474
|
+
Thu, 02 Sep 2021 07:36:46 GMT
|
|
429
475
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.78..@fluentui/react-button_v9.0.0-alpha.79)
|
|
430
476
|
|
|
431
477
|
### Patches
|
|
@@ -438,7 +484,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
|
|
|
438
484
|
|
|
439
485
|
## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.78)
|
|
440
486
|
|
|
441
|
-
Wed, 01 Sep 2021 07:39:56 GMT
|
|
487
|
+
Wed, 01 Sep 2021 07:39:56 GMT
|
|
442
488
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.77..@fluentui/react-button_v9.0.0-alpha.78)
|
|
443
489
|
|
|
444
490
|
### Changes
|
|
@@ -447,7 +493,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
|
|
|
447
493
|
|
|
448
494
|
## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.77)
|
|
449
495
|
|
|
450
|
-
Tue, 31 Aug 2021 07:37:47 GMT
|
|
496
|
+
Tue, 31 Aug 2021 07:37:47 GMT
|
|
451
497
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.76..@fluentui/react-button_v9.0.0-alpha.77)
|
|
452
498
|
|
|
453
499
|
### Changes
|
|
@@ -456,7 +502,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
|
|
|
456
502
|
|
|
457
503
|
## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.76)
|
|
458
504
|
|
|
459
|
-
Mon, 30 Aug 2021 07:35:05 GMT
|
|
505
|
+
Mon, 30 Aug 2021 07:35:05 GMT
|
|
460
506
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.75..@fluentui/react-button_v9.0.0-alpha.76)
|
|
461
507
|
|
|
462
508
|
### Changes
|
|
@@ -465,7 +511,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
|
|
|
465
511
|
|
|
466
512
|
## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.75)
|
|
467
513
|
|
|
468
|
-
Fri, 27 Aug 2021 07:33:32 GMT
|
|
514
|
+
Fri, 27 Aug 2021 07:33:32 GMT
|
|
469
515
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.74..@fluentui/react-button_v9.0.0-alpha.75)
|
|
470
516
|
|
|
471
517
|
### Changes
|
|
@@ -474,7 +520,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
|
|
|
474
520
|
|
|
475
521
|
## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.74)
|
|
476
522
|
|
|
477
|
-
Thu, 26 Aug 2021 07:35:43 GMT
|
|
523
|
+
Thu, 26 Aug 2021 07:35:43 GMT
|
|
478
524
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.73..@fluentui/react-button_v9.0.0-alpha.74)
|
|
479
525
|
|
|
480
526
|
### Changes
|
|
@@ -483,7 +529,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
|
|
|
483
529
|
|
|
484
530
|
## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.73)
|
|
485
531
|
|
|
486
|
-
Fri, 20 Aug 2021 07:37:28 GMT
|
|
532
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
|
487
533
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.72..@fluentui/react-button_v9.0.0-alpha.73)
|
|
488
534
|
|
|
489
535
|
### Changes
|
|
@@ -492,7 +538,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
|
|
|
492
538
|
|
|
493
539
|
## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.72)
|
|
494
540
|
|
|
495
|
-
Thu, 19 Aug 2021 07:41:35 GMT
|
|
541
|
+
Thu, 19 Aug 2021 07:41:35 GMT
|
|
496
542
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.71..@fluentui/react-button_v9.0.0-alpha.72)
|
|
497
543
|
|
|
498
544
|
### Changes
|
|
@@ -501,7 +547,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
|
|
|
501
547
|
|
|
502
548
|
## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.71)
|
|
503
549
|
|
|
504
|
-
Wed, 18 Aug 2021 07:33:54 GMT
|
|
550
|
+
Wed, 18 Aug 2021 07:33:54 GMT
|
|
505
551
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.70..@fluentui/react-button_v9.0.0-alpha.71)
|
|
506
552
|
|
|
507
553
|
### Changes
|
|
@@ -510,7 +556,7 @@ Wed, 18 Aug 2021 07:33:54 GMT
|
|
|
510
556
|
|
|
511
557
|
## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.70)
|
|
512
558
|
|
|
513
|
-
Fri, 13 Aug 2021 07:36:34 GMT
|
|
559
|
+
Fri, 13 Aug 2021 07:36:34 GMT
|
|
514
560
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.69..@fluentui/react-button_v9.0.0-alpha.70)
|
|
515
561
|
|
|
516
562
|
### Changes
|
|
@@ -519,7 +565,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
|
|
|
519
565
|
|
|
520
566
|
## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.69)
|
|
521
567
|
|
|
522
|
-
Wed, 11 Aug 2021 07:34:54 GMT
|
|
568
|
+
Wed, 11 Aug 2021 07:34:54 GMT
|
|
523
569
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.68..@fluentui/react-button_v9.0.0-alpha.69)
|
|
524
570
|
|
|
525
571
|
### Changes
|
|
@@ -528,7 +574,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
|
|
|
528
574
|
|
|
529
575
|
## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.68)
|
|
530
576
|
|
|
531
|
-
Fri, 06 Aug 2021 07:35:14 GMT
|
|
577
|
+
Fri, 06 Aug 2021 07:35:14 GMT
|
|
532
578
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.67..@fluentui/react-button_v9.0.0-alpha.68)
|
|
533
579
|
|
|
534
580
|
### Changes
|
|
@@ -537,7 +583,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
|
|
|
537
583
|
|
|
538
584
|
## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.67)
|
|
539
585
|
|
|
540
|
-
Tue, 03 Aug 2021 07:39:30 GMT
|
|
586
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
|
541
587
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.66..@fluentui/react-button_v9.0.0-alpha.67)
|
|
542
588
|
|
|
543
589
|
### Patches
|
|
@@ -550,7 +596,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
|
|
|
550
596
|
|
|
551
597
|
## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.66)
|
|
552
598
|
|
|
553
|
-
Mon, 02 Aug 2021 07:36:20 GMT
|
|
599
|
+
Mon, 02 Aug 2021 07:36:20 GMT
|
|
554
600
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.65..@fluentui/react-button_v9.0.0-alpha.66)
|
|
555
601
|
|
|
556
602
|
### Changes
|
|
@@ -559,7 +605,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
|
|
|
559
605
|
|
|
560
606
|
## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.65)
|
|
561
607
|
|
|
562
|
-
Mon, 26 Jul 2021 07:37:30 GMT
|
|
608
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
|
563
609
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.64..@fluentui/react-button_v9.0.0-alpha.65)
|
|
564
610
|
|
|
565
611
|
### Changes
|
|
@@ -568,7 +614,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
|
|
|
568
614
|
|
|
569
615
|
## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.64)
|
|
570
616
|
|
|
571
|
-
Fri, 23 Jul 2021 07:38:19 GMT
|
|
617
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
|
572
618
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.63..@fluentui/react-button_v9.0.0-alpha.64)
|
|
573
619
|
|
|
574
620
|
### Changes
|
|
@@ -579,7 +625,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
|
|
|
579
625
|
|
|
580
626
|
## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.63)
|
|
581
627
|
|
|
582
|
-
Thu, 22 Jul 2021 07:36:55 GMT
|
|
628
|
+
Thu, 22 Jul 2021 07:36:55 GMT
|
|
583
629
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.62..@fluentui/react-button_v9.0.0-alpha.63)
|
|
584
630
|
|
|
585
631
|
### Changes
|
|
@@ -588,7 +634,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
|
|
|
588
634
|
|
|
589
635
|
## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.62)
|
|
590
636
|
|
|
591
|
-
Tue, 20 Jul 2021 22:23:17 GMT
|
|
637
|
+
Tue, 20 Jul 2021 22:23:17 GMT
|
|
592
638
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.61..@fluentui/react-button_v9.0.0-alpha.62)
|
|
593
639
|
|
|
594
640
|
### Changes
|
|
@@ -597,7 +643,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
|
|
|
597
643
|
|
|
598
644
|
## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.61)
|
|
599
645
|
|
|
600
|
-
Fri, 16 Jul 2021 22:53:17 GMT
|
|
646
|
+
Fri, 16 Jul 2021 22:53:17 GMT
|
|
601
647
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.60..@fluentui/react-button_v9.0.0-alpha.61)
|
|
602
648
|
|
|
603
649
|
### Changes
|
|
@@ -606,7 +652,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
|
|
|
606
652
|
|
|
607
653
|
## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.60)
|
|
608
654
|
|
|
609
|
-
Thu, 15 Jul 2021 07:36:18 GMT
|
|
655
|
+
Thu, 15 Jul 2021 07:36:18 GMT
|
|
610
656
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.59..@fluentui/react-button_v9.0.0-alpha.60)
|
|
611
657
|
|
|
612
658
|
### Changes
|
|
@@ -615,7 +661,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
|
|
|
615
661
|
|
|
616
662
|
## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.59)
|
|
617
663
|
|
|
618
|
-
Tue, 13 Jul 2021 22:32:58 GMT
|
|
664
|
+
Tue, 13 Jul 2021 22:32:58 GMT
|
|
619
665
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.58..@fluentui/react-button_v9.0.0-alpha.59)
|
|
620
666
|
|
|
621
667
|
### Patches
|
|
@@ -624,7 +670,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
|
|
|
624
670
|
|
|
625
671
|
## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.58)
|
|
626
672
|
|
|
627
|
-
Tue, 13 Jul 2021 07:35:36 GMT
|
|
673
|
+
Tue, 13 Jul 2021 07:35:36 GMT
|
|
628
674
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.57..@fluentui/react-button_v9.0.0-alpha.58)
|
|
629
675
|
|
|
630
676
|
### Changes
|
|
@@ -633,7 +679,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
|
|
|
633
679
|
|
|
634
680
|
## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.57)
|
|
635
681
|
|
|
636
|
-
Mon, 12 Jul 2021 07:33:23 GMT
|
|
682
|
+
Mon, 12 Jul 2021 07:33:23 GMT
|
|
637
683
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.56..@fluentui/react-button_v9.0.0-alpha.57)
|
|
638
684
|
|
|
639
685
|
### Changes
|
|
@@ -642,7 +688,7 @@ Mon, 12 Jul 2021 07:33:23 GMT
|
|
|
642
688
|
|
|
643
689
|
## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.56)
|
|
644
690
|
|
|
645
|
-
Fri, 09 Jul 2021 07:39:31 GMT
|
|
691
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
|
646
692
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.55..@fluentui/react-button_v9.0.0-alpha.56)
|
|
647
693
|
|
|
648
694
|
### Patches
|
|
@@ -655,7 +701,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
|
|
|
655
701
|
|
|
656
702
|
## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.55)
|
|
657
703
|
|
|
658
|
-
Fri, 02 Jul 2021 23:15:55 GMT
|
|
704
|
+
Fri, 02 Jul 2021 23:15:55 GMT
|
|
659
705
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.54..@fluentui/react-button_v9.0.0-alpha.55)
|
|
660
706
|
|
|
661
707
|
### Changes
|
|
@@ -664,7 +710,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
|
|
|
664
710
|
|
|
665
711
|
## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.54)
|
|
666
712
|
|
|
667
|
-
Fri, 02 Jul 2021 07:37:06 GMT
|
|
713
|
+
Fri, 02 Jul 2021 07:37:06 GMT
|
|
668
714
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.53..@fluentui/react-button_v9.0.0-alpha.54)
|
|
669
715
|
|
|
670
716
|
### Changes
|
|
@@ -673,7 +719,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
|
|
|
673
719
|
|
|
674
720
|
## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.53)
|
|
675
721
|
|
|
676
|
-
Thu, 01 Jul 2021 07:35:05 GMT
|
|
722
|
+
Thu, 01 Jul 2021 07:35:05 GMT
|
|
677
723
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.52..@fluentui/react-button_v9.0.0-alpha.53)
|
|
678
724
|
|
|
679
725
|
### Changes
|
|
@@ -682,7 +728,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
|
|
|
682
728
|
|
|
683
729
|
## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.52)
|
|
684
730
|
|
|
685
|
-
Wed, 30 Jun 2021 07:38:35 GMT
|
|
731
|
+
Wed, 30 Jun 2021 07:38:35 GMT
|
|
686
732
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.51..@fluentui/react-button_v9.0.0-alpha.52)
|
|
687
733
|
|
|
688
734
|
### Changes
|
|
@@ -691,7 +737,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
|
|
|
691
737
|
|
|
692
738
|
## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.51)
|
|
693
739
|
|
|
694
|
-
Tue, 29 Jun 2021 07:33:32 GMT
|
|
740
|
+
Tue, 29 Jun 2021 07:33:32 GMT
|
|
695
741
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.50..@fluentui/react-button_v9.0.0-alpha.51)
|
|
696
742
|
|
|
697
743
|
### Changes
|
|
@@ -700,7 +746,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
|
|
|
700
746
|
|
|
701
747
|
## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.50)
|
|
702
748
|
|
|
703
|
-
Wed, 23 Jun 2021 07:31:49 GMT
|
|
749
|
+
Wed, 23 Jun 2021 07:31:49 GMT
|
|
704
750
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.49..@fluentui/react-button_v9.0.0-alpha.50)
|
|
705
751
|
|
|
706
752
|
### Changes
|
|
@@ -709,7 +755,7 @@ Wed, 23 Jun 2021 07:31:49 GMT
|
|
|
709
755
|
|
|
710
756
|
## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.49)
|
|
711
757
|
|
|
712
|
-
Tue, 22 Jun 2021 07:35:11 GMT
|
|
758
|
+
Tue, 22 Jun 2021 07:35:11 GMT
|
|
713
759
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.48..@fluentui/react-button_v9.0.0-alpha.49)
|
|
714
760
|
|
|
715
761
|
### Changes
|
|
@@ -718,7 +764,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
|
|
|
718
764
|
|
|
719
765
|
## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.48)
|
|
720
766
|
|
|
721
|
-
Tue, 15 Jun 2021 07:40:20 GMT
|
|
767
|
+
Tue, 15 Jun 2021 07:40:20 GMT
|
|
722
768
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.47..@fluentui/react-button_v9.0.0-alpha.48)
|
|
723
769
|
|
|
724
770
|
### Changes
|
|
@@ -727,7 +773,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
|
|
|
727
773
|
|
|
728
774
|
## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.47)
|
|
729
775
|
|
|
730
|
-
Fri, 11 Jun 2021 07:34:26 GMT
|
|
776
|
+
Fri, 11 Jun 2021 07:34:26 GMT
|
|
731
777
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.46..@fluentui/react-button_v9.0.0-alpha.47)
|
|
732
778
|
|
|
733
779
|
### Changes
|
|
@@ -738,7 +784,7 @@ Fri, 11 Jun 2021 07:34:26 GMT
|
|
|
738
784
|
|
|
739
785
|
## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.46)
|
|
740
786
|
|
|
741
|
-
Thu, 10 Jun 2021 07:32:59 GMT
|
|
787
|
+
Thu, 10 Jun 2021 07:32:59 GMT
|
|
742
788
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.45..@fluentui/react-button_v9.0.0-alpha.46)
|
|
743
789
|
|
|
744
790
|
### Changes
|
|
@@ -747,7 +793,7 @@ Thu, 10 Jun 2021 07:32:59 GMT
|
|
|
747
793
|
|
|
748
794
|
## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.45)
|
|
749
795
|
|
|
750
|
-
Wed, 09 Jun 2021 07:33:38 GMT
|
|
796
|
+
Wed, 09 Jun 2021 07:33:38 GMT
|
|
751
797
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.44..@fluentui/react-button_v9.0.0-alpha.45)
|
|
752
798
|
|
|
753
799
|
### Changes
|
|
@@ -756,7 +802,7 @@ Wed, 09 Jun 2021 07:33:38 GMT
|
|
|
756
802
|
|
|
757
803
|
## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.44)
|
|
758
804
|
|
|
759
|
-
Mon, 07 Jun 2021 07:38:15 GMT
|
|
805
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
|
760
806
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.43..@fluentui/react-button_v9.0.0-alpha.44)
|
|
761
807
|
|
|
762
808
|
### Patches
|
|
@@ -769,7 +815,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
|
|
|
769
815
|
|
|
770
816
|
## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.43)
|
|
771
817
|
|
|
772
|
-
Fri, 04 Jun 2021 07:37:23 GMT
|
|
818
|
+
Fri, 04 Jun 2021 07:37:23 GMT
|
|
773
819
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.42..@fluentui/react-button_v9.0.0-alpha.43)
|
|
774
820
|
|
|
775
821
|
### Changes
|
|
@@ -778,7 +824,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
|
|
|
778
824
|
|
|
779
825
|
## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.42)
|
|
780
826
|
|
|
781
|
-
Thu, 03 Jun 2021 07:36:03 GMT
|
|
827
|
+
Thu, 03 Jun 2021 07:36:03 GMT
|
|
782
828
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.41..@fluentui/react-button_v9.0.0-alpha.42)
|
|
783
829
|
|
|
784
830
|
### Changes
|
|
@@ -787,7 +833,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
|
|
|
787
833
|
|
|
788
834
|
## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.41)
|
|
789
835
|
|
|
790
|
-
Wed, 02 Jun 2021 07:37:15 GMT
|
|
836
|
+
Wed, 02 Jun 2021 07:37:15 GMT
|
|
791
837
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.40..@fluentui/react-button_v9.0.0-alpha.41)
|
|
792
838
|
|
|
793
839
|
### Changes
|
|
@@ -796,7 +842,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
|
|
|
796
842
|
|
|
797
843
|
## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.40)
|
|
798
844
|
|
|
799
|
-
Wed, 26 May 2021 07:35:43 GMT
|
|
845
|
+
Wed, 26 May 2021 07:35:43 GMT
|
|
800
846
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.39..@fluentui/react-button_v9.0.0-alpha.40)
|
|
801
847
|
|
|
802
848
|
### Changes
|
|
@@ -805,7 +851,7 @@ Wed, 26 May 2021 07:35:43 GMT
|
|
|
805
851
|
|
|
806
852
|
## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.39)
|
|
807
853
|
|
|
808
|
-
Fri, 21 May 2021 07:34:54 GMT
|
|
854
|
+
Fri, 21 May 2021 07:34:54 GMT
|
|
809
855
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.38..@fluentui/react-button_v9.0.0-alpha.39)
|
|
810
856
|
|
|
811
857
|
### Changes
|
|
@@ -814,7 +860,7 @@ Fri, 21 May 2021 07:34:54 GMT
|
|
|
814
860
|
|
|
815
861
|
## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.38)
|
|
816
862
|
|
|
817
|
-
Thu, 20 May 2021 07:41:54 GMT
|
|
863
|
+
Thu, 20 May 2021 07:41:54 GMT
|
|
818
864
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.37..@fluentui/react-button_v9.0.0-alpha.38)
|
|
819
865
|
|
|
820
866
|
### Patches
|
|
@@ -827,7 +873,7 @@ Thu, 20 May 2021 07:41:54 GMT
|
|
|
827
873
|
|
|
828
874
|
## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.37)
|
|
829
875
|
|
|
830
|
-
Wed, 19 May 2021 07:34:20 GMT
|
|
876
|
+
Wed, 19 May 2021 07:34:20 GMT
|
|
831
877
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.36..@fluentui/react-button_v9.0.0-alpha.37)
|
|
832
878
|
|
|
833
879
|
### Patches
|
|
@@ -840,7 +886,7 @@ Wed, 19 May 2021 07:34:20 GMT
|
|
|
840
886
|
|
|
841
887
|
## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.36)
|
|
842
888
|
|
|
843
|
-
Tue, 18 May 2021 07:34:38 GMT
|
|
889
|
+
Tue, 18 May 2021 07:34:38 GMT
|
|
844
890
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.35..@fluentui/react-button_v9.0.0-alpha.36)
|
|
845
891
|
|
|
846
892
|
### Changes
|
|
@@ -849,7 +895,7 @@ Tue, 18 May 2021 07:34:38 GMT
|
|
|
849
895
|
|
|
850
896
|
## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.35)
|
|
851
897
|
|
|
852
|
-
Thu, 13 May 2021 07:36:55 GMT
|
|
898
|
+
Thu, 13 May 2021 07:36:55 GMT
|
|
853
899
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.34..@fluentui/react-button_v9.0.0-alpha.35)
|
|
854
900
|
|
|
855
901
|
### Changes
|
|
@@ -858,7 +904,7 @@ Thu, 13 May 2021 07:36:55 GMT
|
|
|
858
904
|
|
|
859
905
|
## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.34)
|
|
860
906
|
|
|
861
|
-
Wed, 12 May 2021 07:36:20 GMT
|
|
907
|
+
Wed, 12 May 2021 07:36:20 GMT
|
|
862
908
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.33..@fluentui/react-button_v9.0.0-alpha.34)
|
|
863
909
|
|
|
864
910
|
### Changes
|
|
@@ -867,7 +913,7 @@ Wed, 12 May 2021 07:36:20 GMT
|
|
|
867
913
|
|
|
868
914
|
## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.33)
|
|
869
915
|
|
|
870
|
-
Mon, 10 May 2021 07:36:07 GMT
|
|
916
|
+
Mon, 10 May 2021 07:36:07 GMT
|
|
871
917
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.32..@fluentui/react-button_v9.0.0-alpha.33)
|
|
872
918
|
|
|
873
919
|
### Changes
|
|
@@ -876,7 +922,7 @@ Mon, 10 May 2021 07:36:07 GMT
|
|
|
876
922
|
|
|
877
923
|
## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.32)
|
|
878
924
|
|
|
879
|
-
Wed, 05 May 2021 07:36:50 GMT
|
|
925
|
+
Wed, 05 May 2021 07:36:50 GMT
|
|
880
926
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.31..@fluentui/react-button_v9.0.0-alpha.32)
|
|
881
927
|
|
|
882
928
|
### Changes
|
|
@@ -885,7 +931,7 @@ Wed, 05 May 2021 07:36:50 GMT
|
|
|
885
931
|
|
|
886
932
|
## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.31)
|
|
887
933
|
|
|
888
|
-
Mon, 03 May 2021 07:45:19 GMT
|
|
934
|
+
Mon, 03 May 2021 07:45:19 GMT
|
|
889
935
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.30..@fluentui/react-button_v9.0.0-alpha.31)
|
|
890
936
|
|
|
891
937
|
### Changes
|
|
@@ -894,7 +940,7 @@ Mon, 03 May 2021 07:45:19 GMT
|
|
|
894
940
|
|
|
895
941
|
## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.30)
|
|
896
942
|
|
|
897
|
-
Fri, 30 Apr 2021 07:42:23 GMT
|
|
943
|
+
Fri, 30 Apr 2021 07:42:23 GMT
|
|
898
944
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.29..@fluentui/react-button_v9.0.0-alpha.30)
|
|
899
945
|
|
|
900
946
|
### Patches
|
|
@@ -911,7 +957,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
|
|
|
911
957
|
|
|
912
958
|
## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.29)
|
|
913
959
|
|
|
914
|
-
Tue, 27 Apr 2021 07:34:03 GMT
|
|
960
|
+
Tue, 27 Apr 2021 07:34:03 GMT
|
|
915
961
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.28..@fluentui/react-button_v9.0.0-alpha.29)
|
|
916
962
|
|
|
917
963
|
### Changes
|
|
@@ -920,7 +966,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
|
|
|
920
966
|
|
|
921
967
|
## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.28)
|
|
922
968
|
|
|
923
|
-
Mon, 26 Apr 2021 07:34:31 GMT
|
|
969
|
+
Mon, 26 Apr 2021 07:34:31 GMT
|
|
924
970
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.27..@fluentui/react-button_v9.0.0-alpha.28)
|
|
925
971
|
|
|
926
972
|
### Changes
|
|
@@ -929,7 +975,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
|
|
|
929
975
|
|
|
930
976
|
## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.27)
|
|
931
977
|
|
|
932
|
-
Fri, 23 Apr 2021 07:37:10 GMT
|
|
978
|
+
Fri, 23 Apr 2021 07:37:10 GMT
|
|
933
979
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.26..@fluentui/react-button_v9.0.0-alpha.27)
|
|
934
980
|
|
|
935
981
|
### Patches
|
|
@@ -942,7 +988,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
|
|
|
942
988
|
|
|
943
989
|
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.26)
|
|
944
990
|
|
|
945
|
-
Thu, 22 Apr 2021 07:33:28 GMT
|
|
991
|
+
Thu, 22 Apr 2021 07:33:28 GMT
|
|
946
992
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.25..@fluentui/react-button_v9.0.0-alpha.26)
|
|
947
993
|
|
|
948
994
|
### Changes
|
|
@@ -951,7 +997,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
|
|
|
951
997
|
|
|
952
998
|
## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.25)
|
|
953
999
|
|
|
954
|
-
Wed, 21 Apr 2021 07:31:50 GMT
|
|
1000
|
+
Wed, 21 Apr 2021 07:31:50 GMT
|
|
955
1001
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.24..@fluentui/react-button_v9.0.0-alpha.25)
|
|
956
1002
|
|
|
957
1003
|
### Changes
|
|
@@ -960,7 +1006,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
|
|
|
960
1006
|
|
|
961
1007
|
## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.24)
|
|
962
1008
|
|
|
963
|
-
Tue, 20 Apr 2021 07:31:35 GMT
|
|
1009
|
+
Tue, 20 Apr 2021 07:31:35 GMT
|
|
964
1010
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.23..@fluentui/react-button_v9.0.0-alpha.24)
|
|
965
1011
|
|
|
966
1012
|
### Changes
|
|
@@ -969,7 +1015,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
|
|
|
969
1015
|
|
|
970
1016
|
## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.23)
|
|
971
1017
|
|
|
972
|
-
Fri, 16 Apr 2021 18:08:21 GMT
|
|
1018
|
+
Fri, 16 Apr 2021 18:08:21 GMT
|
|
973
1019
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.22..@fluentui/react-button_v9.0.0-alpha.23)
|
|
974
1020
|
|
|
975
1021
|
### Changes
|
|
@@ -978,7 +1024,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
|
|
|
978
1024
|
|
|
979
1025
|
## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.22)
|
|
980
1026
|
|
|
981
|
-
Wed, 14 Apr 2021 07:34:12 GMT
|
|
1027
|
+
Wed, 14 Apr 2021 07:34:12 GMT
|
|
982
1028
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.21..@fluentui/react-button_v9.0.0-alpha.22)
|
|
983
1029
|
|
|
984
1030
|
### Changes
|
|
@@ -987,7 +1033,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
|
|
|
987
1033
|
|
|
988
1034
|
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.21)
|
|
989
1035
|
|
|
990
|
-
Fri, 09 Apr 2021 07:31:06 GMT
|
|
1036
|
+
Fri, 09 Apr 2021 07:31:06 GMT
|
|
991
1037
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.20..@fluentui/react-button_v9.0.0-alpha.21)
|
|
992
1038
|
|
|
993
1039
|
### Changes
|
|
@@ -996,7 +1042,7 @@ Fri, 09 Apr 2021 07:31:06 GMT
|
|
|
996
1042
|
|
|
997
1043
|
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.20)
|
|
998
1044
|
|
|
999
|
-
Thu, 08 Apr 2021 07:33:06 GMT
|
|
1045
|
+
Thu, 08 Apr 2021 07:33:06 GMT
|
|
1000
1046
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.19..@fluentui/react-button_v9.0.0-alpha.20)
|
|
1001
1047
|
|
|
1002
1048
|
### Changes
|
|
@@ -1005,7 +1051,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
|
|
|
1005
1051
|
|
|
1006
1052
|
## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.19)
|
|
1007
1053
|
|
|
1008
|
-
Thu, 01 Apr 2021 20:13:37 GMT
|
|
1054
|
+
Thu, 01 Apr 2021 20:13:37 GMT
|
|
1009
1055
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.18..@fluentui/react-button_v9.0.0-alpha.19)
|
|
1010
1056
|
|
|
1011
1057
|
### Changes
|
|
@@ -1014,7 +1060,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
|
|
|
1014
1060
|
|
|
1015
1061
|
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.18)
|
|
1016
1062
|
|
|
1017
|
-
Wed, 31 Mar 2021 00:53:43 GMT
|
|
1063
|
+
Wed, 31 Mar 2021 00:53:43 GMT
|
|
1018
1064
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.17..@fluentui/react-button_v9.0.0-alpha.18)
|
|
1019
1065
|
|
|
1020
1066
|
### Patches
|
|
@@ -1031,7 +1077,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
|
|
|
1031
1077
|
|
|
1032
1078
|
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.17)
|
|
1033
1079
|
|
|
1034
|
-
Tue, 30 Mar 2021 07:34:45 GMT
|
|
1080
|
+
Tue, 30 Mar 2021 07:34:45 GMT
|
|
1035
1081
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.16..@fluentui/react-button_v9.0.0-alpha.17)
|
|
1036
1082
|
|
|
1037
1083
|
### Patches
|
|
@@ -1044,7 +1090,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
|
|
|
1044
1090
|
|
|
1045
1091
|
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.16)
|
|
1046
1092
|
|
|
1047
|
-
Fri, 26 Mar 2021 07:32:34 GMT
|
|
1093
|
+
Fri, 26 Mar 2021 07:32:34 GMT
|
|
1048
1094
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.15..@fluentui/react-button_v9.0.0-alpha.16)
|
|
1049
1095
|
|
|
1050
1096
|
### Changes
|
|
@@ -1054,7 +1100,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
|
|
|
1054
1100
|
|
|
1055
1101
|
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.15)
|
|
1056
1102
|
|
|
1057
|
-
Thu, 25 Mar 2021 07:33:24 GMT
|
|
1103
|
+
Thu, 25 Mar 2021 07:33:24 GMT
|
|
1058
1104
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.14..@fluentui/react-button_v9.0.0-alpha.15)
|
|
1059
1105
|
|
|
1060
1106
|
### Changes
|
|
@@ -1064,7 +1110,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
|
|
|
1064
1110
|
|
|
1065
1111
|
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.14)
|
|
1066
1112
|
|
|
1067
|
-
Tue, 23 Mar 2021 07:31:43 GMT
|
|
1113
|
+
Tue, 23 Mar 2021 07:31:43 GMT
|
|
1068
1114
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.13..@fluentui/react-button_v9.0.0-alpha.14)
|
|
1069
1115
|
|
|
1070
1116
|
### Changes
|
|
@@ -1073,7 +1119,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
|
|
|
1073
1119
|
|
|
1074
1120
|
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.13)
|
|
1075
1121
|
|
|
1076
|
-
Thu, 18 Mar 2021 20:15:34 GMT
|
|
1122
|
+
Thu, 18 Mar 2021 20:15:34 GMT
|
|
1077
1123
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.12..@fluentui/react-button_v9.0.0-alpha.13)
|
|
1078
1124
|
|
|
1079
1125
|
### Changes
|
|
@@ -1082,7 +1128,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
|
|
|
1082
1128
|
|
|
1083
1129
|
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.12)
|
|
1084
1130
|
|
|
1085
|
-
Wed, 17 Mar 2021 07:35:44 GMT
|
|
1131
|
+
Wed, 17 Mar 2021 07:35:44 GMT
|
|
1086
1132
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.11..@fluentui/react-button_v9.0.0-alpha.12)
|
|
1087
1133
|
|
|
1088
1134
|
### Changes
|
|
@@ -1091,7 +1137,7 @@ Wed, 17 Mar 2021 07:35:44 GMT
|
|
|
1091
1137
|
|
|
1092
1138
|
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.11)
|
|
1093
1139
|
|
|
1094
|
-
Tue, 16 Mar 2021 07:32:44 GMT
|
|
1140
|
+
Tue, 16 Mar 2021 07:32:44 GMT
|
|
1095
1141
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.10..@fluentui/react-button_v9.0.0-alpha.11)
|
|
1096
1142
|
|
|
1097
1143
|
### Patches
|
|
@@ -1100,7 +1146,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
|
|
|
1100
1146
|
|
|
1101
1147
|
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.10)
|
|
1102
1148
|
|
|
1103
|
-
Mon, 15 Mar 2021 07:36:20 GMT
|
|
1149
|
+
Mon, 15 Mar 2021 07:36:20 GMT
|
|
1104
1150
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.9..@fluentui/react-button_v9.0.0-alpha.10)
|
|
1105
1151
|
|
|
1106
1152
|
### Changes
|
|
@@ -1109,7 +1155,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
|
|
|
1109
1155
|
|
|
1110
1156
|
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.9)
|
|
1111
1157
|
|
|
1112
|
-
Fri, 12 Mar 2021 20:04:27 GMT
|
|
1158
|
+
Fri, 12 Mar 2021 20:04:27 GMT
|
|
1113
1159
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.8..@fluentui/react-button_v9.0.0-alpha.9)
|
|
1114
1160
|
|
|
1115
1161
|
### Patches
|
|
@@ -1122,7 +1168,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
|
|
|
1122
1168
|
|
|
1123
1169
|
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.8)
|
|
1124
1170
|
|
|
1125
|
-
Wed, 10 Mar 2021 07:34:39 GMT
|
|
1171
|
+
Wed, 10 Mar 2021 07:34:39 GMT
|
|
1126
1172
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.7..@fluentui/react-button_v9.0.0-alpha.8)
|
|
1127
1173
|
|
|
1128
1174
|
### Changes
|
|
@@ -1131,7 +1177,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
|
|
|
1131
1177
|
|
|
1132
1178
|
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.7)
|
|
1133
1179
|
|
|
1134
|
-
Fri, 05 Mar 2021 20:30:59 GMT
|
|
1180
|
+
Fri, 05 Mar 2021 20:30:59 GMT
|
|
1135
1181
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.6..@fluentui/react-button_v9.0.0-alpha.7)
|
|
1136
1182
|
|
|
1137
1183
|
### Changes
|
|
@@ -1140,7 +1186,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
|
|
|
1140
1186
|
|
|
1141
1187
|
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.6)
|
|
1142
1188
|
|
|
1143
|
-
Wed, 03 Mar 2021 00:10:09 GMT
|
|
1189
|
+
Wed, 03 Mar 2021 00:10:09 GMT
|
|
1144
1190
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.5..@fluentui/react-button_v9.0.0-alpha.6)
|
|
1145
1191
|
|
|
1146
1192
|
### Patches
|
|
@@ -1153,7 +1199,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
|
|
|
1153
1199
|
|
|
1154
1200
|
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.5)
|
|
1155
1201
|
|
|
1156
|
-
Tue, 02 Mar 2021 07:24:27 GMT
|
|
1202
|
+
Tue, 02 Mar 2021 07:24:27 GMT
|
|
1157
1203
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.4..@fluentui/react-button_v9.0.0-alpha.5)
|
|
1158
1204
|
|
|
1159
1205
|
### Changes
|
|
@@ -1162,7 +1208,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
|
|
|
1162
1208
|
|
|
1163
1209
|
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.4)
|
|
1164
1210
|
|
|
1165
|
-
Fri, 26 Feb 2021 01:16:27 GMT
|
|
1211
|
+
Fri, 26 Feb 2021 01:16:27 GMT
|
|
1166
1212
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.3..@fluentui/react-button_v9.0.0-alpha.4)
|
|
1167
1213
|
|
|
1168
1214
|
### Patches
|
|
@@ -1182,7 +1228,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
|
|
|
1182
1228
|
|
|
1183
1229
|
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.3)
|
|
1184
1230
|
|
|
1185
|
-
Thu, 25 Feb 2021 20:16:39 GMT
|
|
1231
|
+
Thu, 25 Feb 2021 20:16:39 GMT
|
|
1186
1232
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.2..@fluentui/react-button_v9.0.0-alpha.3)
|
|
1187
1233
|
|
|
1188
1234
|
### Changes
|
|
@@ -1191,7 +1237,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
|
|
|
1191
1237
|
|
|
1192
1238
|
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.2)
|
|
1193
1239
|
|
|
1194
|
-
Thu, 25 Feb 2021 01:15:27 GMT
|
|
1240
|
+
Thu, 25 Feb 2021 01:15:27 GMT
|
|
1195
1241
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.1..@fluentui/react-button_v9.0.0-alpha.2)
|
|
1196
1242
|
|
|
1197
1243
|
### Patches
|
|
@@ -1200,7 +1246,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
|
|
|
1200
1246
|
|
|
1201
1247
|
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.1)
|
|
1202
1248
|
|
|
1203
|
-
Wed, 24 Feb 2021 00:05:29 GMT
|
|
1249
|
+
Wed, 24 Feb 2021 00:05:29 GMT
|
|
1204
1250
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.35..@fluentui/react-button_v9.0.0-alpha.1)
|
|
1205
1251
|
|
|
1206
1252
|
### Changes
|
|
@@ -1209,7 +1255,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
|
|
|
1209
1255
|
|
|
1210
1256
|
## [1.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.35)
|
|
1211
1257
|
|
|
1212
|
-
Mon, 22 Feb 2021 12:26:22 GMT
|
|
1258
|
+
Mon, 22 Feb 2021 12:26:22 GMT
|
|
1213
1259
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.34..@fluentui/react-button_v1.0.0-beta.35)
|
|
1214
1260
|
|
|
1215
1261
|
### Changes
|
|
@@ -1218,7 +1264,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
|
|
|
1218
1264
|
|
|
1219
1265
|
## [1.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.34)
|
|
1220
1266
|
|
|
1221
|
-
Thu, 18 Feb 2021 19:38:50 GMT
|
|
1267
|
+
Thu, 18 Feb 2021 19:38:50 GMT
|
|
1222
1268
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.33..@fluentui/react-button_v1.0.0-beta.34)
|
|
1223
1269
|
|
|
1224
1270
|
### Patches
|
|
@@ -1232,7 +1278,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
|
|
|
1232
1278
|
|
|
1233
1279
|
## [1.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.33)
|
|
1234
1280
|
|
|
1235
|
-
Thu, 18 Feb 2021 12:27:34 GMT
|
|
1281
|
+
Thu, 18 Feb 2021 12:27:34 GMT
|
|
1236
1282
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.32..@fluentui/react-button_v1.0.0-beta.33)
|
|
1237
1283
|
|
|
1238
1284
|
### Changes
|
|
@@ -1243,7 +1289,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
|
|
|
1243
1289
|
|
|
1244
1290
|
## [1.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.32)
|
|
1245
1291
|
|
|
1246
|
-
Mon, 15 Feb 2021 12:22:00 GMT
|
|
1292
|
+
Mon, 15 Feb 2021 12:22:00 GMT
|
|
1247
1293
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.31..@fluentui/react-button_v1.0.0-beta.32)
|
|
1248
1294
|
|
|
1249
1295
|
### Changes
|
|
@@ -1252,7 +1298,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
|
|
|
1252
1298
|
|
|
1253
1299
|
## [1.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.31)
|
|
1254
1300
|
|
|
1255
|
-
Fri, 12 Feb 2021 12:26:20 GMT
|
|
1301
|
+
Fri, 12 Feb 2021 12:26:20 GMT
|
|
1256
1302
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.30..@fluentui/react-button_v1.0.0-beta.31)
|
|
1257
1303
|
|
|
1258
1304
|
### Patches
|
|
@@ -1266,7 +1312,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
|
|
|
1266
1312
|
|
|
1267
1313
|
## [1.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.30)
|
|
1268
1314
|
|
|
1269
|
-
Thu, 11 Feb 2021 00:58:10 GMT
|
|
1315
|
+
Thu, 11 Feb 2021 00:58:10 GMT
|
|
1270
1316
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.29..@fluentui/react-button_v1.0.0-beta.30)
|
|
1271
1317
|
|
|
1272
1318
|
### Changes
|
|
@@ -1275,7 +1321,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
|
|
|
1275
1321
|
|
|
1276
1322
|
## [1.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.29)
|
|
1277
1323
|
|
|
1278
|
-
Tue, 09 Feb 2021 00:56:52 GMT
|
|
1324
|
+
Tue, 09 Feb 2021 00:56:52 GMT
|
|
1279
1325
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.28..@fluentui/react-button_v1.0.0-beta.29)
|
|
1280
1326
|
|
|
1281
1327
|
### Patches
|
|
@@ -1288,7 +1334,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
|
|
|
1288
1334
|
|
|
1289
1335
|
## [1.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.28)
|
|
1290
1336
|
|
|
1291
|
-
Mon, 08 Feb 2021 12:23:08 GMT
|
|
1337
|
+
Mon, 08 Feb 2021 12:23:08 GMT
|
|
1292
1338
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.27..@fluentui/react-button_v1.0.0-beta.28)
|
|
1293
1339
|
|
|
1294
1340
|
### Changes
|
|
@@ -1297,7 +1343,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
|
|
|
1297
1343
|
|
|
1298
1344
|
## [1.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.27)
|
|
1299
1345
|
|
|
1300
|
-
Wed, 03 Feb 2021 05:51:40 GMT
|
|
1346
|
+
Wed, 03 Feb 2021 05:51:40 GMT
|
|
1301
1347
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.26..@fluentui/react-button_v1.0.0-beta.27)
|
|
1302
1348
|
|
|
1303
1349
|
### Changes
|
|
@@ -1306,7 +1352,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
|
|
|
1306
1352
|
|
|
1307
1353
|
## [1.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.26)
|
|
1308
1354
|
|
|
1309
|
-
Tue, 02 Feb 2021 12:21:54 GMT
|
|
1355
|
+
Tue, 02 Feb 2021 12:21:54 GMT
|
|
1310
1356
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.25..@fluentui/react-button_v1.0.0-beta.26)
|
|
1311
1357
|
|
|
1312
1358
|
### Changes
|
|
@@ -1316,7 +1362,7 @@ Tue, 02 Feb 2021 12:21:54 GMT
|
|
|
1316
1362
|
|
|
1317
1363
|
## [1.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.25)
|
|
1318
1364
|
|
|
1319
|
-
Mon, 01 Feb 2021 12:23:48 GMT
|
|
1365
|
+
Mon, 01 Feb 2021 12:23:48 GMT
|
|
1320
1366
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.24..@fluentui/react-button_v1.0.0-beta.25)
|
|
1321
1367
|
|
|
1322
1368
|
### Changes
|
|
@@ -1325,7 +1371,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
|
|
|
1325
1371
|
|
|
1326
1372
|
## [1.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.24)
|
|
1327
1373
|
|
|
1328
|
-
Thu, 28 Jan 2021 12:25:56 GMT
|
|
1374
|
+
Thu, 28 Jan 2021 12:25:56 GMT
|
|
1329
1375
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.23..@fluentui/react-button_v1.0.0-beta.24)
|
|
1330
1376
|
|
|
1331
1377
|
### Changes
|
|
@@ -1335,7 +1381,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
|
|
|
1335
1381
|
|
|
1336
1382
|
## [1.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.23)
|
|
1337
1383
|
|
|
1338
|
-
Sat, 23 Jan 2021 05:20:07 GMT
|
|
1384
|
+
Sat, 23 Jan 2021 05:20:07 GMT
|
|
1339
1385
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.22..@fluentui/react-button_v1.0.0-beta.23)
|
|
1340
1386
|
|
|
1341
1387
|
### Changes
|
|
@@ -1344,7 +1390,7 @@ Sat, 23 Jan 2021 05:20:07 GMT
|
|
|
1344
1390
|
|
|
1345
1391
|
## [1.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.22)
|
|
1346
1392
|
|
|
1347
|
-
Fri, 22 Jan 2021 12:24:49 GMT
|
|
1393
|
+
Fri, 22 Jan 2021 12:24:49 GMT
|
|
1348
1394
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.21..@fluentui/react-button_v1.0.0-beta.22)
|
|
1349
1395
|
|
|
1350
1396
|
### Changes
|
|
@@ -1353,17 +1399,17 @@ Fri, 22 Jan 2021 12:24:49 GMT
|
|
|
1353
1399
|
|
|
1354
1400
|
## [1.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.21)
|
|
1355
1401
|
|
|
1356
|
-
Thu, 21 Jan 2021 12:36:12 GMT
|
|
1402
|
+
Thu, 21 Jan 2021 12:36:12 GMT
|
|
1357
1403
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.19..@fluentui/react-button_v1.0.0-beta.21)
|
|
1358
1404
|
|
|
1359
1405
|
### Changes
|
|
1360
1406
|
|
|
1361
1407
|
- Button: Enable pointer-events so that tooltip can be attached to disabledFocusable Button. ([PR #16508](https://github.com/microsoft/fluentui/pull/16508) by jukapsia@microsoft.com)
|
|
1362
|
-
-
|
|
1408
|
+
- Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
|
|
1363
1409
|
|
|
1364
1410
|
## [1.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.19)
|
|
1365
1411
|
|
|
1366
|
-
Thu, 14 Jan 2021 12:31:15 GMT
|
|
1412
|
+
Thu, 14 Jan 2021 12:31:15 GMT
|
|
1367
1413
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.17..@fluentui/react-button_v1.0.0-beta.19)
|
|
1368
1414
|
|
|
1369
1415
|
### Changes
|
|
@@ -1372,7 +1418,7 @@ Thu, 14 Jan 2021 12:31:15 GMT
|
|
|
1372
1418
|
|
|
1373
1419
|
## [1.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.17)
|
|
1374
1420
|
|
|
1375
|
-
Fri, 11 Dec 2020 12:28:01 GMT
|
|
1421
|
+
Fri, 11 Dec 2020 12:28:01 GMT
|
|
1376
1422
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.14..@fluentui/react-button_v1.0.0-beta.17)
|
|
1377
1423
|
|
|
1378
1424
|
### Changes
|
|
@@ -1381,7 +1427,7 @@ Fri, 11 Dec 2020 12:28:01 GMT
|
|
|
1381
1427
|
|
|
1382
1428
|
## [1.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.14)
|
|
1383
1429
|
|
|
1384
|
-
Tue, 01 Dec 2020 12:38:05 GMT
|
|
1430
|
+
Tue, 01 Dec 2020 12:38:05 GMT
|
|
1385
1431
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.13..@fluentui/react-button_v1.0.0-beta.14)
|
|
1386
1432
|
|
|
1387
1433
|
### Changes
|
|
@@ -1390,7 +1436,7 @@ Tue, 01 Dec 2020 12:38:05 GMT
|
|
|
1390
1436
|
|
|
1391
1437
|
## [1.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.13)
|
|
1392
1438
|
|
|
1393
|
-
Mon, 23 Nov 2020 12:31:40 GMT
|
|
1439
|
+
Mon, 23 Nov 2020 12:31:40 GMT
|
|
1394
1440
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.12..@fluentui/react-button_v1.0.0-beta.13)
|
|
1395
1441
|
|
|
1396
1442
|
### Changes
|
|
@@ -1399,7 +1445,7 @@ Mon, 23 Nov 2020 12:31:40 GMT
|
|
|
1399
1445
|
|
|
1400
1446
|
## [1.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.12)
|
|
1401
1447
|
|
|
1402
|
-
Wed, 18 Nov 2020 12:30:07 GMT
|
|
1448
|
+
Wed, 18 Nov 2020 12:30:07 GMT
|
|
1403
1449
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.11..@fluentui/react-button_v1.0.0-beta.12)
|
|
1404
1450
|
|
|
1405
1451
|
### Changes
|
|
@@ -1408,17 +1454,17 @@ Wed, 18 Nov 2020 12:30:07 GMT
|
|
|
1408
1454
|
|
|
1409
1455
|
## [1.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.11)
|
|
1410
1456
|
|
|
1411
|
-
Tue, 17 Nov 2020 12:36:24 GMT
|
|
1457
|
+
Tue, 17 Nov 2020 12:36:24 GMT
|
|
1412
1458
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.9..@fluentui/react-button_v1.0.0-beta.11)
|
|
1413
1459
|
|
|
1414
1460
|
### Changes
|
|
1415
1461
|
|
|
1416
|
-
- Updating arguments of style hook.
|
|
1462
|
+
- Updating arguments of style hook. ([PR #15952](https://github.com/microsoft/fluentui/pull/15952) by dzearing@hotmail.com)
|
|
1417
1463
|
- Updating classes hooks derived from Button to actually derive from Button. ([PR #15955](https://github.com/microsoft/fluentui/pull/15955) by xgao@microsoft.com)
|
|
1418
1464
|
|
|
1419
1465
|
## [1.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.9)
|
|
1420
1466
|
|
|
1421
|
-
Fri, 06 Nov 2020 12:34:34 GMT
|
|
1467
|
+
Fri, 06 Nov 2020 12:34:34 GMT
|
|
1422
1468
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.8..@fluentui/react-button_v1.0.0-beta.9)
|
|
1423
1469
|
|
|
1424
1470
|
### Changes
|
|
@@ -1427,7 +1473,7 @@ Fri, 06 Nov 2020 12:34:34 GMT
|
|
|
1427
1473
|
|
|
1428
1474
|
## [1.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.8)
|
|
1429
1475
|
|
|
1430
|
-
Thu, 05 Nov 2020 12:29:43 GMT
|
|
1476
|
+
Thu, 05 Nov 2020 12:29:43 GMT
|
|
1431
1477
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.7..@fluentui/react-button_v1.0.0-beta.8)
|
|
1432
1478
|
|
|
1433
1479
|
### Changes
|
|
@@ -1436,7 +1482,7 @@ Thu, 05 Nov 2020 12:29:43 GMT
|
|
|
1436
1482
|
|
|
1437
1483
|
## [1.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.7)
|
|
1438
1484
|
|
|
1439
|
-
Wed, 04 Nov 2020 12:34:30 GMT
|
|
1485
|
+
Wed, 04 Nov 2020 12:34:30 GMT
|
|
1440
1486
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.4..@fluentui/react-button_v1.0.0-beta.7)
|
|
1441
1487
|
|
|
1442
1488
|
### Changes
|
|
@@ -1445,7 +1491,7 @@ Wed, 04 Nov 2020 12:34:30 GMT
|
|
|
1445
1491
|
|
|
1446
1492
|
## [1.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.4)
|
|
1447
1493
|
|
|
1448
|
-
Wed, 28 Oct 2020 12:32:24 GMT
|
|
1494
|
+
Wed, 28 Oct 2020 12:32:24 GMT
|
|
1449
1495
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.1..@fluentui/react-button_v1.0.0-beta.4)
|
|
1450
1496
|
|
|
1451
1497
|
### Changes
|
|
@@ -1454,7 +1500,7 @@ Wed, 28 Oct 2020 12:32:24 GMT
|
|
|
1454
1500
|
|
|
1455
1501
|
## [1.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.1)
|
|
1456
1502
|
|
|
1457
|
-
Fri, 23 Oct 2020 23:25:40 GMT
|
|
1503
|
+
Fri, 23 Oct 2020 23:25:40 GMT
|
|
1458
1504
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.0..@fluentui/react-button_v1.0.0-beta.1)
|
|
1459
1505
|
|
|
1460
1506
|
### Changes
|
|
@@ -1463,7 +1509,7 @@ Fri, 23 Oct 2020 23:25:40 GMT
|
|
|
1463
1509
|
|
|
1464
1510
|
## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.0)
|
|
1465
1511
|
|
|
1466
|
-
Fri, 23 Oct 2020 03:26:15 GMT
|
|
1512
|
+
Fri, 23 Oct 2020 03:26:15 GMT
|
|
1467
1513
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.3..@fluentui/react-button_v1.0.0-beta.0)
|
|
1468
1514
|
|
|
1469
1515
|
### Changes
|
|
@@ -1482,7 +1528,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
|
|
|
1482
1528
|
|
|
1483
1529
|
## [0.14.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.3)
|
|
1484
1530
|
|
|
1485
|
-
Sun, 27 Sep 2020 04:20:52 GMT
|
|
1531
|
+
Sun, 27 Sep 2020 04:20:52 GMT
|
|
1486
1532
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.2..@fluentui/react-button_v0.14.3)
|
|
1487
1533
|
|
|
1488
1534
|
### Patches
|
|
@@ -1491,7 +1537,7 @@ Sun, 27 Sep 2020 04:20:52 GMT
|
|
|
1491
1537
|
|
|
1492
1538
|
## [0.14.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.2)
|
|
1493
1539
|
|
|
1494
|
-
Fri, 25 Sep 2020 12:25:17 GMT
|
|
1540
|
+
Fri, 25 Sep 2020 12:25:17 GMT
|
|
1495
1541
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.0..@fluentui/react-button_v0.14.2)
|
|
1496
1542
|
|
|
1497
1543
|
### Patches
|
|
@@ -1501,7 +1547,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
|
|
|
1501
1547
|
|
|
1502
1548
|
## [0.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.0)
|
|
1503
1549
|
|
|
1504
|
-
Wed, 23 Sep 2020 12:27:48 GMT
|
|
1550
|
+
Wed, 23 Sep 2020 12:27:48 GMT
|
|
1505
1551
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.1..@fluentui/react-button_v0.14.0)
|
|
1506
1552
|
|
|
1507
1553
|
### Minor changes
|
|
@@ -1514,7 +1560,7 @@ Wed, 23 Sep 2020 12:27:48 GMT
|
|
|
1514
1560
|
|
|
1515
1561
|
## [0.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.1)
|
|
1516
1562
|
|
|
1517
|
-
Thu, 17 Sep 2020 15:52:49 GMT
|
|
1563
|
+
Thu, 17 Sep 2020 15:52:49 GMT
|
|
1518
1564
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.0..@fluentui/react-button_v0.13.1)
|
|
1519
1565
|
|
|
1520
1566
|
### Patches
|
|
@@ -1523,7 +1569,7 @@ Thu, 17 Sep 2020 15:52:49 GMT
|
|
|
1523
1569
|
|
|
1524
1570
|
## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.0)
|
|
1525
1571
|
|
|
1526
|
-
Thu, 17 Sep 2020 12:25:04 GMT
|
|
1572
|
+
Thu, 17 Sep 2020 12:25:04 GMT
|
|
1527
1573
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.6..@fluentui/react-button_v0.13.0)
|
|
1528
1574
|
|
|
1529
1575
|
### Minor changes
|
|
@@ -1532,7 +1578,7 @@ Thu, 17 Sep 2020 12:25:04 GMT
|
|
|
1532
1578
|
|
|
1533
1579
|
## [0.12.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.5)
|
|
1534
1580
|
|
|
1535
|
-
Tue, 15 Sep 2020 12:26:06 GMT
|
|
1581
|
+
Tue, 15 Sep 2020 12:26:06 GMT
|
|
1536
1582
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.4..@fluentui/react-button_v0.12.5)
|
|
1537
1583
|
|
|
1538
1584
|
### Patches
|
|
@@ -1541,7 +1587,7 @@ Tue, 15 Sep 2020 12:26:06 GMT
|
|
|
1541
1587
|
|
|
1542
1588
|
## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.0)
|
|
1543
1589
|
|
|
1544
|
-
Wed, 09 Sep 2020 12:24:19 GMT
|
|
1590
|
+
Wed, 09 Sep 2020 12:24:19 GMT
|
|
1545
1591
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.6..@fluentui/react-button_v0.12.0)
|
|
1546
1592
|
|
|
1547
1593
|
### Minor changes
|
|
@@ -1554,7 +1600,7 @@ Wed, 09 Sep 2020 12:24:19 GMT
|
|
|
1554
1600
|
|
|
1555
1601
|
## [0.11.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.6)
|
|
1556
1602
|
|
|
1557
|
-
Mon, 07 Sep 2020 12:26:26 GMT
|
|
1603
|
+
Mon, 07 Sep 2020 12:26:26 GMT
|
|
1558
1604
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.5..@fluentui/react-button_v0.11.6)
|
|
1559
1605
|
|
|
1560
1606
|
### Patches
|
|
@@ -1563,7 +1609,7 @@ Mon, 07 Sep 2020 12:26:26 GMT
|
|
|
1563
1609
|
|
|
1564
1610
|
## [0.11.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.5)
|
|
1565
1611
|
|
|
1566
|
-
Fri, 04 Sep 2020 12:28:23 GMT
|
|
1612
|
+
Fri, 04 Sep 2020 12:28:23 GMT
|
|
1567
1613
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.0..@fluentui/react-button_v0.11.5)
|
|
1568
1614
|
|
|
1569
1615
|
### Patches
|
|
@@ -1572,7 +1618,7 @@ Fri, 04 Sep 2020 12:28:23 GMT
|
|
|
1572
1618
|
|
|
1573
1619
|
## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.0)
|
|
1574
1620
|
|
|
1575
|
-
Fri, 28 Aug 2020 12:29:20 GMT
|
|
1621
|
+
Fri, 28 Aug 2020 12:29:20 GMT
|
|
1576
1622
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.3..@fluentui/react-button_v0.11.0)
|
|
1577
1623
|
|
|
1578
1624
|
### Minor changes
|
|
@@ -1581,7 +1627,7 @@ Fri, 28 Aug 2020 12:29:20 GMT
|
|
|
1581
1627
|
|
|
1582
1628
|
## [0.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.3)
|
|
1583
1629
|
|
|
1584
|
-
Tue, 25 Aug 2020 12:36:19 GMT
|
|
1630
|
+
Tue, 25 Aug 2020 12:36:19 GMT
|
|
1585
1631
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.1..@fluentui/react-button_v0.10.3)
|
|
1586
1632
|
|
|
1587
1633
|
### Patches
|
|
@@ -1590,7 +1636,7 @@ Tue, 25 Aug 2020 12:36:19 GMT
|
|
|
1590
1636
|
|
|
1591
1637
|
## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.1)
|
|
1592
1638
|
|
|
1593
|
-
Thu, 20 Aug 2020 12:37:22 GMT
|
|
1639
|
+
Thu, 20 Aug 2020 12:37:22 GMT
|
|
1594
1640
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.0..@fluentui/react-button_v0.10.1)
|
|
1595
1641
|
|
|
1596
1642
|
### Patches
|
|
@@ -1600,7 +1646,7 @@ Thu, 20 Aug 2020 12:37:22 GMT
|
|
|
1600
1646
|
|
|
1601
1647
|
## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.0)
|
|
1602
1648
|
|
|
1603
|
-
Wed, 19 Aug 2020 12:44:33 GMT
|
|
1649
|
+
Wed, 19 Aug 2020 12:44:33 GMT
|
|
1604
1650
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.4..@fluentui/react-button_v0.10.0)
|
|
1605
1651
|
|
|
1606
1652
|
### Minor changes
|
|
@@ -1609,7 +1655,7 @@ Wed, 19 Aug 2020 12:44:33 GMT
|
|
|
1609
1655
|
|
|
1610
1656
|
## [0.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.4)
|
|
1611
1657
|
|
|
1612
|
-
Tue, 18 Aug 2020 07:58:00 GMT
|
|
1658
|
+
Tue, 18 Aug 2020 07:58:00 GMT
|
|
1613
1659
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.0..@fluentui/react-button_v0.9.4)
|
|
1614
1660
|
|
|
1615
1661
|
### Patches
|
|
@@ -1618,7 +1664,7 @@ Tue, 18 Aug 2020 07:58:00 GMT
|
|
|
1618
1664
|
|
|
1619
1665
|
## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.0)
|
|
1620
1666
|
|
|
1621
|
-
Tue, 11 Aug 2020 05:47:07 GMT
|
|
1667
|
+
Tue, 11 Aug 2020 05:47:07 GMT
|
|
1622
1668
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.8.0..@fluentui/react-button_v0.9.0)
|
|
1623
1669
|
|
|
1624
1670
|
### Minor changes
|
|
@@ -1628,7 +1674,7 @@ Tue, 11 Aug 2020 05:47:07 GMT
|
|
|
1628
1674
|
|
|
1629
1675
|
## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.8.0)
|
|
1630
1676
|
|
|
1631
|
-
Mon, 10 Aug 2020 06:19:21 GMT
|
|
1677
|
+
Mon, 10 Aug 2020 06:19:21 GMT
|
|
1632
1678
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.14..@fluentui/react-button_v0.8.0)
|
|
1633
1679
|
|
|
1634
1680
|
### Minor changes
|
|
@@ -1637,7 +1683,7 @@ Mon, 10 Aug 2020 06:19:21 GMT
|
|
|
1637
1683
|
|
|
1638
1684
|
## [0.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.9)
|
|
1639
1685
|
|
|
1640
|
-
Mon, 27 Jul 2020 12:42:21 GMT
|
|
1686
|
+
Mon, 27 Jul 2020 12:42:21 GMT
|
|
1641
1687
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.3..@fluentui/react-button_v0.7.9)
|
|
1642
1688
|
|
|
1643
1689
|
### Patches
|
|
@@ -1646,7 +1692,7 @@ Mon, 27 Jul 2020 12:42:21 GMT
|
|
|
1646
1692
|
|
|
1647
1693
|
## [0.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.3)
|
|
1648
1694
|
|
|
1649
|
-
Fri, 17 Jul 2020 12:38:41 GMT
|
|
1695
|
+
Fri, 17 Jul 2020 12:38:41 GMT
|
|
1650
1696
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.1..@fluentui/react-button_v0.7.3)
|
|
1651
1697
|
|
|
1652
1698
|
### Patches
|
|
@@ -1655,7 +1701,7 @@ Fri, 17 Jul 2020 12:38:41 GMT
|
|
|
1655
1701
|
|
|
1656
1702
|
## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.0)
|
|
1657
1703
|
|
|
1658
|
-
Thu, 09 Jul 2020 21:59:04 GMT
|
|
1704
|
+
Thu, 09 Jul 2020 21:59:04 GMT
|
|
1659
1705
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.2..@fluentui/react-button_v0.7.0)
|
|
1660
1706
|
|
|
1661
1707
|
### Minor changes
|
|
@@ -1664,7 +1710,7 @@ Thu, 09 Jul 2020 21:59:04 GMT
|
|
|
1664
1710
|
|
|
1665
1711
|
## [0.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.2)
|
|
1666
1712
|
|
|
1667
|
-
Thu, 02 Jul 2020 12:42:11 GMT
|
|
1713
|
+
Thu, 02 Jul 2020 12:42:11 GMT
|
|
1668
1714
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.0..@fluentui/react-button_v0.6.2)
|
|
1669
1715
|
|
|
1670
1716
|
### Patches
|
|
@@ -1673,7 +1719,7 @@ Thu, 02 Jul 2020 12:42:11 GMT
|
|
|
1673
1719
|
|
|
1674
1720
|
## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.0)
|
|
1675
1721
|
|
|
1676
|
-
Tue, 30 Jun 2020 12:33:36 GMT
|
|
1722
|
+
Tue, 30 Jun 2020 12:33:36 GMT
|
|
1677
1723
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.1..@fluentui/react-button_v0.6.0)
|
|
1678
1724
|
|
|
1679
1725
|
### Minor changes
|
|
@@ -1682,7 +1728,7 @@ Tue, 30 Jun 2020 12:33:36 GMT
|
|
|
1682
1728
|
|
|
1683
1729
|
## [0.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.1)
|
|
1684
1730
|
|
|
1685
|
-
Fri, 26 Jun 2020 12:36:28 GMT
|
|
1731
|
+
Fri, 26 Jun 2020 12:36:28 GMT
|
|
1686
1732
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.0..@fluentui/react-button_v0.5.1)
|
|
1687
1733
|
|
|
1688
1734
|
### Patches
|
|
@@ -1692,7 +1738,7 @@ Fri, 26 Jun 2020 12:36:28 GMT
|
|
|
1692
1738
|
|
|
1693
1739
|
## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.0)
|
|
1694
1740
|
|
|
1695
|
-
Thu, 25 Jun 2020 12:50:17 GMT
|
|
1741
|
+
Thu, 25 Jun 2020 12:50:17 GMT
|
|
1696
1742
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.4.0..@fluentui/react-button_v0.5.0)
|
|
1697
1743
|
|
|
1698
1744
|
### Minor changes
|
|
@@ -1705,7 +1751,7 @@ Thu, 25 Jun 2020 12:50:17 GMT
|
|
|
1705
1751
|
|
|
1706
1752
|
## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.4.0)
|
|
1707
1753
|
|
|
1708
|
-
Tue, 23 Jun 2020 12:41:54 GMT
|
|
1754
|
+
Tue, 23 Jun 2020 12:41:54 GMT
|
|
1709
1755
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.7..@fluentui/react-button_v0.4.0)
|
|
1710
1756
|
|
|
1711
1757
|
### Minor changes
|
|
@@ -1714,7 +1760,7 @@ Tue, 23 Jun 2020 12:41:54 GMT
|
|
|
1714
1760
|
|
|
1715
1761
|
## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.7)
|
|
1716
1762
|
|
|
1717
|
-
Mon, 22 Jun 2020 12:42:16 GMT
|
|
1763
|
+
Mon, 22 Jun 2020 12:42:16 GMT
|
|
1718
1764
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.6..@fluentui/react-button_v0.3.7)
|
|
1719
1765
|
|
|
1720
1766
|
### Patches
|
|
@@ -1723,7 +1769,7 @@ Mon, 22 Jun 2020 12:42:16 GMT
|
|
|
1723
1769
|
|
|
1724
1770
|
## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.6)
|
|
1725
1771
|
|
|
1726
|
-
Fri, 19 Jun 2020 12:38:09 GMT
|
|
1772
|
+
Fri, 19 Jun 2020 12:38:09 GMT
|
|
1727
1773
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.5..@fluentui/react-button_v0.3.6)
|
|
1728
1774
|
|
|
1729
1775
|
### Patches
|
|
@@ -1732,7 +1778,7 @@ Fri, 19 Jun 2020 12:38:09 GMT
|
|
|
1732
1778
|
|
|
1733
1779
|
## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.5)
|
|
1734
1780
|
|
|
1735
|
-
Thu, 18 Jun 2020 12:37:09 GMT
|
|
1781
|
+
Thu, 18 Jun 2020 12:37:09 GMT
|
|
1736
1782
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.3..@fluentui/react-button_v0.3.5)
|
|
1737
1783
|
|
|
1738
1784
|
### Patches
|
|
@@ -1741,7 +1787,7 @@ Thu, 18 Jun 2020 12:37:09 GMT
|
|
|
1741
1787
|
|
|
1742
1788
|
## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.3)
|
|
1743
1789
|
|
|
1744
|
-
Tue, 16 Jun 2020 17:35:36 GMT
|
|
1790
|
+
Tue, 16 Jun 2020 17:35:36 GMT
|
|
1745
1791
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.0..@fluentui/react-button_v0.3.3)
|
|
1746
1792
|
|
|
1747
1793
|
### Patches
|
|
@@ -1750,7 +1796,7 @@ Tue, 16 Jun 2020 17:35:36 GMT
|
|
|
1750
1796
|
|
|
1751
1797
|
## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.0)
|
|
1752
1798
|
|
|
1753
|
-
Fri, 12 Jun 2020 18:29:07 GMT
|
|
1799
|
+
Fri, 12 Jun 2020 18:29:07 GMT
|
|
1754
1800
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.2.0..@fluentui/react-button_v0.3.0)
|
|
1755
1801
|
|
|
1756
1802
|
### Minor changes
|
|
@@ -1764,7 +1810,7 @@ Fri, 12 Jun 2020 18:29:07 GMT
|
|
|
1764
1810
|
|
|
1765
1811
|
## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.2.0)
|
|
1766
1812
|
|
|
1767
|
-
Mon, 08 Jun 2020 12:34:34 GMT
|
|
1813
|
+
Mon, 08 Jun 2020 12:34:34 GMT
|
|
1768
1814
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.13..@fluentui/react-button_v0.2.0)
|
|
1769
1815
|
|
|
1770
1816
|
### Minor changes
|
|
@@ -1773,7 +1819,7 @@ Mon, 08 Jun 2020 12:34:34 GMT
|
|
|
1773
1819
|
|
|
1774
1820
|
## [0.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.13)
|
|
1775
1821
|
|
|
1776
|
-
Fri, 05 Jun 2020 05:09:39 GMT
|
|
1822
|
+
Fri, 05 Jun 2020 05:09:39 GMT
|
|
1777
1823
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.12..@fluentui/react-button_v0.1.13)
|
|
1778
1824
|
|
|
1779
1825
|
### Patches
|
|
@@ -1783,7 +1829,7 @@ Fri, 05 Jun 2020 05:09:39 GMT
|
|
|
1783
1829
|
|
|
1784
1830
|
## [0.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.12)
|
|
1785
1831
|
|
|
1786
|
-
Tue, 02 Jun 2020 12:36:30 GMT
|
|
1832
|
+
Tue, 02 Jun 2020 12:36:30 GMT
|
|
1787
1833
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.11..@fluentui/react-button_v0.1.12)
|
|
1788
1834
|
|
|
1789
1835
|
### Patches
|
|
@@ -1792,7 +1838,7 @@ Tue, 02 Jun 2020 12:36:30 GMT
|
|
|
1792
1838
|
|
|
1793
1839
|
## [0.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.11)
|
|
1794
1840
|
|
|
1795
|
-
Mon, 01 Jun 2020 12:32:45 GMT
|
|
1841
|
+
Mon, 01 Jun 2020 12:32:45 GMT
|
|
1796
1842
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.4..@fluentui/react-button_v0.1.11)
|
|
1797
1843
|
|
|
1798
1844
|
### Patches
|
|
@@ -1801,12 +1847,12 @@ Mon, 01 Jun 2020 12:32:45 GMT
|
|
|
1801
1847
|
|
|
1802
1848
|
## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.4)
|
|
1803
1849
|
|
|
1804
|
-
Wed, 20 May 2020 12:31:10 GMT
|
|
1850
|
+
Wed, 20 May 2020 12:31:10 GMT
|
|
1805
1851
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.1..@fluentui/react-button_v0.1.4)
|
|
1806
1852
|
|
|
1807
1853
|
### Patches
|
|
1808
1854
|
|
|
1809
|
-
- feat(compose): expose
|
|
1855
|
+
- feat(compose): expose \_\_self slot ([PR #13115](https://github.com/microsoft/fluentui/pull/13115) by olfedias@microsoft.com)
|
|
1810
1856
|
|
|
1811
1857
|
## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.1)
|
|
1812
1858
|
|