@react-types/shared 3.0.0-nightly.2426 → 3.0.0-nightly.2429

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 +2 -2
  2. package/src/dom.d.ts +4 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/shared",
3
- "version": "3.0.0-nightly.2426+a6ad96492",
3
+ "version": "3.0.0-nightly.2429+f6239e358",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -14,5 +14,5 @@
14
14
  "publishConfig": {
15
15
  "access": "public"
16
16
  },
17
- "gitHead": "a6ad964926e6213cf52d8f15b7376affa0f85bb9"
17
+ "gitHead": "f6239e3581d22f4d093525202d7d1afc160bff42"
18
18
  }
package/src/dom.d.ts CHANGED
@@ -178,3 +178,7 @@ export interface DOMAttributes<T = FocusableElement> extends AriaAttributes, Rea
178
178
  style?: CSSProperties | undefined,
179
179
  className?: string | undefined
180
180
  }
181
+
182
+ export interface GroupDOMAttributes extends Omit<DOMAttributes<HTMLElement>, 'role'> {
183
+ role?: 'group' | 'region' | 'presentation'
184
+ }