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