@akanjs/next 0.9.4 → 0.9.6
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/cjs/useCsrValues.js +32 -13
- package/cjs/useHistory.js +31 -9
- package/cjs/useLocation.js +4 -2
- package/esm/useCsrValues.js +32 -13
- package/esm/useHistory.js +31 -9
- package/esm/useLocation.js +4 -2
- package/makePageProto.d.ts +1 -1
- package/package.json +1 -1
- package/useHistory.d.ts +6 -3
- package/usePage.d.ts +1 -1
package/cjs/useCsrValues.js
CHANGED
|
@@ -513,42 +513,61 @@ const useCsrValues = (rootRouteGuide, pathRoutes) => {
|
|
|
513
513
|
const onBack = (0, import_react2.useRef)({});
|
|
514
514
|
const frameRootRef = (0, import_react2.useRef)(null);
|
|
515
515
|
const { getLocation } = (0, import_useLocation.useLocation)({ rootRouteGuide });
|
|
516
|
-
const {
|
|
517
|
-
|
|
518
|
-
|
|
516
|
+
const {
|
|
517
|
+
history,
|
|
518
|
+
setHistoryForward,
|
|
519
|
+
setHistoryBack,
|
|
520
|
+
getNextLocation,
|
|
521
|
+
getCurrentLocation,
|
|
522
|
+
getPrevLocation,
|
|
523
|
+
getScrollTop
|
|
524
|
+
} = (0, import_useHistory.useHistory)([getLocation(window.location.href.replace(window.location.origin, ""))]);
|
|
519
525
|
const [{ location, prevLocation }, setLocationState] = (0, import_react2.useState)({
|
|
520
526
|
location: getCurrentLocation(),
|
|
521
527
|
prevLocation: getPrevLocation()
|
|
522
528
|
});
|
|
523
529
|
const getRouter = (0, import_react2.useCallback)(() => {
|
|
524
530
|
const router3 = {
|
|
525
|
-
push: (href) => {
|
|
531
|
+
push: (href, { scrollToTop } = {}) => {
|
|
526
532
|
const location2 = getCurrentLocation();
|
|
533
|
+
if (location2.href === href) {
|
|
534
|
+
if (!pageContentRef.current)
|
|
535
|
+
return;
|
|
536
|
+
pageContentRef.current.scrollTop = getScrollTop(location2);
|
|
537
|
+
return;
|
|
538
|
+
}
|
|
527
539
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
528
|
-
setHistoryForward({ type: "push", location: getLocation(href), scrollTop });
|
|
540
|
+
setHistoryForward({ type: "push", location: getLocation(href), scrollTop, scrollToTop });
|
|
529
541
|
setLocationState({ location: getCurrentLocation(), prevLocation: location2 });
|
|
530
542
|
window.history.pushState({}, "", href);
|
|
531
543
|
},
|
|
532
|
-
replace: (href) => {
|
|
544
|
+
replace: (href, { scrollToTop } = {}) => {
|
|
545
|
+
if (location.href === href) {
|
|
546
|
+
if (!pageContentRef.current)
|
|
547
|
+
return;
|
|
548
|
+
pageContentRef.current.scrollTop = getScrollTop(location);
|
|
549
|
+
return;
|
|
550
|
+
}
|
|
533
551
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
534
|
-
setHistoryForward({ type: "replace", location: getLocation(href), scrollTop });
|
|
552
|
+
setHistoryForward({ type: "replace", location: getLocation(href), scrollTop, scrollToTop });
|
|
535
553
|
setLocationState({ location: getCurrentLocation(), prevLocation });
|
|
536
554
|
window.history.replaceState({}, "", href);
|
|
537
555
|
},
|
|
538
556
|
refresh: () => {
|
|
539
557
|
window.location.reload();
|
|
540
558
|
},
|
|
541
|
-
back: async () => {
|
|
559
|
+
back: async ({ scrollToTop } = {}) => {
|
|
542
560
|
const location2 = getCurrentLocation();
|
|
543
561
|
await onBack.current[location2.pathRoute.pageState.transition]?.();
|
|
544
562
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
545
|
-
setHistoryBack({ type: "back", location: location2, scrollTop });
|
|
563
|
+
setHistoryBack({ type: "back", location: location2, scrollTop, scrollToTop });
|
|
546
564
|
setLocationState({ location: getCurrentLocation(), prevLocation: getPrevLocation() });
|
|
547
565
|
window.history.back();
|
|
548
566
|
}
|
|
549
567
|
};
|
|
550
568
|
window.onpopstate = async (ev) => {
|
|
551
|
-
const
|
|
569
|
+
const href = window.location.href.replace(window.location.origin, "");
|
|
570
|
+
const routeType = href === getNextLocation()?.href ? "forward" : href === getPrevLocation()?.href ? "back" : null;
|
|
552
571
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
553
572
|
if (!routeType)
|
|
554
573
|
return;
|
|
@@ -594,16 +613,16 @@ const useCsrValues = (rootRouteGuide, pathRoutes) => {
|
|
|
594
613
|
};
|
|
595
614
|
(0, import_react2.useEffect)(() => {
|
|
596
615
|
if (pageContentRef.current)
|
|
597
|
-
pageContentRef.current.scrollTop = getScrollTop(location
|
|
616
|
+
pageContentRef.current.scrollTop = getScrollTop(location);
|
|
598
617
|
if (prevPageContentRef.current)
|
|
599
|
-
prevPageContentRef.current.scrollTop = prevLocation ? getScrollTop(prevLocation
|
|
618
|
+
prevPageContentRef.current.scrollTop = prevLocation ? getScrollTop(prevLocation) : 0;
|
|
600
619
|
void import_app.App.addListener("backButton", () => {
|
|
601
620
|
router2.back();
|
|
602
621
|
});
|
|
603
622
|
return () => {
|
|
604
623
|
void import_app.App.removeAllListeners();
|
|
605
624
|
};
|
|
606
|
-
}, [location.
|
|
625
|
+
}, [location.href]);
|
|
607
626
|
return {
|
|
608
627
|
...routeState,
|
|
609
628
|
...useCsrTransitionMap[location.pathRoute.pageState.transition]
|
package/cjs/useHistory.js
CHANGED
|
@@ -31,10 +31,14 @@ const useHistory = (locations = []) => {
|
|
|
31
31
|
cachedLocationMap: /* @__PURE__ */ new Map(),
|
|
32
32
|
idx: 0
|
|
33
33
|
});
|
|
34
|
-
const setHistoryForward = (0, import_react.useCallback)(({ type, location, scrollTop = 0 }) => {
|
|
34
|
+
const setHistoryForward = (0, import_react.useCallback)(({ type, location, scrollTop = 0, scrollToTop = false }) => {
|
|
35
|
+
const currentLocation = history.current.locations[history.current.idx];
|
|
36
|
+
if (currentLocation)
|
|
37
|
+
history.current.scrollMap.set(currentLocation.href, scrollTop);
|
|
38
|
+
if (scrollToTop)
|
|
39
|
+
history.current.scrollMap.set(location.href, 0);
|
|
35
40
|
history.current.type = "forward";
|
|
36
|
-
history.current.
|
|
37
|
-
history.current.idxMap.set(location.pathname, history.current.idx);
|
|
41
|
+
history.current.idxMap.set(location.href, history.current.idx);
|
|
38
42
|
if (type === "push")
|
|
39
43
|
history.current.locations = [...history.current.locations.slice(0, history.current.idx + 1), location];
|
|
40
44
|
else if (type === "replace")
|
|
@@ -44,22 +48,40 @@ const useHistory = (locations = []) => {
|
|
|
44
48
|
if (type === "push" || type === "popForward")
|
|
45
49
|
history.current.idx++;
|
|
46
50
|
}, []);
|
|
47
|
-
const setHistoryBack = (0, import_react.useCallback)(({ location, scrollTop = 0 }) => {
|
|
51
|
+
const setHistoryBack = (0, import_react.useCallback)(({ location, scrollTop = 0, scrollToTop = false }) => {
|
|
52
|
+
const prevLocation = history.current.locations[history.current.idx - 1];
|
|
53
|
+
if (prevLocation && scrollToTop)
|
|
54
|
+
history.current.scrollMap.set(prevLocation.pathname, 0);
|
|
48
55
|
history.current.type = "back";
|
|
49
|
-
history.current.scrollMap.set(location.
|
|
50
|
-
history.current.idxMap.set(location.
|
|
56
|
+
history.current.scrollMap.set(location.href, scrollTop);
|
|
57
|
+
history.current.idxMap.set(location.href, history.current.idx);
|
|
51
58
|
if (location.pathRoute.pageState.cache)
|
|
52
59
|
history.current.cachedLocationMap.set(location.pathRoute.path, location);
|
|
53
60
|
history.current.idx--;
|
|
54
61
|
}, []);
|
|
62
|
+
const getNextLocation = (0, import_react.useCallback)(() => {
|
|
63
|
+
return history.current.locations[history.current.idx + 1] ?? null;
|
|
64
|
+
}, []);
|
|
55
65
|
const getCurrentLocation = (0, import_react.useCallback)(() => {
|
|
56
66
|
return history.current.locations[history.current.idx];
|
|
57
67
|
}, []);
|
|
58
68
|
const getPrevLocation = (0, import_react.useCallback)(() => {
|
|
59
69
|
return history.current.locations[history.current.idx - 1] ?? null;
|
|
60
70
|
}, []);
|
|
61
|
-
const getScrollTop = (0, import_react.useCallback)((
|
|
62
|
-
|
|
71
|
+
const getScrollTop = (0, import_react.useCallback)((location) => {
|
|
72
|
+
if (location.hash) {
|
|
73
|
+
const element = window.document.getElementById(location.hash);
|
|
74
|
+
return element?.offsetTop ?? 0;
|
|
75
|
+
}
|
|
76
|
+
return history.current.scrollMap.get(location.href) ?? 0;
|
|
63
77
|
}, []);
|
|
64
|
-
return {
|
|
78
|
+
return {
|
|
79
|
+
history,
|
|
80
|
+
setHistoryForward,
|
|
81
|
+
setHistoryBack,
|
|
82
|
+
getNextLocation,
|
|
83
|
+
getCurrentLocation,
|
|
84
|
+
getPrevLocation,
|
|
85
|
+
getScrollTop
|
|
86
|
+
};
|
|
65
87
|
};
|
package/cjs/useLocation.js
CHANGED
|
@@ -68,11 +68,13 @@ const useLocation = ({ rootRouteGuide }) => {
|
|
|
68
68
|
{}
|
|
69
69
|
);
|
|
70
70
|
};
|
|
71
|
-
const
|
|
71
|
+
const hrefWithoutOrigin = href.replace(window.location.origin, "");
|
|
72
|
+
const [hrefWithoutHash, hash = ""] = hrefWithoutOrigin.split("#");
|
|
73
|
+
const [pathname, search] = hrefWithoutHash.split("?");
|
|
72
74
|
const pathRoute = getPathRoute(pathname);
|
|
73
75
|
const params = getParams(pathname, pathRoute);
|
|
74
76
|
const searchParams = getSearchParams(search);
|
|
75
|
-
return { pathname, search, params, searchParams, pathRoute };
|
|
77
|
+
return { pathname, search, params, searchParams, pathRoute, hash, href };
|
|
76
78
|
}, []);
|
|
77
79
|
return { getLocation };
|
|
78
80
|
};
|
package/esm/useCsrValues.js
CHANGED
|
@@ -495,42 +495,61 @@ const useCsrValues = (rootRouteGuide, pathRoutes) => {
|
|
|
495
495
|
const onBack = useRef({});
|
|
496
496
|
const frameRootRef = useRef(null);
|
|
497
497
|
const { getLocation } = useLocation({ rootRouteGuide });
|
|
498
|
-
const {
|
|
499
|
-
|
|
500
|
-
|
|
498
|
+
const {
|
|
499
|
+
history,
|
|
500
|
+
setHistoryForward,
|
|
501
|
+
setHistoryBack,
|
|
502
|
+
getNextLocation,
|
|
503
|
+
getCurrentLocation,
|
|
504
|
+
getPrevLocation,
|
|
505
|
+
getScrollTop
|
|
506
|
+
} = useHistory([getLocation(window.location.href.replace(window.location.origin, ""))]);
|
|
501
507
|
const [{ location, prevLocation }, setLocationState] = useState({
|
|
502
508
|
location: getCurrentLocation(),
|
|
503
509
|
prevLocation: getPrevLocation()
|
|
504
510
|
});
|
|
505
511
|
const getRouter = useCallback(() => {
|
|
506
512
|
const router3 = {
|
|
507
|
-
push: (href) => {
|
|
513
|
+
push: (href, { scrollToTop } = {}) => {
|
|
508
514
|
const location2 = getCurrentLocation();
|
|
515
|
+
if (location2.href === href) {
|
|
516
|
+
if (!pageContentRef.current)
|
|
517
|
+
return;
|
|
518
|
+
pageContentRef.current.scrollTop = getScrollTop(location2);
|
|
519
|
+
return;
|
|
520
|
+
}
|
|
509
521
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
510
|
-
setHistoryForward({ type: "push", location: getLocation(href), scrollTop });
|
|
522
|
+
setHistoryForward({ type: "push", location: getLocation(href), scrollTop, scrollToTop });
|
|
511
523
|
setLocationState({ location: getCurrentLocation(), prevLocation: location2 });
|
|
512
524
|
window.history.pushState({}, "", href);
|
|
513
525
|
},
|
|
514
|
-
replace: (href) => {
|
|
526
|
+
replace: (href, { scrollToTop } = {}) => {
|
|
527
|
+
if (location.href === href) {
|
|
528
|
+
if (!pageContentRef.current)
|
|
529
|
+
return;
|
|
530
|
+
pageContentRef.current.scrollTop = getScrollTop(location);
|
|
531
|
+
return;
|
|
532
|
+
}
|
|
515
533
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
516
|
-
setHistoryForward({ type: "replace", location: getLocation(href), scrollTop });
|
|
534
|
+
setHistoryForward({ type: "replace", location: getLocation(href), scrollTop, scrollToTop });
|
|
517
535
|
setLocationState({ location: getCurrentLocation(), prevLocation });
|
|
518
536
|
window.history.replaceState({}, "", href);
|
|
519
537
|
},
|
|
520
538
|
refresh: () => {
|
|
521
539
|
window.location.reload();
|
|
522
540
|
},
|
|
523
|
-
back: async () => {
|
|
541
|
+
back: async ({ scrollToTop } = {}) => {
|
|
524
542
|
const location2 = getCurrentLocation();
|
|
525
543
|
await onBack.current[location2.pathRoute.pageState.transition]?.();
|
|
526
544
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
527
|
-
setHistoryBack({ type: "back", location: location2, scrollTop });
|
|
545
|
+
setHistoryBack({ type: "back", location: location2, scrollTop, scrollToTop });
|
|
528
546
|
setLocationState({ location: getCurrentLocation(), prevLocation: getPrevLocation() });
|
|
529
547
|
window.history.back();
|
|
530
548
|
}
|
|
531
549
|
};
|
|
532
550
|
window.onpopstate = async (ev) => {
|
|
533
|
-
const
|
|
551
|
+
const href = window.location.href.replace(window.location.origin, "");
|
|
552
|
+
const routeType = href === getNextLocation()?.href ? "forward" : href === getPrevLocation()?.href ? "back" : null;
|
|
534
553
|
const scrollTop = pageContentRef.current?.scrollTop ?? 0;
|
|
535
554
|
if (!routeType)
|
|
536
555
|
return;
|
|
@@ -576,16 +595,16 @@ const useCsrValues = (rootRouteGuide, pathRoutes) => {
|
|
|
576
595
|
};
|
|
577
596
|
useEffect(() => {
|
|
578
597
|
if (pageContentRef.current)
|
|
579
|
-
pageContentRef.current.scrollTop = getScrollTop(location
|
|
598
|
+
pageContentRef.current.scrollTop = getScrollTop(location);
|
|
580
599
|
if (prevPageContentRef.current)
|
|
581
|
-
prevPageContentRef.current.scrollTop = prevLocation ? getScrollTop(prevLocation
|
|
600
|
+
prevPageContentRef.current.scrollTop = prevLocation ? getScrollTop(prevLocation) : 0;
|
|
582
601
|
void App.addListener("backButton", () => {
|
|
583
602
|
router2.back();
|
|
584
603
|
});
|
|
585
604
|
return () => {
|
|
586
605
|
void App.removeAllListeners();
|
|
587
606
|
};
|
|
588
|
-
}, [location.
|
|
607
|
+
}, [location.href]);
|
|
589
608
|
return {
|
|
590
609
|
...routeState,
|
|
591
610
|
...useCsrTransitionMap[location.pathRoute.pageState.transition]
|
package/esm/useHistory.js
CHANGED
|
@@ -9,10 +9,14 @@ const useHistory = (locations = []) => {
|
|
|
9
9
|
cachedLocationMap: /* @__PURE__ */ new Map(),
|
|
10
10
|
idx: 0
|
|
11
11
|
});
|
|
12
|
-
const setHistoryForward = useCallback(({ type, location, scrollTop = 0 }) => {
|
|
12
|
+
const setHistoryForward = useCallback(({ type, location, scrollTop = 0, scrollToTop = false }) => {
|
|
13
|
+
const currentLocation = history.current.locations[history.current.idx];
|
|
14
|
+
if (currentLocation)
|
|
15
|
+
history.current.scrollMap.set(currentLocation.href, scrollTop);
|
|
16
|
+
if (scrollToTop)
|
|
17
|
+
history.current.scrollMap.set(location.href, 0);
|
|
13
18
|
history.current.type = "forward";
|
|
14
|
-
history.current.
|
|
15
|
-
history.current.idxMap.set(location.pathname, history.current.idx);
|
|
19
|
+
history.current.idxMap.set(location.href, history.current.idx);
|
|
16
20
|
if (type === "push")
|
|
17
21
|
history.current.locations = [...history.current.locations.slice(0, history.current.idx + 1), location];
|
|
18
22
|
else if (type === "replace")
|
|
@@ -22,24 +26,42 @@ const useHistory = (locations = []) => {
|
|
|
22
26
|
if (type === "push" || type === "popForward")
|
|
23
27
|
history.current.idx++;
|
|
24
28
|
}, []);
|
|
25
|
-
const setHistoryBack = useCallback(({ location, scrollTop = 0 }) => {
|
|
29
|
+
const setHistoryBack = useCallback(({ location, scrollTop = 0, scrollToTop = false }) => {
|
|
30
|
+
const prevLocation = history.current.locations[history.current.idx - 1];
|
|
31
|
+
if (prevLocation && scrollToTop)
|
|
32
|
+
history.current.scrollMap.set(prevLocation.pathname, 0);
|
|
26
33
|
history.current.type = "back";
|
|
27
|
-
history.current.scrollMap.set(location.
|
|
28
|
-
history.current.idxMap.set(location.
|
|
34
|
+
history.current.scrollMap.set(location.href, scrollTop);
|
|
35
|
+
history.current.idxMap.set(location.href, history.current.idx);
|
|
29
36
|
if (location.pathRoute.pageState.cache)
|
|
30
37
|
history.current.cachedLocationMap.set(location.pathRoute.path, location);
|
|
31
38
|
history.current.idx--;
|
|
32
39
|
}, []);
|
|
40
|
+
const getNextLocation = useCallback(() => {
|
|
41
|
+
return history.current.locations[history.current.idx + 1] ?? null;
|
|
42
|
+
}, []);
|
|
33
43
|
const getCurrentLocation = useCallback(() => {
|
|
34
44
|
return history.current.locations[history.current.idx];
|
|
35
45
|
}, []);
|
|
36
46
|
const getPrevLocation = useCallback(() => {
|
|
37
47
|
return history.current.locations[history.current.idx - 1] ?? null;
|
|
38
48
|
}, []);
|
|
39
|
-
const getScrollTop = useCallback((
|
|
40
|
-
|
|
49
|
+
const getScrollTop = useCallback((location) => {
|
|
50
|
+
if (location.hash) {
|
|
51
|
+
const element = window.document.getElementById(location.hash);
|
|
52
|
+
return element?.offsetTop ?? 0;
|
|
53
|
+
}
|
|
54
|
+
return history.current.scrollMap.get(location.href) ?? 0;
|
|
41
55
|
}, []);
|
|
42
|
-
return {
|
|
56
|
+
return {
|
|
57
|
+
history,
|
|
58
|
+
setHistoryForward,
|
|
59
|
+
setHistoryBack,
|
|
60
|
+
getNextLocation,
|
|
61
|
+
getCurrentLocation,
|
|
62
|
+
getPrevLocation,
|
|
63
|
+
getScrollTop
|
|
64
|
+
};
|
|
43
65
|
};
|
|
44
66
|
export {
|
|
45
67
|
useHistory
|
package/esm/useLocation.js
CHANGED
|
@@ -46,11 +46,13 @@ const useLocation = ({ rootRouteGuide }) => {
|
|
|
46
46
|
{}
|
|
47
47
|
);
|
|
48
48
|
};
|
|
49
|
-
const
|
|
49
|
+
const hrefWithoutOrigin = href.replace(window.location.origin, "");
|
|
50
|
+
const [hrefWithoutHash, hash = ""] = hrefWithoutOrigin.split("#");
|
|
51
|
+
const [pathname, search] = hrefWithoutHash.split("?");
|
|
50
52
|
const pathRoute = getPathRoute(pathname);
|
|
51
53
|
const params = getParams(pathname, pathRoute);
|
|
52
54
|
const searchParams = getSearchParams(search);
|
|
53
|
-
return { pathname, search, params, searchParams, pathRoute };
|
|
55
|
+
return { pathname, search, params, searchParams, pathRoute, hash, href };
|
|
54
56
|
}, []);
|
|
55
57
|
return { getLocation };
|
|
56
58
|
};
|
package/makePageProto.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ export declare const makePageProto: <Locale extends {
|
|
|
25
25
|
qrydesc<ModelKey extends keyof Locale>(model: ModelKey, queryKey: keyof Locale[ModelKey]): string;
|
|
26
26
|
qarg<ModelKey extends keyof Locale>(model: ModelKey, queryKey: keyof Locale[ModelKey], arg: string): string;
|
|
27
27
|
qargdesc<ModelKey extends keyof Locale>(model: ModelKey, queryKey: keyof Locale[ModelKey], arg: string): string;
|
|
28
|
-
trans(translation: Record<"en" | "ko" | (string & {}),
|
|
28
|
+
trans<Returns extends ReactNode>(translation: Record<"en" | "ko" | (string & {}), Returns>): Returns extends string ? string : Returns;
|
|
29
29
|
};
|
|
30
30
|
lang: string;
|
|
31
31
|
};
|
package/package.json
CHANGED
package/useHistory.d.ts
CHANGED
|
@@ -3,18 +3,21 @@ interface setForwardOptions {
|
|
|
3
3
|
type: "push" | "replace" | "popForward";
|
|
4
4
|
location: Location;
|
|
5
5
|
scrollTop?: number;
|
|
6
|
+
scrollToTop?: boolean;
|
|
6
7
|
}
|
|
7
8
|
interface setBackOptions {
|
|
8
9
|
type: "back" | "popBack";
|
|
9
10
|
location: Location;
|
|
10
11
|
scrollTop?: number;
|
|
12
|
+
scrollToTop?: boolean;
|
|
11
13
|
}
|
|
12
14
|
export declare const useHistory: (locations?: Location[]) => {
|
|
13
15
|
history: import("react").MutableRefObject<History>;
|
|
14
|
-
setHistoryForward: ({ type, location, scrollTop }: setForwardOptions) => void;
|
|
15
|
-
setHistoryBack: ({ location, scrollTop }: setBackOptions) => void;
|
|
16
|
+
setHistoryForward: ({ type, location, scrollTop, scrollToTop }: setForwardOptions) => void;
|
|
17
|
+
setHistoryBack: ({ location, scrollTop, scrollToTop }: setBackOptions) => void;
|
|
18
|
+
getNextLocation: () => Location | null;
|
|
16
19
|
getCurrentLocation: () => Location;
|
|
17
20
|
getPrevLocation: () => Location | null;
|
|
18
|
-
getScrollTop: (
|
|
21
|
+
getScrollTop: (location: Location) => number;
|
|
19
22
|
};
|
|
20
23
|
export {};
|
package/usePage.d.ts
CHANGED
|
@@ -68,7 +68,7 @@ export declare const usePage: () => {
|
|
|
68
68
|
[key: string]: Translation;
|
|
69
69
|
};
|
|
70
70
|
}[ModelKey], arg: string): string;
|
|
71
|
-
trans(translation: Record<"en" | "ko"
|
|
71
|
+
trans<Returns extends import("react").ReactNode>(translation: Record<(string & {}) | "en" | "ko", Returns>): Returns extends string ? string : Returns;
|
|
72
72
|
};
|
|
73
73
|
lang: string;
|
|
74
74
|
};
|