File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
packages/telestion-client-common/src/widgets/eventbus-debug-widget/components Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 67
67
"@adobe/react-spectrum" : " ^3.9.0" ,
68
68
"@babel/core" : " ^7.12.9" ,
69
69
"@fliegwerk/logsemts" : " ^0.4.0-0" ,
70
- "@react-spectrum/table" : " ^ 3.0.0-beta.1" ,
70
+ "@react-spectrum/table" : " 3.0.0-beta.1" ,
71
71
"@react-spectrum/tabs" : " ^3.0.1" ,
72
72
"@rollup/plugin-commonjs" : " ^19.0.0" ,
73
73
"@rollup/plugin-image" : " ^2.0.6" ,
Original file line number Diff line number Diff line change 2
2
Cell ,
3
3
Column ,
4
4
Row ,
5
- Table as RSTable ,
5
+ TableView ,
6
6
TableBody ,
7
7
TableHeader
8
8
} from '@react-spectrum/table' ;
@@ -14,14 +14,14 @@ import { buildDetails } from './build-details';
14
14
// so we don't have to worry about that.
15
15
// eslint-disable-next-line @typescript-eslint/no-unused-vars,no-unused-vars
16
16
const cssLoader = (
17
- < RSTable aria-label = "none" >
17
+ < TableView aria-label = "none" >
18
18
< TableHeader columns = { [ ] } >
19
19
{ column => < Column > { column } </ Column > }
20
20
</ TableHeader >
21
21
< TableBody items = { [ ] } >
22
22
{ item => < Row key = { item } > { key => < Cell > { item [ key ] } </ Cell > } </ Row > }
23
23
</ TableBody >
24
- </ RSTable >
24
+ </ TableView >
25
25
) ;
26
26
27
27
/**
You can’t perform that action at this time.
0 commit comments