@fluentui/react-button 0.0.0-nightly050f89bf0020211102.1 → 0.0.0-nightly442708a36520211209.1
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 +190 -26
- package/CHANGELOG.md +50 -14
- package/dist/react-button.d.ts +14 -1
- package/lib/components/Button/Button.js +2 -2
- package/lib/components/Button/Button.js.map +1 -1
- package/lib/components/Button/index.d.ts +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 +10 -9
- package/lib/components/Button/renderButton.js.map +1 -1
- package/lib/components/Button/useButton.js +20 -24
- package/lib/components/Button/useButton.js.map +1 -1
- package/lib/components/Button/useButtonStyles.d.ts +1 -0
- package/lib/components/Button/useButtonStyles.js +118 -81
- package/lib/components/Button/useButtonStyles.js.map +1 -1
- package/lib/components/CompoundButton/CompoundButton.js +2 -2
- package/lib/components/CompoundButton/CompoundButton.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.js +10 -9
- package/lib/components/CompoundButton/renderCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButton.js +8 -8
- package/lib/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib/components/CompoundButton/useCompoundButtonStyles.d.ts +1 -0
- package/lib/components/CompoundButton/useCompoundButtonStyles.js +43 -39
- package/lib/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.js +2 -2
- package/lib/components/MenuButton/MenuButton.js.map +1 -1
- package/lib/components/MenuButton/MenuButton.types.d.ts +5 -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.js +10 -9
- package/lib/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButton.js +8 -8
- package/lib/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib/components/MenuButton/useMenuButtonStyles.d.ts +1 -0
- package/lib/components/MenuButton/useMenuButtonStyles.js +5 -3
- package/lib/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib/components/SplitButton/SplitButton.js +2 -2
- package/lib/components/SplitButton/SplitButton.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.js +6 -7
- package/lib/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButton.js +41 -45
- package/lib/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib/components/SplitButton/useSplitButtonStyles.d.ts +1 -0
- package/lib/components/SplitButton/useSplitButtonStyles.js +36 -33
- package/lib/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib/components/ToggleButton/ToggleButton.js +2 -2
- package/lib/components/ToggleButton/ToggleButton.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/useToggleButton.js +27 -29
- package/lib/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib/components/ToggleButton/useToggleButtonStyles.d.ts +1 -0
- package/lib/components/ToggleButton/useToggleButtonStyles.js +44 -41
- package/lib/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib-commonjs/Button.js +1 -1
- package/lib-commonjs/CompoundButton.js +1 -1
- package/lib-commonjs/MenuButton.js +1 -1
- package/lib-commonjs/SplitButton.js +1 -1
- package/lib-commonjs/ToggleButton.js +1 -1
- package/lib-commonjs/components/Button/Button.js +6 -6
- package/lib-commonjs/components/Button/Button.js.map +1 -1
- package/lib-commonjs/components/Button/index.d.ts +1 -1
- package/lib-commonjs/components/Button/index.js +8 -2
- package/lib-commonjs/components/Button/index.js.map +1 -1
- package/lib-commonjs/components/Button/renderButton.js +12 -12
- package/lib-commonjs/components/Button/renderButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButton.js +22 -26
- package/lib-commonjs/components/Button/useButton.js.map +1 -1
- package/lib-commonjs/components/Button/useButtonStyles.d.ts +1 -0
- package/lib-commonjs/components/Button/useButtonStyles.js +119 -82
- package/lib-commonjs/components/Button/useButtonStyles.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/CompoundButton.js +6 -6
- package/lib-commonjs/components/CompoundButton/CompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/index.d.ts +1 -1
- package/lib-commonjs/components/CompoundButton/index.js +8 -2
- package/lib-commonjs/components/CompoundButton/index.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js +12 -12
- package/lib-commonjs/components/CompoundButton/renderCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js +10 -11
- package/lib-commonjs/components/CompoundButton/useCompoundButton.js.map +1 -1
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.d.ts +1 -0
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js +45 -41
- package/lib-commonjs/components/CompoundButton/useCompoundButtonStyles.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.js +6 -6
- package/lib-commonjs/components/MenuButton/MenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/MenuButton.types.d.ts +5 -1
- package/lib-commonjs/components/MenuButton/index.d.ts +1 -1
- package/lib-commonjs/components/MenuButton/index.js +8 -2
- package/lib-commonjs/components/MenuButton/index.js.map +1 -1
- package/lib-commonjs/components/MenuButton/renderMenuButton.js +12 -12
- package/lib-commonjs/components/MenuButton/renderMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButton.js +12 -13
- package/lib-commonjs/components/MenuButton/useMenuButton.js.map +1 -1
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.d.ts +1 -0
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js +9 -6
- package/lib-commonjs/components/MenuButton/useMenuButtonStyles.js.map +1 -1
- package/lib-commonjs/components/SplitButton/SplitButton.js +6 -6
- package/lib-commonjs/components/SplitButton/SplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/index.d.ts +1 -1
- package/lib-commonjs/components/SplitButton/index.js +8 -2
- package/lib-commonjs/components/SplitButton/index.js.map +1 -1
- package/lib-commonjs/components/SplitButton/renderSplitButton.js +8 -10
- package/lib-commonjs/components/SplitButton/renderSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButton.js +44 -49
- package/lib-commonjs/components/SplitButton/useSplitButton.js.map +1 -1
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.d.ts +1 -0
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js +39 -36
- package/lib-commonjs/components/SplitButton/useSplitButtonStyles.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/ToggleButton.js +6 -6
- package/lib-commonjs/components/ToggleButton/ToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/index.d.ts +1 -1
- package/lib-commonjs/components/ToggleButton/index.js +8 -2
- package/lib-commonjs/components/ToggleButton/index.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButton.js +31 -34
- package/lib-commonjs/components/ToggleButton/useToggleButton.js.map +1 -1
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.d.ts +1 -0
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js +47 -43
- package/lib-commonjs/components/ToggleButton/useToggleButtonStyles.js.map +1 -1
- package/lib-commonjs/index.js +1 -1
- package/package.json +14 -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,17 +2,169 @@
|
|
2
2
|
"name": "@fluentui/react-button",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "
|
6
|
-
"tag": "@fluentui/react-button_v0.0.0-
|
7
|
-
"version": "0.0.0-
|
5
|
+
"date": "Thu, 09 Dec 2021 04:15:05 GMT",
|
6
|
+
"tag": "@fluentui/react-button_v0.0.0-nightly442708a36520211209.1",
|
7
|
+
"version": "0.0.0-nightly442708a36520211209.1",
|
8
8
|
"comments": {
|
9
9
|
"prerelease": [
|
10
10
|
{
|
11
11
|
"author": "email not defined",
|
12
12
|
"package": "@fluentui/react-button",
|
13
|
-
"commit": "
|
13
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9",
|
14
14
|
"comment": "Release nightly v9"
|
15
15
|
},
|
16
|
+
{
|
17
|
+
"author": "ololubek@microsoft.com",
|
18
|
+
"package": "@fluentui/react-button",
|
19
|
+
"commit": "7cb2a5d8db1b6a1ddb638aa82d5815ab5ae84e69",
|
20
|
+
"comment": "(fix): Update react-icons dependency to latest version"
|
21
|
+
},
|
22
|
+
{
|
23
|
+
"author": "olfedias@microsoft.com",
|
24
|
+
"package": "@fluentui/react-button",
|
25
|
+
"commit": "54118b29fde686ef15fe95a3a97f3fd7edca34a3",
|
26
|
+
"comment": "update styles to not use CSS shorthands"
|
27
|
+
},
|
28
|
+
{
|
29
|
+
"author": "beachball",
|
30
|
+
"package": "@fluentui/react-button",
|
31
|
+
"comment": "Bump @fluentui/keyboard-keys to v0.0.0-nightly442708a36520211209.1",
|
32
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
33
|
+
},
|
34
|
+
{
|
35
|
+
"author": "beachball",
|
36
|
+
"package": "@fluentui/react-button",
|
37
|
+
"comment": "Bump @fluentui/react-aria to v0.0.0-nightly442708a36520211209.1",
|
38
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
39
|
+
},
|
40
|
+
{
|
41
|
+
"author": "beachball",
|
42
|
+
"package": "@fluentui/react-button",
|
43
|
+
"comment": "Bump @fluentui/react-make-styles to v0.0.0-nightly442708a36520211209.1",
|
44
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"author": "beachball",
|
48
|
+
"package": "@fluentui/react-button",
|
49
|
+
"comment": "Bump @fluentui/react-tabster to v0.0.0-nightly442708a36520211209.1",
|
50
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"author": "beachball",
|
54
|
+
"package": "@fluentui/react-button",
|
55
|
+
"comment": "Bump @fluentui/react-utilities to v0.0.0-nightly442708a36520211209.1",
|
56
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
57
|
+
},
|
58
|
+
{
|
59
|
+
"author": "beachball",
|
60
|
+
"package": "@fluentui/react-button",
|
61
|
+
"comment": "Bump @fluentui/babel-make-styles to v0.0.0-nightly442708a36520211209.1",
|
62
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"author": "beachball",
|
66
|
+
"package": "@fluentui/react-button",
|
67
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightly442708a36520211209.1",
|
68
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"author": "beachball",
|
72
|
+
"package": "@fluentui/react-button",
|
73
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v0.0.0-nightly442708a36520211209.1",
|
74
|
+
"commit": "20c96796031556594c49a5171b45f4ed191b06d9"
|
75
|
+
}
|
76
|
+
],
|
77
|
+
"none": [
|
78
|
+
{
|
79
|
+
"author": "tkrasniqi@microsoft.com",
|
80
|
+
"package": "@fluentui/react-button",
|
81
|
+
"commit": "ca886fed17b4a73b9bb3b5a9e54d143062cbfa99",
|
82
|
+
"comment": "Migration to new tsconfig"
|
83
|
+
}
|
84
|
+
]
|
85
|
+
}
|
86
|
+
},
|
87
|
+
{
|
88
|
+
"date": "Thu, 25 Nov 2021 08:34:12 GMT",
|
89
|
+
"tag": "@fluentui/react-button_v9.0.0-beta.5",
|
90
|
+
"version": "9.0.0-beta.5",
|
91
|
+
"comments": {
|
92
|
+
"prerelease": [
|
93
|
+
{
|
94
|
+
"author": "Humberto.Morimoto@microsoft.com",
|
95
|
+
"package": "@fluentui/react-button",
|
96
|
+
"commit": "8825574c42f414c26f9d49238be02ca7dcb44cfe",
|
97
|
+
"comment": "MenuButton: Removing tight coupling with Menu by replicating type locally."
|
98
|
+
},
|
99
|
+
{
|
100
|
+
"author": "ololubek@microsoft.com",
|
101
|
+
"package": "@fluentui/react-button",
|
102
|
+
"commit": "ecab13cfd6ac22657020db8f86eb89f952b0f953",
|
103
|
+
"comment": "update react-icons dependency"
|
104
|
+
},
|
105
|
+
{
|
106
|
+
"author": "beachball",
|
107
|
+
"package": "@fluentui/react-button",
|
108
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-beta.4",
|
109
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
110
|
+
},
|
111
|
+
{
|
112
|
+
"author": "beachball",
|
113
|
+
"package": "@fluentui/react-button",
|
114
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
|
115
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
116
|
+
},
|
117
|
+
{
|
118
|
+
"author": "beachball",
|
119
|
+
"package": "@fluentui/react-button",
|
120
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.5",
|
121
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
122
|
+
},
|
123
|
+
{
|
124
|
+
"author": "beachball",
|
125
|
+
"package": "@fluentui/react-button",
|
126
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
|
127
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
128
|
+
},
|
129
|
+
{
|
130
|
+
"author": "beachball",
|
131
|
+
"package": "@fluentui/react-button",
|
132
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
|
133
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
134
|
+
},
|
135
|
+
{
|
136
|
+
"author": "beachball",
|
137
|
+
"package": "@fluentui/react-button",
|
138
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
|
139
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"author": "beachball",
|
143
|
+
"package": "@fluentui/react-button",
|
144
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
|
145
|
+
"commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
|
146
|
+
}
|
147
|
+
]
|
148
|
+
}
|
149
|
+
},
|
150
|
+
{
|
151
|
+
"date": "Fri, 12 Nov 2021 13:25:16 GMT",
|
152
|
+
"tag": "@fluentui/react-button_v9.0.0-beta.4",
|
153
|
+
"version": "9.0.0-beta.4",
|
154
|
+
"comments": {
|
155
|
+
"prerelease": [
|
156
|
+
{
|
157
|
+
"author": "olfedias@microsoft.com",
|
158
|
+
"package": "@fluentui/react-button",
|
159
|
+
"commit": "7eb7d2daebaa11dbdcd555b0b962407013a7ca80",
|
160
|
+
"comment": "export static classes for components"
|
161
|
+
},
|
162
|
+
{
|
163
|
+
"author": "gcox@microsoft.com",
|
164
|
+
"package": "@fluentui/react-button",
|
165
|
+
"commit": "c9bd5b5a02ae94a8239ce1b56cac2f0d0dbd3586",
|
166
|
+
"comment": "Updated beta and RC components to ES2019"
|
167
|
+
},
|
16
168
|
{
|
17
169
|
"author": "Humberto.Morimoto@microsoft.com",
|
18
170
|
"package": "@fluentui/react-button",
|
@@ -28,64 +180,76 @@
|
|
28
180
|
{
|
29
181
|
"author": "beachball",
|
30
182
|
"package": "@fluentui/react-button",
|
31
|
-
"comment": "Bump @fluentui/
|
32
|
-
"commit": "
|
183
|
+
"comment": "Bump @fluentui/react-aria to v9.0.0-beta.3",
|
184
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
33
185
|
},
|
34
186
|
{
|
35
187
|
"author": "beachball",
|
36
188
|
"package": "@fluentui/react-button",
|
37
|
-
"comment": "Bump @fluentui/react-
|
38
|
-
"commit": "
|
189
|
+
"comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
|
190
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
39
191
|
},
|
40
192
|
{
|
41
193
|
"author": "beachball",
|
42
194
|
"package": "@fluentui/react-button",
|
43
|
-
"comment": "Bump @fluentui/react-
|
44
|
-
"commit": "
|
195
|
+
"comment": "Bump @fluentui/react-tabster to v9.0.0-beta.4",
|
196
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
45
197
|
},
|
46
198
|
{
|
47
199
|
"author": "beachball",
|
48
200
|
"package": "@fluentui/react-button",
|
49
|
-
"comment": "Bump @fluentui/react-
|
50
|
-
"commit": "
|
201
|
+
"comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
|
202
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
51
203
|
},
|
52
204
|
{
|
53
205
|
"author": "beachball",
|
54
206
|
"package": "@fluentui/react-button",
|
55
|
-
"comment": "Bump @fluentui/
|
56
|
-
"commit": "
|
207
|
+
"comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
|
208
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
57
209
|
},
|
58
210
|
{
|
59
211
|
"author": "beachball",
|
60
212
|
"package": "@fluentui/react-button",
|
61
|
-
"comment": "Bump @fluentui/
|
62
|
-
"commit": "
|
213
|
+
"comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
|
214
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
63
215
|
},
|
64
216
|
{
|
65
217
|
"author": "beachball",
|
66
218
|
"package": "@fluentui/react-button",
|
67
|
-
"comment": "Bump @fluentui/
|
68
|
-
"commit": "
|
219
|
+
"comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
|
220
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
69
221
|
},
|
70
222
|
{
|
71
223
|
"author": "beachball",
|
72
224
|
"package": "@fluentui/react-button",
|
73
|
-
"comment": "Bump @fluentui/react-
|
74
|
-
"commit": "
|
75
|
-
},
|
76
|
-
{
|
77
|
-
"author": "beachball",
|
78
|
-
"package": "@fluentui/react-button",
|
79
|
-
"comment": "Bump @fluentui/react-menu to v0.0.0-nightly050f89bf0020211102.1",
|
80
|
-
"commit": "40469cc9aef788dfd49e97df32d6aed267c2cc26"
|
225
|
+
"comment": "Bump @fluentui/react-menu to v9.0.0-beta.4",
|
226
|
+
"commit": "742342e52c65066f779232e4e1302fedf0dd460d"
|
81
227
|
}
|
82
228
|
],
|
83
229
|
"none": [
|
230
|
+
{
|
231
|
+
"author": "mgodbolt@microsoft.com",
|
232
|
+
"package": "@fluentui/react-button",
|
233
|
+
"commit": "d28932cc68561cf46a56a4300b6e18d7de8af14b",
|
234
|
+
"comment": "adding toggle and split button docs"
|
235
|
+
},
|
84
236
|
{
|
85
237
|
"author": "mgodbolt@microsoft.com",
|
86
238
|
"package": "@fluentui/react-button",
|
87
239
|
"commit": "7fafe76eb2c09f9d17a03c11ba73729d91ef411e",
|
88
240
|
"comment": "update docs descriptions"
|
241
|
+
},
|
242
|
+
{
|
243
|
+
"author": "mgodbolt@microsoft.com",
|
244
|
+
"package": "@fluentui/react-button",
|
245
|
+
"commit": "73857e89e8c403370ba723415121f2ce1e530fff",
|
246
|
+
"comment": "add docs for menu and compound button"
|
247
|
+
},
|
248
|
+
{
|
249
|
+
"author": "lingfangao@hotmail.com",
|
250
|
+
"package": "@fluentui/react-button",
|
251
|
+
"commit": "00f70581480b536e723fb69edf0ae617beac4807",
|
252
|
+
"comment": "Remove beta release tag"
|
89
253
|
}
|
90
254
|
]
|
91
255
|
}
|
package/CHANGELOG.md
CHANGED
@@ -1,28 +1,64 @@
|
|
1
1
|
# Change Log - @fluentui/react-button
|
2
2
|
|
3
|
-
This log was last generated on
|
3
|
+
This log was last generated on Thu, 09 Dec 2021 04:15:05 GMT and should not be manually modified.
|
4
4
|
|
5
5
|
<!-- Start content -->
|
6
6
|
|
7
|
-
## [0.0.0-
|
7
|
+
## [0.0.0-nightly442708a36520211209.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v0.0.0-nightly442708a36520211209.1)
|
8
8
|
|
9
|
-
|
10
|
-
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.
|
9
|
+
Thu, 09 Dec 2021 04:15:05 GMT
|
10
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.5..@fluentui/react-button_v0.0.0-nightly442708a36520211209.1)
|
11
11
|
|
12
12
|
### Changes
|
13
13
|
|
14
|
-
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/
|
14
|
+
- Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by email not defined)
|
15
|
+
- (fix): Update react-icons dependency to latest version ([PR #20943](https://github.com/microsoft/fluentui/pull/20943) by ololubek@microsoft.com)
|
16
|
+
- update styles to not use CSS shorthands ([PR #20815](https://github.com/microsoft/fluentui/pull/20815) by olfedias@microsoft.com)
|
17
|
+
- Bump @fluentui/keyboard-keys to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
18
|
+
- Bump @fluentui/react-aria to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
19
|
+
- Bump @fluentui/react-make-styles to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
20
|
+
- Bump @fluentui/react-tabster to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
21
|
+
- Bump @fluentui/react-utilities to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
22
|
+
- Bump @fluentui/babel-make-styles to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
23
|
+
- Bump @fluentui/jest-serializer-make-styles to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
24
|
+
- Bump @fluentui/react-conformance-make-styles to v0.0.0-nightly442708a36520211209.1 ([commit](https://github.com/microsoft/fluentui/commit/20c96796031556594c49a5171b45f4ed191b06d9) by beachball)
|
25
|
+
|
26
|
+
## [9.0.0-beta.5](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.5)
|
27
|
+
|
28
|
+
Thu, 25 Nov 2021 08:34:12 GMT
|
29
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.4..@fluentui/react-button_v9.0.0-beta.5)
|
30
|
+
|
31
|
+
### Changes
|
32
|
+
|
33
|
+
- MenuButton: Removing tight coupling with Menu by replicating type locally. ([PR #20635](https://github.com/microsoft/fluentui/pull/20635) by Humberto.Morimoto@microsoft.com)
|
34
|
+
- update react-icons dependency ([PR #20563](https://github.com/microsoft/fluentui/pull/20563) by ololubek@microsoft.com)
|
35
|
+
- Bump @fluentui/react-aria to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
36
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
37
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.5 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
38
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
39
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
40
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
41
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
|
42
|
+
|
43
|
+
## [9.0.0-beta.4](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.4)
|
44
|
+
|
45
|
+
Fri, 12 Nov 2021 13:25:16 GMT
|
46
|
+
[Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-button_v9.0.0-beta.3..@fluentui/react-button_v9.0.0-beta.4)
|
47
|
+
|
48
|
+
### Changes
|
49
|
+
|
50
|
+
- export static classes for components ([PR #20454](https://github.com/microsoft/fluentui/pull/20454) by olfedias@microsoft.com)
|
51
|
+
- Updated beta and RC components to ES2019 ([PR #20405](https://github.com/microsoft/fluentui/pull/20405) by gcox@microsoft.com)
|
15
52
|
- react-button: Removing use of enzyme in the converged package. ([PR #20342](https://github.com/microsoft/fluentui/pull/20342) by Humberto.Morimoto@microsoft.com)
|
16
53
|
- Fixing incomplete comment. ([PR #20273](https://github.com/microsoft/fluentui/pull/20273) by Humberto.Morimoto@microsoft.com)
|
17
|
-
- Bump @fluentui/
|
18
|
-
- Bump @fluentui/react-
|
19
|
-
- Bump @fluentui/react-
|
20
|
-
- Bump @fluentui/react-
|
21
|
-
- Bump @fluentui/
|
22
|
-
- Bump @fluentui/
|
23
|
-
- Bump @fluentui/
|
24
|
-
- Bump @fluentui/react-
|
25
|
-
- Bump @fluentui/react-menu to v0.0.0-nightly050f89bf0020211102.1 ([commit](https://github.com/microsoft/fluentui/commit/40469cc9aef788dfd49e97df32d6aed267c2cc26) by beachball)
|
54
|
+
- Bump @fluentui/react-aria to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
55
|
+
- Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
56
|
+
- Bump @fluentui/react-tabster to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
57
|
+
- Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
58
|
+
- Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
59
|
+
- Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
60
|
+
- Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
61
|
+
- Bump @fluentui/react-menu to v9.0.0-beta.4 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
|
26
62
|
|
27
63
|
## [9.0.0-beta.3](https://github.com/microsoft/fluentui/tree/@fluentui/react-button_v9.0.0-beta.3)
|
28
64
|
|
package/dist/react-button.d.ts
CHANGED
@@ -3,7 +3,6 @@ import type { ComponentProps } from '@fluentui/react-utilities';
|
|
3
3
|
import type { ComponentState } from '@fluentui/react-utilities';
|
4
4
|
import { ForwardRefComponent } from '@fluentui/react-utilities';
|
5
5
|
import type { IntrinsicShorthandProps } from '@fluentui/react-utilities';
|
6
|
-
import type { MenuTriggerChildProps } from '@fluentui/react-menu';
|
7
6
|
import type { ObjectShorthandProps } from '@fluentui/react-utilities';
|
8
7
|
import * as React_2 from 'react';
|
9
8
|
|
@@ -12,6 +11,8 @@ import * as React_2 from 'react';
|
|
12
11
|
*/
|
13
12
|
export declare const Button: ForwardRefComponent<ButtonProps>;
|
14
13
|
|
14
|
+
export declare const buttonClassName = "fui-Button";
|
15
|
+
|
15
16
|
export declare type ButtonCommons = {
|
16
17
|
/**
|
17
18
|
* A button can have its content and borders styled for greater emphasis or to be subtle.
|
@@ -81,6 +82,8 @@ export declare type ButtonState = ComponentState<ButtonSlots> & ButtonCommons &
|
|
81
82
|
*/
|
82
83
|
export declare const CompoundButton: ForwardRefComponent<CompoundButtonProps>;
|
83
84
|
|
85
|
+
export declare const compoundButtonClassName = "fui-CompoundButton";
|
86
|
+
|
84
87
|
export declare type CompoundButtonProps = ComponentProps<CompoundButtonSlots> & Partial<ButtonCommons>;
|
85
88
|
|
86
89
|
export declare type CompoundButtonSlots = ButtonSlots & {
|
@@ -101,6 +104,8 @@ export declare type CompoundButtonState = ComponentState<CompoundButtonSlots> &
|
|
101
104
|
*/
|
102
105
|
export declare const MenuButton: ForwardRefComponent<MenuButtonProps>;
|
103
106
|
|
107
|
+
export declare const menuButtonClassName = "fui-MenuButton";
|
108
|
+
|
104
109
|
export declare type MenuButtonProps = ComponentProps<MenuButtonSlots> & Partial<Omit<ButtonCommons, 'iconPosition'>> & Partial<MenuTriggerChildProps>;
|
105
110
|
|
106
111
|
export declare type MenuButtonSlots = ButtonSlots & {
|
@@ -112,6 +117,10 @@ export declare type MenuButtonSlots = ButtonSlots & {
|
|
112
117
|
|
113
118
|
export declare type MenuButtonState = ComponentState<MenuButtonSlots> & Omit<ButtonState, keyof ButtonSlots | 'components' | 'iconPosition'>;
|
114
119
|
|
120
|
+
declare type MenuTriggerChildProps = Pick<React_2.HTMLAttributes<HTMLElement>, 'onClick' | 'onMouseEnter' | 'onMouseLeave' | 'onContextMenu' | 'onKeyDown' | 'aria-haspopup' | 'aria-expanded' | 'id'> & {
|
121
|
+
ref?: React_2.Ref<never>;
|
122
|
+
};
|
123
|
+
|
115
124
|
/**
|
116
125
|
* Renders a Button component by passing the state defined props to the appropriate slots.
|
117
126
|
*/
|
@@ -140,6 +149,8 @@ export declare const renderSplitButton: (state: SplitButtonState) => JSX.Element
|
|
140
149
|
*/
|
141
150
|
export declare const SplitButton: ForwardRefComponent<SplitButtonProps>;
|
142
151
|
|
152
|
+
export declare const splitButtonClassName = "fui-SplitButton";
|
153
|
+
|
143
154
|
export declare type SplitButtonProps = ComponentProps<SplitButtonSlots> & Omit<ButtonProps, 'root'> & Omit<MenuButtonProps, 'root'>;
|
144
155
|
|
145
156
|
export declare type SplitButtonSlots = {
|
@@ -164,6 +175,8 @@ export declare type SplitButtonState = ComponentState<SplitButtonSlots> & Omit<B
|
|
164
175
|
*/
|
165
176
|
export declare const ToggleButton: ForwardRefComponent<ToggleButtonProps>;
|
166
177
|
|
178
|
+
export declare const toggleButtonClassName = "fui-ToggleButton";
|
179
|
+
|
167
180
|
export declare type ToggleButtonCommons = {
|
168
181
|
/**
|
169
182
|
* Defines the controlled checked state of the `ToggleButton`.
|
@@ -6,8 +6,8 @@ import { useButtonStyles } from './useButtonStyles';
|
|
6
6
|
* Buttons give people a way to trigger an action.
|
7
7
|
*/
|
8
8
|
|
9
|
-
export
|
10
|
-
|
9
|
+
export const Button = /*#__PURE__*/React.forwardRef((props, ref) => {
|
10
|
+
const state = useButton(props, ref);
|
11
11
|
useButtonStyles(state);
|
12
12
|
return renderButton(state); // Casting is required due to lack of distributive union to support unions on @types/react
|
13
13
|
});
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,YAAT,QAA6B,gBAA7B;AACA,SAAS,SAAT,QAA0B,aAA1B;AACA,SAAS,eAAT,QAAgC,mBAAhC;AAIA;;AAEG;;AACH,OAAO,
|
1
|
+
{"version":3,"sources":["../../../src/components/Button/Button.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,YAAT,QAA6B,gBAA7B;AACA,SAAS,SAAT,QAA0B,aAA1B;AACA,SAAS,eAAT,QAAgC,mBAAhC;AAIA;;AAEG;;AACH,OAAO,MAAM,MAAM,gBAAqC,KAAK,CAAC,UAAN,CAAiB,CAAC,KAAD,EAAQ,GAAR,KAAe;AACtF,QAAM,KAAK,GAAG,SAAS,CAAC,KAAD,EAAQ,GAAR,CAAvB;AAEA,EAAA,eAAe,CAAC,KAAD,CAAf;AAEA,SAAO,YAAY,CAAC,KAAD,CAAnB,CALsF,CAMtF;AACD,CAPuD,CAAjD;AASP,MAAM,CAAC,WAAP,GAAqB,QAArB","sourceRoot":""}
|
@@ -2,5 +2,5 @@ export * from './Button';
|
|
2
2
|
export * from './Button.types';
|
3
3
|
export * from './renderButton';
|
4
4
|
export * from './useButton';
|
5
|
-
export { useButtonStyles } from './useButtonStyles';
|
5
|
+
export { buttonClassName, useButtonStyles } from './useButtonStyles';
|
6
6
|
//# sourceMappingURL=index.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Button/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC"}
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/components/Button/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,OAAO,EAAE,eAAe,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC"}
|
@@ -1,17 +1,18 @@
|
|
1
|
-
import { __assign } from "tslib";
|
2
1
|
import * as React from 'react';
|
3
2
|
import { getSlots } from '@fluentui/react-utilities';
|
4
3
|
/**
|
5
4
|
* Renders a Button component by passing the state defined props to the appropriate slots.
|
6
5
|
*/
|
7
6
|
|
8
|
-
export
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
7
|
+
export const renderButton = state => {
|
8
|
+
const {
|
9
|
+
slots,
|
10
|
+
slotProps
|
11
|
+
} = getSlots(state, ['root', 'icon']);
|
12
|
+
const {
|
13
|
+
iconOnly,
|
14
|
+
iconPosition
|
15
|
+
} = state;
|
16
|
+
return /*#__PURE__*/React.createElement(slots.root, Object.assign({}, slotProps.root), iconPosition !== 'after' && /*#__PURE__*/React.createElement(slots.icon, Object.assign({}, slotProps.icon)), !iconOnly && state.root.children, iconPosition === 'after' && /*#__PURE__*/React.createElement(slots.icon, Object.assign({}, slotProps.icon)));
|
16
17
|
};
|
17
18
|
//# sourceMappingURL=renderButton.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../../src/components/Button/renderButton.tsx"],"names":[],"mappings":"
|
1
|
+
{"version":3,"sources":["../../../src/components/Button/renderButton.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAZ,MAAuB,OAAvB;AACA,SAAS,QAAT,QAAyB,2BAAzB;AAGA;;AAEG;;AACH,OAAO,MAAM,YAAY,GAAI,KAAD,IAAuB;AACjD,QAAM;AAAE,IAAA,KAAF;AAAS,IAAA;AAAT,MAAuB,QAAQ,CAAc,KAAd,EAAqB,CAAC,MAAD,EAAS,MAAT,CAArB,CAArC;AACA,QAAM;AAAE,IAAA,QAAF;AAAY,IAAA;AAAZ,MAA6B,KAAnC;AAEA,sBACE,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,IAAf,CAAX,EACG,YAAY,KAAK,OAAjB,iBAA4B,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,IAAf,CAAX,CAD/B,EAEG,CAAC,QAAD,IAAa,KAAK,CAAC,IAAN,CAAW,QAF3B,EAGG,YAAY,KAAK,OAAjB,iBAA4B,KAAA,CAAA,aAAA,CAAC,KAAK,CAAC,IAAP,EAAW,MAAA,CAAA,MAAA,CAAA,EAAA,EAAK,SAAS,CAAC,IAAf,CAAX,CAH/B,CADF;AAOD,CAXM","sourceRoot":""}
|
@@ -6,32 +6,28 @@ import { getNativeElementProps, resolveShorthand } from '@fluentui/react-utiliti
|
|
6
6
|
* @param ref - User provided ref to be passed to the Button component.
|
7
7
|
*/
|
8
8
|
|
9
|
-
export
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
shape = _e === void 0 ? 'rounded' : _e,
|
23
|
-
_f = props.size,
|
24
|
-
size = _f === void 0 ? 'medium' : _f;
|
25
|
-
var iconShorthand = resolveShorthand(icon);
|
9
|
+
export const useButton = (props, ref) => {
|
10
|
+
const {
|
11
|
+
appearance,
|
12
|
+
as,
|
13
|
+
block = false,
|
14
|
+
disabled = false,
|
15
|
+
disabledFocusable = false,
|
16
|
+
icon,
|
17
|
+
iconPosition = 'before',
|
18
|
+
shape = 'rounded',
|
19
|
+
size = 'medium'
|
20
|
+
} = props;
|
21
|
+
const iconShorthand = resolveShorthand(icon);
|
26
22
|
return {
|
27
23
|
// Props passed at the top-level
|
28
|
-
appearance
|
29
|
-
block
|
30
|
-
disabled
|
31
|
-
disabledFocusable
|
32
|
-
iconPosition
|
33
|
-
shape
|
34
|
-
size
|
24
|
+
appearance,
|
25
|
+
block,
|
26
|
+
disabled,
|
27
|
+
disabledFocusable,
|
28
|
+
iconPosition,
|
29
|
+
shape,
|
30
|
+
size,
|
35
31
|
// State calculated from a set of props
|
36
32
|
iconOnly: Boolean((iconShorthand === null || iconShorthand === void 0 ? void 0 : iconShorthand.children) && !props.children),
|
37
33
|
// Slots definition
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"sources":["../../../src/components/Button/useButton.ts"],"names":[],"mappings":"AACA,SAAS,aAAT,QAA8B,sBAA9B;AACA,SAAS,qBAAT,EAAgC,gBAAhC,QAAwD,2BAAxD;AAGA;;;;AAIG;;AACH,OAAO,
|
1
|
+
{"version":3,"sources":["../../../src/components/Button/useButton.ts"],"names":[],"mappings":"AACA,SAAS,aAAT,QAA8B,sBAA9B;AACA,SAAS,qBAAT,EAAgC,gBAAhC,QAAwD,2BAAxD;AAGA;;;;AAIG;;AACH,OAAO,MAAM,SAAS,GAAG,CAAC,KAAD,EAAqB,GAArB,KAA2F;AAClH,QAAM;AACJ,IAAA,UADI;AAEJ,IAAA,EAFI;AAGJ,IAAA,KAAK,GAAG,KAHJ;AAIJ,IAAA,QAAQ,GAAG,KAJP;AAKJ,IAAA,iBAAiB,GAAG,KALhB;AAMJ,IAAA,IANI;AAOJ,IAAA,YAAY,GAAG,QAPX;AAQJ,IAAA,KAAK,GAAG,SARJ;AASJ,IAAA,IAAI,GAAG;AATH,MAUF,KAVJ;AAWA,QAAM,aAAa,GAAG,gBAAgB,CAAC,IAAD,CAAtC;AAEA,SAAO;AACL;AACA,IAAA,UAFK;AAGL,IAAA,KAHK;AAIL,IAAA,QAJK;AAKL,IAAA,iBALK;AAML,IAAA,YANK;AAOL,IAAA,KAPK;AAQL,IAAA,IARK;AAUL;AACA,IAAA,QAAQ,EAAE,OAAO,CAAC,CAAA,aAAa,KAAA,IAAb,IAAA,aAAa,KAAA,KAAA,CAAb,GAAa,KAAA,CAAb,GAAA,aAAa,CAAE,QAAf,KAA2B,CAAC,KAAK,CAAC,QAAnC,CAXZ;AAaL;AACA,IAAA,UAAU,EAAE;AACV,MAAA,IAAI,EAAE,QADI;AAEV,MAAA,IAAI,EAAE;AAFI,KAdP;AAmBL,IAAA,IAAI,EAAE,qBAAqB,CACzB,EAAE,IAAI,QADmB,EAEzB,aAAa,CAAC,KAAD,EAAQ;AACnB,MAAA,QAAQ,EAAE,IADS;AAEnB,MAAA,YAAY,EAAE;AACZ;AACA,QAAA,GAAG,EAAE,GAFO;AAGZ,QAAA,IAAI,EAAE;AAHM;AAFK,KAAR,CAFY,CAnBtB;AA8BL,IAAA,IAAI,EAAE;AA9BD,GAAP;AAgCD,CA9CM","sourceRoot":""}
|