@flamingo-stack/openframe-frontend-core 0.0.358 → 0.0.359
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/{chunk-BJ6J6WLA.js → chunk-J4SQTCSA.js} +2 -2
- package/dist/chunk-J4SQTCSA.js.map +1 -0
- package/dist/{chunk-SAIKHQTP.cjs → chunk-VPP65ZN7.cjs} +2 -2
- package/dist/{chunk-SAIKHQTP.cjs.map → chunk-VPP65ZN7.cjs.map} +1 -1
- package/dist/components/docs/index.cjs +2 -2
- package/dist/components/docs/index.js +1 -1
- package/dist/components/docs/use-document-tree.d.ts.map +1 -1
- package/dist/components/help-center-pages/index.cjs +2 -2
- package/dist/components/help-center-pages/index.js +1 -1
- package/dist/components/index.cjs +90 -92
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +3 -5
- package/dist/components/index.js.map +1 -1
- package/dist/components/unified-filter-logic.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/components/docs/use-document-tree.ts +3 -1
- package/src/components/unified-filter-logic.tsx +5 -4
- package/dist/chunk-BJ6J6WLA.js.map +0 -1
package/dist/components/index.js
CHANGED
|
@@ -54,7 +54,7 @@ import {
|
|
|
54
54
|
useDocNavigation,
|
|
55
55
|
useDocumentTree,
|
|
56
56
|
useScrollSpy
|
|
57
|
-
} from "../chunk-
|
|
57
|
+
} from "../chunk-J4SQTCSA.js";
|
|
58
58
|
import {
|
|
59
59
|
FileDownloadCard,
|
|
60
60
|
GoogleSheetsViewer,
|
|
@@ -840,6 +840,7 @@ import {
|
|
|
840
840
|
getEmbedProxyAuth,
|
|
841
841
|
getPersistedProxyEmail,
|
|
842
842
|
progressColorByVariant,
|
|
843
|
+
scrollElementIntoView,
|
|
843
844
|
setEmbedProxyAuth,
|
|
844
845
|
showCommandApprovalToast,
|
|
845
846
|
showToast,
|
|
@@ -2364,10 +2365,7 @@ function useUnifiedFiltering(config) {
|
|
|
2364
2365
|
router.push(newUrl, { scroll: false });
|
|
2365
2366
|
if (preserveScroll) {
|
|
2366
2367
|
setTimeout(() => {
|
|
2367
|
-
|
|
2368
|
-
top: currentScrollY,
|
|
2369
|
-
behavior: "smooth"
|
|
2370
|
-
});
|
|
2368
|
+
scrollElementIntoView(document.body, { adjustTargetY: () => currentScrollY });
|
|
2371
2369
|
}, 100);
|
|
2372
2370
|
}
|
|
2373
2371
|
});
|