@react-types/shared 3.0.0-nightly-e24140214-260309 → 3.0.0-nightly-796738501-260310

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/shared",
3
- "version": "3.0.0-nightly-e24140214-260309",
3
+ "version": "3.0.0-nightly-796738501-260310",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -218,6 +218,10 @@ export interface Node<T> {
218
218
  prevKey?: Key | null,
219
219
  /** The key of the node after this node. */
220
220
  nextKey?: Key | null,
221
+ /** The first child key of this node. */
222
+ firstChildKey?: Key | null,
223
+ /** The last child key of this node. */
224
+ lastChildKey?: Key | null,
221
225
  /** Additional properties specific to a particular node type. */
222
226
  props?: any,
223
227
  /** @private */