File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @nevermined-io/ui-styles" ,
3
- "version" : " 1.0.8 " ,
3
+ "version" : " 1.0.9 " ,
4
4
"type" : " module" ,
5
5
"main" : " dist/main.js" ,
6
6
"types" : " dist/main.d.ts" ,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ type TabsProps = {
34
34
children : ( args : { selectedTab : Tab } ) => React . ReactNode
35
35
tabs : Tab [ ]
36
36
selectedTab ?: string
37
- navigateToTab : React . Dispatch < React . SetStateAction < string > >
37
+ navigateToTab : ( tab : string ) => void
38
38
tabsCssStyle ?: Interpolation < Theme >
39
39
tabCssStyle ?: Interpolation < Theme >
40
40
enableMobileLayout ?: boolean
@@ -57,7 +57,7 @@ export const Tabs = ({
57
57
const [ showTooltip , setShowTooltip ] = useState ( false )
58
58
59
59
return (
60
- < Column css = { tabContainerStyle } >
60
+ < Column cssStyle = { tabContainerStyle } >
61
61
< Row cssStyle = { [ tabsStyle ( { enableMobileLayout } ) , tabsCssStyle ] } >
62
62
{ tabs . map ( ( tab ) => (
63
63
< div
You can’t perform that action at this time.
0 commit comments