@react-types/checkbox 3.2.0 → 3.2.4

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/index.d.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/checkbox",
3
- "version": "3.2.0",
3
+ "version": "3.2.4",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -9,13 +9,13 @@
9
9
  "url": "https://github.com/adobe/react-spectrum"
10
10
  },
11
11
  "dependencies": {
12
- "@react-types/shared": "^3.1.0"
12
+ "@react-types/shared": "^3.11.0"
13
13
  },
14
14
  "peerDependencies": {
15
- "react": "^16.8.0"
15
+ "react": "^16.8.0 || ^17.0.0-rc.1"
16
16
  },
17
17
  "publishConfig": {
18
18
  "access": "public"
19
19
  },
20
- "gitHead": "d050016e6876b20e4d8a95ba5fb5630d78e75a60"
20
+ "gitHead": "54c2366c4f31bd4bf619126131cd583c12972acc"
21
21
  }
package/src/index.d.ts CHANGED
@@ -79,7 +79,9 @@ export interface AriaCheckboxGroupProps extends CheckboxGroupProps, DOMProps, Ar
79
79
  name?: string
80
80
  }
81
81
 
82
- export interface AriaCheckboxGroupItemProps extends Omit<AriaCheckboxProps, 'isSelected' | 'defaultSelected'> {}
82
+ export interface AriaCheckboxGroupItemProps extends Omit<AriaCheckboxProps, 'isSelected' | 'defaultSelected'> {
83
+ value: string
84
+ }
83
85
 
84
86
  export interface SpectrumCheckboxProps extends AriaCheckboxProps, StyleProps {
85
87
  /**