@react-types/table 3.9.6-nightly.4674 → 3.9.6-nightly.4683

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 +5 -5
  2. package/src/index.d.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-types/table",
3
- "version": "3.9.6-nightly.4674+59136f78e",
3
+ "version": "3.9.6-nightly.4683+4e3af379e",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "types": "src/index.d.ts",
@@ -9,14 +9,14 @@
9
9
  "url": "https://github.com/adobe/react-spectrum"
10
10
  },
11
11
  "dependencies": {
12
- "@react-types/grid": "3.2.7-nightly.4674+59136f78e",
13
- "@react-types/shared": "3.0.0-nightly.2962+59136f78e"
12
+ "@react-types/grid": "3.2.7-nightly.4683+4e3af379e",
13
+ "@react-types/shared": "3.0.0-nightly.2971+4e3af379e"
14
14
  },
15
15
  "peerDependencies": {
16
- "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
16
+ "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
17
17
  },
18
18
  "publishConfig": {
19
19
  "access": "public"
20
20
  },
21
- "gitHead": "59136f78e853e97bb4067a1268750c9f85900bf6"
21
+ "gitHead": "4e3af379e569faac3b374e0ed5a98b2a19cd92c3"
22
22
  }
package/src/index.d.ts CHANGED
@@ -167,6 +167,8 @@ export interface TableCollection<T> extends GridCollection<T> {
167
167
  columns: GridNode<T>[],
168
168
  /** A set of column keys that serve as the [row header](https://www.w3.org/TR/wai-aria-1.1/#rowheader). */
169
169
  rowHeaderColumnKeys: Set<Key>,
170
+ /** The node that makes up the header of the table. */
171
+ head?: GridNode<T>,
170
172
  /** The node that makes up the body of the table. */
171
173
  body: GridNode<T>
172
174
  }