@react-types/radio
Advanced tools
Comparing version
{ | ||
"name": "@react-types/radio", | ||
"version": "3.0.0-nightly-d312e0a20-250608", | ||
"version": "3.0.0-nightly-d434b6d5e-250906", | ||
"description": "Spectrum UI components in React", | ||
@@ -12,3 +12,3 @@ "license": "Apache-2.0", | ||
"dependencies": { | ||
"@react-types/shared": "3.0.0-nightly-d312e0a20-250608" | ||
"@react-types/shared": "3.0.0-nightly-d434b6d5e-250906" | ||
}, | ||
@@ -15,0 +15,0 @@ "peerDependencies": { |
@@ -24,2 +24,3 @@ /* | ||
Orientation, | ||
PressEvents, | ||
SpectrumHelpTextProps, | ||
@@ -33,3 +34,3 @@ SpectrumLabelableProps, | ||
export interface RadioGroupProps extends ValueBase<string|null, string>, InputBase, InputDOMProps, Validation<string | null>, LabelableProps, HelpTextProps, FocusEvents { | ||
export interface RadioGroupProps extends ValueBase<string|null, string>, InputBase, Pick<InputDOMProps, 'name'>, Validation<string | null>, LabelableProps, HelpTextProps, FocusEvents { | ||
/** | ||
@@ -59,3 +60,3 @@ * The axis the Radio Button(s) should align with. | ||
export interface AriaRadioGroupProps extends RadioGroupProps, DOMProps, AriaLabelingProps, AriaValidationProps {} | ||
export interface AriaRadioGroupProps extends RadioGroupProps, InputDOMProps, DOMProps, AriaLabelingProps, AriaValidationProps {} | ||
export interface SpectrumRadioGroupProps extends AriaRadioGroupProps, SpectrumLabelableProps, StyleProps, SpectrumHelpTextProps { | ||
@@ -73,3 +74,3 @@ /** | ||
export interface AriaRadioProps extends RadioProps, DOMProps, AriaLabelingProps {} | ||
export interface SpectrumRadioProps extends AriaRadioProps, StyleProps {} | ||
export interface AriaRadioProps extends RadioProps, DOMProps, AriaLabelingProps, PressEvents {} | ||
export interface SpectrumRadioProps extends Omit<AriaRadioProps, 'onClick'>, StyleProps {} |
3183
2.38%67
1.52%+ Added
- Removed