@atlaskit/radio 6.2.0 → 6.4.0

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/report.api.md CHANGED
@@ -2,7 +2,8 @@
2
2
 
3
3
  ## API Report File for "@atlaskit/radio"
4
4
 
5
- > Do not edit this file. This report is auto-generated using [API Extractor](https://api-extractor.com/).
5
+ > Do not edit this file. This report is auto-generated using
6
+ > [API Extractor](https://api-extractor.com/).
6
7
  > [Learn more about API reports](https://hello.atlassian.net/wiki/spaces/UR/pages/1825484529/Package+API+Reports)
7
8
 
8
9
  ### Table of contents
@@ -30,11 +31,11 @@ import { WithAnalyticsEventsProps } from '@atlaskit/analytics-next';
30
31
 
31
32
  // @public (undocumented)
32
33
  type OptionPropType = {
33
- isDisabled?: boolean;
34
- label?: ReactNode;
35
- name?: string;
36
- value?: RadioValue;
37
- testId?: string;
34
+ isDisabled?: boolean;
35
+ label?: ReactNode;
36
+ name?: string;
37
+ value?: RadioValue;
38
+ testId?: string;
38
39
  };
39
40
 
40
41
  // @public (undocumented)
@@ -42,347 +43,338 @@ type OptionsPropType = Array<OptionPropType>;
42
43
 
43
44
  // @public
44
45
  export const Radio: MemoExoticComponent<
45
- ForwardRefExoticComponent<
46
- Pick<
47
- Omit<
48
- Omit<
49
- InputHTMLAttributes<HTMLInputElement>,
50
- 'aria-label' | 'checked' | 'disabled' | 'required' | 'value'
51
- >,
52
- keyof {
53
- ariaLabel?: string | undefined;
54
- isDisabled?: boolean | undefined;
55
- isRequired?: boolean | undefined;
56
- isInvalid?: boolean | undefined;
57
- isChecked?: boolean | undefined;
58
- label?: ReactNode;
59
- onChange?:
60
- | ((
61
- e: ChangeEvent<HTMLInputElement>,
62
- analyticsEvent: UIAnalyticsEvent,
63
- ) => void)
64
- | undefined;
65
- value?: string | undefined;
66
- testId?: string | undefined;
67
- analyticsContext?: Record<string, any> | undefined;
68
- }
69
- > & {
70
- ariaLabel?: string | undefined;
71
- isDisabled?: boolean | undefined;
72
- isRequired?: boolean | undefined;
73
- isInvalid?: boolean | undefined;
74
- isChecked?: boolean | undefined;
75
- label?: ReactNode;
76
- onChange?:
77
- | ((
78
- e: ChangeEvent<HTMLInputElement>,
79
- analyticsEvent: UIAnalyticsEvent,
80
- ) => void)
81
- | undefined;
82
- value?: string | undefined;
83
- testId?: string | undefined;
84
- analyticsContext?: Record<string, any> | undefined;
85
- } & WithAnalyticsEventsProps,
86
- | 'about'
87
- | 'accept'
88
- | 'accessKey'
89
- | 'alt'
90
- | 'aria-activedescendant'
91
- | 'aria-atomic'
92
- | 'aria-autocomplete'
93
- | 'aria-busy'
94
- | 'aria-checked'
95
- | 'aria-colcount'
96
- | 'aria-colindex'
97
- | 'aria-colspan'
98
- | 'aria-controls'
99
- | 'aria-current'
100
- | 'aria-describedby'
101
- | 'aria-details'
102
- | 'aria-disabled'
103
- | 'aria-dropeffect'
104
- | 'aria-errormessage'
105
- | 'aria-expanded'
106
- | 'aria-flowto'
107
- | 'aria-grabbed'
108
- | 'aria-haspopup'
109
- | 'aria-hidden'
110
- | 'aria-invalid'
111
- | 'aria-keyshortcuts'
112
- | 'aria-labelledby'
113
- | 'aria-level'
114
- | 'aria-live'
115
- | 'aria-modal'
116
- | 'aria-multiline'
117
- | 'aria-multiselectable'
118
- | 'aria-orientation'
119
- | 'aria-owns'
120
- | 'aria-placeholder'
121
- | 'aria-posinset'
122
- | 'aria-pressed'
123
- | 'aria-readonly'
124
- | 'aria-relevant'
125
- | 'aria-required'
126
- | 'aria-roledescription'
127
- | 'aria-rowcount'
128
- | 'aria-rowindex'
129
- | 'aria-rowspan'
130
- | 'aria-selected'
131
- | 'aria-setsize'
132
- | 'aria-sort'
133
- | 'aria-valuemax'
134
- | 'aria-valuemin'
135
- | 'aria-valuenow'
136
- | 'aria-valuetext'
137
- | 'autoCapitalize'
138
- | 'autoComplete'
139
- | 'autoCorrect'
140
- | 'autoFocus'
141
- | 'autoSave'
142
- | 'capture'
143
- | 'children'
144
- | 'className'
145
- | 'color'
146
- | 'contentEditable'
147
- | 'contextMenu'
148
- | 'createAnalyticsEvent'
149
- | 'crossOrigin'
150
- | 'dangerouslySetInnerHTML'
151
- | 'datatype'
152
- | 'defaultChecked'
153
- | 'defaultValue'
154
- | 'dir'
155
- | 'draggable'
156
- | 'form'
157
- | 'formAction'
158
- | 'formEncType'
159
- | 'formMethod'
160
- | 'formNoValidate'
161
- | 'formTarget'
162
- | 'height'
163
- | 'hidden'
164
- | 'id'
165
- | 'inlist'
166
- | 'inputMode'
167
- | 'is'
168
- | 'itemID'
169
- | 'itemProp'
170
- | 'itemRef'
171
- | 'itemScope'
172
- | 'itemType'
173
- | 'lang'
174
- | 'list'
175
- | 'max'
176
- | 'maxLength'
177
- | 'min'
178
- | 'minLength'
179
- | 'multiple'
180
- | 'name'
181
- | 'onAbort'
182
- | 'onAbortCapture'
183
- | 'onAnimationEnd'
184
- | 'onAnimationEndCapture'
185
- | 'onAnimationIteration'
186
- | 'onAnimationIterationCapture'
187
- | 'onAnimationStart'
188
- | 'onAnimationStartCapture'
189
- | 'onAuxClick'
190
- | 'onAuxClickCapture'
191
- | 'onBeforeInput'
192
- | 'onBeforeInputCapture'
193
- | 'onBlur'
194
- | 'onBlurCapture'
195
- | 'onCanPlay'
196
- | 'onCanPlayCapture'
197
- | 'onCanPlayThrough'
198
- | 'onCanPlayThroughCapture'
199
- | 'onChangeCapture'
200
- | 'onClick'
201
- | 'onClickCapture'
202
- | 'onCompositionEnd'
203
- | 'onCompositionEndCapture'
204
- | 'onCompositionStart'
205
- | 'onCompositionStartCapture'
206
- | 'onCompositionUpdate'
207
- | 'onCompositionUpdateCapture'
208
- | 'onContextMenu'
209
- | 'onContextMenuCapture'
210
- | 'onCopy'
211
- | 'onCopyCapture'
212
- | 'onCut'
213
- | 'onCutCapture'
214
- | 'onDoubleClick'
215
- | 'onDoubleClickCapture'
216
- | 'onDrag'
217
- | 'onDragCapture'
218
- | 'onDragEnd'
219
- | 'onDragEndCapture'
220
- | 'onDragEnter'
221
- | 'onDragEnterCapture'
222
- | 'onDragExit'
223
- | 'onDragExitCapture'
224
- | 'onDragLeave'
225
- | 'onDragLeaveCapture'
226
- | 'onDragOver'
227
- | 'onDragOverCapture'
228
- | 'onDragStart'
229
- | 'onDragStartCapture'
230
- | 'onDrop'
231
- | 'onDropCapture'
232
- | 'onDurationChange'
233
- | 'onDurationChangeCapture'
234
- | 'onEmptied'
235
- | 'onEmptiedCapture'
236
- | 'onEncrypted'
237
- | 'onEncryptedCapture'
238
- | 'onEnded'
239
- | 'onEndedCapture'
240
- | 'onError'
241
- | 'onErrorCapture'
242
- | 'onFocus'
243
- | 'onFocusCapture'
244
- | 'onGotPointerCapture'
245
- | 'onGotPointerCaptureCapture'
246
- | 'onInput'
247
- | 'onInputCapture'
248
- | 'onInvalid'
249
- | 'onInvalidCapture'
250
- | 'onKeyDown'
251
- | 'onKeyDownCapture'
252
- | 'onKeyPress'
253
- | 'onKeyPressCapture'
254
- | 'onKeyUp'
255
- | 'onKeyUpCapture'
256
- | 'onLoad'
257
- | 'onLoadCapture'
258
- | 'onLoadStart'
259
- | 'onLoadStartCapture'
260
- | 'onLoadedData'
261
- | 'onLoadedDataCapture'
262
- | 'onLoadedMetadata'
263
- | 'onLoadedMetadataCapture'
264
- | 'onLostPointerCapture'
265
- | 'onLostPointerCaptureCapture'
266
- | 'onMouseDown'
267
- | 'onMouseDownCapture'
268
- | 'onMouseEnter'
269
- | 'onMouseLeave'
270
- | 'onMouseMove'
271
- | 'onMouseMoveCapture'
272
- | 'onMouseOut'
273
- | 'onMouseOutCapture'
274
- | 'onMouseOver'
275
- | 'onMouseOverCapture'
276
- | 'onMouseUp'
277
- | 'onMouseUpCapture'
278
- | 'onPaste'
279
- | 'onPasteCapture'
280
- | 'onPause'
281
- | 'onPauseCapture'
282
- | 'onPlay'
283
- | 'onPlayCapture'
284
- | 'onPlaying'
285
- | 'onPlayingCapture'
286
- | 'onPointerCancel'
287
- | 'onPointerCancelCapture'
288
- | 'onPointerDown'
289
- | 'onPointerDownCapture'
290
- | 'onPointerEnter'
291
- | 'onPointerEnterCapture'
292
- | 'onPointerLeave'
293
- | 'onPointerLeaveCapture'
294
- | 'onPointerMove'
295
- | 'onPointerMoveCapture'
296
- | 'onPointerOut'
297
- | 'onPointerOutCapture'
298
- | 'onPointerOver'
299
- | 'onPointerOverCapture'
300
- | 'onPointerUp'
301
- | 'onPointerUpCapture'
302
- | 'onProgress'
303
- | 'onProgressCapture'
304
- | 'onRateChange'
305
- | 'onRateChangeCapture'
306
- | 'onReset'
307
- | 'onResetCapture'
308
- | 'onScroll'
309
- | 'onScrollCapture'
310
- | 'onSeeked'
311
- | 'onSeekedCapture'
312
- | 'onSeeking'
313
- | 'onSeekingCapture'
314
- | 'onSelect'
315
- | 'onSelectCapture'
316
- | 'onStalled'
317
- | 'onStalledCapture'
318
- | 'onSubmit'
319
- | 'onSubmitCapture'
320
- | 'onSuspend'
321
- | 'onSuspendCapture'
322
- | 'onTimeUpdate'
323
- | 'onTimeUpdateCapture'
324
- | 'onTouchCancel'
325
- | 'onTouchCancelCapture'
326
- | 'onTouchEnd'
327
- | 'onTouchEndCapture'
328
- | 'onTouchMove'
329
- | 'onTouchMoveCapture'
330
- | 'onTouchStart'
331
- | 'onTouchStartCapture'
332
- | 'onTransitionEnd'
333
- | 'onTransitionEndCapture'
334
- | 'onVolumeChange'
335
- | 'onVolumeChangeCapture'
336
- | 'onWaiting'
337
- | 'onWaitingCapture'
338
- | 'onWheel'
339
- | 'onWheelCapture'
340
- | 'pattern'
341
- | 'placeholder'
342
- | 'prefix'
343
- | 'property'
344
- | 'radioGroup'
345
- | 'readOnly'
346
- | 'resource'
347
- | 'results'
348
- | 'role'
349
- | 'security'
350
- | 'size'
351
- | 'slot'
352
- | 'spellCheck'
353
- | 'src'
354
- | 'step'
355
- | 'style'
356
- | 'suppressContentEditableWarning'
357
- | 'suppressHydrationWarning'
358
- | 'tabIndex'
359
- | 'title'
360
- | 'translate'
361
- | 'type'
362
- | 'typeof'
363
- | 'unselectable'
364
- | 'vocab'
365
- | 'width'
366
- | keyof {
367
- ariaLabel?: string | undefined;
368
- isDisabled?: boolean | undefined;
369
- isRequired?: boolean | undefined;
370
- isInvalid?: boolean | undefined;
371
- isChecked?: boolean | undefined;
372
- label?: ReactNode;
373
- onChange?:
374
- | ((
375
- e: ChangeEvent<HTMLInputElement>,
376
- analyticsEvent: UIAnalyticsEvent,
377
- ) => void)
378
- | undefined;
379
- value?: string | undefined;
380
- testId?: string | undefined;
381
- analyticsContext?: Record<string, any> | undefined;
382
- }
383
- > &
384
- RefAttributes<HTMLInputElement>
385
- >
46
+ ForwardRefExoticComponent<
47
+ Pick<
48
+ Omit<
49
+ Omit<
50
+ InputHTMLAttributes<HTMLInputElement>,
51
+ 'aria-label' | 'checked' | 'disabled' | 'required' | 'value'
52
+ >,
53
+ keyof {
54
+ ariaLabel?: string | undefined;
55
+ isDisabled?: boolean | undefined;
56
+ isRequired?: boolean | undefined;
57
+ isInvalid?: boolean | undefined;
58
+ isChecked?: boolean | undefined;
59
+ label?: ReactNode;
60
+ onChange?:
61
+ | ((e: ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void)
62
+ | undefined;
63
+ value?: string | undefined;
64
+ testId?: string | undefined;
65
+ analyticsContext?: Record<string, any> | undefined;
66
+ }
67
+ > & {
68
+ ariaLabel?: string | undefined;
69
+ isDisabled?: boolean | undefined;
70
+ isRequired?: boolean | undefined;
71
+ isInvalid?: boolean | undefined;
72
+ isChecked?: boolean | undefined;
73
+ label?: ReactNode;
74
+ onChange?:
75
+ | ((e: ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void)
76
+ | undefined;
77
+ value?: string | undefined;
78
+ testId?: string | undefined;
79
+ analyticsContext?: Record<string, any> | undefined;
80
+ } & WithAnalyticsEventsProps,
81
+ | 'about'
82
+ | 'accept'
83
+ | 'accessKey'
84
+ | 'alt'
85
+ | 'aria-activedescendant'
86
+ | 'aria-atomic'
87
+ | 'aria-autocomplete'
88
+ | 'aria-busy'
89
+ | 'aria-checked'
90
+ | 'aria-colcount'
91
+ | 'aria-colindex'
92
+ | 'aria-colspan'
93
+ | 'aria-controls'
94
+ | 'aria-current'
95
+ | 'aria-describedby'
96
+ | 'aria-details'
97
+ | 'aria-disabled'
98
+ | 'aria-dropeffect'
99
+ | 'aria-errormessage'
100
+ | 'aria-expanded'
101
+ | 'aria-flowto'
102
+ | 'aria-grabbed'
103
+ | 'aria-haspopup'
104
+ | 'aria-hidden'
105
+ | 'aria-invalid'
106
+ | 'aria-keyshortcuts'
107
+ | 'aria-labelledby'
108
+ | 'aria-level'
109
+ | 'aria-live'
110
+ | 'aria-modal'
111
+ | 'aria-multiline'
112
+ | 'aria-multiselectable'
113
+ | 'aria-orientation'
114
+ | 'aria-owns'
115
+ | 'aria-placeholder'
116
+ | 'aria-posinset'
117
+ | 'aria-pressed'
118
+ | 'aria-readonly'
119
+ | 'aria-relevant'
120
+ | 'aria-required'
121
+ | 'aria-roledescription'
122
+ | 'aria-rowcount'
123
+ | 'aria-rowindex'
124
+ | 'aria-rowspan'
125
+ | 'aria-selected'
126
+ | 'aria-setsize'
127
+ | 'aria-sort'
128
+ | 'aria-valuemax'
129
+ | 'aria-valuemin'
130
+ | 'aria-valuenow'
131
+ | 'aria-valuetext'
132
+ | 'autoCapitalize'
133
+ | 'autoComplete'
134
+ | 'autoCorrect'
135
+ | 'autoFocus'
136
+ | 'autoSave'
137
+ | 'capture'
138
+ | 'children'
139
+ | 'className'
140
+ | 'color'
141
+ | 'contentEditable'
142
+ | 'contextMenu'
143
+ | 'createAnalyticsEvent'
144
+ | 'crossOrigin'
145
+ | 'dangerouslySetInnerHTML'
146
+ | 'datatype'
147
+ | 'defaultChecked'
148
+ | 'defaultValue'
149
+ | 'dir'
150
+ | 'draggable'
151
+ | 'form'
152
+ | 'formAction'
153
+ | 'formEncType'
154
+ | 'formMethod'
155
+ | 'formNoValidate'
156
+ | 'formTarget'
157
+ | 'height'
158
+ | 'hidden'
159
+ | 'id'
160
+ | 'inlist'
161
+ | 'inputMode'
162
+ | 'is'
163
+ | 'itemID'
164
+ | 'itemProp'
165
+ | 'itemRef'
166
+ | 'itemScope'
167
+ | 'itemType'
168
+ | 'lang'
169
+ | 'list'
170
+ | 'max'
171
+ | 'maxLength'
172
+ | 'min'
173
+ | 'minLength'
174
+ | 'multiple'
175
+ | 'name'
176
+ | 'onAbort'
177
+ | 'onAbortCapture'
178
+ | 'onAnimationEnd'
179
+ | 'onAnimationEndCapture'
180
+ | 'onAnimationIteration'
181
+ | 'onAnimationIterationCapture'
182
+ | 'onAnimationStart'
183
+ | 'onAnimationStartCapture'
184
+ | 'onAuxClick'
185
+ | 'onAuxClickCapture'
186
+ | 'onBeforeInput'
187
+ | 'onBeforeInputCapture'
188
+ | 'onBlur'
189
+ | 'onBlurCapture'
190
+ | 'onCanPlay'
191
+ | 'onCanPlayCapture'
192
+ | 'onCanPlayThrough'
193
+ | 'onCanPlayThroughCapture'
194
+ | 'onChangeCapture'
195
+ | 'onClick'
196
+ | 'onClickCapture'
197
+ | 'onCompositionEnd'
198
+ | 'onCompositionEndCapture'
199
+ | 'onCompositionStart'
200
+ | 'onCompositionStartCapture'
201
+ | 'onCompositionUpdate'
202
+ | 'onCompositionUpdateCapture'
203
+ | 'onContextMenu'
204
+ | 'onContextMenuCapture'
205
+ | 'onCopy'
206
+ | 'onCopyCapture'
207
+ | 'onCut'
208
+ | 'onCutCapture'
209
+ | 'onDoubleClick'
210
+ | 'onDoubleClickCapture'
211
+ | 'onDrag'
212
+ | 'onDragCapture'
213
+ | 'onDragEnd'
214
+ | 'onDragEndCapture'
215
+ | 'onDragEnter'
216
+ | 'onDragEnterCapture'
217
+ | 'onDragExit'
218
+ | 'onDragExitCapture'
219
+ | 'onDragLeave'
220
+ | 'onDragLeaveCapture'
221
+ | 'onDragOver'
222
+ | 'onDragOverCapture'
223
+ | 'onDragStart'
224
+ | 'onDragStartCapture'
225
+ | 'onDrop'
226
+ | 'onDropCapture'
227
+ | 'onDurationChange'
228
+ | 'onDurationChangeCapture'
229
+ | 'onEmptied'
230
+ | 'onEmptiedCapture'
231
+ | 'onEncrypted'
232
+ | 'onEncryptedCapture'
233
+ | 'onEnded'
234
+ | 'onEndedCapture'
235
+ | 'onError'
236
+ | 'onErrorCapture'
237
+ | 'onFocus'
238
+ | 'onFocusCapture'
239
+ | 'onGotPointerCapture'
240
+ | 'onGotPointerCaptureCapture'
241
+ | 'onInput'
242
+ | 'onInputCapture'
243
+ | 'onInvalid'
244
+ | 'onInvalidCapture'
245
+ | 'onKeyDown'
246
+ | 'onKeyDownCapture'
247
+ | 'onKeyPress'
248
+ | 'onKeyPressCapture'
249
+ | 'onKeyUp'
250
+ | 'onKeyUpCapture'
251
+ | 'onLoad'
252
+ | 'onLoadCapture'
253
+ | 'onLoadStart'
254
+ | 'onLoadStartCapture'
255
+ | 'onLoadedData'
256
+ | 'onLoadedDataCapture'
257
+ | 'onLoadedMetadata'
258
+ | 'onLoadedMetadataCapture'
259
+ | 'onLostPointerCapture'
260
+ | 'onLostPointerCaptureCapture'
261
+ | 'onMouseDown'
262
+ | 'onMouseDownCapture'
263
+ | 'onMouseEnter'
264
+ | 'onMouseLeave'
265
+ | 'onMouseMove'
266
+ | 'onMouseMoveCapture'
267
+ | 'onMouseOut'
268
+ | 'onMouseOutCapture'
269
+ | 'onMouseOver'
270
+ | 'onMouseOverCapture'
271
+ | 'onMouseUp'
272
+ | 'onMouseUpCapture'
273
+ | 'onPaste'
274
+ | 'onPasteCapture'
275
+ | 'onPause'
276
+ | 'onPauseCapture'
277
+ | 'onPlay'
278
+ | 'onPlayCapture'
279
+ | 'onPlaying'
280
+ | 'onPlayingCapture'
281
+ | 'onPointerCancel'
282
+ | 'onPointerCancelCapture'
283
+ | 'onPointerDown'
284
+ | 'onPointerDownCapture'
285
+ | 'onPointerEnter'
286
+ | 'onPointerEnterCapture'
287
+ | 'onPointerLeave'
288
+ | 'onPointerLeaveCapture'
289
+ | 'onPointerMove'
290
+ | 'onPointerMoveCapture'
291
+ | 'onPointerOut'
292
+ | 'onPointerOutCapture'
293
+ | 'onPointerOver'
294
+ | 'onPointerOverCapture'
295
+ | 'onPointerUp'
296
+ | 'onPointerUpCapture'
297
+ | 'onProgress'
298
+ | 'onProgressCapture'
299
+ | 'onRateChange'
300
+ | 'onRateChangeCapture'
301
+ | 'onReset'
302
+ | 'onResetCapture'
303
+ | 'onScroll'
304
+ | 'onScrollCapture'
305
+ | 'onSeeked'
306
+ | 'onSeekedCapture'
307
+ | 'onSeeking'
308
+ | 'onSeekingCapture'
309
+ | 'onSelect'
310
+ | 'onSelectCapture'
311
+ | 'onStalled'
312
+ | 'onStalledCapture'
313
+ | 'onSubmit'
314
+ | 'onSubmitCapture'
315
+ | 'onSuspend'
316
+ | 'onSuspendCapture'
317
+ | 'onTimeUpdate'
318
+ | 'onTimeUpdateCapture'
319
+ | 'onTouchCancel'
320
+ | 'onTouchCancelCapture'
321
+ | 'onTouchEnd'
322
+ | 'onTouchEndCapture'
323
+ | 'onTouchMove'
324
+ | 'onTouchMoveCapture'
325
+ | 'onTouchStart'
326
+ | 'onTouchStartCapture'
327
+ | 'onTransitionEnd'
328
+ | 'onTransitionEndCapture'
329
+ | 'onVolumeChange'
330
+ | 'onVolumeChangeCapture'
331
+ | 'onWaiting'
332
+ | 'onWaitingCapture'
333
+ | 'onWheel'
334
+ | 'onWheelCapture'
335
+ | 'pattern'
336
+ | 'placeholder'
337
+ | 'prefix'
338
+ | 'property'
339
+ | 'radioGroup'
340
+ | 'readOnly'
341
+ | 'resource'
342
+ | 'results'
343
+ | 'role'
344
+ | 'security'
345
+ | 'size'
346
+ | 'slot'
347
+ | 'spellCheck'
348
+ | 'src'
349
+ | 'step'
350
+ | 'style'
351
+ | 'suppressContentEditableWarning'
352
+ | 'suppressHydrationWarning'
353
+ | 'tabIndex'
354
+ | 'title'
355
+ | 'translate'
356
+ | 'type'
357
+ | 'typeof'
358
+ | 'unselectable'
359
+ | 'vocab'
360
+ | 'width'
361
+ | keyof {
362
+ ariaLabel?: string | undefined;
363
+ isDisabled?: boolean | undefined;
364
+ isRequired?: boolean | undefined;
365
+ isInvalid?: boolean | undefined;
366
+ isChecked?: boolean | undefined;
367
+ label?: ReactNode;
368
+ onChange?:
369
+ | ((e: ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void)
370
+ | undefined;
371
+ value?: string | undefined;
372
+ testId?: string | undefined;
373
+ analyticsContext?: Record<string, any> | undefined;
374
+ }
375
+ > &
376
+ RefAttributes<HTMLInputElement>
377
+ >
386
378
  >;
387
379
 
388
380
  // @public (undocumented)
@@ -390,20 +382,17 @@ export function RadioGroup(props: RadioGroupProps): JSX.Element;
390
382
 
391
383
  // @public (undocumented)
392
384
  interface RadioGroupProps {
393
- 'aria-labelledby'?: string;
394
- analyticsContext?: Record<string, any>;
395
- defaultValue?: RadioValue | null;
396
- isDisabled?: boolean;
397
- isInvalid?: boolean;
398
- isRequired?: boolean;
399
- name?: string;
400
- onChange?: (
401
- e: React_2.ChangeEvent<HTMLInputElement>,
402
- analyticsEvent: UIAnalyticsEvent,
403
- ) => void;
404
- onInvalid?: (event: SyntheticEvent<any>) => void;
405
- options: OptionsPropType;
406
- value?: RadioValue | null;
385
+ 'aria-labelledby'?: string;
386
+ analyticsContext?: Record<string, any>;
387
+ defaultValue?: RadioValue | null;
388
+ isDisabled?: boolean;
389
+ isInvalid?: boolean;
390
+ isRequired?: boolean;
391
+ name?: string;
392
+ onChange?: (e: React_2.ChangeEvent<HTMLInputElement>, analyticsEvent: UIAnalyticsEvent) => void;
393
+ onInvalid?: (event: SyntheticEvent<any>) => void;
394
+ options: OptionsPropType;
395
+ value?: RadioValue | null;
407
396
  }
408
397
 
409
398
  // @public (undocumented)
@@ -420,7 +409,7 @@ type RadioValue = string;
420
409
 
421
410
  ```json
422
411
  {
423
- "react": "^16.8.0"
412
+ "react": "^16.8.0"
424
413
  }
425
414
  ```
426
415