@getcronit/pylon 3.0.0-canary-20250303121751.7a1e28546f22cace7b91da6877508f76107e42aa → 3.0.0-canary-20250312165208.46197dc9c25d1dd116094865809ccb1f6dbab78e
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 +1 -1
- package/dist/index.js +3 -780
- package/dist/index.js.map +4 -4
- package/dist/pages/index.d.ts +1 -2
- package/dist/pages/index.js +1 -4
- package/dist/pages/index.js.map +2 -2
- package/package.json +8 -25
- package/dist/plugins/use-pages/build/app-utils.d.ts +0 -7
- package/dist/plugins/use-pages/build/index.d.ts +0 -2
- package/dist/plugins/use-pages/build/plugins/image-plugin.d.ts +0 -2
- package/dist/plugins/use-pages/build/plugins/inject-app-hydration.d.ts +0 -2
- package/dist/plugins/use-pages/build/plugins/postcss-plugin.d.ts +0 -2
- package/dist/plugins/use-pages/index.d.ts +0 -4
- package/dist/plugins/use-pages/setup/app-loader.d.ts +0 -14
- package/dist/plugins/use-pages/setup/index.d.ts +0 -10
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import React from 'react';
|
|
2
|
-
import { PageProps } from '..';
|
|
3
|
-
export declare const AppLoader: (props: {
|
|
4
|
-
client: any;
|
|
5
|
-
pylonData: {
|
|
6
|
-
pageProps: Omit<PageProps, "data">;
|
|
7
|
-
cacheSnapshot?: any;
|
|
8
|
-
};
|
|
9
|
-
App: React.FC<{
|
|
10
|
-
pageProps: PageProps;
|
|
11
|
-
}>;
|
|
12
|
-
Router: React.FC<any>;
|
|
13
|
-
routerProps: any;
|
|
14
|
-
}) => any;
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { type Plugin } from '../../../index';
|
|
2
|
-
export interface PageData {
|
|
3
|
-
}
|
|
4
|
-
export type PageProps = {
|
|
5
|
-
data: PageData;
|
|
6
|
-
params: Record<string, string>;
|
|
7
|
-
searchParams: Record<string, string>;
|
|
8
|
-
path: string;
|
|
9
|
-
};
|
|
10
|
-
export declare const setup: Plugin['setup'];
|