@react-types/table 3.8.2-nightly.4136 → 3.8.2-nightly.4140
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 +4 -4
- package/src/index.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-types/table",
|
|
3
|
-
"version": "3.8.2-nightly.
|
|
3
|
+
"version": "3.8.2-nightly.4140+24bffc08c",
|
|
4
4
|
"description": "Spectrum UI components in React",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"types": "src/index.d.ts",
|
|
@@ -9,8 +9,8 @@
|
|
|
9
9
|
"url": "https://github.com/adobe/react-spectrum"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@react-types/grid": "3.2.2-nightly.
|
|
13
|
-
"@react-types/shared": "3.0.0-nightly.
|
|
12
|
+
"@react-types/grid": "3.2.2-nightly.4140+24bffc08c",
|
|
13
|
+
"@react-types/shared": "3.0.0-nightly.2431+24bffc08c"
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
|
|
@@ -18,5 +18,5 @@
|
|
|
18
18
|
"publishConfig": {
|
|
19
19
|
"access": "public"
|
|
20
20
|
},
|
|
21
|
-
"gitHead": "
|
|
21
|
+
"gitHead": "24bffc08cd4435d0a75c99326883085c3a90b009"
|
|
22
22
|
}
|
package/src/index.d.ts
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
* governing permissions and limitations under the License.
|
|
11
11
|
*/
|
|
12
12
|
|
|
13
|
-
import {AriaLabelingProps, AsyncLoadable, DOMProps, LoadingState, MultipleSelection, Sortable, SpectrumSelectionProps, StyleProps} from '@react-types/shared';
|
|
13
|
+
import {AriaLabelingProps, AsyncLoadable, DOMProps, LinkDOMProps, LoadingState, MultipleSelection, Sortable, SpectrumSelectionProps, StyleProps} from '@react-types/shared';
|
|
14
14
|
import {GridCollection, GridNode} from '@react-types/grid';
|
|
15
15
|
import {Key, ReactElement, ReactNode} from 'react';
|
|
16
16
|
|
|
@@ -132,7 +132,7 @@ export interface TableBodyProps<T> extends Omit<AsyncLoadable, 'isLoading'> {
|
|
|
132
132
|
loadingState?: LoadingState
|
|
133
133
|
}
|
|
134
134
|
|
|
135
|
-
export interface RowProps<T> {
|
|
135
|
+
export interface RowProps<T> extends LinkDOMProps {
|
|
136
136
|
/**
|
|
137
137
|
* A list of child item objects used when dynamically rendering row children. Requires the feature flag to be
|
|
138
138
|
* enabled along with UNSTABLE_allowsExpandableRows, see https://react-spectrum.adobe.com/react-spectrum/TableView.html#expandable-rows.
|