@undp/create-app 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +20 -20
- package/bin/generateFiles/generateEnv.js +21 -0
- package/bin/{templates/next/withoutDataViz/auth/app/layout.tsx → generateFiles/generateLayoutForNext.js} +35 -30
- package/bin/generateFiles/generateNextEnvTypes.js +9 -0
- package/bin/generateFiles/generatePackageJson.js +7 -4
- package/bin/generateFiles/generateStylesCss.js +8 -0
- package/bin/generateFiles/index.js +4 -0
- package/bin/index.js +13 -3
- package/bin/promptUser.js +8 -25
- package/bin/templates/next/auth/app/about/page.tsx +51 -0
- package/bin/templates/next/{withDataViz/auth → auth}/app/login/page.tsx +20 -2
- package/bin/templates/next/auth/app/page.tsx +75 -0
- package/bin/templates/next/auth/app/user/page.tsx +84 -0
- package/bin/templates/next/auth/public/imgs/Zustand-logo.svg +266 -0
- package/bin/templates/next/auth/stores/counter.ts +23 -0
- package/bin/templates/next/basic/app/about/page.tsx +51 -0
- package/bin/templates/next/basic/app/page.tsx +75 -0
- package/bin/templates/next/basic/public/imgs/Zustand-logo.svg +266 -0
- package/bin/templates/next/basic/stores/counter.ts +23 -0
- package/bin/templates/vite/basic/public/imgs/Zustand-logo.svg +266 -0
- package/bin/templates/vite/{withDataViz/query → basic}/src/App.tsx +30 -31
- package/bin/templates/vite/{withDataViz/basic → basic}/src/main.tsx +1 -1
- package/bin/templates/vite/basic/src/stores/counter.ts +23 -0
- package/bin/templates/vite/query/public/imgs/Zustand-logo.svg +266 -0
- package/bin/templates/vite/{withoutDataViz/query → query}/src/App.tsx +39 -10
- package/bin/templates/vite/query/src/stores/counter.ts +23 -0
- package/bin/templates/vite/query+router/public/imgs/Zustand-logo.svg +266 -0
- package/bin/templates/vite/query+router/src/App.tsx +73 -0
- package/bin/templates/vite/{withDataViz/query+router → query+router}/src/routes/queryDemo.tsx +12 -8
- package/bin/templates/vite/query+router/src/stores/counter.ts +23 -0
- package/bin/templates/vite/router/public/imgs/Zustand-logo.svg +266 -0
- package/bin/templates/vite/router/src/App.tsx +73 -0
- package/bin/templates/vite/{withDataViz/router → router}/src/main.tsx +2 -2
- package/bin/templates/vite/{withoutDataViz/router/src/App.tsx → router/src/routes/about.tsx} +14 -7
- package/bin/templates/vite/router/src/stores/counter.ts +23 -0
- package/bin/templates/vite/{withoutDataViz/router → router}/src/styles/style.css +0 -1
- package/package.json +1 -1
- package/bin/templates/next/withDataViz/auth/README.md +0 -108
- package/bin/templates/next/withDataViz/auth/app/about/page.tsx +0 -33
- package/bin/templates/next/withDataViz/auth/app/page.tsx +0 -33
- package/bin/templates/next/withDataViz/auth/app/user/page.tsx +0 -86
- package/bin/templates/next/withDataViz/basic/README.md +0 -56
- package/bin/templates/next/withDataViz/basic/app/about/page.tsx +0 -33
- package/bin/templates/next/withDataViz/basic/app/page.tsx +0 -33
- package/bin/templates/next/withoutDataViz/auth/app/about/page.tsx +0 -33
- package/bin/templates/next/withoutDataViz/auth/app/api/auth/[...all]/route.ts +0 -5
- package/bin/templates/next/withoutDataViz/auth/app/globals.css +0 -3
- package/bin/templates/next/withoutDataViz/auth/app/login/page.tsx +0 -45
- package/bin/templates/next/withoutDataViz/auth/app/page.tsx +0 -33
- package/bin/templates/next/withoutDataViz/auth/app/user/page.tsx +0 -86
- package/bin/templates/next/withoutDataViz/auth/components/Footer.tsx +0 -16
- package/bin/templates/next/withoutDataViz/auth/components/Header.tsx +0 -56
- package/bin/templates/next/withoutDataViz/auth/eslint.config.mjs +0 -103
- package/bin/templates/next/withoutDataViz/auth/lib/auth-client.ts +0 -7
- package/bin/templates/next/withoutDataViz/auth/lib/auth.ts +0 -30
- package/bin/templates/next/withoutDataViz/auth/next.config.ts +0 -10
- package/bin/templates/next/withoutDataViz/auth/postcss.config.mjs +0 -7
- package/bin/templates/next/withoutDataViz/auth/public/next.svg +0 -1
- package/bin/templates/next/withoutDataViz/auth/tsconfig.json +0 -34
- package/bin/templates/next/withoutDataViz/basic/app/about/page.tsx +0 -33
- package/bin/templates/next/withoutDataViz/basic/app/globals.css +0 -3
- package/bin/templates/next/withoutDataViz/basic/app/layout.tsx +0 -31
- package/bin/templates/next/withoutDataViz/basic/app/page.tsx +0 -33
- package/bin/templates/next/withoutDataViz/basic/components/Footer.tsx +0 -16
- package/bin/templates/next/withoutDataViz/basic/components/Header.tsx +0 -27
- package/bin/templates/next/withoutDataViz/basic/eslint.config.mjs +0 -103
- package/bin/templates/next/withoutDataViz/basic/next.config.ts +0 -7
- package/bin/templates/next/withoutDataViz/basic/postcss.config.mjs +0 -7
- package/bin/templates/next/withoutDataViz/basic/public/next.svg +0 -1
- package/bin/templates/next/withoutDataViz/basic/tsconfig.json +0 -34
- package/bin/templates/vite/withDataViz/basic/README.md +0 -76
- package/bin/templates/vite/withDataViz/basic/src/App.tsx +0 -38
- package/bin/templates/vite/withDataViz/basic/src/styles/style.css +0 -4
- package/bin/templates/vite/withDataViz/basic/vite.config.ts +0 -74
- package/bin/templates/vite/withDataViz/query/.prettierrc +0 -10
- package/bin/templates/vite/withDataViz/query/README.md +0 -80
- package/bin/templates/vite/withDataViz/query/public/favicon.ico +0 -0
- package/bin/templates/vite/withDataViz/query/src/styles/style.css +0 -4
- package/bin/templates/vite/withDataViz/query/tailwind.config.js +0 -7
- package/bin/templates/vite/withDataViz/query+router/README.md +0 -112
- package/bin/templates/vite/withDataViz/query+router/src/App.tsx +0 -42
- package/bin/templates/vite/withDataViz/query+router/src/styles/style.css +0 -4
- package/bin/templates/vite/withDataViz/router/.prettierrc +0 -10
- package/bin/templates/vite/withDataViz/router/README.md +0 -107
- package/bin/templates/vite/withDataViz/router/public/favicon.ico +0 -0
- package/bin/templates/vite/withDataViz/router/public/imgs/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withDataViz/router/src/App.tsx +0 -51
- package/bin/templates/vite/withDataViz/router/src/assets/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withDataViz/router/src/routes/about.tsx +0 -73
- package/bin/templates/vite/withDataViz/router/src/styles/style.css +0 -4
- package/bin/templates/vite/withDataViz/router/tailwind.config.js +0 -7
- package/bin/templates/vite/withoutDataViz/basic/.prettierrc +0 -10
- package/bin/templates/vite/withoutDataViz/basic/eslint.config.mjs +0 -97
- package/bin/templates/vite/withoutDataViz/basic/index.html +0 -13
- package/bin/templates/vite/withoutDataViz/basic/public/favicon.ico +0 -0
- package/bin/templates/vite/withoutDataViz/basic/public/imgs/Vitejs-logo.svg +0 -15
- package/bin/templates/vite/withoutDataViz/basic/public/imgs/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/basic/src/App.tsx +0 -38
- package/bin/templates/vite/withoutDataViz/basic/src/assets/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/basic/src/components/Footer.tsx +0 -14
- package/bin/templates/vite/withoutDataViz/basic/src/components/Header.tsx +0 -25
- package/bin/templates/vite/withoutDataViz/basic/src/main.tsx +0 -10
- package/bin/templates/vite/withoutDataViz/basic/src/styles/fonts.css +0 -213
- package/bin/templates/vite/withoutDataViz/basic/src/vite-env.d.ts +0 -1
- package/bin/templates/vite/withoutDataViz/basic/tailwind.config.js +0 -7
- package/bin/templates/vite/withoutDataViz/basic/tsconfig.json +0 -29
- package/bin/templates/vite/withoutDataViz/basic/tsconfig.node.json +0 -9
- package/bin/templates/vite/withoutDataViz/query/.prettierrc +0 -10
- package/bin/templates/vite/withoutDataViz/query/eslint.config.mjs +0 -97
- package/bin/templates/vite/withoutDataViz/query/index.html +0 -13
- package/bin/templates/vite/withoutDataViz/query/public/favicon.ico +0 -0
- package/bin/templates/vite/withoutDataViz/query/public/imgs/Tailwind_CSS_Logo.svg +0 -1
- package/bin/templates/vite/withoutDataViz/query/public/imgs/Vitejs-logo.svg +0 -15
- package/bin/templates/vite/withoutDataViz/query/public/imgs/logo-color-600.png +0 -0
- package/bin/templates/vite/withoutDataViz/query/public/imgs/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/query/src/assets/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/query/src/components/Footer.tsx +0 -14
- package/bin/templates/vite/withoutDataViz/query/src/components/Header.tsx +0 -25
- package/bin/templates/vite/withoutDataViz/query/src/integration/tanstack-query.tsx +0 -27
- package/bin/templates/vite/withoutDataViz/query/src/main.tsx +0 -21
- package/bin/templates/vite/withoutDataViz/query/src/styles/fonts.css +0 -213
- package/bin/templates/vite/withoutDataViz/query/src/vite-env.d.ts +0 -1
- package/bin/templates/vite/withoutDataViz/query/tailwind.config.js +0 -7
- package/bin/templates/vite/withoutDataViz/query/tsconfig.json +0 -29
- package/bin/templates/vite/withoutDataViz/query/tsconfig.node.json +0 -9
- package/bin/templates/vite/withoutDataViz/query/vite.config.ts +0 -75
- package/bin/templates/vite/withoutDataViz/query+router/.prettierrc +0 -10
- package/bin/templates/vite/withoutDataViz/query+router/eslint.config.mjs +0 -97
- package/bin/templates/vite/withoutDataViz/query+router/index.html +0 -13
- package/bin/templates/vite/withoutDataViz/query+router/public/favicon.ico +0 -0
- package/bin/templates/vite/withoutDataViz/query+router/public/imgs/Vitejs-logo.svg +0 -15
- package/bin/templates/vite/withoutDataViz/query+router/public/imgs/logo-color-600.png +0 -0
- package/bin/templates/vite/withoutDataViz/query+router/public/imgs/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/query+router/src/App.tsx +0 -42
- package/bin/templates/vite/withoutDataViz/query+router/src/assets/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/query+router/src/components/Footer.tsx +0 -14
- package/bin/templates/vite/withoutDataViz/query+router/src/components/Header.tsx +0 -25
- package/bin/templates/vite/withoutDataViz/query+router/src/integration/tanstack-query.tsx +0 -27
- package/bin/templates/vite/withoutDataViz/query+router/src/main.tsx +0 -73
- package/bin/templates/vite/withoutDataViz/query+router/src/routes/queryDemo.tsx +0 -73
- package/bin/templates/vite/withoutDataViz/query+router/src/styles/fonts.css +0 -213
- package/bin/templates/vite/withoutDataViz/query+router/src/vite-env.d.ts +0 -1
- package/bin/templates/vite/withoutDataViz/query+router/tailwind.config.js +0 -7
- package/bin/templates/vite/withoutDataViz/query+router/tsconfig.json +0 -29
- package/bin/templates/vite/withoutDataViz/query+router/tsconfig.node.json +0 -9
- package/bin/templates/vite/withoutDataViz/query+router/vite.config.ts +0 -75
- package/bin/templates/vite/withoutDataViz/router/.prettierrc +0 -10
- package/bin/templates/vite/withoutDataViz/router/eslint.config.mjs +0 -97
- package/bin/templates/vite/withoutDataViz/router/index.html +0 -13
- package/bin/templates/vite/withoutDataViz/router/public/favicon.ico +0 -0
- package/bin/templates/vite/withoutDataViz/router/public/imgs/Tailwind_CSS_Logo.svg +0 -1
- package/bin/templates/vite/withoutDataViz/router/public/imgs/Vitejs-logo.svg +0 -15
- package/bin/templates/vite/withoutDataViz/router/public/imgs/logo-color-600.png +0 -0
- package/bin/templates/vite/withoutDataViz/router/public/imgs/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/router/src/assets/undp-logo-blue.svg +0 -1
- package/bin/templates/vite/withoutDataViz/router/src/components/Footer.tsx +0 -14
- package/bin/templates/vite/withoutDataViz/router/src/components/Header.tsx +0 -25
- package/bin/templates/vite/withoutDataViz/router/src/main.tsx +0 -66
- package/bin/templates/vite/withoutDataViz/router/src/routes/about.tsx +0 -73
- package/bin/templates/vite/withoutDataViz/router/src/styles/fonts.css +0 -213
- package/bin/templates/vite/withoutDataViz/router/src/vite-env.d.ts +0 -1
- package/bin/templates/vite/withoutDataViz/router/tailwind.config.js +0 -7
- package/bin/templates/vite/withoutDataViz/router/tsconfig.json +0 -29
- package/bin/templates/vite/withoutDataViz/router/tsconfig.node.json +0 -9
- package/bin/templates/vite/withoutDataViz/router/vite.config.ts +0 -75
- /package/bin/templates/next/{withDataViz/auth → auth}/.prettierrc +0 -0
- /package/bin/templates/next/{withoutDataViz/auth → auth}/README.md +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/app/api/auth/[...all]/route.ts +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/app/favicon.ico +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/app/globals.css +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/app/layout.tsx +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/components/Footer.tsx +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/components/Header.tsx +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/eslint.config.mjs +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/lib/auth-client.ts +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/lib/auth.ts +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/next.config.ts +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/postcss.config.mjs +0 -0
- /package/bin/templates/{vite/withDataViz/basic → next/auth}/public/imgs/Tailwind_CSS_Logo.svg +0 -0
- /package/bin/templates/next/{withDataViz/auth/public → auth/public/imgs}/next.svg +0 -0
- /package/bin/templates/next/{withDataViz/auth/public → auth/public/imgs}/undp-logo-blue.svg +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/tailwind.config.js +0 -0
- /package/bin/templates/next/{withDataViz/auth → auth}/tsconfig.json +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/.prettierrc +0 -0
- /package/bin/templates/next/{withoutDataViz/basic → basic}/README.md +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/app/favicon.ico +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/app/globals.css +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/app/layout.tsx +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/components/Footer.tsx +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/components/Header.tsx +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/eslint.config.mjs +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/next.config.ts +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/postcss.config.mjs +0 -0
- /package/bin/templates/{vite/withDataViz/query+router → next/basic}/public/imgs/Tailwind_CSS_Logo.svg +0 -0
- /package/bin/templates/next/{withDataViz/basic/public → basic/public/imgs}/next.svg +0 -0
- /package/bin/templates/next/{withDataViz/basic/public → basic/public/imgs}/undp-logo-blue.svg +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/tailwind.config.js +0 -0
- /package/bin/templates/next/{withDataViz/basic → basic}/tsconfig.json +0 -0
- /package/bin/templates/{next/withoutDataViz/auth → vite/basic}/.prettierrc +0 -0
- /package/bin/templates/vite/{withoutDataViz/basic → basic}/README.md +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/eslint.config.mjs +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/index.html +0 -0
- /package/bin/templates/{next/withoutDataViz/auth/app → vite/basic/public}/favicon.ico +0 -0
- /package/bin/templates/vite/{withDataViz/query → basic}/public/imgs/Tailwind_CSS_Logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/public/imgs/Vitejs-logo.svg +0 -0
- /package/bin/templates/{next/withoutDataViz/auth/public → vite/basic/public/imgs}/undp-logo-blue.svg +0 -0
- /package/bin/templates/{next/withoutDataViz/basic/public → vite/basic/src/assets}/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/src/components/Footer.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/src/components/Header.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/src/styles/fonts.css +0 -0
- /package/bin/templates/vite/{withoutDataViz/basic → basic}/src/styles/style.css +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/src/vite-env.d.ts +0 -0
- /package/bin/templates/{next/withoutDataViz/auth → vite/basic}/tailwind.config.js +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/tsconfig.json +0 -0
- /package/bin/templates/vite/{withDataViz/basic → basic}/tsconfig.node.json +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → basic}/vite.config.ts +0 -0
- /package/bin/templates/vite/{withDataViz/basic → query}/.prettierrc +0 -0
- /package/bin/templates/vite/{withoutDataViz/query → query}/README.md +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/eslint.config.mjs +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/index.html +0 -0
- /package/bin/templates/vite/{withDataViz/basic → query}/public/favicon.ico +0 -0
- /package/bin/templates/vite/{withoutDataViz/basic → query}/public/imgs/Tailwind_CSS_Logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query/public/imgs/logo-color-600.png → query/public/imgs/Tanstack-logo.png} +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/public/imgs/Vitejs-logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query}/public/imgs/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query}/src/assets/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/src/components/Footer.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/src/components/Header.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/src/integration/tanstack-query.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/src/main.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/src/styles/fonts.css +0 -0
- /package/bin/templates/vite/{withoutDataViz/query → query}/src/styles/style.css +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/src/vite-env.d.ts +0 -0
- /package/bin/templates/vite/{withDataViz/basic → query}/tailwind.config.js +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/tsconfig.json +0 -0
- /package/bin/templates/vite/{withDataViz/query → query}/tsconfig.node.json +0 -0
- /package/bin/templates/vite/{withDataViz/router → query}/vite.config.ts +0 -0
- /package/bin/templates/{next/withoutDataViz/basic → vite/query+router}/.prettierrc +0 -0
- /package/bin/templates/vite/{withoutDataViz/query+router → query+router}/README.md +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/eslint.config.mjs +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/index.html +0 -0
- /package/bin/templates/{next/withoutDataViz/basic/app → vite/query+router/public}/favicon.ico +0 -0
- /package/bin/templates/vite/{withDataViz/router → query+router}/public/imgs/Tailwind_CSS_Logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query+router/public/imgs/logo-color-600.png → query+router/public/imgs/Tanstack-logo.png} +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/public/imgs/Vitejs-logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/basic → query+router}/public/imgs/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/basic → query+router}/src/assets/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/src/components/Footer.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/src/components/Header.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/src/integration/tanstack-query.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/src/main.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/src/styles/fonts.css +0 -0
- /package/bin/templates/vite/{withoutDataViz/query+router → query+router}/src/styles/style.css +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/src/vite-env.d.ts +0 -0
- /package/bin/templates/{next/withoutDataViz/basic → vite/query+router}/tailwind.config.js +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/tsconfig.json +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → query+router}/tsconfig.node.json +0 -0
- /package/bin/templates/vite/{withDataViz/query → query+router}/vite.config.ts +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → router}/.prettierrc +0 -0
- /package/bin/templates/vite/{withoutDataViz/router → router}/README.md +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/eslint.config.mjs +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/index.html +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → router}/public/favicon.ico +0 -0
- /package/bin/templates/vite/{withoutDataViz/query+router → router}/public/imgs/Tailwind_CSS_Logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/router/public/imgs/logo-color-600.png → router/public/imgs/Tanstack-logo.png} +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/public/imgs/Vitejs-logo.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query → router}/public/imgs/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/query → router}/src/assets/undp-logo-blue.svg +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/src/components/Footer.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/src/components/Header.tsx +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/src/styles/fonts.css +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/src/vite-env.d.ts +0 -0
- /package/bin/templates/vite/{withDataViz/query+router → router}/tailwind.config.js +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/tsconfig.json +0 -0
- /package/bin/templates/vite/{withDataViz/router → router}/tsconfig.node.json +0 -0
- /package/bin/templates/vite/{withoutDataViz/basic → router}/vite.config.ts +0 -0
|
@@ -1,73 +0,0 @@
|
|
|
1
|
-
import { createRoute } from '@tanstack/react-router';
|
|
2
|
-
import { useQuery } from '@tanstack/react-query';
|
|
3
|
-
import type { AnyRootRoute } from '@tanstack/react-router';
|
|
4
|
-
import { Spinner } from '@undp/design-system-react/Spinner';
|
|
5
|
-
import { H6, P } from '@undp/design-system-react/Typography';
|
|
6
|
-
|
|
7
|
-
function useTodoData() {
|
|
8
|
-
return useQuery({
|
|
9
|
-
queryKey: ['todos'],
|
|
10
|
-
queryFn: () =>
|
|
11
|
-
Promise.resolve([
|
|
12
|
-
{ id: 1, name: 'Alice' },
|
|
13
|
-
{ id: 2, name: 'Bob' },
|
|
14
|
-
{ id: 3, name: 'Charlie' },
|
|
15
|
-
]),
|
|
16
|
-
});
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export function TanStackQueryDemo() {
|
|
20
|
-
const { data, isLoading, isError } = useTodoData();
|
|
21
|
-
|
|
22
|
-
if (isLoading) return <Spinner size='lg' className='my-20 m-auto' />;
|
|
23
|
-
|
|
24
|
-
if (isError) return <>Error</>;
|
|
25
|
-
return (
|
|
26
|
-
<>
|
|
27
|
-
<div className='flex gap-4 items-center justify-center my-8 mx-auto'>
|
|
28
|
-
<img
|
|
29
|
-
src='./imgs/Vitejs-logo.svg'
|
|
30
|
-
alt='vite logo'
|
|
31
|
-
width='72px'
|
|
32
|
-
style={{ marginLeft: 'auto', marginRight: 'auto' }}
|
|
33
|
-
/>
|
|
34
|
-
<P marginBottom='none'>&</P>
|
|
35
|
-
<img
|
|
36
|
-
src='./imgs/Tailwind_CSS_Logo.svg'
|
|
37
|
-
alt='tailwind logo'
|
|
38
|
-
width='72px'
|
|
39
|
-
style={{ marginLeft: 'auto', marginRight: 'auto' }}
|
|
40
|
-
/>
|
|
41
|
-
<P marginBottom='none'>&</P>
|
|
42
|
-
<img
|
|
43
|
-
src='./imgs/logo-color-600.png'
|
|
44
|
-
alt='tanstack logo'
|
|
45
|
-
width='72px'
|
|
46
|
-
style={{ marginLeft: 'auto', marginRight: 'auto' }}
|
|
47
|
-
/>
|
|
48
|
-
<P marginBottom='none'>&</P>
|
|
49
|
-
<img
|
|
50
|
-
src='./imgs/undp-logo-blue.svg'
|
|
51
|
-
alt='UNDP logo'
|
|
52
|
-
width='72px'
|
|
53
|
-
style={{ marginLeft: 'auto', marginRight: 'auto' }}
|
|
54
|
-
/>
|
|
55
|
-
</div>
|
|
56
|
-
<H6 marginBottom='xl' className='text-center'>
|
|
57
|
-
Data loaded successfully
|
|
58
|
-
<br />
|
|
59
|
-
<br />
|
|
60
|
-
{data?.length} elements in the query
|
|
61
|
-
</H6>
|
|
62
|
-
</>
|
|
63
|
-
);
|
|
64
|
-
}
|
|
65
|
-
export default function createTanStackQueryDemoRoute(
|
|
66
|
-
parentRoute: AnyRootRoute,
|
|
67
|
-
) {
|
|
68
|
-
return createRoute({
|
|
69
|
-
path: '/query-demo',
|
|
70
|
-
component: TanStackQueryDemo,
|
|
71
|
-
getParentRoute: () => parentRoute,
|
|
72
|
-
});
|
|
73
|
-
}
|
|
@@ -1,213 +0,0 @@
|
|
|
1
|
-
@font-face {
|
|
2
|
-
font-display: swap;
|
|
3
|
-
font-family: 'ProximaNova';
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: 100;
|
|
6
|
-
src: url('./fonts/proximanova-thin-webfont.woff2') format('woff2');
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
@font-face {
|
|
10
|
-
font-display: swap;
|
|
11
|
-
font-family: 'ProximaNova';
|
|
12
|
-
font-style: italic;
|
|
13
|
-
font-weight: 100;
|
|
14
|
-
src: url('./fonts/proximanova-thinit-webfont.woff2') format('woff2');
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
@font-face {
|
|
18
|
-
font-display: swap;
|
|
19
|
-
font-family: 'ProximaNova';
|
|
20
|
-
font-style: normal;
|
|
21
|
-
font-weight: 200;
|
|
22
|
-
src: url('./fonts/proximanova-light-webfont.woff2') format('woff2');
|
|
23
|
-
}
|
|
24
|
-
|
|
25
|
-
@font-face {
|
|
26
|
-
font-display: swap;
|
|
27
|
-
font-family: 'ProximaNova';
|
|
28
|
-
font-style: italic;
|
|
29
|
-
font-weight: 200 300;
|
|
30
|
-
src: url('./fonts/proximanova-lightit-webfont.woff2') format('woff2');
|
|
31
|
-
}
|
|
32
|
-
|
|
33
|
-
@font-face {
|
|
34
|
-
font-display: swap;
|
|
35
|
-
font-family: 'ProximaNova';
|
|
36
|
-
font-style: normal;
|
|
37
|
-
font-weight: 400;
|
|
38
|
-
src: url('./fonts/proximanova-regular-webfont.woff2') format('woff2');
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
@font-face {
|
|
42
|
-
font-display: swap;
|
|
43
|
-
font-family: 'ProximaNova';
|
|
44
|
-
font-style: italic;
|
|
45
|
-
font-weight: 400;
|
|
46
|
-
src: url('./fonts/proximanova-regularit-webfont.woff2') format('woff2');
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
@font-face {
|
|
50
|
-
font-display: swap;
|
|
51
|
-
font-family: 'ProximaNova';
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 500;
|
|
54
|
-
src: url('./fonts/proximanova-medium-webfont.woff2') format('woff2');
|
|
55
|
-
}
|
|
56
|
-
|
|
57
|
-
@font-face {
|
|
58
|
-
font-display: swap;
|
|
59
|
-
font-family: 'ProximaNova';
|
|
60
|
-
font-style: italic;
|
|
61
|
-
font-weight: 500;
|
|
62
|
-
src: url('./fonts/proximanova-mediumit-webfont.woff2') format('woff2');
|
|
63
|
-
}
|
|
64
|
-
|
|
65
|
-
@font-face {
|
|
66
|
-
font-display: swap;
|
|
67
|
-
font-family: 'ProximaNova';
|
|
68
|
-
font-style: normal;
|
|
69
|
-
font-weight: 600;
|
|
70
|
-
src: url('./fonts/proximanova-semibold-webfont-2.woff2') format('woff2');
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
@font-face {
|
|
74
|
-
font-display: swap;
|
|
75
|
-
font-family: 'ProximaNova';
|
|
76
|
-
font-style: italic;
|
|
77
|
-
font-weight: 600;
|
|
78
|
-
src: url('./fonts/proximanova-semiboldit-webfont-2.woff2') format('woff2');
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
@font-face {
|
|
82
|
-
font-display: swap;
|
|
83
|
-
font-family: 'ProximaNova';
|
|
84
|
-
font-style: normal;
|
|
85
|
-
font-weight: 700;
|
|
86
|
-
src: url('./fonts/proximanova-bold-webfont.woff2') format('woff2');
|
|
87
|
-
}
|
|
88
|
-
|
|
89
|
-
@font-face {
|
|
90
|
-
font-display: swap;
|
|
91
|
-
font-family: 'ProximaNova';
|
|
92
|
-
font-style: italic;
|
|
93
|
-
font-weight: 700;
|
|
94
|
-
src: url('./fonts/proximanova-boldit-webfont.woff2') format('woff2');
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
@font-face {
|
|
98
|
-
font-display: swap;
|
|
99
|
-
font-family: 'ProximaNova';
|
|
100
|
-
font-style: normal;
|
|
101
|
-
font-weight: 800;
|
|
102
|
-
src: url('./fonts/proximanova-extrabold-webfont.woff2') format('woff2');
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
@font-face {
|
|
106
|
-
font-display: swap;
|
|
107
|
-
font-family: 'ProximaNova';
|
|
108
|
-
font-style: italic;
|
|
109
|
-
font-weight: 800;
|
|
110
|
-
src: url('./fonts/proximanova-extraboldit-webfont.woff2') format('woff2');
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
@font-face {
|
|
114
|
-
font-display: swap;
|
|
115
|
-
font-family: 'ProximaNova';
|
|
116
|
-
font-style: normal;
|
|
117
|
-
font-weight: 900;
|
|
118
|
-
src: url('./fonts/proximanova-black-webfont.woff2') format('woff2');
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
@font-face {
|
|
122
|
-
font-display: swap;
|
|
123
|
-
font-family: 'ProximaNova';
|
|
124
|
-
font-style: italic;
|
|
125
|
-
font-weight: 900;
|
|
126
|
-
src: url('./fonts/proximanova-blackit-webfont.woff2') format('woff2');
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
/* SohneBreit */
|
|
130
|
-
@font-face {
|
|
131
|
-
font-display: swap;
|
|
132
|
-
font-family: 'SohneBreit';
|
|
133
|
-
font-style: normal;
|
|
134
|
-
font-weight: 100 700;
|
|
135
|
-
src: url('./fonts/soehne-breit-web-dreiviertelfett.woff2') format('woff2');
|
|
136
|
-
unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+2070-209F;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
@font-face {
|
|
140
|
-
font-display: swap;
|
|
141
|
-
font-family: 'SohneBreit';
|
|
142
|
-
font-style: italic;
|
|
143
|
-
font-weight: 100 700;
|
|
144
|
-
src: url('./fonts/soehne-breit-web-dreiviertelfett-kursiv.woff2')
|
|
145
|
-
format('woff2');
|
|
146
|
-
unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+2070-209F;
|
|
147
|
-
}
|
|
148
|
-
|
|
149
|
-
@font-face {
|
|
150
|
-
font-display: swap;
|
|
151
|
-
font-family: 'SohneBreit';
|
|
152
|
-
font-style: normal;
|
|
153
|
-
font-weight: 800 900;
|
|
154
|
-
src: url('./fonts/soehne-breit-web-fett.woff2') format('woff2');
|
|
155
|
-
unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-206F, U+2070-209F;
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
@font-face {
|
|
159
|
-
font-display: swap;
|
|
160
|
-
font-family: 'SohneBreit';
|
|
161
|
-
font-style: italic;
|
|
162
|
-
font-weight: 800 900;
|
|
163
|
-
src: url('./fonts/soehne-breit-web-fett-kursiv.woff2') format('woff2');
|
|
164
|
-
unicode-range: U+0000-024F, U+1E00-1EFF, U+2000-20CF;
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
@font-face {
|
|
168
|
-
font-display: swap;
|
|
169
|
-
font-family: 'UNBangla';
|
|
170
|
-
font-style: normal;
|
|
171
|
-
font-weight: 100 300;
|
|
172
|
-
src: url('./fonts/UNBangla-Thin.woff2') format('woff2');
|
|
173
|
-
}
|
|
174
|
-
|
|
175
|
-
@font-face {
|
|
176
|
-
font-display: swap;
|
|
177
|
-
font-family: 'UNBangla';
|
|
178
|
-
font-style: italic;
|
|
179
|
-
font-weight: 100 300;
|
|
180
|
-
src: url('./fonts/UNBangla-ThinItalic.woff2') format('woff2');
|
|
181
|
-
}
|
|
182
|
-
|
|
183
|
-
@font-face {
|
|
184
|
-
font-display: swap;
|
|
185
|
-
font-family: 'UNBangla';
|
|
186
|
-
font-style: normal;
|
|
187
|
-
font-weight: 400;
|
|
188
|
-
src: url('./fonts/UNBangla-Regular.woff2') format('woff2');
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
@font-face {
|
|
192
|
-
font-display: swap;
|
|
193
|
-
font-family: 'UNBangla';
|
|
194
|
-
font-style: italic;
|
|
195
|
-
font-weight: 400;
|
|
196
|
-
src: url('./fonts/UNBangla-Italic.woff2') format('woff2');
|
|
197
|
-
}
|
|
198
|
-
|
|
199
|
-
@font-face {
|
|
200
|
-
font-display: swap;
|
|
201
|
-
font-family: 'UNBangla';
|
|
202
|
-
font-style: normal;
|
|
203
|
-
font-weight: 500 900;
|
|
204
|
-
src: url('./fonts/UNBangla-Bold.woff2') format('woff2');
|
|
205
|
-
}
|
|
206
|
-
|
|
207
|
-
@font-face {
|
|
208
|
-
font-display: swap;
|
|
209
|
-
font-family: 'UNBangla';
|
|
210
|
-
font-style: italic;
|
|
211
|
-
font-weight: 500 900;
|
|
212
|
-
src: url('./fonts/UNBangla-BoldItalic.woff2') format('woff2');
|
|
213
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
/// <reference types="vite/client" />
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"target": "ESNext",
|
|
4
|
-
"allowImportingTsExtensions": true,
|
|
5
|
-
"declaration": true,
|
|
6
|
-
"declarationMap": true,
|
|
7
|
-
"useDefineForClassFields": true,
|
|
8
|
-
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
9
|
-
"allowJs": false,
|
|
10
|
-
"skipLibCheck": true,
|
|
11
|
-
"esModuleInterop": false,
|
|
12
|
-
"allowSyntheticDefaultImports": true,
|
|
13
|
-
"strict": true,
|
|
14
|
-
"forceConsistentCasingInFileNames": true,
|
|
15
|
-
"module": "ESNext",
|
|
16
|
-
"moduleResolution": "bundler",
|
|
17
|
-
"resolveJsonModule": true,
|
|
18
|
-
"isolatedModules": true,
|
|
19
|
-
"noEmit": true,
|
|
20
|
-
"jsx": "react-jsx",
|
|
21
|
-
"baseUrl": ".",
|
|
22
|
-
"paths": {
|
|
23
|
-
"@/*": ["./src/*"]
|
|
24
|
-
}
|
|
25
|
-
},
|
|
26
|
-
"files": [],
|
|
27
|
-
"include": ["eslint.config.mjs", "src", "tailwind.config.js"],
|
|
28
|
-
"references": [{ "path": "./tsconfig.node.json" }]
|
|
29
|
-
}
|
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
import path from 'path';
|
|
2
|
-
|
|
3
|
-
import { defineConfig } from 'vite';
|
|
4
|
-
import react from '@vitejs/plugin-react';
|
|
5
|
-
import eslint from '@nabla/vite-plugin-eslint';
|
|
6
|
-
import { visualizer } from 'rollup-plugin-visualizer';
|
|
7
|
-
import postcssNested from 'postcss-nested';
|
|
8
|
-
import tailwindcss from '@tailwindcss/postcss';
|
|
9
|
-
import { viteStaticCopy } from 'vite-plugin-static-copy';
|
|
10
|
-
|
|
11
|
-
export default defineConfig({
|
|
12
|
-
plugins: [
|
|
13
|
-
react({
|
|
14
|
-
babel: {
|
|
15
|
-
plugins: ['babel-plugin-react-compiler'],
|
|
16
|
-
},
|
|
17
|
-
}),
|
|
18
|
-
eslint(),
|
|
19
|
-
visualizer({ filename: 'stats.html', open: true }),
|
|
20
|
-
viteStaticCopy({
|
|
21
|
-
targets: [{ src: 'staticwebapp.config.json', dest: '' }],
|
|
22
|
-
}),
|
|
23
|
-
],
|
|
24
|
-
css: {
|
|
25
|
-
postcss: {
|
|
26
|
-
plugins: [
|
|
27
|
-
postcssNested(),
|
|
28
|
-
tailwindcss(),
|
|
29
|
-
{
|
|
30
|
-
postcssPlugin: 'move-media-queries-last', // If you want to reorder media queries to the end
|
|
31
|
-
OnceExit(root) {
|
|
32
|
-
const mediaQueries = [];
|
|
33
|
-
|
|
34
|
-
// Collect all media queries
|
|
35
|
-
root.walkAtRules('media', mediaRule => {
|
|
36
|
-
mediaQueries.push(mediaRule.clone());
|
|
37
|
-
mediaRule.remove();
|
|
38
|
-
});
|
|
39
|
-
|
|
40
|
-
// Append them at the end
|
|
41
|
-
mediaQueries.forEach(mediaQuery => {
|
|
42
|
-
root.append(mediaQuery);
|
|
43
|
-
});
|
|
44
|
-
},
|
|
45
|
-
},
|
|
46
|
-
],
|
|
47
|
-
},
|
|
48
|
-
},
|
|
49
|
-
build: {
|
|
50
|
-
manifest: true,
|
|
51
|
-
cssCodeSplit: false,
|
|
52
|
-
rollupOptions: {
|
|
53
|
-
output: {
|
|
54
|
-
manualChunks(id) {
|
|
55
|
-
if (id.includes('node_modules/react')) return 'react';
|
|
56
|
-
if (id.includes('@undp/design-system-react')) return 'undp';
|
|
57
|
-
if (id.includes('@undp/data-viz')) return 'undp';
|
|
58
|
-
},
|
|
59
|
-
chunkFileNames: '[name]-[hash].js',
|
|
60
|
-
assetFileNames: '[name].[ext]',
|
|
61
|
-
entryFileNames: '[name].js',
|
|
62
|
-
},
|
|
63
|
-
treeshake: true,
|
|
64
|
-
},
|
|
65
|
-
},
|
|
66
|
-
server: {
|
|
67
|
-
cors: {
|
|
68
|
-
origin: '*',
|
|
69
|
-
methods: ['GET'],
|
|
70
|
-
preflightContinue: false,
|
|
71
|
-
optionsSuccessStatus: 204,
|
|
72
|
-
},
|
|
73
|
-
},
|
|
74
|
-
resolve: { alias: { '@': path.resolve(__dirname, './src') } },
|
|
75
|
-
});
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/{vite/withDataViz/basic → next/auth}/public/imgs/Tailwind_CSS_Logo.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/next/{withDataViz/basic/public → basic/public/imgs}/undp-logo-blue.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/{next/withoutDataViz/auth/public → vite/basic/public/imgs}/undp-logo-blue.svg
RENAMED
|
File without changes
|
/package/bin/templates/{next/withoutDataViz/basic/public → vite/basic/src/assets}/undp-logo-blue.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/vite/{withoutDataViz/basic → query}/public/imgs/Tailwind_CSS_Logo.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/vite/{withDataViz/query+router → query}/public/imgs/undp-logo-blue.svg
RENAMED
|
File without changes
|
/package/bin/templates/vite/{withDataViz/query+router → query}/src/assets/undp-logo-blue.svg
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/{next/withoutDataViz/basic/app → vite/query+router/public}/favicon.ico
RENAMED
|
File without changes
|
/package/bin/templates/vite/{withDataViz/router → query+router}/public/imgs/Tailwind_CSS_Logo.svg
RENAMED
|
File without changes
|
|
File without changes
|
/package/bin/templates/vite/{withDataViz/query+router → query+router}/public/imgs/Vitejs-logo.svg
RENAMED
|
File without changes
|
/package/bin/templates/vite/{withDataViz/basic → query+router}/public/imgs/undp-logo-blue.svg
RENAMED
|
File without changes
|
/package/bin/templates/vite/{withDataViz/basic → query+router}/src/assets/undp-logo-blue.svg
RENAMED
|
File without changes
|
/package/bin/templates/vite/{withDataViz/query+router → query+router}/src/components/Footer.tsx
RENAMED
|
File without changes
|
/package/bin/templates/vite/{withDataViz/query+router → query+router}/src/components/Header.tsx
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/package/bin/templates/vite/{withoutDataViz/query+router → query+router}/src/styles/style.css
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|