@alignable/bifrost 0.0.31 → 0.0.32
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/index.d.ts +2 -2
- package/dist/proxy/pages/onBeforeRender.d.ts +1 -1
- package/dist/proxy/pages/onRenderClient.d.ts +1 -1
- package/dist/proxy/pages/onRenderHtml.d.ts +1 -1
- package/dist/proxy/pages/restorationVisit/onRenderClient.d.ts +1 -1
- package/dist/renderer/getConfigOrPageContext.d.ts +1 -1
- package/dist/renderer/onRenderClient.d.ts +1 -1
- package/dist/renderer/onRenderHtml.d.ts +1 -1
- package/dist/renderer/usePageContext.d.ts +1 -1
- package/dist/renderer/utils/buildHead.d.ts +1 -1
- package/package.json +1 -1
- package/dist/{internal-b4ad8d6b.d.ts → internal-1d9cac7c.d.ts} +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export { Config, GuardAsync, GuardSync, Meta, OnBeforePrerenderStartAsync, OnBeforePrerenderStartSync, OnBeforeRenderAsync, OnBeforeRenderSync, OnBeforeRouteAsync, OnBeforeRouteSync, OnHydrationEndAsync, OnHydrationEndSync, OnPageTransitionEndAsync, OnPageTransitionEndSync, OnPageTransitionStartAsync, OnPageTransitionStartSync, OnPrerenderStartAsync, OnPrerenderStartSync, OnRenderClientAsync, OnRenderClientSync, OnRenderHtmlAsync, OnRenderHtmlSync, RouteAsync, RouteSync } from 'vike/types';
|
|
2
2
|
import { navigate as navigate$1 } from 'vike/client/router';
|
|
3
|
-
import { A as ApplicationFacingPageContext, a as AugmentMe } from './internal-
|
|
4
|
-
export { N as BifrostConfig, P as BifrostProxyConfig, D as DocumentProps, b as LayoutComponent, L as LayoutMap, c as PageContext } from './internal-
|
|
3
|
+
import { A as ApplicationFacingPageContext, a as AugmentMe } from './internal-1d9cac7c.js';
|
|
4
|
+
export { N as BifrostConfig, P as BifrostProxyConfig, D as DocumentProps, b as LayoutComponent, L as LayoutMap, c as PageContext } from './internal-1d9cac7c.js';
|
|
5
5
|
export { PageContextProvider, usePageContext } from './renderer/usePageContext.js';
|
|
6
6
|
import 'react';
|
|
7
7
|
import './proxy/pages/_config.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vike_dist_esm_node_runtime_html_renderHtml_js from 'vike/dist/esm/node/runtime/html/renderHtml.js';
|
|
2
|
-
import { i as PageContextProxyServer } from '../../internal-
|
|
2
|
+
import { i as PageContextProxyServer } from '../../internal-1d9cac7c.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'vike/types';
|
|
5
5
|
import './_config.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as vike_dist_esm_node_runtime_html_renderHtml_js from 'vike/dist/esm/node/runtime/html/renderHtml.js';
|
|
2
|
-
import { f as PageContextNoProxyServer } from '../internal-
|
|
2
|
+
import { f as PageContextNoProxyServer } from '../internal-1d9cac7c.js';
|
|
3
3
|
import 'react';
|
|
4
4
|
import 'vike/types';
|
|
5
5
|
import '../proxy/pages/_config.js';
|
package/package.json
CHANGED
|
@@ -83,9 +83,9 @@ interface ApplicationFacingPageContext {
|
|
|
83
83
|
pageProps: PageProps;
|
|
84
84
|
documentProps?: DocumentProps;
|
|
85
85
|
layoutProps: AugmentMe.LayoutProps;
|
|
86
|
+
redirectTo?: string;
|
|
86
87
|
}
|
|
87
88
|
interface PageContextNoProxyCommon extends ApplicationFacingPageContext {
|
|
88
|
-
redirectTo?: string;
|
|
89
89
|
config: NoProxyConfig;
|
|
90
90
|
}
|
|
91
91
|
type PageContextNoProxyServer = PageContextBuiltInServer<Page> & PageContextNoProxyCommon;
|