We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4915df commit f2a18cfCopy full SHA for f2a18cf
packages/main/src/RadioButtonTemplateContext.js
@@ -25,7 +25,7 @@ class RadioButtonTemplateContext {
25
context = {
26
ctr: state,
27
readOnly: state.disabled || state.readOnly,
28
- tabIndex: state.disabled ? undefined : "0",
+ tabIndex: state.disabled || (!state.selected && state.group) ? "-1" : "0",
29
circle: compact ? SVGConfig.compact : SVGConfig.default,
30
classes: { main: mainClasses, inner: innerClasses },
31
styles: {
0 commit comments