@flamingo-stack/openframe-frontend-core 0.0.358-snapshot.20260702031458 → 0.0.358

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.
@@ -54,7 +54,7 @@ import {
54
54
  useDocNavigation,
55
55
  useDocumentTree,
56
56
  useScrollSpy
57
- } from "../chunk-J4SQTCSA.js";
57
+ } from "../chunk-BJ6J6WLA.js";
58
58
  import {
59
59
  FileDownloadCard,
60
60
  GoogleSheetsViewer,
@@ -840,7 +840,6 @@ import {
840
840
  getEmbedProxyAuth,
841
841
  getPersistedProxyEmail,
842
842
  progressColorByVariant,
843
- scrollElementIntoView,
844
843
  setEmbedProxyAuth,
845
844
  showCommandApprovalToast,
846
845
  showToast,
@@ -2365,7 +2364,10 @@ function useUnifiedFiltering(config) {
2365
2364
  router.push(newUrl, { scroll: false });
2366
2365
  if (preserveScroll) {
2367
2366
  setTimeout(() => {
2368
- scrollElementIntoView(document.body, { adjustTargetY: () => currentScrollY });
2367
+ window.scrollTo({
2368
+ top: currentScrollY,
2369
+ behavior: "smooth"
2370
+ });
2369
2371
  }, 100);
2370
2372
  }
2371
2373
  });