@fluentui/react-button 0.0.0-nightlyfc5cfdc52420220215.1 → 0.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.json +658 -16
- package/CHANGELOG.md +360 -181
- package/README.md +81 -19
- package/dist/{react-button.d.ts → index.d.ts} +44 -37
- package/{lib → dist}/tsdoc-metadata.json +0 -0
- package/lib/Button.js.map +1 -1
- package/lib/CompoundButton.js.map +1 -1
- package/lib/MenuButton.js.map +1 -1
- package/lib/SplitButton.js.map +1 -1
- package/lib/ToggleButton.js.map +1 -1
- package/lib/components/Button/Button.js.map +1 -1
- package/lib/components/Button/Button.types.js.map +1 -1
- package/lib/components/Button/index.js +1 -1
- package/lib/components/Button/index.js.map +1 -1
- package/lib/components/Button/renderButton.js.map +1 -1
- package/lib/components/Button/useButton.js +1 -3
- package/lib/components/Button/useButton.js.map +1 -1
- package/lib/components/Button/useButtonStyles.js +244 -115
- package/lib/components/Button/useButtonStyles.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -1
- package/lib/components/CompoundButton/index.js +1 -1
- package/lib/components/CompoundButton/index.js.map +1 -1
- package/lib/components/CompoundButton/renderCompoundButton.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.js +82 -55
- package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.js +2 -1
- package/lib/components/MenuButton/MenuButton.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.types.js.map +1 -1
- package/lib/components/MenuButton/index.js +1 -1
- package/lib/components/MenuButton/index.js.map +1 -1
- package/lib/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButtonStyles.js +34 -14
- package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.js +1 -1
- package/lib/components/SplitButton/SplitButton.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib/components/SplitButton/index.js +1 -1
- package/lib/components/SplitButton/index.js.map +1 -1
- package/lib/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButton.js +5 -6
- package/lib/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButtonStyles.js +43 -34
- package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -1
- package/lib/components/ToggleButton/index.js +1 -1
- package/lib/components/ToggleButton/index.js.map +1 -1
- package/lib/components/ToggleButton/renderToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButton.js +3 -41
- package/lib/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButtonStyles.js +168 -61
- package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib/index.js +6 -5
- package/lib/index.js.map +1 -1
- package/lib/utils/index.js +2 -0
- package/lib/utils/index.js.map +1 -0
- package/lib/utils/useToggleState.js +37 -0
- package/lib/utils/useToggleState.js.map +1 -0
- package/lib-commonjs/Button.js.map +1 -1
- package/lib-commonjs/CompoundButton.js.map +1 -1
- package/lib-commonjs/MenuButton.js.map +1 -1
- package/lib-commonjs/SplitButton.js.map +1 -1
- package/lib-commonjs/ToggleButton.js.map +1 -1
- package/lib-commonjs/components/Button/Button.js.map +1 -1
- package/lib-commonjs/components/Button/Button.types.js.map +1 -1
- package/lib-commonjs/components/Button/index.js +3 -3
- package/lib-commonjs/components/Button/index.js.map +1 -1
- package/lib-commonjs/components/Button/renderButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButton.js +1 -3
- package/lib-commonjs/components/Button/useButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButtonStyles.js +246 -116
- package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/index.js +3 -3
- package/lib-commonjs/components/CompoundButton/index.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.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.js +84 -57
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.js +2 -1
- package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -1
- package/lib-commonjs/components/MenuButton/index.js +3 -3
- package/lib-commonjs/components/MenuButton/index.js.map +1 -1
- package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +36 -15
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.js +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib-commonjs/components/SplitButton/index.js +3 -3
- package/lib-commonjs/components/SplitButton/index.js.map +1 -1
- package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButton.js +5 -6
- package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +44 -35
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/index.js +3 -3
- package/lib-commonjs/components/ToggleButton/index.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +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.js +173 -63
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib-commonjs/index.js +169 -6
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/utils/index.js +10 -0
- package/lib-commonjs/utils/index.js.map +1 -0
- package/lib-commonjs/utils/useToggleState.js +48 -0
- package/lib-commonjs/utils/useToggleState.js.map +1 -0
- package/package.json +21 -25
- 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/lib/Button.d.ts +0 -1
- package/lib/CompoundButton.d.ts +0 -1
- package/lib/MenuButton.d.ts +0 -1
- package/lib/SplitButton.d.ts +0 -1
- package/lib/ToggleButton.d.ts +0 -1
- package/lib/components/Button/Button.d.ts +0 -6
- package/lib/components/Button/Button.types.d.ts +0 -62
- package/lib/components/Button/index.d.ts +0 -5
- package/lib/components/Button/renderButton.d.ts +0 -5
- package/lib/components/Button/useButton.d.ts +0 -8
- package/lib/components/Button/useButtonStyles.d.ts +0 -3
- package/lib/components/CompoundButton/CompoundButton.d.ts +0 -6
- package/lib/components/CompoundButton/CompoundButton.types.d.ts +0 -14
- package/lib/components/CompoundButton/index.d.ts +0 -5
- package/lib/components/CompoundButton/renderCompoundButton.d.ts +0 -5
- package/lib/components/CompoundButton/useCompoundButton.d.ts +0 -8
- package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +0 -3
- package/lib/components/MenuButton/MenuButton.d.ts +0 -6
- package/lib/components/MenuButton/MenuButton.types.d.ts +0 -10
- package/lib/components/MenuButton/index.d.ts +0 -5
- package/lib/components/MenuButton/renderMenuButton.d.ts +0 -5
- package/lib/components/MenuButton/useMenuButton.d.ts +0 -6
- package/lib/components/MenuButton/useMenuButtonStyles.d.ts +0 -3
- package/lib/components/SplitButton/SplitButton.d.ts +0 -7
- package/lib/components/SplitButton/SplitButton.types.d.ts +0 -21
- package/lib/components/SplitButton/index.d.ts +0 -5
- package/lib/components/SplitButton/renderSplitButton.d.ts +0 -5
- package/lib/components/SplitButton/useSplitButton.d.ts +0 -8
- package/lib/components/SplitButton/useSplitButtonStyles.d.ts +0 -3
- package/lib/components/ToggleButton/ToggleButton.d.ts +0 -6
- package/lib/components/ToggleButton/ToggleButton.types.d.ts +0 -20
- package/lib/components/ToggleButton/index.d.ts +0 -5
- package/lib/components/ToggleButton/renderToggleButton.d.ts +0 -1
- package/lib/components/ToggleButton/useToggleButton.d.ts +0 -9
- package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +0 -3
- package/lib/index.d.ts +0 -5
- package/lib-commonjs/Button.d.ts +0 -1
- package/lib-commonjs/CompoundButton.d.ts +0 -1
- package/lib-commonjs/MenuButton.d.ts +0 -1
- package/lib-commonjs/SplitButton.d.ts +0 -1
- package/lib-commonjs/ToggleButton.d.ts +0 -1
- package/lib-commonjs/components/Button/Button.d.ts +0 -6
- package/lib-commonjs/components/Button/Button.types.d.ts +0 -62
- package/lib-commonjs/components/Button/index.d.ts +0 -5
- package/lib-commonjs/components/Button/renderButton.d.ts +0 -5
- package/lib-commonjs/components/Button/useButton.d.ts +0 -8
- package/lib-commonjs/components/Button/useButtonStyles.d.ts +0 -3
- package/lib-commonjs/components/CompoundButton/CompoundButton.d.ts +0 -6
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +0 -14
- package/lib-commonjs/components/CompoundButton/index.d.ts +0 -5
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +0 -5
- package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +0 -8
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +0 -3
- package/lib-commonjs/components/MenuButton/MenuButton.d.ts +0 -6
- package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +0 -10
- package/lib-commonjs/components/MenuButton/index.d.ts +0 -5
- package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +0 -5
- package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +0 -6
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +0 -3
- package/lib-commonjs/components/SplitButton/SplitButton.d.ts +0 -7
- package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +0 -21
- package/lib-commonjs/components/SplitButton/index.d.ts +0 -5
- package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +0 -5
- package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +0 -8
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +0 -3
- package/lib-commonjs/components/ToggleButton/ToggleButton.d.ts +0 -6
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +0 -20
- package/lib-commonjs/components/ToggleButton/index.d.ts +0 -5
- package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +0 -1
- package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +0 -9
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +0 -3
- package/lib-commonjs/index.d.ts +0 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,29 +1,208 @@
|
|
|
1
1
|
# Change Log - @fluentui/react-button
|
|
2
2
|
|
|
3
|
-
This log was last generated on Tue,
|
|
3
|
+
This log was last generated on Tue, 28 Jun 2022 04:30:43 GMT and should not be manually modified.
|
|
4
4
|
|
|
5
5
|
<!-- Start content -->
|
|
6
6
|
|
|
7
|
-
## [0.0.0
|
|
7
|
+
## [0.0.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.0.0)
|
|
8
8
|
|
|
9
|
-
Tue,
|
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.
|
|
9
|
+
Tue, 28 Jun 2022 04:30:43 GMT
|
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.14..@fluentui/react-button_v0.0.0)
|
|
11
|
+
|
|
12
|
+
### Patches
|
|
13
|
+
|
|
14
|
+
- feat: Initial 9.0.0 release ([PR #23733](https://github.com/microsoft/fluentui/pull/23733) by lingfangao@hotmail.com)
|
|
15
|
+
- Bump @fluentui/keyboard-keys to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
|
|
16
|
+
- Bump @fluentui/react-aria to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
|
|
17
|
+
- Bump @fluentui/react-tabster to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
|
|
18
|
+
- Bump @fluentui/react-theme to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
|
|
19
|
+
- Bump @fluentui/react-utilities to v0.0.0 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
|
|
20
|
+
- Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220628-0417.1 ([commit](https://github.com/microsoft/fluentui/commit/3dd54b72d321c3345a21b4175ffe89e7c457c094) by beachball)
|
|
21
|
+
|
|
22
|
+
### Changes
|
|
23
|
+
|
|
24
|
+
- Button: Adding missing forced color adjust overrides. ([PR #23387](https://github.com/microsoft/fluentui/pull/23387) by Humberto.Morimoto@microsoft.com)
|
|
25
|
+
- Update 9.0.0-rc dependencies to use caret range ([PR #23732](https://github.com/microsoft/fluentui/pull/23732) by lingfangao@hotmail.com)
|
|
26
|
+
- Button: Fixing hover styles in High Contrast mode. ([PR #23384](https://github.com/microsoft/fluentui/pull/23384) by Humberto.Morimoto@microsoft.com)
|
|
27
|
+
- chore: Update @fluentui/react-icons to latest version ([PR #23459](https://github.com/microsoft/fluentui/pull/23459) by olfedias@microsoft.com)
|
|
28
|
+
- Bump Griffel dependencies ([PR #23688](https://github.com/microsoft/fluentui/pull/23688) by lingfangao@hotmail.com)
|
|
29
|
+
- README and migration guide cleanup. ([PR #23395](https://github.com/microsoft/fluentui/pull/23395) by Humberto.Morimoto@microsoft.com)
|
|
30
|
+
|
|
31
|
+
## [9.0.0-rc.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.14)
|
|
32
|
+
|
|
33
|
+
Thu, 23 Jun 2022 14:25:31 GMT
|
|
34
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.13..@fluentui/react-button_v9.0.0-rc.14)
|
|
35
|
+
|
|
36
|
+
### Changes
|
|
37
|
+
|
|
38
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.14 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
39
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.10 ([PR #23608](https://github.com/microsoft/fluentui/pull/23608) by beachball)
|
|
40
|
+
|
|
41
|
+
## [9.0.0-rc.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.13)
|
|
42
|
+
|
|
43
|
+
Tue, 31 May 2022 21:28:36 GMT
|
|
44
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.12..@fluentui/react-button_v9.0.0-rc.13)
|
|
45
|
+
|
|
46
|
+
### Changes
|
|
47
|
+
|
|
48
|
+
- chore: Update Griffel to latest version ([PR #23275](https://github.com/microsoft/fluentui/pull/23275) by olfedias@microsoft.com)
|
|
49
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
50
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.13 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
51
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.10 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
52
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.8 ([PR #23325](https://github.com/microsoft/fluentui/pull/23325) by beachball)
|
|
53
|
+
|
|
54
|
+
## [9.0.0-rc.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.12)
|
|
55
|
+
|
|
56
|
+
Thu, 26 May 2022 21:01:23 GMT
|
|
57
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.11..@fluentui/react-button_v9.0.0-rc.12)
|
|
58
|
+
|
|
59
|
+
### Changes
|
|
60
|
+
|
|
61
|
+
- ToggleButton: Differentiating hover and checked styles. ([PR #23209](https://github.com/microsoft/fluentui/pull/23209) by Humberto.Morimoto@microsoft.com)
|
|
62
|
+
- ToggleButton: Apply thicker border width to checked outline toggle buttons. ([PR #23207](https://github.com/microsoft/fluentui/pull/23207) by Humberto.Morimoto@microsoft.com)
|
|
63
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.12 ([PR #23267](https://github.com/microsoft/fluentui/pull/23267) by beachball)
|
|
64
|
+
|
|
65
|
+
## [9.0.0-rc.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.11)
|
|
66
|
+
|
|
67
|
+
Mon, 23 May 2022 18:56:41 GMT
|
|
68
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.10..@fluentui/react-button_v9.0.0-rc.11)
|
|
69
|
+
|
|
70
|
+
### Changes
|
|
71
|
+
|
|
72
|
+
- Removing <componentName>ClassName exports. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by esteban.230@hotmail.com)
|
|
73
|
+
- Removing deprecated block prop from all button components. ([PR #23092](https://github.com/microsoft/fluentui/pull/23092) by Humberto.Morimoto@microsoft.com)
|
|
74
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.11 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
75
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.9 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
76
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.7 ([PR #23146](https://github.com/microsoft/fluentui/pull/23146) by beachball)
|
|
77
|
+
|
|
78
|
+
## [9.0.0-rc.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.10)
|
|
79
|
+
|
|
80
|
+
Mon, 23 May 2022 12:14:03 GMT
|
|
81
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.9..@fluentui/react-button_v9.0.0-rc.10)
|
|
82
|
+
|
|
83
|
+
### Changes
|
|
84
|
+
|
|
85
|
+
- Using spacing tokens for button components. ([PR #23076](https://github.com/microsoft/fluentui/pull/23076) by Humberto.Morimoto@microsoft.com)
|
|
86
|
+
- Removing flex gap from button components and fixing spacing to better align with design spec. ([PR #23091](https://github.com/microsoft/fluentui/pull/23091) by Humberto.Morimoto@microsoft.com)
|
|
87
|
+
- chore: Update Griffel to latest version ([PR #22894](https://github.com/microsoft/fluentui/pull/22894) by olfedias@microsoft.com)
|
|
88
|
+
- chore: Update Griffel to latest version ([PR #23029](https://github.com/microsoft/fluentui/pull/23029) by olfedias@microsoft.com)
|
|
89
|
+
- Removing Common types from all button components. ([PR #22904](https://github.com/microsoft/fluentui/pull/22904) by humberto_makoto@hotmail.com)
|
|
90
|
+
- Removing ToggleButtonCommons type in @fluentui/react-button. ([PR #23067](https://github.com/microsoft/fluentui/pull/23067) by Humberto.Morimoto@microsoft.com)
|
|
91
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
92
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.10 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
93
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.8 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
94
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.9 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
95
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.6 ([PR #23030](https://github.com/microsoft/fluentui/pull/23030) by beachball)
|
|
96
|
+
|
|
97
|
+
## [9.0.0-rc.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.9)
|
|
98
|
+
|
|
99
|
+
Thu, 05 May 2022 18:26:29 GMT
|
|
100
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.8..@fluentui/react-button_v9.0.0-rc.9)
|
|
101
|
+
|
|
102
|
+
### Changes
|
|
103
|
+
|
|
104
|
+
- feat: ship rolluped only dts ([PR #22823](https://github.com/microsoft/fluentui/pull/22823) by martinhochel@microsoft.com)
|
|
105
|
+
- Bump @fluentui/keyboard-keys to v9.0.0-rc.6 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
|
106
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
|
107
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.9 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
|
108
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.7 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
|
109
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.8 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
|
110
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.5 ([PR #22857](https://github.com/microsoft/fluentui/pull/22857) by beachball)
|
|
111
|
+
|
|
112
|
+
## [9.0.0-rc.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.8)
|
|
113
|
+
|
|
114
|
+
Wed, 04 May 2022 13:26:38 GMT
|
|
115
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.7..@fluentui/react-button_v9.0.0-rc.8)
|
|
116
|
+
|
|
117
|
+
### Changes
|
|
118
|
+
|
|
119
|
+
- Bump @fluentui/keyboard-keys to v9.0.0-rc.5 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
120
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
121
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.8 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
122
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.6 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
123
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.7 ([PR #22786](https://github.com/microsoft/fluentui/pull/22786) by beachball)
|
|
124
|
+
|
|
125
|
+
## [9.0.0-rc.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.7)
|
|
126
|
+
|
|
127
|
+
Mon, 25 Apr 2022 09:32:16 GMT
|
|
128
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.6..@fluentui/react-button_v9.0.0-rc.7)
|
|
129
|
+
|
|
130
|
+
### Changes
|
|
131
|
+
|
|
132
|
+
- Adding useToggleState hook to scaffold toggleable behavior for individual consumption. ([PR #22279](https://github.com/microsoft/fluentui/pull/22279) by Humberto.Morimoto@microsoft.com)
|
|
133
|
+
- 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)
|
|
134
|
+
- 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)
|
|
135
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.7 ([PR #22601](https://github.com/microsoft/fluentui/pull/22601) by beachball)
|
|
136
|
+
|
|
137
|
+
## [9.0.0-rc.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.6)
|
|
138
|
+
|
|
139
|
+
Tue, 19 Apr 2022 19:17:12 GMT
|
|
140
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.5..@fluentui/react-button_v9.0.0-rc.6)
|
|
141
|
+
|
|
142
|
+
### Changes
|
|
143
|
+
|
|
144
|
+
- Disabling lint rule for deprecated [component]ClassName exports. ([PR #22131](https://github.com/microsoft/fluentui/pull/22131) by Humberto.Morimoto@microsoft.com)
|
|
145
|
+
- Button: Deprecating block prop. ([PR #22148](https://github.com/microsoft/fluentui/pull/22148) by Humberto.Morimoto@microsoft.com)
|
|
146
|
+
- Button components: Making root a non-nullable slot. ([PR #22147](https://github.com/microsoft/fluentui/pull/22147) by Humberto.Morimoto@microsoft.com)
|
|
147
|
+
- 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)
|
|
148
|
+
- Removing star exports. ([PR #22111](https://github.com/microsoft/fluentui/pull/22111) by Humberto.Morimoto@microsoft.com)
|
|
149
|
+
- Add deprecation messages to react-button ([PR #21960](https://github.com/microsoft/fluentui/pull/21960) by seanmonahan@microsoft.com)
|
|
150
|
+
- chore: Update Griffel to latest version ([PR #21976](https://github.com/microsoft/fluentui/pull/21976) by olfedias@microsoft.com)
|
|
151
|
+
- 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)
|
|
152
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
153
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
154
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.5 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
155
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.6 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
156
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.4 ([PR #21995](https://github.com/microsoft/fluentui/pull/21995) by beachball)
|
|
157
|
+
|
|
158
|
+
## [9.0.0-rc.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.5)
|
|
159
|
+
|
|
160
|
+
Fri, 04 Mar 2022 05:17:34 GMT
|
|
161
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.4..@fluentui/react-button_v9.0.0-rc.5)
|
|
162
|
+
|
|
163
|
+
### Changes
|
|
164
|
+
|
|
165
|
+
- Adding explicit export maps on all consumer packages for FUIR 8 and 9. ([PR #21508](https://github.com/microsoft/fluentui/pull/21508) by dzearing@microsoft.com)
|
|
166
|
+
- Button: Exporting classNames of individual slots. ([PR #20977](https://github.com/microsoft/fluentui/pull/20977) by Humberto.Morimoto@microsoft.com)
|
|
167
|
+
- Bump @fluentui/keyboard-keys to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
|
|
168
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
|
|
169
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
|
|
170
|
+
- Bump @fluentui/react-theme to v9.0.0-rc.4 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
|
|
171
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.5 ([PR #21947](https://github.com/microsoft/fluentui/pull/21947) by beachball)
|
|
172
|
+
|
|
173
|
+
## [9.0.0-rc.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.4)
|
|
174
|
+
|
|
175
|
+
Tue, 01 Mar 2022 02:17:35 GMT
|
|
176
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.3..@fluentui/react-button_v9.0.0-rc.4)
|
|
177
|
+
|
|
178
|
+
### Changes
|
|
179
|
+
|
|
180
|
+
- fix: Add react-theme as dependency ([PR #21825](https://github.com/microsoft/fluentui/pull/21825) by olfedias@microsoft.com)
|
|
181
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
|
182
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
|
183
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
|
|
184
|
+
|
|
185
|
+
## [9.0.0-rc.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.3)
|
|
186
|
+
|
|
187
|
+
Fri, 18 Feb 2022 13:35:28 GMT
|
|
188
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-rc.1..@fluentui/react-button_v9.0.0-rc.3)
|
|
11
189
|
|
|
12
190
|
### Changes
|
|
13
191
|
|
|
14
|
-
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/911569f28daa07a66ee59e1d8b7cfaf6f86051e9) by email not defined)
|
|
15
192
|
- SplitButton: Fixing issue where menuIcon prop was not being respected. ([PR #21683](https://github.com/microsoft/fluentui/pull/21683) by Humberto.Morimoto@microsoft.com)
|
|
16
193
|
- Button: Updating stories to fix a11y issues. ([PR #21679](https://github.com/microsoft/fluentui/pull/21679) by Humberto.Morimoto@microsoft.com)
|
|
17
194
|
- SplitButton: Fixing screen reader access issues. ([PR #21703](https://github.com/microsoft/fluentui/pull/21703) by Humberto.Morimoto@microsoft.com)
|
|
18
|
-
-
|
|
19
|
-
-
|
|
20
|
-
- Bump @fluentui/
|
|
21
|
-
- Bump @fluentui/react-
|
|
22
|
-
- Bump @fluentui/react-
|
|
195
|
+
- fix: Source maps contain original source code ([PR #21690](https://github.com/microsoft/fluentui/pull/21690) by lingfangao@hotmail.com)
|
|
196
|
+
- Button: Adding tests and fixing issues in SplitButton and ToggleButton. ([PR #21719](https://github.com/microsoft/fluentui/pull/21719) by Humberto.Morimoto@microsoft.com)
|
|
197
|
+
- Bump @fluentui/keyboard-keys to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
|
198
|
+
- Bump @fluentui/react-aria to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
|
199
|
+
- Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
|
200
|
+
- Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
|
201
|
+
- Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
|
|
23
202
|
|
|
24
203
|
## [9.0.0-rc.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-rc.1)
|
|
25
204
|
|
|
26
|
-
Thu, 10 Feb 2022 08:51:46 GMT
|
|
205
|
+
Thu, 10 Feb 2022 08:51:46 GMT
|
|
27
206
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.5..@fluentui/react-button_v9.0.0-rc.1)
|
|
28
207
|
|
|
29
208
|
### Changes
|
|
@@ -32,7 +211,7 @@ Thu, 10 Feb 2022 08:51:46 GMT
|
|
|
32
211
|
- 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)
|
|
33
212
|
- Replace make-styles packages with griffel equivalents. ([PR #21436](https://github.com/microsoft/fluentui/pull/21436) by olfedias@microsoft.com)
|
|
34
213
|
- Update react-icons usage to resizable icons ([PR #21074](https://github.com/microsoft/fluentui/pull/21074) by ololubek@microsoft.com)
|
|
35
|
-
- 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)
|
|
214
|
+
- 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)
|
|
36
215
|
- Bump Fluent UI packages to 9.0.0-rc ([PR #21623](https://github.com/microsoft/fluentui/pull/21623) by lingfangao@hotmail.com)
|
|
37
216
|
- (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
|
|
38
217
|
- 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)
|
|
@@ -56,7 +235,7 @@ Thu, 10 Feb 2022 08:51:46 GMT
|
|
|
56
235
|
|
|
57
236
|
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.5)
|
|
58
237
|
|
|
59
|
-
Thu, 25 Nov 2021 08:34:12 GMT
|
|
238
|
+
Thu, 25 Nov 2021 08:34:12 GMT
|
|
60
239
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.4..@fluentui/react-button_v9.0.0-beta.5)
|
|
61
240
|
|
|
62
241
|
### Changes
|
|
@@ -73,7 +252,7 @@ Thu, 25 Nov 2021 08:34:12 GMT
|
|
|
73
252
|
|
|
74
253
|
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.4)
|
|
75
254
|
|
|
76
|
-
Fri, 12 Nov 2021 13:25:16 GMT
|
|
255
|
+
Fri, 12 Nov 2021 13:25:16 GMT
|
|
77
256
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.3..@fluentui/react-button_v9.0.0-beta.4)
|
|
78
257
|
|
|
79
258
|
### Changes
|
|
@@ -93,7 +272,7 @@ Fri, 12 Nov 2021 13:25:16 GMT
|
|
|
93
272
|
|
|
94
273
|
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.3)
|
|
95
274
|
|
|
96
|
-
Wed, 27 Oct 2021 12:14:15 GMT
|
|
275
|
+
Wed, 27 Oct 2021 12:14:15 GMT
|
|
97
276
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.2..@fluentui/react-button_v9.0.0-beta.3)
|
|
98
277
|
|
|
99
278
|
### Changes
|
|
@@ -111,7 +290,7 @@ Wed, 27 Oct 2021 12:14:15 GMT
|
|
|
111
290
|
|
|
112
291
|
## [9.0.0-beta.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.2)
|
|
113
292
|
|
|
114
|
-
Tue, 12 Oct 2021 19:45:58 GMT
|
|
293
|
+
Tue, 12 Oct 2021 19:45:58 GMT
|
|
115
294
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.1..@fluentui/react-button_v9.0.0-beta.2)
|
|
116
295
|
|
|
117
296
|
### Changes
|
|
@@ -121,7 +300,7 @@ Tue, 12 Oct 2021 19:45:58 GMT
|
|
|
121
300
|
|
|
122
301
|
## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.1)
|
|
123
302
|
|
|
124
|
-
Wed, 06 Oct 2021 10:37:22 GMT
|
|
303
|
+
Wed, 06 Oct 2021 10:37:22 GMT
|
|
125
304
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.101..@fluentui/react-button_v9.0.0-beta.1)
|
|
126
305
|
|
|
127
306
|
### Changes
|
|
@@ -139,7 +318,7 @@ Wed, 06 Oct 2021 10:37:22 GMT
|
|
|
139
318
|
|
|
140
319
|
## [9.0.0-alpha.101](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.101)
|
|
141
320
|
|
|
142
|
-
Tue, 05 Oct 2021 12:47:58 GMT
|
|
321
|
+
Tue, 05 Oct 2021 12:47:58 GMT
|
|
143
322
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.100..@fluentui/react-button_v9.0.0-alpha.101)
|
|
144
323
|
|
|
145
324
|
### Changes
|
|
@@ -154,7 +333,7 @@ Tue, 05 Oct 2021 12:47:58 GMT
|
|
|
154
333
|
|
|
155
334
|
## [9.0.0-alpha.100](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.100)
|
|
156
335
|
|
|
157
|
-
Tue, 05 Oct 2021 09:28:07 GMT
|
|
336
|
+
Tue, 05 Oct 2021 09:28:07 GMT
|
|
158
337
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.99..@fluentui/react-button_v9.0.0-alpha.100)
|
|
159
338
|
|
|
160
339
|
### Changes
|
|
@@ -171,7 +350,7 @@ Tue, 05 Oct 2021 09:28:07 GMT
|
|
|
171
350
|
|
|
172
351
|
## [9.0.0-alpha.99](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.99)
|
|
173
352
|
|
|
174
|
-
Fri, 01 Oct 2021 14:13:08 GMT
|
|
353
|
+
Fri, 01 Oct 2021 14:13:08 GMT
|
|
175
354
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.97..@fluentui/react-button_v9.0.0-alpha.99)
|
|
176
355
|
|
|
177
356
|
### Changes
|
|
@@ -189,7 +368,7 @@ Fri, 01 Oct 2021 14:13:08 GMT
|
|
|
189
368
|
|
|
190
369
|
## [9.0.0-alpha.97](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.97)
|
|
191
370
|
|
|
192
|
-
Fri, 01 Oct 2021 12:30:46 GMT
|
|
371
|
+
Fri, 01 Oct 2021 12:30:46 GMT
|
|
193
372
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.96..@fluentui/react-button_v9.0.0-alpha.97)
|
|
194
373
|
|
|
195
374
|
### Changes
|
|
@@ -200,7 +379,7 @@ Fri, 01 Oct 2021 12:30:46 GMT
|
|
|
200
379
|
|
|
201
380
|
## [9.0.0-alpha.96](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.96)
|
|
202
381
|
|
|
203
|
-
Fri, 01 Oct 2021 09:44:56 GMT
|
|
382
|
+
Fri, 01 Oct 2021 09:44:56 GMT
|
|
204
383
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.95..@fluentui/react-button_v9.0.0-alpha.96)
|
|
205
384
|
|
|
206
385
|
### Changes
|
|
@@ -211,7 +390,7 @@ Fri, 01 Oct 2021 09:44:56 GMT
|
|
|
211
390
|
|
|
212
391
|
## [9.0.0-alpha.95](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.95)
|
|
213
392
|
|
|
214
|
-
Thu, 30 Sep 2021 09:18:15 GMT
|
|
393
|
+
Thu, 30 Sep 2021 09:18:15 GMT
|
|
215
394
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.94..@fluentui/react-button_v9.0.0-alpha.95)
|
|
216
395
|
|
|
217
396
|
### Changes
|
|
@@ -220,7 +399,7 @@ Thu, 30 Sep 2021 09:18:15 GMT
|
|
|
220
399
|
|
|
221
400
|
## [9.0.0-alpha.94](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.94)
|
|
222
401
|
|
|
223
|
-
Wed, 29 Sep 2021 08:06:11 GMT
|
|
402
|
+
Wed, 29 Sep 2021 08:06:11 GMT
|
|
224
403
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.93..@fluentui/react-button_v9.0.0-alpha.94)
|
|
225
404
|
|
|
226
405
|
### Changes
|
|
@@ -234,7 +413,7 @@ Wed, 29 Sep 2021 08:06:11 GMT
|
|
|
234
413
|
|
|
235
414
|
## [9.0.0-alpha.93](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.93)
|
|
236
415
|
|
|
237
|
-
Mon, 27 Sep 2021 08:06:00 GMT
|
|
416
|
+
Mon, 27 Sep 2021 08:06:00 GMT
|
|
238
417
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.92..@fluentui/react-button_v9.0.0-alpha.93)
|
|
239
418
|
|
|
240
419
|
### Changes
|
|
@@ -249,7 +428,7 @@ Mon, 27 Sep 2021 08:06:00 GMT
|
|
|
249
428
|
|
|
250
429
|
## [9.0.0-alpha.92](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.92)
|
|
251
430
|
|
|
252
|
-
Fri, 24 Sep 2021 09:17:17 GMT
|
|
431
|
+
Fri, 24 Sep 2021 09:17:17 GMT
|
|
253
432
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.91..@fluentui/react-button_v9.0.0-alpha.92)
|
|
254
433
|
|
|
255
434
|
### Changes
|
|
@@ -264,7 +443,7 @@ Fri, 24 Sep 2021 09:17:17 GMT
|
|
|
264
443
|
|
|
265
444
|
## [9.0.0-alpha.91](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.91)
|
|
266
445
|
|
|
267
|
-
Thu, 23 Sep 2021 08:21:34 GMT
|
|
446
|
+
Thu, 23 Sep 2021 08:21:34 GMT
|
|
268
447
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.90..@fluentui/react-button_v9.0.0-alpha.91)
|
|
269
448
|
|
|
270
449
|
### Changes
|
|
@@ -280,7 +459,7 @@ Thu, 23 Sep 2021 08:21:34 GMT
|
|
|
280
459
|
|
|
281
460
|
## [9.0.0-alpha.90](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.90)
|
|
282
461
|
|
|
283
|
-
Wed, 22 Sep 2021 10:10:07 GMT
|
|
462
|
+
Wed, 22 Sep 2021 10:10:07 GMT
|
|
284
463
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.89..@fluentui/react-button_v9.0.0-alpha.90)
|
|
285
464
|
|
|
286
465
|
### Changes
|
|
@@ -297,7 +476,7 @@ Wed, 22 Sep 2021 10:10:07 GMT
|
|
|
297
476
|
|
|
298
477
|
## [9.0.0-alpha.89](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.89)
|
|
299
478
|
|
|
300
|
-
Tue, 21 Sep 2021 07:42:34 GMT
|
|
479
|
+
Tue, 21 Sep 2021 07:42:34 GMT
|
|
301
480
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.88..@fluentui/react-button_v9.0.0-alpha.89)
|
|
302
481
|
|
|
303
482
|
### Changes
|
|
@@ -312,7 +491,7 @@ Tue, 21 Sep 2021 07:42:34 GMT
|
|
|
312
491
|
|
|
313
492
|
## [9.0.0-alpha.88](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.88)
|
|
314
493
|
|
|
315
|
-
Mon, 20 Sep 2021 07:36:26 GMT
|
|
494
|
+
Mon, 20 Sep 2021 07:36:26 GMT
|
|
316
495
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.87..@fluentui/react-button_v9.0.0-alpha.88)
|
|
317
496
|
|
|
318
497
|
### Changes
|
|
@@ -322,7 +501,7 @@ Mon, 20 Sep 2021 07:36:26 GMT
|
|
|
322
501
|
|
|
323
502
|
## [9.0.0-alpha.87](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.87)
|
|
324
503
|
|
|
325
|
-
Fri, 17 Sep 2021 07:35:26 GMT
|
|
504
|
+
Fri, 17 Sep 2021 07:35:26 GMT
|
|
326
505
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.86..@fluentui/react-button_v9.0.0-alpha.87)
|
|
327
506
|
|
|
328
507
|
### Changes
|
|
@@ -333,7 +512,7 @@ Fri, 17 Sep 2021 07:35:26 GMT
|
|
|
333
512
|
|
|
334
513
|
## [9.0.0-alpha.86](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.86)
|
|
335
514
|
|
|
336
|
-
Thu, 16 Sep 2021 07:38:39 GMT
|
|
515
|
+
Thu, 16 Sep 2021 07:38:39 GMT
|
|
337
516
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.85..@fluentui/react-button_v9.0.0-alpha.86)
|
|
338
517
|
|
|
339
518
|
### Changes
|
|
@@ -342,7 +521,7 @@ Thu, 16 Sep 2021 07:38:39 GMT
|
|
|
342
521
|
|
|
343
522
|
## [9.0.0-alpha.85](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.85)
|
|
344
523
|
|
|
345
|
-
Tue, 14 Sep 2021 20:09:02 GMT
|
|
524
|
+
Tue, 14 Sep 2021 20:09:02 GMT
|
|
346
525
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.84..@fluentui/react-button_v9.0.0-alpha.85)
|
|
347
526
|
|
|
348
527
|
### Changes
|
|
@@ -351,7 +530,7 @@ Tue, 14 Sep 2021 20:09:02 GMT
|
|
|
351
530
|
|
|
352
531
|
## [9.0.0-alpha.84](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.84)
|
|
353
532
|
|
|
354
|
-
Fri, 10 Sep 2021 16:31:53 GMT
|
|
533
|
+
Fri, 10 Sep 2021 16:31:53 GMT
|
|
355
534
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.83..@fluentui/react-button_v9.0.0-alpha.84)
|
|
356
535
|
|
|
357
536
|
### Changes
|
|
@@ -361,7 +540,7 @@ Fri, 10 Sep 2021 16:31:53 GMT
|
|
|
361
540
|
|
|
362
541
|
## [9.0.0-alpha.83](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.83)
|
|
363
542
|
|
|
364
|
-
Fri, 10 Sep 2021 07:39:51 GMT
|
|
543
|
+
Fri, 10 Sep 2021 07:39:51 GMT
|
|
365
544
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.82..@fluentui/react-button_v9.0.0-alpha.83)
|
|
366
545
|
|
|
367
546
|
### Changes
|
|
@@ -370,7 +549,7 @@ Fri, 10 Sep 2021 07:39:51 GMT
|
|
|
370
549
|
|
|
371
550
|
## [9.0.0-alpha.82](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.82)
|
|
372
551
|
|
|
373
|
-
Wed, 08 Sep 2021 07:34:11 GMT
|
|
552
|
+
Wed, 08 Sep 2021 07:34:11 GMT
|
|
374
553
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.81..@fluentui/react-button_v9.0.0-alpha.82)
|
|
375
554
|
|
|
376
555
|
### Changes
|
|
@@ -379,7 +558,7 @@ Wed, 08 Sep 2021 07:34:11 GMT
|
|
|
379
558
|
|
|
380
559
|
## [9.0.0-alpha.81](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.81)
|
|
381
560
|
|
|
382
|
-
Mon, 06 Sep 2021 07:34:53 GMT
|
|
561
|
+
Mon, 06 Sep 2021 07:34:53 GMT
|
|
383
562
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.80..@fluentui/react-button_v9.0.0-alpha.81)
|
|
384
563
|
|
|
385
564
|
### Changes
|
|
@@ -388,7 +567,7 @@ Mon, 06 Sep 2021 07:34:53 GMT
|
|
|
388
567
|
|
|
389
568
|
## [9.0.0-alpha.80](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.80)
|
|
390
569
|
|
|
391
|
-
Fri, 03 Sep 2021 00:13:07 GMT
|
|
570
|
+
Fri, 03 Sep 2021 00:13:07 GMT
|
|
392
571
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.79..@fluentui/react-button_v9.0.0-alpha.80)
|
|
393
572
|
|
|
394
573
|
### Changes
|
|
@@ -397,7 +576,7 @@ Fri, 03 Sep 2021 00:13:07 GMT
|
|
|
397
576
|
|
|
398
577
|
## [9.0.0-alpha.79](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.79)
|
|
399
578
|
|
|
400
|
-
Thu, 02 Sep 2021 07:36:46 GMT
|
|
579
|
+
Thu, 02 Sep 2021 07:36:46 GMT
|
|
401
580
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.78..@fluentui/react-button_v9.0.0-alpha.79)
|
|
402
581
|
|
|
403
582
|
### Patches
|
|
@@ -410,7 +589,7 @@ Thu, 02 Sep 2021 07:36:46 GMT
|
|
|
410
589
|
|
|
411
590
|
## [9.0.0-alpha.78](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.78)
|
|
412
591
|
|
|
413
|
-
Wed, 01 Sep 2021 07:39:56 GMT
|
|
592
|
+
Wed, 01 Sep 2021 07:39:56 GMT
|
|
414
593
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.77..@fluentui/react-button_v9.0.0-alpha.78)
|
|
415
594
|
|
|
416
595
|
### Changes
|
|
@@ -419,7 +598,7 @@ Wed, 01 Sep 2021 07:39:56 GMT
|
|
|
419
598
|
|
|
420
599
|
## [9.0.0-alpha.77](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.77)
|
|
421
600
|
|
|
422
|
-
Tue, 31 Aug 2021 07:37:47 GMT
|
|
601
|
+
Tue, 31 Aug 2021 07:37:47 GMT
|
|
423
602
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.76..@fluentui/react-button_v9.0.0-alpha.77)
|
|
424
603
|
|
|
425
604
|
### Changes
|
|
@@ -428,7 +607,7 @@ Tue, 31 Aug 2021 07:37:47 GMT
|
|
|
428
607
|
|
|
429
608
|
## [9.0.0-alpha.76](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.76)
|
|
430
609
|
|
|
431
|
-
Mon, 30 Aug 2021 07:35:05 GMT
|
|
610
|
+
Mon, 30 Aug 2021 07:35:05 GMT
|
|
432
611
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.75..@fluentui/react-button_v9.0.0-alpha.76)
|
|
433
612
|
|
|
434
613
|
### Changes
|
|
@@ -437,7 +616,7 @@ Mon, 30 Aug 2021 07:35:05 GMT
|
|
|
437
616
|
|
|
438
617
|
## [9.0.0-alpha.75](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.75)
|
|
439
618
|
|
|
440
|
-
Fri, 27 Aug 2021 07:33:32 GMT
|
|
619
|
+
Fri, 27 Aug 2021 07:33:32 GMT
|
|
441
620
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.74..@fluentui/react-button_v9.0.0-alpha.75)
|
|
442
621
|
|
|
443
622
|
### Changes
|
|
@@ -446,7 +625,7 @@ Fri, 27 Aug 2021 07:33:32 GMT
|
|
|
446
625
|
|
|
447
626
|
## [9.0.0-alpha.74](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.74)
|
|
448
627
|
|
|
449
|
-
Thu, 26 Aug 2021 07:35:43 GMT
|
|
628
|
+
Thu, 26 Aug 2021 07:35:43 GMT
|
|
450
629
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.73..@fluentui/react-button_v9.0.0-alpha.74)
|
|
451
630
|
|
|
452
631
|
### Changes
|
|
@@ -455,7 +634,7 @@ Thu, 26 Aug 2021 07:35:43 GMT
|
|
|
455
634
|
|
|
456
635
|
## [9.0.0-alpha.73](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.73)
|
|
457
636
|
|
|
458
|
-
Fri, 20 Aug 2021 07:37:28 GMT
|
|
637
|
+
Fri, 20 Aug 2021 07:37:28 GMT
|
|
459
638
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.72..@fluentui/react-button_v9.0.0-alpha.73)
|
|
460
639
|
|
|
461
640
|
### Changes
|
|
@@ -464,7 +643,7 @@ Fri, 20 Aug 2021 07:37:28 GMT
|
|
|
464
643
|
|
|
465
644
|
## [9.0.0-alpha.72](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.72)
|
|
466
645
|
|
|
467
|
-
Thu, 19 Aug 2021 07:41:35 GMT
|
|
646
|
+
Thu, 19 Aug 2021 07:41:35 GMT
|
|
468
647
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.71..@fluentui/react-button_v9.0.0-alpha.72)
|
|
469
648
|
|
|
470
649
|
### Changes
|
|
@@ -473,7 +652,7 @@ Thu, 19 Aug 2021 07:41:35 GMT
|
|
|
473
652
|
|
|
474
653
|
## [9.0.0-alpha.71](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.71)
|
|
475
654
|
|
|
476
|
-
Wed, 18 Aug 2021 07:33:54 GMT
|
|
655
|
+
Wed, 18 Aug 2021 07:33:54 GMT
|
|
477
656
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.70..@fluentui/react-button_v9.0.0-alpha.71)
|
|
478
657
|
|
|
479
658
|
### Changes
|
|
@@ -482,7 +661,7 @@ Wed, 18 Aug 2021 07:33:54 GMT
|
|
|
482
661
|
|
|
483
662
|
## [9.0.0-alpha.70](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.70)
|
|
484
663
|
|
|
485
|
-
Fri, 13 Aug 2021 07:36:34 GMT
|
|
664
|
+
Fri, 13 Aug 2021 07:36:34 GMT
|
|
486
665
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.69..@fluentui/react-button_v9.0.0-alpha.70)
|
|
487
666
|
|
|
488
667
|
### Changes
|
|
@@ -491,7 +670,7 @@ Fri, 13 Aug 2021 07:36:34 GMT
|
|
|
491
670
|
|
|
492
671
|
## [9.0.0-alpha.69](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.69)
|
|
493
672
|
|
|
494
|
-
Wed, 11 Aug 2021 07:34:54 GMT
|
|
673
|
+
Wed, 11 Aug 2021 07:34:54 GMT
|
|
495
674
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.68..@fluentui/react-button_v9.0.0-alpha.69)
|
|
496
675
|
|
|
497
676
|
### Changes
|
|
@@ -500,7 +679,7 @@ Wed, 11 Aug 2021 07:34:54 GMT
|
|
|
500
679
|
|
|
501
680
|
## [9.0.0-alpha.68](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.68)
|
|
502
681
|
|
|
503
|
-
Fri, 06 Aug 2021 07:35:14 GMT
|
|
682
|
+
Fri, 06 Aug 2021 07:35:14 GMT
|
|
504
683
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.67..@fluentui/react-button_v9.0.0-alpha.68)
|
|
505
684
|
|
|
506
685
|
### Changes
|
|
@@ -509,7 +688,7 @@ Fri, 06 Aug 2021 07:35:14 GMT
|
|
|
509
688
|
|
|
510
689
|
## [9.0.0-alpha.67](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.67)
|
|
511
690
|
|
|
512
|
-
Tue, 03 Aug 2021 07:39:30 GMT
|
|
691
|
+
Tue, 03 Aug 2021 07:39:30 GMT
|
|
513
692
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.66..@fluentui/react-button_v9.0.0-alpha.67)
|
|
514
693
|
|
|
515
694
|
### Patches
|
|
@@ -522,7 +701,7 @@ Tue, 03 Aug 2021 07:39:30 GMT
|
|
|
522
701
|
|
|
523
702
|
## [9.0.0-alpha.66](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.66)
|
|
524
703
|
|
|
525
|
-
Mon, 02 Aug 2021 07:36:20 GMT
|
|
704
|
+
Mon, 02 Aug 2021 07:36:20 GMT
|
|
526
705
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.65..@fluentui/react-button_v9.0.0-alpha.66)
|
|
527
706
|
|
|
528
707
|
### Changes
|
|
@@ -531,7 +710,7 @@ Mon, 02 Aug 2021 07:36:20 GMT
|
|
|
531
710
|
|
|
532
711
|
## [9.0.0-alpha.65](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.65)
|
|
533
712
|
|
|
534
|
-
Mon, 26 Jul 2021 07:37:30 GMT
|
|
713
|
+
Mon, 26 Jul 2021 07:37:30 GMT
|
|
535
714
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.64..@fluentui/react-button_v9.0.0-alpha.65)
|
|
536
715
|
|
|
537
716
|
### Changes
|
|
@@ -540,7 +719,7 @@ Mon, 26 Jul 2021 07:37:30 GMT
|
|
|
540
719
|
|
|
541
720
|
## [9.0.0-alpha.64](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.64)
|
|
542
721
|
|
|
543
|
-
Fri, 23 Jul 2021 07:38:19 GMT
|
|
722
|
+
Fri, 23 Jul 2021 07:38:19 GMT
|
|
544
723
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.63..@fluentui/react-button_v9.0.0-alpha.64)
|
|
545
724
|
|
|
546
725
|
### Changes
|
|
@@ -551,7 +730,7 @@ Fri, 23 Jul 2021 07:38:19 GMT
|
|
|
551
730
|
|
|
552
731
|
## [9.0.0-alpha.63](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.63)
|
|
553
732
|
|
|
554
|
-
Thu, 22 Jul 2021 07:36:55 GMT
|
|
733
|
+
Thu, 22 Jul 2021 07:36:55 GMT
|
|
555
734
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.62..@fluentui/react-button_v9.0.0-alpha.63)
|
|
556
735
|
|
|
557
736
|
### Changes
|
|
@@ -560,7 +739,7 @@ Thu, 22 Jul 2021 07:36:55 GMT
|
|
|
560
739
|
|
|
561
740
|
## [9.0.0-alpha.62](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.62)
|
|
562
741
|
|
|
563
|
-
Tue, 20 Jul 2021 22:23:17 GMT
|
|
742
|
+
Tue, 20 Jul 2021 22:23:17 GMT
|
|
564
743
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.61..@fluentui/react-button_v9.0.0-alpha.62)
|
|
565
744
|
|
|
566
745
|
### Changes
|
|
@@ -569,7 +748,7 @@ Tue, 20 Jul 2021 22:23:17 GMT
|
|
|
569
748
|
|
|
570
749
|
## [9.0.0-alpha.61](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.61)
|
|
571
750
|
|
|
572
|
-
Fri, 16 Jul 2021 22:53:17 GMT
|
|
751
|
+
Fri, 16 Jul 2021 22:53:17 GMT
|
|
573
752
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.60..@fluentui/react-button_v9.0.0-alpha.61)
|
|
574
753
|
|
|
575
754
|
### Changes
|
|
@@ -578,7 +757,7 @@ Fri, 16 Jul 2021 22:53:17 GMT
|
|
|
578
757
|
|
|
579
758
|
## [9.0.0-alpha.60](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.60)
|
|
580
759
|
|
|
581
|
-
Thu, 15 Jul 2021 07:36:18 GMT
|
|
760
|
+
Thu, 15 Jul 2021 07:36:18 GMT
|
|
582
761
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.59..@fluentui/react-button_v9.0.0-alpha.60)
|
|
583
762
|
|
|
584
763
|
### Changes
|
|
@@ -587,7 +766,7 @@ Thu, 15 Jul 2021 07:36:18 GMT
|
|
|
587
766
|
|
|
588
767
|
## [9.0.0-alpha.59](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.59)
|
|
589
768
|
|
|
590
|
-
Tue, 13 Jul 2021 22:32:58 GMT
|
|
769
|
+
Tue, 13 Jul 2021 22:32:58 GMT
|
|
591
770
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.58..@fluentui/react-button_v9.0.0-alpha.59)
|
|
592
771
|
|
|
593
772
|
### Patches
|
|
@@ -596,7 +775,7 @@ Tue, 13 Jul 2021 22:32:58 GMT
|
|
|
596
775
|
|
|
597
776
|
## [9.0.0-alpha.58](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.58)
|
|
598
777
|
|
|
599
|
-
Tue, 13 Jul 2021 07:35:36 GMT
|
|
778
|
+
Tue, 13 Jul 2021 07:35:36 GMT
|
|
600
779
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.57..@fluentui/react-button_v9.0.0-alpha.58)
|
|
601
780
|
|
|
602
781
|
### Changes
|
|
@@ -605,7 +784,7 @@ Tue, 13 Jul 2021 07:35:36 GMT
|
|
|
605
784
|
|
|
606
785
|
## [9.0.0-alpha.57](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.57)
|
|
607
786
|
|
|
608
|
-
Mon, 12 Jul 2021 07:33:23 GMT
|
|
787
|
+
Mon, 12 Jul 2021 07:33:23 GMT
|
|
609
788
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.56..@fluentui/react-button_v9.0.0-alpha.57)
|
|
610
789
|
|
|
611
790
|
### Changes
|
|
@@ -614,7 +793,7 @@ Mon, 12 Jul 2021 07:33:23 GMT
|
|
|
614
793
|
|
|
615
794
|
## [9.0.0-alpha.56](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.56)
|
|
616
795
|
|
|
617
|
-
Fri, 09 Jul 2021 07:39:31 GMT
|
|
796
|
+
Fri, 09 Jul 2021 07:39:31 GMT
|
|
618
797
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.55..@fluentui/react-button_v9.0.0-alpha.56)
|
|
619
798
|
|
|
620
799
|
### Patches
|
|
@@ -627,7 +806,7 @@ Fri, 09 Jul 2021 07:39:31 GMT
|
|
|
627
806
|
|
|
628
807
|
## [9.0.0-alpha.55](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.55)
|
|
629
808
|
|
|
630
|
-
Fri, 02 Jul 2021 23:15:55 GMT
|
|
809
|
+
Fri, 02 Jul 2021 23:15:55 GMT
|
|
631
810
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.54..@fluentui/react-button_v9.0.0-alpha.55)
|
|
632
811
|
|
|
633
812
|
### Changes
|
|
@@ -636,7 +815,7 @@ Fri, 02 Jul 2021 23:15:55 GMT
|
|
|
636
815
|
|
|
637
816
|
## [9.0.0-alpha.54](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.54)
|
|
638
817
|
|
|
639
|
-
Fri, 02 Jul 2021 07:37:06 GMT
|
|
818
|
+
Fri, 02 Jul 2021 07:37:06 GMT
|
|
640
819
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.53..@fluentui/react-button_v9.0.0-alpha.54)
|
|
641
820
|
|
|
642
821
|
### Changes
|
|
@@ -645,7 +824,7 @@ Fri, 02 Jul 2021 07:37:06 GMT
|
|
|
645
824
|
|
|
646
825
|
## [9.0.0-alpha.53](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.53)
|
|
647
826
|
|
|
648
|
-
Thu, 01 Jul 2021 07:35:05 GMT
|
|
827
|
+
Thu, 01 Jul 2021 07:35:05 GMT
|
|
649
828
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.52..@fluentui/react-button_v9.0.0-alpha.53)
|
|
650
829
|
|
|
651
830
|
### Changes
|
|
@@ -654,7 +833,7 @@ Thu, 01 Jul 2021 07:35:05 GMT
|
|
|
654
833
|
|
|
655
834
|
## [9.0.0-alpha.52](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.52)
|
|
656
835
|
|
|
657
|
-
Wed, 30 Jun 2021 07:38:35 GMT
|
|
836
|
+
Wed, 30 Jun 2021 07:38:35 GMT
|
|
658
837
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.51..@fluentui/react-button_v9.0.0-alpha.52)
|
|
659
838
|
|
|
660
839
|
### Changes
|
|
@@ -663,7 +842,7 @@ Wed, 30 Jun 2021 07:38:35 GMT
|
|
|
663
842
|
|
|
664
843
|
## [9.0.0-alpha.51](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.51)
|
|
665
844
|
|
|
666
|
-
Tue, 29 Jun 2021 07:33:32 GMT
|
|
845
|
+
Tue, 29 Jun 2021 07:33:32 GMT
|
|
667
846
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.50..@fluentui/react-button_v9.0.0-alpha.51)
|
|
668
847
|
|
|
669
848
|
### Changes
|
|
@@ -672,7 +851,7 @@ Tue, 29 Jun 2021 07:33:32 GMT
|
|
|
672
851
|
|
|
673
852
|
## [9.0.0-alpha.50](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.50)
|
|
674
853
|
|
|
675
|
-
Wed, 23 Jun 2021 07:31:49 GMT
|
|
854
|
+
Wed, 23 Jun 2021 07:31:49 GMT
|
|
676
855
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.49..@fluentui/react-button_v9.0.0-alpha.50)
|
|
677
856
|
|
|
678
857
|
### Changes
|
|
@@ -681,7 +860,7 @@ Wed, 23 Jun 2021 07:31:49 GMT
|
|
|
681
860
|
|
|
682
861
|
## [9.0.0-alpha.49](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.49)
|
|
683
862
|
|
|
684
|
-
Tue, 22 Jun 2021 07:35:11 GMT
|
|
863
|
+
Tue, 22 Jun 2021 07:35:11 GMT
|
|
685
864
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.48..@fluentui/react-button_v9.0.0-alpha.49)
|
|
686
865
|
|
|
687
866
|
### Changes
|
|
@@ -690,7 +869,7 @@ Tue, 22 Jun 2021 07:35:11 GMT
|
|
|
690
869
|
|
|
691
870
|
## [9.0.0-alpha.48](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.48)
|
|
692
871
|
|
|
693
|
-
Tue, 15 Jun 2021 07:40:20 GMT
|
|
872
|
+
Tue, 15 Jun 2021 07:40:20 GMT
|
|
694
873
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.47..@fluentui/react-button_v9.0.0-alpha.48)
|
|
695
874
|
|
|
696
875
|
### Changes
|
|
@@ -699,7 +878,7 @@ Tue, 15 Jun 2021 07:40:20 GMT
|
|
|
699
878
|
|
|
700
879
|
## [9.0.0-alpha.47](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.47)
|
|
701
880
|
|
|
702
|
-
Fri, 11 Jun 2021 07:34:26 GMT
|
|
881
|
+
Fri, 11 Jun 2021 07:34:26 GMT
|
|
703
882
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.46..@fluentui/react-button_v9.0.0-alpha.47)
|
|
704
883
|
|
|
705
884
|
### Changes
|
|
@@ -710,7 +889,7 @@ Fri, 11 Jun 2021 07:34:26 GMT
|
|
|
710
889
|
|
|
711
890
|
## [9.0.0-alpha.46](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.46)
|
|
712
891
|
|
|
713
|
-
Thu, 10 Jun 2021 07:32:59 GMT
|
|
892
|
+
Thu, 10 Jun 2021 07:32:59 GMT
|
|
714
893
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.45..@fluentui/react-button_v9.0.0-alpha.46)
|
|
715
894
|
|
|
716
895
|
### Changes
|
|
@@ -719,7 +898,7 @@ Thu, 10 Jun 2021 07:32:59 GMT
|
|
|
719
898
|
|
|
720
899
|
## [9.0.0-alpha.45](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.45)
|
|
721
900
|
|
|
722
|
-
Wed, 09 Jun 2021 07:33:38 GMT
|
|
901
|
+
Wed, 09 Jun 2021 07:33:38 GMT
|
|
723
902
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.44..@fluentui/react-button_v9.0.0-alpha.45)
|
|
724
903
|
|
|
725
904
|
### Changes
|
|
@@ -728,7 +907,7 @@ Wed, 09 Jun 2021 07:33:38 GMT
|
|
|
728
907
|
|
|
729
908
|
## [9.0.0-alpha.44](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.44)
|
|
730
909
|
|
|
731
|
-
Mon, 07 Jun 2021 07:38:15 GMT
|
|
910
|
+
Mon, 07 Jun 2021 07:38:15 GMT
|
|
732
911
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.43..@fluentui/react-button_v9.0.0-alpha.44)
|
|
733
912
|
|
|
734
913
|
### Patches
|
|
@@ -741,7 +920,7 @@ Mon, 07 Jun 2021 07:38:15 GMT
|
|
|
741
920
|
|
|
742
921
|
## [9.0.0-alpha.43](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.43)
|
|
743
922
|
|
|
744
|
-
Fri, 04 Jun 2021 07:37:23 GMT
|
|
923
|
+
Fri, 04 Jun 2021 07:37:23 GMT
|
|
745
924
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.42..@fluentui/react-button_v9.0.0-alpha.43)
|
|
746
925
|
|
|
747
926
|
### Changes
|
|
@@ -750,7 +929,7 @@ Fri, 04 Jun 2021 07:37:23 GMT
|
|
|
750
929
|
|
|
751
930
|
## [9.0.0-alpha.42](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.42)
|
|
752
931
|
|
|
753
|
-
Thu, 03 Jun 2021 07:36:03 GMT
|
|
932
|
+
Thu, 03 Jun 2021 07:36:03 GMT
|
|
754
933
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.41..@fluentui/react-button_v9.0.0-alpha.42)
|
|
755
934
|
|
|
756
935
|
### Changes
|
|
@@ -759,7 +938,7 @@ Thu, 03 Jun 2021 07:36:03 GMT
|
|
|
759
938
|
|
|
760
939
|
## [9.0.0-alpha.41](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.41)
|
|
761
940
|
|
|
762
|
-
Wed, 02 Jun 2021 07:37:15 GMT
|
|
941
|
+
Wed, 02 Jun 2021 07:37:15 GMT
|
|
763
942
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.40..@fluentui/react-button_v9.0.0-alpha.41)
|
|
764
943
|
|
|
765
944
|
### Changes
|
|
@@ -768,7 +947,7 @@ Wed, 02 Jun 2021 07:37:15 GMT
|
|
|
768
947
|
|
|
769
948
|
## [9.0.0-alpha.40](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.40)
|
|
770
949
|
|
|
771
|
-
Wed, 26 May 2021 07:35:43 GMT
|
|
950
|
+
Wed, 26 May 2021 07:35:43 GMT
|
|
772
951
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.39..@fluentui/react-button_v9.0.0-alpha.40)
|
|
773
952
|
|
|
774
953
|
### Changes
|
|
@@ -777,7 +956,7 @@ Wed, 26 May 2021 07:35:43 GMT
|
|
|
777
956
|
|
|
778
957
|
## [9.0.0-alpha.39](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.39)
|
|
779
958
|
|
|
780
|
-
Fri, 21 May 2021 07:34:54 GMT
|
|
959
|
+
Fri, 21 May 2021 07:34:54 GMT
|
|
781
960
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.38..@fluentui/react-button_v9.0.0-alpha.39)
|
|
782
961
|
|
|
783
962
|
### Changes
|
|
@@ -786,7 +965,7 @@ Fri, 21 May 2021 07:34:54 GMT
|
|
|
786
965
|
|
|
787
966
|
## [9.0.0-alpha.38](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.38)
|
|
788
967
|
|
|
789
|
-
Thu, 20 May 2021 07:41:54 GMT
|
|
968
|
+
Thu, 20 May 2021 07:41:54 GMT
|
|
790
969
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.37..@fluentui/react-button_v9.0.0-alpha.38)
|
|
791
970
|
|
|
792
971
|
### Patches
|
|
@@ -799,7 +978,7 @@ Thu, 20 May 2021 07:41:54 GMT
|
|
|
799
978
|
|
|
800
979
|
## [9.0.0-alpha.37](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.37)
|
|
801
980
|
|
|
802
|
-
Wed, 19 May 2021 07:34:20 GMT
|
|
981
|
+
Wed, 19 May 2021 07:34:20 GMT
|
|
803
982
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.36..@fluentui/react-button_v9.0.0-alpha.37)
|
|
804
983
|
|
|
805
984
|
### Patches
|
|
@@ -812,7 +991,7 @@ Wed, 19 May 2021 07:34:20 GMT
|
|
|
812
991
|
|
|
813
992
|
## [9.0.0-alpha.36](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.36)
|
|
814
993
|
|
|
815
|
-
Tue, 18 May 2021 07:34:38 GMT
|
|
994
|
+
Tue, 18 May 2021 07:34:38 GMT
|
|
816
995
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.35..@fluentui/react-button_v9.0.0-alpha.36)
|
|
817
996
|
|
|
818
997
|
### Changes
|
|
@@ -821,7 +1000,7 @@ Tue, 18 May 2021 07:34:38 GMT
|
|
|
821
1000
|
|
|
822
1001
|
## [9.0.0-alpha.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.35)
|
|
823
1002
|
|
|
824
|
-
Thu, 13 May 2021 07:36:55 GMT
|
|
1003
|
+
Thu, 13 May 2021 07:36:55 GMT
|
|
825
1004
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.34..@fluentui/react-button_v9.0.0-alpha.35)
|
|
826
1005
|
|
|
827
1006
|
### Changes
|
|
@@ -830,7 +1009,7 @@ Thu, 13 May 2021 07:36:55 GMT
|
|
|
830
1009
|
|
|
831
1010
|
## [9.0.0-alpha.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.34)
|
|
832
1011
|
|
|
833
|
-
Wed, 12 May 2021 07:36:20 GMT
|
|
1012
|
+
Wed, 12 May 2021 07:36:20 GMT
|
|
834
1013
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.33..@fluentui/react-button_v9.0.0-alpha.34)
|
|
835
1014
|
|
|
836
1015
|
### Changes
|
|
@@ -839,7 +1018,7 @@ Wed, 12 May 2021 07:36:20 GMT
|
|
|
839
1018
|
|
|
840
1019
|
## [9.0.0-alpha.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.33)
|
|
841
1020
|
|
|
842
|
-
Mon, 10 May 2021 07:36:07 GMT
|
|
1021
|
+
Mon, 10 May 2021 07:36:07 GMT
|
|
843
1022
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.32..@fluentui/react-button_v9.0.0-alpha.33)
|
|
844
1023
|
|
|
845
1024
|
### Changes
|
|
@@ -848,7 +1027,7 @@ Mon, 10 May 2021 07:36:07 GMT
|
|
|
848
1027
|
|
|
849
1028
|
## [9.0.0-alpha.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.32)
|
|
850
1029
|
|
|
851
|
-
Wed, 05 May 2021 07:36:50 GMT
|
|
1030
|
+
Wed, 05 May 2021 07:36:50 GMT
|
|
852
1031
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.31..@fluentui/react-button_v9.0.0-alpha.32)
|
|
853
1032
|
|
|
854
1033
|
### Changes
|
|
@@ -857,7 +1036,7 @@ Wed, 05 May 2021 07:36:50 GMT
|
|
|
857
1036
|
|
|
858
1037
|
## [9.0.0-alpha.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.31)
|
|
859
1038
|
|
|
860
|
-
Mon, 03 May 2021 07:45:19 GMT
|
|
1039
|
+
Mon, 03 May 2021 07:45:19 GMT
|
|
861
1040
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.30..@fluentui/react-button_v9.0.0-alpha.31)
|
|
862
1041
|
|
|
863
1042
|
### Changes
|
|
@@ -866,7 +1045,7 @@ Mon, 03 May 2021 07:45:19 GMT
|
|
|
866
1045
|
|
|
867
1046
|
## [9.0.0-alpha.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.30)
|
|
868
1047
|
|
|
869
|
-
Fri, 30 Apr 2021 07:42:23 GMT
|
|
1048
|
+
Fri, 30 Apr 2021 07:42:23 GMT
|
|
870
1049
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.29..@fluentui/react-button_v9.0.0-alpha.30)
|
|
871
1050
|
|
|
872
1051
|
### Patches
|
|
@@ -883,7 +1062,7 @@ Fri, 30 Apr 2021 07:42:23 GMT
|
|
|
883
1062
|
|
|
884
1063
|
## [9.0.0-alpha.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.29)
|
|
885
1064
|
|
|
886
|
-
Tue, 27 Apr 2021 07:34:03 GMT
|
|
1065
|
+
Tue, 27 Apr 2021 07:34:03 GMT
|
|
887
1066
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.28..@fluentui/react-button_v9.0.0-alpha.29)
|
|
888
1067
|
|
|
889
1068
|
### Changes
|
|
@@ -892,7 +1071,7 @@ Tue, 27 Apr 2021 07:34:03 GMT
|
|
|
892
1071
|
|
|
893
1072
|
## [9.0.0-alpha.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.28)
|
|
894
1073
|
|
|
895
|
-
Mon, 26 Apr 2021 07:34:31 GMT
|
|
1074
|
+
Mon, 26 Apr 2021 07:34:31 GMT
|
|
896
1075
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.27..@fluentui/react-button_v9.0.0-alpha.28)
|
|
897
1076
|
|
|
898
1077
|
### Changes
|
|
@@ -901,7 +1080,7 @@ Mon, 26 Apr 2021 07:34:31 GMT
|
|
|
901
1080
|
|
|
902
1081
|
## [9.0.0-alpha.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.27)
|
|
903
1082
|
|
|
904
|
-
Fri, 23 Apr 2021 07:37:10 GMT
|
|
1083
|
+
Fri, 23 Apr 2021 07:37:10 GMT
|
|
905
1084
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.26..@fluentui/react-button_v9.0.0-alpha.27)
|
|
906
1085
|
|
|
907
1086
|
### Patches
|
|
@@ -914,7 +1093,7 @@ Fri, 23 Apr 2021 07:37:10 GMT
|
|
|
914
1093
|
|
|
915
1094
|
## [9.0.0-alpha.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.26)
|
|
916
1095
|
|
|
917
|
-
Thu, 22 Apr 2021 07:33:28 GMT
|
|
1096
|
+
Thu, 22 Apr 2021 07:33:28 GMT
|
|
918
1097
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.25..@fluentui/react-button_v9.0.0-alpha.26)
|
|
919
1098
|
|
|
920
1099
|
### Changes
|
|
@@ -923,7 +1102,7 @@ Thu, 22 Apr 2021 07:33:28 GMT
|
|
|
923
1102
|
|
|
924
1103
|
## [9.0.0-alpha.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.25)
|
|
925
1104
|
|
|
926
|
-
Wed, 21 Apr 2021 07:31:50 GMT
|
|
1105
|
+
Wed, 21 Apr 2021 07:31:50 GMT
|
|
927
1106
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.24..@fluentui/react-button_v9.0.0-alpha.25)
|
|
928
1107
|
|
|
929
1108
|
### Changes
|
|
@@ -932,7 +1111,7 @@ Wed, 21 Apr 2021 07:31:50 GMT
|
|
|
932
1111
|
|
|
933
1112
|
## [9.0.0-alpha.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.24)
|
|
934
1113
|
|
|
935
|
-
Tue, 20 Apr 2021 07:31:35 GMT
|
|
1114
|
+
Tue, 20 Apr 2021 07:31:35 GMT
|
|
936
1115
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.23..@fluentui/react-button_v9.0.0-alpha.24)
|
|
937
1116
|
|
|
938
1117
|
### Changes
|
|
@@ -941,7 +1120,7 @@ Tue, 20 Apr 2021 07:31:35 GMT
|
|
|
941
1120
|
|
|
942
1121
|
## [9.0.0-alpha.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.23)
|
|
943
1122
|
|
|
944
|
-
Fri, 16 Apr 2021 18:08:21 GMT
|
|
1123
|
+
Fri, 16 Apr 2021 18:08:21 GMT
|
|
945
1124
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.22..@fluentui/react-button_v9.0.0-alpha.23)
|
|
946
1125
|
|
|
947
1126
|
### Changes
|
|
@@ -950,7 +1129,7 @@ Fri, 16 Apr 2021 18:08:21 GMT
|
|
|
950
1129
|
|
|
951
1130
|
## [9.0.0-alpha.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.22)
|
|
952
1131
|
|
|
953
|
-
Wed, 14 Apr 2021 07:34:12 GMT
|
|
1132
|
+
Wed, 14 Apr 2021 07:34:12 GMT
|
|
954
1133
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.21..@fluentui/react-button_v9.0.0-alpha.22)
|
|
955
1134
|
|
|
956
1135
|
### Changes
|
|
@@ -959,7 +1138,7 @@ Wed, 14 Apr 2021 07:34:12 GMT
|
|
|
959
1138
|
|
|
960
1139
|
## [9.0.0-alpha.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.21)
|
|
961
1140
|
|
|
962
|
-
Fri, 09 Apr 2021 07:31:06 GMT
|
|
1141
|
+
Fri, 09 Apr 2021 07:31:06 GMT
|
|
963
1142
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.20..@fluentui/react-button_v9.0.0-alpha.21)
|
|
964
1143
|
|
|
965
1144
|
### Changes
|
|
@@ -968,7 +1147,7 @@ Fri, 09 Apr 2021 07:31:06 GMT
|
|
|
968
1147
|
|
|
969
1148
|
## [9.0.0-alpha.20](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.20)
|
|
970
1149
|
|
|
971
|
-
Thu, 08 Apr 2021 07:33:06 GMT
|
|
1150
|
+
Thu, 08 Apr 2021 07:33:06 GMT
|
|
972
1151
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.19..@fluentui/react-button_v9.0.0-alpha.20)
|
|
973
1152
|
|
|
974
1153
|
### Changes
|
|
@@ -977,7 +1156,7 @@ Thu, 08 Apr 2021 07:33:06 GMT
|
|
|
977
1156
|
|
|
978
1157
|
## [9.0.0-alpha.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.19)
|
|
979
1158
|
|
|
980
|
-
Thu, 01 Apr 2021 20:13:37 GMT
|
|
1159
|
+
Thu, 01 Apr 2021 20:13:37 GMT
|
|
981
1160
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.18..@fluentui/react-button_v9.0.0-alpha.19)
|
|
982
1161
|
|
|
983
1162
|
### Changes
|
|
@@ -986,7 +1165,7 @@ Thu, 01 Apr 2021 20:13:37 GMT
|
|
|
986
1165
|
|
|
987
1166
|
## [9.0.0-alpha.18](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.18)
|
|
988
1167
|
|
|
989
|
-
Wed, 31 Mar 2021 00:53:43 GMT
|
|
1168
|
+
Wed, 31 Mar 2021 00:53:43 GMT
|
|
990
1169
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.17..@fluentui/react-button_v9.0.0-alpha.18)
|
|
991
1170
|
|
|
992
1171
|
### Patches
|
|
@@ -1003,7 +1182,7 @@ Wed, 31 Mar 2021 00:53:43 GMT
|
|
|
1003
1182
|
|
|
1004
1183
|
## [9.0.0-alpha.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.17)
|
|
1005
1184
|
|
|
1006
|
-
Tue, 30 Mar 2021 07:34:45 GMT
|
|
1185
|
+
Tue, 30 Mar 2021 07:34:45 GMT
|
|
1007
1186
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.16..@fluentui/react-button_v9.0.0-alpha.17)
|
|
1008
1187
|
|
|
1009
1188
|
### Patches
|
|
@@ -1016,7 +1195,7 @@ Tue, 30 Mar 2021 07:34:45 GMT
|
|
|
1016
1195
|
|
|
1017
1196
|
## [9.0.0-alpha.16](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.16)
|
|
1018
1197
|
|
|
1019
|
-
Fri, 26 Mar 2021 07:32:34 GMT
|
|
1198
|
+
Fri, 26 Mar 2021 07:32:34 GMT
|
|
1020
1199
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.15..@fluentui/react-button_v9.0.0-alpha.16)
|
|
1021
1200
|
|
|
1022
1201
|
### Changes
|
|
@@ -1026,7 +1205,7 @@ Fri, 26 Mar 2021 07:32:34 GMT
|
|
|
1026
1205
|
|
|
1027
1206
|
## [9.0.0-alpha.15](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.15)
|
|
1028
1207
|
|
|
1029
|
-
Thu, 25 Mar 2021 07:33:24 GMT
|
|
1208
|
+
Thu, 25 Mar 2021 07:33:24 GMT
|
|
1030
1209
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.14..@fluentui/react-button_v9.0.0-alpha.15)
|
|
1031
1210
|
|
|
1032
1211
|
### Changes
|
|
@@ -1036,7 +1215,7 @@ Thu, 25 Mar 2021 07:33:24 GMT
|
|
|
1036
1215
|
|
|
1037
1216
|
## [9.0.0-alpha.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.14)
|
|
1038
1217
|
|
|
1039
|
-
Tue, 23 Mar 2021 07:31:43 GMT
|
|
1218
|
+
Tue, 23 Mar 2021 07:31:43 GMT
|
|
1040
1219
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.13..@fluentui/react-button_v9.0.0-alpha.14)
|
|
1041
1220
|
|
|
1042
1221
|
### Changes
|
|
@@ -1045,7 +1224,7 @@ Tue, 23 Mar 2021 07:31:43 GMT
|
|
|
1045
1224
|
|
|
1046
1225
|
## [9.0.0-alpha.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.13)
|
|
1047
1226
|
|
|
1048
|
-
Thu, 18 Mar 2021 20:15:34 GMT
|
|
1227
|
+
Thu, 18 Mar 2021 20:15:34 GMT
|
|
1049
1228
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.12..@fluentui/react-button_v9.0.0-alpha.13)
|
|
1050
1229
|
|
|
1051
1230
|
### Changes
|
|
@@ -1054,7 +1233,7 @@ Thu, 18 Mar 2021 20:15:34 GMT
|
|
|
1054
1233
|
|
|
1055
1234
|
## [9.0.0-alpha.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.12)
|
|
1056
1235
|
|
|
1057
|
-
Wed, 17 Mar 2021 07:35:44 GMT
|
|
1236
|
+
Wed, 17 Mar 2021 07:35:44 GMT
|
|
1058
1237
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.11..@fluentui/react-button_v9.0.0-alpha.12)
|
|
1059
1238
|
|
|
1060
1239
|
### Changes
|
|
@@ -1063,7 +1242,7 @@ Wed, 17 Mar 2021 07:35:44 GMT
|
|
|
1063
1242
|
|
|
1064
1243
|
## [9.0.0-alpha.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.11)
|
|
1065
1244
|
|
|
1066
|
-
Tue, 16 Mar 2021 07:32:44 GMT
|
|
1245
|
+
Tue, 16 Mar 2021 07:32:44 GMT
|
|
1067
1246
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.10..@fluentui/react-button_v9.0.0-alpha.11)
|
|
1068
1247
|
|
|
1069
1248
|
### Patches
|
|
@@ -1072,7 +1251,7 @@ Tue, 16 Mar 2021 07:32:44 GMT
|
|
|
1072
1251
|
|
|
1073
1252
|
## [9.0.0-alpha.10](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.10)
|
|
1074
1253
|
|
|
1075
|
-
Mon, 15 Mar 2021 07:36:20 GMT
|
|
1254
|
+
Mon, 15 Mar 2021 07:36:20 GMT
|
|
1076
1255
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.9..@fluentui/react-button_v9.0.0-alpha.10)
|
|
1077
1256
|
|
|
1078
1257
|
### Changes
|
|
@@ -1081,7 +1260,7 @@ Mon, 15 Mar 2021 07:36:20 GMT
|
|
|
1081
1260
|
|
|
1082
1261
|
## [9.0.0-alpha.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.9)
|
|
1083
1262
|
|
|
1084
|
-
Fri, 12 Mar 2021 20:04:27 GMT
|
|
1263
|
+
Fri, 12 Mar 2021 20:04:27 GMT
|
|
1085
1264
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.8..@fluentui/react-button_v9.0.0-alpha.9)
|
|
1086
1265
|
|
|
1087
1266
|
### Patches
|
|
@@ -1094,7 +1273,7 @@ Fri, 12 Mar 2021 20:04:27 GMT
|
|
|
1094
1273
|
|
|
1095
1274
|
## [9.0.0-alpha.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.8)
|
|
1096
1275
|
|
|
1097
|
-
Wed, 10 Mar 2021 07:34:39 GMT
|
|
1276
|
+
Wed, 10 Mar 2021 07:34:39 GMT
|
|
1098
1277
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.7..@fluentui/react-button_v9.0.0-alpha.8)
|
|
1099
1278
|
|
|
1100
1279
|
### Changes
|
|
@@ -1103,7 +1282,7 @@ Wed, 10 Mar 2021 07:34:39 GMT
|
|
|
1103
1282
|
|
|
1104
1283
|
## [9.0.0-alpha.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.7)
|
|
1105
1284
|
|
|
1106
|
-
Fri, 05 Mar 2021 20:30:59 GMT
|
|
1285
|
+
Fri, 05 Mar 2021 20:30:59 GMT
|
|
1107
1286
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.6..@fluentui/react-button_v9.0.0-alpha.7)
|
|
1108
1287
|
|
|
1109
1288
|
### Changes
|
|
@@ -1112,7 +1291,7 @@ Fri, 05 Mar 2021 20:30:59 GMT
|
|
|
1112
1291
|
|
|
1113
1292
|
## [9.0.0-alpha.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.6)
|
|
1114
1293
|
|
|
1115
|
-
Wed, 03 Mar 2021 00:10:09 GMT
|
|
1294
|
+
Wed, 03 Mar 2021 00:10:09 GMT
|
|
1116
1295
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.5..@fluentui/react-button_v9.0.0-alpha.6)
|
|
1117
1296
|
|
|
1118
1297
|
### Patches
|
|
@@ -1125,7 +1304,7 @@ Wed, 03 Mar 2021 00:10:09 GMT
|
|
|
1125
1304
|
|
|
1126
1305
|
## [9.0.0-alpha.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.5)
|
|
1127
1306
|
|
|
1128
|
-
Tue, 02 Mar 2021 07:24:27 GMT
|
|
1307
|
+
Tue, 02 Mar 2021 07:24:27 GMT
|
|
1129
1308
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.4..@fluentui/react-button_v9.0.0-alpha.5)
|
|
1130
1309
|
|
|
1131
1310
|
### Changes
|
|
@@ -1134,7 +1313,7 @@ Tue, 02 Mar 2021 07:24:27 GMT
|
|
|
1134
1313
|
|
|
1135
1314
|
## [9.0.0-alpha.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.4)
|
|
1136
1315
|
|
|
1137
|
-
Fri, 26 Feb 2021 01:16:27 GMT
|
|
1316
|
+
Fri, 26 Feb 2021 01:16:27 GMT
|
|
1138
1317
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.3..@fluentui/react-button_v9.0.0-alpha.4)
|
|
1139
1318
|
|
|
1140
1319
|
### Patches
|
|
@@ -1154,7 +1333,7 @@ Fri, 26 Feb 2021 01:16:27 GMT
|
|
|
1154
1333
|
|
|
1155
1334
|
## [9.0.0-alpha.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.3)
|
|
1156
1335
|
|
|
1157
|
-
Thu, 25 Feb 2021 20:16:39 GMT
|
|
1336
|
+
Thu, 25 Feb 2021 20:16:39 GMT
|
|
1158
1337
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.2..@fluentui/react-button_v9.0.0-alpha.3)
|
|
1159
1338
|
|
|
1160
1339
|
### Changes
|
|
@@ -1163,7 +1342,7 @@ Thu, 25 Feb 2021 20:16:39 GMT
|
|
|
1163
1342
|
|
|
1164
1343
|
## [9.0.0-alpha.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.2)
|
|
1165
1344
|
|
|
1166
|
-
Thu, 25 Feb 2021 01:15:27 GMT
|
|
1345
|
+
Thu, 25 Feb 2021 01:15:27 GMT
|
|
1167
1346
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-alpha.1..@fluentui/react-button_v9.0.0-alpha.2)
|
|
1168
1347
|
|
|
1169
1348
|
### Patches
|
|
@@ -1172,7 +1351,7 @@ Thu, 25 Feb 2021 01:15:27 GMT
|
|
|
1172
1351
|
|
|
1173
1352
|
## [9.0.0-alpha.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-alpha.1)
|
|
1174
1353
|
|
|
1175
|
-
Wed, 24 Feb 2021 00:05:29 GMT
|
|
1354
|
+
Wed, 24 Feb 2021 00:05:29 GMT
|
|
1176
1355
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.35..@fluentui/react-button_v9.0.0-alpha.1)
|
|
1177
1356
|
|
|
1178
1357
|
### Changes
|
|
@@ -1181,7 +1360,7 @@ Wed, 24 Feb 2021 00:05:29 GMT
|
|
|
1181
1360
|
|
|
1182
1361
|
## [1.0.0-beta.35](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.35)
|
|
1183
1362
|
|
|
1184
|
-
Mon, 22 Feb 2021 12:26:22 GMT
|
|
1363
|
+
Mon, 22 Feb 2021 12:26:22 GMT
|
|
1185
1364
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.34..@fluentui/react-button_v1.0.0-beta.35)
|
|
1186
1365
|
|
|
1187
1366
|
### Changes
|
|
@@ -1190,7 +1369,7 @@ Mon, 22 Feb 2021 12:26:22 GMT
|
|
|
1190
1369
|
|
|
1191
1370
|
## [1.0.0-beta.34](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.34)
|
|
1192
1371
|
|
|
1193
|
-
Thu, 18 Feb 2021 19:38:50 GMT
|
|
1372
|
+
Thu, 18 Feb 2021 19:38:50 GMT
|
|
1194
1373
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.33..@fluentui/react-button_v1.0.0-beta.34)
|
|
1195
1374
|
|
|
1196
1375
|
### Patches
|
|
@@ -1204,7 +1383,7 @@ Thu, 18 Feb 2021 19:38:50 GMT
|
|
|
1204
1383
|
|
|
1205
1384
|
## [1.0.0-beta.33](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.33)
|
|
1206
1385
|
|
|
1207
|
-
Thu, 18 Feb 2021 12:27:34 GMT
|
|
1386
|
+
Thu, 18 Feb 2021 12:27:34 GMT
|
|
1208
1387
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.32..@fluentui/react-button_v1.0.0-beta.33)
|
|
1209
1388
|
|
|
1210
1389
|
### Changes
|
|
@@ -1215,7 +1394,7 @@ Thu, 18 Feb 2021 12:27:34 GMT
|
|
|
1215
1394
|
|
|
1216
1395
|
## [1.0.0-beta.32](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.32)
|
|
1217
1396
|
|
|
1218
|
-
Mon, 15 Feb 2021 12:22:00 GMT
|
|
1397
|
+
Mon, 15 Feb 2021 12:22:00 GMT
|
|
1219
1398
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.31..@fluentui/react-button_v1.0.0-beta.32)
|
|
1220
1399
|
|
|
1221
1400
|
### Changes
|
|
@@ -1224,7 +1403,7 @@ Mon, 15 Feb 2021 12:22:00 GMT
|
|
|
1224
1403
|
|
|
1225
1404
|
## [1.0.0-beta.31](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.31)
|
|
1226
1405
|
|
|
1227
|
-
Fri, 12 Feb 2021 12:26:20 GMT
|
|
1406
|
+
Fri, 12 Feb 2021 12:26:20 GMT
|
|
1228
1407
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.30..@fluentui/react-button_v1.0.0-beta.31)
|
|
1229
1408
|
|
|
1230
1409
|
### Patches
|
|
@@ -1238,7 +1417,7 @@ Fri, 12 Feb 2021 12:26:20 GMT
|
|
|
1238
1417
|
|
|
1239
1418
|
## [1.0.0-beta.30](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.30)
|
|
1240
1419
|
|
|
1241
|
-
Thu, 11 Feb 2021 00:58:10 GMT
|
|
1420
|
+
Thu, 11 Feb 2021 00:58:10 GMT
|
|
1242
1421
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.29..@fluentui/react-button_v1.0.0-beta.30)
|
|
1243
1422
|
|
|
1244
1423
|
### Changes
|
|
@@ -1247,7 +1426,7 @@ Thu, 11 Feb 2021 00:58:10 GMT
|
|
|
1247
1426
|
|
|
1248
1427
|
## [1.0.0-beta.29](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.29)
|
|
1249
1428
|
|
|
1250
|
-
Tue, 09 Feb 2021 00:56:52 GMT
|
|
1429
|
+
Tue, 09 Feb 2021 00:56:52 GMT
|
|
1251
1430
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.28..@fluentui/react-button_v1.0.0-beta.29)
|
|
1252
1431
|
|
|
1253
1432
|
### Patches
|
|
@@ -1260,7 +1439,7 @@ Tue, 09 Feb 2021 00:56:52 GMT
|
|
|
1260
1439
|
|
|
1261
1440
|
## [1.0.0-beta.28](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.28)
|
|
1262
1441
|
|
|
1263
|
-
Mon, 08 Feb 2021 12:23:08 GMT
|
|
1442
|
+
Mon, 08 Feb 2021 12:23:08 GMT
|
|
1264
1443
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.27..@fluentui/react-button_v1.0.0-beta.28)
|
|
1265
1444
|
|
|
1266
1445
|
### Changes
|
|
@@ -1269,7 +1448,7 @@ Mon, 08 Feb 2021 12:23:08 GMT
|
|
|
1269
1448
|
|
|
1270
1449
|
## [1.0.0-beta.27](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.27)
|
|
1271
1450
|
|
|
1272
|
-
Wed, 03 Feb 2021 05:51:40 GMT
|
|
1451
|
+
Wed, 03 Feb 2021 05:51:40 GMT
|
|
1273
1452
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.26..@fluentui/react-button_v1.0.0-beta.27)
|
|
1274
1453
|
|
|
1275
1454
|
### Changes
|
|
@@ -1278,7 +1457,7 @@ Wed, 03 Feb 2021 05:51:40 GMT
|
|
|
1278
1457
|
|
|
1279
1458
|
## [1.0.0-beta.26](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.26)
|
|
1280
1459
|
|
|
1281
|
-
Tue, 02 Feb 2021 12:21:54 GMT
|
|
1460
|
+
Tue, 02 Feb 2021 12:21:54 GMT
|
|
1282
1461
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.25..@fluentui/react-button_v1.0.0-beta.26)
|
|
1283
1462
|
|
|
1284
1463
|
### Changes
|
|
@@ -1288,7 +1467,7 @@ Tue, 02 Feb 2021 12:21:54 GMT
|
|
|
1288
1467
|
|
|
1289
1468
|
## [1.0.0-beta.25](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.25)
|
|
1290
1469
|
|
|
1291
|
-
Mon, 01 Feb 2021 12:23:48 GMT
|
|
1470
|
+
Mon, 01 Feb 2021 12:23:48 GMT
|
|
1292
1471
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.24..@fluentui/react-button_v1.0.0-beta.25)
|
|
1293
1472
|
|
|
1294
1473
|
### Changes
|
|
@@ -1297,7 +1476,7 @@ Mon, 01 Feb 2021 12:23:48 GMT
|
|
|
1297
1476
|
|
|
1298
1477
|
## [1.0.0-beta.24](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.24)
|
|
1299
1478
|
|
|
1300
|
-
Thu, 28 Jan 2021 12:25:56 GMT
|
|
1479
|
+
Thu, 28 Jan 2021 12:25:56 GMT
|
|
1301
1480
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.23..@fluentui/react-button_v1.0.0-beta.24)
|
|
1302
1481
|
|
|
1303
1482
|
### Changes
|
|
@@ -1307,7 +1486,7 @@ Thu, 28 Jan 2021 12:25:56 GMT
|
|
|
1307
1486
|
|
|
1308
1487
|
## [1.0.0-beta.23](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.23)
|
|
1309
1488
|
|
|
1310
|
-
Sat, 23 Jan 2021 05:20:07 GMT
|
|
1489
|
+
Sat, 23 Jan 2021 05:20:07 GMT
|
|
1311
1490
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.22..@fluentui/react-button_v1.0.0-beta.23)
|
|
1312
1491
|
|
|
1313
1492
|
### Changes
|
|
@@ -1316,7 +1495,7 @@ Sat, 23 Jan 2021 05:20:07 GMT
|
|
|
1316
1495
|
|
|
1317
1496
|
## [1.0.0-beta.22](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.22)
|
|
1318
1497
|
|
|
1319
|
-
Fri, 22 Jan 2021 12:24:49 GMT
|
|
1498
|
+
Fri, 22 Jan 2021 12:24:49 GMT
|
|
1320
1499
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.21..@fluentui/react-button_v1.0.0-beta.22)
|
|
1321
1500
|
|
|
1322
1501
|
### Changes
|
|
@@ -1325,17 +1504,17 @@ Fri, 22 Jan 2021 12:24:49 GMT
|
|
|
1325
1504
|
|
|
1326
1505
|
## [1.0.0-beta.21](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.21)
|
|
1327
1506
|
|
|
1328
|
-
Thu, 21 Jan 2021 12:36:12 GMT
|
|
1507
|
+
Thu, 21 Jan 2021 12:36:12 GMT
|
|
1329
1508
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.19..@fluentui/react-button_v1.0.0-beta.21)
|
|
1330
1509
|
|
|
1331
1510
|
### Changes
|
|
1332
1511
|
|
|
1333
1512
|
- 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)
|
|
1334
|
-
-
|
|
1513
|
+
- Updating dev dependencies. ([PR #16548](https://github.com/microsoft/fluentui/pull/16548) by dzearing@microsoft.com)
|
|
1335
1514
|
|
|
1336
1515
|
## [1.0.0-beta.19](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.19)
|
|
1337
1516
|
|
|
1338
|
-
Thu, 14 Jan 2021 12:31:15 GMT
|
|
1517
|
+
Thu, 14 Jan 2021 12:31:15 GMT
|
|
1339
1518
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.17..@fluentui/react-button_v1.0.0-beta.19)
|
|
1340
1519
|
|
|
1341
1520
|
### Changes
|
|
@@ -1344,7 +1523,7 @@ Thu, 14 Jan 2021 12:31:15 GMT
|
|
|
1344
1523
|
|
|
1345
1524
|
## [1.0.0-beta.17](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.17)
|
|
1346
1525
|
|
|
1347
|
-
Fri, 11 Dec 2020 12:28:01 GMT
|
|
1526
|
+
Fri, 11 Dec 2020 12:28:01 GMT
|
|
1348
1527
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.14..@fluentui/react-button_v1.0.0-beta.17)
|
|
1349
1528
|
|
|
1350
1529
|
### Changes
|
|
@@ -1353,7 +1532,7 @@ Fri, 11 Dec 2020 12:28:01 GMT
|
|
|
1353
1532
|
|
|
1354
1533
|
## [1.0.0-beta.14](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.14)
|
|
1355
1534
|
|
|
1356
|
-
Tue, 01 Dec 2020 12:38:05 GMT
|
|
1535
|
+
Tue, 01 Dec 2020 12:38:05 GMT
|
|
1357
1536
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.13..@fluentui/react-button_v1.0.0-beta.14)
|
|
1358
1537
|
|
|
1359
1538
|
### Changes
|
|
@@ -1362,7 +1541,7 @@ Tue, 01 Dec 2020 12:38:05 GMT
|
|
|
1362
1541
|
|
|
1363
1542
|
## [1.0.0-beta.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.13)
|
|
1364
1543
|
|
|
1365
|
-
Mon, 23 Nov 2020 12:31:40 GMT
|
|
1544
|
+
Mon, 23 Nov 2020 12:31:40 GMT
|
|
1366
1545
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.12..@fluentui/react-button_v1.0.0-beta.13)
|
|
1367
1546
|
|
|
1368
1547
|
### Changes
|
|
@@ -1371,7 +1550,7 @@ Mon, 23 Nov 2020 12:31:40 GMT
|
|
|
1371
1550
|
|
|
1372
1551
|
## [1.0.0-beta.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.12)
|
|
1373
1552
|
|
|
1374
|
-
Wed, 18 Nov 2020 12:30:07 GMT
|
|
1553
|
+
Wed, 18 Nov 2020 12:30:07 GMT
|
|
1375
1554
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.11..@fluentui/react-button_v1.0.0-beta.12)
|
|
1376
1555
|
|
|
1377
1556
|
### Changes
|
|
@@ -1380,17 +1559,17 @@ Wed, 18 Nov 2020 12:30:07 GMT
|
|
|
1380
1559
|
|
|
1381
1560
|
## [1.0.0-beta.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.11)
|
|
1382
1561
|
|
|
1383
|
-
Tue, 17 Nov 2020 12:36:24 GMT
|
|
1562
|
+
Tue, 17 Nov 2020 12:36:24 GMT
|
|
1384
1563
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.9..@fluentui/react-button_v1.0.0-beta.11)
|
|
1385
1564
|
|
|
1386
1565
|
### Changes
|
|
1387
1566
|
|
|
1388
|
-
- Updating arguments of style hook.
|
|
1567
|
+
- Updating arguments of style hook. ([PR #15952](https://github.com/microsoft/fluentui/pull/15952) by dzearing@hotmail.com)
|
|
1389
1568
|
- Updating classes hooks derived from Button to actually derive from Button. ([PR #15955](https://github.com/microsoft/fluentui/pull/15955) by xgao@microsoft.com)
|
|
1390
1569
|
|
|
1391
1570
|
## [1.0.0-beta.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.9)
|
|
1392
1571
|
|
|
1393
|
-
Fri, 06 Nov 2020 12:34:34 GMT
|
|
1572
|
+
Fri, 06 Nov 2020 12:34:34 GMT
|
|
1394
1573
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.8..@fluentui/react-button_v1.0.0-beta.9)
|
|
1395
1574
|
|
|
1396
1575
|
### Changes
|
|
@@ -1399,7 +1578,7 @@ Fri, 06 Nov 2020 12:34:34 GMT
|
|
|
1399
1578
|
|
|
1400
1579
|
## [1.0.0-beta.8](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.8)
|
|
1401
1580
|
|
|
1402
|
-
Thu, 05 Nov 2020 12:29:43 GMT
|
|
1581
|
+
Thu, 05 Nov 2020 12:29:43 GMT
|
|
1403
1582
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.7..@fluentui/react-button_v1.0.0-beta.8)
|
|
1404
1583
|
|
|
1405
1584
|
### Changes
|
|
@@ -1408,7 +1587,7 @@ Thu, 05 Nov 2020 12:29:43 GMT
|
|
|
1408
1587
|
|
|
1409
1588
|
## [1.0.0-beta.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.7)
|
|
1410
1589
|
|
|
1411
|
-
Wed, 04 Nov 2020 12:34:30 GMT
|
|
1590
|
+
Wed, 04 Nov 2020 12:34:30 GMT
|
|
1412
1591
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.4..@fluentui/react-button_v1.0.0-beta.7)
|
|
1413
1592
|
|
|
1414
1593
|
### Changes
|
|
@@ -1417,7 +1596,7 @@ Wed, 04 Nov 2020 12:34:30 GMT
|
|
|
1417
1596
|
|
|
1418
1597
|
## [1.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.4)
|
|
1419
1598
|
|
|
1420
|
-
Wed, 28 Oct 2020 12:32:24 GMT
|
|
1599
|
+
Wed, 28 Oct 2020 12:32:24 GMT
|
|
1421
1600
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.1..@fluentui/react-button_v1.0.0-beta.4)
|
|
1422
1601
|
|
|
1423
1602
|
### Changes
|
|
@@ -1426,7 +1605,7 @@ Wed, 28 Oct 2020 12:32:24 GMT
|
|
|
1426
1605
|
|
|
1427
1606
|
## [1.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.1)
|
|
1428
1607
|
|
|
1429
|
-
Fri, 23 Oct 2020 23:25:40 GMT
|
|
1608
|
+
Fri, 23 Oct 2020 23:25:40 GMT
|
|
1430
1609
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v1.0.0-beta.0..@fluentui/react-button_v1.0.0-beta.1)
|
|
1431
1610
|
|
|
1432
1611
|
### Changes
|
|
@@ -1435,7 +1614,7 @@ Fri, 23 Oct 2020 23:25:40 GMT
|
|
|
1435
1614
|
|
|
1436
1615
|
## [1.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v1.0.0-beta.0)
|
|
1437
1616
|
|
|
1438
|
-
Fri, 23 Oct 2020 03:26:15 GMT
|
|
1617
|
+
Fri, 23 Oct 2020 03:26:15 GMT
|
|
1439
1618
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.3..@fluentui/react-button_v1.0.0-beta.0)
|
|
1440
1619
|
|
|
1441
1620
|
### Changes
|
|
@@ -1454,7 +1633,7 @@ Fri, 23 Oct 2020 03:26:15 GMT
|
|
|
1454
1633
|
|
|
1455
1634
|
## [0.14.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.3)
|
|
1456
1635
|
|
|
1457
|
-
Sun, 27 Sep 2020 04:20:52 GMT
|
|
1636
|
+
Sun, 27 Sep 2020 04:20:52 GMT
|
|
1458
1637
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.2..@fluentui/react-button_v0.14.3)
|
|
1459
1638
|
|
|
1460
1639
|
### Patches
|
|
@@ -1463,7 +1642,7 @@ Sun, 27 Sep 2020 04:20:52 GMT
|
|
|
1463
1642
|
|
|
1464
1643
|
## [0.14.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.2)
|
|
1465
1644
|
|
|
1466
|
-
Fri, 25 Sep 2020 12:25:17 GMT
|
|
1645
|
+
Fri, 25 Sep 2020 12:25:17 GMT
|
|
1467
1646
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.14.0..@fluentui/react-button_v0.14.2)
|
|
1468
1647
|
|
|
1469
1648
|
### Patches
|
|
@@ -1473,7 +1652,7 @@ Fri, 25 Sep 2020 12:25:17 GMT
|
|
|
1473
1652
|
|
|
1474
1653
|
## [0.14.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.14.0)
|
|
1475
1654
|
|
|
1476
|
-
Wed, 23 Sep 2020 12:27:48 GMT
|
|
1655
|
+
Wed, 23 Sep 2020 12:27:48 GMT
|
|
1477
1656
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.1..@fluentui/react-button_v0.14.0)
|
|
1478
1657
|
|
|
1479
1658
|
### Minor changes
|
|
@@ -1486,7 +1665,7 @@ Wed, 23 Sep 2020 12:27:48 GMT
|
|
|
1486
1665
|
|
|
1487
1666
|
## [0.13.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.1)
|
|
1488
1667
|
|
|
1489
|
-
Thu, 17 Sep 2020 15:52:49 GMT
|
|
1668
|
+
Thu, 17 Sep 2020 15:52:49 GMT
|
|
1490
1669
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.13.0..@fluentui/react-button_v0.13.1)
|
|
1491
1670
|
|
|
1492
1671
|
### Patches
|
|
@@ -1495,7 +1674,7 @@ Thu, 17 Sep 2020 15:52:49 GMT
|
|
|
1495
1674
|
|
|
1496
1675
|
## [0.13.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.13.0)
|
|
1497
1676
|
|
|
1498
|
-
Thu, 17 Sep 2020 12:25:04 GMT
|
|
1677
|
+
Thu, 17 Sep 2020 12:25:04 GMT
|
|
1499
1678
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.6..@fluentui/react-button_v0.13.0)
|
|
1500
1679
|
|
|
1501
1680
|
### Minor changes
|
|
@@ -1504,7 +1683,7 @@ Thu, 17 Sep 2020 12:25:04 GMT
|
|
|
1504
1683
|
|
|
1505
1684
|
## [0.12.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.5)
|
|
1506
1685
|
|
|
1507
|
-
Tue, 15 Sep 2020 12:26:06 GMT
|
|
1686
|
+
Tue, 15 Sep 2020 12:26:06 GMT
|
|
1508
1687
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.12.4..@fluentui/react-button_v0.12.5)
|
|
1509
1688
|
|
|
1510
1689
|
### Patches
|
|
@@ -1513,7 +1692,7 @@ Tue, 15 Sep 2020 12:26:06 GMT
|
|
|
1513
1692
|
|
|
1514
1693
|
## [0.12.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.12.0)
|
|
1515
1694
|
|
|
1516
|
-
Wed, 09 Sep 2020 12:24:19 GMT
|
|
1695
|
+
Wed, 09 Sep 2020 12:24:19 GMT
|
|
1517
1696
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.6..@fluentui/react-button_v0.12.0)
|
|
1518
1697
|
|
|
1519
1698
|
### Minor changes
|
|
@@ -1526,7 +1705,7 @@ Wed, 09 Sep 2020 12:24:19 GMT
|
|
|
1526
1705
|
|
|
1527
1706
|
## [0.11.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.6)
|
|
1528
1707
|
|
|
1529
|
-
Mon, 07 Sep 2020 12:26:26 GMT
|
|
1708
|
+
Mon, 07 Sep 2020 12:26:26 GMT
|
|
1530
1709
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.5..@fluentui/react-button_v0.11.6)
|
|
1531
1710
|
|
|
1532
1711
|
### Patches
|
|
@@ -1535,7 +1714,7 @@ Mon, 07 Sep 2020 12:26:26 GMT
|
|
|
1535
1714
|
|
|
1536
1715
|
## [0.11.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.5)
|
|
1537
1716
|
|
|
1538
|
-
Fri, 04 Sep 2020 12:28:23 GMT
|
|
1717
|
+
Fri, 04 Sep 2020 12:28:23 GMT
|
|
1539
1718
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.11.0..@fluentui/react-button_v0.11.5)
|
|
1540
1719
|
|
|
1541
1720
|
### Patches
|
|
@@ -1544,7 +1723,7 @@ Fri, 04 Sep 2020 12:28:23 GMT
|
|
|
1544
1723
|
|
|
1545
1724
|
## [0.11.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.11.0)
|
|
1546
1725
|
|
|
1547
|
-
Fri, 28 Aug 2020 12:29:20 GMT
|
|
1726
|
+
Fri, 28 Aug 2020 12:29:20 GMT
|
|
1548
1727
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.3..@fluentui/react-button_v0.11.0)
|
|
1549
1728
|
|
|
1550
1729
|
### Minor changes
|
|
@@ -1553,7 +1732,7 @@ Fri, 28 Aug 2020 12:29:20 GMT
|
|
|
1553
1732
|
|
|
1554
1733
|
## [0.10.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.3)
|
|
1555
1734
|
|
|
1556
|
-
Tue, 25 Aug 2020 12:36:19 GMT
|
|
1735
|
+
Tue, 25 Aug 2020 12:36:19 GMT
|
|
1557
1736
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.1..@fluentui/react-button_v0.10.3)
|
|
1558
1737
|
|
|
1559
1738
|
### Patches
|
|
@@ -1562,7 +1741,7 @@ Tue, 25 Aug 2020 12:36:19 GMT
|
|
|
1562
1741
|
|
|
1563
1742
|
## [0.10.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.1)
|
|
1564
1743
|
|
|
1565
|
-
Thu, 20 Aug 2020 12:37:22 GMT
|
|
1744
|
+
Thu, 20 Aug 2020 12:37:22 GMT
|
|
1566
1745
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.10.0..@fluentui/react-button_v0.10.1)
|
|
1567
1746
|
|
|
1568
1747
|
### Patches
|
|
@@ -1572,7 +1751,7 @@ Thu, 20 Aug 2020 12:37:22 GMT
|
|
|
1572
1751
|
|
|
1573
1752
|
## [0.10.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.10.0)
|
|
1574
1753
|
|
|
1575
|
-
Wed, 19 Aug 2020 12:44:33 GMT
|
|
1754
|
+
Wed, 19 Aug 2020 12:44:33 GMT
|
|
1576
1755
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.4..@fluentui/react-button_v0.10.0)
|
|
1577
1756
|
|
|
1578
1757
|
### Minor changes
|
|
@@ -1581,7 +1760,7 @@ Wed, 19 Aug 2020 12:44:33 GMT
|
|
|
1581
1760
|
|
|
1582
1761
|
## [0.9.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.4)
|
|
1583
1762
|
|
|
1584
|
-
Tue, 18 Aug 2020 07:58:00 GMT
|
|
1763
|
+
Tue, 18 Aug 2020 07:58:00 GMT
|
|
1585
1764
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.9.0..@fluentui/react-button_v0.9.4)
|
|
1586
1765
|
|
|
1587
1766
|
### Patches
|
|
@@ -1590,7 +1769,7 @@ Tue, 18 Aug 2020 07:58:00 GMT
|
|
|
1590
1769
|
|
|
1591
1770
|
## [0.9.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.9.0)
|
|
1592
1771
|
|
|
1593
|
-
Tue, 11 Aug 2020 05:47:07 GMT
|
|
1772
|
+
Tue, 11 Aug 2020 05:47:07 GMT
|
|
1594
1773
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.8.0..@fluentui/react-button_v0.9.0)
|
|
1595
1774
|
|
|
1596
1775
|
### Minor changes
|
|
@@ -1600,7 +1779,7 @@ Tue, 11 Aug 2020 05:47:07 GMT
|
|
|
1600
1779
|
|
|
1601
1780
|
## [0.8.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.8.0)
|
|
1602
1781
|
|
|
1603
|
-
Mon, 10 Aug 2020 06:19:21 GMT
|
|
1782
|
+
Mon, 10 Aug 2020 06:19:21 GMT
|
|
1604
1783
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.14..@fluentui/react-button_v0.8.0)
|
|
1605
1784
|
|
|
1606
1785
|
### Minor changes
|
|
@@ -1609,7 +1788,7 @@ Mon, 10 Aug 2020 06:19:21 GMT
|
|
|
1609
1788
|
|
|
1610
1789
|
## [0.7.9](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.9)
|
|
1611
1790
|
|
|
1612
|
-
Mon, 27 Jul 2020 12:42:21 GMT
|
|
1791
|
+
Mon, 27 Jul 2020 12:42:21 GMT
|
|
1613
1792
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.3..@fluentui/react-button_v0.7.9)
|
|
1614
1793
|
|
|
1615
1794
|
### Patches
|
|
@@ -1618,7 +1797,7 @@ Mon, 27 Jul 2020 12:42:21 GMT
|
|
|
1618
1797
|
|
|
1619
1798
|
## [0.7.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.3)
|
|
1620
1799
|
|
|
1621
|
-
Fri, 17 Jul 2020 12:38:41 GMT
|
|
1800
|
+
Fri, 17 Jul 2020 12:38:41 GMT
|
|
1622
1801
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.7.1..@fluentui/react-button_v0.7.3)
|
|
1623
1802
|
|
|
1624
1803
|
### Patches
|
|
@@ -1627,7 +1806,7 @@ Fri, 17 Jul 2020 12:38:41 GMT
|
|
|
1627
1806
|
|
|
1628
1807
|
## [0.7.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.7.0)
|
|
1629
1808
|
|
|
1630
|
-
Thu, 09 Jul 2020 21:59:04 GMT
|
|
1809
|
+
Thu, 09 Jul 2020 21:59:04 GMT
|
|
1631
1810
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.2..@fluentui/react-button_v0.7.0)
|
|
1632
1811
|
|
|
1633
1812
|
### Minor changes
|
|
@@ -1636,7 +1815,7 @@ Thu, 09 Jul 2020 21:59:04 GMT
|
|
|
1636
1815
|
|
|
1637
1816
|
## [0.6.2](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.2)
|
|
1638
1817
|
|
|
1639
|
-
Thu, 02 Jul 2020 12:42:11 GMT
|
|
1818
|
+
Thu, 02 Jul 2020 12:42:11 GMT
|
|
1640
1819
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.6.0..@fluentui/react-button_v0.6.2)
|
|
1641
1820
|
|
|
1642
1821
|
### Patches
|
|
@@ -1645,7 +1824,7 @@ Thu, 02 Jul 2020 12:42:11 GMT
|
|
|
1645
1824
|
|
|
1646
1825
|
## [0.6.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.6.0)
|
|
1647
1826
|
|
|
1648
|
-
Tue, 30 Jun 2020 12:33:36 GMT
|
|
1827
|
+
Tue, 30 Jun 2020 12:33:36 GMT
|
|
1649
1828
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.1..@fluentui/react-button_v0.6.0)
|
|
1650
1829
|
|
|
1651
1830
|
### Minor changes
|
|
@@ -1654,7 +1833,7 @@ Tue, 30 Jun 2020 12:33:36 GMT
|
|
|
1654
1833
|
|
|
1655
1834
|
## [0.5.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.1)
|
|
1656
1835
|
|
|
1657
|
-
Fri, 26 Jun 2020 12:36:28 GMT
|
|
1836
|
+
Fri, 26 Jun 2020 12:36:28 GMT
|
|
1658
1837
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.5.0..@fluentui/react-button_v0.5.1)
|
|
1659
1838
|
|
|
1660
1839
|
### Patches
|
|
@@ -1664,7 +1843,7 @@ Fri, 26 Jun 2020 12:36:28 GMT
|
|
|
1664
1843
|
|
|
1665
1844
|
## [0.5.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.5.0)
|
|
1666
1845
|
|
|
1667
|
-
Thu, 25 Jun 2020 12:50:17 GMT
|
|
1846
|
+
Thu, 25 Jun 2020 12:50:17 GMT
|
|
1668
1847
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.4.0..@fluentui/react-button_v0.5.0)
|
|
1669
1848
|
|
|
1670
1849
|
### Minor changes
|
|
@@ -1677,7 +1856,7 @@ Thu, 25 Jun 2020 12:50:17 GMT
|
|
|
1677
1856
|
|
|
1678
1857
|
## [0.4.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.4.0)
|
|
1679
1858
|
|
|
1680
|
-
Tue, 23 Jun 2020 12:41:54 GMT
|
|
1859
|
+
Tue, 23 Jun 2020 12:41:54 GMT
|
|
1681
1860
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.7..@fluentui/react-button_v0.4.0)
|
|
1682
1861
|
|
|
1683
1862
|
### Minor changes
|
|
@@ -1686,7 +1865,7 @@ Tue, 23 Jun 2020 12:41:54 GMT
|
|
|
1686
1865
|
|
|
1687
1866
|
## [0.3.7](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.7)
|
|
1688
1867
|
|
|
1689
|
-
Mon, 22 Jun 2020 12:42:16 GMT
|
|
1868
|
+
Mon, 22 Jun 2020 12:42:16 GMT
|
|
1690
1869
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.6..@fluentui/react-button_v0.3.7)
|
|
1691
1870
|
|
|
1692
1871
|
### Patches
|
|
@@ -1695,7 +1874,7 @@ Mon, 22 Jun 2020 12:42:16 GMT
|
|
|
1695
1874
|
|
|
1696
1875
|
## [0.3.6](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.6)
|
|
1697
1876
|
|
|
1698
|
-
Fri, 19 Jun 2020 12:38:09 GMT
|
|
1877
|
+
Fri, 19 Jun 2020 12:38:09 GMT
|
|
1699
1878
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.5..@fluentui/react-button_v0.3.6)
|
|
1700
1879
|
|
|
1701
1880
|
### Patches
|
|
@@ -1704,7 +1883,7 @@ Fri, 19 Jun 2020 12:38:09 GMT
|
|
|
1704
1883
|
|
|
1705
1884
|
## [0.3.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.5)
|
|
1706
1885
|
|
|
1707
|
-
Thu, 18 Jun 2020 12:37:09 GMT
|
|
1886
|
+
Thu, 18 Jun 2020 12:37:09 GMT
|
|
1708
1887
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.3..@fluentui/react-button_v0.3.5)
|
|
1709
1888
|
|
|
1710
1889
|
### Patches
|
|
@@ -1713,7 +1892,7 @@ Thu, 18 Jun 2020 12:37:09 GMT
|
|
|
1713
1892
|
|
|
1714
1893
|
## [0.3.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.3)
|
|
1715
1894
|
|
|
1716
|
-
Tue, 16 Jun 2020 17:35:36 GMT
|
|
1895
|
+
Tue, 16 Jun 2020 17:35:36 GMT
|
|
1717
1896
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.3.0..@fluentui/react-button_v0.3.3)
|
|
1718
1897
|
|
|
1719
1898
|
### Patches
|
|
@@ -1722,7 +1901,7 @@ Tue, 16 Jun 2020 17:35:36 GMT
|
|
|
1722
1901
|
|
|
1723
1902
|
## [0.3.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.3.0)
|
|
1724
1903
|
|
|
1725
|
-
Fri, 12 Jun 2020 18:29:07 GMT
|
|
1904
|
+
Fri, 12 Jun 2020 18:29:07 GMT
|
|
1726
1905
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.2.0..@fluentui/react-button_v0.3.0)
|
|
1727
1906
|
|
|
1728
1907
|
### Minor changes
|
|
@@ -1736,7 +1915,7 @@ Fri, 12 Jun 2020 18:29:07 GMT
|
|
|
1736
1915
|
|
|
1737
1916
|
## [0.2.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.2.0)
|
|
1738
1917
|
|
|
1739
|
-
Mon, 08 Jun 2020 12:34:34 GMT
|
|
1918
|
+
Mon, 08 Jun 2020 12:34:34 GMT
|
|
1740
1919
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.13..@fluentui/react-button_v0.2.0)
|
|
1741
1920
|
|
|
1742
1921
|
### Minor changes
|
|
@@ -1745,7 +1924,7 @@ Mon, 08 Jun 2020 12:34:34 GMT
|
|
|
1745
1924
|
|
|
1746
1925
|
## [0.1.13](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.13)
|
|
1747
1926
|
|
|
1748
|
-
Fri, 05 Jun 2020 05:09:39 GMT
|
|
1927
|
+
Fri, 05 Jun 2020 05:09:39 GMT
|
|
1749
1928
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.12..@fluentui/react-button_v0.1.13)
|
|
1750
1929
|
|
|
1751
1930
|
### Patches
|
|
@@ -1755,7 +1934,7 @@ Fri, 05 Jun 2020 05:09:39 GMT
|
|
|
1755
1934
|
|
|
1756
1935
|
## [0.1.12](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.12)
|
|
1757
1936
|
|
|
1758
|
-
Tue, 02 Jun 2020 12:36:30 GMT
|
|
1937
|
+
Tue, 02 Jun 2020 12:36:30 GMT
|
|
1759
1938
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.11..@fluentui/react-button_v0.1.12)
|
|
1760
1939
|
|
|
1761
1940
|
### Patches
|
|
@@ -1764,7 +1943,7 @@ Tue, 02 Jun 2020 12:36:30 GMT
|
|
|
1764
1943
|
|
|
1765
1944
|
## [0.1.11](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.11)
|
|
1766
1945
|
|
|
1767
|
-
Mon, 01 Jun 2020 12:32:45 GMT
|
|
1946
|
+
Mon, 01 Jun 2020 12:32:45 GMT
|
|
1768
1947
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.4..@fluentui/react-button_v0.1.11)
|
|
1769
1948
|
|
|
1770
1949
|
### Patches
|
|
@@ -1773,12 +1952,12 @@ Mon, 01 Jun 2020 12:32:45 GMT
|
|
|
1773
1952
|
|
|
1774
1953
|
## [0.1.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.4)
|
|
1775
1954
|
|
|
1776
|
-
Wed, 20 May 2020 12:31:10 GMT
|
|
1955
|
+
Wed, 20 May 2020 12:31:10 GMT
|
|
1777
1956
|
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v0.1.1..@fluentui/react-button_v0.1.4)
|
|
1778
1957
|
|
|
1779
1958
|
### Patches
|
|
1780
1959
|
|
|
1781
|
-
- feat(compose): expose
|
|
1960
|
+
- feat(compose): expose \_\_self slot ([PR #13115](https://github.com/microsoft/fluentui/pull/13115) by olfedias@microsoft.com)
|
|
1782
1961
|
|
|
1783
1962
|
## [0.1.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.1.1)
|
|
1784
1963
|
|