├── .gitignore ├── .prettierrc.json ├── LICENSE.txt ├── README.md ├── assets ├── nextjs │ ├── README.md.template │ ├── hooks.ts │ └── makeRoute.tsx ├── qwikcity │ ├── README.md.template │ ├── hooks.ts │ └── makeRoute.tsx ├── react-router │ ├── README.md.template │ ├── index.ts │ └── makeRoute.tsx └── shared │ ├── index.ts.template │ ├── info.ts.template │ ├── openapi-import.template │ ├── openapi-register.template │ ├── openapi.template.ts │ └── utils.ts ├── docs ├── nextjs.md ├── qwikcity.md └── react-router.md ├── examples ├── nextjs │ ├── WALKTHROUGH.md │ ├── finished │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── components.json │ │ ├── declarative-routing.config.json │ │ ├── next.config.mjs │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.js │ │ ├── public │ │ │ ├── next.svg │ │ │ └── vercel.svg │ │ ├── revert │ │ ├── src │ │ │ ├── app │ │ │ │ ├── api │ │ │ │ │ └── pokemon │ │ │ │ │ │ ├── [pokemonId] │ │ │ │ │ │ ├── route.info.ts │ │ │ │ │ │ └── route.ts │ │ │ │ │ │ ├── route.info.ts │ │ │ │ │ │ └── route.ts │ │ │ │ ├── components │ │ │ │ │ ├── PokemonCard.tsx │ │ │ │ │ ├── PokemonGrid.tsx │ │ │ │ │ ├── PokemonInfo.tsx │ │ │ │ │ └── SelectableGrid.tsx │ │ │ │ ├── favicon.ico │ │ │ │ ├── globals.css │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.info.ts │ │ │ │ ├── page.tsx │ │ │ │ ├── pokemon │ │ │ │ │ └── [pokemonId] │ │ │ │ │ │ ├── page.info.ts │ │ │ │ │ │ └── page.tsx │ │ │ │ └── search │ │ │ │ │ ├── SearchList.tsx │ │ │ │ │ ├── page.info.ts │ │ │ │ │ └── page.tsx │ │ │ ├── components │ │ │ │ └── ui │ │ │ │ │ └── input.tsx │ │ │ ├── lib │ │ │ │ └── utils.ts │ │ │ ├── pokemon.ts │ │ │ ├── routes │ │ │ │ ├── README.md │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ ├── makeRoute.tsx │ │ │ │ └── utils.ts │ │ │ └── types.ts │ │ ├── tailwind.config.ts │ │ └── tsconfig.json │ └── starter │ │ ├── .eslintrc.json │ │ ├── .gitignore │ │ ├── README.md │ │ ├── components.json │ │ ├── next.config.mjs │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.js │ │ ├── public │ │ ├── next.svg │ │ └── vercel.svg │ │ ├── revert │ │ ├── src │ │ ├── app │ │ │ ├── api │ │ │ │ └── pokemon │ │ │ │ │ ├── [pokemonId] │ │ │ │ │ └── route.ts │ │ │ │ │ └── route.ts │ │ │ ├── components │ │ │ │ ├── PokemonCard.tsx │ │ │ │ ├── PokemonGrid.tsx │ │ │ │ ├── PokemonInfo.tsx │ │ │ │ └── SelectableGrid.tsx │ │ │ ├── favicon.ico │ │ │ ├── globals.css │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ ├── pokemon │ │ │ │ └── [pokemonId] │ │ │ │ │ └── page.tsx │ │ │ └── search │ │ │ │ ├── SearchList.tsx │ │ │ │ └── page.tsx │ │ ├── components │ │ │ └── ui │ │ │ │ └── input.tsx │ │ ├── lib │ │ │ └── utils.ts │ │ ├── pokemon.ts │ │ └── types.ts │ │ ├── tailwind.config.ts │ │ └── tsconfig.json ├── qwikcity │ ├── WALKTHROUGH.md │ ├── finished │ │ ├── .eslintignore │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc.js │ │ ├── .vscode │ │ │ ├── launch.json │ │ │ ├── qwik-city.code-snippets │ │ │ └── qwik.code-snippets │ │ ├── README.md │ │ ├── declarative-routing.config.json │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.cjs │ │ ├── public │ │ │ ├── favicon.svg │ │ │ ├── manifest.json │ │ │ └── robots.txt │ │ ├── src │ │ │ ├── components │ │ │ │ ├── PokemonCard.tsx │ │ │ │ ├── PokemonGrid.tsx │ │ │ │ ├── PokemonInfo.tsx │ │ │ │ ├── SelectableGrid.tsx │ │ │ │ ├── router-head │ │ │ │ │ └── router-head.tsx │ │ │ │ └── ui │ │ │ │ │ └── input.tsx │ │ │ ├── declarativeRoutes │ │ │ │ ├── README.md │ │ │ │ ├── hooks.ts │ │ │ │ ├── index.ts │ │ │ │ └── makeRoute.tsx │ │ │ ├── entry.dev.tsx │ │ │ ├── entry.preview.tsx │ │ │ ├── entry.ssr.tsx │ │ │ ├── global.css │ │ │ ├── lib │ │ │ │ └── utils.ts │ │ │ ├── pokemon.ts │ │ │ ├── root.tsx │ │ │ ├── routes │ │ │ │ ├── api │ │ │ │ │ └── pokemon │ │ │ │ │ │ ├── [pokemonId] │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── index.ts │ │ │ │ ├── index.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── pokemon │ │ │ │ │ └── [pokemonId] │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── routeInfo.ts │ │ │ │ ├── routeInfo.ts │ │ │ │ ├── search │ │ │ │ │ ├── SearchList.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── routeInfo.ts │ │ │ │ └── service-worker.ts │ │ │ └── types.ts │ │ ├── tailwind.config.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts │ └── starter │ │ ├── .eslintignore │ │ ├── .eslintrc.cjs │ │ ├── .gitignore │ │ ├── .prettierignore │ │ ├── .prettierrc.js │ │ ├── .vscode │ │ ├── launch.json │ │ ├── qwik-city.code-snippets │ │ └── qwik.code-snippets │ │ ├── README.md │ │ ├── package.json │ │ ├── pnpm-lock.yaml │ │ ├── postcss.config.cjs │ │ ├── public │ │ ├── favicon.svg │ │ ├── manifest.json │ │ └── robots.txt │ │ ├── src │ │ ├── components │ │ │ ├── PokemonCard.tsx │ │ │ ├── PokemonGrid.tsx │ │ │ ├── PokemonInfo.tsx │ │ │ ├── SelectableGrid.tsx │ │ │ ├── router-head │ │ │ │ └── router-head.tsx │ │ │ └── ui │ │ │ │ └── input.tsx │ │ ├── entry.dev.tsx │ │ ├── entry.preview.tsx │ │ ├── entry.ssr.tsx │ │ ├── global.css │ │ ├── lib │ │ │ └── utils.ts │ │ ├── pokemon.ts │ │ ├── root.tsx │ │ ├── routes │ │ │ ├── api │ │ │ │ └── pokemon │ │ │ │ │ ├── [pokemonId] │ │ │ │ │ └── index.ts │ │ │ │ │ └── index.ts │ │ │ ├── index.tsx │ │ │ ├── layout.tsx │ │ │ ├── pokemon │ │ │ │ └── [pokemonId] │ │ │ │ │ └── index.tsx │ │ │ ├── search │ │ │ │ ├── SearchList.tsx │ │ │ │ └── index.tsx │ │ │ └── service-worker.ts │ │ └── types.ts │ │ ├── tailwind.config.ts │ │ ├── tsconfig.json │ │ └── vite.config.ts └── react-router │ ├── WALKTHROUGH.md │ ├── finished │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── declarative-routing.config.json │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── public │ │ └── vite.svg │ ├── revert │ ├── src │ │ ├── App.tsx │ │ ├── assets │ │ │ └── react.svg │ │ ├── components │ │ │ ├── PokemonCard.tsx │ │ │ ├── PokemonGrid.tsx │ │ │ ├── PokemonInfo.tsx │ │ │ ├── SearchList.tsx │ │ │ ├── SelectableGrid.tsx │ │ │ └── ui │ │ │ │ └── input.tsx │ │ ├── index.css │ │ ├── lib │ │ │ └── utils.ts │ │ ├── main.tsx │ │ ├── pages │ │ │ ├── Detail.tsx │ │ │ ├── Home.tsx │ │ │ ├── Search.tsx │ │ │ └── _Layout.tsx │ │ ├── pokemon.ts │ │ ├── routeTable.ts │ │ ├── routes │ │ │ ├── README.md │ │ │ ├── index.ts │ │ │ └── makeRoute.tsx │ │ ├── types.ts │ │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts │ └── starter │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── postcss.config.js │ ├── public │ └── vite.svg │ ├── revert │ ├── src │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── PokemonCard.tsx │ │ ├── PokemonGrid.tsx │ │ ├── PokemonInfo.tsx │ │ ├── SearchList.tsx │ │ ├── SelectableGrid.tsx │ │ └── ui │ │ │ └── input.tsx │ ├── index.css │ ├── lib │ │ └── utils.ts │ ├── main.tsx │ ├── pages │ │ ├── Detail.tsx │ │ ├── Home.tsx │ │ ├── Search.tsx │ │ └── _Layout.tsx │ ├── pokemon.ts │ ├── routeTable.ts │ ├── types.ts │ └── vite-env.d.ts │ ├── tailwind.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── package.json ├── pnpm-lock.yaml ├── src ├── config.ts ├── index.ts ├── init.ts ├── nextjs │ └── init.ts ├── qwikcity │ └── init.ts ├── react-router │ └── init.ts ├── shared │ ├── build-tools.ts │ ├── build.ts │ ├── utils.ts │ └── watch.ts └── template.ts ├── tsconfig.json └── tsup.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | .idea 4 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/README.md -------------------------------------------------------------------------------- /assets/nextjs/README.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/nextjs/README.md.template -------------------------------------------------------------------------------- /assets/nextjs/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/nextjs/hooks.ts -------------------------------------------------------------------------------- /assets/nextjs/makeRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/nextjs/makeRoute.tsx -------------------------------------------------------------------------------- /assets/qwikcity/README.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/qwikcity/README.md.template -------------------------------------------------------------------------------- /assets/qwikcity/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/qwikcity/hooks.ts -------------------------------------------------------------------------------- /assets/qwikcity/makeRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/qwikcity/makeRoute.tsx -------------------------------------------------------------------------------- /assets/react-router/README.md.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/react-router/README.md.template -------------------------------------------------------------------------------- /assets/react-router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/react-router/index.ts -------------------------------------------------------------------------------- /assets/react-router/makeRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/react-router/makeRoute.tsx -------------------------------------------------------------------------------- /assets/shared/index.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/shared/index.ts.template -------------------------------------------------------------------------------- /assets/shared/info.ts.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/shared/info.ts.template -------------------------------------------------------------------------------- /assets/shared/openapi-import.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/shared/openapi-import.template -------------------------------------------------------------------------------- /assets/shared/openapi-register.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/shared/openapi-register.template -------------------------------------------------------------------------------- /assets/shared/openapi.template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/shared/openapi.template.ts -------------------------------------------------------------------------------- /assets/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/assets/shared/utils.ts -------------------------------------------------------------------------------- /docs/nextjs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/docs/nextjs.md -------------------------------------------------------------------------------- /docs/qwikcity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/docs/qwikcity.md -------------------------------------------------------------------------------- /docs/react-router.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/docs/react-router.md -------------------------------------------------------------------------------- /examples/nextjs/WALKTHROUGH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/WALKTHROUGH.md -------------------------------------------------------------------------------- /examples/nextjs/finished/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /examples/nextjs/finished/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/.gitignore -------------------------------------------------------------------------------- /examples/nextjs/finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/README.md -------------------------------------------------------------------------------- /examples/nextjs/finished/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/components.json -------------------------------------------------------------------------------- /examples/nextjs/finished/declarative-routing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/declarative-routing.config.json -------------------------------------------------------------------------------- /examples/nextjs/finished/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/next.config.mjs -------------------------------------------------------------------------------- /examples/nextjs/finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/package.json -------------------------------------------------------------------------------- /examples/nextjs/finished/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/nextjs/finished/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/postcss.config.js -------------------------------------------------------------------------------- /examples/nextjs/finished/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/public/next.svg -------------------------------------------------------------------------------- /examples/nextjs/finished/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/public/vercel.svg -------------------------------------------------------------------------------- /examples/nextjs/finished/revert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/revert -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/api/pokemon/[pokemonId]/route.info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/api/pokemon/[pokemonId]/route.info.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/api/pokemon/[pokemonId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/api/pokemon/[pokemonId]/route.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/api/pokemon/route.info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/api/pokemon/route.info.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/api/pokemon/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/api/pokemon/route.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/components/PokemonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/components/PokemonCard.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/components/PokemonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/components/PokemonGrid.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/components/PokemonInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/components/PokemonInfo.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/components/SelectableGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/components/SelectableGrid.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/globals.css -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/page.info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/page.info.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/page.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/pokemon/[pokemonId]/page.info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/pokemon/[pokemonId]/page.info.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/pokemon/[pokemonId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/pokemon/[pokemonId]/page.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/search/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/search/SearchList.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/search/page.info.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/search/page.info.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/app/search/page.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/pokemon.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/routes/README.md -------------------------------------------------------------------------------- /examples/nextjs/finished/src/routes/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/routes/hooks.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/routes/index.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/routes/makeRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/routes/makeRoute.tsx -------------------------------------------------------------------------------- /examples/nextjs/finished/src/routes/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/routes/utils.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/src/types.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/tailwind.config.ts -------------------------------------------------------------------------------- /examples/nextjs/finished/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/finished/tsconfig.json -------------------------------------------------------------------------------- /examples/nextjs/starter/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /examples/nextjs/starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/.gitignore -------------------------------------------------------------------------------- /examples/nextjs/starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/README.md -------------------------------------------------------------------------------- /examples/nextjs/starter/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/components.json -------------------------------------------------------------------------------- /examples/nextjs/starter/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/next.config.mjs -------------------------------------------------------------------------------- /examples/nextjs/starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/package.json -------------------------------------------------------------------------------- /examples/nextjs/starter/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/nextjs/starter/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/postcss.config.js -------------------------------------------------------------------------------- /examples/nextjs/starter/public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/public/next.svg -------------------------------------------------------------------------------- /examples/nextjs/starter/public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/public/vercel.svg -------------------------------------------------------------------------------- /examples/nextjs/starter/revert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/revert -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/api/pokemon/[pokemonId]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/api/pokemon/[pokemonId]/route.ts -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/api/pokemon/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/api/pokemon/route.ts -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/components/PokemonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/components/PokemonCard.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/components/PokemonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/components/PokemonGrid.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/components/PokemonInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/components/PokemonInfo.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/components/SelectableGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/components/SelectableGrid.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/favicon.ico -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/globals.css -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/layout.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/page.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/pokemon/[pokemonId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/pokemon/[pokemonId]/page.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/search/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/search/SearchList.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/app/search/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/app/search/page.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/nextjs/starter/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/nextjs/starter/src/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/pokemon.ts -------------------------------------------------------------------------------- /examples/nextjs/starter/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/src/types.ts -------------------------------------------------------------------------------- /examples/nextjs/starter/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/tailwind.config.ts -------------------------------------------------------------------------------- /examples/nextjs/starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/nextjs/starter/tsconfig.json -------------------------------------------------------------------------------- /examples/qwikcity/WALKTHROUGH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/WALKTHROUGH.md -------------------------------------------------------------------------------- /examples/qwikcity/finished/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.eslintignore -------------------------------------------------------------------------------- /examples/qwikcity/finished/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.eslintrc.cjs -------------------------------------------------------------------------------- /examples/qwikcity/finished/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.gitignore -------------------------------------------------------------------------------- /examples/qwikcity/finished/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.prettierignore -------------------------------------------------------------------------------- /examples/qwikcity/finished/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.prettierrc.js -------------------------------------------------------------------------------- /examples/qwikcity/finished/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.vscode/launch.json -------------------------------------------------------------------------------- /examples/qwikcity/finished/.vscode/qwik-city.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.vscode/qwik-city.code-snippets -------------------------------------------------------------------------------- /examples/qwikcity/finished/.vscode/qwik.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/.vscode/qwik.code-snippets -------------------------------------------------------------------------------- /examples/qwikcity/finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/README.md -------------------------------------------------------------------------------- /examples/qwikcity/finished/declarative-routing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/declarative-routing.config.json -------------------------------------------------------------------------------- /examples/qwikcity/finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/package.json -------------------------------------------------------------------------------- /examples/qwikcity/finished/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/qwikcity/finished/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/postcss.config.cjs -------------------------------------------------------------------------------- /examples/qwikcity/finished/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/public/favicon.svg -------------------------------------------------------------------------------- /examples/qwikcity/finished/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/public/manifest.json -------------------------------------------------------------------------------- /examples/qwikcity/finished/public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/components/PokemonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/components/PokemonCard.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/components/PokemonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/components/PokemonGrid.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/components/PokemonInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/components/PokemonInfo.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/components/SelectableGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/components/SelectableGrid.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/components/router-head/router-head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/components/router-head/router-head.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/declarativeRoutes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/declarativeRoutes/README.md -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/declarativeRoutes/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/declarativeRoutes/hooks.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/declarativeRoutes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/declarativeRoutes/index.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/declarativeRoutes/makeRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/declarativeRoutes/makeRoute.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/entry.dev.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/entry.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/entry.preview.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/entry.ssr.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/global.css -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/pokemon.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/root.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/api/pokemon/[pokemonId]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/api/pokemon/[pokemonId]/index.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/api/pokemon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/api/pokemon/index.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/index.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/layout.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/pokemon/[pokemonId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/pokemon/[pokemonId]/index.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/pokemon/[pokemonId]/routeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/pokemon/[pokemonId]/routeInfo.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/routeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/routeInfo.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/search/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/search/SearchList.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/search/index.tsx -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/search/routeInfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/search/routeInfo.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/routes/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/routes/service-worker.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/src/types.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/tailwind.config.ts -------------------------------------------------------------------------------- /examples/qwikcity/finished/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/tsconfig.json -------------------------------------------------------------------------------- /examples/qwikcity/finished/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/finished/vite.config.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.eslintignore -------------------------------------------------------------------------------- /examples/qwikcity/starter/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.eslintrc.cjs -------------------------------------------------------------------------------- /examples/qwikcity/starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.gitignore -------------------------------------------------------------------------------- /examples/qwikcity/starter/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.prettierignore -------------------------------------------------------------------------------- /examples/qwikcity/starter/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.prettierrc.js -------------------------------------------------------------------------------- /examples/qwikcity/starter/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.vscode/launch.json -------------------------------------------------------------------------------- /examples/qwikcity/starter/.vscode/qwik-city.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.vscode/qwik-city.code-snippets -------------------------------------------------------------------------------- /examples/qwikcity/starter/.vscode/qwik.code-snippets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/.vscode/qwik.code-snippets -------------------------------------------------------------------------------- /examples/qwikcity/starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/README.md -------------------------------------------------------------------------------- /examples/qwikcity/starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/package.json -------------------------------------------------------------------------------- /examples/qwikcity/starter/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/qwikcity/starter/postcss.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/postcss.config.cjs -------------------------------------------------------------------------------- /examples/qwikcity/starter/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/public/favicon.svg -------------------------------------------------------------------------------- /examples/qwikcity/starter/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/public/manifest.json -------------------------------------------------------------------------------- /examples/qwikcity/starter/public/robots.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/components/PokemonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/components/PokemonCard.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/components/PokemonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/components/PokemonGrid.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/components/PokemonInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/components/PokemonInfo.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/components/SelectableGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/components/SelectableGrid.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/components/router-head/router-head.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/components/router-head/router-head.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/entry.dev.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/entry.dev.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/entry.preview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/entry.preview.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/entry.ssr.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/entry.ssr.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/global.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/global.css -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/pokemon.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/root.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/api/pokemon/[pokemonId]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/api/pokemon/[pokemonId]/index.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/api/pokemon/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/api/pokemon/index.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/index.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/layout.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/pokemon/[pokemonId]/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/pokemon/[pokemonId]/index.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/search/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/search/SearchList.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/search/index.tsx -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/routes/service-worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/routes/service-worker.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/src/types.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/tailwind.config.ts -------------------------------------------------------------------------------- /examples/qwikcity/starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/tsconfig.json -------------------------------------------------------------------------------- /examples/qwikcity/starter/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/qwikcity/starter/vite.config.ts -------------------------------------------------------------------------------- /examples/react-router/WALKTHROUGH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/WALKTHROUGH.md -------------------------------------------------------------------------------- /examples/react-router/finished/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/.eslintrc.cjs -------------------------------------------------------------------------------- /examples/react-router/finished/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/.gitignore -------------------------------------------------------------------------------- /examples/react-router/finished/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/README.md -------------------------------------------------------------------------------- /examples/react-router/finished/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/components.json -------------------------------------------------------------------------------- /examples/react-router/finished/declarative-routing.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/declarative-routing.config.json -------------------------------------------------------------------------------- /examples/react-router/finished/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/index.html -------------------------------------------------------------------------------- /examples/react-router/finished/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/package.json -------------------------------------------------------------------------------- /examples/react-router/finished/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/react-router/finished/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/postcss.config.js -------------------------------------------------------------------------------- /examples/react-router/finished/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/public/vite.svg -------------------------------------------------------------------------------- /examples/react-router/finished/revert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/revert -------------------------------------------------------------------------------- /examples/react-router/finished/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/App.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/assets/react.svg -------------------------------------------------------------------------------- /examples/react-router/finished/src/components/PokemonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/components/PokemonCard.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/components/PokemonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/components/PokemonGrid.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/components/PokemonInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/components/PokemonInfo.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/components/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/components/SearchList.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/components/SelectableGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/components/SelectableGrid.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/index.css -------------------------------------------------------------------------------- /examples/react-router/finished/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/react-router/finished/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/main.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/pages/Detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/pages/Detail.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/pages/Home.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/pages/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/pages/Search.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/pages/_Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/pages/_Layout.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/pokemon.ts -------------------------------------------------------------------------------- /examples/react-router/finished/src/routeTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/routeTable.ts -------------------------------------------------------------------------------- /examples/react-router/finished/src/routes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/routes/README.md -------------------------------------------------------------------------------- /examples/react-router/finished/src/routes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/routes/index.ts -------------------------------------------------------------------------------- /examples/react-router/finished/src/routes/makeRoute.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/routes/makeRoute.tsx -------------------------------------------------------------------------------- /examples/react-router/finished/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/src/types.ts -------------------------------------------------------------------------------- /examples/react-router/finished/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/react-router/finished/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/tailwind.config.js -------------------------------------------------------------------------------- /examples/react-router/finished/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/tsconfig.json -------------------------------------------------------------------------------- /examples/react-router/finished/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/tsconfig.node.json -------------------------------------------------------------------------------- /examples/react-router/finished/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/finished/vite.config.ts -------------------------------------------------------------------------------- /examples/react-router/starter/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/.eslintrc.cjs -------------------------------------------------------------------------------- /examples/react-router/starter/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/.gitignore -------------------------------------------------------------------------------- /examples/react-router/starter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/README.md -------------------------------------------------------------------------------- /examples/react-router/starter/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/components.json -------------------------------------------------------------------------------- /examples/react-router/starter/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/index.html -------------------------------------------------------------------------------- /examples/react-router/starter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/package.json -------------------------------------------------------------------------------- /examples/react-router/starter/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/react-router/starter/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/postcss.config.js -------------------------------------------------------------------------------- /examples/react-router/starter/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/public/vite.svg -------------------------------------------------------------------------------- /examples/react-router/starter/revert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/revert -------------------------------------------------------------------------------- /examples/react-router/starter/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/App.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/assets/react.svg -------------------------------------------------------------------------------- /examples/react-router/starter/src/components/PokemonCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/components/PokemonCard.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/components/PokemonGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/components/PokemonGrid.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/components/PokemonInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/components/PokemonInfo.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/components/SearchList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/components/SearchList.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/components/SelectableGrid.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/components/SelectableGrid.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/components/ui/input.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/index.css -------------------------------------------------------------------------------- /examples/react-router/starter/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/lib/utils.ts -------------------------------------------------------------------------------- /examples/react-router/starter/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/main.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/pages/Detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/pages/Detail.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/pages/Home.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/pages/Search.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/pages/Search.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/pages/_Layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/pages/_Layout.tsx -------------------------------------------------------------------------------- /examples/react-router/starter/src/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/pokemon.ts -------------------------------------------------------------------------------- /examples/react-router/starter/src/routeTable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/routeTable.ts -------------------------------------------------------------------------------- /examples/react-router/starter/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/src/types.ts -------------------------------------------------------------------------------- /examples/react-router/starter/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /examples/react-router/starter/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/tailwind.config.js -------------------------------------------------------------------------------- /examples/react-router/starter/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/tsconfig.json -------------------------------------------------------------------------------- /examples/react-router/starter/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/tsconfig.node.json -------------------------------------------------------------------------------- /examples/react-router/starter/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/examples/react-router/starter/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/init.ts -------------------------------------------------------------------------------- /src/nextjs/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/nextjs/init.ts -------------------------------------------------------------------------------- /src/qwikcity/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/qwikcity/init.ts -------------------------------------------------------------------------------- /src/react-router/init.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/react-router/init.ts -------------------------------------------------------------------------------- /src/shared/build-tools.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/shared/build-tools.ts -------------------------------------------------------------------------------- /src/shared/build.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/shared/build.ts -------------------------------------------------------------------------------- /src/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/shared/utils.ts -------------------------------------------------------------------------------- /src/shared/watch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/shared/watch.ts -------------------------------------------------------------------------------- /src/template.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/src/template.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProNextJS/declarative-routing/HEAD/tsup.config.js --------------------------------------------------------------------------------