@fluentui/react-radio 0.0.0-nightly-20220302-0405.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (104) hide show
  1. package/CHANGELOG.json +305 -0
  2. package/CHANGELOG.md +106 -0
  3. package/LICENSE +15 -0
  4. package/README.md +5 -0
  5. package/Spec.md +292 -0
  6. package/dist/react-radio.d.ts +183 -0
  7. package/lib/Radio.d.ts +1 -0
  8. package/lib/Radio.js +2 -0
  9. package/lib/Radio.js.map +1 -0
  10. package/lib/RadioGroup.d.ts +1 -0
  11. package/lib/RadioGroup.js +2 -0
  12. package/lib/RadioGroup.js.map +1 -0
  13. package/lib/components/Radio/Radio.d.ts +6 -0
  14. package/lib/components/Radio/Radio.js +15 -0
  15. package/lib/components/Radio/Radio.js.map +1 -0
  16. package/lib/components/Radio/Radio.types.d.ts +52 -0
  17. package/lib/components/Radio/Radio.types.js +2 -0
  18. package/lib/components/Radio/Radio.types.js.map +1 -0
  19. package/lib/components/Radio/index.d.ts +5 -0
  20. package/lib/components/Radio/index.js +6 -0
  21. package/lib/components/Radio/index.js.map +1 -0
  22. package/lib/components/Radio/renderRadio.d.ts +5 -0
  23. package/lib/components/Radio/renderRadio.js +18 -0
  24. package/lib/components/Radio/renderRadio.js.map +1 -0
  25. package/lib/components/Radio/useRadio.d.ts +12 -0
  26. package/lib/components/Radio/useRadio.js +76 -0
  27. package/lib/components/Radio/useRadio.js.map +1 -0
  28. package/lib/components/Radio/useRadioStyles.d.ts +6 -0
  29. package/lib/components/Radio/useRadioStyles.js +174 -0
  30. package/lib/components/Radio/useRadioStyles.js.map +1 -0
  31. package/lib/components/RadioGroup/RadioGroup.d.ts +6 -0
  32. package/lib/components/RadioGroup/RadioGroup.js +15 -0
  33. package/lib/components/RadioGroup/RadioGroup.js.map +1 -0
  34. package/lib/components/RadioGroup/RadioGroup.types.d.ts +58 -0
  35. package/lib/components/RadioGroup/RadioGroup.types.js +2 -0
  36. package/lib/components/RadioGroup/RadioGroup.types.js.map +1 -0
  37. package/lib/components/RadioGroup/index.d.ts +5 -0
  38. package/lib/components/RadioGroup/index.js +6 -0
  39. package/lib/components/RadioGroup/index.js.map +1 -0
  40. package/lib/components/RadioGroup/renderRadioGroup.d.ts +5 -0
  41. package/lib/components/RadioGroup/renderRadioGroup.js +18 -0
  42. package/lib/components/RadioGroup/renderRadioGroup.js.map +1 -0
  43. package/lib/components/RadioGroup/useRadioGroup.d.ts +12 -0
  44. package/lib/components/RadioGroup/useRadioGroup.js +51 -0
  45. package/lib/components/RadioGroup/useRadioGroup.js.map +1 -0
  46. package/lib/components/RadioGroup/useRadioGroupStyles.d.ts +6 -0
  47. package/lib/components/RadioGroup/useRadioGroupStyles.js +24 -0
  48. package/lib/components/RadioGroup/useRadioGroupStyles.js.map +1 -0
  49. package/lib/contexts/RadioGroupContext.d.ts +7 -0
  50. package/lib/contexts/RadioGroupContext.js +7 -0
  51. package/lib/contexts/RadioGroupContext.js.map +1 -0
  52. package/lib/index.d.ts +3 -0
  53. package/lib/index.js +4 -0
  54. package/lib/index.js.map +1 -0
  55. package/lib/tsdoc-metadata.json +11 -0
  56. package/lib-commonjs/Radio.d.ts +1 -0
  57. package/lib-commonjs/Radio.js +10 -0
  58. package/lib-commonjs/Radio.js.map +1 -0
  59. package/lib-commonjs/RadioGroup.d.ts +1 -0
  60. package/lib-commonjs/RadioGroup.js +10 -0
  61. package/lib-commonjs/RadioGroup.js.map +1 -0
  62. package/lib-commonjs/components/Radio/Radio.d.ts +6 -0
  63. package/lib-commonjs/components/Radio/Radio.js +26 -0
  64. package/lib-commonjs/components/Radio/Radio.js.map +1 -0
  65. package/lib-commonjs/components/Radio/Radio.types.d.ts +52 -0
  66. package/lib-commonjs/components/Radio/Radio.types.js +6 -0
  67. package/lib-commonjs/components/Radio/Radio.types.js.map +1 -0
  68. package/lib-commonjs/components/Radio/index.d.ts +5 -0
  69. package/lib-commonjs/components/Radio/index.js +18 -0
  70. package/lib-commonjs/components/Radio/index.js.map +1 -0
  71. package/lib-commonjs/components/Radio/renderRadio.d.ts +5 -0
  72. package/lib-commonjs/components/Radio/renderRadio.js +29 -0
  73. package/lib-commonjs/components/Radio/renderRadio.js.map +1 -0
  74. package/lib-commonjs/components/Radio/useRadio.d.ts +12 -0
  75. package/lib-commonjs/components/Radio/useRadio.js +90 -0
  76. package/lib-commonjs/components/Radio/useRadio.js.map +1 -0
  77. package/lib-commonjs/components/Radio/useRadioStyles.d.ts +6 -0
  78. package/lib-commonjs/components/Radio/useRadioStyles.js +186 -0
  79. package/lib-commonjs/components/Radio/useRadioStyles.js.map +1 -0
  80. package/lib-commonjs/components/RadioGroup/RadioGroup.d.ts +6 -0
  81. package/lib-commonjs/components/RadioGroup/RadioGroup.js +26 -0
  82. package/lib-commonjs/components/RadioGroup/RadioGroup.js.map +1 -0
  83. package/lib-commonjs/components/RadioGroup/RadioGroup.types.d.ts +58 -0
  84. package/lib-commonjs/components/RadioGroup/RadioGroup.types.js +6 -0
  85. package/lib-commonjs/components/RadioGroup/RadioGroup.types.js.map +1 -0
  86. package/lib-commonjs/components/RadioGroup/index.d.ts +5 -0
  87. package/lib-commonjs/components/RadioGroup/index.js +18 -0
  88. package/lib-commonjs/components/RadioGroup/index.js.map +1 -0
  89. package/lib-commonjs/components/RadioGroup/renderRadioGroup.d.ts +5 -0
  90. package/lib-commonjs/components/RadioGroup/renderRadioGroup.js +30 -0
  91. package/lib-commonjs/components/RadioGroup/renderRadioGroup.js.map +1 -0
  92. package/lib-commonjs/components/RadioGroup/useRadioGroup.d.ts +12 -0
  93. package/lib-commonjs/components/RadioGroup/useRadioGroup.js +62 -0
  94. package/lib-commonjs/components/RadioGroup/useRadioGroup.js.map +1 -0
  95. package/lib-commonjs/components/RadioGroup/useRadioGroupStyles.d.ts +6 -0
  96. package/lib-commonjs/components/RadioGroup/useRadioGroupStyles.js +34 -0
  97. package/lib-commonjs/components/RadioGroup/useRadioGroupStyles.js.map +1 -0
  98. package/lib-commonjs/contexts/RadioGroupContext.d.ts +7 -0
  99. package/lib-commonjs/contexts/RadioGroupContext.js +15 -0
  100. package/lib-commonjs/contexts/RadioGroupContext.js.map +1 -0
  101. package/lib-commonjs/index.d.ts +3 -0
  102. package/lib-commonjs/index.js +14 -0
  103. package/lib-commonjs/index.js.map +1 -0
  104. package/package.json +65 -0
package/CHANGELOG.json ADDED
@@ -0,0 +1,305 @@
1
+ {
2
+ "name": "@fluentui/react-radio",
3
+ "entries": [
4
+ {
5
+ "date": "Wed, 02 Mar 2022 04:14:56 GMT",
6
+ "tag": "@fluentui/react-radio_v0.0.0-nightly-20220302-0405.1",
7
+ "version": "0.0.0-nightly-20220302-0405.1",
8
+ "comments": {
9
+ "prerelease": [
10
+ {
11
+ "author": "email not defined",
12
+ "package": "@fluentui/react-radio",
13
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec",
14
+ "comment": "Release nightly v9"
15
+ },
16
+ {
17
+ "author": "behowell@microsoft.com",
18
+ "package": "@fluentui/react-radio",
19
+ "commit": "9955166acd95a1328ed09efd177e9f08eeabee57",
20
+ "comment": "Initial release"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@fluentui/react-radio",
25
+ "comment": "Bump @fluentui/react-label to v0.0.0-nightly-20220302-0405.1",
26
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
27
+ },
28
+ {
29
+ "author": "beachball",
30
+ "package": "@fluentui/react-radio",
31
+ "comment": "Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1",
32
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
33
+ },
34
+ {
35
+ "author": "beachball",
36
+ "package": "@fluentui/react-radio",
37
+ "comment": "Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1",
38
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
39
+ },
40
+ {
41
+ "author": "beachball",
42
+ "package": "@fluentui/react-radio",
43
+ "comment": "Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1",
44
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
45
+ },
46
+ {
47
+ "author": "beachball",
48
+ "package": "@fluentui/react-radio",
49
+ "comment": "Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1",
50
+ "commit": "53b1c4f7ec45eabb24152a601ce3341b825b3aec"
51
+ }
52
+ ]
53
+ }
54
+ },
55
+ {
56
+ "date": "Tue, 01 Mar 2022 02:17:40 GMT",
57
+ "tag": "@fluentui/react-radio_v9.0.0-beta.1",
58
+ "version": "9.0.0-beta.1",
59
+ "comments": {
60
+ "prerelease": [
61
+ {
62
+ "author": "beachball",
63
+ "package": "@fluentui/react-radio",
64
+ "comment": "Bump @fluentui/react-label to v9.0.0-beta.8",
65
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
66
+ },
67
+ {
68
+ "author": "beachball",
69
+ "package": "@fluentui/react-radio",
70
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.4",
71
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
72
+ },
73
+ {
74
+ "author": "beachball",
75
+ "package": "@fluentui/react-radio",
76
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.4",
77
+ "commit": "0bc1e755543ed69443d5d03e1976c630583242f7"
78
+ }
79
+ ]
80
+ }
81
+ },
82
+ {
83
+ "date": "Fri, 18 Feb 2022 13:35:38 GMT",
84
+ "tag": "@fluentui/react-radio_v9.0.0-beta.1",
85
+ "version": "9.0.0-beta.1",
86
+ "comments": {
87
+ "prerelease": [
88
+ {
89
+ "author": "beachball",
90
+ "package": "@fluentui/react-radio",
91
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.3",
92
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
93
+ },
94
+ {
95
+ "author": "beachball",
96
+ "package": "@fluentui/react-radio",
97
+ "comment": "Bump @fluentui/react-label to v9.0.0-beta.7",
98
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
99
+ },
100
+ {
101
+ "author": "beachball",
102
+ "package": "@fluentui/react-radio",
103
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.3",
104
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
105
+ },
106
+ {
107
+ "author": "beachball",
108
+ "package": "@fluentui/react-radio",
109
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3",
110
+ "commit": "3b9c1e931c23173da3d1af0c696cdc58516ce504"
111
+ }
112
+ ]
113
+ }
114
+ },
115
+ {
116
+ "date": "Thu, 10 Feb 2022 08:52:26 GMT",
117
+ "tag": "@fluentui/react-radio_v9.0.0-beta.0",
118
+ "version": "9.0.0-beta.0",
119
+ "comments": {
120
+ "prerelease": [
121
+ {
122
+ "author": "beachball",
123
+ "package": "@fluentui/react-radio",
124
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-rc.1",
125
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
126
+ },
127
+ {
128
+ "author": "beachball",
129
+ "package": "@fluentui/react-radio",
130
+ "comment": "Bump @fluentui/react-label to v9.0.0-beta.5",
131
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
132
+ },
133
+ {
134
+ "author": "beachball",
135
+ "package": "@fluentui/react-radio",
136
+ "comment": "Bump @fluentui/react-tabster to v9.0.0-rc.1",
137
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
138
+ },
139
+ {
140
+ "author": "beachball",
141
+ "package": "@fluentui/react-radio",
142
+ "comment": "Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1",
143
+ "commit": "e6c855f6d9019d6c73668d15fc9bc3a13291a6c8"
144
+ }
145
+ ]
146
+ }
147
+ },
148
+ {
149
+ "date": "Thu, 25 Nov 2021 08:34:17 GMT",
150
+ "tag": "@fluentui/react-radio_v9.0.0-beta.0",
151
+ "version": "9.0.0-beta.0",
152
+ "comments": {
153
+ "prerelease": [
154
+ {
155
+ "author": "beachball",
156
+ "package": "@fluentui/react-radio",
157
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.4",
158
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
159
+ },
160
+ {
161
+ "author": "beachball",
162
+ "package": "@fluentui/react-radio",
163
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.4",
164
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
165
+ },
166
+ {
167
+ "author": "beachball",
168
+ "package": "@fluentui/react-radio",
169
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.4",
170
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
171
+ },
172
+ {
173
+ "author": "beachball",
174
+ "package": "@fluentui/react-radio",
175
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4",
176
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
177
+ },
178
+ {
179
+ "author": "beachball",
180
+ "package": "@fluentui/react-radio",
181
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4",
182
+ "commit": "48d236ac53a4950fabc3ddd52f91dac93ca0195b"
183
+ }
184
+ ]
185
+ }
186
+ },
187
+ {
188
+ "date": "Fri, 12 Nov 2021 13:25:34 GMT",
189
+ "tag": "@fluentui/react-radio_v9.0.0-beta.0",
190
+ "version": "9.0.0-beta.0",
191
+ "comments": {
192
+ "prerelease": [
193
+ {
194
+ "author": "beachball",
195
+ "package": "@fluentui/react-radio",
196
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.3",
197
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
198
+ },
199
+ {
200
+ "author": "beachball",
201
+ "package": "@fluentui/react-radio",
202
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.3",
203
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
204
+ },
205
+ {
206
+ "author": "beachball",
207
+ "package": "@fluentui/react-radio",
208
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.3",
209
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
210
+ },
211
+ {
212
+ "author": "beachball",
213
+ "package": "@fluentui/react-radio",
214
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3",
215
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
216
+ },
217
+ {
218
+ "author": "beachball",
219
+ "package": "@fluentui/react-radio",
220
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3",
221
+ "commit": "742342e52c65066f779232e4e1302fedf0dd460d"
222
+ }
223
+ ]
224
+ }
225
+ },
226
+ {
227
+ "date": "Wed, 27 Oct 2021 12:14:24 GMT",
228
+ "tag": "@fluentui/react-radio_v9.0.0-beta.0",
229
+ "version": "9.0.0-beta.0",
230
+ "comments": {
231
+ "prerelease": [
232
+ {
233
+ "author": "beachball",
234
+ "package": "@fluentui/react-radio",
235
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.2",
236
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
237
+ },
238
+ {
239
+ "author": "beachball",
240
+ "package": "@fluentui/react-radio",
241
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.2",
242
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
243
+ },
244
+ {
245
+ "author": "beachball",
246
+ "package": "@fluentui/react-radio",
247
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.2",
248
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
249
+ },
250
+ {
251
+ "author": "beachball",
252
+ "package": "@fluentui/react-radio",
253
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2",
254
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
255
+ },
256
+ {
257
+ "author": "beachball",
258
+ "package": "@fluentui/react-radio",
259
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2",
260
+ "commit": "0f8f1ae7c2d908e51e29dd342d79e041f86fac08"
261
+ }
262
+ ]
263
+ }
264
+ },
265
+ {
266
+ "date": "Wed, 06 Oct 2021 10:37:22 GMT",
267
+ "tag": "@fluentui/react-radio_v9.0.0-beta.0",
268
+ "version": "9.0.0-beta.0",
269
+ "comments": {
270
+ "prerelease": [
271
+ {
272
+ "author": "beachball",
273
+ "package": "@fluentui/react-radio",
274
+ "comment": "Bump @fluentui/react-make-styles to v9.0.0-beta.1",
275
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
276
+ },
277
+ {
278
+ "author": "beachball",
279
+ "package": "@fluentui/react-radio",
280
+ "comment": "Bump @fluentui/react-utilities to v9.0.0-beta.1",
281
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
282
+ },
283
+ {
284
+ "author": "beachball",
285
+ "package": "@fluentui/react-radio",
286
+ "comment": "Bump @fluentui/babel-make-styles to v9.0.0-beta.1",
287
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
288
+ },
289
+ {
290
+ "author": "beachball",
291
+ "package": "@fluentui/react-radio",
292
+ "comment": "Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1",
293
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
294
+ },
295
+ {
296
+ "author": "beachball",
297
+ "package": "@fluentui/react-radio",
298
+ "comment": "Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1",
299
+ "commit": "5553164c190a4beb4780745d0e6403109e057913"
300
+ }
301
+ ]
302
+ }
303
+ }
304
+ ]
305
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,106 @@
1
+ # Change Log - @fluentui/react-radio
2
+
3
+ This log was last generated on Wed, 02 Mar 2022 04:14:56 GMT and should not be manually modified.
4
+
5
+ <!-- Start content -->
6
+
7
+ ## [0.0.0-nightly-20220302-0405.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v0.0.0-nightly-20220302-0405.1)
8
+
9
+ Wed, 02 Mar 2022 04:14:56 GMT
10
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.1..@fluentui/react-radio_v0.0.0-nightly-20220302-0405.1)
11
+
12
+ ### Changes
13
+
14
+ - Release nightly v9 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by email not defined)
15
+ - Initial release ([PR #21883](https://github.com/microsoft/fluentui/pull/21883) by behowell@microsoft.com)
16
+ - Bump @fluentui/react-label to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
17
+ - Bump @fluentui/react-tabster to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
18
+ - Bump @fluentui/react-theme to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
19
+ - Bump @fluentui/react-utilities to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
20
+ - Bump @fluentui/react-conformance-griffel to v0.0.0-nightly-20220302-0405.1 ([commit](https://github.com/microsoft/fluentui/commit/53b1c4f7ec45eabb24152a601ce3341b825b3aec) by beachball)
21
+
22
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.1)
23
+
24
+ Tue, 01 Mar 2022 02:17:40 GMT
25
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.1..@fluentui/react-radio_v9.0.0-beta.1)
26
+
27
+ ### Changes
28
+
29
+ - Bump @fluentui/react-label to v9.0.0-beta.8 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
30
+ - Bump @fluentui/react-tabster to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
31
+ - Bump @fluentui/react-utilities to v9.0.0-rc.4 ([PR #21884](https://github.com/microsoft/fluentui/pull/21884) by beachball)
32
+
33
+ ## [9.0.0-beta.1](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.1)
34
+
35
+ Fri, 18 Feb 2022 13:35:38 GMT
36
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.0..@fluentui/react-radio_v9.0.0-beta.1)
37
+
38
+ ### Changes
39
+
40
+ - Bump @fluentui/react-utilities to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
41
+ - Bump @fluentui/react-label to v9.0.0-beta.7 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
42
+ - Bump @fluentui/react-tabster to v9.0.0-rc.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
43
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.3 ([PR #21800](https://github.com/microsoft/fluentui/pull/21800) by beachball)
44
+
45
+ ## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.0)
46
+
47
+ Thu, 10 Feb 2022 08:52:26 GMT
48
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.0..@fluentui/react-radio_v9.0.0-beta.0)
49
+
50
+ ### Changes
51
+
52
+ - Bump @fluentui/react-utilities to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
53
+ - Bump @fluentui/react-label to v9.0.0-beta.5 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
54
+ - Bump @fluentui/react-tabster to v9.0.0-rc.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
55
+ - Bump @fluentui/react-conformance-griffel to v9.0.0-beta.1 ([commit](https://github.com/microsoft/fluentui/commit/e6c855f6d9019d6c73668d15fc9bc3a13291a6c8) by beachball)
56
+
57
+ ## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.0)
58
+
59
+ Thu, 25 Nov 2021 08:34:17 GMT
60
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.0..@fluentui/react-radio_v9.0.0-beta.0)
61
+
62
+ ### Changes
63
+
64
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
65
+ - Bump @fluentui/react-utilities to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
66
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
67
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
68
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.4 ([PR #20762](https://github.com/microsoft/fluentui/pull/20762) by beachball)
69
+
70
+ ## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.0)
71
+
72
+ Fri, 12 Nov 2021 13:25:34 GMT
73
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.0..@fluentui/react-radio_v9.0.0-beta.0)
74
+
75
+ ### Changes
76
+
77
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
78
+ - Bump @fluentui/react-utilities to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
79
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
80
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
81
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.3 ([PR #20583](https://github.com/microsoft/fluentui/pull/20583) by beachball)
82
+
83
+ ## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.0)
84
+
85
+ Wed, 27 Oct 2021 12:14:24 GMT
86
+ [Compare changes](https://github.com/microsoft/fluentui/compare/@fluentui/react-radio_v9.0.0-beta.0..@fluentui/react-radio_v9.0.0-beta.0)
87
+
88
+ ### Changes
89
+
90
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
91
+ - Bump @fluentui/react-utilities to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
92
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
93
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
94
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.2 ([PR #20353](https://github.com/microsoft/fluentui/pull/20353) by beachball)
95
+
96
+ ## [9.0.0-beta.0](https://github.com/microsoft/fluentui/tree/@fluentui/react-radio_v9.0.0-beta.0)
97
+
98
+ Wed, 06 Oct 2021 10:37:22 GMT
99
+
100
+ ### Changes
101
+
102
+ - Bump @fluentui/react-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
103
+ - Bump @fluentui/react-utilities to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
104
+ - Bump @fluentui/babel-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
105
+ - Bump @fluentui/jest-serializer-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
106
+ - Bump @fluentui/react-conformance-make-styles to v9.0.0-beta.1 ([PR #20106](https://github.com/microsoft/fluentui/pull/20106) by beachball)
package/LICENSE ADDED
@@ -0,0 +1,15 @@
1
+ @fluentui/react-radio
2
+
3
+ Copyright (c) Microsoft Corporation
4
+
5
+ All rights reserved.
6
+
7
+ MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ""Software""), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
14
+
15
+ Note: Usage of the fonts and icons referenced in Fluent UI React is subject to the terms listed at https://aka.ms/fluentui-assets-license
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # @fluentui/react-radio
2
+
3
+ **React Radio components for [Fluent UI React](https://developer.microsoft.com/en-us/fluentui)**
4
+
5
+ These are not production-ready components and **should never be used in product**. This space is useful for testing new components whose APIs might change before final release.