@@ -7,9 +7,13 @@ import {
7
7
TabPanel ,
8
8
TabPanels
9
9
} from '@headlessui/react'
10
- import type { TabPanelProps } from '@headlessui/react'
10
+ import type {
11
+ TabGroupProps ,
12
+ TabListProps ,
13
+ TabPanelProps
14
+ } from '@headlessui/react'
11
15
import cn from 'clsx'
12
- import type { ReactElement , ReactNode } from 'react'
16
+ import type { FC , ReactElement , ReactNode } from 'react'
13
17
import { useCallback , useEffect , useState } from 'react'
14
18
15
19
type TabItem = string | ReactElement
@@ -23,21 +27,22 @@ function isTabObjectItem(item: unknown): item is TabObjectItem {
23
27
return ! ! item && typeof item === 'object' && 'label' in item
24
28
}
25
29
26
- export function Tabs ( {
30
+ export const Tabs : FC <
31
+ {
32
+ items : ( TabItem | TabObjectItem ) [ ]
33
+ children : ReactNode
34
+ storageKey ?: string
35
+ } & Pick < TabGroupProps , 'defaultIndex' | 'selectedIndex' | 'onChange' > &
36
+ Pick < TabListProps , 'className' >
37
+ > = ( {
27
38
items,
28
- selectedIndex : _selectedIndex ,
39
+ children,
40
+ storageKey,
29
41
defaultIndex = 0 ,
42
+ selectedIndex : _selectedIndex ,
30
43
onChange,
31
- children,
32
- storageKey
33
- } : {
34
- items : ( TabItem | TabObjectItem ) [ ]
35
- selectedIndex ?: number
36
- defaultIndex ?: number
37
- onChange ?: ( index : number ) => void
38
- children : ReactNode
39
- storageKey ?: string
40
- } ) : ReactElement {
44
+ className
45
+ } ) => {
41
46
const [ selectedIndex , setSelectedIndex ] = useState ( defaultIndex )
42
47
43
48
useEffect ( ( ) => {
@@ -91,11 +96,14 @@ export function Tabs({
91
96
tabIndex = { - 1 } // disables focus in Firefox
92
97
>
93
98
< TabList
94
- className = { cn (
95
- 'nextra-scrollbar _overflow-x-auto _overscroll-x-contain _overflow-y-hidden' ,
96
- '_mt-4 _flex _w-full _gap-2 _border-b _border-gray-200 _pb-px dark:_border-neutral-800' ,
97
- 'nextra-focus'
98
- ) }
99
+ className = { args =>
100
+ cn (
101
+ 'nextra-scrollbar _overflow-x-auto _overscroll-x-contain _overflow-y-hidden' ,
102
+ '_mt-4 _flex _w-full _gap-2 _border-b _border-gray-200 _pb-px dark:_border-neutral-800' ,
103
+ 'nextra-focus' ,
104
+ typeof className === 'function' ? className ( args ) : className
105
+ )
106
+ }
99
107
>
100
108
{ items . map ( ( item , index ) => (
101
109
< HeadlessTab
@@ -132,18 +140,23 @@ export function Tabs({
132
140
)
133
141
}
134
142
135
- export function Tab ( {
143
+ export const Tab : FC < TabPanelProps > = ( {
136
144
children,
137
145
// For SEO display all the Panel in the DOM and set `display: none;` for those that are not selected
138
146
unmount = false ,
147
+ className,
139
148
...props
140
- } : TabPanelProps ) : ReactElement {
149
+ } ) => {
141
150
return (
142
151
< TabPanel
143
152
{ ...props }
144
153
unmount = { unmount }
145
- className = { ( { focus } ) =>
146
- cn ( '_rounded _mt-6' , focus && 'nextra-focusable' )
154
+ className = { args =>
155
+ cn (
156
+ '_rounded _mt-6' ,
157
+ args . focus && 'nextra-focusable' ,
158
+ typeof className === 'function' ? className ( args ) : className
159
+ )
147
160
}
148
161
>
149
162
{ children }
0 commit comments