@cupcodev/ui 6.1.1 → 6.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -180,6 +180,7 @@ __export(src_exports, {
180
180
  DropdownMenuSubContent: () => DropdownMenuSubContent,
181
181
  DropdownMenuSubTrigger: () => DropdownMenuSubTrigger,
182
182
  DropdownMenuTrigger: () => DropdownMenuTrigger,
183
+ EXPERIENCE_SETTINGS_STORAGE_KEY: () => EXPERIENCE_SETTINGS_STORAGE_KEY,
183
184
  EmptyState: () => EmptyState,
184
185
  ErrorBoundary: () => ErrorBoundary,
185
186
  Eyebrow: () => Eyebrow,
@@ -203,6 +204,7 @@ __export(src_exports, {
203
204
  InputOTPSlot: () => InputOTPSlot,
204
205
  JellyButton: () => JellyButton,
205
206
  JellyButtonOriginal: () => JellyButtonOriginal,
207
+ LEGACY_THEME_STORAGE_KEY: () => LEGACY_THEME_STORAGE_KEY,
206
208
  Label: () => Label4,
207
209
  LoadingScreen: () => LoadingScreen,
208
210
  LoadingSpinner: () => LoadingSpinner,
@@ -319,6 +321,9 @@ __export(src_exports, {
319
321
  SonnerToaster: () => Toaster,
320
322
  Switch: () => Switch,
321
323
  SwitchField: () => SwitchField,
324
+ THEME_PREFERENCE_CHANGE_EVENT: () => THEME_PREFERENCE_CHANGE_EVENT,
325
+ THEME_PREFERENCE_STORAGE_KEY: () => THEME_PREFERENCE_STORAGE_KEY,
326
+ THEME_STORAGE_KEY: () => THEME_STORAGE_KEY,
322
327
  Table: () => Table,
323
328
  TableBody: () => TableBody,
324
329
  TableCaption: () => TableCaption,
@@ -388,12 +393,20 @@ __export(src_exports, {
388
393
  getSupabase: () => getSupabase,
389
394
  getSupabasePublic: () => getSupabasePublic,
390
395
  isRuntimeDev: () => isRuntimeDev,
396
+ isStoredThemeMode: () => isStoredThemeMode,
391
397
  navigationMenuTriggerStyle: () => navigationMenuTriggerStyle,
398
+ normalizeStoredThemePreference: () => normalizeStoredThemePreference,
392
399
  parseAssetId: () => parseAssetId,
400
+ parseStoredThemePreference: () => parseStoredThemePreference,
401
+ persistThemePreferenceSelection: () => persistThemePreferenceSelection,
393
402
  readStoredLayoutMode: () => readStoredLayoutMode,
403
+ readStoredThemeMode: () => readStoredThemeMode,
394
404
  reducer: () => reducer,
405
+ resolveAppliedThemeMode: () => resolveAppliedThemeMode,
395
406
  resolveCupcodeAppVersion: () => resolveCupcodeAppVersion,
396
407
  resolveOidcEndpoints: () => resolveOidcEndpoints,
408
+ resolveStoredThemePreference: () => resolveStoredThemePreference,
409
+ resolveSystemThemeMode: () => resolveSystemThemeMode,
397
410
  resolveTelescupImageURL: () => resolveTelescupImageURL,
398
411
  responsiveSizeClasses: () => responsiveSizeClasses,
399
412
  setCupcodeRuntimeEnv: () => setCupcodeRuntimeEnv,
@@ -6441,6 +6454,104 @@ var TelescupUpload = ({
6441
6454
  ] }) });
6442
6455
  };
6443
6456
 
6457
+ // src/lib/themePreference.ts
6458
+ var THEME_STORAGE_KEY = "cupcode-theme";
6459
+ var LEGACY_THEME_STORAGE_KEY = "theme";
6460
+ var THEME_PREFERENCE_STORAGE_KEY = "cupcode-theme-preference";
6461
+ var EXPERIENCE_SETTINGS_STORAGE_KEY = "cc_user_menu_experience_settings";
6462
+ var THEME_PREFERENCE_CHANGE_EVENT = "cupcode:theme-preference-change";
6463
+ function isStoredThemeMode(value) {
6464
+ return value === "light" || value === "dark";
6465
+ }
6466
+ function parseStoredThemePreference(value) {
6467
+ return value === "light" || value === "dark" || value === "system" ? value : null;
6468
+ }
6469
+ function normalizeStoredThemePreference(value) {
6470
+ var _a78;
6471
+ return (_a78 = parseStoredThemePreference(value)) != null ? _a78 : "system";
6472
+ }
6473
+ function readStoredThemeMode() {
6474
+ var _a78;
6475
+ if (typeof window === "undefined") return null;
6476
+ try {
6477
+ const storedTheme = (_a78 = window.localStorage.getItem(THEME_STORAGE_KEY)) != null ? _a78 : window.localStorage.getItem(LEGACY_THEME_STORAGE_KEY);
6478
+ return isStoredThemeMode(storedTheme) ? storedTheme : null;
6479
+ } catch (e) {
6480
+ return null;
6481
+ }
6482
+ }
6483
+ function resolveSystemThemeMode() {
6484
+ if (typeof window !== "undefined" && window.matchMedia("(prefers-color-scheme: dark)").matches) {
6485
+ return "dark";
6486
+ }
6487
+ return "light";
6488
+ }
6489
+ function resolveAppliedThemeMode(preference) {
6490
+ return preference === "system" ? resolveSystemThemeMode() : preference;
6491
+ }
6492
+ function readStoredExperienceSettingsRecord() {
6493
+ if (typeof window === "undefined") return null;
6494
+ try {
6495
+ const raw = window.localStorage.getItem(EXPERIENCE_SETTINGS_STORAGE_KEY);
6496
+ if (!raw) return null;
6497
+ const parsed = JSON.parse(raw);
6498
+ if (!parsed || typeof parsed !== "object" || Array.isArray(parsed)) {
6499
+ return null;
6500
+ }
6501
+ return parsed;
6502
+ } catch (e) {
6503
+ return null;
6504
+ }
6505
+ }
6506
+ function persistThemePreferenceSelection(preference) {
6507
+ if (typeof window === "undefined") return;
6508
+ const appliedMode = resolveAppliedThemeMode(preference);
6509
+ try {
6510
+ window.localStorage.setItem(THEME_PREFERENCE_STORAGE_KEY, preference);
6511
+ window.localStorage.setItem(THEME_STORAGE_KEY, appliedMode);
6512
+ window.localStorage.setItem(LEGACY_THEME_STORAGE_KEY, appliedMode);
6513
+ const currentExperienceSettings = readStoredExperienceSettingsRecord();
6514
+ window.localStorage.setItem(
6515
+ EXPERIENCE_SETTINGS_STORAGE_KEY,
6516
+ JSON.stringify({
6517
+ ...currentExperienceSettings != null ? currentExperienceSettings : {},
6518
+ theme: preference
6519
+ })
6520
+ );
6521
+ } catch (e) {
6522
+ }
6523
+ window.dispatchEvent(
6524
+ new CustomEvent(THEME_PREFERENCE_CHANGE_EVENT, {
6525
+ detail: {
6526
+ appliedMode,
6527
+ preference
6528
+ }
6529
+ })
6530
+ );
6531
+ }
6532
+ function resolveStoredThemePreference(experienceSettingsTheme) {
6533
+ var _a78;
6534
+ if (typeof window === "undefined") {
6535
+ return normalizeStoredThemePreference(experienceSettingsTheme);
6536
+ }
6537
+ try {
6538
+ const storedThemePreference = parseStoredThemePreference(
6539
+ window.localStorage.getItem(THEME_PREFERENCE_STORAGE_KEY)
6540
+ );
6541
+ if (storedThemePreference) {
6542
+ return storedThemePreference;
6543
+ }
6544
+ const parsedExperienceTheme = parseStoredThemePreference(experienceSettingsTheme);
6545
+ const storedThemeMode = readStoredThemeMode();
6546
+ if (parsedExperienceTheme === "system" && storedThemeMode) {
6547
+ return storedThemeMode;
6548
+ }
6549
+ return (_a78 = parsedExperienceTheme != null ? parsedExperienceTheme : storedThemeMode) != null ? _a78 : "system";
6550
+ } catch (e) {
6551
+ return normalizeStoredThemePreference(experienceSettingsTheme);
6552
+ }
6553
+ }
6554
+
6444
6555
  // src/components/cupcode/UserMenuCupcode.tsx
6445
6556
  var import_jsx_runtime35 = require("react/jsx-runtime");
6446
6557
  var PRESENCE_META = {
@@ -6530,12 +6641,9 @@ var CHAT_DELETED_PLACEHOLDER_TEXT = "Mensagem deletada";
6530
6641
  var CHAT_GROUP_PREFIX = "local-group";
6531
6642
  var NOTIFICATIONS_VISIBLE_LIMIT = 8;
6532
6643
  var CHAT_SETTINGS_STORAGE_KEY = "cc_user_menu_chat_settings";
6533
- var EXPERIENCE_SETTINGS_STORAGE_KEY = "cc_user_menu_experience_settings";
6644
+ var EXPERIENCE_SETTINGS_STORAGE_KEY2 = "cc_user_menu_experience_settings";
6534
6645
  var NOTIFICATION_PREFERENCES_STORAGE_KEY = "cc_user_menu_notification_preferences";
6535
6646
  var INTEGRATION_SETTINGS_STORAGE_KEY = "cc_user_menu_integration_connections";
6536
- var THEME_PREFERENCE_STORAGE_KEY = "cupcode-theme-preference";
6537
- var THEME_STORAGE_KEY = "cupcode-theme";
6538
- var LEGACY_THEME_STORAGE_KEY = "theme";
6539
6647
  var SHARED_FILE_URL_REGEX = /https?:\/\/[^\s]+/gi;
6540
6648
  var SHARED_FILE_EXTENSIONS = [
6541
6649
  ".pdf",
@@ -6712,12 +6820,6 @@ var defaultExperienceSettings = () => ({
6712
6820
  contrast: "normal",
6713
6821
  showEmailPublicly: true
6714
6822
  });
6715
- var normalizeThemePreference = (value) => {
6716
- const normalized = value == null ? void 0 : value.trim().toLowerCase();
6717
- if (normalized === "light") return "light";
6718
- if (normalized === "dark") return "dark";
6719
- return "system";
6720
- };
6721
6823
  var normalizeDensityMode = (value) => {
6722
6824
  return (value == null ? void 0 : value.trim().toLowerCase()) === "comfortable" ? "comfortable" : "compact";
6723
6825
  };
@@ -6725,16 +6827,13 @@ var normalizeContrastMode = (value) => {
6725
6827
  return (value == null ? void 0 : value.trim().toLowerCase()) === "high" ? "high" : "normal";
6726
6828
  };
6727
6829
  var readStoredExperienceSettings = () => {
6728
- var _a78, _b7, _c;
6729
6830
  const fallback = defaultExperienceSettings();
6730
6831
  if (typeof window === "undefined") return fallback;
6731
6832
  try {
6732
- const raw = window.localStorage.getItem(EXPERIENCE_SETTINGS_STORAGE_KEY);
6833
+ const raw = window.localStorage.getItem(EXPERIENCE_SETTINGS_STORAGE_KEY2);
6733
6834
  const parsed = raw ? JSON.parse(raw) : null;
6734
- const storedThemePreference = window.localStorage.getItem(THEME_PREFERENCE_STORAGE_KEY);
6735
- const legacyTheme = (_a78 = window.localStorage.getItem(THEME_STORAGE_KEY)) != null ? _a78 : window.localStorage.getItem(LEGACY_THEME_STORAGE_KEY);
6736
6835
  return {
6737
- theme: normalizeThemePreference((_c = (_b7 = parsed == null ? void 0 : parsed.theme) != null ? _b7 : storedThemePreference) != null ? _c : legacyTheme),
6836
+ theme: resolveStoredThemePreference(parsed == null ? void 0 : parsed.theme),
6738
6837
  density: normalizeDensityMode(parsed == null ? void 0 : parsed.density),
6739
6838
  contrast: normalizeContrastMode(parsed == null ? void 0 : parsed.contrast),
6740
6839
  showEmailPublicly: typeof (parsed == null ? void 0 : parsed.showEmailPublicly) === "boolean" ? parsed.showEmailPublicly : fallback.showEmailPublicly
@@ -6746,7 +6845,7 @@ var readStoredExperienceSettings = () => {
6746
6845
  var persistExperienceSettings = (settings) => {
6747
6846
  if (typeof window === "undefined") return;
6748
6847
  try {
6749
- window.localStorage.setItem(EXPERIENCE_SETTINGS_STORAGE_KEY, JSON.stringify(settings));
6848
+ window.localStorage.setItem(EXPERIENCE_SETTINGS_STORAGE_KEY2, JSON.stringify(settings));
6750
6849
  } catch (e) {
6751
6850
  }
6752
6851
  };
@@ -6778,15 +6877,6 @@ var persistIntegrationConnections = (connections) => {
6778
6877
  } catch (e) {
6779
6878
  }
6780
6879
  };
6781
- var resolveSystemThemeMode = () => {
6782
- if (typeof window !== "undefined" && window.matchMedia("(prefers-color-scheme: dark)").matches) {
6783
- return "dark";
6784
- }
6785
- return "light";
6786
- };
6787
- var resolveAppliedThemeMode = (preference) => {
6788
- return preference === "system" ? resolveSystemThemeMode() : preference;
6789
- };
6790
6880
  var applyThemePreference = (preference) => {
6791
6881
  if (typeof document === "undefined") return;
6792
6882
  const root = document.documentElement;
@@ -6796,13 +6886,7 @@ var applyThemePreference = (preference) => {
6796
6886
  root.dataset.theme = appliedMode;
6797
6887
  root.dataset.cupcodeTheme = preference;
6798
6888
  root.style.colorScheme = appliedMode;
6799
- if (typeof window === "undefined") return;
6800
- try {
6801
- window.localStorage.setItem(THEME_PREFERENCE_STORAGE_KEY, preference);
6802
- window.localStorage.setItem(THEME_STORAGE_KEY, appliedMode);
6803
- window.localStorage.setItem(LEGACY_THEME_STORAGE_KEY, appliedMode);
6804
- } catch (e) {
6805
- }
6889
+ persistThemePreferenceSelection(preference);
6806
6890
  };
6807
6891
  var applyAccessibilityAttributes = (settings) => {
6808
6892
  if (typeof document === "undefined") return;
@@ -7607,6 +7691,17 @@ var UserMenuCupcode = ({
7607
7691
  (0, import_react15.useEffect)(() => {
7608
7692
  applyThemePreference(experienceSettings.theme);
7609
7693
  }, [experienceSettings.theme]);
7694
+ (0, import_react15.useEffect)(() => {
7695
+ if (typeof window === "undefined") return;
7696
+ const syncThemePreference = () => {
7697
+ const nextThemePreference = resolveStoredThemePreference();
7698
+ setExperienceSettings(
7699
+ (current) => current.theme === nextThemePreference ? current : { ...current, theme: nextThemePreference }
7700
+ );
7701
+ };
7702
+ window.addEventListener(THEME_PREFERENCE_CHANGE_EVENT, syncThemePreference);
7703
+ return () => window.removeEventListener(THEME_PREFERENCE_CHANGE_EVENT, syncThemePreference);
7704
+ }, []);
7610
7705
  (0, import_react15.useEffect)(() => {
7611
7706
  applyAccessibilityAttributes(experienceSettings);
7612
7707
  }, [experienceSettings]);
@@ -22313,7 +22408,7 @@ function ThemeToggle({ className }) {
22313
22408
  /* @__PURE__ */ (0, import_jsx_runtime38.jsx)("style", { children: `
22314
22409
  :root {
22315
22410
  --toggle-width: 76px;
22316
- --toggle-height: 42px;
22411
+ --toggle-height: 38px;
22317
22412
  --thumb-size: 30px;
22318
22413
  --toggle-thumb-offset: 34px;
22319
22414
  --duration: 560ms;
@@ -22468,7 +22563,7 @@ function ThemeToggle({ className }) {
22468
22563
 
22469
22564
  .cc-theme-toggle .thumb {
22470
22565
  position: absolute;
22471
- top: 6px;
22566
+ top: 4px;
22472
22567
  left: 6px;
22473
22568
  width: var(--thumb-size);
22474
22569
  height: var(--thumb-size);
@@ -26357,35 +26452,48 @@ var ThemeToggle2 = ({
26357
26452
  onThemeChange
26358
26453
  }) => {
26359
26454
  var _a78;
26455
+ const themeContext = React33.useContext(ThemeContext);
26360
26456
  const [mounted, setMounted] = React33.useState(false);
26361
26457
  const [internalTheme, setInternalTheme] = React33.useState(defaultTheme);
26362
26458
  const isControlled = typeof theme !== "undefined";
26363
- const activeTheme = (_a78 = isControlled ? theme : internalTheme) != null ? _a78 : defaultTheme;
26459
+ const usesProviderTheme = !isControlled && themeContext !== null;
26460
+ const activeTheme = (_a78 = isControlled ? theme : usesProviderTheme ? themeContext.theme : internalTheme) != null ? _a78 : defaultTheme;
26364
26461
  React33.useEffect(() => {
26365
- if (!isControlled) {
26462
+ if (!isControlled && !usesProviderTheme) {
26366
26463
  setInternalTheme(resolveTheme(defaultTheme));
26367
26464
  }
26368
26465
  setMounted(true);
26369
- }, [defaultTheme, isControlled]);
26466
+ }, [defaultTheme, isControlled, usesProviderTheme]);
26370
26467
  React33.useEffect(() => {
26371
- if (!mounted) return;
26468
+ if (!mounted || usesProviderTheme) return;
26372
26469
  applyThemeClass(activeTheme);
26373
26470
  writeStoredTheme(activeTheme);
26374
- }, [activeTheme, mounted]);
26471
+ }, [activeTheme, mounted, usesProviderTheme]);
26375
26472
  React33.useEffect(() => {
26376
- if (isControlled || typeof document === "undefined") return;
26473
+ if (isControlled || usesProviderTheme || typeof document === "undefined") return;
26377
26474
  const observer = new MutationObserver(() => {
26378
26475
  const resolvedTheme = resolveTheme(defaultTheme);
26379
26476
  setInternalTheme((currentTheme) => currentTheme === resolvedTheme ? currentTheme : resolvedTheme);
26380
26477
  });
26381
26478
  observer.observe(document.documentElement, { attributes: true, attributeFilter: ["class", "data-theme"] });
26382
26479
  return () => observer.disconnect();
26383
- }, [defaultTheme, isControlled]);
26480
+ }, [defaultTheme, isControlled, usesProviderTheme]);
26384
26481
  if (!mounted) {
26385
26482
  return /* @__PURE__ */ (0, import_jsx_runtime57.jsx)("div", { className: cn("w-10 h-10 rounded-lg bg-muted", className) });
26386
26483
  }
26387
- const handleToggle = () => {
26388
- const nextTheme = activeTheme === "dark" ? "light" : "dark";
26484
+ const handleToggle = (event) => {
26485
+ var _a79;
26486
+ const currentTheme = (_a79 = readThemeFromRoot()) != null ? _a79 : activeTheme;
26487
+ const nextTheme = currentTheme === "dark" ? "light" : "dark";
26488
+ if (usesProviderTheme) {
26489
+ themeContext.toggleTheme({
26490
+ x: event.clientX,
26491
+ y: event.clientY
26492
+ });
26493
+ onThemeChange == null ? void 0 : onThemeChange(nextTheme);
26494
+ return;
26495
+ }
26496
+ persistThemePreferenceSelection(nextTheme);
26389
26497
  if (!isControlled) {
26390
26498
  setInternalTheme(nextTheme);
26391
26499
  }
@@ -26481,8 +26589,14 @@ function ThemeProvider({ children }) {
26481
26589
  if (!mounted) {
26482
26590
  return;
26483
26591
  }
26484
- persistTheme(theme);
26485
- applyThemeToRoot(theme);
26592
+ const rootTheme = getThemeFromRoot();
26593
+ if (rootTheme !== theme) {
26594
+ applyThemeToRoot(theme);
26595
+ }
26596
+ const storedTheme = getStoredTheme();
26597
+ if (storedTheme !== theme) {
26598
+ persistTheme(theme);
26599
+ }
26486
26600
  }, [mounted, theme]);
26487
26601
  (0, import_react24.useEffect)(() => {
26488
26602
  if (typeof window === "undefined") {
@@ -26518,35 +26632,47 @@ function ThemeProvider({ children }) {
26518
26632
  });
26519
26633
  return () => observer.disconnect();
26520
26634
  }, []);
26521
- const setTheme = (0, import_react24.useCallback)((nextTheme) => {
26522
- setThemeState(nextTheme);
26523
- }, []);
26524
- const toggleTheme = (0, import_react24.useCallback)((coords) => {
26635
+ const applyThemeSelection = (0, import_react24.useCallback)((nextTheme, coords) => {
26525
26636
  var _a78;
26526
26637
  const documentWithTransition = document;
26638
+ const root = document.documentElement;
26527
26639
  const prefersReducedMotion = window.matchMedia(
26528
26640
  "(prefers-reduced-motion: reduce)"
26529
26641
  ).matches;
26530
26642
  const supportsTransition = typeof documentWithTransition.startViewTransition === "function";
26531
- const flipTheme = () => {
26643
+ const commitTheme = () => {
26644
+ applyThemeToRoot(nextTheme);
26645
+ persistThemePreferenceSelection(nextTheme);
26532
26646
  setThemeState(
26533
- (currentTheme) => currentTheme === "light" ? "dark" : "light"
26647
+ (currentTheme) => currentTheme === nextTheme ? currentTheme : nextTheme
26534
26648
  );
26535
26649
  };
26536
- if (coords) {
26537
- document.documentElement.style.setProperty("--theme-x", `${coords.x}px`);
26538
- document.documentElement.style.setProperty("--theme-y", `${coords.y}px`);
26539
- }
26540
26650
  if (!supportsTransition || prefersReducedMotion) {
26541
- flipTheme();
26651
+ commitTheme();
26542
26652
  return;
26543
26653
  }
26654
+ if (coords) {
26655
+ root.style.setProperty("--theme-x", `${coords.x}px`);
26656
+ root.style.setProperty("--theme-y", `${coords.y}px`);
26657
+ } else {
26658
+ root.style.setProperty("--theme-x", "50%");
26659
+ root.style.setProperty("--theme-y", "50%");
26660
+ }
26544
26661
  (_a78 = documentWithTransition.startViewTransition) == null ? void 0 : _a78.call(documentWithTransition, () => {
26545
26662
  (0, import_react_dom.flushSync)(() => {
26546
- flipTheme();
26663
+ commitTheme();
26547
26664
  });
26548
26665
  });
26549
26666
  }, []);
26667
+ const setTheme = (0, import_react24.useCallback)((nextTheme) => {
26668
+ applyThemeSelection(nextTheme);
26669
+ }, [applyThemeSelection]);
26670
+ const toggleTheme = (0, import_react24.useCallback)((coords) => {
26671
+ var _a78;
26672
+ const currentTheme = (_a78 = getThemeFromRoot()) != null ? _a78 : theme;
26673
+ const nextTheme = currentTheme === "light" ? "dark" : "light";
26674
+ applyThemeSelection(nextTheme, coords);
26675
+ }, [applyThemeSelection, theme]);
26550
26676
  const value = (0, import_react24.useMemo)(
26551
26677
  () => ({
26552
26678
  theme,
@@ -26738,13 +26864,13 @@ var VideoWatchButton = import_react25.default.forwardRef(
26738
26864
  VideoWatchButton.displayName = "VideoWatchButton";
26739
26865
 
26740
26866
  // src/components/cupcode/TooltipCupcode.tsx
26741
- var React36 = __toESM(require("react"), 1);
26867
+ var React35 = __toESM(require("react"), 1);
26742
26868
  var TooltipPrimitive2 = __toESM(require("@radix-ui/react-tooltip"), 1);
26743
26869
  var import_jsx_runtime62 = require("react/jsx-runtime");
26744
26870
  var TooltipProvider2 = TooltipPrimitive2.Provider;
26745
26871
  var TooltipCupcode = TooltipPrimitive2.Root;
26746
26872
  var TooltipTrigger2 = TooltipPrimitive2.Trigger;
26747
- var TooltipContent2 = React36.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
26873
+ var TooltipContent2 = React35.forwardRef(({ className, sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime62.jsx)(
26748
26874
  TooltipPrimitive2.Content,
26749
26875
  {
26750
26876
  ref,
@@ -26765,14 +26891,14 @@ var TooltipContent2 = React36.forwardRef(({ className, sideOffset = 4, ...props
26765
26891
  TooltipContent2.displayName = TooltipPrimitive2.Content.displayName;
26766
26892
 
26767
26893
  // src/components/ui/accordion.tsx
26768
- var React37 = __toESM(require("react"), 1);
26894
+ var React36 = __toESM(require("react"), 1);
26769
26895
  var AccordionPrimitive2 = __toESM(require("@radix-ui/react-accordion"), 1);
26770
26896
  var import_lucide_react18 = require("lucide-react");
26771
26897
  var import_jsx_runtime63 = require("react/jsx-runtime");
26772
26898
  var Accordion = AccordionPrimitive2.Root;
26773
- var AccordionItem2 = React37.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(AccordionPrimitive2.Item, { ref, className: cn("border-b", className), ...props }));
26899
+ var AccordionItem2 = React36.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(AccordionPrimitive2.Item, { ref, className: cn("border-b", className), ...props }));
26774
26900
  AccordionItem2.displayName = "AccordionItem";
26775
- var AccordionTrigger2 = React37.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(AccordionPrimitive2.Header, { className: "flex", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
26901
+ var AccordionTrigger2 = React36.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(AccordionPrimitive2.Header, { className: "flex", children: /* @__PURE__ */ (0, import_jsx_runtime63.jsxs)(
26776
26902
  AccordionPrimitive2.Trigger,
26777
26903
  {
26778
26904
  ref,
@@ -26788,7 +26914,7 @@ var AccordionTrigger2 = React37.forwardRef(({ className, children, ...props }, r
26788
26914
  }
26789
26915
  ) }));
26790
26916
  AccordionTrigger2.displayName = AccordionPrimitive2.Trigger.displayName;
26791
- var AccordionContent2 = React37.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
26917
+ var AccordionContent2 = React36.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime63.jsx)(
26792
26918
  AccordionPrimitive2.Content,
26793
26919
  {
26794
26920
  ref,
@@ -26800,7 +26926,7 @@ var AccordionContent2 = React37.forwardRef(({ className, children, ...props }, r
26800
26926
  AccordionContent2.displayName = AccordionPrimitive2.Content.displayName;
26801
26927
 
26802
26928
  // src/components/ui/alert.tsx
26803
- var React38 = __toESM(require("react"), 1);
26929
+ var React37 = __toESM(require("react"), 1);
26804
26930
  var import_class_variance_authority3 = require("class-variance-authority");
26805
26931
  var import_jsx_runtime64 = require("react/jsx-runtime");
26806
26932
  var alertVariants = (0, import_class_variance_authority3.cva)(
@@ -26817,13 +26943,13 @@ var alertVariants = (0, import_class_variance_authority3.cva)(
26817
26943
  }
26818
26944
  }
26819
26945
  );
26820
- var Alert = React38.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { ref, role: "alert", className: cn(alertVariants({ variant }), className), ...props }));
26946
+ var Alert = React37.forwardRef(({ className, variant, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { ref, role: "alert", className: cn(alertVariants({ variant }), className), ...props }));
26821
26947
  Alert.displayName = "Alert";
26822
- var AlertTitle = React38.forwardRef(
26948
+ var AlertTitle = React37.forwardRef(
26823
26949
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("h5", { ref, className: cn("mb-1 font-medium leading-none tracking-tight", className), ...props })
26824
26950
  );
26825
26951
  AlertTitle.displayName = "AlertTitle";
26826
- var AlertDescription = React38.forwardRef(
26952
+ var AlertDescription = React37.forwardRef(
26827
26953
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime64.jsx)("div", { ref, className: cn("text-sm [&_p]:leading-relaxed", className), ...props })
26828
26954
  );
26829
26955
  AlertDescription.displayName = "AlertDescription";
@@ -26833,13 +26959,13 @@ var AspectRatioPrimitive = __toESM(require("@radix-ui/react-aspect-ratio"), 1);
26833
26959
  var AspectRatio = AspectRatioPrimitive.Root;
26834
26960
 
26835
26961
  // src/components/ui/breadcrumb.tsx
26836
- var React39 = __toESM(require("react"), 1);
26962
+ var React38 = __toESM(require("react"), 1);
26837
26963
  var import_react_slot2 = require("@radix-ui/react-slot");
26838
26964
  var import_lucide_react19 = require("lucide-react");
26839
26965
  var import_jsx_runtime65 = require("react/jsx-runtime");
26840
- var Breadcrumb = React39.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("nav", { ref, "aria-label": "breadcrumb", ...props }));
26966
+ var Breadcrumb = React38.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("nav", { ref, "aria-label": "breadcrumb", ...props }));
26841
26967
  Breadcrumb.displayName = "Breadcrumb";
26842
- var BreadcrumbList = React39.forwardRef(
26968
+ var BreadcrumbList = React38.forwardRef(
26843
26969
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
26844
26970
  "ol",
26845
26971
  {
@@ -26853,16 +26979,16 @@ var BreadcrumbList = React39.forwardRef(
26853
26979
  )
26854
26980
  );
26855
26981
  BreadcrumbList.displayName = "BreadcrumbList";
26856
- var BreadcrumbItem = React39.forwardRef(
26982
+ var BreadcrumbItem = React38.forwardRef(
26857
26983
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)("li", { ref, className: cn("inline-flex items-center gap-1.5", className), ...props })
26858
26984
  );
26859
26985
  BreadcrumbItem.displayName = "BreadcrumbItem";
26860
- var BreadcrumbLink = React39.forwardRef(({ asChild, className, ...props }, ref) => {
26986
+ var BreadcrumbLink = React38.forwardRef(({ asChild, className, ...props }, ref) => {
26861
26987
  const Comp = asChild ? import_react_slot2.Slot : "a";
26862
26988
  return /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(Comp, { ref, className: cn("transition-colors hover:text-foreground", className), ...props });
26863
26989
  });
26864
26990
  BreadcrumbLink.displayName = "BreadcrumbLink";
26865
- var BreadcrumbPage = React39.forwardRef(
26991
+ var BreadcrumbPage = React38.forwardRef(
26866
26992
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime65.jsx)(
26867
26993
  "span",
26868
26994
  {
@@ -26945,45 +27071,45 @@ function Calendar({ className, classNames, showOutsideDays = true, ...props }) {
26945
27071
  Calendar.displayName = "Calendar";
26946
27072
 
26947
27073
  // src/components/ui/card.tsx
26948
- var React40 = __toESM(require("react"), 1);
27074
+ var React39 = __toESM(require("react"), 1);
26949
27075
  var import_jsx_runtime67 = require("react/jsx-runtime");
26950
- var Card = React40.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { ref, className: cn("rounded-lg border bg-card text-card-foreground shadow-sm", className), ...props }));
27076
+ var Card = React39.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { ref, className: cn("rounded-lg border bg-card text-card-foreground shadow-sm", className), ...props }));
26951
27077
  Card.displayName = "Card";
26952
- var CardHeader = React40.forwardRef(
27078
+ var CardHeader = React39.forwardRef(
26953
27079
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { ref, className: cn("flex flex-col space-y-1.5 p-6", className), ...props })
26954
27080
  );
26955
27081
  CardHeader.displayName = "CardHeader";
26956
- var CardTitle = React40.forwardRef(
27082
+ var CardTitle = React39.forwardRef(
26957
27083
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("h3", { ref, className: cn("text-2xl font-semibold leading-none tracking-tight", className), ...props })
26958
27084
  );
26959
27085
  CardTitle.displayName = "CardTitle";
26960
- var CardDescription = React40.forwardRef(
27086
+ var CardDescription = React39.forwardRef(
26961
27087
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("p", { ref, className: cn("text-sm text-muted-foreground", className), ...props })
26962
27088
  );
26963
27089
  CardDescription.displayName = "CardDescription";
26964
- var CardContent = React40.forwardRef(
27090
+ var CardContent = React39.forwardRef(
26965
27091
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { ref, className: cn("p-6 pt-0", className), ...props })
26966
27092
  );
26967
27093
  CardContent.displayName = "CardContent";
26968
- var CardFooter = React40.forwardRef(
27094
+ var CardFooter = React39.forwardRef(
26969
27095
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime67.jsx)("div", { ref, className: cn("flex items-center p-6 pt-0", className), ...props })
26970
27096
  );
26971
27097
  CardFooter.displayName = "CardFooter";
26972
27098
 
26973
27099
  // src/components/ui/carousel.tsx
26974
- var React41 = __toESM(require("react"), 1);
27100
+ var React40 = __toESM(require("react"), 1);
26975
27101
  var import_embla_carousel_react = __toESM(require("embla-carousel-react"), 1);
26976
27102
  var import_lucide_react21 = require("lucide-react");
26977
27103
  var import_jsx_runtime68 = require("react/jsx-runtime");
26978
- var CarouselContext = React41.createContext(null);
27104
+ var CarouselContext = React40.createContext(null);
26979
27105
  function useCarousel() {
26980
- const context = React41.useContext(CarouselContext);
27106
+ const context = React40.useContext(CarouselContext);
26981
27107
  if (!context) {
26982
27108
  throw new Error("useCarousel must be used within a <Carousel />");
26983
27109
  }
26984
27110
  return context;
26985
27111
  }
26986
- var Carousel = React41.forwardRef(
27112
+ var Carousel = React40.forwardRef(
26987
27113
  ({ orientation = "horizontal", opts, setApi, plugins, className, children, ...props }, ref) => {
26988
27114
  const [carouselRef, api] = (0, import_embla_carousel_react.default)(
26989
27115
  {
@@ -26992,22 +27118,22 @@ var Carousel = React41.forwardRef(
26992
27118
  },
26993
27119
  plugins
26994
27120
  );
26995
- const [canScrollPrev, setCanScrollPrev] = React41.useState(false);
26996
- const [canScrollNext, setCanScrollNext] = React41.useState(false);
26997
- const onSelect = React41.useCallback((api2) => {
27121
+ const [canScrollPrev, setCanScrollPrev] = React40.useState(false);
27122
+ const [canScrollNext, setCanScrollNext] = React40.useState(false);
27123
+ const onSelect = React40.useCallback((api2) => {
26998
27124
  if (!api2) {
26999
27125
  return;
27000
27126
  }
27001
27127
  setCanScrollPrev(api2.canScrollPrev());
27002
27128
  setCanScrollNext(api2.canScrollNext());
27003
27129
  }, []);
27004
- const scrollPrev = React41.useCallback(() => {
27130
+ const scrollPrev = React40.useCallback(() => {
27005
27131
  api == null ? void 0 : api.scrollPrev();
27006
27132
  }, [api]);
27007
- const scrollNext = React41.useCallback(() => {
27133
+ const scrollNext = React40.useCallback(() => {
27008
27134
  api == null ? void 0 : api.scrollNext();
27009
27135
  }, [api]);
27010
- const handleKeyDown = React41.useCallback(
27136
+ const handleKeyDown = React40.useCallback(
27011
27137
  (event) => {
27012
27138
  if (event.key === "ArrowLeft") {
27013
27139
  event.preventDefault();
@@ -27019,13 +27145,13 @@ var Carousel = React41.forwardRef(
27019
27145
  },
27020
27146
  [scrollPrev, scrollNext]
27021
27147
  );
27022
- React41.useEffect(() => {
27148
+ React40.useEffect(() => {
27023
27149
  if (!api || !setApi) {
27024
27150
  return;
27025
27151
  }
27026
27152
  setApi(api);
27027
27153
  }, [api, setApi]);
27028
- React41.useEffect(() => {
27154
+ React40.useEffect(() => {
27029
27155
  if (!api) {
27030
27156
  return;
27031
27157
  }
@@ -27066,7 +27192,7 @@ var Carousel = React41.forwardRef(
27066
27192
  }
27067
27193
  );
27068
27194
  Carousel.displayName = "Carousel";
27069
- var CarouselContent = React41.forwardRef(
27195
+ var CarouselContent = React40.forwardRef(
27070
27196
  ({ className, ...props }, ref) => {
27071
27197
  const { carouselRef, orientation } = useCarousel();
27072
27198
  return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)("div", { ref: carouselRef, className: "overflow-hidden", children: /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
@@ -27080,7 +27206,7 @@ var CarouselContent = React41.forwardRef(
27080
27206
  }
27081
27207
  );
27082
27208
  CarouselContent.displayName = "CarouselContent";
27083
- var CarouselItem = React41.forwardRef(
27209
+ var CarouselItem = React40.forwardRef(
27084
27210
  ({ className, ...props }, ref) => {
27085
27211
  const { orientation } = useCarousel();
27086
27212
  return /* @__PURE__ */ (0, import_jsx_runtime68.jsx)(
@@ -27096,7 +27222,7 @@ var CarouselItem = React41.forwardRef(
27096
27222
  }
27097
27223
  );
27098
27224
  CarouselItem.displayName = "CarouselItem";
27099
- var CarouselPrevious = React41.forwardRef(
27225
+ var CarouselPrevious = React40.forwardRef(
27100
27226
  ({ className, variant = "outline", size = "icon", ...props }, ref) => {
27101
27227
  const { orientation, scrollPrev, canScrollPrev } = useCarousel();
27102
27228
  return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
@@ -27122,7 +27248,7 @@ var CarouselPrevious = React41.forwardRef(
27122
27248
  }
27123
27249
  );
27124
27250
  CarouselPrevious.displayName = "CarouselPrevious";
27125
- var CarouselNext = React41.forwardRef(
27251
+ var CarouselNext = React40.forwardRef(
27126
27252
  ({ className, variant = "outline", size = "icon", ...props }, ref) => {
27127
27253
  const { orientation, scrollNext, canScrollNext } = useCarousel();
27128
27254
  return /* @__PURE__ */ (0, import_jsx_runtime68.jsxs)(
@@ -27150,20 +27276,20 @@ var CarouselNext = React41.forwardRef(
27150
27276
  CarouselNext.displayName = "CarouselNext";
27151
27277
 
27152
27278
  // src/components/ui/chart.tsx
27153
- var React42 = __toESM(require("react"), 1);
27279
+ var React41 = __toESM(require("react"), 1);
27154
27280
  var RechartsPrimitive = __toESM(require("recharts"), 1);
27155
27281
  var import_jsx_runtime69 = require("react/jsx-runtime");
27156
27282
  var THEMES = { light: "", dark: ".dark" };
27157
- var ChartContext = React42.createContext(null);
27283
+ var ChartContext = React41.createContext(null);
27158
27284
  function useChart() {
27159
- const context = React42.useContext(ChartContext);
27285
+ const context = React41.useContext(ChartContext);
27160
27286
  if (!context) {
27161
27287
  throw new Error("useChart must be used within a <ChartContainer />");
27162
27288
  }
27163
27289
  return context;
27164
27290
  }
27165
- var ChartContainer = React42.forwardRef(({ id, className, children, config, ...props }, ref) => {
27166
- const uniqueId = React42.useId();
27291
+ var ChartContainer = React41.forwardRef(({ id, className, children, config, ...props }, ref) => {
27292
+ const uniqueId = React41.useId();
27167
27293
  const chartId = `chart-${id || uniqueId.replace(/:/g, "")}`;
27168
27294
  return /* @__PURE__ */ (0, import_jsx_runtime69.jsx)(ChartContext.Provider, { value: { config }, children: /* @__PURE__ */ (0, import_jsx_runtime69.jsxs)(
27169
27295
  "div",
@@ -27208,7 +27334,7 @@ ${colorConfig.map(([key, itemConfig]) => {
27208
27334
  );
27209
27335
  };
27210
27336
  var ChartTooltip = RechartsPrimitive.Tooltip;
27211
- var ChartTooltipContent = React42.forwardRef(
27337
+ var ChartTooltipContent = React41.forwardRef(
27212
27338
  ({
27213
27339
  active,
27214
27340
  payload,
@@ -27225,7 +27351,7 @@ var ChartTooltipContent = React42.forwardRef(
27225
27351
  labelKey
27226
27352
  }, ref) => {
27227
27353
  const { config } = useChart();
27228
- const tooltipLabel = React42.useMemo(() => {
27354
+ const tooltipLabel = React41.useMemo(() => {
27229
27355
  var _a78;
27230
27356
  if (hideLabel || !(payload == null ? void 0 : payload.length)) {
27231
27357
  return null;
@@ -27311,7 +27437,7 @@ var ChartTooltipContent = React42.forwardRef(
27311
27437
  );
27312
27438
  ChartTooltipContent.displayName = "ChartTooltip";
27313
27439
  var ChartLegend = RechartsPrimitive.Legend;
27314
- var ChartLegendContent = React42.forwardRef(({ className, hideIcon = false, payload, verticalAlign = "bottom", nameKey }, ref) => {
27440
+ var ChartLegendContent = React41.forwardRef(({ className, hideIcon = false, payload, verticalAlign = "bottom", nameKey }, ref) => {
27315
27441
  const { config } = useChart();
27316
27442
  if (!(payload == null ? void 0 : payload.length)) {
27317
27443
  return null;
@@ -27363,11 +27489,11 @@ function getPayloadConfigFromPayload(config, payload, key) {
27363
27489
  }
27364
27490
 
27365
27491
  // src/components/ui/checkbox.tsx
27366
- var React43 = __toESM(require("react"), 1);
27492
+ var React42 = __toESM(require("react"), 1);
27367
27493
  var CheckboxPrimitive = __toESM(require("@radix-ui/react-checkbox"), 1);
27368
27494
  var import_lucide_react22 = require("lucide-react");
27369
27495
  var import_jsx_runtime70 = require("react/jsx-runtime");
27370
- var Checkbox = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
27496
+ var Checkbox = React42.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime70.jsx)(
27371
27497
  CheckboxPrimitive.Root,
27372
27498
  {
27373
27499
  ref,
@@ -27388,11 +27514,11 @@ var CollapsibleTrigger2 = CollapsiblePrimitive.CollapsibleTrigger;
27388
27514
  var CollapsibleContent2 = CollapsiblePrimitive.CollapsibleContent;
27389
27515
 
27390
27516
  // src/components/ui/command.tsx
27391
- var React44 = __toESM(require("react"), 1);
27517
+ var React43 = __toESM(require("react"), 1);
27392
27518
  var import_cmdk = require("cmdk");
27393
27519
  var import_lucide_react23 = require("lucide-react");
27394
27520
  var import_jsx_runtime71 = require("react/jsx-runtime");
27395
- var Command = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27521
+ var Command = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27396
27522
  import_cmdk.Command,
27397
27523
  {
27398
27524
  ref,
@@ -27407,7 +27533,7 @@ Command.displayName = import_cmdk.Command.displayName;
27407
27533
  var CommandDialog = ({ children, ...props }) => {
27408
27534
  return /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(Dialog, { ...props, children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(DialogContent, { className: "overflow-hidden p-0 shadow-lg", children: /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(Command, { className: "[&_[cmdk-group-heading]]:px-2 [&_[cmdk-group-heading]]:font-medium [&_[cmdk-group-heading]]:text-muted-foreground [&_[cmdk-group]:not([hidden])_~[cmdk-group]]:pt-0 [&_[cmdk-group]]:px-2 [&_[cmdk-input-wrapper]_svg]:h-5 [&_[cmdk-input-wrapper]_svg]:w-5 [&_[cmdk-input]]:h-12 [&_[cmdk-item]]:px-2 [&_[cmdk-item]]:py-3 [&_[cmdk-item]_svg]:h-5 [&_[cmdk-item]_svg]:w-5", children }) }) });
27409
27535
  };
27410
- var CommandInput = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
27536
+ var CommandInput = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsxs)("div", { className: "flex items-center border-b px-3", "cmdk-input-wrapper": "", children: [
27411
27537
  /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_lucide_react23.Search, { className: "mr-2 h-4 w-4 shrink-0 opacity-50" }),
27412
27538
  /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27413
27539
  import_cmdk.Command.Input,
@@ -27422,7 +27548,7 @@ var CommandInput = React44.forwardRef(({ className, ...props }, ref) => /* @__PU
27422
27548
  )
27423
27549
  ] }));
27424
27550
  CommandInput.displayName = import_cmdk.Command.Input.displayName;
27425
- var CommandList = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27551
+ var CommandList = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27426
27552
  import_cmdk.Command.List,
27427
27553
  {
27428
27554
  ref,
@@ -27431,9 +27557,9 @@ var CommandList = React44.forwardRef(({ className, ...props }, ref) => /* @__PUR
27431
27557
  }
27432
27558
  ));
27433
27559
  CommandList.displayName = import_cmdk.Command.List.displayName;
27434
- var CommandEmpty = React44.forwardRef((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_cmdk.Command.Empty, { ref, className: "py-6 text-center text-sm", ...props }));
27560
+ var CommandEmpty = React43.forwardRef((props, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_cmdk.Command.Empty, { ref, className: "py-6 text-center text-sm", ...props }));
27435
27561
  CommandEmpty.displayName = import_cmdk.Command.Empty.displayName;
27436
- var CommandGroup = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27562
+ var CommandGroup = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27437
27563
  import_cmdk.Command.Group,
27438
27564
  {
27439
27565
  ref,
@@ -27445,9 +27571,9 @@ var CommandGroup = React44.forwardRef(({ className, ...props }, ref) => /* @__PU
27445
27571
  }
27446
27572
  ));
27447
27573
  CommandGroup.displayName = import_cmdk.Command.Group.displayName;
27448
- var CommandSeparator = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_cmdk.Command.Separator, { ref, className: cn("-mx-1 h-px bg-border", className), ...props }));
27574
+ var CommandSeparator = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(import_cmdk.Command.Separator, { ref, className: cn("-mx-1 h-px bg-border", className), ...props }));
27449
27575
  CommandSeparator.displayName = import_cmdk.Command.Separator.displayName;
27450
- var CommandItem = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27576
+ var CommandItem = React43.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime71.jsx)(
27451
27577
  import_cmdk.Command.Item,
27452
27578
  {
27453
27579
  ref,
@@ -27465,7 +27591,7 @@ var CommandShortcut = ({ className, ...props }) => {
27465
27591
  CommandShortcut.displayName = "CommandShortcut";
27466
27592
 
27467
27593
  // src/components/ui/context-menu.tsx
27468
- var React45 = __toESM(require("react"), 1);
27594
+ var React44 = __toESM(require("react"), 1);
27469
27595
  var ContextMenuPrimitive = __toESM(require("@radix-ui/react-context-menu"), 1);
27470
27596
  var import_lucide_react24 = require("lucide-react");
27471
27597
  var import_jsx_runtime72 = require("react/jsx-runtime");
@@ -27475,7 +27601,7 @@ var ContextMenuGroup = ContextMenuPrimitive.Group;
27475
27601
  var ContextMenuPortal = ContextMenuPrimitive.Portal;
27476
27602
  var ContextMenuSub = ContextMenuPrimitive.Sub;
27477
27603
  var ContextMenuRadioGroup = ContextMenuPrimitive.RadioGroup;
27478
- var ContextMenuSubTrigger = React45.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
27604
+ var ContextMenuSubTrigger = React44.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
27479
27605
  ContextMenuPrimitive.SubTrigger,
27480
27606
  {
27481
27607
  ref,
@@ -27492,7 +27618,7 @@ var ContextMenuSubTrigger = React45.forwardRef(({ className, inset, children, ..
27492
27618
  }
27493
27619
  ));
27494
27620
  ContextMenuSubTrigger.displayName = ContextMenuPrimitive.SubTrigger.displayName;
27495
- var ContextMenuSubContent = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27621
+ var ContextMenuSubContent = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27496
27622
  ContextMenuPrimitive.SubContent,
27497
27623
  {
27498
27624
  ref,
@@ -27504,7 +27630,7 @@ var ContextMenuSubContent = React45.forwardRef(({ className, ...props }, ref) =>
27504
27630
  }
27505
27631
  ));
27506
27632
  ContextMenuSubContent.displayName = ContextMenuPrimitive.SubContent.displayName;
27507
- var ContextMenuContent = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27633
+ var ContextMenuContent = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ContextMenuPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27508
27634
  ContextMenuPrimitive.Content,
27509
27635
  {
27510
27636
  ref,
@@ -27516,7 +27642,7 @@ var ContextMenuContent = React45.forwardRef(({ className, ...props }, ref) => /*
27516
27642
  }
27517
27643
  ) }));
27518
27644
  ContextMenuContent.displayName = ContextMenuPrimitive.Content.displayName;
27519
- var ContextMenuItem = React45.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27645
+ var ContextMenuItem = React44.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27520
27646
  ContextMenuPrimitive.Item,
27521
27647
  {
27522
27648
  ref,
@@ -27529,7 +27655,7 @@ var ContextMenuItem = React45.forwardRef(({ className, inset, ...props }, ref) =
27529
27655
  }
27530
27656
  ));
27531
27657
  ContextMenuItem.displayName = ContextMenuPrimitive.Item.displayName;
27532
- var ContextMenuCheckboxItem = React45.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
27658
+ var ContextMenuCheckboxItem = React44.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
27533
27659
  ContextMenuPrimitive.CheckboxItem,
27534
27660
  {
27535
27661
  ref,
@@ -27546,7 +27672,7 @@ var ContextMenuCheckboxItem = React45.forwardRef(({ className, children, checked
27546
27672
  }
27547
27673
  ));
27548
27674
  ContextMenuCheckboxItem.displayName = ContextMenuPrimitive.CheckboxItem.displayName;
27549
- var ContextMenuRadioItem = React45.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
27675
+ var ContextMenuRadioItem = React44.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsxs)(
27550
27676
  ContextMenuPrimitive.RadioItem,
27551
27677
  {
27552
27678
  ref,
@@ -27562,7 +27688,7 @@ var ContextMenuRadioItem = React45.forwardRef(({ className, children, ...props }
27562
27688
  }
27563
27689
  ));
27564
27690
  ContextMenuRadioItem.displayName = ContextMenuPrimitive.RadioItem.displayName;
27565
- var ContextMenuLabel = React45.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27691
+ var ContextMenuLabel = React44.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(
27566
27692
  ContextMenuPrimitive.Label,
27567
27693
  {
27568
27694
  ref,
@@ -27571,7 +27697,7 @@ var ContextMenuLabel = React45.forwardRef(({ className, inset, ...props }, ref)
27571
27697
  }
27572
27698
  ));
27573
27699
  ContextMenuLabel.displayName = ContextMenuPrimitive.Label.displayName;
27574
- var ContextMenuSeparator = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ContextMenuPrimitive.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-border", className), ...props }));
27700
+ var ContextMenuSeparator = React44.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime72.jsx)(ContextMenuPrimitive.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-border", className), ...props }));
27575
27701
  ContextMenuSeparator.displayName = ContextMenuPrimitive.Separator.displayName;
27576
27702
  var ContextMenuShortcut = ({ className, ...props }) => {
27577
27703
  return /* @__PURE__ */ (0, import_jsx_runtime72.jsx)("span", { className: cn("ml-auto text-xs tracking-widest text-muted-foreground", className), ...props });
@@ -27579,31 +27705,31 @@ var ContextMenuShortcut = ({ className, ...props }) => {
27579
27705
  ContextMenuShortcut.displayName = "ContextMenuShortcut";
27580
27706
 
27581
27707
  // src/components/ui/form.tsx
27582
- var React47 = __toESM(require("react"), 1);
27708
+ var React46 = __toESM(require("react"), 1);
27583
27709
  var import_react_slot3 = require("@radix-ui/react-slot");
27584
27710
  var import_react_hook_form = require("react-hook-form");
27585
27711
 
27586
27712
  // src/components/ui/label.tsx
27587
- var React46 = __toESM(require("react"), 1);
27713
+ var React45 = __toESM(require("react"), 1);
27588
27714
  var LabelPrimitive = __toESM(require("@radix-ui/react-label"), 1);
27589
27715
  var import_class_variance_authority4 = require("class-variance-authority");
27590
27716
  var import_jsx_runtime73 = require("react/jsx-runtime");
27591
27717
  var labelVariants = (0, import_class_variance_authority4.cva)("text-sm font-medium leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70");
27592
- var Label4 = React46.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(LabelPrimitive.Root, { ref, className: cn(labelVariants(), className), ...props }));
27718
+ var Label4 = React45.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime73.jsx)(LabelPrimitive.Root, { ref, className: cn(labelVariants(), className), ...props }));
27593
27719
  Label4.displayName = LabelPrimitive.Root.displayName;
27594
27720
 
27595
27721
  // src/components/ui/form.tsx
27596
27722
  var import_jsx_runtime74 = require("react/jsx-runtime");
27597
27723
  var Form = import_react_hook_form.FormProvider;
27598
- var FormFieldContext = React47.createContext({});
27724
+ var FormFieldContext = React46.createContext({});
27599
27725
  var FormField = ({
27600
27726
  ...props
27601
27727
  }) => {
27602
27728
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(FormFieldContext.Provider, { value: { name: props.name }, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(import_react_hook_form.Controller, { ...props }) });
27603
27729
  };
27604
27730
  var useFormField = () => {
27605
- const fieldContext = React47.useContext(FormFieldContext);
27606
- const itemContext = React47.useContext(FormItemContext);
27731
+ const fieldContext = React46.useContext(FormFieldContext);
27732
+ const itemContext = React46.useContext(FormItemContext);
27607
27733
  const { getFieldState, formState } = (0, import_react_hook_form.useFormContext)();
27608
27734
  const fieldState = getFieldState(fieldContext.name, formState);
27609
27735
  if (!fieldContext) {
@@ -27619,20 +27745,20 @@ var useFormField = () => {
27619
27745
  ...fieldState
27620
27746
  };
27621
27747
  };
27622
- var FormItemContext = React47.createContext({});
27623
- var FormItem = React47.forwardRef(
27748
+ var FormItemContext = React46.createContext({});
27749
+ var FormItem = React46.forwardRef(
27624
27750
  ({ className, ...props }, ref) => {
27625
- const id = React47.useId();
27751
+ const id = React46.useId();
27626
27752
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(FormItemContext.Provider, { value: { id }, children: /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("div", { ref, className: cn("space-y-2", className), ...props }) });
27627
27753
  }
27628
27754
  );
27629
27755
  FormItem.displayName = "FormItem";
27630
- var FormLabel = React47.forwardRef(({ className, ...props }, ref) => {
27756
+ var FormLabel = React46.forwardRef(({ className, ...props }, ref) => {
27631
27757
  const { error, formItemId } = useFormField();
27632
27758
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(Label4, { ref, className: cn(error && "text-destructive", className), htmlFor: formItemId, ...props });
27633
27759
  });
27634
27760
  FormLabel.displayName = "FormLabel";
27635
- var FormControl = React47.forwardRef(
27761
+ var FormControl = React46.forwardRef(
27636
27762
  ({ ...props }, ref) => {
27637
27763
  const { error, formItemId, formDescriptionId, formMessageId } = useFormField();
27638
27764
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)(
@@ -27648,14 +27774,14 @@ var FormControl = React47.forwardRef(
27648
27774
  }
27649
27775
  );
27650
27776
  FormControl.displayName = "FormControl";
27651
- var FormDescription = React47.forwardRef(
27777
+ var FormDescription = React46.forwardRef(
27652
27778
  ({ className, ...props }, ref) => {
27653
27779
  const { formDescriptionId } = useFormField();
27654
27780
  return /* @__PURE__ */ (0, import_jsx_runtime74.jsx)("p", { ref, id: formDescriptionId, className: cn("text-sm text-muted-foreground", className), ...props });
27655
27781
  }
27656
27782
  );
27657
27783
  FormDescription.displayName = "FormDescription";
27658
- var FormMessage = React47.forwardRef(
27784
+ var FormMessage = React46.forwardRef(
27659
27785
  ({ className, children, ...props }, ref) => {
27660
27786
  const { error, formMessageId } = useFormField();
27661
27787
  const body = error ? String(error == null ? void 0 : error.message) : children;
@@ -27668,9 +27794,9 @@ var FormMessage = React47.forwardRef(
27668
27794
  FormMessage.displayName = "FormMessage";
27669
27795
 
27670
27796
  // src/components/ui/glass-card.tsx
27671
- var React48 = __toESM(require("react"), 1);
27797
+ var React47 = __toESM(require("react"), 1);
27672
27798
  var import_jsx_runtime75 = require("react/jsx-runtime");
27673
- var GlassCard = React48.forwardRef(
27799
+ var GlassCard = React47.forwardRef(
27674
27800
  ({ className, ...props }, ref) => {
27675
27801
  return /* @__PURE__ */ (0, import_jsx_runtime75.jsx)("div", { ref, className: cn("glass-card", className), ...props });
27676
27802
  }
@@ -27678,12 +27804,12 @@ var GlassCard = React48.forwardRef(
27678
27804
  GlassCard.displayName = "GlassCard";
27679
27805
 
27680
27806
  // src/components/ui/hover-card.tsx
27681
- var React49 = __toESM(require("react"), 1);
27807
+ var React48 = __toESM(require("react"), 1);
27682
27808
  var HoverCardPrimitive = __toESM(require("@radix-ui/react-hover-card"), 1);
27683
27809
  var import_jsx_runtime76 = require("react/jsx-runtime");
27684
27810
  var HoverCard = HoverCardPrimitive.Root;
27685
27811
  var HoverCardTrigger = HoverCardPrimitive.Trigger;
27686
- var HoverCardContent = React49.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
27812
+ var HoverCardContent = React48.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime76.jsx)(
27687
27813
  HoverCardPrimitive.Content,
27688
27814
  {
27689
27815
  ref,
@@ -27699,11 +27825,11 @@ var HoverCardContent = React49.forwardRef(({ className, align = "center", sideOf
27699
27825
  HoverCardContent.displayName = HoverCardPrimitive.Content.displayName;
27700
27826
 
27701
27827
  // src/components/ui/input-otp.tsx
27702
- var React50 = __toESM(require("react"), 1);
27828
+ var React49 = __toESM(require("react"), 1);
27703
27829
  var import_input_otp = require("input-otp");
27704
27830
  var import_lucide_react25 = require("lucide-react");
27705
27831
  var import_jsx_runtime77 = require("react/jsx-runtime");
27706
- var InputOTP = React50.forwardRef(
27832
+ var InputOTP = React49.forwardRef(
27707
27833
  ({ className, containerClassName, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(
27708
27834
  import_input_otp.OTPInput,
27709
27835
  {
@@ -27715,12 +27841,12 @@ var InputOTP = React50.forwardRef(
27715
27841
  )
27716
27842
  );
27717
27843
  InputOTP.displayName = "InputOTP";
27718
- var InputOTPGroup = React50.forwardRef(
27844
+ var InputOTPGroup = React49.forwardRef(
27719
27845
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { ref, className: cn("flex items-center", className), ...props })
27720
27846
  );
27721
27847
  InputOTPGroup.displayName = "InputOTPGroup";
27722
- var InputOTPSlot = React50.forwardRef(({ index, className, ...props }, ref) => {
27723
- const inputOTPContext = React50.useContext(import_input_otp.OTPInputContext);
27848
+ var InputOTPSlot = React49.forwardRef(({ index, className, ...props }, ref) => {
27849
+ const inputOTPContext = React49.useContext(import_input_otp.OTPInputContext);
27724
27850
  const { char, hasFakeCaret, isActive } = inputOTPContext.slots[index];
27725
27851
  return /* @__PURE__ */ (0, import_jsx_runtime77.jsxs)(
27726
27852
  "div",
@@ -27740,13 +27866,13 @@ var InputOTPSlot = React50.forwardRef(({ index, className, ...props }, ref) => {
27740
27866
  );
27741
27867
  });
27742
27868
  InputOTPSlot.displayName = "InputOTPSlot";
27743
- var InputOTPSeparator = React50.forwardRef(
27869
+ var InputOTPSeparator = React49.forwardRef(
27744
27870
  ({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime77.jsx)("div", { ref, role: "separator", ...props, children: /* @__PURE__ */ (0, import_jsx_runtime77.jsx)(import_lucide_react25.Dot, {}) })
27745
27871
  );
27746
27872
  InputOTPSeparator.displayName = "InputOTPSeparator";
27747
27873
 
27748
27874
  // src/components/ui/menubar.tsx
27749
- var React51 = __toESM(require("react"), 1);
27875
+ var React50 = __toESM(require("react"), 1);
27750
27876
  var MenubarPrimitive = __toESM(require("@radix-ui/react-menubar"), 1);
27751
27877
  var import_lucide_react26 = require("lucide-react");
27752
27878
  var import_jsx_runtime78 = require("react/jsx-runtime");
@@ -27755,7 +27881,7 @@ var MenubarGroup = MenubarPrimitive.Group;
27755
27881
  var MenubarPortal = MenubarPrimitive.Portal;
27756
27882
  var MenubarSub = MenubarPrimitive.Sub;
27757
27883
  var MenubarRadioGroup = MenubarPrimitive.RadioGroup;
27758
- var Menubar = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27884
+ var Menubar = React50.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27759
27885
  MenubarPrimitive.Root,
27760
27886
  {
27761
27887
  ref,
@@ -27764,7 +27890,7 @@ var Menubar = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__
27764
27890
  }
27765
27891
  ));
27766
27892
  Menubar.displayName = MenubarPrimitive.Root.displayName;
27767
- var MenubarTrigger = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27893
+ var MenubarTrigger = React50.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27768
27894
  MenubarPrimitive.Trigger,
27769
27895
  {
27770
27896
  ref,
@@ -27776,7 +27902,7 @@ var MenubarTrigger = React51.forwardRef(({ className, ...props }, ref) => /* @__
27776
27902
  }
27777
27903
  ));
27778
27904
  MenubarTrigger.displayName = MenubarPrimitive.Trigger.displayName;
27779
- var MenubarSubTrigger = React51.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
27905
+ var MenubarSubTrigger = React50.forwardRef(({ className, inset, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
27780
27906
  MenubarPrimitive.SubTrigger,
27781
27907
  {
27782
27908
  ref,
@@ -27793,7 +27919,7 @@ var MenubarSubTrigger = React51.forwardRef(({ className, inset, children, ...pro
27793
27919
  }
27794
27920
  ));
27795
27921
  MenubarSubTrigger.displayName = MenubarPrimitive.SubTrigger.displayName;
27796
- var MenubarSubContent = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27922
+ var MenubarSubContent = React50.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27797
27923
  MenubarPrimitive.SubContent,
27798
27924
  {
27799
27925
  ref,
@@ -27805,7 +27931,7 @@ var MenubarSubContent = React51.forwardRef(({ className, ...props }, ref) => /*
27805
27931
  }
27806
27932
  ));
27807
27933
  MenubarSubContent.displayName = MenubarPrimitive.SubContent.displayName;
27808
- var MenubarContent = React51.forwardRef(({ className, align = "start", alignOffset = -4, sideOffset = 8, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27934
+ var MenubarContent = React50.forwardRef(({ className, align = "start", alignOffset = -4, sideOffset = 8, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(MenubarPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27809
27935
  MenubarPrimitive.Content,
27810
27936
  {
27811
27937
  ref,
@@ -27820,7 +27946,7 @@ var MenubarContent = React51.forwardRef(({ className, align = "start", alignOffs
27820
27946
  }
27821
27947
  ) }));
27822
27948
  MenubarContent.displayName = MenubarPrimitive.Content.displayName;
27823
- var MenubarItem = React51.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27949
+ var MenubarItem = React50.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27824
27950
  MenubarPrimitive.Item,
27825
27951
  {
27826
27952
  ref,
@@ -27833,7 +27959,7 @@ var MenubarItem = React51.forwardRef(({ className, inset, ...props }, ref) => /*
27833
27959
  }
27834
27960
  ));
27835
27961
  MenubarItem.displayName = MenubarPrimitive.Item.displayName;
27836
- var MenubarCheckboxItem = React51.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
27962
+ var MenubarCheckboxItem = React50.forwardRef(({ className, children, checked, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
27837
27963
  MenubarPrimitive.CheckboxItem,
27838
27964
  {
27839
27965
  ref,
@@ -27850,7 +27976,7 @@ var MenubarCheckboxItem = React51.forwardRef(({ className, children, checked, ..
27850
27976
  }
27851
27977
  ));
27852
27978
  MenubarCheckboxItem.displayName = MenubarPrimitive.CheckboxItem.displayName;
27853
- var MenubarRadioItem = React51.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
27979
+ var MenubarRadioItem = React50.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsxs)(
27854
27980
  MenubarPrimitive.RadioItem,
27855
27981
  {
27856
27982
  ref,
@@ -27866,7 +27992,7 @@ var MenubarRadioItem = React51.forwardRef(({ className, children, ...props }, re
27866
27992
  }
27867
27993
  ));
27868
27994
  MenubarRadioItem.displayName = MenubarPrimitive.RadioItem.displayName;
27869
- var MenubarLabel = React51.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27995
+ var MenubarLabel = React50.forwardRef(({ className, inset, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(
27870
27996
  MenubarPrimitive.Label,
27871
27997
  {
27872
27998
  ref,
@@ -27875,7 +28001,7 @@ var MenubarLabel = React51.forwardRef(({ className, inset, ...props }, ref) => /
27875
28001
  }
27876
28002
  ));
27877
28003
  MenubarLabel.displayName = MenubarPrimitive.Label.displayName;
27878
- var MenubarSeparator = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(MenubarPrimitive.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props }));
28004
+ var MenubarSeparator = React50.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime78.jsx)(MenubarPrimitive.Separator, { ref, className: cn("-mx-1 my-1 h-px bg-muted", className), ...props }));
27879
28005
  MenubarSeparator.displayName = MenubarPrimitive.Separator.displayName;
27880
28006
  var MenubarShortcut = ({ className, ...props }) => {
27881
28007
  return /* @__PURE__ */ (0, import_jsx_runtime78.jsx)("span", { className: cn("ml-auto text-xs tracking-widest text-muted-foreground", className), ...props });
@@ -27883,12 +28009,12 @@ var MenubarShortcut = ({ className, ...props }) => {
27883
28009
  MenubarShortcut.displayname = "MenubarShortcut";
27884
28010
 
27885
28011
  // src/components/ui/navigation-menu.tsx
27886
- var React52 = __toESM(require("react"), 1);
28012
+ var React51 = __toESM(require("react"), 1);
27887
28013
  var NavigationMenuPrimitive = __toESM(require("@radix-ui/react-navigation-menu"), 1);
27888
28014
  var import_class_variance_authority5 = require("class-variance-authority");
27889
28015
  var import_lucide_react27 = require("lucide-react");
27890
28016
  var import_jsx_runtime79 = require("react/jsx-runtime");
27891
- var NavigationMenu = React52.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
28017
+ var NavigationMenu = React51.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
27892
28018
  NavigationMenuPrimitive.Root,
27893
28019
  {
27894
28020
  ref,
@@ -27901,7 +28027,7 @@ var NavigationMenu = React52.forwardRef(({ className, children, ...props }, ref)
27901
28027
  }
27902
28028
  ));
27903
28029
  NavigationMenu.displayName = NavigationMenuPrimitive.Root.displayName;
27904
- var NavigationMenuList = React52.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
28030
+ var NavigationMenuList = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
27905
28031
  NavigationMenuPrimitive.List,
27906
28032
  {
27907
28033
  ref,
@@ -27914,7 +28040,7 @@ var NavigationMenuItem = NavigationMenuPrimitive.Item;
27914
28040
  var navigationMenuTriggerStyle = (0, import_class_variance_authority5.cva)(
27915
28041
  "group inline-flex h-10 w-max items-center justify-center rounded-md bg-background px-4 py-2 text-sm font-medium transition-colors hover:bg-accent hover:text-accent-foreground focus:bg-accent focus:text-accent-foreground focus:outline-none disabled:pointer-events-none disabled:opacity-50 data-[active]:bg-accent/50 data-[state=open]:bg-accent/50"
27916
28042
  );
27917
- var NavigationMenuTrigger = React52.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
28043
+ var NavigationMenuTrigger = React51.forwardRef(({ className, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsxs)(
27918
28044
  NavigationMenuPrimitive.Trigger,
27919
28045
  {
27920
28046
  ref,
@@ -27934,7 +28060,7 @@ var NavigationMenuTrigger = React52.forwardRef(({ className, children, ...props
27934
28060
  }
27935
28061
  ));
27936
28062
  NavigationMenuTrigger.displayName = NavigationMenuPrimitive.Trigger.displayName;
27937
- var NavigationMenuContent = React52.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
28063
+ var NavigationMenuContent = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
27938
28064
  NavigationMenuPrimitive.Content,
27939
28065
  {
27940
28066
  ref,
@@ -27947,7 +28073,7 @@ var NavigationMenuContent = React52.forwardRef(({ className, ...props }, ref) =>
27947
28073
  ));
27948
28074
  NavigationMenuContent.displayName = NavigationMenuPrimitive.Content.displayName;
27949
28075
  var NavigationMenuLink = NavigationMenuPrimitive.Link;
27950
- var NavigationMenuViewport = React52.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
28076
+ var NavigationMenuViewport = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)("div", { className: cn("absolute left-0 top-full flex justify-center"), children: /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
27951
28077
  NavigationMenuPrimitive.Viewport,
27952
28078
  {
27953
28079
  className: cn(
@@ -27959,7 +28085,7 @@ var NavigationMenuViewport = React52.forwardRef(({ className, ...props }, ref) =
27959
28085
  }
27960
28086
  ) }));
27961
28087
  NavigationMenuViewport.displayName = NavigationMenuPrimitive.Viewport.displayName;
27962
- var NavigationMenuIndicator = React52.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
28088
+ var NavigationMenuIndicator = React51.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime79.jsx)(
27963
28089
  NavigationMenuPrimitive.Indicator,
27964
28090
  {
27965
28091
  ref,
@@ -27974,7 +28100,7 @@ var NavigationMenuIndicator = React52.forwardRef(({ className, ...props }, ref)
27974
28100
  NavigationMenuIndicator.displayName = NavigationMenuPrimitive.Indicator.displayName;
27975
28101
 
27976
28102
  // src/components/ui/pagination.tsx
27977
- var React53 = __toESM(require("react"), 1);
28103
+ var React52 = __toESM(require("react"), 1);
27978
28104
  var import_lucide_react28 = require("lucide-react");
27979
28105
  var import_jsx_runtime80 = require("react/jsx-runtime");
27980
28106
  var Pagination = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
@@ -27987,11 +28113,11 @@ var Pagination = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_run
27987
28113
  }
27988
28114
  );
27989
28115
  Pagination.displayName = "Pagination";
27990
- var PaginationContent = React53.forwardRef(
28116
+ var PaginationContent = React52.forwardRef(
27991
28117
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("ul", { ref, className: cn("flex flex-row items-center gap-1", className), ...props })
27992
28118
  );
27993
28119
  PaginationContent.displayName = "PaginationContent";
27994
- var PaginationItem = React53.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("li", { ref, className: cn("", className), ...props }));
28120
+ var PaginationItem = React52.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)("li", { ref, className: cn("", className), ...props }));
27995
28121
  PaginationItem.displayName = "PaginationItem";
27996
28122
  var PaginationLink = ({ className, isActive, size = "icon", ...props }) => /* @__PURE__ */ (0, import_jsx_runtime80.jsx)(
27997
28123
  "a",
@@ -28025,12 +28151,12 @@ var PaginationEllipsis = ({ className, ...props }) => /* @__PURE__ */ (0, import
28025
28151
  PaginationEllipsis.displayName = "PaginationEllipsis";
28026
28152
 
28027
28153
  // src/components/ui/popover.tsx
28028
- var React54 = __toESM(require("react"), 1);
28154
+ var React53 = __toESM(require("react"), 1);
28029
28155
  var PopoverPrimitive = __toESM(require("@radix-ui/react-popover"), 1);
28030
28156
  var import_jsx_runtime81 = require("react/jsx-runtime");
28031
28157
  var Popover = PopoverPrimitive.Root;
28032
28158
  var PopoverTrigger = PopoverPrimitive.Trigger;
28033
- var PopoverContent = React54.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
28159
+ var PopoverContent = React53.forwardRef(({ className, align = "center", sideOffset = 4, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(PopoverPrimitive.Portal, { children: /* @__PURE__ */ (0, import_jsx_runtime81.jsx)(
28034
28160
  PopoverPrimitive.Content,
28035
28161
  {
28036
28162
  ref,
@@ -28046,15 +28172,15 @@ var PopoverContent = React54.forwardRef(({ className, align = "center", sideOffs
28046
28172
  PopoverContent.displayName = PopoverPrimitive.Content.displayName;
28047
28173
 
28048
28174
  // src/components/ui/radio-group.tsx
28049
- var React55 = __toESM(require("react"), 1);
28175
+ var React54 = __toESM(require("react"), 1);
28050
28176
  var RadioGroupPrimitive = __toESM(require("@radix-ui/react-radio-group"), 1);
28051
28177
  var import_lucide_react29 = require("lucide-react");
28052
28178
  var import_jsx_runtime82 = require("react/jsx-runtime");
28053
- var RadioGroup4 = React55.forwardRef(({ className, ...props }, ref) => {
28179
+ var RadioGroup4 = React54.forwardRef(({ className, ...props }, ref) => {
28054
28180
  return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(RadioGroupPrimitive.Root, { className: cn("grid gap-2", className), ...props, ref });
28055
28181
  });
28056
28182
  RadioGroup4.displayName = RadioGroupPrimitive.Root.displayName;
28057
- var RadioGroupItem = React55.forwardRef(({ className, ...props }, ref) => {
28183
+ var RadioGroupItem = React54.forwardRef(({ className, ...props }, ref) => {
28058
28184
  return /* @__PURE__ */ (0, import_jsx_runtime82.jsx)(
28059
28185
  RadioGroupPrimitive.Item,
28060
28186
  {
@@ -28099,10 +28225,10 @@ var ResizableHandle = ({
28099
28225
  );
28100
28226
 
28101
28227
  // src/components/ui/separator.tsx
28102
- var React56 = __toESM(require("react"), 1);
28228
+ var React55 = __toESM(require("react"), 1);
28103
28229
  var SeparatorPrimitive = __toESM(require("@radix-ui/react-separator"), 1);
28104
28230
  var import_jsx_runtime84 = require("react/jsx-runtime");
28105
- var Separator5 = React56.forwardRef(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
28231
+ var Separator5 = React55.forwardRef(({ className, orientation = "horizontal", decorative = true, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime84.jsx)(
28106
28232
  SeparatorPrimitive.Root,
28107
28233
  {
28108
28234
  ref,
@@ -28118,13 +28244,13 @@ Separator5.displayName = SeparatorPrimitive.Root.displayName;
28118
28244
  var SheetPrimitive = __toESM(require("@radix-ui/react-dialog"), 1);
28119
28245
  var import_class_variance_authority6 = require("class-variance-authority");
28120
28246
  var import_lucide_react31 = require("lucide-react");
28121
- var React57 = __toESM(require("react"), 1);
28247
+ var React56 = __toESM(require("react"), 1);
28122
28248
  var import_jsx_runtime85 = require("react/jsx-runtime");
28123
28249
  var Sheet = SheetPrimitive.Root;
28124
28250
  var SheetTrigger = SheetPrimitive.Trigger;
28125
28251
  var SheetClose = SheetPrimitive.Close;
28126
28252
  var SheetPortal = SheetPrimitive.Portal;
28127
- var SheetOverlay = React57.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
28253
+ var SheetOverlay = React56.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(
28128
28254
  SheetPrimitive.Overlay,
28129
28255
  {
28130
28256
  className: cn(
@@ -28152,7 +28278,7 @@ var sheetVariants = (0, import_class_variance_authority6.cva)(
28152
28278
  }
28153
28279
  }
28154
28280
  );
28155
- var SheetContent = React57.forwardRef(
28281
+ var SheetContent = React56.forwardRef(
28156
28282
  ({
28157
28283
  side = "right",
28158
28284
  className,
@@ -28186,23 +28312,23 @@ var SheetHeader = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_ru
28186
28312
  SheetHeader.displayName = "SheetHeader";
28187
28313
  var SheetFooter = ({ className, ...props }) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)("div", { className: cn("flex flex-col-reverse sm:flex-row sm:justify-end sm:space-x-2", className), ...props });
28188
28314
  SheetFooter.displayName = "SheetFooter";
28189
- var SheetTitle = React57.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SheetPrimitive.Title, { ref, className: cn("text-lg font-semibold text-foreground", className), ...props }));
28315
+ var SheetTitle = React56.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SheetPrimitive.Title, { ref, className: cn("text-lg font-semibold text-foreground", className), ...props }));
28190
28316
  SheetTitle.displayName = SheetPrimitive.Title.displayName;
28191
- var SheetDescription = React57.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SheetPrimitive.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
28317
+ var SheetDescription = React56.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime85.jsx)(SheetPrimitive.Description, { ref, className: cn("text-sm text-muted-foreground", className), ...props }));
28192
28318
  SheetDescription.displayName = SheetPrimitive.Description.displayName;
28193
28319
 
28194
28320
  // src/components/ui/sidebar.tsx
28195
- var React59 = __toESM(require("react"), 1);
28321
+ var React58 = __toESM(require("react"), 1);
28196
28322
  var import_react_slot4 = require("@radix-ui/react-slot");
28197
28323
  var import_class_variance_authority7 = require("class-variance-authority");
28198
28324
  var import_lucide_react32 = require("lucide-react");
28199
28325
 
28200
28326
  // src/hooks/use-mobile.tsx
28201
- var React58 = __toESM(require("react"), 1);
28327
+ var React57 = __toESM(require("react"), 1);
28202
28328
  var MOBILE_BREAKPOINT = 768;
28203
28329
  function useIsMobile() {
28204
- const [isMobile, setIsMobile] = React58.useState(void 0);
28205
- React58.useEffect(() => {
28330
+ const [isMobile, setIsMobile] = React57.useState(void 0);
28331
+ React57.useEffect(() => {
28206
28332
  const mql = window.matchMedia(`(max-width: ${MOBILE_BREAKPOINT - 1}px)`);
28207
28333
  const onChange = () => {
28208
28334
  setIsMobile(window.innerWidth < MOBILE_BREAKPOINT);
@@ -28222,20 +28348,20 @@ var SIDEBAR_WIDTH = "16rem";
28222
28348
  var SIDEBAR_WIDTH_MOBILE = "18rem";
28223
28349
  var SIDEBAR_WIDTH_ICON = "3rem";
28224
28350
  var SIDEBAR_KEYBOARD_SHORTCUT = "b";
28225
- var SidebarContext = React59.createContext(null);
28351
+ var SidebarContext = React58.createContext(null);
28226
28352
  function useSidebar() {
28227
- const context = React59.useContext(SidebarContext);
28353
+ const context = React58.useContext(SidebarContext);
28228
28354
  if (!context) {
28229
28355
  throw new Error("useSidebar must be used within a SidebarProvider.");
28230
28356
  }
28231
28357
  return context;
28232
28358
  }
28233
- var SidebarProvider = React59.forwardRef(({ defaultOpen = true, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }, ref) => {
28359
+ var SidebarProvider = React58.forwardRef(({ defaultOpen = true, open: openProp, onOpenChange: setOpenProp, className, style, children, ...props }, ref) => {
28234
28360
  const isMobile = useIsMobile();
28235
- const [openMobile, setOpenMobile] = React59.useState(false);
28236
- const [_open, _setOpen] = React59.useState(defaultOpen);
28361
+ const [openMobile, setOpenMobile] = React58.useState(false);
28362
+ const [_open, _setOpen] = React58.useState(defaultOpen);
28237
28363
  const open = openProp != null ? openProp : _open;
28238
- const setOpen = React59.useCallback(
28364
+ const setOpen = React58.useCallback(
28239
28365
  (value) => {
28240
28366
  const openState = typeof value === "function" ? value(open) : value;
28241
28367
  if (setOpenProp) {
@@ -28247,10 +28373,10 @@ var SidebarProvider = React59.forwardRef(({ defaultOpen = true, open: openProp,
28247
28373
  },
28248
28374
  [setOpenProp, open]
28249
28375
  );
28250
- const toggleSidebar = React59.useCallback(() => {
28376
+ const toggleSidebar = React58.useCallback(() => {
28251
28377
  return isMobile ? setOpenMobile((open2) => !open2) : setOpen((open2) => !open2);
28252
28378
  }, [isMobile, setOpen, setOpenMobile]);
28253
- React59.useEffect(() => {
28379
+ React58.useEffect(() => {
28254
28380
  const handleKeyDown = (event) => {
28255
28381
  if (event.key === SIDEBAR_KEYBOARD_SHORTCUT && (event.metaKey || event.ctrlKey)) {
28256
28382
  event.preventDefault();
@@ -28261,7 +28387,7 @@ var SidebarProvider = React59.forwardRef(({ defaultOpen = true, open: openProp,
28261
28387
  return () => window.removeEventListener("keydown", handleKeyDown);
28262
28388
  }, [toggleSidebar]);
28263
28389
  const state = open ? "expanded" : "collapsed";
28264
- const contextValue = React59.useMemo(
28390
+ const contextValue = React58.useMemo(
28265
28391
  () => ({
28266
28392
  state,
28267
28393
  open,
@@ -28289,7 +28415,7 @@ var SidebarProvider = React59.forwardRef(({ defaultOpen = true, open: openProp,
28289
28415
  ) }) });
28290
28416
  });
28291
28417
  SidebarProvider.displayName = "SidebarProvider";
28292
- var Sidebar = React59.forwardRef(({ side = "left", variant = "sidebar", collapsible = "offcanvas", className, children, ...props }, ref) => {
28418
+ var Sidebar = React58.forwardRef(({ side = "left", variant = "sidebar", collapsible = "offcanvas", className, children, ...props }, ref) => {
28293
28419
  const { isMobile, state, openMobile, setOpenMobile } = useSidebar();
28294
28420
  if (collapsible === "none") {
28295
28421
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
@@ -28364,7 +28490,7 @@ var Sidebar = React59.forwardRef(({ side = "left", variant = "sidebar", collapsi
28364
28490
  );
28365
28491
  });
28366
28492
  Sidebar.displayName = "Sidebar";
28367
- var SidebarTrigger = React59.forwardRef(
28493
+ var SidebarTrigger = React58.forwardRef(
28368
28494
  ({ className, onClick, ...props }, ref) => {
28369
28495
  const { toggleSidebar } = useSidebar();
28370
28496
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
@@ -28389,7 +28515,7 @@ var SidebarTrigger = React59.forwardRef(
28389
28515
  }
28390
28516
  );
28391
28517
  SidebarTrigger.displayName = "SidebarTrigger";
28392
- var SidebarRail = React59.forwardRef(
28518
+ var SidebarRail = React58.forwardRef(
28393
28519
  ({ className, ...props }, ref) => {
28394
28520
  const { toggleSidebar } = useSidebar();
28395
28521
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
@@ -28416,7 +28542,7 @@ var SidebarRail = React59.forwardRef(
28416
28542
  }
28417
28543
  );
28418
28544
  SidebarRail.displayName = "SidebarRail";
28419
- var SidebarInset = React59.forwardRef(({ className, ...props }, ref) => {
28545
+ var SidebarInset = React58.forwardRef(({ className, ...props }, ref) => {
28420
28546
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28421
28547
  "main",
28422
28548
  {
@@ -28431,7 +28557,7 @@ var SidebarInset = React59.forwardRef(({ className, ...props }, ref) => {
28431
28557
  );
28432
28558
  });
28433
28559
  SidebarInset.displayName = "SidebarInset";
28434
- var SidebarInput = React59.forwardRef(
28560
+ var SidebarInput = React58.forwardRef(
28435
28561
  ({ className, ...props }, ref) => {
28436
28562
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28437
28563
  Input,
@@ -28448,15 +28574,15 @@ var SidebarInput = React59.forwardRef(
28448
28574
  }
28449
28575
  );
28450
28576
  SidebarInput.displayName = "SidebarInput";
28451
- var SidebarHeader = React59.forwardRef(({ className, ...props }, ref) => {
28577
+ var SidebarHeader = React58.forwardRef(({ className, ...props }, ref) => {
28452
28578
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { ref, "data-sidebar": "header", className: cn("flex flex-col gap-2 p-2", className), ...props });
28453
28579
  });
28454
28580
  SidebarHeader.displayName = "SidebarHeader";
28455
- var SidebarFooter = React59.forwardRef(({ className, ...props }, ref) => {
28581
+ var SidebarFooter = React58.forwardRef(({ className, ...props }, ref) => {
28456
28582
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { ref, "data-sidebar": "footer", className: cn("flex flex-col gap-2 p-2", className), ...props });
28457
28583
  });
28458
28584
  SidebarFooter.displayName = "SidebarFooter";
28459
- var SidebarSeparator = React59.forwardRef(
28585
+ var SidebarSeparator = React58.forwardRef(
28460
28586
  ({ className, ...props }, ref) => {
28461
28587
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28462
28588
  Separator5,
@@ -28470,7 +28596,7 @@ var SidebarSeparator = React59.forwardRef(
28470
28596
  }
28471
28597
  );
28472
28598
  SidebarSeparator.displayName = "SidebarSeparator";
28473
- var SidebarContent = React59.forwardRef(({ className, ...props }, ref) => {
28599
+ var SidebarContent = React58.forwardRef(({ className, ...props }, ref) => {
28474
28600
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28475
28601
  "div",
28476
28602
  {
@@ -28485,7 +28611,7 @@ var SidebarContent = React59.forwardRef(({ className, ...props }, ref) => {
28485
28611
  );
28486
28612
  });
28487
28613
  SidebarContent.displayName = "SidebarContent";
28488
- var SidebarGroup = React59.forwardRef(({ className, ...props }, ref) => {
28614
+ var SidebarGroup = React58.forwardRef(({ className, ...props }, ref) => {
28489
28615
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28490
28616
  "div",
28491
28617
  {
@@ -28497,7 +28623,7 @@ var SidebarGroup = React59.forwardRef(({ className, ...props }, ref) => {
28497
28623
  );
28498
28624
  });
28499
28625
  SidebarGroup.displayName = "SidebarGroup";
28500
- var SidebarGroupLabel = React59.forwardRef(
28626
+ var SidebarGroupLabel = React58.forwardRef(
28501
28627
  ({ className, asChild = false, ...props }, ref) => {
28502
28628
  const Comp = asChild ? import_react_slot4.Slot : "div";
28503
28629
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
@@ -28516,7 +28642,7 @@ var SidebarGroupLabel = React59.forwardRef(
28516
28642
  }
28517
28643
  );
28518
28644
  SidebarGroupLabel.displayName = "SidebarGroupLabel";
28519
- var SidebarGroupAction = React59.forwardRef(
28645
+ var SidebarGroupAction = React58.forwardRef(
28520
28646
  ({ className, asChild = false, ...props }, ref) => {
28521
28647
  const Comp = asChild ? import_react_slot4.Slot : "button";
28522
28648
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
@@ -28537,13 +28663,13 @@ var SidebarGroupAction = React59.forwardRef(
28537
28663
  }
28538
28664
  );
28539
28665
  SidebarGroupAction.displayName = "SidebarGroupAction";
28540
- var SidebarGroupContent = React59.forwardRef(
28666
+ var SidebarGroupContent = React58.forwardRef(
28541
28667
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("div", { ref, "data-sidebar": "group-content", className: cn("w-full text-sm", className), ...props })
28542
28668
  );
28543
28669
  SidebarGroupContent.displayName = "SidebarGroupContent";
28544
- var SidebarMenu = React59.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("ul", { ref, "data-sidebar": "menu", className: cn("flex w-full min-w-0 flex-col gap-1", className), ...props }));
28670
+ var SidebarMenu = React58.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("ul", { ref, "data-sidebar": "menu", className: cn("flex w-full min-w-0 flex-col gap-1", className), ...props }));
28545
28671
  SidebarMenu.displayName = "SidebarMenu";
28546
- var SidebarMenuItem = React59.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("li", { ref, "data-sidebar": "menu-item", className: cn("group/menu-item relative", className), ...props }));
28672
+ var SidebarMenuItem = React58.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("li", { ref, "data-sidebar": "menu-item", className: cn("group/menu-item relative", className), ...props }));
28547
28673
  SidebarMenuItem.displayName = "SidebarMenuItem";
28548
28674
  var sidebarMenuButtonVariants = (0, import_class_variance_authority7.cva)(
28549
28675
  "peer/menu-button flex w-full items-center gap-2 overflow-hidden rounded-md p-2 text-left text-sm outline-none ring-sidebar-ring transition-[width,height,padding] hover:bg-sidebar-accent hover:text-sidebar-accent-foreground focus-visible:ring-2 active:bg-sidebar-accent active:text-sidebar-accent-foreground disabled:pointer-events-none disabled:opacity-50 group-has-[[data-sidebar=menu-action]]/menu-item:pr-8 aria-disabled:pointer-events-none aria-disabled:opacity-50 data-[active=true]:bg-sidebar-accent data-[active=true]:font-medium data-[active=true]:text-sidebar-accent-foreground data-[state=open]:hover:bg-sidebar-accent data-[state=open]:hover:text-sidebar-accent-foreground group-data-[collapsible=icon]:!size-8 group-data-[collapsible=icon]:!p-2 [&>span:last-child]:truncate [&>svg]:size-4 [&>svg]:shrink-0",
@@ -28565,7 +28691,7 @@ var sidebarMenuButtonVariants = (0, import_class_variance_authority7.cva)(
28565
28691
  }
28566
28692
  }
28567
28693
  );
28568
- var SidebarMenuButton = React59.forwardRef(({ asChild = false, isActive = false, variant = "default", size = "default", tooltip, className, ...props }, ref) => {
28694
+ var SidebarMenuButton = React58.forwardRef(({ asChild = false, isActive = false, variant = "default", size = "default", tooltip, className, ...props }, ref) => {
28569
28695
  const Comp = asChild ? import_react_slot4.Slot : "button";
28570
28696
  const { isMobile, state } = useSidebar();
28571
28697
  const button = /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
@@ -28593,7 +28719,7 @@ var SidebarMenuButton = React59.forwardRef(({ asChild = false, isActive = false,
28593
28719
  ] });
28594
28720
  });
28595
28721
  SidebarMenuButton.displayName = "SidebarMenuButton";
28596
- var SidebarMenuAction = React59.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
28722
+ var SidebarMenuAction = React58.forwardRef(({ className, asChild = false, showOnHover = false, ...props }, ref) => {
28597
28723
  const Comp = asChild ? import_react_slot4.Slot : "button";
28598
28724
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28599
28725
  Comp,
@@ -28616,7 +28742,7 @@ var SidebarMenuAction = React59.forwardRef(({ className, asChild = false, showOn
28616
28742
  );
28617
28743
  });
28618
28744
  SidebarMenuAction.displayName = "SidebarMenuAction";
28619
- var SidebarMenuBadge = React59.forwardRef(
28745
+ var SidebarMenuBadge = React58.forwardRef(
28620
28746
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28621
28747
  "div",
28622
28748
  {
@@ -28636,8 +28762,8 @@ var SidebarMenuBadge = React59.forwardRef(
28636
28762
  )
28637
28763
  );
28638
28764
  SidebarMenuBadge.displayName = "SidebarMenuBadge";
28639
- var SidebarMenuSkeleton = React59.forwardRef(({ className, showIcon = false, ...props }, ref) => {
28640
- const width = React59.useMemo(() => {
28765
+ var SidebarMenuSkeleton = React58.forwardRef(({ className, showIcon = false, ...props }, ref) => {
28766
+ const width = React58.useMemo(() => {
28641
28767
  return `${Math.floor(Math.random() * 40) + 50}%`;
28642
28768
  }, []);
28643
28769
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsxs)(
@@ -28664,7 +28790,7 @@ var SidebarMenuSkeleton = React59.forwardRef(({ className, showIcon = false, ...
28664
28790
  );
28665
28791
  });
28666
28792
  SidebarMenuSkeleton.displayName = "SidebarMenuSkeleton";
28667
- var SidebarMenuSub = React59.forwardRef(
28793
+ var SidebarMenuSub = React58.forwardRef(
28668
28794
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28669
28795
  "ul",
28670
28796
  {
@@ -28680,9 +28806,9 @@ var SidebarMenuSub = React59.forwardRef(
28680
28806
  )
28681
28807
  );
28682
28808
  SidebarMenuSub.displayName = "SidebarMenuSub";
28683
- var SidebarMenuSubItem = React59.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("li", { ref, ...props }));
28809
+ var SidebarMenuSubItem = React58.forwardRef(({ ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime86.jsx)("li", { ref, ...props }));
28684
28810
  SidebarMenuSubItem.displayName = "SidebarMenuSubItem";
28685
- var SidebarMenuSubButton = React59.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
28811
+ var SidebarMenuSubButton = React58.forwardRef(({ asChild = false, size = "md", isActive, className, ...props }, ref) => {
28686
28812
  const Comp = asChild ? import_react_slot4.Slot : "a";
28687
28813
  return /* @__PURE__ */ (0, import_jsx_runtime86.jsx)(
28688
28814
  Comp,
@@ -28706,10 +28832,10 @@ var SidebarMenuSubButton = React59.forwardRef(({ asChild = false, size = "md", i
28706
28832
  SidebarMenuSubButton.displayName = "SidebarMenuSubButton";
28707
28833
 
28708
28834
  // src/components/ui/slider.tsx
28709
- var React60 = __toESM(require("react"), 1);
28835
+ var React59 = __toESM(require("react"), 1);
28710
28836
  var SliderPrimitive = __toESM(require("@radix-ui/react-slider"), 1);
28711
28837
  var import_jsx_runtime87 = require("react/jsx-runtime");
28712
- var Slider = React60.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
28838
+ var Slider = React59.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime87.jsxs)(
28713
28839
  SliderPrimitive.Root,
28714
28840
  {
28715
28841
  ref,
@@ -28724,25 +28850,25 @@ var Slider = React60.forwardRef(({ className, ...props }, ref) => /* @__PURE__ *
28724
28850
  Slider.displayName = SliderPrimitive.Root.displayName;
28725
28851
 
28726
28852
  // src/components/ui/table.tsx
28727
- var React61 = __toESM(require("react"), 1);
28853
+ var React60 = __toESM(require("react"), 1);
28728
28854
  var import_jsx_runtime88 = require("react/jsx-runtime");
28729
- var Table = React61.forwardRef(
28855
+ var Table = React60.forwardRef(
28730
28856
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("div", { className: "relative w-full overflow-auto", children: /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("table", { ref, className: cn("w-full caption-bottom text-sm", className), ...props }) })
28731
28857
  );
28732
28858
  Table.displayName = "Table";
28733
- var TableHeader = React61.forwardRef(
28859
+ var TableHeader = React60.forwardRef(
28734
28860
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("thead", { ref, className: cn("[&_tr]:border-b", className), ...props })
28735
28861
  );
28736
28862
  TableHeader.displayName = "TableHeader";
28737
- var TableBody = React61.forwardRef(
28863
+ var TableBody = React60.forwardRef(
28738
28864
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("tbody", { ref, className: cn("[&_tr:last-child]:border-0", className), ...props })
28739
28865
  );
28740
28866
  TableBody.displayName = "TableBody";
28741
- var TableFooter = React61.forwardRef(
28867
+ var TableFooter = React60.forwardRef(
28742
28868
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("tfoot", { ref, className: cn("border-t bg-muted/50 font-medium [&>tr]:last:border-b-0", className), ...props })
28743
28869
  );
28744
28870
  TableFooter.displayName = "TableFooter";
28745
- var TableRow = React61.forwardRef(
28871
+ var TableRow = React60.forwardRef(
28746
28872
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
28747
28873
  "tr",
28748
28874
  {
@@ -28753,7 +28879,7 @@ var TableRow = React61.forwardRef(
28753
28879
  )
28754
28880
  );
28755
28881
  TableRow.displayName = "TableRow";
28756
- var TableHead = React61.forwardRef(
28882
+ var TableHead = React60.forwardRef(
28757
28883
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)(
28758
28884
  "th",
28759
28885
  {
@@ -28767,23 +28893,23 @@ var TableHead = React61.forwardRef(
28767
28893
  )
28768
28894
  );
28769
28895
  TableHead.displayName = "TableHead";
28770
- var TableCell = React61.forwardRef(
28896
+ var TableCell = React60.forwardRef(
28771
28897
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("td", { ref, className: cn("p-4 align-middle [&:has([role=checkbox])]:pr-0", className), ...props })
28772
28898
  );
28773
28899
  TableCell.displayName = "TableCell";
28774
- var TableCaption = React61.forwardRef(
28900
+ var TableCaption = React60.forwardRef(
28775
28901
  ({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime88.jsx)("caption", { ref, className: cn("mt-4 text-sm text-muted-foreground", className), ...props })
28776
28902
  );
28777
28903
  TableCaption.displayName = "TableCaption";
28778
28904
 
28779
28905
  // src/components/ui/toast.tsx
28780
- var React62 = __toESM(require("react"), 1);
28906
+ var React61 = __toESM(require("react"), 1);
28781
28907
  var ToastPrimitives = __toESM(require("@radix-ui/react-toast"), 1);
28782
28908
  var import_class_variance_authority8 = require("class-variance-authority");
28783
28909
  var import_lucide_react33 = require("lucide-react");
28784
28910
  var import_jsx_runtime89 = require("react/jsx-runtime");
28785
28911
  var ToastProvider = ToastPrimitives.Provider;
28786
- var ToastViewport = React62.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
28912
+ var ToastViewport = React61.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
28787
28913
  ToastPrimitives.Viewport,
28788
28914
  {
28789
28915
  ref,
@@ -28809,11 +28935,11 @@ var toastVariants = (0, import_class_variance_authority8.cva)(
28809
28935
  }
28810
28936
  }
28811
28937
  );
28812
- var Toast = React62.forwardRef(({ className, variant, ...props }, ref) => {
28938
+ var Toast = React61.forwardRef(({ className, variant, ...props }, ref) => {
28813
28939
  return /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(ToastPrimitives.Root, { ref, className: cn(toastVariants({ variant }), className), ...props });
28814
28940
  });
28815
28941
  Toast.displayName = ToastPrimitives.Root.displayName;
28816
- var ToastAction = React62.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
28942
+ var ToastAction = React61.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
28817
28943
  ToastPrimitives.Action,
28818
28944
  {
28819
28945
  ref,
@@ -28825,7 +28951,7 @@ var ToastAction = React62.forwardRef(({ className, ...props }, ref) => /* @__PUR
28825
28951
  }
28826
28952
  ));
28827
28953
  ToastAction.displayName = ToastPrimitives.Action.displayName;
28828
- var ToastClose = React62.forwardRef(({ className, onClick, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
28954
+ var ToastClose = React61.forwardRef(({ className, onClick, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(
28829
28955
  ToastPrimitives.Close,
28830
28956
  {
28831
28957
  ref,
@@ -28843,9 +28969,9 @@ var ToastClose = React62.forwardRef(({ className, onClick, ...props }, ref) => /
28843
28969
  }
28844
28970
  ));
28845
28971
  ToastClose.displayName = ToastPrimitives.Close.displayName;
28846
- var ToastTitle = React62.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(ToastPrimitives.Title, { ref, className: cn("text-sm font-semibold", className), ...props }));
28972
+ var ToastTitle = React61.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(ToastPrimitives.Title, { ref, className: cn("text-sm font-semibold", className), ...props }));
28847
28973
  ToastTitle.displayName = ToastPrimitives.Title.displayName;
28848
- var ToastDescription = React62.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(ToastPrimitives.Description, { ref, className: cn("text-sm opacity-90", className), ...props }));
28974
+ var ToastDescription = React61.forwardRef(({ className, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime89.jsx)(ToastPrimitives.Description, { ref, className: cn("text-sm opacity-90", className), ...props }));
28849
28975
  ToastDescription.displayName = ToastPrimitives.Description.displayName;
28850
28976
 
28851
28977
  // src/components/ui/toaster.tsx
@@ -28868,7 +28994,7 @@ function Toaster2() {
28868
28994
  }
28869
28995
 
28870
28996
  // src/components/ui/toggle.tsx
28871
- var React63 = __toESM(require("react"), 1);
28997
+ var React62 = __toESM(require("react"), 1);
28872
28998
  var TogglePrimitive = __toESM(require("@radix-ui/react-toggle"), 1);
28873
28999
  var import_class_variance_authority9 = require("class-variance-authority");
28874
29000
  var import_jsx_runtime91 = require("react/jsx-runtime");
@@ -28892,21 +29018,21 @@ var toggleVariants = (0, import_class_variance_authority9.cva)(
28892
29018
  }
28893
29019
  }
28894
29020
  );
28895
- var Toggle = React63.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(TogglePrimitive.Root, { ref, className: cn(toggleVariants({ variant, size, className })), ...props }));
29021
+ var Toggle = React62.forwardRef(({ className, variant, size, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime91.jsx)(TogglePrimitive.Root, { ref, className: cn(toggleVariants({ variant, size, className })), ...props }));
28896
29022
  Toggle.displayName = TogglePrimitive.Root.displayName;
28897
29023
 
28898
29024
  // src/components/ui/toggle-group.tsx
28899
- var React64 = __toESM(require("react"), 1);
29025
+ var React63 = __toESM(require("react"), 1);
28900
29026
  var ToggleGroupPrimitive = __toESM(require("@radix-ui/react-toggle-group"), 1);
28901
29027
  var import_jsx_runtime92 = require("react/jsx-runtime");
28902
- var ToggleGroupContext = React64.createContext({
29028
+ var ToggleGroupContext = React63.createContext({
28903
29029
  size: "default",
28904
29030
  variant: "default"
28905
29031
  });
28906
- var ToggleGroup = React64.forwardRef(({ className, variant, size, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ToggleGroupPrimitive.Root, { ref, className: cn("flex items-center justify-center gap-1", className), ...props, children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ToggleGroupContext.Provider, { value: { variant, size }, children }) }));
29032
+ var ToggleGroup = React63.forwardRef(({ className, variant, size, children, ...props }, ref) => /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ToggleGroupPrimitive.Root, { ref, className: cn("flex items-center justify-center gap-1", className), ...props, children: /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(ToggleGroupContext.Provider, { value: { variant, size }, children }) }));
28907
29033
  ToggleGroup.displayName = ToggleGroupPrimitive.Root.displayName;
28908
- var ToggleGroupItem = React64.forwardRef(({ className, children, variant, size, ...props }, ref) => {
28909
- const context = React64.useContext(ToggleGroupContext);
29034
+ var ToggleGroupItem = React63.forwardRef(({ className, children, variant, size, ...props }, ref) => {
29035
+ const context = React63.useContext(ToggleGroupContext);
28910
29036
  return /* @__PURE__ */ (0, import_jsx_runtime92.jsx)(
28911
29037
  ToggleGroupPrimitive.Item,
28912
29038
  {
@@ -30063,6 +30189,7 @@ var useAuth = () => {
30063
30189
  DropdownMenuSubContent,
30064
30190
  DropdownMenuSubTrigger,
30065
30191
  DropdownMenuTrigger,
30192
+ EXPERIENCE_SETTINGS_STORAGE_KEY,
30066
30193
  EmptyState,
30067
30194
  ErrorBoundary,
30068
30195
  Eyebrow,
@@ -30086,6 +30213,7 @@ var useAuth = () => {
30086
30213
  InputOTPSlot,
30087
30214
  JellyButton,
30088
30215
  JellyButtonOriginal,
30216
+ LEGACY_THEME_STORAGE_KEY,
30089
30217
  Label,
30090
30218
  LoadingScreen,
30091
30219
  LoadingSpinner,
@@ -30202,6 +30330,9 @@ var useAuth = () => {
30202
30330
  SonnerToaster,
30203
30331
  Switch,
30204
30332
  SwitchField,
30333
+ THEME_PREFERENCE_CHANGE_EVENT,
30334
+ THEME_PREFERENCE_STORAGE_KEY,
30335
+ THEME_STORAGE_KEY,
30205
30336
  Table,
30206
30337
  TableBody,
30207
30338
  TableCaption,
@@ -30271,12 +30402,20 @@ var useAuth = () => {
30271
30402
  getSupabase,
30272
30403
  getSupabasePublic,
30273
30404
  isRuntimeDev,
30405
+ isStoredThemeMode,
30274
30406
  navigationMenuTriggerStyle,
30407
+ normalizeStoredThemePreference,
30275
30408
  parseAssetId,
30409
+ parseStoredThemePreference,
30410
+ persistThemePreferenceSelection,
30276
30411
  readStoredLayoutMode,
30412
+ readStoredThemeMode,
30277
30413
  reducer,
30414
+ resolveAppliedThemeMode,
30278
30415
  resolveCupcodeAppVersion,
30279
30416
  resolveOidcEndpoints,
30417
+ resolveStoredThemePreference,
30418
+ resolveSystemThemeMode,
30280
30419
  resolveTelescupImageURL,
30281
30420
  responsiveSizeClasses,
30282
30421
  setCupcodeRuntimeEnv,