@luxfi/ui 5.5.3 → 5.6.0

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 (244) hide show
  1. package/dist/accordion.cjs +213 -0
  2. package/dist/accordion.js +186 -0
  3. package/dist/alert.cjs +553 -0
  4. package/dist/alert.js +531 -0
  5. package/dist/avatar.cjs +149 -0
  6. package/dist/avatar.js +125 -0
  7. package/dist/badge.cjs +611 -0
  8. package/dist/badge.js +589 -0
  9. package/dist/button.cjs +689 -0
  10. package/dist/button.js +664 -0
  11. package/dist/checkbox.cjs +265 -0
  12. package/dist/checkbox.js +241 -0
  13. package/dist/close-button.cjs +73 -0
  14. package/dist/close-button.js +51 -0
  15. package/dist/collapsible.cjs +702 -0
  16. package/dist/collapsible.js +679 -0
  17. package/dist/color-mode.cjs +96 -0
  18. package/dist/color-mode.js +72 -0
  19. package/dist/dialog.cjs +279 -0
  20. package/dist/dialog.js +246 -0
  21. package/dist/drawer.cjs +207 -0
  22. package/dist/drawer.js +175 -0
  23. package/dist/empty-state.cjs +93 -0
  24. package/dist/empty-state.js +71 -0
  25. package/dist/field.cjs +183 -0
  26. package/dist/field.js +160 -0
  27. package/dist/heading.cjs +46 -0
  28. package/dist/heading.js +40 -0
  29. package/dist/icon-button.cjs +491 -0
  30. package/dist/icon-button.js +470 -0
  31. package/dist/image.cjs +572 -0
  32. package/dist/image.js +551 -0
  33. package/dist/index.cjs +5779 -0
  34. package/dist/index.js +5619 -0
  35. package/dist/input-group.cjs +155 -0
  36. package/dist/input-group.js +133 -0
  37. package/dist/input.cjs +65 -0
  38. package/dist/input.js +59 -0
  39. package/dist/link.cjs +630 -0
  40. package/dist/link.js +606 -0
  41. package/dist/menu.cjs +305 -0
  42. package/dist/menu.js +269 -0
  43. package/dist/pin-input.cjs +182 -0
  44. package/dist/pin-input.js +160 -0
  45. package/dist/popover.cjs +327 -0
  46. package/dist/popover.js +294 -0
  47. package/dist/progress-circle.cjs +152 -0
  48. package/dist/progress-circle.js +128 -0
  49. package/dist/progress.cjs +117 -0
  50. package/dist/progress.js +94 -0
  51. package/dist/provider.cjs +62 -0
  52. package/dist/provider.js +40 -0
  53. package/dist/radio.cjs +177 -0
  54. package/dist/radio.js +153 -0
  55. package/dist/rating.cjs +80 -0
  56. package/dist/rating.js +58 -0
  57. package/dist/select.cjs +791 -0
  58. package/dist/select.js +757 -0
  59. package/dist/separator.cjs +57 -0
  60. package/dist/separator.js +51 -0
  61. package/dist/skeleton.cjs +370 -0
  62. package/dist/skeleton.js +346 -0
  63. package/dist/slider.cjs +138 -0
  64. package/dist/slider.js +115 -0
  65. package/dist/switch.cjs +163 -0
  66. package/dist/switch.js +140 -0
  67. package/dist/table.cjs +1044 -0
  68. package/dist/table.js +1013 -0
  69. package/dist/tabs.cjs +240 -0
  70. package/dist/tabs.js +213 -0
  71. package/dist/tag.cjs +651 -0
  72. package/dist/tag.js +628 -0
  73. package/dist/textarea.cjs +65 -0
  74. package/dist/textarea.js +59 -0
  75. package/dist/toaster.cjs +99 -0
  76. package/dist/toaster.js +96 -0
  77. package/dist/tooltip.cjs +171 -0
  78. package/dist/tooltip.js +148 -0
  79. package/dist/utils.cjs +11 -0
  80. package/dist/utils.js +9 -0
  81. package/package.json +270 -65
  82. package/src/accordion.tsx +285 -0
  83. package/src/alert.tsx +221 -0
  84. package/src/avatar.tsx +174 -0
  85. package/src/badge.tsx +158 -0
  86. package/src/button.tsx +411 -0
  87. package/src/checkbox.tsx +307 -0
  88. package/src/close-button.tsx +51 -0
  89. package/src/collapsible.tsx +126 -0
  90. package/src/color-mode.tsx +125 -0
  91. package/src/dialog.tsx +356 -0
  92. package/src/drawer.tsx +186 -0
  93. package/src/empty-state.tsx +97 -0
  94. package/src/field.tsx +202 -0
  95. package/src/heading.tsx +55 -0
  96. package/src/icon-button.tsx +192 -0
  97. package/src/image.tsx +280 -0
  98. package/src/index.ts +192 -0
  99. package/src/input-group.tsx +159 -0
  100. package/src/input.tsx +60 -0
  101. package/src/link.tsx +326 -0
  102. package/src/menu.tsx +471 -0
  103. package/src/pin-input.tsx +187 -0
  104. package/src/popover.tsx +400 -0
  105. package/src/progress-circle.tsx +180 -0
  106. package/src/progress.tsx +109 -0
  107. package/src/provider.tsx +12 -0
  108. package/src/radio.tsx +175 -0
  109. package/src/rating.tsx +79 -0
  110. package/src/select.tsx +696 -0
  111. package/src/separator.tsx +59 -0
  112. package/src/skeleton.tsx +302 -0
  113. package/src/slider.tsx +152 -0
  114. package/src/switch.tsx +158 -0
  115. package/src/table.tsx +621 -0
  116. package/src/tabs.tsx +354 -0
  117. package/src/tag.tsx +159 -0
  118. package/src/textarea.tsx +60 -0
  119. package/src/toaster.tsx +117 -0
  120. package/src/tokens.css +438 -0
  121. package/src/tooltip.tsx +184 -0
  122. package/src/utils/cn.ts +7 -0
  123. package/src/utils.ts +6 -0
  124. package/tokens.css +438 -0
  125. package/commerce/ui/conf.ts +0 -13
  126. package/commerce/ui/context.tsx +0 -123
  127. package/commerce/ui/store.ts +0 -295
  128. package/components/access-code-input.tsx +0 -71
  129. package/components/analytics.tsx +0 -23
  130. package/components/auth/auth-listener.tsx +0 -29
  131. package/components/auth/auth-token/clear-auth-token.tsx +0 -12
  132. package/components/auth/auth-token/set-auth-token.tsx +0 -16
  133. package/components/auth/common-auth-domains.ts +0 -17
  134. package/components/auth/login-panel.tsx +0 -111
  135. package/components/auth/mobile-login-button.tsx +0 -107
  136. package/components/auth/signup-panel.tsx +0 -113
  137. package/components/back-button.tsx +0 -49
  138. package/components/chat-widget.tsx +0 -85
  139. package/components/commerce/bag-button.tsx +0 -98
  140. package/components/commerce/buy-button.tsx +0 -34
  141. package/components/commerce/checkout-button.tsx +0 -129
  142. package/components/commerce/checkout-panel/cart-accordian.tsx +0 -66
  143. package/components/commerce/checkout-panel/checkout-panel-props.ts +0 -10
  144. package/components/commerce/checkout-panel/desktop-bag-carousel.tsx +0 -36
  145. package/components/commerce/checkout-panel/desktop-cp.tsx +0 -83
  146. package/components/commerce/checkout-panel/index.tsx +0 -126
  147. package/components/commerce/checkout-panel/mobile-cp.tsx +0 -67
  148. package/components/commerce/checkout-panel/policy-links.tsx +0 -29
  149. package/components/commerce/checkout-panel/steps-indicator.tsx +0 -39
  150. package/components/commerce/checkout-panel/thank-you.tsx +0 -18
  151. package/components/commerce/desktop-bag-popup.tsx +0 -78
  152. package/components/commerce/drawer/index.tsx +0 -88
  153. package/components/commerce/drawer/micro.tsx +0 -145
  154. package/components/commerce/drawer/shell.tsx +0 -85
  155. package/components/contact-dialog/contact-form.tsx +0 -116
  156. package/components/contact-dialog/disclaimer.tsx +0 -13
  157. package/components/contact-dialog/index.tsx +0 -64
  158. package/components/copyright.tsx +0 -21
  159. package/components/drawer-margin.tsx +0 -28
  160. package/components/footer.tsx +0 -78
  161. package/components/header/desktop-nav-menu.tsx +0 -204
  162. package/components/header/desktop.tsx +0 -65
  163. package/components/header/index.tsx +0 -50
  164. package/components/header/mobile-bag-drawer.tsx +0 -51
  165. package/components/header/mobile-menu-toggle-button.tsx +0 -35
  166. package/components/header/mobile-nav-menu-ai.tsx +0 -51
  167. package/components/header/mobile-nav-menu-item.tsx +0 -47
  168. package/components/header/mobile-nav-menu.tsx +0 -102
  169. package/components/header/mobile.tsx +0 -170
  170. package/components/header/theme-toggle.tsx +0 -26
  171. package/components/icons/avatar.tsx +0 -11
  172. package/components/icons/bag-icon.tsx +0 -10
  173. package/components/icons/index.ts +0 -6
  174. package/components/icons/left-arrow.tsx +0 -11
  175. package/components/icons/lux-logo.tsx +0 -10
  176. package/components/icons/right-arrow.tsx +0 -10
  177. package/components/icons/social-icon.tsx +0 -35
  178. package/components/icons/social-svg.css +0 -3
  179. package/components/index.ts +0 -26
  180. package/components/logo.tsx +0 -92
  181. package/components/main.tsx +0 -27
  182. package/components/mini-chart/index.tsx +0 -8
  183. package/components/mini-chart/mini-chart-props.ts +0 -44
  184. package/components/mini-chart/mini-chart.tsx +0 -85
  185. package/components/mini-chart/wrapper.tsx +0 -23
  186. package/components/not-found/index.tsx +0 -28
  187. package/components/not-found/not-found-content.mdx +0 -5
  188. package/components/tooltip.tsx +0 -31
  189. package/environment.d.ts +0 -6
  190. package/next/analytics/fpixel.ts +0 -16
  191. package/next/analytics/google-analytics.ts +0 -14
  192. package/next/analytics/index.ts +0 -3
  193. package/next/analytics/pixel-analytics.tsx +0 -55
  194. package/next/font/get-app-router-font-classes.ts +0 -17
  195. package/next/font/load-and-return-lux-next-fonts-on-import.ts +0 -68
  196. package/next/font/local/Druk-Wide-Bold.ttf +0 -0
  197. package/next/font/local/Druk-Wide-Medium.ttf +0 -0
  198. package/next/font/local/InterVariable-Italic.ttf +0 -0
  199. package/next/font/local/InterVariable-Italic.woff2 +0 -0
  200. package/next/font/local/InterVariable.ttf +0 -0
  201. package/next/font/local/InterVariable.woff2 +0 -0
  202. package/next/font/next-font-desc.ts +0 -28
  203. package/next/font/pages-router-font-vars.tsx +0 -18
  204. package/next/head-metadata/from-next/metadata-types.ts +0 -158
  205. package/next/head-metadata/from-next/opengraph-types.ts +0 -267
  206. package/next/head-metadata/from-next/twitter-types.ts +0 -92
  207. package/next/head-metadata/index.tsx +0 -208
  208. package/next/index.ts +0 -2
  209. package/next/middleware/determine-device-mw.ts +0 -29
  210. package/root-layout/WHY_THIS_IS_SEPARATE.txt +0 -2
  211. package/root-layout/index.tsx +0 -112
  212. package/site-def/footer/community.tsx +0 -61
  213. package/site-def/footer/company.ts +0 -37
  214. package/site-def/footer/ecosystem.ts +0 -37
  215. package/site-def/footer/index.tsx +0 -26
  216. package/site-def/footer/legal.ts +0 -28
  217. package/site-def/footer/network.ts +0 -45
  218. package/site-def/footer/svg/warpcast-logo.svg +0 -12
  219. package/site-def/index.ts +0 -4
  220. package/site-def/main-nav.tsx +0 -460
  221. package/style/cart-animation.css +0 -29
  222. package/style/checkout-animation.css +0 -23
  223. package/style/drawer-handle-overrides.css +0 -160
  224. package/style/fonts/COPY_TO_PUBLIC_FOR_NON_NEXT.txt +0 -0
  225. package/style/fonts/Druk-Wide-Bold.ttf +0 -0
  226. package/style/fonts/Druk-Wide-Medium.ttf +0 -0
  227. package/style/fonts/InterVariable-Italic.ttf +0 -0
  228. package/style/fonts/InterVariable-Italic.woff2 +0 -0
  229. package/style/fonts/InterVariable.ttf +0 -0
  230. package/style/fonts/InterVariable.woff2 +0 -0
  231. package/style/lux-colors.css +0 -85
  232. package/style/lux-fonts.css +0 -30
  233. package/style/lux-global-non-next.css +0 -52
  234. package/style/lux-global.css +0 -51
  235. package/tailwind/fontFamily.tailwind.lux.ts +0 -18
  236. package/tailwind/index.ts +0 -2
  237. package/tailwind/lux-tw-fonts.ts +0 -40
  238. package/tailwind/tailwind.config.lux-preset.ts +0 -10
  239. package/tsconfig.json +0 -15
  240. package/types/chatbot-config.ts +0 -7
  241. package/types/chatbot-suggested-question.ts +0 -7
  242. package/types/contact-info.ts +0 -11
  243. package/types/index.ts +0 -4
  244. package/types/site-def.ts +0 -46
package/dist/table.js ADDED
@@ -0,0 +1,1013 @@
1
+ "use client";
2
+ import { throttle } from 'es-toolkit';
3
+ import * as React3 from 'react';
4
+ import React3__default from 'react';
5
+ import { clsx } from 'clsx';
6
+ import { twMerge } from 'tailwind-merge';
7
+ import { jsx, jsxs } from 'react/jsx-runtime';
8
+
9
+ // src/table.tsx
10
+ function cn(...inputs) {
11
+ return twMerge(clsx(inputs));
12
+ }
13
+ var SPACING_SCALE = 4;
14
+ function toStylePx(value) {
15
+ if (value === void 0) return void 0;
16
+ if (typeof value === "string") return value;
17
+ return `${value * SPACING_SCALE}px`;
18
+ }
19
+ function extractSkeletonStyleProps(props) {
20
+ const style = {};
21
+ const rest = {};
22
+ function resolveDimension(value) {
23
+ if (value === void 0 || value === null) return void 0;
24
+ if (typeof value === "number") return `${value * SPACING_SCALE}px`;
25
+ if (typeof value === "string") return value;
26
+ if (typeof value === "object") {
27
+ const obj = value;
28
+ return obj.base ?? obj.lg ?? obj.xl ?? Object.values(obj)[0];
29
+ }
30
+ return void 0;
31
+ }
32
+ for (const [key, value] of Object.entries(props)) {
33
+ if (value === void 0) continue;
34
+ switch (key) {
35
+ case "w": {
36
+ const v = resolveDimension(value);
37
+ if (v) style.width = v;
38
+ break;
39
+ }
40
+ case "h": {
41
+ const v = resolveDimension(value);
42
+ if (v) style.height = v;
43
+ break;
44
+ }
45
+ case "minW": {
46
+ const v = resolveDimension(value);
47
+ if (v) style.minWidth = v;
48
+ break;
49
+ }
50
+ case "maxW": {
51
+ const v = resolveDimension(value);
52
+ if (v) style.maxWidth = v;
53
+ break;
54
+ }
55
+ case "height":
56
+ style.height = value;
57
+ break;
58
+ case "display":
59
+ style.display = value;
60
+ break;
61
+ case "flexGrow":
62
+ style.flexGrow = value;
63
+ break;
64
+ case "flexShrink":
65
+ style.flexShrink = value;
66
+ break;
67
+ case "flexBasis":
68
+ style.flexBasis = value;
69
+ break;
70
+ case "fontWeight":
71
+ style.fontWeight = value;
72
+ break;
73
+ case "borderRadius":
74
+ style.borderRadius = value;
75
+ break;
76
+ case "alignSelf":
77
+ style.alignSelf = value;
78
+ break;
79
+ case "alignItems":
80
+ style.alignItems = value;
81
+ break;
82
+ case "justifyContent":
83
+ style.justifyContent = value;
84
+ break;
85
+ case "color":
86
+ style.color = value;
87
+ break;
88
+ case "mt":
89
+ style.marginTop = toStylePx(value);
90
+ break;
91
+ case "mb":
92
+ style.marginBottom = toStylePx(value);
93
+ break;
94
+ case "ml":
95
+ style.marginLeft = toStylePx(value);
96
+ break;
97
+ case "mr":
98
+ style.marginRight = toStylePx(value);
99
+ break;
100
+ case "overflow":
101
+ style.overflow = value;
102
+ break;
103
+ case "whiteSpace":
104
+ style.whiteSpace = value;
105
+ break;
106
+ case "textOverflow":
107
+ style.textOverflow = value;
108
+ break;
109
+ case "textTransform":
110
+ style.textTransform = value;
111
+ break;
112
+ case "gap":
113
+ style.gap = typeof value === "number" ? `${value * SPACING_SCALE}px` : value;
114
+ break;
115
+ case "gridTemplateColumns":
116
+ style.gridTemplateColumns = value;
117
+ break;
118
+ case "minWidth":
119
+ style.minWidth = value;
120
+ break;
121
+ case "boxSize": {
122
+ const s = typeof value === "number" ? `${value * SPACING_SCALE}px` : value;
123
+ style.width = s;
124
+ style.height = s;
125
+ break;
126
+ }
127
+ case "py": {
128
+ const v = toStylePx(value);
129
+ style.paddingTop = v;
130
+ style.paddingBottom = v;
131
+ break;
132
+ }
133
+ case "px": {
134
+ const v = toStylePx(value);
135
+ style.paddingLeft = v;
136
+ style.paddingRight = v;
137
+ break;
138
+ }
139
+ case "p": {
140
+ const v = toStylePx(value);
141
+ style.padding = v;
142
+ break;
143
+ }
144
+ case "hideBelow":
145
+ break;
146
+ // handled via className
147
+ case "textStyle":
148
+ break;
149
+ // drop textStyle, not directly applicable
150
+ case "fontSize":
151
+ style.fontSize = value;
152
+ break;
153
+ case "flexWrap":
154
+ style.flexWrap = value;
155
+ break;
156
+ case "wordBreak":
157
+ style.wordBreak = value;
158
+ break;
159
+ case "lineHeight":
160
+ style.lineHeight = value;
161
+ break;
162
+ case "marginRight":
163
+ style.marginRight = value;
164
+ break;
165
+ case "position":
166
+ style.position = value;
167
+ break;
168
+ case "background":
169
+ style.background = value;
170
+ break;
171
+ default:
172
+ rest[key] = value;
173
+ break;
174
+ }
175
+ }
176
+ return { style, rest };
177
+ }
178
+ var Skeleton = React3.forwardRef(
179
+ function Skeleton2(props, ref) {
180
+ const {
181
+ loading = false,
182
+ asChild,
183
+ className,
184
+ children,
185
+ style: styleProp,
186
+ // Destructure style-prop shims so they don't leak into DOM
187
+ w: _w,
188
+ h: _h,
189
+ minW: _minW,
190
+ maxW: _maxW,
191
+ display: _display,
192
+ flexGrow: _flexGrow,
193
+ flexShrink: _flexShrink,
194
+ flexBasis: _flexBasis,
195
+ fontWeight: _fontWeight,
196
+ textStyle: _textStyle,
197
+ borderRadius: _borderRadius,
198
+ alignSelf: _alignSelf,
199
+ alignItems: _alignItems,
200
+ justifyContent: _justifyContent,
201
+ color: _color,
202
+ mt: _mt,
203
+ mb: _mb,
204
+ ml: _ml,
205
+ mr: _mr,
206
+ height: _height,
207
+ overflow: _overflow,
208
+ whiteSpace: _whiteSpace,
209
+ textOverflow: _textOverflow,
210
+ textTransform: _textTransform,
211
+ gap: _gap,
212
+ gridTemplateColumns: _gridTemplateColumns,
213
+ minWidth: _minWidth,
214
+ boxSize: _boxSize,
215
+ py: _py,
216
+ px: _px,
217
+ p: _p,
218
+ hideBelow: _hideBelow,
219
+ fontSize: _fontSize,
220
+ flexWrap: _flexWrap,
221
+ wordBreak: _wordBreak,
222
+ lineHeight: _lineHeight,
223
+ marginRight: _marginRight,
224
+ position: _position,
225
+ background: _background,
226
+ as: Component = "div",
227
+ ...htmlRest
228
+ } = props;
229
+ const { style: shimStyle } = extractSkeletonStyleProps({
230
+ w: _w,
231
+ h: _h,
232
+ minW: _minW,
233
+ maxW: _maxW,
234
+ display: _display,
235
+ flexGrow: _flexGrow,
236
+ flexShrink: _flexShrink,
237
+ flexBasis: _flexBasis,
238
+ fontWeight: _fontWeight,
239
+ textStyle: _textStyle,
240
+ borderRadius: _borderRadius,
241
+ alignSelf: _alignSelf,
242
+ alignItems: _alignItems,
243
+ justifyContent: _justifyContent,
244
+ color: _color,
245
+ mt: _mt,
246
+ mb: _mb,
247
+ ml: _ml,
248
+ mr: _mr,
249
+ height: _height,
250
+ overflow: _overflow,
251
+ whiteSpace: _whiteSpace,
252
+ textOverflow: _textOverflow,
253
+ textTransform: _textTransform,
254
+ gap: _gap,
255
+ gridTemplateColumns: _gridTemplateColumns,
256
+ minWidth: _minWidth,
257
+ boxSize: _boxSize,
258
+ py: _py,
259
+ px: _px,
260
+ p: _p,
261
+ hideBelow: _hideBelow,
262
+ fontSize: _fontSize,
263
+ flexWrap: _flexWrap,
264
+ wordBreak: _wordBreak,
265
+ lineHeight: _lineHeight,
266
+ marginRight: _marginRight,
267
+ position: _position,
268
+ background: _background
269
+ });
270
+ const mergedStyle = Object.keys(shimStyle).length > 0 || styleProp ? { ...shimStyle, ...styleProp } : void 0;
271
+ const HIDE_BELOW_MAP = { lg: "lg:hidden", md: "md:hidden", sm: "sm:hidden" };
272
+ const hideBelowClass = _hideBelow ? HIDE_BELOW_MAP[_hideBelow] : void 0;
273
+ const finalClassName = hideBelowClass ? cn(className, hideBelowClass) : className;
274
+ if (!loading) {
275
+ if (asChild && React3.isValidElement(children)) {
276
+ return children;
277
+ }
278
+ return /* @__PURE__ */ jsx(Component, { ref, className: finalClassName, style: mergedStyle, ...htmlRest, children });
279
+ }
280
+ if (asChild && React3.isValidElement(children)) {
281
+ return /* @__PURE__ */ jsx(
282
+ Component,
283
+ {
284
+ ref,
285
+ "data-loading": true,
286
+ className: cn(
287
+ "animate-skeleton-shimmer rounded-sm",
288
+ "bg-[linear-gradient(90deg,var(--color-skeleton-start)_0%,var(--color-skeleton-end)_50%,var(--color-skeleton-start)_100%)]",
289
+ "bg-[length:200%_100%]",
290
+ "text-transparent [&_*]:invisible",
291
+ finalClassName
292
+ ),
293
+ style: mergedStyle,
294
+ ...htmlRest,
295
+ children
296
+ }
297
+ );
298
+ }
299
+ return /* @__PURE__ */ jsx(
300
+ Component,
301
+ {
302
+ ref,
303
+ "data-loading": true,
304
+ className: cn(
305
+ "animate-skeleton-shimmer rounded-sm",
306
+ "bg-[linear-gradient(90deg,var(--color-skeleton-start)_0%,var(--color-skeleton-end)_50%,var(--color-skeleton-start)_100%)]",
307
+ "bg-[length:200%_100%]",
308
+ children ? "text-transparent [&_*]:invisible" : "min-h-5",
309
+ finalClassName
310
+ ),
311
+ style: mergedStyle,
312
+ ...htmlRest,
313
+ children
314
+ }
315
+ );
316
+ }
317
+ );
318
+ React3.forwardRef(
319
+ function SkeletonCircle2(props, ref) {
320
+ const { size = 40, loading = true, className, ...rest } = props;
321
+ const dimension = typeof size === "number" ? `${size}px` : size;
322
+ return /* @__PURE__ */ jsx(
323
+ Skeleton,
324
+ {
325
+ ref,
326
+ loading,
327
+ className: cn("rounded-full shrink-0", className),
328
+ style: { width: dimension, height: dimension, ...rest.style },
329
+ ...rest
330
+ }
331
+ );
332
+ }
333
+ );
334
+ React3.forwardRef(
335
+ function SkeletonText2(props, ref) {
336
+ const { noOfLines = 3, loading = true, className, ...rest } = props;
337
+ return /* @__PURE__ */ jsx("div", { ref, className: cn("flex w-full flex-col gap-2", className), ...rest, children: Array.from({ length: noOfLines }).map((_, index) => /* @__PURE__ */ jsx(
338
+ Skeleton,
339
+ {
340
+ loading,
341
+ className: cn("h-4", index === noOfLines - 1 && "max-w-[80%]")
342
+ },
343
+ index
344
+ )) });
345
+ }
346
+ );
347
+ var ArrowIcon = ({ className, style }) => /* @__PURE__ */ jsx("svg", { className, style, viewBox: "0 0 20 20", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("path", { d: "M11 3h6v6M17 3L7 13M14 11v6H3V6h6", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round" }) });
348
+ function stripUtmParams(url) {
349
+ try {
350
+ const urlObj = new URL(url);
351
+ for (const param of ["utm_source", "utm_medium", "utm_campaign", "utm_term", "utm_content"]) {
352
+ urlObj.searchParams.delete(param);
353
+ }
354
+ return urlObj.toString();
355
+ } catch {
356
+ return url;
357
+ }
358
+ }
359
+ var VARIANT_CLASSES = {
360
+ primary: cn(
361
+ "text-[var(--color-link-primary)]",
362
+ "hover:no-underline hover:text-[var(--color-link-primary-hover)]",
363
+ "data-[hover]:no-underline data-[hover]:text-[var(--color-link-primary-hover)]"
364
+ ),
365
+ secondary: cn(
366
+ "text-[var(--color-link-secondary)]",
367
+ "hover:no-underline hover:text-[var(--color-hover)]",
368
+ "data-[hover]:no-underline data-[hover]:text-[var(--color-hover)]"
369
+ ),
370
+ subtle: cn(
371
+ "text-[var(--color-link-subtle)]",
372
+ "hover:text-[var(--color-link-subtle-hover)] hover:underline hover:decoration-[var(--color-link-subtle-hover)]",
373
+ "data-[hover]:text-[var(--color-link-subtle-hover)] data-[hover]:underline data-[hover]:decoration-[var(--color-link-subtle-hover)]"
374
+ ),
375
+ underlaid: cn(
376
+ "text-[var(--color-link-primary)] bg-[var(--color-link-underlaid-bg)]",
377
+ "px-2 py-1.5 rounded-md text-sm",
378
+ "hover:text-[var(--color-link-primary-hover)] hover:no-underline",
379
+ "data-[hover]:text-[var(--color-link-primary-hover)] data-[hover]:no-underline"
380
+ ),
381
+ menu: cn(
382
+ "text-[var(--color-link-menu)]",
383
+ "hover:text-[var(--color-hover)] hover:no-underline",
384
+ "data-[hover]:text-[var(--color-hover)] data-[hover]:no-underline"
385
+ ),
386
+ navigation: cn(
387
+ "text-[var(--color-link-nav-fg)] bg-transparent",
388
+ "hover:text-[var(--color-link-nav-fg-hover)] hover:no-underline",
389
+ "data-[hover]:text-[var(--color-link-nav-fg-hover)] data-[hover]:no-underline",
390
+ "data-[selected]:text-[var(--color-link-nav-fg-selected)] data-[selected]:bg-[var(--color-link-nav-bg-selected)]",
391
+ "data-[active]:text-[var(--color-link-nav-fg-active)]"
392
+ ),
393
+ plain: cn(
394
+ "text-inherit",
395
+ "hover:no-underline",
396
+ "data-[hover]:no-underline"
397
+ )
398
+ };
399
+ var BASE_CLASSES = "inline-flex items-center gap-0 cursor-pointer data-[disabled]:cursor-not-allowed";
400
+ var LinkExternalIcon = ({ color }) => /* @__PURE__ */ jsx(
401
+ ArrowIcon,
402
+ {
403
+ className: cn(
404
+ "size-3 align-middle shrink-0",
405
+ "group-hover:text-inherit"
406
+ ),
407
+ style: color ? { color } : { color: "var(--color-icon-secondary)" },
408
+ "aria-hidden": "true"
409
+ }
410
+ );
411
+ var SPACING = 4;
412
+ function resolveSpacing(v) {
413
+ if (v === void 0) return void 0;
414
+ if (typeof v === "number") return `${v * SPACING}px`;
415
+ if (typeof v === "string") return v;
416
+ if (typeof v === "object" && v !== null) {
417
+ const base = v.base;
418
+ if (base !== void 0) return typeof base === "number" ? `${base * SPACING}px` : base;
419
+ const lg = v.lg;
420
+ if (lg !== void 0) return typeof lg === "number" ? `${lg * SPACING}px` : lg;
421
+ }
422
+ return void 0;
423
+ }
424
+ var Link = React3__default.forwardRef(
425
+ function Link2(props, ref) {
426
+ const {
427
+ external,
428
+ loading,
429
+ href,
430
+ children,
431
+ disabled,
432
+ noIcon,
433
+ iconColor,
434
+ variant = "primary",
435
+ className,
436
+ asChild: _asChild,
437
+ // Strip Next.js-specific props (accepted for compat, not used)
438
+ shallow: _shallow,
439
+ prefetch: _prefetch,
440
+ scroll: _scroll,
441
+ // Strip Chakra style props
442
+ fontWeight: _fontWeight,
443
+ whiteSpace: _whiteSpace,
444
+ wordBreak: _wordBreak,
445
+ textStyle: _textStyle,
446
+ ml: _ml,
447
+ mr: _mr,
448
+ display: _display,
449
+ alignItems: _alignItems,
450
+ flexShrink: _flexShrink,
451
+ minW: _minW,
452
+ justifyContent: _justifyContent,
453
+ position: _position,
454
+ ...rest
455
+ } = props;
456
+ const shimStyle = {};
457
+ if (_fontWeight !== void 0) shimStyle.fontWeight = _fontWeight;
458
+ if (_whiteSpace) shimStyle.whiteSpace = _whiteSpace;
459
+ if (_wordBreak) shimStyle.wordBreak = _wordBreak;
460
+ if (_ml !== void 0) shimStyle.marginLeft = resolveSpacing(_ml);
461
+ if (_mr !== void 0) shimStyle.marginRight = resolveSpacing(_mr);
462
+ if (_display) shimStyle.display = _display;
463
+ if (_alignItems) shimStyle.alignItems = _alignItems;
464
+ if (_flexShrink !== void 0) shimStyle.flexShrink = _flexShrink;
465
+ if (_minW !== void 0) shimStyle.minWidth = typeof _minW === "number" ? `${_minW * SPACING}px` : _minW;
466
+ if (_justifyContent) shimStyle.justifyContent = _justifyContent;
467
+ if (_position) shimStyle.position = _position;
468
+ const linkClasses = cn(BASE_CLASSES, VARIANT_CLASSES[variant], className);
469
+ const linkStyle = Object.keys(shimStyle).length > 0 ? shimStyle : void 0;
470
+ if (external) {
471
+ const processedHref = typeof href === "string" ? stripUtmParams(href) : href;
472
+ return /* @__PURE__ */ jsx(Skeleton, { loading, ref, asChild: true, children: /* @__PURE__ */ jsxs(
473
+ "a",
474
+ {
475
+ href: processedHref,
476
+ className: cn("group", linkClasses),
477
+ style: linkStyle,
478
+ target: "_blank",
479
+ rel: "noopener noreferrer",
480
+ ...disabled ? { "data-disabled": true } : {},
481
+ ...rest,
482
+ children: [
483
+ children,
484
+ !noIcon && /* @__PURE__ */ jsx(LinkExternalIcon, { color: iconColor })
485
+ ]
486
+ }
487
+ ) });
488
+ }
489
+ if (href) {
490
+ return /* @__PURE__ */ jsx(Skeleton, { loading, ref, asChild: true, children: /* @__PURE__ */ jsx(
491
+ "a",
492
+ {
493
+ href,
494
+ className: linkClasses,
495
+ style: linkStyle,
496
+ ...disabled ? { "data-disabled": true } : {},
497
+ ...rest,
498
+ children
499
+ }
500
+ ) });
501
+ }
502
+ return /* @__PURE__ */ jsx(Skeleton, { loading, ref, asChild: true, children: /* @__PURE__ */ jsx(
503
+ "span",
504
+ {
505
+ className: linkClasses,
506
+ ...disabled ? { "data-disabled": true } : {},
507
+ ...rest,
508
+ children
509
+ }
510
+ ) });
511
+ }
512
+ );
513
+ React3__default.forwardRef(
514
+ function LinkBox2(props, ref) {
515
+ const { className, ...rest } = props;
516
+ return /* @__PURE__ */ jsx(
517
+ "div",
518
+ {
519
+ ref,
520
+ className: cn("relative", className),
521
+ ...rest
522
+ }
523
+ );
524
+ }
525
+ );
526
+ React3__default.forwardRef(
527
+ function LinkOverlay2(props, ref) {
528
+ const {
529
+ children,
530
+ external,
531
+ loading,
532
+ href,
533
+ noIcon,
534
+ iconColor,
535
+ variant = "primary",
536
+ className,
537
+ disabled,
538
+ asChild: _asChild2,
539
+ shallow: _shallow2,
540
+ prefetch: _prefetch2,
541
+ scroll: _scroll2,
542
+ fontWeight: _fw2,
543
+ whiteSpace: _ws2,
544
+ wordBreak: _wb2,
545
+ textStyle: _ts2,
546
+ ml: _ml2,
547
+ mr: _mr2,
548
+ display: _d2,
549
+ alignItems: _ai2,
550
+ flexShrink: _fs2,
551
+ minW: _mw2,
552
+ justifyContent: _jc2,
553
+ position: _p2,
554
+ ...rest
555
+ } = props;
556
+ const overlayClasses = cn(
557
+ BASE_CLASSES,
558
+ VARIANT_CLASSES[variant],
559
+ // Static positioning with a ::before pseudo-element that covers the LinkBox
560
+ "static",
561
+ 'before:absolute before:inset-0 before:z-0 before:content-[""]',
562
+ className
563
+ );
564
+ if (external) {
565
+ const processedHref = typeof href === "string" ? stripUtmParams(href) : href;
566
+ return /* @__PURE__ */ jsx(
567
+ "a",
568
+ {
569
+ ref,
570
+ href: loading ? void 0 : processedHref,
571
+ className: overlayClasses,
572
+ target: "_blank",
573
+ rel: "noopener noreferrer",
574
+ ...rest,
575
+ children: (children || !noIcon && href) && /* @__PURE__ */ jsxs(Skeleton, { display: "inline-flex", alignItems: "center", loading, maxW: "100%", h: "100%", children: [
576
+ children,
577
+ !noIcon && href && /* @__PURE__ */ jsx(LinkExternalIcon, { color: iconColor })
578
+ ] })
579
+ }
580
+ );
581
+ }
582
+ const content = children ? /* @__PURE__ */ jsx(Skeleton, { display: "inline-flex", alignItems: "center", loading, maxW: "100%", h: "100%", children }) : null;
583
+ if (href) {
584
+ return /* @__PURE__ */ jsx(
585
+ "a",
586
+ {
587
+ ref,
588
+ href,
589
+ className: overlayClasses,
590
+ ...rest,
591
+ children: content
592
+ }
593
+ );
594
+ }
595
+ return /* @__PURE__ */ jsx(
596
+ "span",
597
+ {
598
+ ref,
599
+ className: overlayClasses,
600
+ ...rest,
601
+ children: content
602
+ }
603
+ );
604
+ }
605
+ );
606
+ var ArrowIcon2 = ({ className }) => /* @__PURE__ */ jsx("svg", { className, viewBox: "0 0 24 24", fill: "none", xmlns: "http://www.w3.org/2000/svg", children: /* @__PURE__ */ jsx("path", { d: "M5 12h14M12 5l7 7-7 7", stroke: "currentColor", strokeWidth: "2", strokeLinecap: "round", strokeLinejoin: "round" }) });
607
+ var SPACING_SCALE2 = 4;
608
+ function toPixels(value) {
609
+ if (value === void 0) return void 0;
610
+ if (typeof value === "string") return value;
611
+ return `${value * SPACING_SCALE2}px`;
612
+ }
613
+ function extractStyles(props) {
614
+ const style = {};
615
+ const rest = {};
616
+ for (const [key, value] of Object.entries(props)) {
617
+ if (value === void 0) continue;
618
+ switch (key) {
619
+ case "width":
620
+ case "w":
621
+ style.width = value;
622
+ break;
623
+ case "minWidth":
624
+ case "minW":
625
+ style.minWidth = value;
626
+ break;
627
+ case "maxWidth":
628
+ case "maxW":
629
+ style.maxWidth = value;
630
+ break;
631
+ case "height":
632
+ case "h":
633
+ style.height = value;
634
+ break;
635
+ case "textAlign":
636
+ style.textAlign = value;
637
+ break;
638
+ case "verticalAlign":
639
+ style.verticalAlign = value;
640
+ break;
641
+ case "whiteSpace":
642
+ style.whiteSpace = value;
643
+ break;
644
+ case "wordBreak":
645
+ style.wordBreak = value;
646
+ break;
647
+ case "textTransform":
648
+ style.textTransform = value;
649
+ break;
650
+ case "fontSize":
651
+ style.fontSize = value;
652
+ break;
653
+ case "lineHeight":
654
+ style.lineHeight = value;
655
+ break;
656
+ case "animation":
657
+ style.animation = value;
658
+ break;
659
+ case "tableLayout":
660
+ style.tableLayout = value;
661
+ break;
662
+ case "p":
663
+ style.padding = toPixels(value);
664
+ break;
665
+ case "px": {
666
+ const px = toPixels(value);
667
+ style.paddingLeft = px;
668
+ style.paddingRight = px;
669
+ break;
670
+ }
671
+ case "py": {
672
+ const py = toPixels(value);
673
+ style.paddingTop = py;
674
+ style.paddingBottom = py;
675
+ break;
676
+ }
677
+ case "pr":
678
+ style.paddingRight = toPixels(value);
679
+ break;
680
+ case "pl":
681
+ style.paddingLeft = toPixels(value);
682
+ break;
683
+ case "pt":
684
+ style.paddingTop = toPixels(value);
685
+ break;
686
+ case "pb":
687
+ style.paddingBottom = toPixels(value);
688
+ break;
689
+ case "m":
690
+ style.margin = toPixels(value);
691
+ break;
692
+ case "mx": {
693
+ const mx = toPixels(value);
694
+ style.marginLeft = mx;
695
+ style.marginRight = mx;
696
+ break;
697
+ }
698
+ case "my": {
699
+ const my = toPixels(value);
700
+ style.marginTop = my;
701
+ style.marginBottom = my;
702
+ break;
703
+ }
704
+ case "mr":
705
+ style.marginRight = toPixels(value);
706
+ break;
707
+ case "ml":
708
+ style.marginLeft = toPixels(value);
709
+ break;
710
+ case "mt":
711
+ style.marginTop = toPixels(value);
712
+ break;
713
+ case "mb":
714
+ style.marginBottom = toPixels(value);
715
+ break;
716
+ case "position":
717
+ style.position = value;
718
+ break;
719
+ case "top":
720
+ style.top = typeof value === "number" ? `${value}px` : value;
721
+ break;
722
+ case "left":
723
+ style.left = typeof value === "number" ? `${value}px` : value;
724
+ break;
725
+ case "right":
726
+ style.right = typeof value === "number" ? `${value}px` : value;
727
+ break;
728
+ case "bottom":
729
+ style.bottom = typeof value === "number" ? `${value}px` : value;
730
+ break;
731
+ case "zIndex":
732
+ style.zIndex = value;
733
+ break;
734
+ case "backgroundColor":
735
+ if (typeof value === "string") {
736
+ style.backgroundColor = value;
737
+ }
738
+ break;
739
+ case "boxShadow":
740
+ style.boxShadow = value;
741
+ break;
742
+ case "alignItems":
743
+ style.alignItems = value;
744
+ break;
745
+ case "fontWeight":
746
+ style.fontWeight = value;
747
+ break;
748
+ case "color":
749
+ if (typeof value === "string") {
750
+ style.color = value;
751
+ }
752
+ break;
753
+ case "overflow":
754
+ style.overflow = value;
755
+ break;
756
+ case "borderBottomStyle":
757
+ style.borderBottomStyle = value;
758
+ break;
759
+ case "borderRadius":
760
+ style.borderRadius = value;
761
+ break;
762
+ case "display":
763
+ style.display = value;
764
+ break;
765
+ // Chakra pseudo-props: silently drop
766
+ case "_first":
767
+ case "_last":
768
+ break;
769
+ default:
770
+ rest[key] = value;
771
+ break;
772
+ }
773
+ }
774
+ return { style, rest };
775
+ }
776
+ function resolveResponsive(value) {
777
+ if (value === void 0 || value === null) return void 0;
778
+ if (typeof value === "string") return value;
779
+ if (typeof value === "number") return `${value}px`;
780
+ if (typeof value === "object" && value !== null && "base" in value) {
781
+ return value.base;
782
+ }
783
+ return void 0;
784
+ }
785
+ var TableRoot = React3.forwardRef(
786
+ function TableRoot2(props, ref) {
787
+ const { className, style: styleProp, children, ...other } = props;
788
+ const rawMinW = other.minWidth ?? other.minW;
789
+ const resolvedMinW = resolveResponsive(rawMinW);
790
+ if (resolvedMinW) {
791
+ other.minWidth = resolvedMinW;
792
+ delete other.minW;
793
+ }
794
+ const { style: extracted, rest } = extractStyles(other);
795
+ const merged = { ...extracted, ...styleProp };
796
+ return /* @__PURE__ */ jsx(
797
+ "table",
798
+ {
799
+ ref,
800
+ className: cn("w-full border-collapse text-sm", className),
801
+ style: merged,
802
+ ...rest,
803
+ children
804
+ }
805
+ );
806
+ }
807
+ );
808
+ var TableHeader = React3.forwardRef(
809
+ function TableHeader2(props, ref) {
810
+ const { className, style: styleProp, children, ...other } = props;
811
+ const { style: extracted, rest } = extractStyles(other);
812
+ const merged = { ...extracted, ...styleProp };
813
+ return /* @__PURE__ */ jsx(
814
+ "thead",
815
+ {
816
+ ref,
817
+ className: cn("", className),
818
+ style: merged,
819
+ ...rest,
820
+ children
821
+ }
822
+ );
823
+ }
824
+ );
825
+ var TableBody = React3.forwardRef(
826
+ function TableBody2(props, ref) {
827
+ const { className, style: styleProp, children, ...other } = props;
828
+ const { style: extracted, rest } = extractStyles(other);
829
+ const merged = { ...extracted, ...styleProp };
830
+ return /* @__PURE__ */ jsx(
831
+ "tbody",
832
+ {
833
+ ref,
834
+ className: cn("", className),
835
+ style: merged,
836
+ ...rest,
837
+ children
838
+ }
839
+ );
840
+ }
841
+ );
842
+ var TableRow = React3.forwardRef(
843
+ function TableRow2(props, ref) {
844
+ const { className, style: styleProp, children, ...other } = props;
845
+ const { style: extracted, rest } = extractStyles(other);
846
+ const merged = { ...extracted, ...styleProp };
847
+ return /* @__PURE__ */ jsx(
848
+ "tr",
849
+ {
850
+ ref,
851
+ className: cn("", className),
852
+ style: merged,
853
+ ...rest,
854
+ children
855
+ }
856
+ );
857
+ }
858
+ );
859
+ var TableCell = React3.forwardRef(
860
+ function TableCell2(props, ref) {
861
+ const { isNumeric, className, style: styleProp, children, ...other } = props;
862
+ const { style: extracted, rest } = extractStyles(other);
863
+ const merged = {
864
+ ...isNumeric ? { textAlign: "right" } : {},
865
+ ...extracted,
866
+ ...styleProp
867
+ };
868
+ return /* @__PURE__ */ jsx(
869
+ "td",
870
+ {
871
+ ref,
872
+ className: cn("px-3 py-2.5 align-top text-sm", className),
873
+ style: merged,
874
+ ...rest,
875
+ children
876
+ }
877
+ );
878
+ }
879
+ );
880
+ var TableColumnHeader = React3.forwardRef(
881
+ function TableColumnHeader2(props, ref) {
882
+ const { isNumeric, className, style: styleProp, children, ...other } = props;
883
+ const { style: extracted, rest } = extractStyles(other);
884
+ const merged = {
885
+ ...isNumeric ? { textAlign: "right" } : {},
886
+ ...extracted,
887
+ ...styleProp
888
+ };
889
+ return /* @__PURE__ */ jsx(
890
+ "th",
891
+ {
892
+ ref,
893
+ className: cn(
894
+ "px-3 py-2 text-xs font-semibold uppercase tracking-wider",
895
+ "bg-[var(--color-table-header-bg)] text-[var(--color-table-header-fg)]",
896
+ className
897
+ ),
898
+ style: merged,
899
+ ...rest,
900
+ children
901
+ }
902
+ );
903
+ }
904
+ );
905
+ var TableColumnHeaderSortable = (props) => {
906
+ const { sortField, sortValue, onSortToggle, children, disabled, indicatorPosition = "left", contentAfter, ...rest } = props;
907
+ const handleSortToggle = React3.useCallback(() => {
908
+ onSortToggle(sortField);
909
+ }, [onSortToggle, sortField]);
910
+ const isActive = sortValue.includes(sortField);
911
+ const isAsc = sortValue.toLowerCase().includes("asc");
912
+ return /* @__PURE__ */ jsxs(TableColumnHeader, { ...rest, children: [
913
+ /* @__PURE__ */ jsxs(Link, { onClick: disabled ? void 0 : handleSortToggle, className: "relative", children: [
914
+ isActive && /* @__PURE__ */ jsx(
915
+ "span",
916
+ {
917
+ className: cn(
918
+ "absolute top-0 inline-flex h-full w-4 items-center",
919
+ indicatorPosition === "left" ? "-left-5" : "-right-5",
920
+ isAsc ? "-rotate-90" : "rotate-90"
921
+ ),
922
+ children: /* @__PURE__ */ jsx(ArrowIcon2, { className: "h-4 w-4" })
923
+ }
924
+ ),
925
+ children
926
+ ] }),
927
+ contentAfter
928
+ ] });
929
+ };
930
+ var ACTION_BAR_SHADOW = "0 4px 4px -4px rgb(0 0 0 / 10%), 0 2px 4px -4px rgb(0 0 0 / 6%)";
931
+ var TableHeaderSticky = (props) => {
932
+ const { top, children, className, style: styleProp, ...rest } = props;
933
+ const ref = React3.useRef(null);
934
+ const [isStuck, setIsStuck] = React3.useState(false);
935
+ const handleScroll = React3.useCallback(() => {
936
+ if (Number(ref.current?.getBoundingClientRect().y) <= (Number(top) || 0)) {
937
+ setIsStuck(true);
938
+ } else {
939
+ setIsStuck(false);
940
+ }
941
+ }, [top]);
942
+ React3.useEffect(() => {
943
+ const throttledHandleScroll = throttle(handleScroll, 300);
944
+ window.addEventListener("scroll", throttledHandleScroll);
945
+ return () => {
946
+ window.removeEventListener("scroll", throttledHandleScroll);
947
+ };
948
+ }, [handleScroll]);
949
+ return /* @__PURE__ */ jsx(
950
+ TableHeader,
951
+ {
952
+ ref,
953
+ className: cn("sticky z-[1] bg-white dark:bg-black", className),
954
+ style: {
955
+ top: top ? `${top}px` : 0,
956
+ boxShadow: isStuck ? ACTION_BAR_SHADOW : "none",
957
+ ...styleProp
958
+ },
959
+ ...rest,
960
+ children
961
+ }
962
+ );
963
+ };
964
+ var TableCaption = React3.forwardRef(
965
+ function TableCaption2(props, ref) {
966
+ const { className, style: styleProp, children, ...other } = props;
967
+ const { style: extracted, rest } = extractStyles(other);
968
+ const merged = { ...extracted, ...styleProp };
969
+ return /* @__PURE__ */ jsx(
970
+ "caption",
971
+ {
972
+ ref,
973
+ className: cn("px-3 py-2 text-sm text-[var(--color-table-header-fg)]", className),
974
+ style: merged,
975
+ ...rest,
976
+ children
977
+ }
978
+ );
979
+ }
980
+ );
981
+ var TableFooter = React3.forwardRef(
982
+ function TableFooter2(props, ref) {
983
+ const { className, style: styleProp, children, ...other } = props;
984
+ const { style: extracted, rest } = extractStyles(other);
985
+ const merged = { ...extracted, ...styleProp };
986
+ return /* @__PURE__ */ jsx(
987
+ "tfoot",
988
+ {
989
+ ref,
990
+ className: cn("", className),
991
+ style: merged,
992
+ ...rest,
993
+ children
994
+ }
995
+ );
996
+ }
997
+ );
998
+ var TableScrollWrapper = React3.forwardRef(
999
+ function TableScrollWrapper2(props, ref) {
1000
+ const { className, children, ...rest } = props;
1001
+ return /* @__PURE__ */ jsx(
1002
+ "div",
1003
+ {
1004
+ ref,
1005
+ className: cn("w-full overflow-x-auto", className),
1006
+ ...rest,
1007
+ children
1008
+ }
1009
+ );
1010
+ }
1011
+ );
1012
+
1013
+ export { TableBody, TableCaption, TableCell, TableColumnHeader, TableColumnHeaderSortable, TableFooter, TableHeader, TableHeaderSticky, TableRoot, TableRow, TableScrollWrapper };