@jamsrui/tabs 0.0.2

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 (74) hide show
  1. package/README.md +40 -0
  2. package/dist/chunk-AINPUFFZ.js +1 -0
  3. package/dist/chunk-F2MW2JWY.js +1 -0
  4. package/dist/chunk-F6Y2NK36.js +1 -0
  5. package/dist/chunk-H2J22QIW.mjs +1 -0
  6. package/dist/chunk-HKWZIGYP.mjs +1 -0
  7. package/dist/chunk-IPFSN6JS.mjs +1 -0
  8. package/dist/chunk-JD2IVPH7.js +1 -0
  9. package/dist/chunk-LA2JMAFM.mjs +1 -0
  10. package/dist/chunk-LZE4JOJL.js +1 -0
  11. package/dist/chunk-M6FSPJQJ.mjs +1 -0
  12. package/dist/chunk-M7SO3V45.js +1 -0
  13. package/dist/chunk-MUQ2LZD2.mjs +1 -0
  14. package/dist/chunk-MW5NNZLH.mjs +1 -0
  15. package/dist/chunk-N3NSYOEO.js +1 -0
  16. package/dist/chunk-QGZYGDSV.js +1 -0
  17. package/dist/chunk-SHPORD5U.mjs +1 -0
  18. package/dist/chunk-T3EL7W5Q.mjs +1 -0
  19. package/dist/chunk-TDBGUN6P.mjs +1 -0
  20. package/dist/chunk-TRBHSJNP.mjs +1 -0
  21. package/dist/chunk-WSW5NKGC.js +1 -0
  22. package/dist/chunk-YUBDMYXY.js +1 -0
  23. package/dist/chunk-ZHYKF7LW.js +1 -0
  24. package/dist/index.d.mts +13 -0
  25. package/dist/index.d.ts +13 -0
  26. package/dist/index.js +1 -0
  27. package/dist/index.mjs +1 -0
  28. package/dist/styles.d.mts +354 -0
  29. package/dist/styles.d.ts +354 -0
  30. package/dist/styles.js +1 -0
  31. package/dist/styles.mjs +1 -0
  32. package/dist/tab-content.d.mts +10 -0
  33. package/dist/tab-content.d.ts +10 -0
  34. package/dist/tab-content.js +1 -0
  35. package/dist/tab-content.mjs +1 -0
  36. package/dist/tab-cursor.d.mts +10 -0
  37. package/dist/tab-cursor.d.ts +10 -0
  38. package/dist/tab-cursor.js +1 -0
  39. package/dist/tab-cursor.mjs +1 -0
  40. package/dist/tab-list.d.mts +10 -0
  41. package/dist/tab-list.d.ts +10 -0
  42. package/dist/tab-list.js +1 -0
  43. package/dist/tab-list.mjs +1 -0
  44. package/dist/tab-panel.d.mts +10 -0
  45. package/dist/tab-panel.d.ts +10 -0
  46. package/dist/tab-panel.js +1 -0
  47. package/dist/tab-panel.mjs +1 -0
  48. package/dist/tab.d.mts +12 -0
  49. package/dist/tab.d.ts +12 -0
  50. package/dist/tab.js +1 -0
  51. package/dist/tab.mjs +1 -0
  52. package/dist/tabs-EQ-6Fm5A.d.ts +44 -0
  53. package/dist/tabs-config.d.mts +23 -0
  54. package/dist/tabs-config.d.ts +23 -0
  55. package/dist/tabs-config.js +1 -0
  56. package/dist/tabs-config.mjs +1 -0
  57. package/dist/tabs-context.d.mts +20 -0
  58. package/dist/tabs-context.d.ts +20 -0
  59. package/dist/tabs-context.js +1 -0
  60. package/dist/tabs-context.mjs +1 -0
  61. package/dist/tabs-mM3syrWk.d.mts +44 -0
  62. package/dist/tabs.d.mts +11 -0
  63. package/dist/tabs.d.ts +11 -0
  64. package/dist/tabs.js +1 -0
  65. package/dist/tabs.mjs +1 -0
  66. package/dist/use-tab.d.mts +11 -0
  67. package/dist/use-tab.d.ts +11 -0
  68. package/dist/use-tab.js +1 -0
  69. package/dist/use-tab.mjs +1 -0
  70. package/dist/use-tabs.d.mts +11 -0
  71. package/dist/use-tabs.d.ts +11 -0
  72. package/dist/use-tabs.js +1 -0
  73. package/dist/use-tabs.mjs +1 -0
  74. package/package.json +49 -0
@@ -0,0 +1,354 @@
1
+ import * as tailwind_variants from 'tailwind-variants';
2
+ import { VariantProps } from '@jamsrui/utils';
3
+
4
+ declare const test = "";
5
+ declare const tabsVariant: tailwind_variants.TVReturnType<{
6
+ variant: {
7
+ solid: {
8
+ cursor: string;
9
+ };
10
+ light: {
11
+ tabList: string;
12
+ cursor: string;
13
+ };
14
+ underlined: {
15
+ tabList: string;
16
+ cursor: string;
17
+ };
18
+ bordered: {
19
+ tabList: string;
20
+ cursor: string;
21
+ };
22
+ };
23
+ color: {
24
+ default: {};
25
+ primary: {};
26
+ secondary: {};
27
+ success: {};
28
+ warning: {};
29
+ danger: {};
30
+ };
31
+ size: {
32
+ sm: {
33
+ tabList: string;
34
+ tab: string;
35
+ cursor: string;
36
+ };
37
+ md: {
38
+ tabList: string;
39
+ tab: string;
40
+ cursor: string;
41
+ };
42
+ lg: {
43
+ tabList: string;
44
+ tab: string;
45
+ cursor: string;
46
+ };
47
+ };
48
+ radius: {
49
+ none: {
50
+ tabList: string;
51
+ tab: string;
52
+ cursor: string;
53
+ };
54
+ sm: {
55
+ tabList: string;
56
+ tab: string;
57
+ cursor: string;
58
+ };
59
+ md: {
60
+ tabList: string;
61
+ tab: string;
62
+ cursor: string;
63
+ };
64
+ lg: {
65
+ tabList: string;
66
+ tab: string;
67
+ cursor: string;
68
+ };
69
+ xl: {
70
+ tabList: string;
71
+ tab: string;
72
+ cursor: string;
73
+ };
74
+ full: {
75
+ tabList: string;
76
+ tab: string;
77
+ cursor: string;
78
+ };
79
+ };
80
+ fullWidth: {
81
+ true: {
82
+ root: string;
83
+ tabList: string;
84
+ };
85
+ };
86
+ isDisabled: {
87
+ true: {
88
+ tabList: string;
89
+ };
90
+ };
91
+ disableAnimation: {
92
+ true: {
93
+ tab: string;
94
+ tabContent: string;
95
+ };
96
+ };
97
+ placement: {
98
+ top: {};
99
+ start: {
100
+ tabList: string;
101
+ panel: string;
102
+ root: string;
103
+ };
104
+ end: {
105
+ tabList: string;
106
+ panel: string;
107
+ root: string;
108
+ };
109
+ bottom: {
110
+ root: string;
111
+ };
112
+ };
113
+ }, {
114
+ root: string;
115
+ tabList: string[];
116
+ tab: string[];
117
+ tabContent: string[];
118
+ cursor: string[];
119
+ panel: string[];
120
+ }, undefined, {
121
+ variant: {
122
+ solid: {
123
+ cursor: string;
124
+ };
125
+ light: {
126
+ tabList: string;
127
+ cursor: string;
128
+ };
129
+ underlined: {
130
+ tabList: string;
131
+ cursor: string;
132
+ };
133
+ bordered: {
134
+ tabList: string;
135
+ cursor: string;
136
+ };
137
+ };
138
+ color: {
139
+ default: {};
140
+ primary: {};
141
+ secondary: {};
142
+ success: {};
143
+ warning: {};
144
+ danger: {};
145
+ };
146
+ size: {
147
+ sm: {
148
+ tabList: string;
149
+ tab: string;
150
+ cursor: string;
151
+ };
152
+ md: {
153
+ tabList: string;
154
+ tab: string;
155
+ cursor: string;
156
+ };
157
+ lg: {
158
+ tabList: string;
159
+ tab: string;
160
+ cursor: string;
161
+ };
162
+ };
163
+ radius: {
164
+ none: {
165
+ tabList: string;
166
+ tab: string;
167
+ cursor: string;
168
+ };
169
+ sm: {
170
+ tabList: string;
171
+ tab: string;
172
+ cursor: string;
173
+ };
174
+ md: {
175
+ tabList: string;
176
+ tab: string;
177
+ cursor: string;
178
+ };
179
+ lg: {
180
+ tabList: string;
181
+ tab: string;
182
+ cursor: string;
183
+ };
184
+ xl: {
185
+ tabList: string;
186
+ tab: string;
187
+ cursor: string;
188
+ };
189
+ full: {
190
+ tabList: string;
191
+ tab: string;
192
+ cursor: string;
193
+ };
194
+ };
195
+ fullWidth: {
196
+ true: {
197
+ root: string;
198
+ tabList: string;
199
+ };
200
+ };
201
+ isDisabled: {
202
+ true: {
203
+ tabList: string;
204
+ };
205
+ };
206
+ disableAnimation: {
207
+ true: {
208
+ tab: string;
209
+ tabContent: string;
210
+ };
211
+ };
212
+ placement: {
213
+ top: {};
214
+ start: {
215
+ tabList: string;
216
+ panel: string;
217
+ root: string;
218
+ };
219
+ end: {
220
+ tabList: string;
221
+ panel: string;
222
+ root: string;
223
+ };
224
+ bottom: {
225
+ root: string;
226
+ };
227
+ };
228
+ }, {
229
+ root: string;
230
+ tabList: string[];
231
+ tab: string[];
232
+ tabContent: string[];
233
+ cursor: string[];
234
+ panel: string[];
235
+ }, tailwind_variants.TVReturnType<{
236
+ variant: {
237
+ solid: {
238
+ cursor: string;
239
+ };
240
+ light: {
241
+ tabList: string;
242
+ cursor: string;
243
+ };
244
+ underlined: {
245
+ tabList: string;
246
+ cursor: string;
247
+ };
248
+ bordered: {
249
+ tabList: string;
250
+ cursor: string;
251
+ };
252
+ };
253
+ color: {
254
+ default: {};
255
+ primary: {};
256
+ secondary: {};
257
+ success: {};
258
+ warning: {};
259
+ danger: {};
260
+ };
261
+ size: {
262
+ sm: {
263
+ tabList: string;
264
+ tab: string;
265
+ cursor: string;
266
+ };
267
+ md: {
268
+ tabList: string;
269
+ tab: string;
270
+ cursor: string;
271
+ };
272
+ lg: {
273
+ tabList: string;
274
+ tab: string;
275
+ cursor: string;
276
+ };
277
+ };
278
+ radius: {
279
+ none: {
280
+ tabList: string;
281
+ tab: string;
282
+ cursor: string;
283
+ };
284
+ sm: {
285
+ tabList: string;
286
+ tab: string;
287
+ cursor: string;
288
+ };
289
+ md: {
290
+ tabList: string;
291
+ tab: string;
292
+ cursor: string;
293
+ };
294
+ lg: {
295
+ tabList: string;
296
+ tab: string;
297
+ cursor: string;
298
+ };
299
+ xl: {
300
+ tabList: string;
301
+ tab: string;
302
+ cursor: string;
303
+ };
304
+ full: {
305
+ tabList: string;
306
+ tab: string;
307
+ cursor: string;
308
+ };
309
+ };
310
+ fullWidth: {
311
+ true: {
312
+ root: string;
313
+ tabList: string;
314
+ };
315
+ };
316
+ isDisabled: {
317
+ true: {
318
+ tabList: string;
319
+ };
320
+ };
321
+ disableAnimation: {
322
+ true: {
323
+ tab: string;
324
+ tabContent: string;
325
+ };
326
+ };
327
+ placement: {
328
+ top: {};
329
+ start: {
330
+ tabList: string;
331
+ panel: string;
332
+ root: string;
333
+ };
334
+ end: {
335
+ tabList: string;
336
+ panel: string;
337
+ root: string;
338
+ };
339
+ bottom: {
340
+ root: string;
341
+ };
342
+ };
343
+ }, {
344
+ root: string;
345
+ tabList: string[];
346
+ tab: string[];
347
+ tabContent: string[];
348
+ cursor: string[];
349
+ panel: string[];
350
+ }, undefined, unknown, unknown, undefined>>;
351
+ type TabVariants = VariantProps<typeof tabsVariant>;
352
+ type TabsSlots = keyof ReturnType<typeof tabsVariant>;
353
+
354
+ export { type TabVariants, type TabsSlots, tabsVariant, test };
package/dist/styles.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkF2MW2JWYjs = require('./chunk-F2MW2JWY.js');exports.tabsVariant = _chunkF2MW2JWYjs.b; exports.test = _chunkF2MW2JWYjs.a;
@@ -0,0 +1 @@
1
+ import{a,b}from"./chunk-TRBHSJNP.mjs";export{b as tabsVariant,a as test};
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const TabContent: (props: TabContent.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
5
+ declare namespace TabContent {
6
+ interface Props extends UIProps<"div"> {
7
+ }
8
+ }
9
+
10
+ export { TabContent };
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const TabContent: (props: TabContent.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
5
+ declare namespace TabContent {
6
+ interface Props extends UIProps<"div"> {
7
+ }
8
+ }
9
+
10
+ export { TabContent };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkN3NSYOEOjs = require('./chunk-N3NSYOEO.js');require('./chunk-JD2IVPH7.js');exports.TabContent = _chunkN3NSYOEOjs.a;
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-HKWZIGYP.mjs";import"./chunk-M6FSPJQJ.mjs";export{a as TabContent};
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { MotionProps } from 'motion/react';
3
+
4
+ declare const TabCursor: (props: TabCursor.Props) => react.JSX.Element;
5
+ declare namespace TabCursor {
6
+ interface Props extends MotionProps, Omit<React.HTMLAttributes<HTMLDivElement>, keyof MotionProps> {
7
+ }
8
+ }
9
+
10
+ export { TabCursor };
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { MotionProps } from 'motion/react';
3
+
4
+ declare const TabCursor: (props: TabCursor.Props) => react.JSX.Element;
5
+ declare namespace TabCursor {
6
+ interface Props extends MotionProps, Omit<React.HTMLAttributes<HTMLDivElement>, keyof MotionProps> {
7
+ }
8
+ }
9
+
10
+ export { TabCursor };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkF6Y2NK36js = require('./chunk-F6Y2NK36.js');require('./chunk-JD2IVPH7.js');exports.TabCursor = _chunkF6Y2NK36js.a;
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-H2J22QIW.mjs";import"./chunk-M6FSPJQJ.mjs";export{a as TabCursor};
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const TabList: (props: TabList.Props) => react.JSX.Element;
5
+ declare namespace TabList {
6
+ interface Props extends UIProps<"div"> {
7
+ }
8
+ }
9
+
10
+ export { TabList };
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const TabList: (props: TabList.Props) => react.JSX.Element;
5
+ declare namespace TabList {
6
+ interface Props extends UIProps<"div"> {
7
+ }
8
+ }
9
+
10
+ export { TabList };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkAINPUFFZjs = require('./chunk-AINPUFFZ.js');require('./chunk-JD2IVPH7.js');exports.TabList = _chunkAINPUFFZjs.a;
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-TDBGUN6P.mjs";import"./chunk-M6FSPJQJ.mjs";export{a as TabList};
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const TabPanel: (props: TabPanel.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
5
+ declare namespace TabPanel {
6
+ interface Props extends UIProps<"div"> {
7
+ }
8
+ }
9
+
10
+ export { TabPanel };
@@ -0,0 +1,10 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const TabPanel: (props: TabPanel.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
5
+ declare namespace TabPanel {
6
+ interface Props extends UIProps<"div"> {
7
+ }
8
+ }
9
+
10
+ export { TabPanel };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkM7SO3V45js = require('./chunk-M7SO3V45.js');require('./chunk-JD2IVPH7.js');exports.TabPanel = _chunkM7SO3V45js.a;
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-MW5NNZLH.mjs";import"./chunk-M6FSPJQJ.mjs";export{a as TabPanel};
package/dist/tab.d.mts ADDED
@@ -0,0 +1,12 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const Tab: (props: Tab.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
5
+ declare namespace Tab {
6
+ interface Props extends UIProps<"button"> {
7
+ value: string;
8
+ heading: React.ReactNode;
9
+ }
10
+ }
11
+
12
+ export { Tab };
package/dist/tab.d.ts ADDED
@@ -0,0 +1,12 @@
1
+ import * as react from 'react';
2
+ import { UIProps } from '@jamsrui/utils';
3
+
4
+ declare const Tab: (props: Tab.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
5
+ declare namespace Tab {
6
+ interface Props extends UIProps<"button"> {
7
+ value: string;
8
+ heading: React.ReactNode;
9
+ }
10
+ }
11
+
12
+ export { Tab };
package/dist/tab.js ADDED
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkZHYKF7LWjs = require('./chunk-ZHYKF7LW.js');require('./chunk-LZE4JOJL.js');require('./chunk-N3NSYOEO.js');require('./chunk-F6Y2NK36.js');require('./chunk-JD2IVPH7.js');exports.Tab = _chunkZHYKF7LWjs.a;
package/dist/tab.mjs ADDED
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-SHPORD5U.mjs";import"./chunk-LA2JMAFM.mjs";import"./chunk-HKWZIGYP.mjs";import"./chunk-H2J22QIW.mjs";import"./chunk-M6FSPJQJ.mjs";export{a as Tab};
@@ -0,0 +1,44 @@
1
+ import * as react from 'react';
2
+ import { ReactElement } from 'react';
3
+ import { PropGetter, UIProps, SlotsToClassNames } from '@jamsrui/utils';
4
+ import { TabVariants, TabsSlots } from './styles.js';
5
+ import { Tab } from './tab.js';
6
+ import { TabContent } from './tab-content.js';
7
+ import { TabCursor } from './tab-cursor.js';
8
+ import { TabList } from './tab-list.js';
9
+ import { TabPanel } from './tab-panel.js';
10
+
11
+ declare const useTabs: (props: useTabs.Props) => {
12
+ getRootProps: PropGetter<Tabs.Props>;
13
+ getTabListProps: PropGetter<TabList.Props>;
14
+ getContentProps: PropGetter<TabContent.Props>;
15
+ getTabProps: PropGetter<Tab.Props>;
16
+ getCursorProps: PropGetter<TabCursor.Props>;
17
+ value: string;
18
+ setValue: react.Dispatch<react.SetStateAction<string>>;
19
+ selectedTabContent: ReactElement<unknown, string | react.JSXElementConstructor<any>>;
20
+ getPanelProps: PropGetter<TabPanel.Props>;
21
+ };
22
+ declare namespace useTabs {
23
+ interface Props extends UIProps<"div">, TabVariants {
24
+ defaultValue?: string;
25
+ value?: string;
26
+ onValueChange?: (value: string) => void;
27
+ slotProps?: {
28
+ tab?: Tab.Props;
29
+ tabList?: TabList.Props;
30
+ tabContent?: TabContent.Props;
31
+ cursor?: TabCursor.Props;
32
+ tabPanel?: TabPanel.Props;
33
+ };
34
+ classNames?: SlotsToClassNames<TabsSlots>;
35
+ }
36
+ }
37
+
38
+ declare const Tabs: (props: Tabs.Props) => react.JSX.Element;
39
+ declare namespace Tabs {
40
+ interface Props extends useTabs.Props {
41
+ }
42
+ }
43
+
44
+ export { Tabs as T, useTabs as u };
@@ -0,0 +1,23 @@
1
+ import './tab.mjs';
2
+ import { T as Tabs } from './tabs-mM3syrWk.mjs';
3
+ import * as react from 'react';
4
+ import { GlobalConfigProps } from '@jamsrui/core';
5
+ import '@jamsrui/utils';
6
+ import './styles.mjs';
7
+ import 'tailwind-variants';
8
+ import './tab-content.mjs';
9
+ import './tab-cursor.mjs';
10
+ import 'motion/react';
11
+ import './tab-list.mjs';
12
+ import './tab-panel.mjs';
13
+
14
+ declare const useTabsConfig: () => TabsConfig.Props;
15
+ declare const TabsConfig: (props: TabsConfig.Props & {
16
+ merge?: boolean;
17
+ }) => react.JSX.Element;
18
+ declare namespace TabsConfig {
19
+ interface Props extends Tabs.Props, GlobalConfigProps<Tabs.Props> {
20
+ }
21
+ }
22
+
23
+ export { TabsConfig, useTabsConfig };
@@ -0,0 +1,23 @@
1
+ import './tab.js';
2
+ import { T as Tabs } from './tabs-EQ-6Fm5A.js';
3
+ import * as react from 'react';
4
+ import { GlobalConfigProps } from '@jamsrui/core';
5
+ import '@jamsrui/utils';
6
+ import './styles.js';
7
+ import 'tailwind-variants';
8
+ import './tab-content.js';
9
+ import './tab-cursor.js';
10
+ import 'motion/react';
11
+ import './tab-list.js';
12
+ import './tab-panel.js';
13
+
14
+ declare const useTabsConfig: () => TabsConfig.Props;
15
+ declare const TabsConfig: (props: TabsConfig.Props & {
16
+ merge?: boolean;
17
+ }) => react.JSX.Element;
18
+ declare namespace TabsConfig {
19
+ interface Props extends Tabs.Props, GlobalConfigProps<Tabs.Props> {
20
+ }
21
+ }
22
+
23
+ export { TabsConfig, useTabsConfig };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkWSW5NKGCjs = require('./chunk-WSW5NKGC.js');exports.TabsConfig = _chunkWSW5NKGCjs.a; exports.useTabsConfig = _chunkWSW5NKGCjs.b;
@@ -0,0 +1 @@
1
+ import{a,b}from"./chunk-MUQ2LZD2.mjs";export{a as TabsConfig,b as useTabsConfig};
@@ -0,0 +1,20 @@
1
+ import * as react from 'react';
2
+ import { u as useTabs } from './tabs-mM3syrWk.mjs';
3
+ import '@jamsrui/utils';
4
+ import './styles.mjs';
5
+ import 'tailwind-variants';
6
+ import './tab.mjs';
7
+ import './tab-content.mjs';
8
+ import './tab-cursor.mjs';
9
+ import 'motion/react';
10
+ import './tab-list.mjs';
11
+ import './tab-panel.mjs';
12
+
13
+ declare const useTabsContext: () => TabsContext.Type;
14
+ declare const TabsContext: react.Context<TabsContext.Type | null>;
15
+ declare namespace TabsContext {
16
+ interface Type extends ReturnType<typeof useTabs> {
17
+ }
18
+ }
19
+
20
+ export { TabsContext, useTabsContext };
@@ -0,0 +1,20 @@
1
+ import * as react from 'react';
2
+ import { u as useTabs } from './tabs-EQ-6Fm5A.js';
3
+ import '@jamsrui/utils';
4
+ import './styles.js';
5
+ import 'tailwind-variants';
6
+ import './tab.js';
7
+ import './tab-content.js';
8
+ import './tab-cursor.js';
9
+ import 'motion/react';
10
+ import './tab-list.js';
11
+ import './tab-panel.js';
12
+
13
+ declare const useTabsContext: () => TabsContext.Type;
14
+ declare const TabsContext: react.Context<TabsContext.Type | null>;
15
+ declare namespace TabsContext {
16
+ interface Type extends ReturnType<typeof useTabs> {
17
+ }
18
+ }
19
+
20
+ export { TabsContext, useTabsContext };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports, "__esModule", {value: true});var _chunkJD2IVPH7js = require('./chunk-JD2IVPH7.js');exports.TabsContext = _chunkJD2IVPH7js.a; exports.useTabsContext = _chunkJD2IVPH7js.b;
@@ -0,0 +1 @@
1
+ import{a,b}from"./chunk-M6FSPJQJ.mjs";export{a as TabsContext,b as useTabsContext};