@fluentui/react-button 9.0.0-nightly.f81b28ceb3.1 → 9.0.0-rc.4
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.json +495 -24
- package/CHANGELOG.md +114 -14
- package/dist/react-button.d.ts +42 -34
- 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 +7 -7
- package/lib/components/Button/Button.js.map +1 -1
- package/lib/components/Button/Button.types.d.ts +6 -6
- package/lib/components/Button/Button.types.js.map +1 -1
- package/lib/components/Button/index.d.ts +2 -2
- package/lib/components/Button/index.js +1 -2
- package/lib/components/Button/index.js.map +1 -1
- package/lib/components/Button/renderButton.d.ts +1 -1
- package/lib/components/Button/renderButton.js +13 -9
- package/lib/components/Button/renderButton.js.map +1 -1
- package/lib/components/Button/useButton.d.ts +1 -1
- package/lib/components/Button/useButton.js +22 -25
- package/lib/components/Button/useButton.js.map +1 -1
- package/lib/components/Button/useButtonStyles.d.ts +2 -9
- package/lib/components/Button/useButtonStyles.js +118 -90
- package/lib/components/Button/useButtonStyles.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.js +7 -7
- package/lib/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.types.d.ts +4 -4
- package/lib/components/CompoundButton/CompoundButton.types.js.map +1 -1
- package/lib/components/CompoundButton/index.d.ts +1 -1
- package/lib/components/CompoundButton/index.js +1 -1
- package/lib/components/CompoundButton/index.js.map +1 -1
- package/lib/components/CompoundButton/renderCompoundButton.d.ts +1 -1
- package/lib/components/CompoundButton/renderCompoundButton.js +15 -9
- package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButton.d.ts +1 -1
- package/lib/components/CompoundButton/useCompoundButton.js +9 -9
- package/lib/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -1
- package/lib/components/CompoundButton/useCompoundButtonStyles.js +52 -48
- package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.js +7 -7
- package/lib/components/MenuButton/MenuButton.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.types.d.ts +3 -4
- package/lib/components/MenuButton/MenuButton.types.js.map +1 -1
- package/lib/components/MenuButton/index.d.ts +1 -1
- package/lib/components/MenuButton/index.js +1 -1
- package/lib/components/MenuButton/index.js.map +1 -1
- package/lib/components/MenuButton/renderMenuButton.d.ts +1 -1
- package/lib/components/MenuButton/renderMenuButton.js +13 -9
- package/lib/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButton.d.ts +1 -1
- package/lib/components/MenuButton/useMenuButton.js +11 -11
- package/lib/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButtonStyles.d.ts +2 -1
- package/lib/components/MenuButton/useMenuButtonStyles.js +8 -6
- package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.js +7 -7
- package/lib/components/SplitButton/SplitButton.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.types.d.ts +6 -4
- package/lib/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib/components/SplitButton/index.d.ts +1 -1
- package/lib/components/SplitButton/index.js +1 -1
- package/lib/components/SplitButton/index.js.map +1 -1
- package/lib/components/SplitButton/renderSplitButton.d.ts +1 -1
- package/lib/components/SplitButton/renderSplitButton.js +9 -7
- package/lib/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButton.d.ts +1 -1
- package/lib/components/SplitButton/useSplitButton.js +57 -49
- package/lib/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButtonStyles.d.ts +2 -1
- package/lib/components/SplitButton/useSplitButtonStyles.js +38 -34
- package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib/components/ToggleButton/ToggleButton.js +7 -7
- package/lib/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/ToggleButton.types.d.ts +2 -1
- package/lib/components/ToggleButton/ToggleButton.types.js.map +1 -1
- package/lib/components/ToggleButton/index.d.ts +1 -1
- package/lib/components/ToggleButton/index.js +1 -1
- package/lib/components/ToggleButton/index.js.map +1 -1
- package/lib/components/ToggleButton/renderToggleButton.d.ts +1 -1
- package/lib/components/ToggleButton/renderToggleButton.js +1 -1
- package/lib/components/ToggleButton/renderToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButton.d.ts +1 -1
- package/lib/components/ToggleButton/useToggleButton.js +33 -31
- package/lib/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +2 -1
- package/lib/components/ToggleButton/useToggleButtonStyles.js +47 -43
- package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/lib-commonjs/Button.js +1 -1
- package/lib-commonjs/Button.js.map +1 -1
- package/lib-commonjs/CompoundButton.js +1 -1
- package/lib-commonjs/CompoundButton.js.map +1 -1
- package/lib-commonjs/MenuButton.js +1 -1
- package/lib-commonjs/MenuButton.js.map +1 -1
- package/lib-commonjs/SplitButton.js +1 -1
- package/lib-commonjs/SplitButton.js.map +1 -1
- package/lib-commonjs/ToggleButton.js +1 -1
- package/lib-commonjs/ToggleButton.js.map +1 -1
- package/lib-commonjs/components/Button/Button.js +8 -8
- package/lib-commonjs/components/Button/Button.js.map +1 -1
- package/lib-commonjs/components/Button/Button.types.d.ts +6 -6
- package/lib-commonjs/components/Button/Button.types.js.map +1 -1
- package/lib-commonjs/components/Button/index.d.ts +2 -2
- package/lib-commonjs/components/Button/index.js +10 -6
- package/lib-commonjs/components/Button/index.js.map +1 -1
- package/lib-commonjs/components/Button/renderButton.d.ts +1 -1
- package/lib-commonjs/components/Button/renderButton.js +17 -14
- package/lib-commonjs/components/Button/renderButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButton.d.ts +1 -1
- package/lib-commonjs/components/Button/useButton.js +26 -29
- package/lib-commonjs/components/Button/useButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButtonStyles.d.ts +2 -9
- package/lib-commonjs/components/Button/useButtonStyles.js +121 -92
- package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.js +8 -8
- package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.d.ts +4 -4
- package/lib-commonjs/components/CompoundButton/CompoundButton.types.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/index.d.ts +1 -1
- package/lib-commonjs/components/CompoundButton/index.js +10 -4
- package/lib-commonjs/components/CompoundButton/index.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.d.ts +1 -1
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +19 -14
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButton.d.ts +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js +12 -13
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +2 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +58 -53
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.js +8 -8
- package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +3 -4
- package/lib-commonjs/components/MenuButton/MenuButton.types.js.map +1 -1
- package/lib-commonjs/components/MenuButton/index.d.ts +1 -1
- package/lib-commonjs/components/MenuButton/index.js +10 -4
- package/lib-commonjs/components/MenuButton/index.js.map +1 -1
- package/lib-commonjs/components/MenuButton/renderMenuButton.d.ts +1 -1
- package/lib-commonjs/components/MenuButton/renderMenuButton.js +17 -14
- package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButton.d.ts +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButton.js +15 -16
- package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +2 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +12 -9
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.js +8 -8
- package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.types.d.ts +6 -4
- package/lib-commonjs/components/SplitButton/SplitButton.types.js.map +1 -1
- package/lib-commonjs/components/SplitButton/index.d.ts +1 -1
- package/lib-commonjs/components/SplitButton/index.js +10 -4
- package/lib-commonjs/components/SplitButton/index.js.map +1 -1
- package/lib-commonjs/components/SplitButton/renderSplitButton.d.ts +1 -1
- package/lib-commonjs/components/SplitButton/renderSplitButton.js +13 -12
- package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButton.d.ts +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButton.js +61 -54
- package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +2 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +44 -39
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.js +8 -8
- package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.d.ts +2 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.types.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/index.d.ts +1 -1
- package/lib-commonjs/components/ToggleButton/index.js +10 -4
- package/lib-commonjs/components/ToggleButton/index.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/renderToggleButton.d.ts +1 -1
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js +3 -3
- package/lib-commonjs/components/ToggleButton/renderToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButton.d.ts +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButton.js +37 -36
- package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +2 -1
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +51 -45
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib-commonjs/index.js +1 -1
- package/lib-commonjs/index.js.map +1 -1
- package/package.json +13 -15
- package/lib/common/isConformant.d.ts +0 -4
- package/lib/common/isConformant.js +0 -13
- package/lib/common/isConformant.js.map +0 -1
- package/lib-commonjs/common/isConformant.d.ts +0 -4
- package/lib-commonjs/common/isConformant.js +0 -24
- package/lib-commonjs/common/isConformant.js.map +0 -1
package/CHANGELOG.json
CHANGED
@@ -2,70 +2,541 @@
|
|
2
2
|
"name": "@fluentui/react-button",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "Tue,
|
6
|
-
"tag": "@fluentui/react-button_v9.0.0-
|
7
|
-
"version": "9.0.0-
|
5
|
+
"date": "Tue, 01 Mar 2022 02:16:08 GMT",
|
6
|
+
"tag": "@fluentui/react-button_v9.0.0-rc.4",
|
7
|
+
"version": "9.0.0-rc.4",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
10
|
{
|
11
|
-
"author": "
|
11
|
+
"author": "olfedias@microsoft.com",
|
12
|
+
"package": "@fluentui/react-button",
|
13
|
+
"commit": "084d7408855f3e52b67cbca172da1acef9dcb98f",
|
14
|
+
"comment": "fix: Add react-theme as dependency"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "beachball",
|
18
|
+
"package": "@fluentui/react-button",
|
19
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-rc.4",
|
20
|
+
"commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "beachball",
|
24
|
+
"package": "@fluentui/react-button",
|
25
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
|
26
|
+
"commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-button",
|
31
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
|
32
|
+
"commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
|
33
|
+
}
|
34
|
+
]
|
35
|
+
}
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"date": "Fri, 18 Feb 2022 13:35:28 GMT",
|
39
|
+
"tag": "@fluentui/react-button_v9.0.0-rc.3",
|
40
|
+
"version": "9.0.0-rc.3",
|
41
|
+
"comments": {
|
42
|
+
"prerelease": [
|
43
|
+
{
|
44
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
45
|
+
"package": "@fluentui/react-button",
|
46
|
+
"commit": "0b7d30b6ecb6f20d2ac4d4edbfb327a8f8f915a0",
|
47
|
+
"comment": "SplitButton: Fixing issue where menuIcon prop was not being respected."
|
48
|
+
},
|
49
|
+
{
|
50
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
51
|
+
"package": "@fluentui/react-button",
|
52
|
+
"commit": "d45ba4664643f36cce5674b1d05645feae0e09a5",
|
53
|
+
"comment": "Button: Updating stories to fix a11y issues."
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
57
|
+
"package": "@fluentui/react-button",
|
58
|
+
"commit": "ca590a438b12b85d32fdf8b592ada3b0e7b2314c",
|
59
|
+
"comment": "SplitButton: Fixing screen reader access issues."
|
60
|
+
},
|
61
|
+
{
|
62
|
+
"author": "lingfangao@hotmail.com",
|
63
|
+
"package": "@fluentui/react-button",
|
64
|
+
"commit": "1aa9e691fcccd9a64168cea7941c0f1e71fa1d14",
|
65
|
+
"comment": "fix: Source maps contain original source code"
|
66
|
+
},
|
67
|
+
{
|
68
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
12
69
|
"package": "@fluentui/react-button",
|
13
|
-
"
|
14
|
-
"
|
70
|
+
"commit": "c7718355f464d9d3e7ec4c0ef0f39dac3d196014",
|
71
|
+
"comment": "Button: Adding tests and fixing issues in SplitButton and ToggleButton."
|
15
72
|
},
|
16
73
|
{
|
17
74
|
"author": "beachball",
|
18
75
|
"package": "@fluentui/react-button",
|
19
|
-
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-
|
20
|
-
"commit": "
|
76
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.3",
|
77
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
21
78
|
},
|
22
79
|
{
|
23
80
|
"author": "beachball",
|
24
81
|
"package": "@fluentui/react-button",
|
25
|
-
"comment": "Bump @fluentui/react-aria to v9.0.0-
|
26
|
-
"commit": "
|
82
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-rc.3",
|
83
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
27
84
|
},
|
28
85
|
{
|
29
86
|
"author": "beachball",
|
30
87
|
"package": "@fluentui/react-button",
|
31
|
-
"comment": "Bump @fluentui/react-
|
32
|
-
"commit": "
|
88
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
|
89
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
33
90
|
},
|
34
91
|
{
|
35
92
|
"author": "beachball",
|
36
93
|
"package": "@fluentui/react-button",
|
37
|
-
"comment": "Bump @fluentui/react-
|
38
|
-
"commit": "
|
94
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
|
95
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
96
|
+
},
|
97
|
+
{
|
98
|
+
"author": "beachball",
|
99
|
+
"package": "@fluentui/react-button",
|
100
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
|
101
|
+
"commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
|
102
|
+
}
|
103
|
+
]
|
104
|
+
}
|
105
|
+
},
|
106
|
+
{
|
107
|
+
"date": "Thu, 10 Feb 2022 08:51:46 GMT",
|
108
|
+
"tag": "@fluentui/react-button_v9.0.0-rc.1",
|
109
|
+
"version": "9.0.0-rc.1",
|
110
|
+
"comments": {
|
111
|
+
"prerelease": [
|
112
|
+
{
|
113
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
114
|
+
"package": "@fluentui/react-button",
|
115
|
+
"commit": "0bc161458eae5ae8d387172430496ce9829b1bb1",
|
116
|
+
"comment": "Using ComponentSlotProps instead of ObjectShorthandProps."
|
117
|
+
},
|
118
|
+
{
|
119
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
120
|
+
"package": "@fluentui/react-button",
|
121
|
+
"commit": "940de09b95aa1cefcac9a1f6bbfa9499419e3634",
|
122
|
+
"comment": "Button: Changing border radius of small button to borderRadiusMedium from borderRadiusSmall."
|
123
|
+
},
|
124
|
+
{
|
125
|
+
"author": "olfedias@microsoft.com",
|
126
|
+
"package": "@fluentui/react-button",
|
127
|
+
"commit": "0aa74f3ef5a64c647b5903e21af7ff5423d46182",
|
128
|
+
"comment": "Replace make-styles packages with griffel equivalents."
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"author": "ololubek@microsoft.com",
|
132
|
+
"package": "@fluentui/react-button",
|
133
|
+
"commit": "63cbefe55e5db10eedbde19392aa8b6376d6a7f7",
|
134
|
+
"comment": "Update react-icons usage to resizable icons"
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"author": "behowell@microsoft.com",
|
138
|
+
"package": "@fluentui/react-button",
|
139
|
+
"commit": "317209bb5cd57c40f35bc42060acb7e3cce5ec95",
|
140
|
+
"comment": "BREAKING: Rename component hooks add the suffix _unstable, as their API has not been finalized yet"
|
141
|
+
},
|
142
|
+
{
|
143
|
+
"author": "lingfangao@hotmail.com",
|
144
|
+
"package": "@fluentui/react-button",
|
145
|
+
"commit": "c00913d50e2dd15bbfbb0757cefe43b192ff1d7f",
|
146
|
+
"comment": "Bump Fluent UI packages to 9.0.0-rc"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"author": "ololubek@microsoft.com",
|
150
|
+
"package": "@fluentui/react-button",
|
151
|
+
"commit": "7cb2a5d8db1b6a1ddb638aa82d5815ab5ae84e69",
|
152
|
+
"comment": "(fix): Update react-icons dependency to latest version"
|
153
|
+
},
|
154
|
+
{
|
155
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
156
|
+
"package": "@fluentui/react-button",
|
157
|
+
"commit": "0a4c1a9af2f8bb29c3a3544f06964a8554cd692a",
|
158
|
+
"comment": "Replacing use of functions in makeStyles with direct use of tokens."
|
159
|
+
},
|
160
|
+
{
|
161
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
162
|
+
"package": "@fluentui/react-button",
|
163
|
+
"commit": "a21bfaceecf201d0c984fa84704148a24f956901",
|
164
|
+
"comment": "CompoundButton: Updating styles to match latest design spec."
|
165
|
+
},
|
166
|
+
{
|
167
|
+
"author": "behowell@microsoft.com",
|
168
|
+
"package": "@fluentui/react-button",
|
169
|
+
"commit": "7cc28ed8320b00f42d91c63882f10316db2205c5",
|
170
|
+
"comment": "Remove component's shorthandProps array"
|
171
|
+
},
|
172
|
+
{
|
173
|
+
"author": "mgodbolt@microsoft.com",
|
174
|
+
"package": "@fluentui/react-button",
|
175
|
+
"commit": "839ec14849e112b85aa321d034739ec421199141",
|
176
|
+
"comment": "remove export of commons types"
|
177
|
+
},
|
178
|
+
{
|
179
|
+
"author": "behowell@microsoft.com",
|
180
|
+
"package": "@fluentui/react-button",
|
181
|
+
"commit": "d778282b56baae57cb6b407debdbfb6beca76761",
|
182
|
+
"comment": "Remove fontSize from default menuIcon, as it is already set via css"
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
186
|
+
"package": "@fluentui/react-button",
|
187
|
+
"commit": "f5873dc09f0c07d4adf23ad89a5f3afad37a0da9",
|
188
|
+
"comment": "ToggleButton: Stopping aria-pressed from changing when ToggleButton is disabledFocusable."
|
189
|
+
},
|
190
|
+
{
|
191
|
+
"author": "olfedias@microsoft.com",
|
192
|
+
"package": "@fluentui/react-button",
|
193
|
+
"commit": "54118b29fde686ef15fe95a3a97f3fd7edca34a3",
|
194
|
+
"comment": "update styles to not use CSS shorthands"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"author": "behowell@microsoft.com",
|
198
|
+
"package": "@fluentui/react-button",
|
199
|
+
"commit": "53b01d71e335715fda91b33e3d7bbd9d471d5ed3",
|
200
|
+
"comment": "Refactor component Slot typings"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
204
|
+
"package": "@fluentui/react-button",
|
205
|
+
"commit": "00a5d945904c896a0664de6ba72c145a255f0848",
|
206
|
+
"comment": "Updating use of tokens.fontWeight now that we don't need to use casting."
|
207
|
+
},
|
208
|
+
{
|
209
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
210
|
+
"package": "@fluentui/react-button",
|
211
|
+
"commit": "7797d49103b5dd7662ef59f734921f6326b2273d",
|
212
|
+
"comment": "MenuButton: Updating types so it properly supports ref."
|
213
|
+
},
|
214
|
+
{
|
215
|
+
"author": "olfedias@microsoft.com",
|
216
|
+
"package": "@fluentui/react-button",
|
217
|
+
"commit": "b23239743c4f5518bcf7dcad496a36fc16bbd2e5",
|
218
|
+
"comment": "update @fluentui/react-icons package"
|
219
|
+
},
|
220
|
+
{
|
221
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
222
|
+
"package": "@fluentui/react-button",
|
223
|
+
"commit": "e0b8e1fa6980077e7b311fd1c72c28d3e4305db0",
|
224
|
+
"comment": "Updating based on changes to composition types."
|
225
|
+
},
|
226
|
+
{
|
227
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
228
|
+
"package": "@fluentui/react-button",
|
229
|
+
"commit": "38c8bed2c707014688ae2ae689033fa36ef23075",
|
230
|
+
"comment": "Updating packages based on changes to focusIndicator functions to remove functions from makeStyles in @fluentui/react-tabster."
|
39
231
|
},
|
40
232
|
{
|
41
233
|
"author": "beachball",
|
42
234
|
"package": "@fluentui/react-button",
|
43
|
-
"comment": "Bump @fluentui/
|
44
|
-
"commit": "
|
235
|
+
"comment": "Bump @fluentui/keyboard-keys to v9.0.0-rc.1",
|
236
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
45
237
|
},
|
46
238
|
{
|
47
239
|
"author": "beachball",
|
48
240
|
"package": "@fluentui/react-button",
|
49
|
-
"comment": "Bump @fluentui/
|
50
|
-
"commit": "
|
241
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-rc.1",
|
242
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
51
243
|
},
|
52
244
|
{
|
53
245
|
"author": "beachball",
|
54
246
|
"package": "@fluentui/react-button",
|
55
|
-
"comment": "Bump @fluentui/
|
56
|
-
"commit": "
|
247
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
|
248
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
57
249
|
},
|
58
250
|
{
|
59
251
|
"author": "beachball",
|
60
252
|
"package": "@fluentui/react-button",
|
61
|
-
"comment": "Bump @fluentui/react-
|
62
|
-
"commit": "
|
253
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
|
254
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
63
255
|
},
|
64
256
|
{
|
65
257
|
"author": "beachball",
|
66
258
|
"package": "@fluentui/react-button",
|
67
|
-
"comment": "Bump @fluentui/react-
|
68
|
-
"commit": "
|
259
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
|
260
|
+
"commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
|
261
|
+
}
|
262
|
+
],
|
263
|
+
"none": [
|
264
|
+
{
|
265
|
+
"author": "olfedias@microsoft.com",
|
266
|
+
"package": "@fluentui/react-button",
|
267
|
+
"commit": "c061e98be4b4a718c72a144a1f60bb5515824612",
|
268
|
+
"comment": "remove inline-style-expand-shorthand from tsconfigs"
|
269
|
+
},
|
270
|
+
{
|
271
|
+
"author": "martinhochel@microsoft.com",
|
272
|
+
"package": "@fluentui/react-button",
|
273
|
+
"commit": "8dfa712156b70414205b87b5b6d099367b0c297d",
|
274
|
+
"comment": "chore: use storybook runner for all vNext packages"
|
275
|
+
},
|
276
|
+
{
|
277
|
+
"author": "tkrasniqi@microsoft.com",
|
278
|
+
"package": "@fluentui/react-button",
|
279
|
+
"commit": "ca886fed17b4a73b9bb3b5a9e54d143062cbfa99",
|
280
|
+
"comment": "Migration to new tsconfig"
|
281
|
+
},
|
282
|
+
{
|
283
|
+
"author": "bsunderhus@microsoft.com",
|
284
|
+
"package": "@fluentui/react-button",
|
285
|
+
"commit": "c0d4e63ee58e60e2c6674efbacc0783cd520984e",
|
286
|
+
"comment": "Updates components with nullRender changes"
|
287
|
+
}
|
288
|
+
]
|
289
|
+
}
|
290
|
+
},
|
291
|
+
{
|
292
|
+
"date": "Thu, 25 Nov 2021 08:34:12 GMT",
|
293
|
+
"tag": "@fluentui/react-button_v9.0.0-beta.5",
|
294
|
+
"version": "9.0.0-beta.5",
|
295
|
+
"comments": {
|
296
|
+
"prerelease": [
|
297
|
+
{
|
298
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
299
|
+
"package": "@fluentui/react-button",
|
300
|
+
"commit": "8825574c42f414c26f9d49238be02ca7dcb44cfe",
|
301
|
+
"comment": "MenuButton: Removing tight coupling with Menu by replicating type locally."
|
302
|
+
},
|
303
|
+
{
|
304
|
+
"author": "ololubek@microsoft.com",
|
305
|
+
"package": "@fluentui/react-button",
|
306
|
+
"commit": "ecab13cfd6ac22657020db8f86eb89f952b0f953",
|
307
|
+
"comment": "update react-icons dependency"
|
308
|
+
},
|
309
|
+
{
|
310
|
+
"author": "beachball",
|
311
|
+
"package": "@fluentui/react-button",
|
312
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-beta.4",
|
313
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
314
|
+
},
|
315
|
+
{
|
316
|
+
"author": "beachball",
|
317
|
+
"package": "@fluentui/react-button",
|
318
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
|
319
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
320
|
+
},
|
321
|
+
{
|
322
|
+
"author": "beachball",
|
323
|
+
"package": "@fluentui/react-button",
|
324
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
|
325
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
326
|
+
},
|
327
|
+
{
|
328
|
+
"author": "beachball",
|
329
|
+
"package": "@fluentui/react-button",
|
330
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
|
331
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"author": "beachball",
|
335
|
+
"package": "@fluentui/react-button",
|
336
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
|
337
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"author": "beachball",
|
341
|
+
"package": "@fluentui/react-button",
|
342
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
|
343
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"author": "beachball",
|
347
|
+
"package": "@fluentui/react-button",
|
348
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
|
349
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
350
|
+
}
|
351
|
+
]
|
352
|
+
}
|
353
|
+
},
|
354
|
+
{
|
355
|
+
"date": "Fri, 12 Nov 2021 13:25:16 GMT",
|
356
|
+
"tag": "@fluentui/react-button_v9.0.0-beta.4",
|
357
|
+
"version": "9.0.0-beta.4",
|
358
|
+
"comments": {
|
359
|
+
"prerelease": [
|
360
|
+
{
|
361
|
+
"author": "olfedias@microsoft.com",
|
362
|
+
"package": "@fluentui/react-button",
|
363
|
+
"commit": "7eb7d2daebaa11dbdcd555b0b962407013a7ca80",
|
364
|
+
"comment": "export static classes for components"
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"author": "gcox@microsoft.com",
|
368
|
+
"package": "@fluentui/react-button",
|
369
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
370
|
+
"comment": "Updated beta and RC components to ES2019"
|
371
|
+
},
|
372
|
+
{
|
373
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
374
|
+
"package": "@fluentui/react-button",
|
375
|
+
"commit": "a4ea9b6227d2f634f85b40fe4cec10e4c391244b",
|
376
|
+
"comment": "react-button: Removing use of enzyme in the converged package."
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
380
|
+
"package": "@fluentui/react-button",
|
381
|
+
"commit": "0e0cf06c34f78d54db4468a602a17b0a5a30ac87",
|
382
|
+
"comment": "Fixing incomplete comment."
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"author": "beachball",
|
386
|
+
"package": "@fluentui/react-button",
|
387
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-beta.3",
|
388
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"author": "beachball",
|
392
|
+
"package": "@fluentui/react-button",
|
393
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
|
394
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
395
|
+
},
|
396
|
+
{
|
397
|
+
"author": "beachball",
|
398
|
+
"package": "@fluentui/react-button",
|
399
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
|
400
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
401
|
+
},
|
402
|
+
{
|
403
|
+
"author": "beachball",
|
404
|
+
"package": "@fluentui/react-button",
|
405
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
|
406
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
407
|
+
},
|
408
|
+
{
|
409
|
+
"author": "beachball",
|
410
|
+
"package": "@fluentui/react-button",
|
411
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
|
412
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
413
|
+
},
|
414
|
+
{
|
415
|
+
"author": "beachball",
|
416
|
+
"package": "@fluentui/react-button",
|
417
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
|
418
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
419
|
+
},
|
420
|
+
{
|
421
|
+
"author": "beachball",
|
422
|
+
"package": "@fluentui/react-button",
|
423
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
|
424
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
425
|
+
},
|
426
|
+
{
|
427
|
+
"author": "beachball",
|
428
|
+
"package": "@fluentui/react-button",
|
429
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-beta.4",
|
430
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
431
|
+
}
|
432
|
+
],
|
433
|
+
"none": [
|
434
|
+
{
|
435
|
+
"author": "mgodbolt@microsoft.com",
|
436
|
+
"package": "@fluentui/react-button",
|
437
|
+
"commit": "d28932cc68561cf46a56a4300b6e18d7de8af14b",
|
438
|
+
"comment": "adding toggle and split button docs"
|
439
|
+
},
|
440
|
+
{
|
441
|
+
"author": "mgodbolt@microsoft.com",
|
442
|
+
"package": "@fluentui/react-button",
|
443
|
+
"commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
|
444
|
+
"comment": "update docs descriptions"
|
445
|
+
},
|
446
|
+
{
|
447
|
+
"author": "mgodbolt@microsoft.com",
|
448
|
+
"package": "@fluentui/react-button",
|
449
|
+
"commit": "73857e89e8c403370ba723415121f2ce1e530fff",
|
450
|
+
"comment": "add docs for menu and compound button"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"author": "lingfangao@hotmail.com",
|
454
|
+
"package": "@fluentui/react-button",
|
455
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
456
|
+
"comment": "Remove beta release tag"
|
457
|
+
}
|
458
|
+
]
|
459
|
+
}
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"date": "Wed, 27 Oct 2021 12:14:15 GMT",
|
463
|
+
"tag": "@fluentui/react-button_v9.0.0-beta.3",
|
464
|
+
"version": "9.0.0-beta.3",
|
465
|
+
"comments": {
|
466
|
+
"prerelease": [
|
467
|
+
{
|
468
|
+
"author": "gcox@microsoft.com",
|
469
|
+
"package": "@fluentui/react-button",
|
470
|
+
"commit": "1708c7b753fb7c9d6d726cfe75f07c6633caaebe",
|
471
|
+
"comment": "Removed duplicate 'Button' from story names"
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"author": "peter@draxler.ml",
|
475
|
+
"package": "@fluentui/react-button",
|
476
|
+
"commit": "f6db7c8d6b7db0902775e7857b62b745be35b59a",
|
477
|
+
"comment": "added styling of documentation"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"author": "beachball",
|
481
|
+
"package": "@fluentui/react-button",
|
482
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-beta.2",
|
483
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
484
|
+
},
|
485
|
+
{
|
486
|
+
"author": "beachball",
|
487
|
+
"package": "@fluentui/react-button",
|
488
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
|
489
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
490
|
+
},
|
491
|
+
{
|
492
|
+
"author": "beachball",
|
493
|
+
"package": "@fluentui/react-button",
|
494
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.3",
|
495
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
496
|
+
},
|
497
|
+
{
|
498
|
+
"author": "beachball",
|
499
|
+
"package": "@fluentui/react-button",
|
500
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
|
501
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
502
|
+
},
|
503
|
+
{
|
504
|
+
"author": "beachball",
|
505
|
+
"package": "@fluentui/react-button",
|
506
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
|
507
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
508
|
+
},
|
509
|
+
{
|
510
|
+
"author": "beachball",
|
511
|
+
"package": "@fluentui/react-button",
|
512
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
|
513
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
514
|
+
},
|
515
|
+
{
|
516
|
+
"author": "beachball",
|
517
|
+
"package": "@fluentui/react-button",
|
518
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
|
519
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"author": "beachball",
|
523
|
+
"package": "@fluentui/react-button",
|
524
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-beta.3",
|
525
|
+
"commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
|
526
|
+
}
|
527
|
+
],
|
528
|
+
"none": [
|
529
|
+
{
|
530
|
+
"author": "lingfangao@hotmail.com",
|
531
|
+
"package": "@fluentui/react-button",
|
532
|
+
"commit": "e2723666e63feb392712ade7aa477790a3e5b440",
|
533
|
+
"comment": "chore(Button): Make documentation exportable to codesandbox"
|
534
|
+
},
|
535
|
+
{
|
536
|
+
"author": "mgodbolt@microsoft.com",
|
537
|
+
"package": "@fluentui/react-button",
|
538
|
+
"commit": "8bcee39f3aefc8d6dc1c1eb9f27aab901e7b55c9",
|
539
|
+
"comment": "remove playground from button examples"
|
69
540
|
}
|
70
541
|
]
|
71
542
|
}
|