create-pylon 1.2.0-canary-20250218161302.e920a4951f1801b7534212a343297c7606c530fa → 1.2.0-canary-20250218171127.add4312a240cd5c097a2385ffdc40e52b21c56e5

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "create-pylon",
3
3
  "type": "module",
4
- "version": "1.2.0-canary-20250218161302.e920a4951f1801b7534212a343297c7606c530fa",
4
+ "version": "1.2.0-canary-20250218171127.add4312a240cd5c097a2385ffdc40e52b21c56e5",
5
5
  "description": "CLI for creating a Pylon",
6
6
  "bin": "./dist/index.js",
7
7
  "files": [
@@ -1,7 +1,7 @@
1
- import {Button} from '@/components/ui/button'
2
- import {PageProps} from '@getcronit/pylon'
1
+ import { Button } from '@/components/ui/button'
2
+ import { PageProps } from '@getcronit/pylon/pages'
3
3
 
4
- const Page: React.FC<PageProps> = ({data}) => {
4
+ const Page: React.FC<PageProps> = ({ data }) => {
5
5
  return (
6
6
  <div>
7
7
  <title>{data.hello}</title>
@@ -5,6 +5,8 @@ declare module '@getcronit/pylon' {
5
5
  interface Bindings {}
6
6
 
7
7
  interface Variables {}
8
+ }
8
9
 
10
+ declare module '@getcronit/pylon/pages' {
9
11
  interface PageData extends ReturnType<typeof useQuery> {}
10
12
  }