@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.
- package/dist/{chunk-J4SQTCSA.js → chunk-BJ6J6WLA.js} +2 -2
- package/dist/chunk-BJ6J6WLA.js.map +1 -0
- package/dist/{chunk-VPP65ZN7.cjs → chunk-SAIKHQTP.cjs} +2 -2
- package/dist/{chunk-VPP65ZN7.cjs.map → chunk-SAIKHQTP.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 +92 -90
- package/dist/components/index.cjs.map +1 -1
- package/dist/components/index.js +5 -3
- 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 +1 -3
- package/src/components/unified-filter-logic.tsx +4 -5
- package/dist/chunk-J4SQTCSA.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-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
|
-
|
|
2367
|
+
window.scrollTo({
|
|
2368
|
+
top: currentScrollY,
|
|
2369
|
+
behavior: "smooth"
|
|
2370
|
+
});
|
|
2369
2371
|
}, 100);
|
|
2370
2372
|
}
|
|
2371
2373
|
});
|