You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

@react-types/checkbox

Package Overview
Dependencies
Maintainers
2
Versions
1065
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-types/checkbox - npm Package Compare versions

Comparing version

to
3.0.0-nightly-e97af2b53-250726

7

package.json
{
"name": "@react-types/checkbox",
"version": "3.0.0-nightly-e94e36431-241203",
"version": "3.0.0-nightly-e97af2b53-250726",
"description": "Spectrum UI components in React",

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

"dependencies": {
"@react-types/shared": "^3.0.0-nightly-e94e36431-241203"
"@react-types/shared": "3.0.0-nightly-e97af2b53-250726"
},

@@ -20,4 +20,3 @@ "peerDependencies": {

"access": "public"
},
"stableVersion": "3.9.0"
}
}

@@ -25,2 +25,3 @@ /*

Orientation,
PressEvents,
SpectrumHelpTextProps,

@@ -60,3 +61,3 @@ SpectrumLabelableProps,

export interface AriaToggleProps extends ToggleProps, FocusableDOMProps, AriaLabelingProps, AriaValidationProps, InputDOMProps {
export interface AriaToggleProps extends ToggleProps, FocusableDOMProps, AriaLabelingProps, AriaValidationProps, InputDOMProps, PressEvents {
/**

@@ -68,3 +69,3 @@ * Identifies the element (or elements) whose contents or presence are controlled by the current element.

export interface CheckboxGroupProps extends ValueBase<string[]>, InputBase, InputDOMProps, LabelableProps, HelpTextProps, Validation<string[]> {}
export interface CheckboxGroupProps extends ValueBase<string[]>, Pick<InputDOMProps, 'name'>, InputBase, LabelableProps, HelpTextProps, Validation<string[]> {}

@@ -79,5 +80,5 @@ export interface CheckboxProps extends ToggleProps {

export interface AriaCheckboxProps extends CheckboxProps, AriaToggleProps {}
export interface AriaCheckboxProps extends CheckboxProps, InputDOMProps, AriaToggleProps {}
export interface AriaCheckboxGroupProps extends CheckboxGroupProps, DOMProps, AriaLabelingProps, AriaValidationProps, FocusEvents {}
export interface AriaCheckboxGroupProps extends CheckboxGroupProps, InputDOMProps, DOMProps, AriaLabelingProps, AriaValidationProps, FocusEvents {}

@@ -88,3 +89,3 @@ export interface AriaCheckboxGroupItemProps extends Omit<AriaCheckboxProps, 'isSelected' | 'defaultSelected'> {

export interface SpectrumCheckboxProps extends AriaCheckboxProps, StyleProps {
export interface SpectrumCheckboxProps extends Omit<AriaCheckboxProps, 'onClick'>, StyleProps {
/**

@@ -91,0 +92,0 @@ * This prop sets the emphasized style which provides visual prominence.