@akanjs/next 0.0.40 → 0.0.42
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/index.d.ts +1 -33
- package/index.js +2723 -20
- package/package.json +35 -2
- package/src/bootCsr.d.ts +1 -3
- package/src/createNextMiddleware.d.ts +2 -5
- package/src/createRobotPage.d.ts +2 -5
- package/src/createSitemapPage.d.ts +2 -5
- package/src/index.d.ts +20 -33
- package/src/lazy.d.ts +3 -6
- package/src/makePageProto.d.ts +3 -15
- package/src/types.d.ts +2 -4
- package/src/useCamera.d.ts +4 -8
- package/src/useCodepush.d.ts +2 -36
- package/src/useContact.d.ts +3 -7
- package/src/useCsrValues.d.ts +22 -36
- package/src/useDebounce.d.ts +1 -3
- package/src/useFetch.d.ts +1 -3
- package/src/useGeoLocation.d.ts +4 -9
- package/src/useHistory.d.ts +4 -8
- package/src/useInterval.d.ts +1 -5
- package/src/useLocation.d.ts +3 -7
- package/src/usePurchase.d.ts +5 -6
- package/src/usePushNoti.d.ts +1 -3
- package/src/useThrottle.d.ts +1 -3
- package/csrTypes-B6ATv9-y.d.ts +0 -88
- package/src/bootCsr.js +0 -206
- package/src/createNextMiddleware.js +0 -88
- package/src/createRobotPage.js +0 -39
- package/src/createSitemapPage.js +0 -34
- package/src/index.js +0 -82
- package/src/lazy.js +0 -40
- package/src/makePageProto.js +0 -147
- package/src/types.js +0 -15
- package/src/useCamera.js +0 -114
- package/src/useCodepush.js +0 -115
- package/src/useContact.js +0 -73
- package/src/useCsrValues.js +0 -924
- package/src/useDebounce.js +0 -42
- package/src/useFetch.js +0 -54
- package/src/useGeoLocation.js +0 -51
- package/src/useHistory.js +0 -88
- package/src/useInterval.js +0 -49
- package/src/useLocation.js +0 -92
- package/src/usePurchase.js +0 -139
- package/src/usePushNoti.js +0 -68
- package/src/useThrottle.js +0 -44
package/index.d.ts
CHANGED
|
@@ -1,33 +1 @@
|
|
|
1
|
-
export
|
|
2
|
-
export { useFetch } from './src/useFetch.js';
|
|
3
|
-
export { lazy } from './src/lazy.js';
|
|
4
|
-
export { makePageProto } from './src/makePageProto.js';
|
|
5
|
-
export { useDebounce } from './src/useDebounce.js';
|
|
6
|
-
export { useInterval } from './src/useInterval.js';
|
|
7
|
-
export { bootCsr } from './src/bootCsr.js';
|
|
8
|
-
export { useCamera } from './src/useCamera.js';
|
|
9
|
-
export { useContact } from './src/useContact.js';
|
|
10
|
-
export { usePushNoti } from './src/usePushNoti.js';
|
|
11
|
-
export { useGeoLocation } from './src/useGeoLocation.js';
|
|
12
|
-
export { useCodepush } from './src/useCodepush.js';
|
|
13
|
-
export { CdvProductType, PlatformType, ProductType, usePurchase } from './src/usePurchase.js';
|
|
14
|
-
export { useCsrValues } from './src/useCsrValues.js';
|
|
15
|
-
export { createRobotPage } from './src/createRobotPage.js';
|
|
16
|
-
export { createSitemapPage } from './src/createSitemapPage.js';
|
|
17
|
-
export { createNextMiddleware } from './src/createNextMiddleware.js';
|
|
18
|
-
export { useThrottle } from './src/useThrottle.js';
|
|
19
|
-
export { useHistory } from './src/useHistory.js';
|
|
20
|
-
export { useLocation } from './src/useLocation.js';
|
|
21
|
-
import 'next/dynamic';
|
|
22
|
-
import 'react';
|
|
23
|
-
import '@capacitor/camera';
|
|
24
|
-
import '@capacitor-community/contacts';
|
|
25
|
-
import '@capacitor/geolocation';
|
|
26
|
-
import '@capacitor/core';
|
|
27
|
-
import 'dayjs';
|
|
28
|
-
import '@react-spring/web';
|
|
29
|
-
import '@use-gesture/react/dist/declarations/src/types';
|
|
30
|
-
import './csrTypes-B6ATv9-y.js';
|
|
31
|
-
import 'react-spring';
|
|
32
|
-
import 'next';
|
|
33
|
-
import 'next/server';
|
|
1
|
+
export * from "./src";
|