@react-types/shared 3.0.0-nightly.1715 → 3.0.0-nightly.1726

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 +2 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/shared",
3
- "version": "3.0.0-nightly.1715+57c4e7f7f",
3
+ "version": "3.0.0-nightly.1726+c03dc85b8",
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": "57c4e7f7f6e8e09b22b344a88ce0920917c2f956"
17
+ "gitHead": "c03dc85b859e335eafcd32087c7ab8b3f49afc23"
18
18
  }
package/src/dom.d.ts CHANGED
@@ -173,5 +173,6 @@ export interface DOMAttributes<T = FocusableElement> extends AriaAttributes, Rea
173
173
  id?: string | undefined,
174
174
  role?: AriaRole | undefined,
175
175
  tabIndex?: number | undefined,
176
- style?: CSSProperties | undefined
176
+ style?: CSSProperties | undefined,
177
+ className?: string | undefined
177
178
  }