Socket
Book a DemoInstallSign in
Socket

@react-types/radio

Package Overview
Dependencies
Maintainers
2
Versions
1108
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-types/radio - npm Package Compare versions

Comparing version

to
3.0.0-nightly-1d1ca90a7-250905

4

package.json
{
"name": "@react-types/radio",
"version": "3.0.0-nightly-1b425caa2-250114",
"version": "3.0.0-nightly-1d1ca90a7-250905",
"description": "Spectrum UI components in React",

@@ -12,3 +12,3 @@ "license": "Apache-2.0",

"dependencies": {
"@react-types/shared": "3.0.0-nightly-1b425caa2-250114"
"@react-types/shared": "3.0.0-nightly-1d1ca90a7-250905"
},

@@ -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 {}