@tanstack/create 0.49.2 → 0.59.4
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/CHANGELOG.md +603 -0
- package/dist/add-ons.js +42 -2
- package/dist/add-to-app.js +36 -7
- package/dist/custom-add-ons/add-on.js +2 -26
- package/dist/custom-add-ons/starter.js +1 -2
- package/dist/file-helpers.js +11 -10
- package/dist/frameworks/react/add-ons/ai/assets/src/data/demo-guitars.ts +93 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/hooks/demo-useAudioRecorder.ts +85 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/hooks/demo-useTTS.ts +78 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/lib/demo-ai-hook.ts +22 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/lib/demo-guitar-tools.ts +40 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/routes/demo/api.ai.chat.ts +99 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/routes/demo/api.ai.image.ts +72 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/routes/demo/api.ai.structured.ts +136 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/routes/demo/api.ai.transcription.ts +89 -0
- package/dist/frameworks/react/add-ons/ai/assets/src/routes/demo/api.ai.tts.ts +81 -0
- package/dist/frameworks/react/add-ons/ai/info.json +1 -1
- package/dist/frameworks/react/add-ons/apollo-client/info.json +1 -1
- package/dist/frameworks/react/add-ons/better-auth/assets/src/lib/auth-client.ts +3 -0
- package/dist/frameworks/react/add-ons/better-auth/assets/src/lib/auth.ts +9 -0
- package/dist/frameworks/react/add-ons/better-auth/assets/src/routes/api/auth/$.ts +11 -0
- package/dist/frameworks/react/add-ons/better-auth/info.json +0 -2
- package/dist/frameworks/react/add-ons/clerk/info.json +0 -1
- package/dist/frameworks/react/add-ons/convex/assets/convex/schema.ts +14 -0
- package/dist/frameworks/react/add-ons/convex/assets/convex/todos.ts +43 -0
- package/dist/frameworks/react/add-ons/db/assets/src/db-collections/index.ts +20 -0
- package/dist/frameworks/react/add-ons/db/assets/src/hooks/demo.useChat.ts +62 -0
- package/dist/frameworks/react/add-ons/db/assets/src/routes/demo/db-chat-api.ts +83 -0
- package/dist/frameworks/react/add-ons/db/info.json +1 -1
- package/dist/frameworks/react/add-ons/drizzle/info.json +1 -1
- package/dist/frameworks/react/add-ons/drizzle/package.json.ejs +4 -0
- package/dist/frameworks/react/add-ons/form/assets/src/hooks/demo.form-context.ts +4 -0
- package/dist/frameworks/react/add-ons/form/assets/src/hooks/demo.form.ts +22 -0
- package/dist/frameworks/react/add-ons/mcp/assets/src/mcp-todos.ts +51 -0
- package/dist/frameworks/react/add-ons/mcp/assets/src/routes/demo/api.mcp-todos.ts +37 -0
- package/dist/frameworks/react/add-ons/mcp/assets/src/routes/mcp.ts +53 -0
- package/dist/frameworks/react/add-ons/mcp/assets/src/utils/mcp-handler.ts +61 -0
- package/dist/frameworks/react/add-ons/mcp/info.json +1 -2
- package/dist/frameworks/react/add-ons/neon/assets/neon-vite-plugin.ts +10 -0
- package/dist/frameworks/react/add-ons/neon/assets/src/db.ts +13 -0
- package/dist/frameworks/react/add-ons/neon/info.json +1 -2
- package/dist/frameworks/react/add-ons/oRPC/assets/src/orpc/client.ts +29 -0
- package/dist/frameworks/react/add-ons/oRPC/assets/src/orpc/router/index.ts +6 -0
- package/dist/frameworks/react/add-ons/oRPC/assets/src/orpc/router/todos.ts +20 -0
- package/dist/frameworks/react/add-ons/oRPC/assets/src/orpc/schema.ts +6 -0
- package/dist/frameworks/react/add-ons/oRPC/assets/src/polyfill.ts +21 -0
- package/dist/frameworks/react/add-ons/oRPC/assets/src/routes/api.$.ts +77 -0
- package/dist/frameworks/react/add-ons/oRPC/assets/src/routes/api.rpc.$.ts +29 -0
- package/dist/frameworks/react/add-ons/oRPC/info.json +1 -1
- package/dist/frameworks/react/add-ons/paraglide/info.json +1 -1
- package/dist/frameworks/react/add-ons/prisma/info.json +1 -1
- package/dist/frameworks/react/add-ons/prisma/package.json.ejs +4 -0
- package/dist/frameworks/react/add-ons/sentry/info.json +1 -2
- package/dist/frameworks/react/add-ons/shadcn/assets/src/lib/utils.ts +6 -0
- package/dist/frameworks/react/add-ons/store/assets/src/lib/demo-store.ts +13 -0
- package/dist/frameworks/react/add-ons/storybook/assets/_dot_storybook/main.ts +17 -0
- package/dist/frameworks/react/add-ons/storybook/assets/_dot_storybook/preview.ts +15 -0
- package/dist/frameworks/react/add-ons/storybook/assets/src/components/storybook/button.stories.ts +67 -0
- package/dist/frameworks/react/add-ons/storybook/assets/src/components/storybook/index.ts +14 -0
- package/dist/frameworks/react/add-ons/storybook/assets/src/components/storybook/input.stories.ts +43 -0
- package/dist/frameworks/react/add-ons/storybook/assets/src/components/storybook/radio-group.stories.ts +53 -0
- package/dist/frameworks/react/add-ons/storybook/assets/src/components/storybook/slider.stories.ts +55 -0
- package/dist/frameworks/react/add-ons/strapi/assets/src/lib/strapiClient.ts +7 -0
- package/dist/frameworks/react/add-ons/t3env/assets/src/env.ts +39 -0
- package/dist/frameworks/react/add-ons/tRPC/assets/src/integrations/trpc/init.ts +9 -0
- package/dist/frameworks/react/add-ons/tRPC/assets/src/integrations/trpc/react.ts +4 -0
- package/dist/frameworks/react/add-ons/tRPC/assets/src/integrations/trpc/router.ts +27 -0
- package/dist/frameworks/react/add-ons/tRPC/info.json +1 -1
- package/dist/frameworks/react/add-ons/table/assets/src/data/demo-table-data.ts +50 -0
- package/dist/frameworks/react/add-ons/tanstack-query/assets/src/integrations/tanstack-query/root-provider.tsx.ejs +1 -29
- package/dist/frameworks/react/add-ons/workos/info.json +0 -1
- package/dist/frameworks/react/examples/events/assets/content-collections.ts +56 -0
- package/dist/frameworks/react/examples/events/assets/src/lib/conference-ai-hook.ts +26 -0
- package/dist/frameworks/react/examples/events/assets/src/lib/conference-tools.ts +210 -0
- package/dist/frameworks/react/examples/events/assets/src/lib/utils.ts +6 -0
- package/dist/frameworks/react/examples/events/assets/src/routes/api.remy-chat.ts +121 -0
- package/dist/frameworks/react/examples/resume/assets/content-collections.ts +36 -0
- package/dist/frameworks/react/examples/resume/assets/src/lib/resume-ai-hook.ts +21 -0
- package/dist/frameworks/react/examples/resume/assets/src/lib/resume-tools.ts +165 -0
- package/dist/frameworks/react/examples/resume/assets/src/lib/utils.ts +6 -0
- package/dist/frameworks/react/examples/resume/assets/src/routes/api.resume-chat.ts +110 -0
- package/dist/frameworks/react/hosts/cloudflare/info.json +0 -1
- package/dist/frameworks/react/hosts/netlify/info.json +0 -1
- package/dist/frameworks/react/hosts/nitro/info.json +0 -1
- package/dist/frameworks/react/hosts/railway/info.json +0 -1
- package/dist/frameworks/react/index.js +1 -6
- package/dist/frameworks/react/project/base/README.md.ejs +86 -436
- package/dist/frameworks/react/project/base/_dot_gitignore +4 -0
- package/dist/frameworks/react/project/base/package.json +8 -5
- package/dist/frameworks/react/project/base/src/components/Header.tsx.ejs +2 -32
- package/dist/frameworks/react/project/base/src/routes/__root.tsx.ejs +4 -44
- package/dist/frameworks/react/project/base/src/routes/index.tsx.ejs +99 -61
- package/dist/frameworks/react/project/base/src/styles.css.ejs +3 -3
- package/dist/frameworks/react/project/base/tsconfig.json.ejs +1 -1
- package/dist/frameworks/react/project/base/vite.config.ts.ejs +33 -27
- package/dist/frameworks/react/project/packages.json +2 -2
- package/dist/frameworks/solid/add-ons/better-auth/assets/src/lib/auth-client.ts +3 -0
- package/dist/frameworks/solid/add-ons/better-auth/assets/src/lib/auth.ts +9 -0
- package/dist/frameworks/solid/add-ons/better-auth/assets/src/routes/api/auth/$.ts +11 -0
- package/dist/frameworks/solid/add-ons/better-auth/info.json +1 -1
- package/dist/frameworks/solid/add-ons/convex/assets/convex/schema.ts +14 -0
- package/dist/frameworks/solid/add-ons/convex/assets/convex/todos.ts +43 -0
- package/dist/frameworks/solid/add-ons/solid-ui/assets/src/lib/utils.ts +6 -0
- package/dist/frameworks/solid/add-ons/store/assets/src/lib/demo-store.ts +13 -0
- package/dist/frameworks/solid/add-ons/strapi/assets/src/lib/strapiClient.ts +7 -0
- package/dist/frameworks/solid/add-ons/t3env/assets/src/env.ts +39 -0
- package/dist/frameworks/solid/examples/tanchat/assets/ai-streaming-server/src/index.ts +102 -0
- package/dist/frameworks/solid/examples/tanchat/assets/src/lib/demo-store.ts +13 -0
- package/dist/frameworks/solid/examples/tanchat/assets/src/store/demo.hooks.ts +17 -0
- package/dist/frameworks/solid/examples/tanchat/assets/src/store/demo.store.ts +133 -0
- package/dist/frameworks/solid/hosts/cloudflare/info.json +0 -1
- package/dist/frameworks/solid/hosts/netlify/info.json +0 -1
- package/dist/frameworks/solid/hosts/nitro/info.json +0 -1
- package/dist/frameworks/solid/hosts/railway/info.json +0 -1
- package/dist/frameworks/solid/index.js +1 -6
- package/dist/frameworks/solid/project/base/README.md.ejs +43 -117
- package/dist/frameworks/solid/project/base/_dot_gitignore +4 -0
- package/dist/frameworks/solid/project/base/package.json +8 -3
- package/dist/frameworks/solid/project/base/src/components/Header.tsx.ejs +2 -25
- package/dist/frameworks/solid/project/base/src/routes/__root.tsx.ejs +3 -30
- package/dist/frameworks/solid/project/base/src/routes/index.tsx.ejs +97 -35
- package/dist/frameworks/solid/project/base/tsconfig.json.ejs +1 -1
- package/dist/frameworks/solid/project/base/vite.config.ts.ejs +15 -20
- package/dist/frameworks/solid/project/packages.json +2 -2
- package/dist/frameworks.js +0 -1
- package/dist/package-json.js +6 -10
- package/dist/template-file.js +21 -7
- package/dist/types/custom-add-ons/add-on.d.ts +1 -1
- package/dist/types/file-helpers.d.ts +0 -1
- package/dist/types/types.d.ts +12 -12
- package/dist/types.js +1 -2
- package/package.json +2 -2
- package/src/add-ons.ts +54 -2
- package/src/add-to-app.ts +42 -7
- package/src/custom-add-ons/add-on.ts +2 -33
- package/src/custom-add-ons/starter.ts +1 -2
- package/src/file-helpers.ts +11 -10
- package/src/frameworks/react/add-ons/ai/info.json +1 -1
- package/src/frameworks/react/add-ons/apollo-client/info.json +1 -1
- package/src/frameworks/react/add-ons/better-auth/info.json +0 -2
- package/src/frameworks/react/add-ons/clerk/info.json +0 -1
- package/src/frameworks/react/add-ons/db/info.json +1 -1
- package/src/frameworks/react/add-ons/drizzle/info.json +1 -1
- package/src/frameworks/react/add-ons/drizzle/package.json.ejs +4 -0
- package/src/frameworks/react/add-ons/mcp/info.json +1 -2
- package/src/frameworks/react/add-ons/neon/assets/neon-vite-plugin.ts +1 -1
- package/src/frameworks/react/add-ons/neon/info.json +1 -2
- package/src/frameworks/react/add-ons/oRPC/info.json +1 -1
- package/src/frameworks/react/add-ons/paraglide/info.json +1 -1
- package/src/frameworks/react/add-ons/prisma/info.json +1 -1
- package/src/frameworks/react/add-ons/prisma/package.json.ejs +4 -0
- package/src/frameworks/react/add-ons/sentry/info.json +1 -2
- package/src/frameworks/react/add-ons/tRPC/info.json +1 -1
- package/src/frameworks/react/add-ons/tanstack-query/assets/src/integrations/tanstack-query/root-provider.tsx.ejs +1 -29
- package/src/frameworks/react/add-ons/workos/info.json +0 -1
- package/src/frameworks/react/hosts/cloudflare/info.json +0 -1
- package/src/frameworks/react/hosts/netlify/info.json +0 -1
- package/src/frameworks/react/hosts/nitro/info.json +0 -1
- package/src/frameworks/react/hosts/railway/info.json +0 -1
- package/src/frameworks/react/index.ts +1 -6
- package/src/frameworks/react/project/base/README.md.ejs +86 -436
- package/src/frameworks/react/project/base/_dot_gitignore +4 -0
- package/src/frameworks/react/project/base/package.json +8 -5
- package/src/frameworks/react/project/base/src/components/Header.tsx.ejs +2 -32
- package/src/frameworks/react/project/base/src/routes/__root.tsx.ejs +4 -44
- package/src/frameworks/react/project/base/src/routes/index.tsx.ejs +99 -61
- package/src/frameworks/react/project/base/src/styles.css.ejs +3 -3
- package/src/frameworks/react/project/base/tsconfig.json.ejs +1 -1
- package/src/frameworks/react/project/base/vite.config.ts.ejs +33 -27
- package/src/frameworks/react/project/packages.json +2 -2
- package/src/frameworks/solid/add-ons/better-auth/info.json +1 -1
- package/src/frameworks/solid/hosts/cloudflare/info.json +0 -1
- package/src/frameworks/solid/hosts/netlify/info.json +0 -1
- package/src/frameworks/solid/hosts/nitro/info.json +0 -1
- package/src/frameworks/solid/hosts/railway/info.json +0 -1
- package/src/frameworks/solid/index.ts +1 -6
- package/src/frameworks/solid/project/base/README.md.ejs +43 -117
- package/src/frameworks/solid/project/base/_dot_gitignore +4 -0
- package/src/frameworks/solid/project/base/package.json +8 -3
- package/src/frameworks/solid/project/base/src/components/Header.tsx.ejs +2 -25
- package/src/frameworks/solid/project/base/src/routes/__root.tsx.ejs +3 -30
- package/src/frameworks/solid/project/base/src/routes/index.tsx.ejs +97 -35
- package/src/frameworks/solid/project/base/tsconfig.json.ejs +1 -1
- package/src/frameworks/solid/project/base/vite.config.ts.ejs +15 -20
- package/src/frameworks/solid/project/packages.json +2 -2
- package/src/frameworks.ts +0 -1
- package/src/package-json.ts +6 -10
- package/src/template-file.ts +27 -8
- package/src/types.ts +1 -2
- package/tests/add-to-app.test.ts +37 -0
- package/tests/copy-assets.test.ts +53 -0
- package/tests/file-helper.test.ts +23 -2
- package/tests/package-json.test.ts +32 -0
- package/tests/template-file.test.ts +28 -0
- package/dist/frameworks/react/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -31
- package/dist/frameworks/react/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
- package/dist/frameworks/react/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -11
- package/dist/frameworks/react/add-ons/module-federation/info.json +0 -11
- package/dist/frameworks/react/add-ons/module-federation/package.json +0 -5
- package/dist/frameworks/react/add-ons/module-federation/small-logo.svg +0 -87
- package/dist/frameworks/react/add-ons/start/assets/_dot_gitignore.append +0 -3
- package/dist/frameworks/react/add-ons/start/assets/src/router.tsx.ejs +0 -77
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/api.tq-todos.ts.ejs +0 -35
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.api-request.tsx.ejs +0 -68
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.css.ejs +0 -43
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.server-funcs.tsx.ejs +0 -183
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.data-only.tsx.ejs +0 -55
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.full-ssr.tsx.ejs +0 -55
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.index.tsx.ejs +0 -62
- package/dist/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.spa-mode.tsx.ejs +0 -62
- package/dist/frameworks/react/add-ons/start/assets/src/routes/index.tsx.ejs +0 -142
- package/dist/frameworks/react/add-ons/start/assets/src/server.ts.ejs +0 -9
- package/dist/frameworks/react/add-ons/start/assets/vite.config.ts.ejs +0 -40
- package/dist/frameworks/react/add-ons/start/info.json +0 -61
- package/dist/frameworks/react/add-ons/start/package.json +0 -12
- package/dist/frameworks/react/add-ons/start/small-logo.svg +0 -1
- package/dist/frameworks/react/project/base/index.html.ejs +0 -20
- package/dist/frameworks/react/project/base/src/App.css.ejs +0 -38
- package/dist/frameworks/react/project/base/src/App.tsx.ejs +0 -63
- package/dist/frameworks/react/project/base/src/components/Header.css.ejs +0 -18
- package/dist/frameworks/react/project/base/src/logo.svg +0 -12
- package/dist/frameworks/react/project/base/src/main.tsx.ejs +0 -166
- package/dist/frameworks/react/project/base/src/reportWebVitals.ts.ejs +0 -28
- package/dist/frameworks/solid/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -27
- package/dist/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
- package/dist/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -9
- package/dist/frameworks/solid/add-ons/module-federation/info.json +0 -10
- package/dist/frameworks/solid/add-ons/module-federation/package.json +0 -5
- package/dist/frameworks/solid/add-ons/module-federation/small-logo.svg +0 -87
- package/dist/frameworks/solid/add-ons/start/assets/public/tanstack-circle-logo.png +0 -0
- package/dist/frameworks/solid/add-ons/start/assets/public/tanstack-word-logo-white.svg +0 -1
- package/dist/frameworks/solid/add-ons/start/assets/src/router.tsx.ejs +0 -30
- package/dist/frameworks/solid/add-ons/start/assets/src/routes/demo.start.server-funcs.tsx +0 -49
- package/dist/frameworks/solid/add-ons/start/assets/src/routes/index.tsx.ejs +0 -138
- package/dist/frameworks/solid/add-ons/start/assets/vite.config.ts.ejs +0 -22
- package/dist/frameworks/solid/add-ons/start/info.json +0 -18
- package/dist/frameworks/solid/add-ons/start/package.json +0 -15
- package/dist/frameworks/solid/add-ons/start/small-logo.svg +0 -1
- package/dist/frameworks/solid/project/base/index.html.ejs +0 -20
- package/dist/frameworks/solid/project/base/src/App.css.ejs +0 -38
- package/dist/frameworks/solid/project/base/src/App.tsx.ejs +0 -34
- package/dist/frameworks/solid/project/base/src/logo.svg +0 -120
- package/dist/frameworks/solid/project/base/src/main.tsx.ejs +0 -126
- package/src/frameworks/react/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -31
- package/src/frameworks/react/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
- package/src/frameworks/react/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -11
- package/src/frameworks/react/add-ons/module-federation/info.json +0 -11
- package/src/frameworks/react/add-ons/module-federation/package.json +0 -5
- package/src/frameworks/react/add-ons/module-federation/small-logo.svg +0 -87
- package/src/frameworks/react/add-ons/start/assets/_dot_gitignore.append +0 -3
- package/src/frameworks/react/add-ons/start/assets/src/data/demo.punk-songs.ts +0 -13
- package/src/frameworks/react/add-ons/start/assets/src/router.tsx.ejs +0 -77
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/api.names.ts +0 -10
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/api.tq-todos.ts.ejs +0 -35
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.api-request.tsx.ejs +0 -68
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.css.ejs +0 -43
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.server-funcs.tsx.ejs +0 -183
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.data-only.tsx.ejs +0 -55
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.full-ssr.tsx.ejs +0 -55
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.index.tsx.ejs +0 -62
- package/src/frameworks/react/add-ons/start/assets/src/routes/demo/start.ssr.spa-mode.tsx.ejs +0 -62
- package/src/frameworks/react/add-ons/start/assets/src/routes/index.tsx.ejs +0 -142
- package/src/frameworks/react/add-ons/start/assets/src/server.ts.ejs +0 -9
- package/src/frameworks/react/add-ons/start/assets/vite.config.ts.ejs +0 -40
- package/src/frameworks/react/add-ons/start/info.json +0 -61
- package/src/frameworks/react/add-ons/start/package.json +0 -12
- package/src/frameworks/react/add-ons/start/small-logo.svg +0 -1
- package/src/frameworks/react/project/base/index.html.ejs +0 -20
- package/src/frameworks/react/project/base/src/App.css.ejs +0 -38
- package/src/frameworks/react/project/base/src/App.tsx.ejs +0 -63
- package/src/frameworks/react/project/base/src/components/Header.css.ejs +0 -18
- package/src/frameworks/react/project/base/src/logo.svg +0 -12
- package/src/frameworks/react/project/base/src/main.tsx.ejs +0 -166
- package/src/frameworks/react/project/base/src/reportWebVitals.ts.ejs +0 -28
- package/src/frameworks/solid/add-ons/module-federation/assets/module-federation.config.js.ejs +0 -27
- package/src/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-component.tsx +0 -3
- package/src/frameworks/solid/add-ons/module-federation/assets/src/demo-mf-self-contained.tsx +0 -9
- package/src/frameworks/solid/add-ons/module-federation/info.json +0 -10
- package/src/frameworks/solid/add-ons/module-federation/package.json +0 -5
- package/src/frameworks/solid/add-ons/module-federation/small-logo.svg +0 -87
- package/src/frameworks/solid/add-ons/start/assets/public/tanstack-circle-logo.png +0 -0
- package/src/frameworks/solid/add-ons/start/assets/public/tanstack-word-logo-white.svg +0 -1
- package/src/frameworks/solid/add-ons/start/assets/src/router.tsx.ejs +0 -30
- package/src/frameworks/solid/add-ons/start/assets/src/routes/demo.start.server-funcs.tsx +0 -49
- package/src/frameworks/solid/add-ons/start/assets/src/routes/index.tsx.ejs +0 -138
- package/src/frameworks/solid/add-ons/start/assets/vite.config.ts.ejs +0 -22
- package/src/frameworks/solid/add-ons/start/info.json +0 -18
- package/src/frameworks/solid/add-ons/start/package.json +0 -15
- package/src/frameworks/solid/add-ons/start/small-logo.svg +0 -1
- package/src/frameworks/solid/project/base/index.html.ejs +0 -20
- package/src/frameworks/solid/project/base/src/App.css.ejs +0 -38
- package/src/frameworks/solid/project/base/src/App.tsx.ejs +0 -34
- package/src/frameworks/solid/project/base/src/logo.svg +0 -120
- package/src/frameworks/solid/project/base/src/main.tsx.ejs +0 -126
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"scripts": {
|
|
3
|
-
"dev": "vite dev --port 3000",
|
|
4
|
-
"build": "vite build"
|
|
5
|
-
},
|
|
6
|
-
"dependencies": {
|
|
7
|
-
"@tanstack/react-router-ssr-query": "^1.131.7",
|
|
8
|
-
"@tanstack/react-start": "^1.132.0",
|
|
9
|
-
"vite-tsconfig-paths": "^6.0.2",
|
|
10
|
-
"lucide-react": "^0.561.0"
|
|
11
|
-
}
|
|
12
|
-
}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 633 633"><defs><linearGradient id="b" x1="50%" x2="50%" y1="0%" y2="71.65%"><stop offset="0%" stop-color="#6BDAFF"/><stop offset="31.922%" stop-color="#F9FFB5"/><stop offset="70.627%" stop-color="#FFA770"/><stop offset="100%" stop-color="#FF7373"/></linearGradient><linearGradient id="d" x1="43.996%" x2="53.441%" y1="8.54%" y2="93.872%"><stop offset="0%" stop-color="#673800"/><stop offset="100%" stop-color="#B65E00"/></linearGradient><linearGradient id="e" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2F8A00"/><stop offset="100%" stop-color="#90FF57"/></linearGradient><linearGradient id="f" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2F8A00"/><stop offset="100%" stop-color="#90FF57"/></linearGradient><linearGradient id="g" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2F8A00"/><stop offset="100%" stop-color="#90FF57"/></linearGradient><linearGradient id="h" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2F8A00"/><stop offset="100%" stop-color="#90FF57"/></linearGradient><linearGradient id="i" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2F8A00"/><stop offset="100%" stop-color="#90FF57"/></linearGradient><linearGradient id="j" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#2F8A00"/><stop offset="100%" stop-color="#90FF57"/></linearGradient><linearGradient id="k" x1="92.9%" x2="8.641%" y1="45.768%" y2="54.892%"><stop offset="0%" stop-color="#EE2700"/><stop offset="100%" stop-color="#FF008E"/></linearGradient><linearGradient id="l" x1="61.109%" x2="43.717%" y1="3.633%" y2="43.072%"><stop offset="0%" stop-color="#FFF400"/><stop offset="100%" stop-color="#3C8700"/></linearGradient><linearGradient id="m" x1="50%" x2="50%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FFDF00"/><stop offset="100%" stop-color="#FF9D00"/></linearGradient><linearGradient id="n" x1="127.279%" x2="0%" y1="49.778%" y2="50.222%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="o" x1="127.279%" x2="0%" y1="47.531%" y2="52.469%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="p" x1="127.279%" x2="0%" y1="46.195%" y2="53.805%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="q" x1="127.279%" x2="0%" y1="35.33%" y2="64.67%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="r" x1="127.279%" x2="0%" y1="4.875%" y2="95.125%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="s" x1="78.334%" x2="31.668%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="t" x1="57.913%" x2="44.88%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><linearGradient id="u" x1="50.495%" x2="49.68%" y1="0%" y2="100%"><stop offset="0%" stop-color="#FFA400"/><stop offset="100%" stop-color="#FF5E00"/></linearGradient><circle id="a" cx="308.5" cy="308.5" r="308.5"/><circle id="v" cx="307.5" cy="308.5" r="316.5"/></defs><g fill="none" fill-rule="evenodd" transform="translate(9 8)"><mask id="c" fill="#fff"><use xlink:href="#a"/></mask><use xlink:href="#a" fill="url(#b)"/><ellipse cx="81.5" cy="602.5" fill="#015064" stroke="#00CFE2" stroke-width="25" mask="url(#c)" rx="214.5" ry="185.968"/><ellipse cx="535.5" cy="602.5" fill="#015064" stroke="#00CFE2" stroke-width="25" mask="url(#c)" rx="214.5" ry="185.968"/><ellipse cx="81.5" cy="640.5" fill="#015064" stroke="#00A8B8" stroke-width="25" mask="url(#c)" rx="214.5" ry="185.968"/><ellipse cx="535.5" cy="640.5" fill="#015064" stroke="#00A8B8" stroke-width="25" mask="url(#c)" rx="214.5" ry="185.968"/><ellipse cx="81.5" cy="676.5" fill="#015064" stroke="#007782" stroke-width="25" mask="url(#c)" rx="214.5" ry="185.968"/><ellipse cx="535.5" cy="676.5" fill="#015064" stroke="#007782" stroke-width="25" mask="url(#c)" rx="214.5" ry="185.968"/><g mask="url(#c)"><path fill="url(#d)" stroke="#6E3A00" stroke-width="6.088" d="M98.318 88.007c7.691 37.104 16.643 72.442 26.856 106.013 10.212 33.571 25.57 68.934 46.07 106.088l-51.903 11.67c-10.057-60.01-17.232-99.172-21.525-117.487-4.293-18.315-10.989-51.434-20.089-99.357l20.591-6.927" transform="scale(-1 1) rotate(25 -300.37 -553.013)"/><g stroke="#2F8A00"><path fill="url(#e)" stroke-width="9.343" d="M108.544 66.538s-13.54-21.305-37.417-27.785c-15.917-4.321-33.933.31-54.048 13.892C33.464 65.975 47.24 73.52 58.405 75.28c16.749 2.64 50.14-8.74 50.14-8.74Z" transform="rotate(1 -6061.691 5926.397)"/><path fill="url(#f)" stroke-width="9.343" d="M108.544 67.138s-47.187-5.997-81.077 19.936C4.873 104.362-3.782 137.794 1.502 187.369c28.42-29.22 48.758-50.836 61.016-64.846 18.387-21.016 46.026-55.385 46.026-55.385Z" transform="rotate(1 -6061.691 5926.397)"/><path fill="url(#g)" stroke-width="9.343" d="M108.544 66.538c-1.96-21.705 3.98-38.018 17.82-48.94C140.203 6.674 154.85.808 170.303 0c-4.865 21.527-12.373 36.314-22.524 44.361-10.151 8.048-23.23 15.44-39.236 22.177Z" transform="rotate(1 -6061.691 5926.397)"/><path fill="url(#h)" stroke-width="9.343" d="M108.544 67.138c29.838-31.486 61.061-42.776 93.669-33.869C234.82 42.176 253.749 60.785 259 89.096c-34.898-3.657-59.974-6.343-75.228-8.058-15.254-1.716-40.33-6.349-75.228-13.9Z" transform="rotate(1 -6061.691 5926.397)"/><path fill="url(#i)" stroke-width="9.343" d="M108.544 67.138c34.868-9.381 64.503-3.658 88.905 17.17 24.402 20.829 39.656 46.686 45.762 77.571-39.626-7.574-68.4-20.115-86.322-37.624a395.051 395.051 0 0 1-48.345-57.117Z" transform="rotate(1 -6061.691 5926.397)"/><path fill="url(#j)" stroke-width="9.343" d="M108.544 67.138C76.206 82.6 57.608 105.366 52.75 135.436c-4.858 30.07-.292 62.89 13.698 98.462 24.873-41.418 38.905-71.368 42.096-89.849 3.191-18.48 3.191-44.118 0-76.91Z" transform="rotate(1 -6061.691 5926.397)"/><path stroke-linecap="round" stroke-width="5.91" d="M211.284 173.477c-13.851 21.992-23.291 42.022-28.32 60.093-5.03 18.071-8.175 33.143-9.436 45.216"/><path stroke-linecap="round" stroke-width="5.91" d="M209.814 176.884c-23.982 2.565-42.792 10.469-56.428 23.714-13.639 13.245-23.483 26.136-29.536 38.674M219.045 167.299c29.028-7.723 50.972-10.173 65.831-7.352 14.859 2.822 26.807 7.659 35.842 14.51M211.31 172.618c20.29 9.106 38.353 19.052 54.186 29.837 15.833 10.786 27.714 20.99 35.643 30.617"/></g><path stroke="#830305" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="6.937" d="m409.379 398.157-23.176 18.556M328.04 375.516l-22.313 28.398M312.904 353.698l53.18 59.816"/><path fill="url(#k)" d="M67.585 27.463H5.68C1.893 28.148 0 30.38 0 34.16c0 3.78 1.893 6.211 5.68 7.293h67.17l41.751-30.356c2.488-2.646 2.794-5.315.92-8.006s-4.6-3.626-8.177-2.803l-39.76 27.174Z" transform="scale(-1 1) rotate(-9 2092.128 2856.854)"/><path fill="#D8D8D8" stroke="#FFF" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="4.414" d="m402.861 391.51.471-4.088M382.21 388.752l.472-4.087M361.546 385.404l.485-3.845M337.59 371.883l2.56-2.498M324.276 359.567l2.56-2.497"/></g><ellipse cx="308.5" cy="720.5" fill="url(#l)" mask="url(#c)" rx="266" ry="316.5"/><ellipse cx="308.5" cy="720.5" stroke="#6DA300" stroke-opacity=".502" stroke-width="26" mask="url(#c)" rx="253" ry="303.5"/><g mask="url(#c)"><g transform="translate(389 -32)"><circle cx="168.5" cy="113.5" r="113.5" fill="url(#m)"/><circle cx="168.5" cy="113.5" r="106" stroke="#FFC900" stroke-opacity=".529" stroke-width="15"/><path stroke="url(#n)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="M30 113H0"/><path stroke="url(#o)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="M33.5 79.5 7 74"/><path stroke="url(#p)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="m34 146-29 8"/><path stroke="url(#q)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="m45 177-24 13"/><path stroke="url(#r)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="m67 204-20 19"/><path stroke="url(#s)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="m94.373 227-13.834 22.847"/><path stroke="url(#t)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="M127.5 243.5 120 268"/><path stroke="url(#u)" stroke-linecap="round" stroke-linejoin="bevel" stroke-width="12" d="m167.5 252.5.5 24.5"/></g></g><circle cx="307.5" cy="308.5" r="304" stroke="#000" stroke-width="25"/></g></svg>
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
<% if (addOnEnabled.start) { ignoreFile() } %><!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
<head>
|
|
4
|
-
<meta charset="UTF-8" />
|
|
5
|
-
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
6
|
-
<link rel="icon" href="/favicon.ico" />
|
|
7
|
-
<meta name="theme-color" content="#000000" />
|
|
8
|
-
<meta
|
|
9
|
-
name="description"
|
|
10
|
-
content="Web site created using create-tsrouter-app"
|
|
11
|
-
/>
|
|
12
|
-
<link rel="apple-touch-icon" href="/logo192.png" />
|
|
13
|
-
<link rel="manifest" href="/manifest.json" />
|
|
14
|
-
<title>Create TanStack App - <%= projectName %></title>
|
|
15
|
-
</head>
|
|
16
|
-
<body>
|
|
17
|
-
<div id="app"></div>
|
|
18
|
-
<script type="module" src="/src/main.<%= jsx %>"></script>
|
|
19
|
-
</body>
|
|
20
|
-
</html>
|
|
@@ -1,38 +0,0 @@
|
|
|
1
|
-
<% if (tailwind) { ignoreFile() } %>.App {
|
|
2
|
-
text-align: center;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.App-logo {
|
|
6
|
-
height: 40vmin;
|
|
7
|
-
pointer-events: none;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
@media (prefers-reduced-motion: no-preference) {
|
|
11
|
-
.App-logo {
|
|
12
|
-
animation: App-logo-spin infinite 20s linear;
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
.App-header {
|
|
17
|
-
background-color: #282c34;
|
|
18
|
-
min-height: 100vh;
|
|
19
|
-
display: flex;
|
|
20
|
-
flex-direction: column;
|
|
21
|
-
align-items: center;
|
|
22
|
-
justify-content: center;
|
|
23
|
-
font-size: calc(10px + 2vmin);
|
|
24
|
-
color: white;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
.App-link {
|
|
28
|
-
color: #61dafb;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
@keyframes App-logo-spin {
|
|
32
|
-
from {
|
|
33
|
-
transform: rotate(0deg);
|
|
34
|
-
}
|
|
35
|
-
to {
|
|
36
|
-
transform: rotate(360deg);
|
|
37
|
-
}
|
|
38
|
-
}
|
|
@@ -1,63 +0,0 @@
|
|
|
1
|
-
<% if (fileRouter) { ignoreFile() } %>import logo from "./logo.svg";<% if (!tailwind) { %>
|
|
2
|
-
import "./App.css";
|
|
3
|
-
<% } %>
|
|
4
|
-
|
|
5
|
-
function App() {
|
|
6
|
-
return (<% if (tailwind) { %>
|
|
7
|
-
<div className="text-center">
|
|
8
|
-
<header className="min-h-screen flex flex-col items-center justify-center bg-[#282c34] text-white text-[calc(10px+2vmin)]">
|
|
9
|
-
<img
|
|
10
|
-
src={logo}
|
|
11
|
-
className="h-[40vmin] pointer-events-none animate-[spin_20s_linear_infinite]"
|
|
12
|
-
alt="logo"
|
|
13
|
-
/>
|
|
14
|
-
<p>
|
|
15
|
-
Edit <code>src/App.<%= jsx %></code> and save to reload.
|
|
16
|
-
</p>
|
|
17
|
-
<a
|
|
18
|
-
className="text-[#61dafb] hover:underline"
|
|
19
|
-
href="https://reactjs.org"
|
|
20
|
-
target="_blank"
|
|
21
|
-
rel="noopener noreferrer"
|
|
22
|
-
>
|
|
23
|
-
Learn React
|
|
24
|
-
</a>
|
|
25
|
-
<a
|
|
26
|
-
className="text-[#61dafb] hover:underline"
|
|
27
|
-
href="https://tanstack.com"
|
|
28
|
-
target="_blank"
|
|
29
|
-
rel="noopener noreferrer"
|
|
30
|
-
>
|
|
31
|
-
Learn TanStack
|
|
32
|
-
</a>
|
|
33
|
-
</header>
|
|
34
|
-
</div>
|
|
35
|
-
<% } else { %>
|
|
36
|
-
<div className="App">
|
|
37
|
-
<header className="App-header">
|
|
38
|
-
<img src={logo} className="App-logo" alt="logo" />
|
|
39
|
-
<p>
|
|
40
|
-
Edit <code>src/App.<%= jsx %></code> and save to reload.
|
|
41
|
-
</p>
|
|
42
|
-
<a
|
|
43
|
-
className="App-link"
|
|
44
|
-
href="https://reactjs.org"
|
|
45
|
-
target="_blank"
|
|
46
|
-
rel="noopener noreferrer"
|
|
47
|
-
>
|
|
48
|
-
Learn React
|
|
49
|
-
</a>
|
|
50
|
-
<a
|
|
51
|
-
className="App-link"
|
|
52
|
-
href="https://tanstack.com"
|
|
53
|
-
target="_blank"
|
|
54
|
-
rel="noopener noreferrer"
|
|
55
|
-
>
|
|
56
|
-
Learn TanStack
|
|
57
|
-
</a>
|
|
58
|
-
</header>
|
|
59
|
-
</div>
|
|
60
|
-
<% } %> );
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
export default App;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
<% if (tailwind) { ignoreFile() } %>.header {
|
|
2
|
-
padding: 0.5rem;
|
|
3
|
-
display: flex;
|
|
4
|
-
gap: 0.5rem;
|
|
5
|
-
background-color: #fff;
|
|
6
|
-
color: #000;
|
|
7
|
-
justify-content: space-between;
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
.nav {
|
|
11
|
-
display: flex;
|
|
12
|
-
flex-direction: row;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
.nav-item {
|
|
16
|
-
padding: 0 0.5rem;
|
|
17
|
-
font-weight: bold;
|
|
18
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<svg width="5355px" height="3786px" viewBox="0 0 5355 3786" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
-
<title>logo</title>
|
|
4
|
-
<g id="logo" stroke="none" fill="none" transform="translate(0.9778, 0)" fill-rule="evenodd" stroke-width="1">
|
|
5
|
-
<g id="Layer_1" transform="translate(1117.351, 496.0658)" fill="#61DAFB">
|
|
6
|
-
<g id="Group" fill-rule="nonzero">
|
|
7
|
-
<path d="M3119.93396,1389.62036 C3119.93396,1182.92626 2861.10536,987.043843 2464.27723,865.571309 C2555.85295,461.086847 2515.15263,139.280027 2335.81684,36.2509659 C2294.48058,12.0836553 2246.14895,0.635981858 2193.36572,0.635981858 L2193.36572,142.459936 C2222.61908,142.459936 2246.14895,148.183773 2265.86317,158.995464 C2352.35135,208.602049 2389.87196,397.488661 2360.6186,640.433731 C2353.62323,700.216026 2342.17627,763.178229 2328.18553,827.412397 C2203.5408,796.885268 2067.4491,773.353939 1924.36204,758.090375 C1838.5098,640.433731 1749.47785,533.588779 1659.80995,440.099446 C1867.12721,247.396943 2061.72562,141.823954 2194.00166,141.823954 L2194.00166,0 C2019.11747,0 1790.17817,124.652444 1558.69509,340.886276 C1327.21202,125.924408 1098.27272,2.54392743 923.388526,2.54392743 L923.388526,144.367882 C1055.02863,144.367882 1250.26298,249.304888 1457.58024,440.735428 C1368.54828,534.224761 1279.51633,640.433731 1194.93598,758.090375 C1051.21297,773.353939 915.121273,796.885268 790.476541,828.048379 C775.849863,764.450193 765.038841,702.759953 757.407531,643.61364 C727.518233,400.66857 764.402898,211.781959 850.255137,161.539392 C869.333413,150.091718 894.13517,145.003864 923.388526,145.003864 L923.388526,3.17990929 C869.969355,3.17990929 821.637724,14.6275827 779.665518,38.7948933 C600.965673,141.823954 560.901295,462.994793 653.112959,866.20729 C257.556717,988.315807 0,1183.56224 0,1389.62036 C0,1595.67848 258.828602,1792.19688 655.656729,1913.66941 C564.081007,2318.15387 604.781328,2639.96069 784.117116,2742.98975 C825.453379,2767.15706 873.78501,2778.60474 927.204181,2778.60474 C1102.08837,2778.60474 1331.02768,2653.95229 1562.51075,2437.71846 C1793.99382,2652.68033 2022.93313,2776.06081 2197.81732,2776.06081 C2251.23649,2776.06081 2299.56812,2764.61314 2341.54033,2740.44583 C2520.24017,2637.41676 2560.30455,2316.24593 2468.09289,1913.03343 C2862.37724,1791.56089 3119.93396,1595.67848 3119.93396,1389.62036 L3119.93396,1389.62036 Z M2291.93681,965.42046 C2268.40694,1047.46212 2239.15358,1132.04771 2206.08457,1216.63329 C2180.01093,1165.75475 2152.6654,1114.8762 2122.7761,1063.99765 C2093.52275,1013.1191 2062.36156,963.512515 2031.20038,915.177893 C2121.50422,928.533513 2208.62834,945.069041 2291.93681,965.42046 Z M2000.67514,1642.74114 C1951.07162,1728.59869 1900.19622,1810.00437 1847.41299,1885.68621 C1752.65756,1893.95397 1656.63024,1898.40585 1559.96698,1898.40585 C1463.30372,1898.40585 1367.91234,1893.95397 1273.79285,1886.32219 C1221.00962,1810.64035 1169.49828,1729.87065 1119.89476,1644.64908 C1071.56313,1561.33546 1027.6831,1476.74987 987.61872,1391.52831 C1027.04716,1306.30674 1071.56313,1221.08517 1119.25882,1137.77154 C1168.86234,1051.91399 1219.73774,970.508315 1272.52096,894.826474 C1367.2764,886.55871 1463.30372,882.106837 1559.96698,882.106837 C1656.63024,882.106837 1752.02162,886.55871 1846.14111,894.190492 C1898.92434,969.872333 1950.43568,1050.64203 2000.0392,1135.8636 C2048.37083,1219.17722 2092.25086,1303.76281 2132.31524,1388.98438 C2092.25086,1474.20595 2048.37083,1559.42752 2000.67514,1642.74114 Z M2206.08457,1560.0635 C2240.42547,1645.28507 2269.67882,1730.50664 2293.84464,1813.18428 C2210.53617,1833.5357 2122.7761,1850.70721 2031.83632,1864.06283 C2062.99751,1815.09222 2094.15869,1764.84966 2123.41204,1713.33513 C2152.6654,1662.45658 2180.01093,1610.94205 2206.08457,1560.0635 Z M1561.23886,2238.65614 C1502.09621,2177.60188 1442.95356,2109.55182 1384.44685,2035.14195 C1441.68167,2037.68587 1500.18838,2039.59382 1559.33104,2039.59382 C1618.47369,2039.59382 1678.25229,2038.32185 1736.12305,2035.14195 C1678.88823,2109.55182 1619.74558,2177.60188 1561.23886,2238.65614 Z M1088.09764,1864.06283 C997.7938,1850.70721 910.669676,1834.17168 827.361207,1813.82026 C850.89108,1731.7786 880.144435,1647.19301 913.213446,1562.60742 C939.287089,1613.48597 966.632617,1664.36452 996.521915,1715.24307 C1026.41121,1766.12162 1056.93645,1815.7282 1088.09764,1864.06283 Z M1558.05915,540.584579 C1617.20181,601.638838 1676.34446,669.688896 1734.85117,744.098774 C1677.61634,741.554846 1619.10963,739.646901 1559.96698,739.646901 C1500.82433,739.646901 1441.04573,740.918864 1383.17496,744.098774 C1440.40979,669.688896 1499.55244,601.638838 1558.05915,540.584579 Z M1087.46169,915.177893 C1056.30051,964.148497 1025.13933,1014.39106 995.885972,1065.90559 C966.632617,1116.78414 939.287089,1167.66269 913.213446,1218.54124 C878.87255,1133.31967 849.619195,1048.0981 825.453379,965.42046 C908.761848,945.705023 996.521915,928.533513 1087.46169,915.177893 Z M511.933721,1711.42718 C286.810072,1615.39392 141.179237,1489.46951 141.179237,1389.62036 C141.179237,1289.77121 286.810072,1163.21082 511.933721,1067.81354 C566.624777,1044.28221 626.403373,1023.29481 688.089797,1003.57937 C724.33852,1128.23182 772.034208,1257.97211 831.176862,1390.89232 C772.670151,1523.17655 725.610405,1652.28087 689.997624,1776.29733 C627.039316,1756.58189 567.26072,1734.95851 511.933721,1711.42718 Z M854.070792,2620.24525 C767.582611,2570.63867 730.062003,2381.75206 759.315358,2138.80699 C766.310726,2079.02469 777.757691,2016.06249 791.748426,1951.82832 C916.393158,1982.35545 1052.48486,2005.88678 1195.57192,2021.15034 C1281.42416,2138.80699 1370.45611,2245.65194 1460.12401,2339.14127 C1252.80675,2531.84378 1058.20834,2637.41676 925.932296,2637.41676 C897.314883,2636.78078 873.149068,2631.05695 854.070792,2620.24525 L854.070792,2620.24525 Z M2362.52643,2135.62708 C2392.41573,2378.57215 2355.53106,2567.45876 2269.67882,2617.70133 C2250.60055,2629.149 2225.79879,2634.23686 2196.54543,2634.23686 C2064.90533,2634.23686 1869.67098,2529.29985 1662.35372,2337.86931 C1751.38568,2244.37998 1840.41763,2138.17101 1924.99798,2020.51436 C2068.72099,2005.2508 2204.81269,1981.71947 2329.45742,1950.55636 C2344.0841,2014.79053 2355.53106,2076.48077 2362.52643,2135.62708 L2362.52643,2135.62708 Z M2607.3643,1711.42718 C2552.67324,1734.95851 2492.89464,1755.94591 2431.20822,1775.66135 C2394.9595,1651.0089 2347.26381,1521.2686 2288.12115,1388.3484 C2346.62787,1256.06417 2393.68761,1126.95985 2429.30039,1002.94339 C2492.2587,1022.65883 2552.0373,1044.28221 2608.00024,1067.81354 C2833.12389,1163.8468 2978.75472,1289.77121 2978.75472,1389.62036 C2978.75472,1489.46951 2832.48794,1616.0299 2607.3643,1711.42718 L2607.3643,1711.42718 Z" id="Shape"></path>
|
|
8
|
-
</g>
|
|
9
|
-
<path d="M1537.37834,1099.4829 C1545.02735,1098.47702 1553.10731,1099.16174 1560.81604,1099.16174 C1589.37451,1099.16174 1617.41357,1103.60261 1644.73816,1112.01928 C1679.60968,1122.76128 1712.08981,1139.93545 1740.75715,1162.52987 C1775.89405,1190.22336 1805.00822,1226.54711 1823.68958,1267.31325 C1858.64201,1343.58359 1858.38571,1436.01692 1822.57667,1511.96611 C1799.42324,1561.07316 1762.27826,1602.17408 1717.31944,1632.14671 C1680.63641,1656.60215 1637.73331,1671.57142 1594.08247,1676.87122 C1538.52074,1683.61849 1478.45443,1673.7589 1428.50641,1648.10898 C1334.7397,1599.95554 1270.99292,1503.04196 1269.73182,1396.83535 C1269.48913,1376.35874 1269.80743,1355.76018 1273.85459,1335.48277 C1280.44663,1302.45918 1291.94018,1270.53691 1309.20168,1241.56031 C1327.87397,1210.21369 1351.99288,1182.55201 1380.87494,1160.24997 C1414.74469,1134.09636 1454.10946,1115.2846 1495.79531,1105.71435 C1505.55336,1103.47438 1515.35011,1102.20236 1525.19388,1100.99838 L1528.67012,1100.57481 C1531.56864,1100.22174 1534.47131,1099.86541 1537.37834,1099.4829 Z M1440.28829,1582.05277 C1427.38628,1583.43854 1413.77812,1585.79095 1402.70469,1593.0505 C1405.19749,1593.65093 1408.05457,1593.05485 1410.65507,1593.0505 C1416.90117,1593.04035 1423.20727,1592.80467 1429.44687,1593.07878 C1445.06719,1593.76551 1461.34234,1596.26875 1476.42637,1600.4123 C1488.01412,1603.59545 1498.77315,1608.6274 1509.54524,1613.66442 L1512.23902,1614.92271 C1518.52742,1617.854 1524.84413,1620.73472 1531.35625,1623.19891 C1550.98501,1630.62598 1570.52415,1632.93415 1591.34546,1632.93415 L1593.25225,1632.93318 C1603.09908,1632.91995 1612.8672,1632.72906 1622.42421,1630.03352 C1617.1148,1627.20106 1609.51424,1627.7326 1603.63241,1626.55277 C1590.87061,1623.99224 1578.32347,1620.86608 1566.04881,1616.47888 C1546.68964,1609.55943 1528.85694,1599.16793 1509.6734,1591.90838 C1487.81565,1583.63651 1463.59446,1579.54953 1440.28829,1582.05277 Z M1459.80285,1527.06119 C1434.23516,1527.06119 1408.3762,1531.57312 1385.35841,1543.19449 C1379.78158,1546.01028 1374.48085,1549.36485 1369.45766,1553.08274 C1367.92685,1554.21616 1365.21288,1555.67227 1364.64696,1557.64252 C1364.07308,1559.64106 1366.125,1561.31545 1367.28937,1562.5939 C1373.04255,1559.52213 1378.5088,1556.27053 1384.63565,1553.93842 C1424.26105,1538.85878 1472.29796,1542.01974 1511.84169,1555.84631 C1531.56224,1562.74183 1549.73174,1573.05357 1568.93985,1581.14052 C1590.42177,1590.18468 1612.36265,1596.04903 1635.43392,1599.05625 C1662.64806,1602.60227 1693.67549,1599.72848 1718.5515,1587.42618 C1727.29258,1583.10352 1739.42919,1576.51619 1743.1254,1566.94484 C1738.56043,1567.3444 1734.45298,1569.30378 1730.11569,1570.65475 C1723.2191,1572.80266 1716.24011,1574.62426 1709.1556,1576.04629 C1685.14474,1580.86496 1659.61174,1581.85988 1635.43392,1577.48645 C1610.81165,1573.03264 1588.07413,1563.72547 1565.31061,1554.26664 L1562.27515,1553.00498 C1550.63735,1548.16833 1538.97057,1543.34664 1527.01968,1539.16769 C1505.55366,1531.66159 1482.54816,1527.06119 1459.80285,1527.06119 Z M1504.61407,1133.60828 C1473.96537,1140.39067 1446.50982,1153.59796 1420.05097,1170.24757 C1404.69012,1179.91319 1389.99637,1189.81522 1376.68527,1202.25529 C1356.89028,1220.75623 1341.76143,1243.24263 1328.5667,1266.72974 C1314.97155,1290.92897 1306.25505,1319.13178 1302.04207,1346.49704 C1297.90932,1373.34381 1297.22848,1401.57056 1301.96257,1428.43981 C1307.88054,1462.03199 1319.14478,1493.55458 1336.93339,1522.71025 C1342.91135,1519.91332 1347.1554,1513.53629 1352.11138,1509.24045 C1362.11874,1500.56685 1372.62552,1492.52776 1383.91289,1485.59018 C1388.09117,1483.02239 1392.38365,1481.02821 1396.9226,1479.20082 C1398.63482,1478.51119 1401.43407,1477.88103 1402.23995,1475.99707 C1403.52069,1473.00507 1401.1522,1467.79772 1400.74528,1464.69767 C1399.58381,1455.83117 1398.88273,1446.81384 1399.10172,1437.86685 C1399.73775,1411.80978 1404.59833,1385.3894 1413.85256,1361.00019 C1420.82649,1342.62325 1431.48,1325.93811 1444.10086,1310.96434 C1448.38322,1305.88316 1452.9359,1301.15368 1457.63457,1296.46192 C1458.21308,1295.88421 1458.82064,1295.32387 1459.43565,1294.76658 L1460.17587,1294.09838 C1462.27545,1292.20409 1464.36137,1290.27877 1465.58495,1287.7593 C1456.52296,1287.76511 1447.45953,1290.38292 1438.84277,1293.04062 C1420.27936,1298.76647 1402.19587,1307.26241 1386.80393,1319.24926 C1379.78303,1324.71767 1374.6413,1331.88512 1368.00129,1337.63997 C1365.96455,1339.40573 1362.31605,1341.77192 1359.50162,1340.4398 C1355.24961,1338.42822 1355.90588,1330.0454 1355.41874,1326.19264 C1353.54534,1311.37332 1359.14891,1292.62874 1366.27028,1279.78257 C1377.7022,1259.16128 1398.84008,1241.55301 1423.66478,1242.16794 C1434.3855,1242.43335 1443.77128,1246.16501 1454.02076,1248.60081 C1451.42171,1244.90179 1447.93728,1242.20565 1444.62486,1239.17377 C1436.50897,1231.74453 1427.63201,1224.95924 1417.88268,1219.82657 C1415.26773,1218.45023 1412.51915,1217.43388 1409.75022,1216.45975 L1408.08733,1215.8778 C1407.25557,1215.58681 1406.42402,1215.29391 1405.59574,1214.9905 C1403.51346,1214.22836 1400.89128,1213.17906 1400.10781,1210.86073 C1398.65722,1206.56707 1406.37487,1202.59031 1409.20954,1200.77959 C1420.16806,1193.78038 1433.60492,1188.02263 1446.79315,1187.69848 C1467.40342,1187.1916 1487.541,1198.64836 1496.03056,1218.14421 C1499.41855,1225.92354 1500.09804,1234.21057 1500.70889,1242.5268 L1500.82326,1244.08631 C1500.88069,1244.86613 1500.93897,1245.64593 1501.00027,1246.42534 C1507.47332,1241.13895 1512.02599,1233.35946 1518.34654,1227.69743 C1533.12846,1214.45461 1553.35856,1208.57576 1572.55366,1214.53728 C1589.90066,1219.92375 1604.97747,1231.9164 1613.85081,1247.87566 C1616.17232,1252.05111 1622.64899,1262.25625 1617.96983,1266.41503 C1614.3076,1269.67098 1609.66313,1267.13366 1605.80069,1265.78341 C1601.8125,1264.38966 1597.64361,1263.69061 1593.51375,1262.86103 C1583.01058,1260.75155 1570.79301,1260.97055 1560.26672,1262.82477 C1553.46119,1264.02346 1546.81034,1266.44983 1540.02939,1267.4549 L1540.02939,1268.90522 C1558.57112,1269.05895 1576.50717,1279.65567 1585.65516,1295.73603 C1589.44532,1302.39805 1591.33824,1310.02308 1592.79026,1317.49075 C1594.5856,1326.72055 1593.32366,1336.77631 1590.80628,1345.77188 C1589.9621,1348.78781 1588.42984,1353.9009 1584.82977,1354.5956 C1582.28492,1355.08653 1580.12387,1352.54848 1578.67112,1350.83711 C1574.86289,1346.35128 1571.2404,1342.08663 1566.77157,1338.21284 C1555.46613,1328.41379 1543.51238,1319.37471 1531.35625,1310.65904 C1524.90199,1306.03109 1517.83266,1300.01446 1510.39617,1297.18635 C1512.48712,1302.23199 1514.53542,1306.92303 1515.24662,1312.41465 C1517.33829,1328.56825 1510.5877,1343.77263 1500.4553,1355.92409 C1497.36333,1359.63254 1494.05597,1363.36782 1490.15884,1366.24887 C1488.54275,1367.44393 1486.51468,1369.00447 1484.37675,1368.66655 C1477.67386,1367.60564 1476.87593,1357.4839 1475.84816,1352.2983 C1472.36734,1334.73427 1473.76516,1317.28988 1478.59466,1300.08698 C1474.29784,1302.2697 1471.19213,1307.04631 1468.49406,1310.96434 C1462.55802,1319.58573 1457.40762,1328.70458 1453.71431,1338.52031 C1439.00539,1377.62006 1439.14705,1423.41664 1458.20194,1461.05811 C1460.32975,1465.26184 1463.55905,1464.69767 1467.75323,1464.69767 C1472.80895,1464.69767 1477.91309,1464.44387 1482.93123,1465.11536 C1484.88413,1465.37642 1487.59593,1465.14364 1489.14192,1466.58526 C1490.99291,1468.31258 1490.00634,1471.27412 1489.57991,1473.39956 C1488.3888,1479.3415 1487.99056,1484.74174 1487.99056,1490.80333 C1495.9019,1489.57492 1498.09476,1476.86871 1500.89908,1470.49893 C1504.07706,1463.28289 1507.3107,1456.0596 1510.25089,1448.74421 C1511.69641,1445.14888 1513.6298,1441.12861 1513.12242,1437.1417 C1512.55289,1432.66095 1509.32142,1427.91044 1507.06929,1424.08887 C1502.80645,1416.85687 1497.96105,1409.41458 1494.82282,1401.60899 C1492.31412,1395.36901 1494.65008,1387.5714 1501.72375,1385.34226 C1505.62522,1384.1124 1509.7876,1386.52427 1512.32666,1389.34948 C1515.93315,1393.3614 1518.67364,1398.69976 1521.26801,1403.88732 L1522.0059,1405.3641 C1522.98612,1407.32427 1523.95508,1409.24214 1524.95258,1411.03604 L1555.1062,1465.42283 C1557.66694,1470.0283 1560.23347,1474.6287 1562.85348,1479.20082 C1563.87546,1480.9847 1564.91552,1483.73885 1567.00936,1484.49954 C1568.87408,1485.17684 1571.42182,1484.21383 1573.27642,1483.84182 C1578.09146,1482.87591 1582.89927,1481.83314 1587.73166,1480.9586 C1593.52242,1479.91074 1602.34951,1480.10726 1606.52346,1475.57503 C1600.41901,1473.63813 1593.36269,1473.75271 1587.00889,1474.18925 C1586.22321,1474.2433 1585.41997,1474.34419 1584.60911,1474.45086 L1583.91244,1474.54275 C1581.00382,1474.92353 1578.03411,1475.22838 1575.45555,1473.58665 C1570.23649,1470.26398 1566.76723,1462.58891 1563.57407,1457.4461 C1555.70103,1444.76455 1548.28333,1431.89228 1540.7442,1419.01276 C1538.34102,1414.90692 1535.86628,1410.83299 1533.5361,1406.68509 C1532.63554,1405.08104 1531.3006,1402.96721 1532.59073,1401.19855 C1533.93235,1399.36006 1536.8405,1399.23436 1539.486,1399.22865 L1540.63853,1399.22883 C1541.48104,1399.22712 1542.26426,1399.21253 1542.92044,1399.12605 C1553.68091,1397.70765 1564.591,1396.53289 1575.44471,1396.53289 C1574.5998,1393.58875 1572.18361,1390.26101 1572.95624,1387.10875 C1574.68509,1380.05587 1584.81459,1377.84921 1589.52555,1382.91009 C1592.68835,1386.30745 1594.52634,1390.98326 1596.58404,1395.08258 C1599.29945,1400.49442 1602.39143,1405.72571 1605.2991,1411.03604 C1610.38879,1420.33328 1615.94754,1429.37526 1621.18178,1438.59201 C1621.64941,1439.41555 1622.13242,1440.23451 1622.62001,1441.05306 L1623.35349,1442.2811 C1625.55616,1445.9674 1627.74247,1449.68746 1628.92907,1453.82031 C1610.75017,1452.98711 1597.1037,1431.84732 1589.17718,1417.56245 C1588.54476,1419.8496 1589.57253,1421.89091 1590.39431,1424.08887 C1592.10219,1428.65373 1594.14327,1433.00105 1596.71197,1437.1417 C1600.38071,1443.05463 1604.58646,1449.14377 1610.13726,1453.4367 C1619.98778,1461.05448 1632.97725,1461.09654 1644.82982,1460.28219 C1652.43038,1459.75935 1661.92747,1456.2931 1669.40371,1458.64478 C1676.86767,1460.99284 1679.87219,1469.23933 1675.4395,1475.5743 C1672.11913,1480.31973 1667.68716,1482.1116 1662.1761,1482.8266 C1666.07323,1491.20144 1671.17882,1498.97368 1674.87936,1507.48195 C1676.42101,1511.02652 1678.02771,1516.45867 1681.72174,1518.32885 C1684.1813,1519.57322 1687.70476,1518.41442 1690.3638,1518.35931 C1687.69536,1511.28612 1682.69891,1505.284 1680.24514,1498.0549 C1687.72644,1498.3979 1694.96201,1502.30868 1701.92799,1504.80467 C1717.73912,1510.4696 1733.32041,1516.74438 1748.90749,1523.00031 C1754.4648,1525.23017 1760.05536,1527.43755 1765.53101,1529.86175 C1767.5345,1530.74862 1770.30846,1532.82184 1772.523,1531.54557 C1774.3299,1530.50352 1775.49861,1528.01913 1776.61311,1526.33604 C1779.73038,1521.62687 1782.55349,1516.73786 1785.34985,1511.83289 C1796.54904,1492.18983 1804.76323,1470.66644 1810.25043,1448.74421 C1828.34983,1376.44313 1812.82274,1296.66786 1769.32912,1236.27314 C1752.61815,1213.06883 1731.60241,1193.00808 1708.43284,1176.39473 C1650.44929,1134.82074 1574.37719,1118.17113 1504.61407,1133.60828 Z M1623.14697,1494.16008 C1607.776,1498.17456 1591.93524,1501.81339 1576.16747,1503.85616 C1578.24107,1510.92862 1583.30835,1517.80819 1587.01757,1524.16056 C1588.45153,1526.61667 1589.98595,1529.90599 1592.8199,1530.97197 C1596.02101,1532.17573 1599.88923,1530.22215 1602.90965,1529.23667 C1601.5111,1525.40348 1599.15779,1521.95391 1597.23163,1518.35931 C1596.43804,1516.87709 1595.21007,1515.1222 1595.86417,1513.36225 C1597.10081,1510.03668 1602.23459,1510.23247 1605.07793,1509.65452 C1612.5708,1508.13169 1619.98561,1506.23105 1627.48354,1504.72635 C1630.24594,1504.17161 1634.09247,1502.66908 1636.8686,1503.59728 C1640.50626,1504.81337 1641.61498,1509.15561 1644.25884,1511.54718 C1647.2901,1514.289 1651.82326,1514.71032 1655.67124,1515.45868 C1653.32299,1510.16503 1649.42008,1505.53345 1646.91788,1500.23038 C1645.46296,1497.14628 1644.26751,1492.60897 1641.0823,1490.82654 C1636.69442,1488.37115 1627.63243,1492.98823 1623.14697,1494.16008 Z M1526.29692,1458.89641 C1525.57344,1468.08996 1522.75828,1475.56995 1518.34654,1483.55176 C1523.40226,1484.1928 1528.55916,1484.42122 1533.52454,1485.65399 C1537.24604,1486.57784 1540.67554,1488.33997 1544.36596,1489.35302 C1542.39282,1483.94479 1538.73203,1479.1196 1535.89592,1474.12472 C1533.03234,1469.0827 1530.46942,1462.95584 1526.29692,1458.89641 Z" id="Combined-Shape-Copy" fill-rule="nonzero"></path>
|
|
10
|
-
</g>
|
|
11
|
-
</g>
|
|
12
|
-
</svg>
|
|
@@ -1,166 +0,0 @@
|
|
|
1
|
-
<% if (addOnEnabled.start) { ignoreFile() } %><% if (codeRouter) {
|
|
2
|
-
|
|
3
|
-
/// Code Router
|
|
4
|
-
|
|
5
|
-
%>import { StrictMode } from "react";
|
|
6
|
-
import ReactDOM from "react-dom/client";
|
|
7
|
-
import {
|
|
8
|
-
Outlet,
|
|
9
|
-
RouterProvider,
|
|
10
|
-
createRootRoute,
|
|
11
|
-
createRoute,
|
|
12
|
-
createRouter,
|
|
13
|
-
} from "@tanstack/react-router";
|
|
14
|
-
import { TanStackRouterDevtools } from "@tanstack/react-router-devtools";
|
|
15
|
-
<% for(const route of routes) { %>import <%= route.jsName %> from "<%= relativePath(route.path) %>";
|
|
16
|
-
<% } %><% if (routes.length > 0) { %>
|
|
17
|
-
import Header from "./components/Header";
|
|
18
|
-
<% } %><% for(const integration of integrations.filter(i => i.type === 'layout' || i.type === 'provider')) { %>
|
|
19
|
-
import <%= integration.jsName %> from "<%= relativePath(integration.path) %>";
|
|
20
|
-
<% } %><% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
21
|
-
import * as <%= integration.jsName %> from "<%= relativePath(integration.path) %>";
|
|
22
|
-
<% } %>
|
|
23
|
-
|
|
24
|
-
import "./styles.css";
|
|
25
|
-
import reportWebVitals from "./reportWebVitals.<%= js %>";
|
|
26
|
-
|
|
27
|
-
import App from "./App.<%= jsx %>";
|
|
28
|
-
|
|
29
|
-
const rootRoute = createRootRoute({
|
|
30
|
-
component: () => (
|
|
31
|
-
<>
|
|
32
|
-
<% for(const integration of integrations.filter(i => i.type === 'provider')) { %>
|
|
33
|
-
<<%= integration.jsName %>>
|
|
34
|
-
<% } %>
|
|
35
|
-
<% if (routes.length > 0) { %><Header /><% } %>
|
|
36
|
-
<Outlet />
|
|
37
|
-
<TanStackRouterDevtools />
|
|
38
|
-
<% for(const integration of integrations.filter(i => i.type === 'layout')) { %>
|
|
39
|
-
<<%= integration.jsName %> />
|
|
40
|
-
<% } %>
|
|
41
|
-
<% for(const integration of integrations.filter(i => i.type === 'provider').reverse()) { %>
|
|
42
|
-
</<%= integration.jsName %>>
|
|
43
|
-
<% } %>
|
|
44
|
-
</>
|
|
45
|
-
),
|
|
46
|
-
});
|
|
47
|
-
|
|
48
|
-
const indexRoute = createRoute({
|
|
49
|
-
getParentRoute: () => rootRoute,
|
|
50
|
-
path: "/",
|
|
51
|
-
component: App,
|
|
52
|
-
});
|
|
53
|
-
|
|
54
|
-
const routeTree = rootRoute.addChildren([indexRoute<%= routes.map(route => `, ${route.jsName}(rootRoute)`).join('') %>]);
|
|
55
|
-
|
|
56
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
57
|
-
const <%= integration.jsName %>Context = <%= integration.jsName %>.getContext();
|
|
58
|
-
<% } %>const router = createRouter({
|
|
59
|
-
routeTree,
|
|
60
|
-
context: {
|
|
61
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
62
|
-
...<%= integration.jsName %>Context,
|
|
63
|
-
<% } %>
|
|
64
|
-
},
|
|
65
|
-
defaultPreload: "intent",
|
|
66
|
-
scrollRestoration: true,
|
|
67
|
-
defaultStructuralSharing: true,
|
|
68
|
-
defaultPreloadStaleTime: 0,
|
|
69
|
-
});
|
|
70
|
-
<% if (typescript) { %>
|
|
71
|
-
declare module "@tanstack/react-router" {
|
|
72
|
-
interface Register {
|
|
73
|
-
router: typeof router;
|
|
74
|
-
}
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
const rootElement = document.getElementById("app");
|
|
78
|
-
<% } else { %>
|
|
79
|
-
const rootElement = document.getElementById("app");
|
|
80
|
-
<% } %>if (rootElement && !rootElement.innerHTML) {
|
|
81
|
-
const root = ReactDOM.createRoot(rootElement);
|
|
82
|
-
root.render(
|
|
83
|
-
<StrictMode>
|
|
84
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
85
|
-
<<%= integration.jsName %>.Provider {...<%= integration.jsName %>Context}>
|
|
86
|
-
<% } %>
|
|
87
|
-
<RouterProvider router={router} />
|
|
88
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider').reverse()) { %>
|
|
89
|
-
</<%= integration.jsName %>.Provider>
|
|
90
|
-
<% } %>
|
|
91
|
-
</StrictMode>
|
|
92
|
-
);
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
// If you want to start measuring performance in your app, pass a function
|
|
96
|
-
// to log results (for example: reportWebVitals(console.log))
|
|
97
|
-
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
98
|
-
reportWebVitals();
|
|
99
|
-
<% } else {
|
|
100
|
-
|
|
101
|
-
/* File Router */
|
|
102
|
-
|
|
103
|
-
%>import { StrictMode } from "react";
|
|
104
|
-
import ReactDOM from "react-dom/client";
|
|
105
|
-
import { RouterProvider, createRouter } from "@tanstack/react-router";
|
|
106
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
107
|
-
import * as <%= integration.jsName %> from "<%= relativePath(integration.path) %>";
|
|
108
|
-
<% } %><% if (addOnEnabled.paraglide) { %>
|
|
109
|
-
import { deLocalizeUrl, localizeUrl } from "./paraglide/runtime";
|
|
110
|
-
<% } %>
|
|
111
|
-
|
|
112
|
-
// Import the generated route tree
|
|
113
|
-
import { routeTree } from "./routeTree.gen";
|
|
114
|
-
|
|
115
|
-
import "./styles.css";
|
|
116
|
-
import reportWebVitals from "./reportWebVitals.<%= js %>";
|
|
117
|
-
|
|
118
|
-
// Create a new router instance
|
|
119
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
120
|
-
const <%= integration.jsName %>Context = <%= integration.jsName %>.getContext();
|
|
121
|
-
<% } %>const router = createRouter({
|
|
122
|
-
routeTree,
|
|
123
|
-
context: {
|
|
124
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
125
|
-
...<%= integration.jsName %>Context,
|
|
126
|
-
<% } %>
|
|
127
|
-
},<% if (addOnEnabled.paraglide) { %>
|
|
128
|
-
// Paraglide URL rewrite docs: https://github.com/TanStack/router/tree/main/examples/react/i18n-paraglide#rewrite-url
|
|
129
|
-
rewrite: {
|
|
130
|
-
input: ({ url }) => deLocalizeUrl(url),
|
|
131
|
-
output: ({ url }) => localizeUrl(url),
|
|
132
|
-
},<% } %>
|
|
133
|
-
defaultPreload: "intent",
|
|
134
|
-
scrollRestoration: true,
|
|
135
|
-
defaultStructuralSharing: true,
|
|
136
|
-
defaultPreloadStaleTime: 0,
|
|
137
|
-
});
|
|
138
|
-
|
|
139
|
-
// Register the router instance for type safety
|
|
140
|
-
declare module "@tanstack/react-router" {
|
|
141
|
-
interface Register {
|
|
142
|
-
router: typeof router;
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
|
|
146
|
-
// Render the app
|
|
147
|
-
const rootElement = document.getElementById("app");
|
|
148
|
-
if (rootElement && !rootElement.innerHTML) {
|
|
149
|
-
const root = ReactDOM.createRoot(rootElement);
|
|
150
|
-
root.render(
|
|
151
|
-
<StrictMode>
|
|
152
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider')) { %>
|
|
153
|
-
<<%= integration.jsName %>.Provider {...<%= integration.jsName %>Context}>
|
|
154
|
-
<% } %>
|
|
155
|
-
<RouterProvider router={router} />
|
|
156
|
-
<% for(const integration of integrations.filter(i => i.type === 'root-provider').reverse()) { %>
|
|
157
|
-
</<%= integration.jsName %>.Provider>
|
|
158
|
-
<% } %>
|
|
159
|
-
</StrictMode>
|
|
160
|
-
);
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
// If you want to start measuring performance in your app, pass a function
|
|
164
|
-
// to log results (for example: reportWebVitals(console.log))
|
|
165
|
-
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
166
|
-
reportWebVitals();<% } %>
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
<% if (addOnEnabled.start) { ignoreFile() } %><% if (typescript) { %>
|
|
2
|
-
const reportWebVitals = (onPerfEntry?: () => void) => {
|
|
3
|
-
if (onPerfEntry && onPerfEntry instanceof Function) {
|
|
4
|
-
import("web-vitals").then(
|
|
5
|
-
({ onCLS, onINP, onFCP, onLCP, onTTFB }) => {
|
|
6
|
-
onCLS(onPerfEntry);
|
|
7
|
-
onINP(onPerfEntry);
|
|
8
|
-
onFCP(onPerfEntry);
|
|
9
|
-
onLCP(onPerfEntry);
|
|
10
|
-
onTTFB(onPerfEntry);
|
|
11
|
-
}
|
|
12
|
-
);
|
|
13
|
-
}
|
|
14
|
-
};
|
|
15
|
-
<% } else { %>
|
|
16
|
-
const reportWebVitals = onPerfEntry => {
|
|
17
|
-
if (onPerfEntry && onPerfEntry instanceof Function) {
|
|
18
|
-
import('web-vitals').then(({ onCLS, onINP, onFCP, onLCP, onTTFB }) => {
|
|
19
|
-
onCLS(onPerfEntry);
|
|
20
|
-
onINP(onPerfEntry);
|
|
21
|
-
onFCP(onPerfEntry);
|
|
22
|
-
onLCP(onPerfEntry);
|
|
23
|
-
onTTFB(onPerfEntry);
|
|
24
|
-
});
|
|
25
|
-
}
|
|
26
|
-
};
|
|
27
|
-
<% } %>
|
|
28
|
-
export default reportWebVitals;
|
package/src/frameworks/solid/add-ons/module-federation/assets/module-federation.config.js.ejs
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import packageJSON from './package.json'
|
|
2
|
-
|
|
3
|
-
function remoteConfig(name, url) {
|
|
4
|
-
return {
|
|
5
|
-
type: 'module',
|
|
6
|
-
name,
|
|
7
|
-
entry: url,
|
|
8
|
-
entryGlobalName: 'remote',
|
|
9
|
-
shareScope: 'default',
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export default {
|
|
14
|
-
filename: 'remoteEntry.js',
|
|
15
|
-
name: '<%= projectName %>',
|
|
16
|
-
exposes: {
|
|
17
|
-
'./DemoMfComponent': './src/demo-mf-component.tsx',
|
|
18
|
-
'./DemoMfSelfContained': './src/demo-mf-self-contained.tsx',
|
|
19
|
-
},
|
|
20
|
-
remotes: {},
|
|
21
|
-
shared: {
|
|
22
|
-
'solid-js': {
|
|
23
|
-
singleton: true,
|
|
24
|
-
requiredVersion: packageJSON.dependencies['solid-js'],
|
|
25
|
-
},
|
|
26
|
-
},
|
|
27
|
-
}
|
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
<svg width="159" height="152" viewBox="0 0 159 152" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
-
<path d="M96.2834 12.6942L79.0983 3.20801" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
3
|
-
<path d="M80.9289 3.11991C80.9289 4.10042 80.1336 4.89569 79.152 4.89569C78.1705 4.89569 77.3752 4.10042 77.3752 3.11991C77.3752 2.13939 78.1705 1.34412 79.152 1.34412C80.1336 1.34412 80.9289 2.13939 80.9289 3.11991Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
4
|
-
<path d="M98.06 12.6946C98.06 13.6751 97.2647 14.4704 96.2832 14.4704C95.3016 14.4704 94.5063 13.6751 94.5063 12.6946C94.5063 11.7141 95.3016 10.9188 96.2832 10.9188C97.2647 10.9188 98.06 11.7141 98.06 12.6946Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
5
|
-
<path d="M61.9091 12.8208L79.0981 3.20801" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
6
|
-
<path d="M63.6861 12.6946C63.6861 13.6751 62.8908 14.4704 61.9092 14.4704C60.9277 14.4704 60.1324 13.6751 60.1324 12.6946C60.1324 11.7141 60.9277 10.9188 61.9092 10.9188C62.8908 10.9188 63.6861 11.7141 63.6861 12.6946Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
7
|
-
<path d="M96.2834 139.344L79.0983 148.834" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
8
|
-
<path d="M80.9289 148.923C80.9289 149.904 80.1336 150.699 79.152 150.699C78.1705 150.699 77.3752 149.904 77.3752 148.923C77.3752 147.943 78.1705 147.147 79.152 147.147C80.1336 147.147 80.9289 147.943 80.9289 148.923Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
9
|
-
<path d="M98.06 139.344C98.06 140.325 97.2647 141.12 96.2832 141.12C95.3016 141.12 94.5063 140.325 94.5063 139.344C94.5063 138.364 95.3016 137.568 96.2832 137.568C97.2647 137.568 98.06 138.364 98.06 139.344Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
10
|
-
<path d="M61.9091 139.222L79.0981 148.834" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
11
|
-
<path d="M63.6861 139.344C63.6861 140.325 62.8908 141.12 61.9093 141.12C60.9277 141.12 60.1324 140.325 60.1324 139.344C60.1324 138.364 60.9277 137.568 61.9093 137.568C62.8908 137.568 63.6861 138.364 63.6861 139.344Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
12
|
-
<path d="M32.7162 29.5874L15.9264 39.7641" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
13
|
-
<path d="M17.6533 39.6726C17.6533 40.6532 16.858 41.4484 15.8764 41.4484C14.8949 41.4484 14.0996 40.6532 14.0996 39.6726C14.0996 38.6921 14.8949 37.8969 15.8764 37.8969C16.858 37.8969 17.6533 38.6921 17.6533 39.6726Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
14
|
-
<path d="M4.38269 32.0545C4.38269 33.035 3.5874 33.8303 2.60585 33.8303C1.6243 33.8303 0.829007 33.035 0.829007 32.0545C0.829007 31.074 1.6243 30.2787 2.60585 30.2787C3.5874 30.2787 4.38269 31.074 4.38269 32.0545Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
15
|
-
<path d="M34.493 29.5877C34.493 30.5682 33.6977 31.3635 32.7162 31.3635C31.7346 31.3635 30.9394 30.5682 30.9394 29.5877C30.9394 28.6072 31.7346 27.8119 32.7162 27.8119C33.6977 27.8119 34.493 28.6072 34.493 29.5877Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
16
|
-
<path d="M15.7038 59.4467L15.9264 39.7646" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
17
|
-
<path d="M17.3732 59.3846C17.3732 60.3651 16.5779 61.1603 15.5964 61.1603C14.6148 61.1603 13.8195 60.3651 13.8195 59.3846C13.8195 58.404 14.6148 57.6088 15.5964 57.6088C16.5779 57.6088 17.3732 58.404 17.3732 59.3846Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
18
|
-
<path d="M15.9265 39.7647L2.19912 31.8857" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
19
|
-
<path d="M142.597 92.6567L142.267 112.277" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
20
|
-
<path d="M144.147 112.278C144.147 113.258 143.352 114.053 142.37 114.053C141.389 114.053 140.593 113.258 140.593 112.278C140.593 111.297 141.389 110.502 142.37 110.502C143.352 110.502 144.147 111.297 144.147 112.278Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
21
|
-
<path d="M157.418 119.892C157.418 120.872 156.622 121.668 155.641 121.668C154.659 121.668 153.864 120.872 153.864 119.892C153.864 118.911 154.659 118.116 155.641 118.116C156.622 118.116 157.418 118.911 157.418 119.892Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
22
|
-
<path d="M144.373 92.657C144.373 93.6375 143.578 94.4328 142.597 94.4328C141.615 94.4328 140.82 93.6375 140.82 92.657C140.82 91.6765 141.615 90.8812 142.597 90.8812C143.578 90.8812 144.373 91.6765 144.373 92.657Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
23
|
-
<path d="M125.369 122.389L142.267 112.277" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
24
|
-
<path d="M127.254 122.454C127.254 123.434 126.458 124.23 125.477 124.23C124.495 124.23 123.7 123.434 123.7 122.454C123.7 121.473 124.495 120.678 125.477 120.678C126.458 120.678 127.254 121.473 127.254 122.454Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
25
|
-
<path d="M142.267 112.277L155.994 120.156" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
26
|
-
<path d="M15.6729 92.9106L16.072 112.531" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
27
|
-
<path d="M17.7453 112.532C17.7453 113.512 16.95 114.307 15.9684 114.307C14.9869 114.307 14.1916 113.512 14.1916 112.532C14.1916 111.551 14.9869 110.756 15.9684 110.756C16.95 110.756 17.7453 111.551 17.7453 112.532Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
28
|
-
<path d="M4.50523 120.196C4.50523 121.177 3.70993 121.972 2.72838 121.972C1.74683 121.972 0.951542 121.177 0.951542 120.196C0.951542 119.216 1.74683 118.42 2.72838 118.42C3.70993 118.42 4.50523 119.216 4.50523 120.196Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
29
|
-
<path d="M17.4498 92.9109C17.4498 93.8914 16.6545 94.6867 15.6729 94.6867C14.6914 94.6867 13.8961 93.8914 13.8961 92.9109C13.8961 91.9304 14.6914 91.1351 15.6729 91.1351C16.6545 91.1351 17.4498 91.9304 17.4498 92.9109Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
30
|
-
<path d="M33.0039 122.581L16.0721 112.531" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
31
|
-
<path d="M34.6731 122.647C34.6731 123.628 33.8778 124.423 32.8962 124.423C31.9147 124.423 31.1194 123.628 31.1194 122.647C31.1194 121.667 31.9147 120.871 32.8962 120.871C33.8778 120.871 34.6731 121.667 34.6731 122.647Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
32
|
-
<path d="M16.072 112.531L2.37531 120.46" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
33
|
-
<path d="M125.323 29.4409L142.147 39.5524" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
34
|
-
<path d="M143.974 39.4646C143.974 40.4451 143.179 41.2404 142.197 41.2404C141.215 41.2404 140.42 40.4451 140.42 39.4646C140.42 38.4841 141.215 37.6888 142.197 37.6888C143.179 37.6888 143.974 38.4841 143.974 39.4646Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
35
|
-
<path d="M157.218 31.8001C157.218 32.7806 156.422 33.5759 155.441 33.5759C154.459 33.5759 153.664 32.7806 153.664 31.8001C153.664 30.8196 154.459 30.0243 155.441 30.0243C156.422 30.0243 157.218 30.8196 157.218 31.8001Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
36
|
-
<path d="M127.1 29.4412C127.1 30.4217 126.305 31.217 125.323 31.217C124.341 31.217 123.546 30.4217 123.546 29.4412C123.546 28.4607 124.341 27.6654 125.323 27.6654C126.305 27.6654 127.1 28.4607 127.1 29.4412Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
37
|
-
<path d="M142.439 59.2381L142.147 39.5522" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
38
|
-
<path d="M144.323 59.1731C144.323 60.1536 143.528 60.9489 142.546 60.9489C141.565 60.9489 140.77 60.1536 140.77 59.1731C140.77 58.1926 141.565 57.3973 142.546 57.3973C143.528 57.3973 144.323 58.1926 144.323 59.1731Z" fill="#108CB9" stroke="#108CB9" stroke-width="1.05152"/>
|
|
39
|
-
<path d="M142.147 39.5529L155.844 31.6279" stroke="#108CB9" stroke-width="3.15457" stroke-miterlimit="10"/>
|
|
40
|
-
<path d="M96.5177 43.3354L79.0294 33.2432L61.5411 43.3354L79.0294 53.4277L96.5177 43.3354Z" fill="#9589EC"/>
|
|
41
|
-
<path d="M79.0294 73.6123V53.4277L61.5411 43.3354V63.52L79.0294 73.6123Z" fill="#6559A2"/>
|
|
42
|
-
<path d="M79.0294 73.6123V53.4277L96.5177 43.3354V63.52L79.0294 73.6123Z" fill="#6559A2"/>
|
|
43
|
-
<path d="M79.0294 32.8018L61.1573 43.1165V63.7422L79.0294 74.057L96.9014 63.7422V43.1165L79.0294 32.8018ZM95.7501 43.3352L79.0294 52.9863L62.3086 43.339L79.0294 33.6879L95.7501 43.339V43.3352ZM61.9249 43.9988L78.6456 53.6461V72.9445L61.9249 63.2934V43.9949V43.9988ZM79.4131 72.9445V53.6461L96.1339 43.9949V63.2934L79.4131 72.9445Z" fill="#1C2135"/>
|
|
44
|
-
<path d="M77.3292 77.0913L59.8409 66.999L42.3527 77.0913L59.8409 87.1836L77.3292 77.0913Z" fill="#6559A2"/>
|
|
45
|
-
<path d="M59.8409 107.368V87.1831L42.3527 77.0908V97.2754L59.8409 107.368Z" fill="#9589EC"/>
|
|
46
|
-
<path d="M59.8409 107.368V87.1831L77.3292 77.0908V97.2754L59.8409 107.368Z" fill="#6559A2"/>
|
|
47
|
-
<path d="M59.8409 66.5571L41.9689 76.8719V97.4976L59.8409 107.812L77.7129 97.4976V76.8719L59.8409 66.5571ZM76.5616 77.0905L59.8409 86.7417L43.1202 77.0944L59.8409 67.4432L76.5616 77.0944V77.0905ZM42.7364 77.7541L59.4571 87.4015V106.7L42.7364 97.0488V77.7503V77.7541ZM60.2246 106.7V87.4015L76.9454 77.7503V97.0488L60.2246 106.7Z" fill="#1C2135"/>
|
|
48
|
-
<path d="M115.706 77.0913L98.2176 66.999L80.7294 77.0913L98.2176 87.1836L115.706 77.0913Z" fill="#6559A2"/>
|
|
49
|
-
<path d="M98.2176 107.368V87.1831L80.7294 77.0908V97.2754L98.2176 107.368Z" fill="#6559A2"/>
|
|
50
|
-
<path d="M98.2176 107.368V87.1831L115.706 77.0908V97.2754L98.2176 107.368Z" fill="#9589EC"/>
|
|
51
|
-
<path d="M98.2176 66.5571L80.3456 76.8719V97.4976L98.2176 107.812L116.09 97.4976V76.8719L98.2176 66.5571ZM114.938 77.0905L98.2176 86.7417L81.4969 77.0944L98.2176 67.4432L114.938 77.0944V77.0905ZM81.1131 77.7541L97.8338 87.4015V106.7L81.1131 97.0526V77.7541ZM98.6014 106.704V87.4053L115.322 77.7541V97.0526L98.6014 106.704Z" fill="#1C2135"/>
|
|
52
|
-
<path d="M115.706 54.8423L98.2176 44.75L80.7294 54.8423L98.2176 64.9346L115.706 54.8423Z" fill="#9589EC"/>
|
|
53
|
-
<path d="M98.2176 85.1191V64.9346L80.7294 54.8423V75.0268L98.2176 85.1191Z" fill="#6559A2"/>
|
|
54
|
-
<path d="M98.2176 85.1191V64.9346L115.706 54.8423V75.0268L98.2176 85.1191Z" fill="#9589EC"/>
|
|
55
|
-
<path d="M98.2176 44.3091L80.3456 54.6238V75.2495L98.2176 85.5643L116.09 75.2495V54.6238L98.2176 44.3091ZM114.938 54.8425L98.2176 64.4936L81.4969 54.8463L98.2176 45.1952L114.938 54.8463V54.8425ZM81.1131 55.5061L97.8338 65.1534V84.4519L81.1131 74.8046V55.5061ZM98.6014 84.4557V65.1573L115.322 55.5061V74.8046L98.6014 84.4557Z" fill="#1C2135"/>
|
|
56
|
-
<path d="M77.3292 54.8423L59.8409 44.75L42.3527 54.8423L59.8409 64.9346L77.3292 54.8423Z" fill="#9589EC"/>
|
|
57
|
-
<path d="M59.8409 85.1191V64.9346L42.3527 54.8423V75.0268L59.8409 85.1191Z" fill="#9589EC"/>
|
|
58
|
-
<path d="M59.8409 85.1191V64.9346L77.3292 54.8423V75.0268L59.8409 85.1191Z" fill="#6559A2"/>
|
|
59
|
-
<path d="M59.8409 44.3091L41.9689 54.6238V75.2495L59.8409 85.5643L77.7129 75.2495V54.6238L59.8409 44.3091ZM76.5616 54.8425L59.8409 64.4936L43.1202 54.8463L59.8409 45.1952L76.5616 54.8463V54.8425ZM42.7364 55.5061L59.4571 65.1534V84.4519L42.7364 74.8007V55.5023V55.5061ZM60.2246 84.4519V65.1534L76.9454 55.5023V74.8007L60.2246 84.4519Z" fill="#1C2135"/>
|
|
60
|
-
<path d="M96.5177 88.2153L79.0294 78.123L61.5411 88.2153L79.0294 98.3076L96.5177 88.2153Z" fill="#6559A2"/>
|
|
61
|
-
<path d="M79.0294 118.492V98.3076L61.5411 88.2153V108.4L79.0294 118.492Z" fill="#9589EC"/>
|
|
62
|
-
<path d="M79.0294 118.492V98.3076L96.5177 88.2153V108.4L79.0294 118.492Z" fill="#9589EC"/>
|
|
63
|
-
<path d="M79.0294 77.6816L61.1573 87.9964V108.622L79.0294 118.937L96.9014 108.622V87.9964L79.0294 77.6816ZM95.7501 88.215L79.0294 97.8662L62.3086 88.2189L79.0294 78.5677L95.7501 88.2189V88.215ZM61.9249 88.8787L78.6456 98.526V117.824L61.9249 108.177V88.8787ZM79.4131 117.828V98.5298L96.1339 88.8787V108.177L79.4131 117.828Z" fill="#1C2135"/>
|
|
64
|
-
<path d="M96.5177 66.3511L79.0294 56.2588L61.5411 66.3511L79.0294 76.4434L96.5177 66.3511Z" fill="#9589EC"/>
|
|
65
|
-
<path d="M79.0294 96.6279V76.4434L61.5411 66.3511V86.5356L79.0294 96.6279Z" fill="#9589EC"/>
|
|
66
|
-
<path d="M79.0294 96.6279V76.4434L96.5177 66.3511V86.5356L79.0294 96.6279Z" fill="#9589EC"/>
|
|
67
|
-
<path d="M79.0294 97.0726L61.1573 86.7578V66.1321L79.0294 55.8174L96.9014 66.1321V86.7578L79.0294 97.0726ZM61.9249 86.3167L79.0294 96.1865L96.1339 86.3167V66.5733L79.0294 56.7035L61.9249 66.5733V86.3129V86.3167Z" fill="#1C2135"/>
|
|
68
|
-
<path d="M61.7396 66.0285L61.3558 66.6929L78.8442 76.7852L79.2279 76.1208L61.7396 66.0285Z" fill="#1C2135"/>
|
|
69
|
-
<path d="M96.3385 66.0602L78.8484 76.1494L79.232 76.8139L96.7222 66.7247L96.3385 66.0602Z" fill="#1C2135"/>
|
|
70
|
-
<path d="M79.4131 76.4429H78.6456V96.6274H79.4131V76.4429Z" fill="#1C2135"/>
|
|
71
|
-
<path d="M134.545 43.1704L79.866 11.6162V31.5476L117.276 53.1361L134.545 43.1704Z" fill="#71BEDB"/>
|
|
72
|
-
<path d="M80.6336 12.9434L133.014 43.1703L117.279 52.2499L80.6336 31.1026V12.9434ZM79.866 11.6161V31.5475L117.279 53.136L134.549 43.1703L79.866 11.6123V11.6161Z" fill="#1C2135"/>
|
|
73
|
-
<path d="M40.8101 53.1975L78.331 31.5476V11.6162L23.5405 43.2318L40.8101 53.1975Z" fill="#71BEDB"/>
|
|
74
|
-
<path d="M77.5639 12.9434V31.1026L40.8143 52.3114L25.0799 43.2318L77.5639 12.9434ZM78.3314 11.6162L23.5448 43.2318L40.8143 53.1975L78.3314 31.5476V11.6162Z" fill="#1C2135"/>
|
|
75
|
-
<path d="M118.012 54.4823V97.7514L135.282 107.717V44.5166L118.012 54.4823Z" fill="#71BEDB"/>
|
|
76
|
-
<path d="M134.514 45.8477V106.39L118.78 97.3102V54.9273L134.514 45.8477ZM135.282 44.5204L118.012 54.4861V97.7514L135.282 107.717V44.5166V44.5204Z" fill="#1C2135"/>
|
|
77
|
-
<path d="M40.1806 54.6053L22.9111 44.6396V107.595L40.1806 97.6289V54.6053Z" fill="#71BEDB"/>
|
|
78
|
-
<path d="M23.6786 45.9669L39.413 55.0465V97.1839L23.6786 106.264V45.9669ZM22.9111 44.6396V107.595L40.1806 97.6289V54.6053L22.9111 44.6396Z" fill="#1C2135"/>
|
|
79
|
-
<path d="M23.7093 108.907L78.3309 140.427V120.495L40.9788 98.9414L23.7093 108.907Z" fill="#71BEDB"/>
|
|
80
|
-
<path d="M40.9788 99.8275L77.5633 120.94V139.1L25.2444 108.907L40.9788 99.8275ZM40.9788 98.9414L23.7093 108.907L78.3309 140.427V120.495L40.9788 98.9414Z" fill="#1C2135"/>
|
|
81
|
-
<path d="M79.8665 120.494V140.425L134.381 108.967L117.111 99.001L79.8665 120.494Z" fill="#71BEDB"/>
|
|
82
|
-
<path d="M117.111 99.8871L132.845 108.967L80.6297 139.098V120.939L117.111 99.8871ZM117.111 99.001L79.8622 120.497V140.429L134.38 108.967L117.111 99.001Z" fill="#1C2135"/>
|
|
83
|
-
<path d="M96.5177 66.3511L79.0294 56.2588L61.5411 66.3511L79.0294 76.4434L96.5177 66.3511Z" fill="#9589EC"/>
|
|
84
|
-
<path d="M79.0294 96.6279V76.4434L61.5411 66.3511V86.5356L79.0294 96.6279Z" fill="#9589EC"/>
|
|
85
|
-
<path d="M79.0294 96.6279V76.4434L96.5177 66.3511V86.5356L79.0294 96.6279Z" fill="#9589EC"/>
|
|
86
|
-
<path d="M79.0294 55.8174L61.1573 66.1321V86.7578L79.0294 97.0726L96.9014 86.7578V66.1321L79.0294 55.8174ZM95.7501 66.3508L79.0294 76.0019L62.3086 66.3546L79.0294 56.7035L95.7501 66.3546V66.3508ZM61.9249 67.0144L78.6456 76.6617V95.9602L61.9249 86.309V67.0106V67.0144ZM79.4131 95.9602V76.6617L96.1339 67.0106V86.309L79.4131 95.9602Z" fill="#1C2135"/>
|
|
87
|
-
</svg>
|