@fluentui/react-field 9.0.0-alpha.9 → 9.0.0-beta.1
Sign up to get free protection for your applications and to get access to all the features.
- package/.swcrc +30 -0
- package/CHANGELOG.json +633 -1
- package/CHANGELOG.md +230 -2
- package/README.md +66 -1
- package/dist/index.d.ts +153 -80
- package/lib/Field.js.map +1 -1
- package/lib/components/Field/Field.js +13 -0
- package/lib/components/Field/Field.js.map +1 -0
- package/lib/components/Field/Field.types.js +1 -1
- package/lib/components/Field/Field.types.js.map +1 -1
- package/lib/components/Field/index.js +1 -0
- package/lib/components/Field/index.js.map +1 -1
- package/lib/components/Field/renderField.js +11 -9
- package/lib/components/Field/renderField.js.map +1 -1
- package/lib/components/Field/useField.js +32 -98
- package/lib/components/Field/useField.js.map +1 -1
- package/lib/components/Field/useFieldStyles.js +61 -76
- package/lib/components/Field/useFieldStyles.js.map +1 -1
- package/lib/contexts/FieldContext.js +5 -0
- package/lib/contexts/FieldContext.js.map +1 -0
- package/lib/contexts/index.js +4 -0
- package/lib/contexts/index.js.map +1 -0
- package/lib/contexts/useFieldContextValues.js +33 -0
- package/lib/contexts/useFieldContextValues.js.map +1 -0
- package/lib/contexts/useFieldControlProps.js +65 -0
- package/lib/contexts/useFieldControlProps.js.map +1 -0
- package/lib/index.js +4 -1
- package/lib/index.js.map +1 -1
- package/lib/util/makeDeprecatedField.js +68 -0
- package/lib/util/makeDeprecatedField.js.map +1 -0
- package/lib-commonjs/Field.js +4 -5
- package/lib-commonjs/Field.js.map +1 -1
- package/lib-commonjs/components/Field/Field.js +23 -0
- package/lib-commonjs/components/Field/Field.js.map +1 -0
- package/lib-commonjs/components/Field/Field.types.js +5 -2
- package/lib-commonjs/components/Field/Field.types.js.map +1 -1
- package/lib-commonjs/components/Field/index.js +8 -11
- package/lib-commonjs/components/Field/index.js.map +1 -1
- package/lib-commonjs/components/Field/renderField.js +19 -26
- package/lib-commonjs/components/Field/renderField.js.map +1 -1
- package/lib-commonjs/components/Field/useField.js +71 -155
- package/lib-commonjs/components/Field/useField.js.map +1 -1
- package/lib-commonjs/components/Field/useFieldStyles.js +138 -118
- package/lib-commonjs/components/Field/useFieldStyles.js.map +1 -1
- package/lib-commonjs/contexts/FieldContext.js +21 -0
- package/lib-commonjs/contexts/FieldContext.js.map +1 -0
- package/lib-commonjs/contexts/index.js +11 -0
- package/lib-commonjs/contexts/index.js.map +1 -0
- package/lib-commonjs/contexts/useFieldContextValues.js +44 -0
- package/lib-commonjs/contexts/useFieldContextValues.js.map +1 -0
- package/lib-commonjs/contexts/useFieldControlProps.js +71 -0
- package/lib-commonjs/contexts/useFieldControlProps.js.map +1 -0
- package/lib-commonjs/index.js +24 -29
- package/lib-commonjs/index.js.map +1 -1
- package/lib-commonjs/util/makeDeprecatedField.js +61 -0
- package/lib-commonjs/util/makeDeprecatedField.js.map +1 -0
- package/package.json +14 -11
- package/Spec.md +0 -354
- package/lib/components/Field/SlotComponent.types.js +0 -2
- package/lib/components/Field/SlotComponent.types.js.map +0 -1
- package/lib-amd/Field.js +0 -6
- package/lib-amd/Field.js.map +0 -1
- package/lib-amd/components/Field/Field.types.js +0 -5
- package/lib-amd/components/Field/Field.types.js.map +0 -1
- package/lib-amd/components/Field/SlotComponent.types.js +0 -5
- package/lib-amd/components/Field/SlotComponent.types.js.map +0 -1
- package/lib-amd/components/Field/index.js +0 -9
- package/lib-amd/components/Field/index.js.map +0 -1
- package/lib-amd/components/Field/renderField.js +0 -20
- package/lib-amd/components/Field/renderField.js.map +0 -1
- package/lib-amd/components/Field/useField.js +0 -121
- package/lib-amd/components/Field/useField.js.map +0 -1
- package/lib-amd/components/Field/useFieldStyles.js +0 -97
- package/lib-amd/components/Field/useFieldStyles.js.map +0 -1
- package/lib-amd/index.js +0 -10
- package/lib-amd/index.js.map +0 -1
- package/lib-commonjs/components/Field/SlotComponent.types.js +0 -6
- package/lib-commonjs/components/Field/SlotComponent.types.js.map +0 -1
package/.swcrc
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
{
|
2
|
+
"$schema": "https://json.schemastore.org/swcrc",
|
3
|
+
"exclude": [
|
4
|
+
"/testing",
|
5
|
+
"/**/*.cy.ts",
|
6
|
+
"/**/*.cy.tsx",
|
7
|
+
"/**/*.spec.ts",
|
8
|
+
"/**/*.spec.tsx",
|
9
|
+
"/**/*.test.ts",
|
10
|
+
"/**/*.test.tsx"
|
11
|
+
],
|
12
|
+
"jsc": {
|
13
|
+
"parser": {
|
14
|
+
"syntax": "typescript",
|
15
|
+
"tsx": true,
|
16
|
+
"decorators": false,
|
17
|
+
"dynamicImport": false
|
18
|
+
},
|
19
|
+
"externalHelpers": true,
|
20
|
+
"transform": {
|
21
|
+
"react": {
|
22
|
+
"runtime": "classic",
|
23
|
+
"useSpread": true
|
24
|
+
}
|
25
|
+
},
|
26
|
+
"target": "es2019"
|
27
|
+
},
|
28
|
+
"minify": false,
|
29
|
+
"sourceMaps": true
|
30
|
+
}
|
package/CHANGELOG.json
CHANGED
@@ -2,7 +2,639 @@
|
|
2
2
|
"name": "@fluentui/react-field",
|
3
3
|
"entries": [
|
4
4
|
{
|
5
|
-
"date": "Thu,
|
5
|
+
"date": "Thu, 06 Apr 2023 23:59:47 GMT",
|
6
|
+
"tag": "@fluentui/react-field_v9.0.0-beta.1",
|
7
|
+
"version": "9.0.0-beta.1",
|
8
|
+
"comments": {
|
9
|
+
"prerelease": [
|
10
|
+
{
|
11
|
+
"author": "behowell@microsoft.com",
|
12
|
+
"package": "@fluentui/react-field",
|
13
|
+
"commit": "5a8d7a29645b3b500eb7145d2e42ac34fcafc4c6",
|
14
|
+
"comment": "feat: Add FieldContext to pass props to controls inside Field"
|
15
|
+
},
|
16
|
+
{
|
17
|
+
"author": "behowell@microsoft.com",
|
18
|
+
"package": "@fluentui/react-field",
|
19
|
+
"commit": "eee5716e76dc6a5bef9316546a352694bbe5750a",
|
20
|
+
"comment": "chore: Bump react-field version to beta"
|
21
|
+
}
|
22
|
+
]
|
23
|
+
}
|
24
|
+
},
|
25
|
+
{
|
26
|
+
"date": "Tue, 04 Apr 2023 18:44:50 GMT",
|
27
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.29",
|
28
|
+
"version": "9.0.0-alpha.29",
|
29
|
+
"comments": {
|
30
|
+
"prerelease": [
|
31
|
+
{
|
32
|
+
"author": "beachball",
|
33
|
+
"package": "@fluentui/react-field",
|
34
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.16",
|
35
|
+
"commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
|
36
|
+
},
|
37
|
+
{
|
38
|
+
"author": "beachball",
|
39
|
+
"package": "@fluentui/react-field",
|
40
|
+
"comment": "Bump @fluentui/react-label to v9.1.7",
|
41
|
+
"commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
|
42
|
+
},
|
43
|
+
{
|
44
|
+
"author": "beachball",
|
45
|
+
"package": "@fluentui/react-field",
|
46
|
+
"comment": "Bump @fluentui/react-utilities to v9.7.3",
|
47
|
+
"commit": "6778d76bbbad7e1975c151c797f28c2708cde2ce"
|
48
|
+
}
|
49
|
+
]
|
50
|
+
}
|
51
|
+
},
|
52
|
+
{
|
53
|
+
"date": "Tue, 21 Mar 2023 21:23:34 GMT",
|
54
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.27",
|
55
|
+
"version": "9.0.0-alpha.27",
|
56
|
+
"comments": {
|
57
|
+
"prerelease": [
|
58
|
+
{
|
59
|
+
"author": "makotom@microsoft.com",
|
60
|
+
"package": "@fluentui/react-field",
|
61
|
+
"commit": "7fde5c94869ff9841b142b7ff1d0a3df0ab58f74",
|
62
|
+
"comment": "chore: Bumping version of @fluentui/react-icons to ^2.0.196."
|
63
|
+
},
|
64
|
+
{
|
65
|
+
"author": "tristan.watanabe@gmail.com",
|
66
|
+
"package": "@fluentui/react-field",
|
67
|
+
"commit": "2fac1a139149bd13b76b1306207bc988dca9c72c",
|
68
|
+
"comment": "chore: migrate to swc transpilation approach."
|
69
|
+
},
|
70
|
+
{
|
71
|
+
"author": "tristan.watanabe@gmail.com",
|
72
|
+
"package": "@fluentui/react-field",
|
73
|
+
"commit": "ead1c6d4c2ac3f3596b62b8cbc07b0a03041f11f",
|
74
|
+
"comment": "fix: add node field to package.json exports map."
|
75
|
+
},
|
76
|
+
{
|
77
|
+
"author": "beachball",
|
78
|
+
"package": "@fluentui/react-field",
|
79
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.15",
|
80
|
+
"commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
|
81
|
+
},
|
82
|
+
{
|
83
|
+
"author": "beachball",
|
84
|
+
"package": "@fluentui/react-field",
|
85
|
+
"comment": "Bump @fluentui/react-label to v9.1.5",
|
86
|
+
"commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
|
87
|
+
},
|
88
|
+
{
|
89
|
+
"author": "beachball",
|
90
|
+
"package": "@fluentui/react-field",
|
91
|
+
"comment": "Bump @fluentui/react-theme to v9.1.7",
|
92
|
+
"commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
|
93
|
+
},
|
94
|
+
{
|
95
|
+
"author": "beachball",
|
96
|
+
"package": "@fluentui/react-field",
|
97
|
+
"comment": "Bump @fluentui/react-utilities to v9.7.2",
|
98
|
+
"commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
|
99
|
+
},
|
100
|
+
{
|
101
|
+
"author": "beachball",
|
102
|
+
"package": "@fluentui/react-field",
|
103
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.20",
|
104
|
+
"commit": "b7a26f6263c80e3253c6b8338c33b73bae33e2b5"
|
105
|
+
}
|
106
|
+
]
|
107
|
+
}
|
108
|
+
},
|
109
|
+
{
|
110
|
+
"date": "Thu, 16 Mar 2023 14:36:59 GMT",
|
111
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.26",
|
112
|
+
"version": "9.0.0-alpha.26",
|
113
|
+
"comments": {
|
114
|
+
"prerelease": [
|
115
|
+
{
|
116
|
+
"author": "beachball",
|
117
|
+
"package": "@fluentui/react-field",
|
118
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.14",
|
119
|
+
"commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"author": "beachball",
|
123
|
+
"package": "@fluentui/react-field",
|
124
|
+
"comment": "Bump @fluentui/react-label to v9.1.4",
|
125
|
+
"commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
|
126
|
+
},
|
127
|
+
{
|
128
|
+
"author": "beachball",
|
129
|
+
"package": "@fluentui/react-field",
|
130
|
+
"comment": "Bump @fluentui/react-utilities to v9.7.1",
|
131
|
+
"commit": "e7dcadf7cabae6bc6811ca04a630e7d850388f81"
|
132
|
+
}
|
133
|
+
]
|
134
|
+
}
|
135
|
+
},
|
136
|
+
{
|
137
|
+
"date": "Wed, 15 Mar 2023 10:19:53 GMT",
|
138
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.25",
|
139
|
+
"version": "9.0.0-alpha.25",
|
140
|
+
"comments": {
|
141
|
+
"prerelease": [
|
142
|
+
{
|
143
|
+
"author": "beachball",
|
144
|
+
"package": "@fluentui/react-field",
|
145
|
+
"comment": "Bump @fluentui/react-label to v9.1.3",
|
146
|
+
"commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
|
147
|
+
},
|
148
|
+
{
|
149
|
+
"author": "beachball",
|
150
|
+
"package": "@fluentui/react-field",
|
151
|
+
"comment": "Bump @fluentui/react-theme to v9.1.6",
|
152
|
+
"commit": "5da01b4766ae6d81befb7bcd588d9cf8d969e1e2"
|
153
|
+
}
|
154
|
+
]
|
155
|
+
}
|
156
|
+
},
|
157
|
+
{
|
158
|
+
"date": "Mon, 13 Mar 2023 08:58:26 GMT",
|
159
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.24",
|
160
|
+
"version": "9.0.0-alpha.24",
|
161
|
+
"comments": {
|
162
|
+
"prerelease": [
|
163
|
+
{
|
164
|
+
"author": "beachball",
|
165
|
+
"package": "@fluentui/react-field",
|
166
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.13",
|
167
|
+
"commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"author": "beachball",
|
171
|
+
"package": "@fluentui/react-field",
|
172
|
+
"comment": "Bump @fluentui/react-label to v9.1.2",
|
173
|
+
"commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
|
174
|
+
},
|
175
|
+
{
|
176
|
+
"author": "beachball",
|
177
|
+
"package": "@fluentui/react-field",
|
178
|
+
"comment": "Bump @fluentui/react-utilities to v9.7.0",
|
179
|
+
"commit": "edf96a6b5d6f13843ada1400480e347b84384b8e"
|
180
|
+
}
|
181
|
+
]
|
182
|
+
}
|
183
|
+
},
|
184
|
+
{
|
185
|
+
"date": "Fri, 10 Mar 2023 07:14:01 GMT",
|
186
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.23",
|
187
|
+
"version": "9.0.0-alpha.23",
|
188
|
+
"comments": {
|
189
|
+
"prerelease": [
|
190
|
+
{
|
191
|
+
"author": "beachball",
|
192
|
+
"package": "@fluentui/react-field",
|
193
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.12",
|
194
|
+
"commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584"
|
195
|
+
},
|
196
|
+
{
|
197
|
+
"author": "beachball",
|
198
|
+
"package": "@fluentui/react-field",
|
199
|
+
"comment": "Bump @fluentui/react-label to v9.1.1",
|
200
|
+
"commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584"
|
201
|
+
},
|
202
|
+
{
|
203
|
+
"author": "beachball",
|
204
|
+
"package": "@fluentui/react-field",
|
205
|
+
"comment": "Bump @fluentui/react-utilities to v9.6.2",
|
206
|
+
"commit": "3cefc38eed17e3f37cd38fca9099cc9d700cd584"
|
207
|
+
}
|
208
|
+
]
|
209
|
+
}
|
210
|
+
},
|
211
|
+
{
|
212
|
+
"date": "Wed, 08 Mar 2023 17:42:51 GMT",
|
213
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.22",
|
214
|
+
"version": "9.0.0-alpha.22",
|
215
|
+
"comments": {
|
216
|
+
"prerelease": [
|
217
|
+
{
|
218
|
+
"author": "beachball",
|
219
|
+
"package": "@fluentui/react-field",
|
220
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.11",
|
221
|
+
"commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
|
222
|
+
},
|
223
|
+
{
|
224
|
+
"author": "beachball",
|
225
|
+
"package": "@fluentui/react-field",
|
226
|
+
"comment": "Bump @fluentui/react-label to v9.1.0",
|
227
|
+
"commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
|
228
|
+
},
|
229
|
+
{
|
230
|
+
"author": "beachball",
|
231
|
+
"package": "@fluentui/react-field",
|
232
|
+
"comment": "Bump @fluentui/react-utilities to v9.6.1",
|
233
|
+
"commit": "e0d11faf97f6466f4cd23ed18266cf1e80094f56"
|
234
|
+
}
|
235
|
+
]
|
236
|
+
}
|
237
|
+
},
|
238
|
+
{
|
239
|
+
"date": "Wed, 15 Feb 2023 11:44:52 GMT",
|
240
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.21",
|
241
|
+
"version": "9.0.0-alpha.21",
|
242
|
+
"comments": {
|
243
|
+
"prerelease": [
|
244
|
+
{
|
245
|
+
"author": "beachball",
|
246
|
+
"package": "@fluentui/react-field",
|
247
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.10",
|
248
|
+
"commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"author": "beachball",
|
252
|
+
"package": "@fluentui/react-field",
|
253
|
+
"comment": "Bump @fluentui/react-label to v9.0.22",
|
254
|
+
"commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
|
255
|
+
},
|
256
|
+
{
|
257
|
+
"author": "beachball",
|
258
|
+
"package": "@fluentui/react-field",
|
259
|
+
"comment": "Bump @fluentui/react-utilities to v9.6.0",
|
260
|
+
"commit": "087d981aab96bef2e332a373069a19bc702a7ca2"
|
261
|
+
}
|
262
|
+
]
|
263
|
+
}
|
264
|
+
},
|
265
|
+
{
|
266
|
+
"date": "Mon, 13 Feb 2023 23:43:14 GMT",
|
267
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.20",
|
268
|
+
"version": "9.0.0-alpha.20",
|
269
|
+
"comments": {
|
270
|
+
"prerelease": [
|
271
|
+
{
|
272
|
+
"author": "beachball",
|
273
|
+
"package": "@fluentui/react-field",
|
274
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.9",
|
275
|
+
"commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
|
276
|
+
},
|
277
|
+
{
|
278
|
+
"author": "beachball",
|
279
|
+
"package": "@fluentui/react-field",
|
280
|
+
"comment": "Bump @fluentui/react-label to v9.0.21",
|
281
|
+
"commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
|
282
|
+
},
|
283
|
+
{
|
284
|
+
"author": "beachball",
|
285
|
+
"package": "@fluentui/react-field",
|
286
|
+
"comment": "Bump @fluentui/react-utilities to v9.5.3",
|
287
|
+
"commit": "29e62b13706c2845b21d665d43cdacf1ef1b1513"
|
288
|
+
}
|
289
|
+
]
|
290
|
+
}
|
291
|
+
},
|
292
|
+
{
|
293
|
+
"date": "Fri, 10 Feb 2023 08:49:59 GMT",
|
294
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.19",
|
295
|
+
"version": "9.0.0-alpha.19",
|
296
|
+
"comments": {
|
297
|
+
"none": [
|
298
|
+
{
|
299
|
+
"author": "behowell@microsoft.com",
|
300
|
+
"package": "@fluentui/react-field",
|
301
|
+
"commit": "7db30ce5c8ff56bbcfb01d40e60db382356b6b38",
|
302
|
+
"comment": "chore: Update Field spec and migration guide"
|
303
|
+
},
|
304
|
+
{
|
305
|
+
"author": "behowell@microsoft.com",
|
306
|
+
"package": "@fluentui/react-field",
|
307
|
+
"commit": "2a4adf399928df00013a1b58eb5dd1ce77141c57",
|
308
|
+
"comment": "chore: Update Field documentation and stories"
|
309
|
+
}
|
310
|
+
],
|
311
|
+
"prerelease": [
|
312
|
+
{
|
313
|
+
"author": "beachball",
|
314
|
+
"package": "@fluentui/react-field",
|
315
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.8",
|
316
|
+
"commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
|
317
|
+
},
|
318
|
+
{
|
319
|
+
"author": "beachball",
|
320
|
+
"package": "@fluentui/react-field",
|
321
|
+
"comment": "Bump @fluentui/react-label to v9.0.20",
|
322
|
+
"commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
|
323
|
+
},
|
324
|
+
{
|
325
|
+
"author": "beachball",
|
326
|
+
"package": "@fluentui/react-field",
|
327
|
+
"comment": "Bump @fluentui/react-utilities to v9.5.2",
|
328
|
+
"commit": "cc62f050f8231e8f21a2cf7dddf33003e0ba3931"
|
329
|
+
}
|
330
|
+
]
|
331
|
+
}
|
332
|
+
},
|
333
|
+
{
|
334
|
+
"date": "Tue, 31 Jan 2023 19:53:56 GMT",
|
335
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.18",
|
336
|
+
"version": "9.0.0-alpha.18",
|
337
|
+
"comments": {
|
338
|
+
"prerelease": [
|
339
|
+
{
|
340
|
+
"author": "behowell@microsoft.com",
|
341
|
+
"package": "@fluentui/react-field",
|
342
|
+
"commit": "d59cee0443fc357a3033d0e71e23659a2ce2d57d",
|
343
|
+
"comment": "chore: Change the default value of validationState to error when a validationMessage is set."
|
344
|
+
},
|
345
|
+
{
|
346
|
+
"author": "beachball",
|
347
|
+
"package": "@fluentui/react-field",
|
348
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.7",
|
349
|
+
"commit": "794d9e845cb952f597ba786e70cd8d248be62746"
|
350
|
+
},
|
351
|
+
{
|
352
|
+
"author": "beachball",
|
353
|
+
"package": "@fluentui/react-field",
|
354
|
+
"comment": "Bump @fluentui/react-label to v9.0.19",
|
355
|
+
"commit": "794d9e845cb952f597ba786e70cd8d248be62746"
|
356
|
+
},
|
357
|
+
{
|
358
|
+
"author": "beachball",
|
359
|
+
"package": "@fluentui/react-field",
|
360
|
+
"comment": "Bump @fluentui/react-utilities to v9.5.1",
|
361
|
+
"commit": "794d9e845cb952f597ba786e70cd8d248be62746"
|
362
|
+
}
|
363
|
+
]
|
364
|
+
}
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"date": "Thu, 26 Jan 2023 13:30:56 GMT",
|
368
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.17",
|
369
|
+
"version": "9.0.0-alpha.17",
|
370
|
+
"comments": {
|
371
|
+
"prerelease": [
|
372
|
+
{
|
373
|
+
"author": "behowell@microsoft.com",
|
374
|
+
"package": "@fluentui/react-field",
|
375
|
+
"commit": "d6e98c0b5390c5c7e03601537b2026307e01a8d4",
|
376
|
+
"comment": "Implement Field component to replace InputField, ComboboxField, etc."
|
377
|
+
},
|
378
|
+
{
|
379
|
+
"author": "beachball",
|
380
|
+
"package": "@fluentui/react-field",
|
381
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.6",
|
382
|
+
"commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
|
383
|
+
},
|
384
|
+
{
|
385
|
+
"author": "beachball",
|
386
|
+
"package": "@fluentui/react-field",
|
387
|
+
"comment": "Bump @fluentui/react-label to v9.0.18",
|
388
|
+
"commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
|
389
|
+
},
|
390
|
+
{
|
391
|
+
"author": "beachball",
|
392
|
+
"package": "@fluentui/react-field",
|
393
|
+
"comment": "Bump @fluentui/react-utilities to v9.5.0",
|
394
|
+
"commit": "403e1370f1effca7d3db131eda381abf31cf66b1"
|
395
|
+
}
|
396
|
+
]
|
397
|
+
}
|
398
|
+
},
|
399
|
+
{
|
400
|
+
"date": "Mon, 23 Jan 2023 16:43:09 GMT",
|
401
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.16",
|
402
|
+
"version": "9.0.0-alpha.16",
|
403
|
+
"comments": {
|
404
|
+
"prerelease": [
|
405
|
+
{
|
406
|
+
"author": "behowell@microsoft.com",
|
407
|
+
"package": "@fluentui/react-field",
|
408
|
+
"commit": "1f145044a1ef3707e0724d75f9b70e7d2af69375",
|
409
|
+
"comment": "chore: Simplify Field layout styles"
|
410
|
+
},
|
411
|
+
{
|
412
|
+
"author": "behowell@microsoft.com",
|
413
|
+
"package": "@fluentui/react-field",
|
414
|
+
"commit": "b04b2f0c02f2ccd7960905a886ce27f2321fee72",
|
415
|
+
"comment": "fix: Stretch Field components to full width"
|
416
|
+
},
|
417
|
+
{
|
418
|
+
"author": "behowell@microsoft.com",
|
419
|
+
"package": "@fluentui/react-field",
|
420
|
+
"commit": "48a6fc95e6eb7530c162390fb70db7fac88b15ab",
|
421
|
+
"comment": "fix: Update Field label padding to match spec"
|
422
|
+
},
|
423
|
+
{
|
424
|
+
"author": "behowell@microsoft.com",
|
425
|
+
"package": "@fluentui/react-field",
|
426
|
+
"commit": "014041b7447b02856ae50638de71bdb829b0a759",
|
427
|
+
"comment": "fix: Field sets role=\"alert\" on its error message so it is announced by screen readers"
|
428
|
+
}
|
429
|
+
]
|
430
|
+
}
|
431
|
+
},
|
432
|
+
{
|
433
|
+
"date": "Mon, 16 Jan 2023 08:39:01 GMT",
|
434
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.15",
|
435
|
+
"version": "9.0.0-alpha.15",
|
436
|
+
"comments": {
|
437
|
+
"none": [
|
438
|
+
{
|
439
|
+
"author": "martinhochel@microsoft.com",
|
440
|
+
"package": "@fluentui/react-field",
|
441
|
+
"commit": "64bb45980d68de1219c6b36a7db5363f0a9cff9f",
|
442
|
+
"comment": "chore: migrate to packaged scripts"
|
443
|
+
}
|
444
|
+
],
|
445
|
+
"prerelease": [
|
446
|
+
{
|
447
|
+
"author": "sarah.higley@microsoft.com",
|
448
|
+
"package": "@fluentui/react-field",
|
449
|
+
"commit": "5b35bf93f6634324e8651ec29640353edd11178b",
|
450
|
+
"comment": "fix: Field styles do not wrap SVG status icon in inline parent to avoid layout bugs"
|
451
|
+
},
|
452
|
+
{
|
453
|
+
"author": "beachball",
|
454
|
+
"package": "@fluentui/react-field",
|
455
|
+
"comment": "Bump @fluentui/react-label to v9.0.17",
|
456
|
+
"commit": "a870d8360e47f3ea03358c4e75e89e08a74845d7"
|
457
|
+
}
|
458
|
+
]
|
459
|
+
}
|
460
|
+
},
|
461
|
+
{
|
462
|
+
"date": "Mon, 09 Jan 2023 14:35:02 GMT",
|
463
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.14",
|
464
|
+
"version": "9.0.0-alpha.14",
|
465
|
+
"comments": {
|
466
|
+
"prerelease": [
|
467
|
+
{
|
468
|
+
"author": "beachball",
|
469
|
+
"package": "@fluentui/react-field",
|
470
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.5",
|
471
|
+
"commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
|
472
|
+
},
|
473
|
+
{
|
474
|
+
"author": "beachball",
|
475
|
+
"package": "@fluentui/react-field",
|
476
|
+
"comment": "Bump @fluentui/react-label to v9.0.16",
|
477
|
+
"commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
|
478
|
+
},
|
479
|
+
{
|
480
|
+
"author": "beachball",
|
481
|
+
"package": "@fluentui/react-field",
|
482
|
+
"comment": "Bump @fluentui/react-utilities to v9.4.0",
|
483
|
+
"commit": "d246e70eba59a37ec311dbf933b0745d34cb700d"
|
484
|
+
}
|
485
|
+
]
|
486
|
+
}
|
487
|
+
},
|
488
|
+
{
|
489
|
+
"date": "Wed, 04 Jan 2023 01:40:06 GMT",
|
490
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.13",
|
491
|
+
"version": "9.0.0-alpha.13",
|
492
|
+
"comments": {
|
493
|
+
"none": [
|
494
|
+
{
|
495
|
+
"author": "martinhochel@microsoft.com",
|
496
|
+
"package": "@fluentui/react-field",
|
497
|
+
"commit": "194b0cf0cc27c1c1233aa945f09b3ad29778d8ca",
|
498
|
+
"comment": "chore(scripts): use for @fluentui/scripts version within all package.json"
|
499
|
+
},
|
500
|
+
{
|
501
|
+
"author": "martinhochel@microsoft.com",
|
502
|
+
"package": "@fluentui/react-field",
|
503
|
+
"commit": "4ec2b998b294d6d9c3196d3d82893bdd97d0c105",
|
504
|
+
"comment": "chore(scripts): move index.ts to to follow sub-folder domain packaging"
|
505
|
+
}
|
506
|
+
],
|
507
|
+
"prerelease": [
|
508
|
+
{
|
509
|
+
"author": "olfedias@microsoft.com",
|
510
|
+
"package": "@fluentui/react-field",
|
511
|
+
"commit": "2c38f1e4ae07b2b60df596efe11015a68f166dbf",
|
512
|
+
"comment": "chore: Update Griffel to latest version"
|
513
|
+
},
|
514
|
+
{
|
515
|
+
"author": "beachball",
|
516
|
+
"package": "@fluentui/react-field",
|
517
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.4",
|
518
|
+
"commit": "3e322d15529451be153e97298873253e21af4082"
|
519
|
+
},
|
520
|
+
{
|
521
|
+
"author": "beachball",
|
522
|
+
"package": "@fluentui/react-field",
|
523
|
+
"comment": "Bump @fluentui/react-label to v9.0.15",
|
524
|
+
"commit": "3e322d15529451be153e97298873253e21af4082"
|
525
|
+
},
|
526
|
+
{
|
527
|
+
"author": "beachball",
|
528
|
+
"package": "@fluentui/react-field",
|
529
|
+
"comment": "Bump @fluentui/react-utilities to v9.3.1",
|
530
|
+
"commit": "3e322d15529451be153e97298873253e21af4082"
|
531
|
+
},
|
532
|
+
{
|
533
|
+
"author": "beachball",
|
534
|
+
"package": "@fluentui/react-field",
|
535
|
+
"comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.19",
|
536
|
+
"commit": "3e322d15529451be153e97298873253e21af4082"
|
537
|
+
}
|
538
|
+
]
|
539
|
+
}
|
540
|
+
},
|
541
|
+
{
|
542
|
+
"date": "Wed, 21 Dec 2022 10:20:33 GMT",
|
543
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.12",
|
544
|
+
"version": "9.0.0-alpha.12",
|
545
|
+
"comments": {
|
546
|
+
"prerelease": [
|
547
|
+
{
|
548
|
+
"author": "beachball",
|
549
|
+
"package": "@fluentui/react-field",
|
550
|
+
"comment": "Bump @fluentui/react-label to v9.0.14",
|
551
|
+
"commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
|
552
|
+
},
|
553
|
+
{
|
554
|
+
"author": "beachball",
|
555
|
+
"package": "@fluentui/react-field",
|
556
|
+
"comment": "Bump @fluentui/react-theme to v9.1.5",
|
557
|
+
"commit": "66bf89f634cad4a275e957d7a2214c7e73ff8c2e"
|
558
|
+
}
|
559
|
+
]
|
560
|
+
}
|
561
|
+
},
|
562
|
+
{
|
563
|
+
"date": "Tue, 20 Dec 2022 14:59:25 GMT",
|
564
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.11",
|
565
|
+
"version": "9.0.0-alpha.11",
|
566
|
+
"comments": {
|
567
|
+
"none": [
|
568
|
+
{
|
569
|
+
"author": "behowell@microsoft.com",
|
570
|
+
"package": "@fluentui/react-field",
|
571
|
+
"commit": "4d5cf677ea4d882be7cda6903d7fce9fd6a20189",
|
572
|
+
"comment": "chore: Move Field migration guide to Migration.md"
|
573
|
+
}
|
574
|
+
],
|
575
|
+
"prerelease": [
|
576
|
+
{
|
577
|
+
"author": "beachball",
|
578
|
+
"package": "@fluentui/react-field",
|
579
|
+
"comment": "Bump @fluentui/react-context-selector to v9.1.3",
|
580
|
+
"commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
|
581
|
+
},
|
582
|
+
{
|
583
|
+
"author": "beachball",
|
584
|
+
"package": "@fluentui/react-field",
|
585
|
+
"comment": "Bump @fluentui/react-label to v9.0.13",
|
586
|
+
"commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
|
587
|
+
},
|
588
|
+
{
|
589
|
+
"author": "beachball",
|
590
|
+
"package": "@fluentui/react-field",
|
591
|
+
"comment": "Bump @fluentui/react-theme to v9.1.4",
|
592
|
+
"commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
|
593
|
+
},
|
594
|
+
{
|
595
|
+
"author": "beachball",
|
596
|
+
"package": "@fluentui/react-field",
|
597
|
+
"comment": "Bump @fluentui/react-utilities to v9.3.0",
|
598
|
+
"commit": "e7530bc179fd0e303448083c76a4af41a0e15322"
|
599
|
+
}
|
600
|
+
]
|
601
|
+
}
|
602
|
+
},
|
603
|
+
{
|
604
|
+
"date": "Mon, 05 Dec 2022 18:29:23 GMT",
|
605
|
+
"tag": "@fluentui/react-field_v9.0.0-alpha.10",
|
606
|
+
"version": "9.0.0-alpha.10",
|
607
|
+
"comments": {
|
608
|
+
"prerelease": [
|
609
|
+
{
|
610
|
+
"author": "behowell@microsoft.com",
|
611
|
+
"package": "@fluentui/react-field",
|
612
|
+
"commit": "79a448b20b02bdb5b9832734e6fa19d9c82d5865",
|
613
|
+
"comment": "fix: Field should use aria-describedby instead of aria-errormessage"
|
614
|
+
},
|
615
|
+
{
|
616
|
+
"author": "tristan.watanabe@gmail.com",
|
617
|
+
"package": "@fluentui/react-field",
|
618
|
+
"commit": "886907609cb066a4c08364b57a7cb718b4069434",
|
619
|
+
"comment": "chore: Migrate to new package structure."
|
620
|
+
},
|
621
|
+
{
|
622
|
+
"author": "beachball",
|
623
|
+
"package": "@fluentui/react-field",
|
624
|
+
"comment": "Bump @fluentui/react-label to v9.0.12",
|
625
|
+
"commit": "4c29542a51bf068e171690cc8e59c14489883912"
|
626
|
+
},
|
627
|
+
{
|
628
|
+
"author": "beachball",
|
629
|
+
"package": "@fluentui/react-field",
|
630
|
+
"comment": "Bump @fluentui/react-theme to v9.1.3",
|
631
|
+
"commit": "4c29542a51bf068e171690cc8e59c14489883912"
|
632
|
+
}
|
633
|
+
]
|
634
|
+
}
|
635
|
+
},
|
636
|
+
{
|
637
|
+
"date": "Thu, 17 Nov 2022 23:05:39 GMT",
|
6
638
|
"tag": "@fluentui/react-field_v9.0.0-alpha.9",
|
7
639
|
"version": "9.0.0-alpha.9",
|
8
640
|
"comments": {
|