@turtleclub/ui 0.7.0-beta.3 → 0.7.0-beta.31

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 (69) hide show
  1. package/.turbo/turbo-build.log +143 -132
  2. package/CHANGELOG.md +156 -0
  3. package/dist/index.cjs +71 -31
  4. package/dist/index.cjs.map +1 -1
  5. package/dist/index.js +32814 -14783
  6. package/dist/index.js.map +1 -1
  7. package/dist/styles.css +1 -1
  8. package/dist/types/components/charts/area-chart.d.ts +108 -0
  9. package/dist/types/components/charts/area-chart.d.ts.map +1 -0
  10. package/dist/types/components/charts/bar-chart.d.ts +110 -0
  11. package/dist/types/components/charts/bar-chart.d.ts.map +1 -0
  12. package/dist/types/components/charts/index.d.ts +5 -0
  13. package/dist/types/components/charts/index.d.ts.map +1 -0
  14. package/dist/types/components/charts/pie-chart.d.ts +94 -0
  15. package/dist/types/components/charts/pie-chart.d.ts.map +1 -0
  16. package/dist/types/components/charts/radial-chart.d.ts +151 -0
  17. package/dist/types/components/charts/radial-chart.d.ts.map +1 -0
  18. package/dist/types/components/features/data-table/data-table.d.ts +7 -4
  19. package/dist/types/components/features/data-table/data-table.d.ts.map +1 -1
  20. package/dist/types/components/features/data-table/sort-dropdown.d.ts.map +1 -1
  21. package/dist/types/components/features/search-bar.d.ts +1 -0
  22. package/dist/types/components/features/search-bar.d.ts.map +1 -1
  23. package/dist/types/components/molecules/swap-input.d.ts +3 -0
  24. package/dist/types/components/molecules/swap-input.d.ts.map +1 -1
  25. package/dist/types/components/molecules/token-selector.d.ts +2 -1
  26. package/dist/types/components/molecules/token-selector.d.ts.map +1 -1
  27. package/dist/types/components/ui/avatar.d.ts +2 -2
  28. package/dist/types/components/ui/avatar.d.ts.map +1 -1
  29. package/dist/types/components/ui/chart.d.ts +18 -4
  30. package/dist/types/components/ui/chart.d.ts.map +1 -1
  31. package/dist/types/components/ui/combobox.d.ts +21 -0
  32. package/dist/types/components/ui/combobox.d.ts.map +1 -1
  33. package/dist/types/components/ui/dialog.d.ts.map +1 -1
  34. package/dist/types/components/ui/dropdown.d.ts +2 -1
  35. package/dist/types/components/ui/dropdown.d.ts.map +1 -1
  36. package/dist/types/components/ui/index.d.ts +1 -0
  37. package/dist/types/components/ui/index.d.ts.map +1 -1
  38. package/dist/types/components/ui/multi-select.d.ts.map +1 -1
  39. package/dist/types/components/ui/segment-control.d.ts +1 -0
  40. package/dist/types/components/ui/segment-control.d.ts.map +1 -1
  41. package/dist/types/components/ui/slider.d.ts.map +1 -1
  42. package/dist/types/index.d.ts +1 -0
  43. package/dist/types/index.d.ts.map +1 -1
  44. package/package.json +3 -3
  45. package/src/components/charts/QUICK_REFERENCE.md +323 -0
  46. package/src/components/charts/README.md +658 -0
  47. package/src/components/charts/RECHARTS_FEATURES.md +458 -0
  48. package/src/components/charts/area-chart.tsx +248 -0
  49. package/src/components/charts/bar-chart.tsx +362 -0
  50. package/src/components/charts/index.ts +4 -0
  51. package/src/components/charts/pie-chart.tsx +277 -0
  52. package/src/components/charts/radial-chart.tsx +312 -0
  53. package/src/components/features/data-table/data-table.tsx +136 -125
  54. package/src/components/features/data-table/sort-dropdown.tsx +8 -11
  55. package/src/components/features/search-bar.tsx +6 -1
  56. package/src/components/molecules/swap-input.tsx +44 -30
  57. package/src/components/molecules/token-selector.tsx +10 -1
  58. package/src/components/ui/avatar.tsx +8 -15
  59. package/src/components/ui/chart.tsx +100 -109
  60. package/src/components/ui/combobox.tsx +150 -137
  61. package/src/components/ui/dialog.tsx +9 -23
  62. package/src/components/ui/dropdown.tsx +3 -1
  63. package/src/components/ui/index.ts +1 -0
  64. package/src/components/ui/multi-select.tsx +325 -307
  65. package/src/components/ui/segment-control.tsx +7 -2
  66. package/src/components/ui/slider.tsx +6 -11
  67. package/src/index.ts +1 -0
  68. package/src/styles/globals.css +4 -0
  69. package/src/styles/themes/semantic.css +26 -56
@@ -1,171 +1,182 @@
1
1
  $ rm -rf dist && bun run build:code && bun run build:types && bun run build:css
2
2
  $ vite build
3
- vite v7.2.4 building client environment for production...
3
+ vite v7.3.1 building client environment for production...
4
4
  transforming...
5
+ src/hooks/useIsMobile.ts (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
6
+ src/hooks/useIsMobile.ts (1:0): Module level directives cause errors when bundled, "use client" in "src/hooks/useIsMobile.ts" was ignored.
7
+ src/components/ui/table.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
8
+ src/components/ui/table.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/table.tsx" was ignored.
9
+ src/components/ui/navigation-bar.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
10
+ src/components/ui/navigation-bar.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/navigation-bar.tsx" was ignored.
11
+ src/components/ui/chart.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
12
+ src/components/ui/chart.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/chart.tsx" was ignored.
13
+ src/components/ui/dialog.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
14
+ src/components/ui/dialog.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/dialog.tsx" was ignored.
5
15
  src/components/ui/toggle.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
6
16
  src/components/ui/toggle.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/toggle.tsx" was ignored.
7
- src/components/ui/dropdown.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
8
- src/components/ui/dropdown.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/dropdown.tsx" was ignored.
9
17
  src/components/ui/table-shadcn.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
10
18
  src/components/ui/table-shadcn.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/table-shadcn.tsx" was ignored.
19
+ src/components/molecules/token-selector.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
20
+ src/components/molecules/token-selector.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/molecules/token-selector.tsx" was ignored.
21
+ src/components/ui/combobox.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
22
+ src/components/ui/combobox.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/combobox.tsx" was ignored.
11
23
  src/components/ui/checkbox.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
12
24
  src/components/ui/checkbox.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/checkbox.tsx" was ignored.
13
- src/components/ui/navigation-bar.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
14
- src/components/ui/navigation-bar.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/navigation-bar.tsx" was ignored.
15
- src/components/ui/table.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
16
- src/components/ui/table.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/table.tsx" was ignored.
17
- src/components/ui/select.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
18
- src/components/ui/select.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/select.tsx" was ignored.
19
- src/components/ui/dialog.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
20
- src/components/ui/dialog.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/dialog.tsx" was ignored.
21
- src/components/ui/tooltip.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
22
- src/components/ui/tooltip.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/tooltip.tsx" was ignored.
23
- src/components/ui/input-group.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
24
- src/components/ui/input-group.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/input-group.tsx" was ignored.
25
- src/components/ui/alert-dialog.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
26
- src/components/ui/alert-dialog.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/alert-dialog.tsx" was ignored.
27
- src/components/ui/slider.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
28
- src/components/ui/slider.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/slider.tsx" was ignored.
29
- src/components/ui/label.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
30
- src/components/ui/label.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/label.tsx" was ignored.
31
25
  src/components/ui/field.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
32
26
  src/components/ui/field.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/field.tsx" was ignored.
33
- src/components/ui/popover.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
34
- src/components/ui/popover.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/popover.tsx" was ignored.
27
+ src/components/ui/segment-control.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
28
+ src/components/ui/segment-control.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/segment-control.tsx" was ignored.
29
+ src/components/ui/alert-dialog.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
30
+ src/components/ui/alert-dialog.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/alert-dialog.tsx" was ignored.
35
31
  src/components/ui/collapsible.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
36
32
  src/components/ui/collapsible.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/collapsible.tsx" was ignored.
33
+ src/components/ui/select.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
34
+ src/components/ui/select.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/select.tsx" was ignored.
35
+ src/components/ui/input-group.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
36
+ src/components/ui/input-group.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/input-group.tsx" was ignored.
37
37
  src/components/ui/command.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
38
38
  src/components/ui/command.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/command.tsx" was ignored.
39
- src/components/molecules/token-selector.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
40
- src/components/molecules/token-selector.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/molecules/token-selector.tsx" was ignored.
41
- src/components/ui/segment-control.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
42
- src/components/ui/segment-control.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/segment-control.tsx" was ignored.
43
- src/hooks/useIsMobile.ts (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
44
- src/hooks/useIsMobile.ts (1:0): Module level directives cause errors when bundled, "use client" in "src/hooks/useIsMobile.ts" was ignored.
39
+ src/components/charts/bar-chart.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
40
+ src/components/charts/bar-chart.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/charts/bar-chart.tsx" was ignored.
41
+ src/components/ui/slider.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
42
+ src/components/ui/slider.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/slider.tsx" was ignored.
45
43
  src/components/ui/scroll-area.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
46
44
  src/components/ui/scroll-area.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/scroll-area.tsx" was ignored.
47
- src/components/ui/combobox.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
48
- src/components/ui/combobox.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/combobox.tsx" was ignored.
45
+ src/components/ui/label.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
46
+ src/components/ui/label.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/label.tsx" was ignored.
47
+ src/components/ui/dropdown.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
48
+ src/components/ui/dropdown.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/dropdown.tsx" was ignored.
49
49
  src/components/ui/sidebar.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
50
50
  src/components/ui/sidebar.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/sidebar.tsx" was ignored.
51
- ../../node_modules/.bun/@radix-ui+react-switch@1.2.6+b948ae7983379cde/node_modules/@radix-ui/react-switch/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-switch@1.2.6+b948ae7983379cde/node_modules/@radix-ui/react-switch/dist/index.mjs" was ignored.
51
+ src/components/ui/sheet.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
52
+ src/components/ui/sheet.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/sheet.tsx" was ignored.
53
+ src/components/ui/popover.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
54
+ src/components/ui/popover.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/popover.tsx" was ignored.
55
+ src/components/ui/tooltip.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
56
+ src/components/ui/tooltip.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/tooltip.tsx" was ignored.
57
+ src/components/charts/area-chart.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
58
+ src/components/charts/area-chart.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/charts/area-chart.tsx" was ignored.
59
+ src/components/charts/radial-chart.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
60
+ src/components/charts/radial-chart.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/charts/radial-chart.tsx" was ignored.
61
+ src/components/charts/pie-chart.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
62
+ src/components/charts/pie-chart.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/charts/pie-chart.tsx" was ignored.
52
63
  ../../node_modules/.bun/next-themes@0.4.6+dfc90389513bb65c/node_modules/next-themes/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/next-themes@0.4.6+dfc90389513bb65c/node_modules/next-themes/dist/index.mjs" was ignored.
53
- ../../node_modules/.bun/@radix-ui+react-toggle-group@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-toggle-group/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-toggle-group@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-toggle-group/dist/index.mjs" was ignored.
54
- ../../node_modules/.bun/@radix-ui+react-toggle@1.1.10+b948ae7983379cde/node_modules/@radix-ui/react-toggle/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-toggle@1.1.10+b948ae7983379cde/node_modules/@radix-ui/react-toggle/dist/index.mjs" was ignored.
64
+ ../../node_modules/.bun/@radix-ui+react-toggle-group@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-toggle-group/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-toggle-group@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-toggle-group/dist/index.mjs" was ignored.
65
+ ../../node_modules/.bun/@radix-ui+react-hover-card@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-hover-card/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-hover-card@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-hover-card/dist/index.mjs" was ignored.
66
+ ../../node_modules/.bun/@radix-ui+react-dialog@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-dialog/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-dialog@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-dialog/dist/index.mjs" was ignored.
67
+ ../../node_modules/.bun/@radix-ui+react-toggle@1.1.10+92c4888de0bf9132/node_modules/@radix-ui/react-toggle/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-toggle@1.1.10+92c4888de0bf9132/node_modules/@radix-ui/react-toggle/dist/index.mjs" was ignored.
68
+ ../../node_modules/.bun/@radix-ui+react-switch@1.2.6+92c4888de0bf9132/node_modules/@radix-ui/react-switch/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-switch@1.2.6+92c4888de0bf9132/node_modules/@radix-ui/react-switch/dist/index.mjs" was ignored.
69
+ ../../node_modules/.bun/@radix-ui+react-avatar@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-avatar/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-avatar@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-avatar/dist/index.mjs" was ignored.
55
70
  ../../node_modules/.bun/sonner@2.0.7+dfc90389513bb65c/node_modules/sonner/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/sonner@2.0.7+dfc90389513bb65c/node_modules/sonner/dist/index.mjs" was ignored.
56
- ../../node_modules/.bun/@radix-ui+react-hover-card@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-hover-card/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-hover-card@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-hover-card/dist/index.mjs" was ignored.
57
- ../../node_modules/.bun/@radix-ui+react-dropdown-menu@2.1.16+b948ae7983379cde/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-dropdown-menu@2.1.16+b948ae7983379cde/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs" was ignored.
58
- ../../node_modules/.bun/@radix-ui+react-checkbox@1.3.3+b948ae7983379cde/node_modules/@radix-ui/react-checkbox/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-checkbox@1.3.3+b948ae7983379cde/node_modules/@radix-ui/react-checkbox/dist/index.mjs" was ignored.
59
- ../../node_modules/.bun/@radix-ui+react-avatar@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-avatar/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-avatar@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-avatar/dist/index.mjs" was ignored.
60
- ../../node_modules/.bun/@radix-ui+react-select@2.2.6+b948ae7983379cde/node_modules/@radix-ui/react-select/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-select@2.2.6+b948ae7983379cde/node_modules/@radix-ui/react-select/dist/index.mjs" was ignored.
61
- ../../node_modules/.bun/@radix-ui+react-dialog@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-dialog/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-dialog@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-dialog/dist/index.mjs" was ignored.
62
- ../../node_modules/.bun/@radix-ui+react-tooltip@1.2.8+b948ae7983379cde/node_modules/@radix-ui/react-tooltip/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-tooltip@1.2.8+b948ae7983379cde/node_modules/@radix-ui/react-tooltip/dist/index.mjs" was ignored.
63
- ../../node_modules/.bun/@radix-ui+react-alert-dialog@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-alert-dialog@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs" was ignored.
64
- ../../node_modules/.bun/@radix-ui+react-slider@1.3.6+b948ae7983379cde/node_modules/@radix-ui/react-slider/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-slider@1.3.6+b948ae7983379cde/node_modules/@radix-ui/react-slider/dist/index.mjs" was ignored.
65
- ../../node_modules/.bun/@radix-ui+react-label@2.1.8+b948ae7983379cde/node_modules/@radix-ui/react-label/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-label@2.1.8+b948ae7983379cde/node_modules/@radix-ui/react-label/dist/index.mjs" was ignored.
66
- ../../node_modules/.bun/@radix-ui+react-popover@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-popover/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-popover@1.1.15+b948ae7983379cde/node_modules/@radix-ui/react-popover/dist/index.mjs" was ignored.
67
- ../../node_modules/.bun/@radix-ui+react-collapsible@1.1.12+b948ae7983379cde/node_modules/@radix-ui/react-collapsible/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-collapsible@1.1.12+b948ae7983379cde/node_modules/@radix-ui/react-collapsible/dist/index.mjs" was ignored.
68
- ../../node_modules/.bun/cmdk@1.1.1+b948ae7983379cde/node_modules/cmdk/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/cmdk@1.1.1+b948ae7983379cde/node_modules/cmdk/dist/index.mjs" was ignored.
69
- ../../node_modules/.bun/@radix-ui+react-scroll-area@1.2.10+b948ae7983379cde/node_modules/@radix-ui/react-scroll-area/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-scroll-area@1.2.10+b948ae7983379cde/node_modules/@radix-ui/react-scroll-area/dist/index.mjs" was ignored.
70
- ../../node_modules/.bun/@radix-ui+react-navigation-menu@1.2.14+b948ae7983379cde/node_modules/@radix-ui/react-navigation-menu/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-navigation-menu@1.2.14+b948ae7983379cde/node_modules/@radix-ui/react-navigation-menu/dist/index.mjs" was ignored.
71
+ ../../node_modules/.bun/@radix-ui+react-checkbox@1.3.3+92c4888de0bf9132/node_modules/@radix-ui/react-checkbox/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-checkbox@1.3.3+92c4888de0bf9132/node_modules/@radix-ui/react-checkbox/dist/index.mjs" was ignored.
71
72
  src/components/molecules/widget/base-selector.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
72
73
  src/components/molecules/widget/base-selector.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/molecules/widget/base-selector.tsx" was ignored.
73
- src/components/ui/animated-background/animated-background.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
74
- src/components/ui/animated-background/animated-background.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/animated-background/animated-background.tsx" was ignored.
75
- src/components/ui/sheet.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
76
- src/components/ui/sheet.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/sheet.tsx" was ignored.
74
+ ../../node_modules/.bun/@radix-ui+react-alert-dialog@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-alert-dialog@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-alert-dialog/dist/index.mjs" was ignored.
75
+ ../../node_modules/.bun/@radix-ui+react-collapsible@1.1.12+92c4888de0bf9132/node_modules/@radix-ui/react-collapsible/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-collapsible@1.1.12+92c4888de0bf9132/node_modules/@radix-ui/react-collapsible/dist/index.mjs" was ignored.
76
+ ../../node_modules/.bun/cmdk@1.1.1+92c4888de0bf9132/node_modules/cmdk/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/cmdk@1.1.1+92c4888de0bf9132/node_modules/cmdk/dist/index.mjs" was ignored.
77
+ ../../node_modules/.bun/@radix-ui+react-select@2.2.6+92c4888de0bf9132/node_modules/@radix-ui/react-select/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-select@2.2.6+92c4888de0bf9132/node_modules/@radix-ui/react-select/dist/index.mjs" was ignored.
78
+ ../../node_modules/.bun/@radix-ui+react-tooltip@1.2.8+92c4888de0bf9132/node_modules/@radix-ui/react-tooltip/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-tooltip@1.2.8+92c4888de0bf9132/node_modules/@radix-ui/react-tooltip/dist/index.mjs" was ignored.
79
+ ../../node_modules/.bun/@radix-ui+react-slider@1.3.6+92c4888de0bf9132/node_modules/@radix-ui/react-slider/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-slider@1.3.6+92c4888de0bf9132/node_modules/@radix-ui/react-slider/dist/index.mjs" was ignored.
80
+ ../../node_modules/.bun/@radix-ui+react-label@2.1.8+92c4888de0bf9132/node_modules/@radix-ui/react-label/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-label@2.1.8+92c4888de0bf9132/node_modules/@radix-ui/react-label/dist/index.mjs" was ignored.
81
+ ../../node_modules/.bun/@radix-ui+react-navigation-menu@1.2.14+92c4888de0bf9132/node_modules/@radix-ui/react-navigation-menu/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-navigation-menu@1.2.14+92c4888de0bf9132/node_modules/@radix-ui/react-navigation-menu/dist/index.mjs" was ignored.
82
+ ../../node_modules/.bun/@radix-ui+react-dropdown-menu@2.1.16+92c4888de0bf9132/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-dropdown-menu@2.1.16+92c4888de0bf9132/node_modules/@radix-ui/react-dropdown-menu/dist/index.mjs" was ignored.
83
+ ../../node_modules/.bun/@radix-ui+react-popover@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-popover/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-popover@1.1.15+92c4888de0bf9132/node_modules/@radix-ui/react-popover/dist/index.mjs" was ignored.
84
+ ../../node_modules/.bun/@radix-ui+react-scroll-area@1.2.10+92c4888de0bf9132/node_modules/@radix-ui/react-scroll-area/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-scroll-area@1.2.10+92c4888de0bf9132/node_modules/@radix-ui/react-scroll-area/dist/index.mjs" was ignored.
85
+ ../../node_modules/.bun/@radix-ui+react-roving-focus@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-roving-focus/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-roving-focus@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-roving-focus/dist/index.mjs" was ignored.
86
+ ../../node_modules/.bun/@radix-ui+react-popper@1.2.8+92c4888de0bf9132/node_modules/@radix-ui/react-popper/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-popper@1.2.8+92c4888de0bf9132/node_modules/@radix-ui/react-popper/dist/index.mjs" was ignored.
87
+ ../../node_modules/.bun/@radix-ui+react-portal@1.1.9+92c4888de0bf9132/node_modules/@radix-ui/react-portal/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-portal@1.1.9+92c4888de0bf9132/node_modules/@radix-ui/react-portal/dist/index.mjs" was ignored.
88
+ ../../node_modules/.bun/@radix-ui+react-presence@1.1.5+92c4888de0bf9132/node_modules/@radix-ui/react-presence/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-presence@1.1.5+92c4888de0bf9132/node_modules/@radix-ui/react-presence/dist/index.mjs" was ignored.
89
+ ../../node_modules/.bun/@radix-ui+react-dismissable-layer@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-dismissable-layer@1.1.11+92c4888de0bf9132/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs" was ignored.
90
+ ../../node_modules/.bun/@radix-ui+react-focus-scope@1.1.7+92c4888de0bf9132/node_modules/@radix-ui/react-focus-scope/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-focus-scope@1.1.7+92c4888de0bf9132/node_modules/@radix-ui/react-focus-scope/dist/index.mjs" was ignored.
91
+ ../../node_modules/.bun/@radix-ui+react-focus-guards@1.1.3+6f0851efedd0694b/node_modules/@radix-ui/react-focus-guards/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-focus-guards@1.1.3+6f0851efedd0694b/node_modules/@radix-ui/react-focus-guards/dist/index.mjs" was ignored.
77
92
  src/components/features/data-table/sort-dropdown.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
78
93
  src/components/features/data-table/sort-dropdown.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/features/data-table/sort-dropdown.tsx" was ignored.
94
+ src/components/ui/animated-background/animated-background.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
95
+ src/components/ui/animated-background/animated-background.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/ui/animated-background/animated-background.tsx" was ignored.
79
96
  src/components/features/data-table/data-table.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
80
97
  src/components/features/data-table/data-table.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/features/data-table/data-table.tsx" was ignored.
81
- ../../node_modules/.bun/@radix-ui+react-roving-focus@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-roving-focus/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-roving-focus@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-roving-focus/dist/index.mjs" was ignored.
82
- ../../node_modules/.bun/@radix-ui+react-portal@1.1.9+b948ae7983379cde/node_modules/@radix-ui/react-portal/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-portal@1.1.9+b948ae7983379cde/node_modules/@radix-ui/react-portal/dist/index.mjs" was ignored.
83
- ../../node_modules/.bun/@radix-ui+react-popper@1.2.8+b948ae7983379cde/node_modules/@radix-ui/react-popper/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-popper@1.2.8+b948ae7983379cde/node_modules/@radix-ui/react-popper/dist/index.mjs" was ignored.
84
- ../../node_modules/.bun/@radix-ui+react-presence@1.1.5+b948ae7983379cde/node_modules/@radix-ui/react-presence/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-presence@1.1.5+b948ae7983379cde/node_modules/@radix-ui/react-presence/dist/index.mjs" was ignored.
85
- ../../node_modules/.bun/@radix-ui+react-dismissable-layer@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-dismissable-layer@1.1.11+b948ae7983379cde/node_modules/@radix-ui/react-dismissable-layer/dist/index.mjs" was ignored.
86
- ../../node_modules/.bun/@radix-ui+react-menu@2.1.16+b948ae7983379cde/node_modules/@radix-ui/react-menu/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-menu@2.1.16+b948ae7983379cde/node_modules/@radix-ui/react-menu/dist/index.mjs" was ignored.
87
- ../../node_modules/.bun/@radix-ui+react-collection@1.1.7+b948ae7983379cde/node_modules/@radix-ui/react-collection/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-collection@1.1.7+b948ae7983379cde/node_modules/@radix-ui/react-collection/dist/index.mjs" was ignored.
88
- ../../node_modules/.bun/@radix-ui+react-focus-guards@1.1.3+768603811a4ef2d8/node_modules/@radix-ui/react-focus-guards/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-focus-guards@1.1.3+768603811a4ef2d8/node_modules/@radix-ui/react-focus-guards/dist/index.mjs" was ignored.
89
- ../../node_modules/.bun/@radix-ui+react-focus-scope@1.1.7+b948ae7983379cde/node_modules/@radix-ui/react-focus-scope/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-focus-scope@1.1.7+b948ae7983379cde/node_modules/@radix-ui/react-focus-scope/dist/index.mjs" was ignored.
98
+ ../../node_modules/.bun/@radix-ui+react-collection@1.1.7+92c4888de0bf9132/node_modules/@radix-ui/react-collection/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-collection@1.1.7+92c4888de0bf9132/node_modules/@radix-ui/react-collection/dist/index.mjs" was ignored.
99
+ ../../node_modules/.bun/@radix-ui+react-menu@2.1.16+92c4888de0bf9132/node_modules/@radix-ui/react-menu/dist/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@radix-ui+react-menu@2.1.16+92c4888de0bf9132/node_modules/@radix-ui/react-menu/dist/index.mjs" was ignored.
90
100
  src/components/features/data-table/sortable-header.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
91
101
  src/components/features/data-table/sortable-header.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/features/data-table/sortable-header.tsx" was ignored.
92
102
  src/components/molecules/widget/asset-list/asset-list.tsx (1:0): Error when using sourcemap for reporting an error: Can't resolve original location of error.
93
103
  src/components/molecules/widget/asset-list/asset-list.tsx (1:0): Module level directives cause errors when bundled, "use client" in "src/components/molecules/widget/asset-list/asset-list.tsx" was ignored.
94
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/index.mjs" was ignored.
95
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs" was ignored.
96
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs" was ignored.
97
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/LayoutGroup/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/LayoutGroup/index.mjs" was ignored.
98
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/LazyMotion/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/LazyMotion/index.mjs" was ignored.
99
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/MotionConfig/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/MotionConfig/index.mjs" was ignored.
100
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.mjs" was ignored.
101
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-force-update.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-force-update.mjs" was ignored.
102
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.mjs" was ignored.
103
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-unmount-effect.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-unmount-effect.mjs" was ignored.
104
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-animation.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-animation.mjs" was ignored.
105
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-max.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-max.mjs" was ignored.
106
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-min.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-min.mjs" was ignored.
107
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-motion-value-event.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-motion-value-event.mjs" was ignored.
108
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-template.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-template.mjs" was ignored.
109
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-value.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-value.mjs" was ignored.
110
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-scroll.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-scroll.mjs" was ignored.
111
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-spring.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-spring.mjs" was ignored.
112
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-time.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-time.mjs" was ignored.
113
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-transform.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-transform.mjs" was ignored.
114
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-velocity.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-velocity.mjs" was ignored.
115
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-will-change/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-will-change/index.mjs" was ignored.
116
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion.mjs" was ignored.
117
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion-config.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion-config.mjs" was ignored.
118
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate.mjs" was ignored.
119
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate-style.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate-style.mjs" was ignored.
120
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animation.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animation.mjs" was ignored.
121
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs" was ignored.
122
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence-data.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence-data.mjs" was ignored.
123
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/events/use-dom-event.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/events/use-dom-event.mjs" was ignored.
124
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-animation-frame.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-animation-frame.mjs" was ignored.
125
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-cycle.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-cycle.mjs" was ignored.
126
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-in-view.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-in-view.mjs" was ignored.
127
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-instant-transition.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-instant-transition.mjs" was ignored.
128
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-page-in-view.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-page-in-view.mjs" was ignored.
129
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/LayoutGroupContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/LayoutGroupContext.mjs" was ignored.
130
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs" was ignored.
131
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/index.mjs" was ignored.
132
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/PresenceContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/PresenceContext.mjs" was ignored.
133
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs" was ignored.
134
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animated-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animated-state.mjs" was ignored.
135
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimateSharedLayout.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimateSharedLayout.mjs" was ignored.
136
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/DeprecatedLayoutGroupContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/DeprecatedLayoutGroupContext.mjs" was ignored.
137
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-inverted-scale.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-inverted-scale.mjs" was ignored.
138
- ../../node_modules/.bun/@number-flow+react@0.5.10+dfc90389513bb65c/node_modules/@number-flow/react/dist/NumberFlow-client-48rw3j0J.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@number-flow+react@0.5.10+dfc90389513bb65c/node_modules/@number-flow/react/dist/NumberFlow-client-48rw3j0J.mjs" was ignored.
139
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-constant.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-constant.mjs" was ignored.
140
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/LazyContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/LazyContext.mjs" was ignored.
141
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-is-mounted.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-is-mounted.mjs" was ignored.
142
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-combine-values.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-combine-values.mjs" was ignored.
143
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-computed.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-computed.mjs" was ignored.
144
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Group.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Group.mjs" was ignored.
145
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Item.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Item.mjs" was ignored.
146
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/index.mjs" was ignored.
147
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs" was ignored.
148
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/ReorderContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/ReorderContext.mjs" was ignored.
149
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/create.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/create.mjs" was ignored.
150
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/use-render.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/use-render.mjs" was ignored.
151
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.mjs" was ignored.
152
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.mjs" was ignored.
153
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs" was ignored.
154
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.mjs" was ignored.
155
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-props.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-props.mjs" was ignored.
156
- ../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-props.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.23.24+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-props.mjs" was ignored.
157
- ✓ 2898 modules transformed.
104
+ ../../node_modules/.bun/@number-flow+react@0.5.14+dfc90389513bb65c/node_modules/@number-flow/react/dist/NumberFlow-client-BTpPLmzo.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/@number-flow+react@0.5.14+dfc90389513bb65c/node_modules/@number-flow/react/dist/NumberFlow-client-BTpPLmzo.mjs" was ignored.
105
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PopChild.mjs" was ignored.
106
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/index.mjs" was ignored.
107
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/LayoutGroup/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/LayoutGroup/index.mjs" was ignored.
108
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/PresenceChild.mjs" was ignored.
109
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/LazyMotion/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/LazyMotion/index.mjs" was ignored.
110
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/MotionConfig/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/MotionConfig/index.mjs" was ignored.
111
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-state.mjs" was ignored.
112
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-force-update.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-force-update.mjs" was ignored.
113
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-isomorphic-effect.mjs" was ignored.
114
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-animation.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-animation.mjs" was ignored.
115
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-unmount-effect.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-unmount-effect.mjs" was ignored.
116
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-max.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-max.mjs" was ignored.
117
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-min.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/features-min.mjs" was ignored.
118
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-motion-value-event.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-motion-value-event.mjs" was ignored.
119
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-template.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-template.mjs" was ignored.
120
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-value.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-motion-value.mjs" was ignored.
121
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-scroll.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-scroll.mjs" was ignored.
122
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-follow-value.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-follow-value.mjs" was ignored.
123
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-time.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-time.mjs" was ignored.
124
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-spring.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-spring.mjs" was ignored.
125
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-transform.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-transform.mjs" was ignored.
126
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-velocity.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-velocity.mjs" was ignored.
127
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-will-change/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-will-change/index.mjs" was ignored.
128
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion.mjs" was ignored.
129
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion-config.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/reduced-motion/use-reduced-motion-config.mjs" was ignored.
130
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate.mjs" was ignored.
131
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate-style.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animate-style.mjs" was ignored.
132
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animation.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animation.mjs" was ignored.
133
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence.mjs" was ignored.
134
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/events/use-dom-event.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/events/use-dom-event.mjs" was ignored.
135
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence-data.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimatePresence/use-presence-data.mjs" was ignored.
136
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-animation-frame.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-animation-frame.mjs" was ignored.
137
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-in-view.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-in-view.mjs" was ignored.
138
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-cycle.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-cycle.mjs" was ignored.
139
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-instant-transition.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-instant-transition.mjs" was ignored.
140
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-page-in-view.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-page-in-view.mjs" was ignored.
141
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/LayoutGroupContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/LayoutGroupContext.mjs" was ignored.
142
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionConfigContext.mjs" was ignored.
143
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/PresenceContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/PresenceContext.mjs" was ignored.
144
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/index.mjs" was ignored.
145
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/SwitchLayoutGroupContext.mjs" was ignored.
146
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animated-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/animation/hooks/use-animated-state.mjs" was ignored.
147
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimateSharedLayout.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/AnimateSharedLayout.mjs" was ignored.
148
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-inverted-scale.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-inverted-scale.mjs" was ignored.
149
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/DeprecatedLayoutGroupContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/DeprecatedLayoutGroupContext.mjs" was ignored.
150
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-constant.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-constant.mjs" was ignored.
151
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/LazyContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/LazyContext.mjs" was ignored.
152
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-is-mounted.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/utils/use-is-mounted.mjs" was ignored.
153
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-computed.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-computed.mjs" was ignored.
154
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-combine-values.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/value/use-combine-values.mjs" was ignored.
155
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Group.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Group.mjs" was ignored.
156
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Item.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/components/Reorder/Item.mjs" was ignored.
157
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/index.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/index.mjs" was ignored.
158
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/ReorderContext.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/ReorderContext.mjs" was ignored.
159
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/features/layout/MeasureLayout.mjs" was ignored.
160
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-html-visual-state.mjs" was ignored.
161
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/create.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/context/MotionContext/create.mjs" was ignored.
162
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-visual-element.mjs" was ignored.
163
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-svg-visual-state.mjs" was ignored.
164
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/motion/utils/use-motion-ref.mjs" was ignored.
165
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/use-render.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/dom/use-render.mjs" was ignored.
166
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-props.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/html/use-props.mjs" was ignored.
167
+ ../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-props.mjs (1:0): Module level directives cause errors when bundled, "use client" in "../../node_modules/.bun/framer-motion@12.34.5+0df284f047bac077/node_modules/framer-motion/dist/es/render/svg/use-props.mjs" was ignored.
168
+ ✓ 2837 modules transformed.
158
169
  rendering chunks...
159
170
  computing gzip size...
160
- dist/index.js 1,056.75 kB │ gzip: 259.88 kB │ map: 3,105.08 kB
161
- dist/index.cjs 705.38 kB │ gzip: 214.72 kB │ map: 2,990.40 kB
162
- ✓ built in 23.36s
171
+ dist/index.js 1,604.00 kB │ gzip: 389.21 kB │ map: 5,020.76 kB
172
+ dist/index.cjs 1,079.42 kB │ gzip: 320.42 kB │ map: 4,848.35 kB
173
+ ✓ built in 29.49s
163
174
  $ tsc -p .
164
175
  $ BUILD_CSS=true vite build
165
- vite v7.2.4 building client environment for production...
176
+ vite v7.3.1 building client environment for production...
166
177
  transforming...
167
178
  ✓ 1 modules transformed.
168
179
  rendering chunks...
169
180
  computing gzip size...
170
- dist/styles.css 122.88 kB │ gzip: 19.19 kB
171
- ✓ built in 595ms
181
+ dist/styles.css 124.65 kB │ gzip: 19.42 kB
182
+ ✓ built in 580ms