vibefast-cli 1.2.1 → 1.3.1
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 +30 -95
- package/dist/__tests__/recipes.test.js +94 -91
- package/dist/__tests__/recipes.test.js.map +1 -1
- package/dist/commands/add.d.ts.map +1 -1
- package/dist/commands/add.js +301 -125
- package/dist/commands/add.js.map +1 -1
- package/dist/commands/checklist.d.ts.map +1 -1
- package/dist/commands/checklist.js +85 -44
- package/dist/commands/checklist.js.map +1 -1
- package/dist/commands/health.d.ts.map +1 -1
- package/dist/commands/health.js +13 -4
- package/dist/commands/health.js.map +1 -1
- package/dist/commands/init.d.ts.map +1 -1
- package/dist/commands/init.js +118 -26
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/migrate.d.ts +3 -0
- package/dist/commands/migrate.d.ts.map +1 -0
- package/dist/commands/migrate.js +202 -0
- package/dist/commands/migrate.js.map +1 -0
- package/dist/commands/remove.d.ts.map +1 -1
- package/dist/commands/remove.js +61 -3
- package/dist/commands/remove.js.map +1 -1
- package/dist/core/auth.d.ts.map +1 -1
- package/dist/core/auth.js +20 -18
- package/dist/core/auth.js.map +1 -1
- package/dist/core/codemod.d.ts +33 -0
- package/dist/core/codemod.d.ts.map +1 -1
- package/dist/core/codemod.js +116 -0
- package/dist/core/codemod.js.map +1 -1
- package/dist/core/detect.d.ts.map +1 -1
- package/dist/core/detect.js +24 -7
- package/dist/core/detect.js.map +1 -1
- package/dist/core/journal.d.ts +1 -0
- package/dist/core/journal.d.ts.map +1 -1
- package/dist/core/journal.js.map +1 -1
- package/dist/core/recipes.d.ts.map +1 -1
- package/dist/core/recipes.js +25 -7
- package/dist/core/recipes.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/docs/architecture.md +50 -0
- package/docs/commands.md +78 -0
- package/docs/contributing.md +27 -0
- package/docs/quickstart.md +50 -0
- package/docs/recipes.md +57 -0
- package/docs/troubleshooting.md +31 -0
- package/package.json +2 -2
- package/recipes/0/apps/native/src/components/advanced-ui/timeline/demo.tsx +445 -0
- package/recipes/0/apps/native/src/components/advanced-ui/timeline/timeline-view.tsx +355 -0
- package/recipes/0/apps/native/src/components/advanced-ui/timeline/types.ts +31 -0
- package/recipes/0/recipe.json +18 -0
- package/recipes/animated-chip/apps/native/src/components/advanced-ui/chip/demo.tsx +2 -1
- package/recipes/animated-chip/recipe.json +5 -2
- package/recipes/animated-chip-native@latest.zip +0 -0
- package/recipes/animated-chip@latest.zip +0 -0
- package/recipes/animated-switch/apps/native/src/components/advanced-ui/switch/demo.tsx +1 -1
- package/recipes/animated-switch/recipe.json +5 -2
- package/recipes/animated-switch-native@latest.zip +0 -0
- package/recipes/animated-switch@latest.zip +0 -0
- package/recipes/audio-recorder/apps/native/src/features/audio-recorder/components/audio-recorder.tsx +2 -1
- package/recipes/audio-recorder/apps/native/src/features/audio-recorder/demo/with-recording-list-demo.tsx +2 -2
- package/recipes/audio-recorder/recipe.json +7 -2
- package/recipes/audio-recorder-native@latest.zip +0 -0
- package/recipes/audio-recorder-supabase/apps/native/src/features/audio-recorder/components/audio-recorder.tsx +2 -1
- package/recipes/audio-recorder-supabase/apps/native/src/features/audio-recorder/demo/with-recording-list-demo.tsx +2 -1
- package/recipes/audio-recorder-supabase/recipe.json +12 -16
- package/recipes/audio-recorder-supabase-native@latest.zip +0 -0
- package/recipes/audio-recorder-supabase@latest.zip +0 -0
- package/recipes/audio-recorder@latest.zip +0 -0
- package/recipes/charts/apps/native/src/app/charts/index.tsx +3 -0
- package/recipes/charts/apps/native/src/features/charts/components/bar-chart.tsx +3 -1
- package/recipes/charts/apps/native/src/features/charts/components/candlestick-chart.tsx +3 -1
- package/recipes/charts/apps/native/src/features/charts/components/column-chart.tsx +3 -1
- package/recipes/charts/apps/native/src/features/charts/components/doughnut-chart.tsx +3 -1
- package/recipes/charts/apps/native/src/features/charts/components/line-chart.tsx +3 -1
- package/recipes/charts/apps/native/src/features/charts/components/radar-chart.tsx +3 -1
- package/recipes/charts/apps/native/src/features/charts/components/stacked-bar-chart.tsx +3 -1
- package/recipes/charts/recipe.json +13 -4
- package/recipes/charts-native@latest.zip +0 -0
- package/recipes/charts@latest.zip +0 -0
- package/recipes/chatbot/apps/native/src/features/chatbot/components/chat-markdown.tsx +86 -86
- package/recipes/chatbot/apps/native/src/features/chatbot/components/markdown/code-block.tsx +4 -4
- package/recipes/chatbot/recipe.json +3 -40
- package/recipes/chatbot-native@latest.zip +0 -0
- package/recipes/chatbot-supabase/apps/native/src/features/chatbot/components/chat-markdown.tsx +4 -1
- package/recipes/chatbot-supabase/apps/native/src/features/chatbot/components/markdown/code-block.tsx +86 -53
- package/recipes/chatbot-supabase/recipe.json +3 -42
- package/recipes/chatbot-supabase-native@latest.zip +0 -0
- package/recipes/chatbot-supabase@latest.zip +0 -0
- package/recipes/chatbot@latest.zip +0 -0
- package/recipes/glowing-button/recipe.json +6 -2
- package/recipes/glowing-button-native@latest.zip +0 -0
- package/recipes/glowing-button@latest.zip +0 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/_layout.tsx +5 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/analysis-options.tsx +50 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/camera.tsx +2 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/index.tsx +50 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/loading.tsx +50 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/results.tsx +2 -0
- package/recipes/image-analysis/apps/native/src/app/analysis/[type]/trait-details.tsx +3 -0
- package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/analysis-options-screen.tsx +2 -2
- package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/camera.tsx +72 -65
- package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/image-capture-screen.tsx +65 -47
- package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/loading-screen.tsx +43 -2
- package/recipes/image-analysis/apps/native/src/features/image-analyzer/app/loading.tsx +34 -1
- package/recipes/image-analysis/apps/native/src/features/image-analyzer/hooks/use-image-analysis.ts +83 -2
- package/recipes/image-analysis/recipe.json +11 -19
- package/recipes/image-analysis-native@latest.zip +0 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/_layout.tsx +5 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/analysis-options.tsx +50 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/camera.tsx +2 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/index.tsx +50 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/loading.tsx +50 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/results.tsx +2 -0
- package/recipes/image-analysis-supabase/apps/native/src/app/analysis/[type]/trait-details.tsx +3 -0
- package/recipes/image-analysis-supabase/recipe.json +10 -37
- package/recipes/image-analysis-supabase-native@latest.zip +0 -0
- package/recipes/image-analysis-supabase@latest.zip +0 -0
- package/recipes/image-analysis@latest.zip +0 -0
- package/recipes/image-analyzer/apps/native/src/app/(root)/(protected)/image-analyzer/index.tsx +2 -0
- package/recipes/image-generator/apps/native/src/app/image-generator/gallery.tsx +3 -0
- package/recipes/image-generator/apps/native/src/app/image-generator/index.tsx +3 -0
- package/recipes/image-generator/recipe.json +8 -18
- package/recipes/image-generator-native@latest.zip +0 -0
- package/recipes/image-generator-supabase/recipe.json +6 -35
- package/recipes/image-generator-supabase-native@latest.zip +0 -0
- package/recipes/image-generator-supabase@latest.zip +0 -0
- package/recipes/image-generator@latest.zip +0 -0
- package/recipes/ios-widget/recipe.json +18 -119
- package/recipes/ios-widget-native@latest.zip +0 -0
- package/recipes/ios-widget@latest.zip +0 -0
- package/recipes/number-stepper/apps/native/src/components/advanced-ui/stepper/demo.tsx +1 -1
- package/recipes/number-stepper/recipe.json +5 -2
- package/recipes/number-stepper-native@latest.zip +0 -0
- package/recipes/number-stepper@latest.zip +0 -0
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/interactive-onboarding.tsx +11 -18
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/ai-tone-step.tsx +5 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/currency-step.tsx +9 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-ai-step.tsx +8 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-chatbot-step.tsx +6 -5
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-manual-step.tsx +4 -3
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/feature-scan-step.tsx +6 -5
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/main-reason-step.tsx +5 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/notification-step.tsx +7 -6
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/overspend-step.tsx +5 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/personalizing-step.tsx +8 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/rating-step.tsx +6 -5
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/reminder-step.tsx +5 -6
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/safety-step.tsx +5 -4
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/struggle-step.tsx +5 -7
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/steps/welcome-step.tsx +7 -6
- package/recipes/onboarding/apps/native/src/features/onboarding/expense-tracker/components/ui/onboarding-header.tsx +4 -3
- package/recipes/onboarding/recipe.json +9 -6
- package/recipes/onboarding-native@latest.zip +0 -0
- package/recipes/onboarding@latest.zip +0 -0
- package/recipes/payments/apps/native/src/app/paywall/index.tsx +74 -0
- package/recipes/payments/apps/native/src/app/paywall/local.tsx +25 -0
- package/recipes/payments/apps/native/src/app/paywall/remote.tsx +23 -0
- package/recipes/payments/packages/backend/convex/payments.ts +21 -3
- package/recipes/payments/recipe.json +14 -34
- package/recipes/payments-native@latest.zip +0 -0
- package/recipes/payments-supabase/apps/native/src/app/paywall/index.tsx +74 -0
- package/recipes/payments-supabase/apps/native/src/app/paywall/local.tsx +25 -0
- package/recipes/payments-supabase/apps/native/src/app/paywall/remote.tsx +23 -0
- package/recipes/payments-supabase/recipe.json +16 -23
- package/recipes/payments-supabase-native@latest.zip +0 -0
- package/recipes/payments-supabase@latest.zip +0 -0
- package/recipes/payments@latest.zip +0 -0
- package/recipes/posthog/apps/native/src/components/analytics/navigation-tracker.tsx +14 -0
- package/recipes/posthog/apps/native/src/lib/hooks/use-navigation-analytics.ts +44 -0
- package/recipes/posthog/apps/native/src/providers/posthog-provider.tsx +51 -0
- package/recipes/posthog/recipe.json +60 -0
- package/recipes/posthog-native@latest.zip +0 -0
- package/recipes/progress-circle/apps/native/src/components/advanced-ui/progress-bars/progress-circle-page.tsx +1 -1
- package/recipes/progress-circle/recipe.json +5 -2
- package/recipes/progress-circle-native@latest.zip +0 -0
- package/recipes/progress-circle@latest.zip +0 -0
- package/recipes/quiz/apps/native/src/app/quiz/index.tsx +47 -0
- package/recipes/quiz/recipe.json +9 -6
- package/recipes/quiz-native@latest.zip +0 -0
- package/recipes/quiz@latest.zip +0 -0
- package/recipes/screen-kits/apps/native/src/app/screen-kits/_layout.tsx +12 -0
- package/recipes/screen-kits/apps/native/src/app/screen-kits/index.tsx +114 -0
- package/recipes/screen-kits/apps/native/src/features/screen-kits/index.ts +1 -0
- package/recipes/screen-kits/apps/native/src/features/screen-kits/types.ts +28 -0
- package/recipes/screen-kits/recipe.json +26 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/_layout.tsx +12 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/home.tsx +5 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/index.tsx +5 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/lesson-complete.tsx +5 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/lesson-fail.tsx +5 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/lesson.tsx +5 -0
- package/recipes/screen-kits-duolingo/apps/native/src/app/screen-kits/duolingo/skill-tree.tsx +5 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/components/duo-button.tsx +174 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/components/skill-button.tsx +186 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/components/xp-header.tsx +115 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/constants.ts +89 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/index.ts +3 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/home-screen.tsx +225 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/lesson-complete-screen.tsx +485 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/lesson-fail-screen.tsx +105 -0
- package/recipes/screen-kits-duolingo/apps/native/src/features/screen-kits/duolingo/screens/lesson-screen.tsx +384 -0
- package/recipes/screen-kits-duolingo/recipe.json +58 -0
- package/recipes/screen-kits-duolingo-native@latest.zip +0 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/_layout.tsx +45 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/asset-detail.tsx +3 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/notifications.tsx +3 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/receive.tsx +3 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/send.tsx +3 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/swap.tsx +3 -0
- package/recipes/screen-kits-finance/apps/native/src/app/screen-kits/finance/wallet.tsx +3 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/components/ActionButtons.tsx +78 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/components/AssetRow.tsx +94 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/components/BalanceCard.tsx +118 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/constants.ts +85 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/asset-detail.tsx +378 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/notifications.tsx +210 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/receive-modal.tsx +317 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/send-modal.tsx +420 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/swap-modal.tsx +363 -0
- package/recipes/screen-kits-finance/apps/native/src/features/screen-kits/finance/screens/wallet-dashboard.tsx +281 -0
- package/recipes/screen-kits-finance/recipe.json +46 -0
- package/recipes/screen-kits-finance-native@latest.zip +0 -0
- package/recipes/screen-kits-fitness/apps/native/assets/sounds/timer-beep.wav +0 -0
- package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/_layout.tsx +10 -0
- package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/index.tsx +6 -0
- package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/timer.tsx +3 -0
- package/recipes/screen-kits-fitness/apps/native/src/app/screen-kits/fitness/workout.tsx +3 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/components/timer-components.tsx +500 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/components/timer-settings-modal.tsx +352 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/components/workout-card.tsx +105 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/constants.ts +189 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/hooks/use-timer.ts +307 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/index.ts +1 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/screens/timer-screen.tsx +278 -0
- package/recipes/screen-kits-fitness/apps/native/src/features/screen-kits/fitness/screens/workout-dashboard.tsx +350 -0
- package/recipes/screen-kits-fitness/recipe.json +63 -0
- package/recipes/screen-kits-fitness-native@latest.zip +0 -0
- package/recipes/screen-kits-habits/apps/native/src/app/screen-kits/productivity/habits.tsx +1 -0
- package/recipes/screen-kits-habits/apps/native/src/app/screen-kits/productivity/kanban.tsx +1 -0
- package/recipes/screen-kits-habits/apps/native/src/app/screen-kits/productivity/routes.ts +4 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/AddTaskModal.tsx +246 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/DraggableTaskCard.tsx +92 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/KanbanColumn.tsx +238 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/TaskCard.tsx +144 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/components/add-habit-modal.tsx +271 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/constants.ts +295 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/kanban-utils.ts +62 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/screens/habit-tracker.tsx +1160 -0
- package/recipes/screen-kits-habits/apps/native/src/features/screen-kits/productivity/screens/kanban-board.tsx +432 -0
- package/recipes/screen-kits-habits/recipe.json +52 -0
- package/recipes/screen-kits-habits-native@latest.zip +0 -0
- package/recipes/screen-kits-native@latest.zip +0 -0
- package/recipes/sentry/apps/native/src/providers/sentry-provider.tsx +64 -0
- package/recipes/sentry/recipe.json +39 -0
- package/recipes/sentry-native@latest.zip +0 -0
- package/recipes/swipe-slider/apps/native/src/components/advanced-ui/sliders/swipe-slider-page.tsx +1 -1
- package/recipes/swipe-slider/recipe.json +5 -2
- package/recipes/swipe-slider-native@latest.zip +0 -0
- package/recipes/swipe-slider@latest.zip +0 -0
- package/recipes/timeline/apps/native/src/components/advanced-ui/timeline/demo.tsx +2 -1
- package/recipes/timeline/recipe.json +5 -2
- package/recipes/timeline-native@latest.zip +0 -0
- package/recipes/timeline@latest.zip +0 -0
- package/recipes/tracker-app/apps/native/src/app/tracker-app/index.tsx +1 -0
- package/recipes/tracker-app/recipe.json +10 -7
- package/recipes/tracker-app-native@latest.zip +0 -0
- package/recipes/tracker-app@latest.zip +0 -0
- package/recipes/upload-all.sh +8 -31
- package/recipes/voice-bot/apps/native/src/app/voice-bot/index.tsx +56 -0
- package/recipes/voice-bot/recipe.json +31 -7
- package/recipes/voice-bot-native@latest.zip +0 -0
- package/recipes/voice-bot@latest.zip +0 -0
- package/recipes/wake-word/apps/native/src/app/{(root)/(protected)/test-wake-word.tsx → test-wake-word.tsx} +43 -4
- package/recipes/wake-word/recipe.json +16 -26
- package/recipes/wake-word-native@latest.zip +0 -0
- package/recipes/wake-word@latest.zip +0 -0
- package/scripts/create-advanced-ui-recipes.sh +46 -19
- package/scripts/create-recipes.mjs +471 -117
- package/scripts/package-recipes.mjs +76 -0
- package/scripts/publish-all.sh +6 -2
- package/CHANGELOG.md +0 -198
- package/docs/archive/AUTO-DETECT-DEPS.md +0 -607
- package/docs/archive/FINAL-PACKAGE-STRATEGY.md +0 -583
- package/docs/archive/FINAL-SIMPLE-PLAN.md +0 -487
- package/docs/archive/FINAL-STATUS.md +0 -144
- package/docs/archive/FLOW-DIAGRAM.md +0 -1629
- package/docs/archive/GOTCHAS-AND-RISKS.md +0 -801
- package/docs/archive/IMPLEMENTATION-PLAN.md +0 -1360
- package/docs/archive/PLAN.md +0 -453
- package/docs/archive/PRODUCTION-READINESS.md +0 -684
- package/docs/archive/PRODUCTION-TEST-RESULTS.md +0 -465
- package/docs/archive/SIMPLIFIED-PLAN.md +0 -578
- package/docs/archive/STATUS.md +0 -199
- package/docs/archive/SUCCESS.md +0 -259
- package/docs/archive/TEST-SUMMARY.md +0 -261
- package/docs/archive/TESTING-CHECKLIST.md +0 -450
- package/docs/archive/USER-MODIFICATIONS.md +0 -448
- package/docs/decisions.md +0 -55
- package/docs/manual-testing.md +0 -91
- package/docs/next-steps.md +0 -12
- package/recipes/README.md +0 -156
- package/recipes/audio-recorder-supabase/packages/backend/src/services/recordings.ts +0 -369
- package/recipes/chatbot/apps/native/src/api-client/chatbot.ts +0 -83
- package/recipes/chatbot/packages/backend/convex/agents.ts +0 -115
- package/recipes/chatbot/packages/backend/convex/tools/index.ts +0 -18
- package/recipes/chatbot/packages/backend/convex/tools/knowledgeRetrieval.ts +0 -97
- package/recipes/chatbot/packages/backend/convex/tools/tavilySearch.ts +0 -83
- package/recipes/chatbot/packages/backend/convex/tools/userProfile.ts +0 -72
- package/recipes/chatbot-supabase/apps/native/src/api-client/supabase/chatbot.ts +0 -515
- package/recipes/chatbot-supabase/packages/backend/src/services/conversations.ts +0 -243
- package/recipes/chatbot-supabase/packages/backend/src/services/messages.ts +0 -327
- package/recipes/image-analysis/apps/native/src/api-client/image-analyzer.ts +0 -62
- package/recipes/image-analysis-supabase/packages/backend/src/services/image-analyses.ts +0 -132
- package/recipes/image-generator/apps/native/src/api-client/image-generator.ts +0 -34
- package/recipes/payments/apps/native/src/api-client/payments.ts +0 -44
- package/recipes/payments-supabase/packages/backend/src/services/payments.ts +0 -201
- package/recipes/posthog.json +0 -47
- package/recipes/revenuecat.json +0 -43
- package/recipes/sentry.json +0 -47
- package/recipes/wake-word/apps/native/assets/vosk-model/README.md +0 -103
- package/recipes/wake-word/apps/native/scripts/download-vosk-model.mjs +0 -127
- /package/recipes/{audio-recorder/apps/native/src/app/(root)/(protected) → audio-recorder-supabase/apps/native/src/app}/audio-recorder/index.tsx +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/AppIntent.swift +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@1x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-20x20@3x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@1x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-29x29@3x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@1x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-40x40@3x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-60x60@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-60x60@3x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-76x76@1x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-76x76@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/App-Icon-83.5x83.5@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/Contents.json +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/CalorieTrackerWidget.swift +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/HabitTrackerWidget.swift +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/Info.plist +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/WidgetLiveActivity.swift +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/expo-target.config.js +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/generated.entitlements +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/index.swift +0 -0
- /package/recipes/ios-widget/{targets → apps/native/targets}/widget/widgets.swift +0 -0
|
@@ -0,0 +1,445 @@
|
|
|
1
|
+
import { MaterialIcons } from '@expo/vector-icons';
|
|
2
|
+
import { ScrollView, StyleSheet, Text, View } from 'react-native';
|
|
3
|
+
|
|
4
|
+
import { SafeAreaView } from '@/components/ui';
|
|
5
|
+
|
|
6
|
+
import { useThemeConfig } from '../../../lib/use-theme-config';
|
|
7
|
+
import { Timeline } from './timeline-view';
|
|
8
|
+
import type { TimelineItem } from './types';
|
|
9
|
+
|
|
10
|
+
const ShippingDetailsComponent = () => {
|
|
11
|
+
const { colors } = useThemeConfig();
|
|
12
|
+
const styles = createDemoStyles(colors);
|
|
13
|
+
return (
|
|
14
|
+
<View style={styles.detailsCard}>
|
|
15
|
+
<Text style={styles.detailsTitle}>📦 Shipping Information</Text>
|
|
16
|
+
<View style={styles.detailsRow}>
|
|
17
|
+
<Text style={styles.detailsLabel}>Carrier</Text>
|
|
18
|
+
<Text style={styles.detailsValue}>FedEx Express</Text>
|
|
19
|
+
</View>
|
|
20
|
+
<View style={styles.detailsRow}>
|
|
21
|
+
<Text style={styles.detailsLabel}>Tracking ID</Text>
|
|
22
|
+
<Text style={styles.detailsValue}>1Z999AA1234567890</Text>
|
|
23
|
+
</View>
|
|
24
|
+
<View style={styles.detailsRow}>
|
|
25
|
+
<Text style={styles.detailsLabel}>Est. Delivery</Text>
|
|
26
|
+
<Text style={styles.detailsValue}>May 10, 6:00 PM</Text>
|
|
27
|
+
</View>
|
|
28
|
+
</View>
|
|
29
|
+
);
|
|
30
|
+
};
|
|
31
|
+
|
|
32
|
+
const ProjectMilestoneComponent = () => {
|
|
33
|
+
const { colors } = useThemeConfig();
|
|
34
|
+
const styles = createDemoStyles(colors);
|
|
35
|
+
return (
|
|
36
|
+
<View style={styles.detailsCard}>
|
|
37
|
+
<Text style={styles.detailsTitle}>🎯 Milestone Details</Text>
|
|
38
|
+
<View style={styles.detailsRow}>
|
|
39
|
+
<Text style={styles.detailsLabel}>Deliverables</Text>
|
|
40
|
+
<Text style={styles.detailsValue}>Design v2</Text>
|
|
41
|
+
</View>
|
|
42
|
+
<View style={styles.detailsRow}>
|
|
43
|
+
<Text style={styles.detailsLabel}>Team Size</Text>
|
|
44
|
+
<Text style={styles.detailsValue}>5 Designers</Text>
|
|
45
|
+
</View>
|
|
46
|
+
<View style={styles.detailsRow}>
|
|
47
|
+
<Text style={styles.detailsLabel}>Budget</Text>
|
|
48
|
+
<Text style={styles.detailsValue}>$24,500</Text>
|
|
49
|
+
</View>
|
|
50
|
+
</View>
|
|
51
|
+
);
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const DevelopmentStatusComponent = () => {
|
|
55
|
+
const { colors } = useThemeConfig();
|
|
56
|
+
const styles = createDemoStyles(colors);
|
|
57
|
+
return (
|
|
58
|
+
<View style={styles.detailsCard}>
|
|
59
|
+
<Text style={styles.detailsTitle}>⚡ Development Progress</Text>
|
|
60
|
+
<View style={styles.progressRow}>
|
|
61
|
+
<Text style={styles.progressLabel}>Frontend</Text>
|
|
62
|
+
<View style={styles.progressBar}>
|
|
63
|
+
<View style={[styles.progressFill, { width: '85%' }]} />
|
|
64
|
+
</View>
|
|
65
|
+
<Text style={styles.progressValue}>85%</Text>
|
|
66
|
+
</View>
|
|
67
|
+
<View style={styles.progressRow}>
|
|
68
|
+
<Text style={styles.progressLabel}>Backend</Text>
|
|
69
|
+
<View style={styles.progressBar}>
|
|
70
|
+
<View
|
|
71
|
+
style={[
|
|
72
|
+
styles.progressFill,
|
|
73
|
+
{ width: '92%', backgroundColor: colors.success },
|
|
74
|
+
]}
|
|
75
|
+
/>
|
|
76
|
+
</View>
|
|
77
|
+
<Text style={styles.progressValue}>92%</Text>
|
|
78
|
+
</View>
|
|
79
|
+
</View>
|
|
80
|
+
);
|
|
81
|
+
};
|
|
82
|
+
|
|
83
|
+
const TimelineDemo = () => {
|
|
84
|
+
const { colors } = useThemeConfig();
|
|
85
|
+
const styles = createDemoStyles(colors);
|
|
86
|
+
|
|
87
|
+
const orderTimelineItems: TimelineItem[] = [
|
|
88
|
+
{
|
|
89
|
+
id: 1,
|
|
90
|
+
title: 'Order Placed',
|
|
91
|
+
description: "We've received your order and will begin processing it.",
|
|
92
|
+
timestamp: 'May 7, 10:23 AM',
|
|
93
|
+
icon: 'shopping-bag',
|
|
94
|
+
status: 'complete',
|
|
95
|
+
meta: 'Order #38492',
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
id: 2,
|
|
99
|
+
title: 'Order Confirmed',
|
|
100
|
+
description: 'Your order is confirmed and ready to ship.',
|
|
101
|
+
timestamp: 'May 7, 11:05 AM',
|
|
102
|
+
icon: 'check-circle',
|
|
103
|
+
status: 'complete',
|
|
104
|
+
meta: 'Ready for shipment',
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
id: 3,
|
|
108
|
+
title: 'Shipped',
|
|
109
|
+
description: 'The package has left our facility and is on its way.',
|
|
110
|
+
timestamp: 'May 8, 9:15 AM',
|
|
111
|
+
icon: 'package',
|
|
112
|
+
status: 'complete',
|
|
113
|
+
children: <ShippingDetailsComponent />,
|
|
114
|
+
childrenContainer: { marginTop: 0 },
|
|
115
|
+
meta: 'In Transit',
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
id: 4,
|
|
119
|
+
title: 'Delivered',
|
|
120
|
+
timestamp: 'Est. May 10, by 6:00 PM',
|
|
121
|
+
icon: 'home',
|
|
122
|
+
status: 'upcoming',
|
|
123
|
+
meta: 'Pending delivery',
|
|
124
|
+
description: 'Your order will be delivered to your doorstep.',
|
|
125
|
+
},
|
|
126
|
+
];
|
|
127
|
+
|
|
128
|
+
const projectTimelineItems: TimelineItem[] = [
|
|
129
|
+
{
|
|
130
|
+
id: 1,
|
|
131
|
+
title: 'Project Kickoff',
|
|
132
|
+
description: 'Initial meeting with stakeholders and team formation.',
|
|
133
|
+
timestamp: 'Jan 15, 2024',
|
|
134
|
+
icon: 'play-circle',
|
|
135
|
+
status: 'complete',
|
|
136
|
+
meta: 'Team assembled',
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
id: 2,
|
|
140
|
+
title: 'Design Phase',
|
|
141
|
+
description: 'UI/UX design, prototyping, and design system creation.',
|
|
142
|
+
timestamp: 'Feb 12, 2024',
|
|
143
|
+
icon: 'edit-3',
|
|
144
|
+
status: 'complete',
|
|
145
|
+
children: <ProjectMilestoneComponent />,
|
|
146
|
+
childrenContainer: { marginTop: 0 },
|
|
147
|
+
meta: 'Design system v2.0',
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
id: 3,
|
|
151
|
+
title: 'Development Sprint',
|
|
152
|
+
description: 'Frontend and backend development in parallel tracks.',
|
|
153
|
+
timestamp: 'Mar 5, 2024',
|
|
154
|
+
icon: 'code',
|
|
155
|
+
status: 'current',
|
|
156
|
+
children: <DevelopmentStatusComponent />,
|
|
157
|
+
childrenContainer: { marginTop: 0 },
|
|
158
|
+
meta: 'In Progress',
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
id: 4,
|
|
162
|
+
title: 'Launch',
|
|
163
|
+
description: 'Production deployment and go-live celebration.',
|
|
164
|
+
timestamp: 'Apr 15, 2024',
|
|
165
|
+
icon: 'zap',
|
|
166
|
+
status: 'upcoming',
|
|
167
|
+
meta: 'Launch day',
|
|
168
|
+
},
|
|
169
|
+
];
|
|
170
|
+
|
|
171
|
+
const userJourneyItems: TimelineItem[] = [
|
|
172
|
+
{
|
|
173
|
+
id: 1,
|
|
174
|
+
title: 'Account Created',
|
|
175
|
+
description: 'User registered with email verification.',
|
|
176
|
+
timestamp: '2 hours ago',
|
|
177
|
+
icon: 'user-plus',
|
|
178
|
+
status: 'complete',
|
|
179
|
+
meta: 'sarah.johnson@email.com',
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
id: 2,
|
|
183
|
+
title: 'First Purchase',
|
|
184
|
+
description: 'Completed their first transaction successfully.',
|
|
185
|
+
timestamp: '45 minutes ago',
|
|
186
|
+
icon: 'shopping-cart',
|
|
187
|
+
status: 'complete',
|
|
188
|
+
meta: '$127.50',
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
id: 3,
|
|
192
|
+
title: 'App Downloaded',
|
|
193
|
+
description: 'Downloaded and logged into mobile application.',
|
|
194
|
+
timestamp: '12 minutes ago',
|
|
195
|
+
icon: 'smartphone',
|
|
196
|
+
status: 'current',
|
|
197
|
+
meta: 'iOS App',
|
|
198
|
+
},
|
|
199
|
+
];
|
|
200
|
+
|
|
201
|
+
const handleItemPress = (item: TimelineItem) => {
|
|
202
|
+
console.log('Timeline item pressed:', item.title);
|
|
203
|
+
};
|
|
204
|
+
|
|
205
|
+
return (
|
|
206
|
+
<SafeAreaView style={styles.container}>
|
|
207
|
+
<ScrollView
|
|
208
|
+
contentContainerStyle={styles.content}
|
|
209
|
+
showsVerticalScrollIndicator={false}
|
|
210
|
+
contentInsetAdjustmentBehavior="always"
|
|
211
|
+
scrollEnabled
|
|
212
|
+
>
|
|
213
|
+
<View style={styles.header}>
|
|
214
|
+
<View style={styles.iconContainer}>
|
|
215
|
+
<MaterialIcons name="timeline" size={32} color={colors.primary} />
|
|
216
|
+
</View>
|
|
217
|
+
<Text style={styles.headerTitle}>Timeline Component Demo</Text>
|
|
218
|
+
<Text style={styles.subtitle}>
|
|
219
|
+
Beautiful timelines with various styles and interactive features
|
|
220
|
+
</Text>
|
|
221
|
+
</View>
|
|
222
|
+
<View style={styles.section}>
|
|
223
|
+
<View style={styles.sectionHeader}>
|
|
224
|
+
<Text style={styles.sectionTitle}>🧾 Order Timeline</Text>
|
|
225
|
+
<Text style={styles.sectionSubtitle}>
|
|
226
|
+
Follow your delivery journey
|
|
227
|
+
</Text>
|
|
228
|
+
</View>
|
|
229
|
+
|
|
230
|
+
<View style={styles.timelineWrapper}>
|
|
231
|
+
<Timeline
|
|
232
|
+
metaContainerStyle={styles.metaContainer}
|
|
233
|
+
animationType="rotate"
|
|
234
|
+
items={orderTimelineItems}
|
|
235
|
+
onItemPress={handleItemPress}
|
|
236
|
+
activeColor={colors.primary}
|
|
237
|
+
animated
|
|
238
|
+
titleStyle={styles.timelineTitle}
|
|
239
|
+
descriptionStyle={styles.timelineDescription}
|
|
240
|
+
timestampStyle={styles.timelineTimestamp}
|
|
241
|
+
metaTextStyle={styles.timelineMeta}
|
|
242
|
+
/>
|
|
243
|
+
</View>
|
|
244
|
+
</View>
|
|
245
|
+
|
|
246
|
+
<View style={styles.section}>
|
|
247
|
+
<View style={styles.sectionHeader}>
|
|
248
|
+
<Text style={styles.sectionTitle}>🚀 Project Timeline</Text>
|
|
249
|
+
<Text style={styles.sectionSubtitle}>
|
|
250
|
+
Development milestones and progress
|
|
251
|
+
</Text>
|
|
252
|
+
</View>
|
|
253
|
+
|
|
254
|
+
<View style={styles.timelineWrapper}>
|
|
255
|
+
<Timeline
|
|
256
|
+
metaContainerStyle={[
|
|
257
|
+
styles.metaContainer,
|
|
258
|
+
{ backgroundColor: colors.card },
|
|
259
|
+
]}
|
|
260
|
+
animationType="fade"
|
|
261
|
+
items={projectTimelineItems}
|
|
262
|
+
onItemPress={handleItemPress}
|
|
263
|
+
activeColor={colors.success}
|
|
264
|
+
animated
|
|
265
|
+
titleStyle={styles.timelineTitle}
|
|
266
|
+
descriptionStyle={styles.timelineDescription}
|
|
267
|
+
timestampStyle={styles.timelineTimestamp}
|
|
268
|
+
metaTextStyle={styles.timelineMeta}
|
|
269
|
+
/>
|
|
270
|
+
</View>
|
|
271
|
+
</View>
|
|
272
|
+
|
|
273
|
+
<View style={styles.section}>
|
|
274
|
+
<View style={styles.sectionHeader}>
|
|
275
|
+
<Text style={styles.sectionTitle}>👤 User Journey</Text>
|
|
276
|
+
<Text style={styles.sectionSubtitle}>
|
|
277
|
+
Real-time user activity tracking
|
|
278
|
+
</Text>
|
|
279
|
+
</View>
|
|
280
|
+
|
|
281
|
+
<View style={styles.timelineWrapper}>
|
|
282
|
+
<Timeline
|
|
283
|
+
metaContainerStyle={[
|
|
284
|
+
styles.metaContainer,
|
|
285
|
+
{ backgroundColor: colors.background },
|
|
286
|
+
]}
|
|
287
|
+
animationType="scale"
|
|
288
|
+
items={userJourneyItems}
|
|
289
|
+
onItemPress={handleItemPress}
|
|
290
|
+
activeColor={colors.destructive}
|
|
291
|
+
animated
|
|
292
|
+
titleStyle={styles.timelineTitle}
|
|
293
|
+
descriptionStyle={styles.timelineDescription}
|
|
294
|
+
timestampStyle={styles.timelineTimestamp}
|
|
295
|
+
metaTextStyle={styles.timelineMeta}
|
|
296
|
+
/>
|
|
297
|
+
</View>
|
|
298
|
+
</View>
|
|
299
|
+
</ScrollView>
|
|
300
|
+
</SafeAreaView>
|
|
301
|
+
);
|
|
302
|
+
};
|
|
303
|
+
|
|
304
|
+
const createDemoStyles = (colors: any) =>
|
|
305
|
+
StyleSheet.create({
|
|
306
|
+
container: {
|
|
307
|
+
flex: 1,
|
|
308
|
+
backgroundColor: colors.background,
|
|
309
|
+
},
|
|
310
|
+
content: {
|
|
311
|
+
padding: 24,
|
|
312
|
+
paddingBottom: 48,
|
|
313
|
+
},
|
|
314
|
+
header: {
|
|
315
|
+
alignItems: 'center',
|
|
316
|
+
marginBottom: 32,
|
|
317
|
+
paddingTop: 20,
|
|
318
|
+
},
|
|
319
|
+
iconContainer: {
|
|
320
|
+
width: 64,
|
|
321
|
+
height: 64,
|
|
322
|
+
borderRadius: 32,
|
|
323
|
+
backgroundColor: colors.card,
|
|
324
|
+
alignItems: 'center',
|
|
325
|
+
justifyContent: 'center',
|
|
326
|
+
marginBottom: 16,
|
|
327
|
+
borderWidth: 1,
|
|
328
|
+
borderColor: colors.border,
|
|
329
|
+
},
|
|
330
|
+
headerTitle: {
|
|
331
|
+
fontSize: 28,
|
|
332
|
+
fontWeight: '700',
|
|
333
|
+
color: colors.foreground,
|
|
334
|
+
textAlign: 'center',
|
|
335
|
+
marginBottom: 8,
|
|
336
|
+
},
|
|
337
|
+
subtitle: {
|
|
338
|
+
fontSize: 16,
|
|
339
|
+
color: colors.mutedForeground,
|
|
340
|
+
textAlign: 'center',
|
|
341
|
+
lineHeight: 24,
|
|
342
|
+
maxWidth: 320,
|
|
343
|
+
},
|
|
344
|
+
section: {
|
|
345
|
+
marginBottom: 32,
|
|
346
|
+
},
|
|
347
|
+
sectionTitle: {
|
|
348
|
+
fontSize: 18,
|
|
349
|
+
fontWeight: '600',
|
|
350
|
+
color: colors.foreground,
|
|
351
|
+
marginBottom: 16,
|
|
352
|
+
marginLeft: 4,
|
|
353
|
+
},
|
|
354
|
+
sectionHeader: {
|
|
355
|
+
marginBottom: 16,
|
|
356
|
+
},
|
|
357
|
+
sectionSubtitle: {
|
|
358
|
+
fontSize: 14,
|
|
359
|
+
color: colors.mutedForeground,
|
|
360
|
+
marginTop: 4,
|
|
361
|
+
marginLeft: 4,
|
|
362
|
+
},
|
|
363
|
+
timelineWrapper: {
|
|
364
|
+
backgroundColor: colors.card,
|
|
365
|
+
borderWidth: 1,
|
|
366
|
+
borderColor: colors.border,
|
|
367
|
+
borderRadius: 12,
|
|
368
|
+
padding: 16,
|
|
369
|
+
},
|
|
370
|
+
metaContainer: {
|
|
371
|
+
backgroundColor: colors.background,
|
|
372
|
+
borderRadius: 8,
|
|
373
|
+
padding: 8,
|
|
374
|
+
},
|
|
375
|
+
timelineTitle: {
|
|
376
|
+
color: colors.foreground,
|
|
377
|
+
fontWeight: '600',
|
|
378
|
+
},
|
|
379
|
+
timelineDescription: {
|
|
380
|
+
color: colors.mutedForeground,
|
|
381
|
+
},
|
|
382
|
+
timelineTimestamp: {
|
|
383
|
+
color: colors.mutedForeground,
|
|
384
|
+
},
|
|
385
|
+
timelineMeta: {
|
|
386
|
+
color: colors.foreground,
|
|
387
|
+
},
|
|
388
|
+
detailsCard: {
|
|
389
|
+
backgroundColor: colors.background,
|
|
390
|
+
borderRadius: 12,
|
|
391
|
+
padding: 12,
|
|
392
|
+
marginTop: 8,
|
|
393
|
+
},
|
|
394
|
+
detailsTitle: {
|
|
395
|
+
fontSize: 14,
|
|
396
|
+
color: colors.foreground,
|
|
397
|
+
fontWeight: '500',
|
|
398
|
+
marginBottom: 8,
|
|
399
|
+
},
|
|
400
|
+
detailsRow: {
|
|
401
|
+
flexDirection: 'row',
|
|
402
|
+
justifyContent: 'space-between',
|
|
403
|
+
marginBottom: 6,
|
|
404
|
+
},
|
|
405
|
+
detailsLabel: {
|
|
406
|
+
fontSize: 13,
|
|
407
|
+
color: colors.mutedForeground,
|
|
408
|
+
},
|
|
409
|
+
detailsValue: {
|
|
410
|
+
fontSize: 13,
|
|
411
|
+
color: colors.foreground,
|
|
412
|
+
fontWeight: '500',
|
|
413
|
+
},
|
|
414
|
+
progressRow: {
|
|
415
|
+
flexDirection: 'row',
|
|
416
|
+
alignItems: 'center',
|
|
417
|
+
marginBottom: 8,
|
|
418
|
+
},
|
|
419
|
+
progressLabel: {
|
|
420
|
+
fontSize: 12,
|
|
421
|
+
color: colors.mutedForeground,
|
|
422
|
+
width: 60,
|
|
423
|
+
},
|
|
424
|
+
progressBar: {
|
|
425
|
+
flex: 1,
|
|
426
|
+
height: 6,
|
|
427
|
+
backgroundColor: colors.border,
|
|
428
|
+
borderRadius: 3,
|
|
429
|
+
marginHorizontal: 12,
|
|
430
|
+
},
|
|
431
|
+
progressFill: {
|
|
432
|
+
height: 6,
|
|
433
|
+
backgroundColor: colors.primary,
|
|
434
|
+
borderRadius: 3,
|
|
435
|
+
},
|
|
436
|
+
progressValue: {
|
|
437
|
+
fontSize: 12,
|
|
438
|
+
color: colors.foreground,
|
|
439
|
+
fontWeight: '500',
|
|
440
|
+
width: 35,
|
|
441
|
+
textAlign: 'right',
|
|
442
|
+
},
|
|
443
|
+
});
|
|
444
|
+
|
|
445
|
+
export default TimelineDemo;
|