From 0c6cd18e6f1c8a2243bf0074921d106da2c280c2 Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Fri, 9 May 2025 21:28:07 +0700 Subject: [PATCH] Initial Release --- .DS_Store | Bin 0 -> 6148 bytes .gitignore | 24 + CONTRIBUTING.md | 119 + Dockerfile | 44 + LICENSE.md | 17 + README.md | 123 + application/.gitignore | 24 + application/bun.lockb | Bin 0 -> 198351 bytes application/components.json | 20 + application/eslint.config.js | 29 + application/index.html | 26 + application/package-lock.json | 6560 +++++ application/package.json | 83 + application/postcss.config.js | 6 + application/public/favicon.ico | Bin 0 -> 46108 bytes application/public/placeholder.svg | 1 + application/public/robots.txt | 14 + .../public/upload/profile/profile1.svg | 1 + .../public/upload/profile/profile2.svg | 1 + .../public/upload/profile/profile3.svg | 1 + .../public/upload/profile/profile4.svg | 1 + .../public/upload/profile/profile5.svg | 1 + .../public/upload/profile/profile6.svg | 1 + .../public/upload/profile/profile7.svg | 1 + .../public/upload/profile/profile8.svg | 1 + application/src/App.css | 42 + application/src/App.tsx | 107 + application/src/api/index.ts | 34 + application/src/api/realtime/index.ts | 195 + .../components/dashboard/DashboardContent.tsx | 73 + .../src/components/dashboard/Header.tsx | 190 + .../components/dashboard/ServiceFilters.tsx | 54 + .../components/dashboard/ServicesTable.tsx | 15 + .../src/components/dashboard/Sidebar.tsx | 141 + .../src/components/dashboard/StatusCards.tsx | 152 + .../components/profile/ChangePasswordForm.tsx | 191 + .../src/components/profile/ProfileContent.tsx | 74 + .../components/profile/UpdateProfileForm.tsx | 132 + .../components/profile/UserProfileDetails.tsx | 75 + .../components/services/AddServiceDialog.tsx | 43 + .../components/services/DateRangeFilter.tsx | 156 + .../components/services/LastCheckedTime.tsx | 87 + .../src/components/services/LoadingState.tsx | 15 + .../components/services/ResponseTimeChart.tsx | 234 + .../services/ServiceDeleteDialog.tsx | 77 + .../services/ServiceDetailContainer.tsx | 6 + .../ServiceDetailWrapper.tsx | 51 + .../ServiceDetailContainer/hooks/index.ts | 3 + .../hooks/useRealTimeUpdates.tsx | 87 + .../hooks/useServiceData.tsx | 173 + .../services/ServiceDetailContainer/index.tsx | 126 + .../services/ServiceDetailContent.tsx | 64 + .../components/services/ServiceEditDialog.tsx | 77 + .../src/components/services/ServiceForm.tsx | 142 + .../src/components/services/ServiceHeader.tsx | 83 + .../services/ServiceHistoryDialog.tsx | 74 + .../services/ServiceMonitoringButton.tsx | 103 + .../components/services/ServiceNotFound.tsx | 25 + .../src/components/services/ServiceRow.tsx | 80 + .../components/services/ServiceStatsCards.tsx | 171 + .../services/ServiceUptimeHistory.tsx | 138 + .../services/ServicesTableContainer.tsx | 94 + .../components/services/ServicesTableView.tsx | 68 + .../src/components/services/StatusBadge.tsx | 71 + .../src/components/services/UptimeBar.tsx | 210 + .../add-service/ServiceBasicFields.tsx | 55 + .../add-service/ServiceConfigFields.tsx | 51 + .../services/add-service/ServiceForm.tsx | 143 + .../add-service/ServiceFormActions.tsx | 51 + .../add-service/ServiceNotificationFields.tsx | 139 + .../services/add-service/ServiceTypeField.tsx | 58 + .../components/services/add-service/index.ts | 3 + .../components/services/add-service/types.ts | 14 + .../src/components/services/hooks/index.ts | 3 + .../services/hooks/useDialogState.ts | 30 + .../services/hooks/useServiceActions.ts | 205 + .../services/incident-history/EmptyState.tsx | 19 + .../incident-history/IncidentTable.tsx | 61 + .../incident-history/LatestChecksTable.tsx | 94 + .../incident-history/StatusFilterTabs.tsx | 66 + .../incident-history/TablePagination.tsx | 118 + .../services/incident-history/index.ts | 11 + .../services/incident-history/types.ts | 16 + .../services/incident-history/utils.tsx | 89 + application/src/components/services/index.ts | 15 + .../service-row/ServiceRowActions.tsx | 184 + .../services/service-row/ServiceRowHeader.tsx | 61 + .../service-row/ServiceRowResponseTime.tsx | 27 + .../components/services/service-row/index.ts | 4 + .../components/settings/GeneralSettings.tsx | 105 + .../settings/about-system/AboutSystem.tsx | 91 + .../components/settings/about-system/index.ts | 2 + .../alerts-templates/AlertsTemplates.tsx | 89 + .../alerts-templates/TemplateDialog.tsx | 123 + .../alerts-templates/TemplateList.tsx | 168 + .../form/BasicTemplateFields.tsx | 61 + .../form/MessagesTabContent.tsx | 124 + .../form/PlaceholdersTabContent.tsx | 132 + .../settings/alerts-templates/form/index.ts | 4 + .../settings/alerts-templates/hooks/index.ts | 2 + .../alerts-templates/hooks/useTemplateForm.ts | 199 + .../settings/alerts-templates/index.ts | 2 + .../NotificationChannelDialog.tsx | 349 + .../NotificationChannelList.tsx | 122 + .../NotificationSettings.tsx | 117 + .../settings/notification-settings/index.ts | 4 + .../user-management/AddUserDialog.tsx | 46 + .../user-management/DeleteUserDialog.tsx | 81 + .../user-management/EditUserDialog.tsx | 124 + .../user-management/UserManagement.tsx | 117 + .../settings/user-management/UserTable.tsx | 112 + .../settings/user-management/avatarOptions.ts | 13 + .../form-fields/AddUserForm.tsx | 95 + .../form-fields/UserProfilePictureField.tsx | 76 + .../form-fields/UserTextField.tsx | 54 + .../form-fields/UserToggleField.tsx | 39 + .../user-management/form-fields/index.ts | 5 + .../settings/user-management/hooks/index.ts | 6 + .../user-management/hooks/useUserDialogs.ts | 51 + .../user-management/hooks/useUserForm.ts | 35 + .../hooks/useUserManagement.ts | 86 + .../hooks/useUserOperations.ts | 158 + .../user-management/hooks/useUsersList.ts | 53 + .../settings/user-management/index.ts | 3 + .../settings/user-management/userForms.ts | 32 + application/src/components/ui/accordion.tsx | 56 + .../src/components/ui/alert-dialog.tsx | 139 + application/src/components/ui/alert.tsx | 59 + .../src/components/ui/aspect-ratio.tsx | 5 + application/src/components/ui/avatar.tsx | 48 + application/src/components/ui/badge.tsx | 36 + application/src/components/ui/breadcrumb.tsx | 115 + application/src/components/ui/button.tsx | 56 + application/src/components/ui/calendar.tsx | 65 + application/src/components/ui/card.tsx | 79 + application/src/components/ui/carousel.tsx | 260 + application/src/components/ui/chart.tsx | 363 + application/src/components/ui/checkbox.tsx | 28 + application/src/components/ui/collapsible.tsx | 9 + application/src/components/ui/command.tsx | 153 + .../src/components/ui/context-menu.tsx | 198 + application/src/components/ui/dialog.tsx | 120 + application/src/components/ui/drawer.tsx | 116 + .../src/components/ui/dropdown-menu.tsx | 198 + application/src/components/ui/form.tsx | 176 + application/src/components/ui/hover-card.tsx | 27 + application/src/components/ui/input-otp.tsx | 69 + application/src/components/ui/input.tsx | 22 + application/src/components/ui/label.tsx | 24 + application/src/components/ui/menubar.tsx | 234 + .../src/components/ui/navigation-menu.tsx | 128 + application/src/components/ui/pagination.tsx | 117 + application/src/components/ui/popover.tsx | 29 + application/src/components/ui/progress.tsx | 31 + application/src/components/ui/radio-group.tsx | 42 + application/src/components/ui/resizable.tsx | 43 + application/src/components/ui/scroll-area.tsx | 49 + application/src/components/ui/select.tsx | 158 + application/src/components/ui/separator.tsx | 29 + application/src/components/ui/sheet.tsx | 131 + application/src/components/ui/sidebar.tsx | 761 + application/src/components/ui/skeleton.tsx | 15 + application/src/components/ui/slider.tsx | 26 + application/src/components/ui/sonner.tsx | 32 + application/src/components/ui/switch.tsx | 28 + application/src/components/ui/table.tsx | 117 + application/src/components/ui/tabs.tsx | 53 + application/src/components/ui/textarea.tsx | 24 + application/src/components/ui/toast.tsx | 127 + application/src/components/ui/toaster.tsx | 33 + .../src/components/ui/toggle-group.tsx | 59 + application/src/components/ui/toggle.tsx | 43 + application/src/components/ui/tooltip.tsx | 28 + application/src/components/ui/use-toast.ts | 3 + application/src/contexts/LanguageContext.tsx | 31 + application/src/contexts/ThemeContext.tsx | 77 + application/src/hooks/use-mobile.tsx | 19 + application/src/hooks/use-toast.ts | 191 + application/src/hooks/useSystemSettings.tsx | 23 + application/src/index.css | 161 + application/src/lib/pocketbase.ts | 66 + application/src/lib/utils.ts | 6 + application/src/main.tsx | 5 + application/src/pages/Dashboard.tsx | 74 + application/src/pages/Index.tsx | 14 + application/src/pages/Login.tsx | 227 + application/src/pages/NotFound.tsx | 27 + application/src/pages/Profile.tsx | 136 + application/src/pages/ServiceDetail.tsx | 8 + application/src/pages/Settings.tsx | 68 + .../src/services/alertConfigService.ts | 103 + application/src/services/authService.ts | 76 + .../handlers/serviceStatusHandlers.ts | 164 + .../src/services/monitoring/httpChecker.ts | 87 + application/src/services/monitoring/index.ts | 17 + .../monitoring/monitoringIntervals.ts | 4 + .../monitoring/service-status/index.ts | 13 + .../service-status/pauseMonitoring.ts | 38 + .../service-status/resumeMonitoring.ts | 80 + .../service-status/startAllServices.ts | 24 + .../service-status/startMonitoring.ts | 64 + .../services/monitoring/utils/httpUtils.ts | 204 + .../monitoring/utils/notificationUtils.ts | 41 + .../src/services/notification/index.ts | 244 + .../services/notification/signalService.ts | 91 + .../services/notification/telegramService.ts | 135 + .../notification/templateProcessor.ts | 86 + .../src/services/notification/types.ts | 11 + .../src/services/notificationService.ts | 194 + application/src/services/serviceService.ts | 153 + application/src/services/settingsService.ts | 53 + application/src/services/templateService.ts | 99 + application/src/services/uptimeService.ts | 148 + application/src/services/userService.ts | 136 + application/src/translations/en.ts | 76 + application/src/translations/index.ts | 12 + application/src/translations/km.ts | 76 + application/src/types/service.types.ts | 38 + application/src/vite-env.d.ts | 1 + application/tailwind.config.ts | 118 + application/tsconfig.app.json | 30 + application/tsconfig.json | 19 + application/tsconfig.node.json | 22 + application/vite.config.ts | 19 + docker-compose.yml | 16 + docker/.DS_Store | Bin 0 -> 6148 bytes docker/Dockerfile | 40 + docker/docker-compose-dev.yml | 18 + docker/docker-compose.prod.yml | 16 + scripts/entrypoint.sh | 7 + scripts/setup.sh | 83 + server/pb_data/auxiliary.db | Bin 0 -> 10645504 bytes server/pb_data/data.db | Bin 0 -> 1056768 bytes server/pb_data/types.d.ts | 22727 ++++++++++++++++ .../1746786764_updated_services.js | 28 + .../1746786820_updated_services.js | 28 + .../1746786864_updated_services.js | 20 + .../1746787173_updated_services.js | 26 + .../1746787500_updated_services.js | 20 + .../1746787517_updated_services.js | 26 + .../1746787595_updated_uptime_data.js | 28 + ...1746787681_updated_alert_configurations.js | 28 + server/pb_migrations/pb_schema.json | 3524 +++ server/pocketbase | Bin 0 -> 31605922 bytes 244 files changed, 50633 insertions(+) create mode 100644 .DS_Store create mode 100644 .gitignore create mode 100644 CONTRIBUTING.md create mode 100644 Dockerfile create mode 100644 LICENSE.md create mode 100644 README.md create mode 100644 application/.gitignore create mode 100644 application/bun.lockb create mode 100644 application/components.json create mode 100644 application/eslint.config.js create mode 100644 application/index.html create mode 100644 application/package-lock.json create mode 100644 application/package.json create mode 100644 application/postcss.config.js create mode 100644 application/public/favicon.ico create mode 100644 application/public/placeholder.svg create mode 100644 application/public/robots.txt create mode 100644 application/public/upload/profile/profile1.svg create mode 100644 application/public/upload/profile/profile2.svg create mode 100644 application/public/upload/profile/profile3.svg create mode 100644 application/public/upload/profile/profile4.svg create mode 100644 application/public/upload/profile/profile5.svg create mode 100644 application/public/upload/profile/profile6.svg create mode 100644 application/public/upload/profile/profile7.svg create mode 100644 application/public/upload/profile/profile8.svg create mode 100644 application/src/App.css create mode 100644 application/src/App.tsx create mode 100644 application/src/api/index.ts create mode 100644 application/src/api/realtime/index.ts create mode 100644 application/src/components/dashboard/DashboardContent.tsx create mode 100644 application/src/components/dashboard/Header.tsx create mode 100644 application/src/components/dashboard/ServiceFilters.tsx create mode 100644 application/src/components/dashboard/ServicesTable.tsx create mode 100644 application/src/components/dashboard/Sidebar.tsx create mode 100644 application/src/components/dashboard/StatusCards.tsx create mode 100644 application/src/components/profile/ChangePasswordForm.tsx create mode 100644 application/src/components/profile/ProfileContent.tsx create mode 100644 application/src/components/profile/UpdateProfileForm.tsx create mode 100644 application/src/components/profile/UserProfileDetails.tsx create mode 100644 application/src/components/services/AddServiceDialog.tsx create mode 100644 application/src/components/services/DateRangeFilter.tsx create mode 100644 application/src/components/services/LastCheckedTime.tsx create mode 100644 application/src/components/services/LoadingState.tsx create mode 100644 application/src/components/services/ResponseTimeChart.tsx create mode 100644 application/src/components/services/ServiceDeleteDialog.tsx create mode 100644 application/src/components/services/ServiceDetailContainer.tsx create mode 100644 application/src/components/services/ServiceDetailContainer/ServiceDetailWrapper.tsx create mode 100644 application/src/components/services/ServiceDetailContainer/hooks/index.ts create mode 100644 application/src/components/services/ServiceDetailContainer/hooks/useRealTimeUpdates.tsx create mode 100644 application/src/components/services/ServiceDetailContainer/hooks/useServiceData.tsx create mode 100644 application/src/components/services/ServiceDetailContainer/index.tsx create mode 100644 application/src/components/services/ServiceDetailContent.tsx create mode 100644 application/src/components/services/ServiceEditDialog.tsx create mode 100644 application/src/components/services/ServiceForm.tsx create mode 100644 application/src/components/services/ServiceHeader.tsx create mode 100644 application/src/components/services/ServiceHistoryDialog.tsx create mode 100644 application/src/components/services/ServiceMonitoringButton.tsx create mode 100644 application/src/components/services/ServiceNotFound.tsx create mode 100644 application/src/components/services/ServiceRow.tsx create mode 100644 application/src/components/services/ServiceStatsCards.tsx create mode 100644 application/src/components/services/ServiceUptimeHistory.tsx create mode 100644 application/src/components/services/ServicesTableContainer.tsx create mode 100644 application/src/components/services/ServicesTableView.tsx create mode 100644 application/src/components/services/StatusBadge.tsx create mode 100644 application/src/components/services/UptimeBar.tsx create mode 100644 application/src/components/services/add-service/ServiceBasicFields.tsx create mode 100644 application/src/components/services/add-service/ServiceConfigFields.tsx create mode 100644 application/src/components/services/add-service/ServiceForm.tsx create mode 100644 application/src/components/services/add-service/ServiceFormActions.tsx create mode 100644 application/src/components/services/add-service/ServiceNotificationFields.tsx create mode 100644 application/src/components/services/add-service/ServiceTypeField.tsx create mode 100644 application/src/components/services/add-service/index.ts create mode 100644 application/src/components/services/add-service/types.ts create mode 100644 application/src/components/services/hooks/index.ts create mode 100644 application/src/components/services/hooks/useDialogState.ts create mode 100644 application/src/components/services/hooks/useServiceActions.ts create mode 100644 application/src/components/services/incident-history/EmptyState.tsx create mode 100644 application/src/components/services/incident-history/IncidentTable.tsx create mode 100644 application/src/components/services/incident-history/LatestChecksTable.tsx create mode 100644 application/src/components/services/incident-history/StatusFilterTabs.tsx create mode 100644 application/src/components/services/incident-history/TablePagination.tsx create mode 100644 application/src/components/services/incident-history/index.ts create mode 100644 application/src/components/services/incident-history/types.ts create mode 100644 application/src/components/services/incident-history/utils.tsx create mode 100644 application/src/components/services/index.ts create mode 100644 application/src/components/services/service-row/ServiceRowActions.tsx create mode 100644 application/src/components/services/service-row/ServiceRowHeader.tsx create mode 100644 application/src/components/services/service-row/ServiceRowResponseTime.tsx create mode 100644 application/src/components/services/service-row/index.ts create mode 100644 application/src/components/settings/GeneralSettings.tsx create mode 100644 application/src/components/settings/about-system/AboutSystem.tsx create mode 100644 application/src/components/settings/about-system/index.ts create mode 100644 application/src/components/settings/alerts-templates/AlertsTemplates.tsx create mode 100644 application/src/components/settings/alerts-templates/TemplateDialog.tsx create mode 100644 application/src/components/settings/alerts-templates/TemplateList.tsx create mode 100644 application/src/components/settings/alerts-templates/form/BasicTemplateFields.tsx create mode 100644 application/src/components/settings/alerts-templates/form/MessagesTabContent.tsx create mode 100644 application/src/components/settings/alerts-templates/form/PlaceholdersTabContent.tsx create mode 100644 application/src/components/settings/alerts-templates/form/index.ts create mode 100644 application/src/components/settings/alerts-templates/hooks/index.ts create mode 100644 application/src/components/settings/alerts-templates/hooks/useTemplateForm.ts create mode 100644 application/src/components/settings/alerts-templates/index.ts create mode 100644 application/src/components/settings/notification-settings/NotificationChannelDialog.tsx create mode 100644 application/src/components/settings/notification-settings/NotificationChannelList.tsx create mode 100644 application/src/components/settings/notification-settings/NotificationSettings.tsx create mode 100644 application/src/components/settings/notification-settings/index.ts create mode 100644 application/src/components/settings/user-management/AddUserDialog.tsx create mode 100644 application/src/components/settings/user-management/DeleteUserDialog.tsx create mode 100644 application/src/components/settings/user-management/EditUserDialog.tsx create mode 100644 application/src/components/settings/user-management/UserManagement.tsx create mode 100644 application/src/components/settings/user-management/UserTable.tsx create mode 100644 application/src/components/settings/user-management/avatarOptions.ts create mode 100644 application/src/components/settings/user-management/form-fields/AddUserForm.tsx create mode 100644 application/src/components/settings/user-management/form-fields/UserProfilePictureField.tsx create mode 100644 application/src/components/settings/user-management/form-fields/UserTextField.tsx create mode 100644 application/src/components/settings/user-management/form-fields/UserToggleField.tsx create mode 100644 application/src/components/settings/user-management/form-fields/index.ts create mode 100644 application/src/components/settings/user-management/hooks/index.ts create mode 100644 application/src/components/settings/user-management/hooks/useUserDialogs.ts create mode 100644 application/src/components/settings/user-management/hooks/useUserForm.ts create mode 100644 application/src/components/settings/user-management/hooks/useUserManagement.ts create mode 100644 application/src/components/settings/user-management/hooks/useUserOperations.ts create mode 100644 application/src/components/settings/user-management/hooks/useUsersList.ts create mode 100644 application/src/components/settings/user-management/index.ts create mode 100644 application/src/components/settings/user-management/userForms.ts create mode 100644 application/src/components/ui/accordion.tsx create mode 100644 application/src/components/ui/alert-dialog.tsx create mode 100644 application/src/components/ui/alert.tsx create mode 100644 application/src/components/ui/aspect-ratio.tsx create mode 100644 application/src/components/ui/avatar.tsx create mode 100644 application/src/components/ui/badge.tsx create mode 100644 application/src/components/ui/breadcrumb.tsx create mode 100644 application/src/components/ui/button.tsx create mode 100644 application/src/components/ui/calendar.tsx create mode 100644 application/src/components/ui/card.tsx create mode 100644 application/src/components/ui/carousel.tsx create mode 100644 application/src/components/ui/chart.tsx create mode 100644 application/src/components/ui/checkbox.tsx create mode 100644 application/src/components/ui/collapsible.tsx create mode 100644 application/src/components/ui/command.tsx create mode 100644 application/src/components/ui/context-menu.tsx create mode 100644 application/src/components/ui/dialog.tsx create mode 100644 application/src/components/ui/drawer.tsx create mode 100644 application/src/components/ui/dropdown-menu.tsx create mode 100644 application/src/components/ui/form.tsx create mode 100644 application/src/components/ui/hover-card.tsx create mode 100644 application/src/components/ui/input-otp.tsx create mode 100644 application/src/components/ui/input.tsx create mode 100644 application/src/components/ui/label.tsx create mode 100644 application/src/components/ui/menubar.tsx create mode 100644 application/src/components/ui/navigation-menu.tsx create mode 100644 application/src/components/ui/pagination.tsx create mode 100644 application/src/components/ui/popover.tsx create mode 100644 application/src/components/ui/progress.tsx create mode 100644 application/src/components/ui/radio-group.tsx create mode 100644 application/src/components/ui/resizable.tsx create mode 100644 application/src/components/ui/scroll-area.tsx create mode 100644 application/src/components/ui/select.tsx create mode 100644 application/src/components/ui/separator.tsx create mode 100644 application/src/components/ui/sheet.tsx create mode 100644 application/src/components/ui/sidebar.tsx create mode 100644 application/src/components/ui/skeleton.tsx create mode 100644 application/src/components/ui/slider.tsx create mode 100644 application/src/components/ui/sonner.tsx create mode 100644 application/src/components/ui/switch.tsx create mode 100644 application/src/components/ui/table.tsx create mode 100644 application/src/components/ui/tabs.tsx create mode 100644 application/src/components/ui/textarea.tsx create mode 100644 application/src/components/ui/toast.tsx create mode 100644 application/src/components/ui/toaster.tsx create mode 100644 application/src/components/ui/toggle-group.tsx create mode 100644 application/src/components/ui/toggle.tsx create mode 100644 application/src/components/ui/tooltip.tsx create mode 100644 application/src/components/ui/use-toast.ts create mode 100644 application/src/contexts/LanguageContext.tsx create mode 100644 application/src/contexts/ThemeContext.tsx create mode 100644 application/src/hooks/use-mobile.tsx create mode 100644 application/src/hooks/use-toast.ts create mode 100644 application/src/hooks/useSystemSettings.tsx create mode 100644 application/src/index.css create mode 100644 application/src/lib/pocketbase.ts create mode 100644 application/src/lib/utils.ts create mode 100644 application/src/main.tsx create mode 100644 application/src/pages/Dashboard.tsx create mode 100644 application/src/pages/Index.tsx create mode 100644 application/src/pages/Login.tsx create mode 100644 application/src/pages/NotFound.tsx create mode 100644 application/src/pages/Profile.tsx create mode 100644 application/src/pages/ServiceDetail.tsx create mode 100644 application/src/pages/Settings.tsx create mode 100644 application/src/services/alertConfigService.ts create mode 100644 application/src/services/authService.ts create mode 100644 application/src/services/monitoring/handlers/serviceStatusHandlers.ts create mode 100644 application/src/services/monitoring/httpChecker.ts create mode 100644 application/src/services/monitoring/index.ts create mode 100644 application/src/services/monitoring/monitoringIntervals.ts create mode 100644 application/src/services/monitoring/service-status/index.ts create mode 100644 application/src/services/monitoring/service-status/pauseMonitoring.ts create mode 100644 application/src/services/monitoring/service-status/resumeMonitoring.ts create mode 100644 application/src/services/monitoring/service-status/startAllServices.ts create mode 100644 application/src/services/monitoring/service-status/startMonitoring.ts create mode 100644 application/src/services/monitoring/utils/httpUtils.ts create mode 100644 application/src/services/monitoring/utils/notificationUtils.ts create mode 100644 application/src/services/notification/index.ts create mode 100644 application/src/services/notification/signalService.ts create mode 100644 application/src/services/notification/telegramService.ts create mode 100644 application/src/services/notification/templateProcessor.ts create mode 100644 application/src/services/notification/types.ts create mode 100644 application/src/services/notificationService.ts create mode 100644 application/src/services/serviceService.ts create mode 100644 application/src/services/settingsService.ts create mode 100644 application/src/services/templateService.ts create mode 100644 application/src/services/uptimeService.ts create mode 100644 application/src/services/userService.ts create mode 100644 application/src/translations/en.ts create mode 100644 application/src/translations/index.ts create mode 100644 application/src/translations/km.ts create mode 100644 application/src/types/service.types.ts create mode 100644 application/src/vite-env.d.ts create mode 100644 application/tailwind.config.ts create mode 100644 application/tsconfig.app.json create mode 100644 application/tsconfig.json create mode 100644 application/tsconfig.node.json create mode 100644 application/vite.config.ts create mode 100644 docker-compose.yml create mode 100644 docker/.DS_Store create mode 100644 docker/Dockerfile create mode 100644 docker/docker-compose-dev.yml create mode 100644 docker/docker-compose.prod.yml create mode 100644 scripts/entrypoint.sh create mode 100644 scripts/setup.sh create mode 100644 server/pb_data/auxiliary.db create mode 100644 server/pb_data/data.db create mode 100644 server/pb_data/types.d.ts create mode 100644 server/pb_migrations/1746786764_updated_services.js create mode 100644 server/pb_migrations/1746786820_updated_services.js create mode 100644 server/pb_migrations/1746786864_updated_services.js create mode 100644 server/pb_migrations/1746787173_updated_services.js create mode 100644 server/pb_migrations/1746787500_updated_services.js create mode 100644 server/pb_migrations/1746787517_updated_services.js create mode 100644 server/pb_migrations/1746787595_updated_uptime_data.js create mode 100644 server/pb_migrations/1746787681_updated_alert_configurations.js create mode 100644 server/pb_migrations/pb_schema.json create mode 100755 server/pocketbase diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..c6a4f6cc9c7066d35634c2f36d5c004c7c3a66fb GIT binary patch literal 6148 zcmeHKyH3ME5S)c5L`svA@_vCou%hq<`2oPDh_G-J1GT&SHnR`F!J(yqU2AWAdpmdb z6kaa?S-&Eu85-!Q`2?ziCsiwMikp)hZ^^I!4BOd`+PvTOLF$STJpa5&rM&q z4_((PagK&t)_B4r4&#L@^b8-!-1FRiyfo($v+?$wbN)#(nhK->sX!`_3j7ZRShLj@ zOUE2jfm9$B_*6i@4~4E+1rCn(>EK{308xMA&3JFU1hHsr9&#m98-Z*;8cN2pRTn2-_n2R|4&IdO9fJaKc#@o zHrvgbuN1X)@^V^h3;mA%Va&C34pxeZR*E^%QhYtiD|*lMDsXT#I^#ws=8u5tl9mem Gh63*yvL{~v literal 0 HcmV?d00001 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..54f07af --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? \ No newline at end of file diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..5f7c278 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,119 @@ + +# πŸ› οΈ Contributing to CheckCle + +Thank you for your interest in contributing to **CheckCle** β€” the ultimate open-source platform for real-time full-stack monitoring. Whether you're here to report bugs, suggest features, improve documentation, or submit code, your contribution matters! + +We welcome all kinds of contributions, big or small. This guide will help you get started. + +--- + +## πŸ“Œ Table of Contents +- [Code of Conduct](#-code-of-conduct) +- [Ways to Contribute](#-ways-to-contribute) +- [Development Setup](#-development-setup) +- [Pull Request Process](#-pull-request-process) +- [Reporting Bugs & Issues](#-reporting-bugs--issues) +- [Feature Requests](#-feature-requests) +- [Community & Support](#-community--support) +- [License](#-license) + +--- + +## πŸ“œ Code of Conduct + +We follow a [Code of Conduct](https://opensource.guide/code-of-conduct/) to foster an open and welcoming community. By participating, you agree to uphold these standards. + +--- + +## 🀝 Ways to Contribute + +Here are some ways you can help improve CheckCle: + +- 🐞 **Report Bugs** – Found a glitch? Let us know by opening a [GitHub Issue](https://github.com/operacle/checkcle/issues). +- 🌟 **Suggest Features** – Have an idea? Start a [Discussion](https://github.com/operacle/checkcle/discussions) or open a Feature Request issue. +- πŸ›  **Submit Pull Requests** – Improve the code, fix bugs, add features, or enhance the docs. +- πŸ“ **Improve Documentation** – Even a typo fix helps! +- 🌍 **Spread the Word** – Star ⭐ the repo, share it on socials, and invite others to contribute! + +--- + +## 🧰 Development Setup + +Before contributing code, set up the project locally: + +### 1. Fork the Repository +Click "Fork" on [GitHub](https://github.com/operacle/checkcle) to create your own copy. + +### 2. Clone Your Fork +```bash +git clone https://github.com/operacle/checkcle.git +cd checkcle +``` + +### 3. Install Dependencies +Follow the instructions in the README or project docs to install required packages and run the local development server. + +### 4. Start Local Development +```bash +#Web Application +cd application/ +npm install && npm run dev + +#Server Backend +cd server +./pocketbase serve --dir pb_data +``` + +--- + +## βœ… Pull Request Process + +1. Ensure your code follows the existing style and naming conventions. +2. Write clear, concise commit messages. +3. Push your branch and open a Pull Request (PR) on the `main` branch. +4. Provide a meaningful PR description (what/why/how). +5. Link related issues if applicable (e.g. `Closes #12`). +6. Make sure all checks pass (e.g., linting, tests). + +We’ll review your PR, request changes if needed, and merge it once ready! + +--- + +## πŸ› Reporting Bugs & Issues + +Please include as much information as possible: +- A clear, descriptive title +- Steps to reproduce +- Expected vs actual behavior +- Environment info (OS, browser, device, etc.) +- Screenshots or logs if applicable + +Use the [Issue Tracker](https://github.com/operacle/checkcle/issues) to report. + +--- + +## πŸ’‘ Feature Requests + +We’d love to hear your ideas! Open a [Discussion](https://github.com/operacle/checkcle/discussions) or Feature Request issue. Make sure it’s not already listed in the [Roadmap](https://github.com/operacle/checkcle#development-roadmap). + +--- + +## 🌍 Community & Support + +Need help? Want to connect? + +- πŸ’¬ [Join our Discord](https://discord.gg/xs9gbubGwX) +- πŸ—£ Start or join a [GitHub Discussion](https://github.com/operacle/checkcle/discussions) +- 🐦 Follow us on [X (Twitter)](https://x.com/tl) + +--- + +## πŸ“œ License + +By contributing, you agree that your contributions will be licensed under the [MIT License](LICENSE). + +--- + +## πŸ™ Thank You + +We’re excited to build CheckCle together β€” a powerful monitoring platform **for the community, by the community**. Your support means the world! πŸ’™ diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..2ff6a5e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,44 @@ +# Stage 1: Build the frontend +FROM node:18-alpine AS frontend-builder +WORKDIR /app +COPY application/package*.json ./ +RUN npm install +COPY application/ ./ +RUN npm run build + +# Stage 2: Download PocketBase binary +FROM alpine:3.17 AS pb-builder +WORKDIR /pb +ARG PB_VERSION=0.27.2 +RUN apk add --no-cache wget unzip \ + && wget https://github.com/pocketbase/pocketbase/releases/download/v${PB_VERSION}/pocketbase_${PB_VERSION}_linux_amd64.zip \ + && unzip pocketbase_${PB_VERSION}_linux_amd64.zip \ + && chmod +x /pb/pocketbase + +# Stage 3: Final runtime image +FROM alpine:3.17 +WORKDIR /app + +# Copy PocketBase binary +COPY --from=pb-builder /pb/pocketbase /app/pocketbase + +# Copy frontend build to PocketBase public directory +COPY --from=frontend-builder /app/dist /app/pb_public + +# Copy backend files +COPY server/pb_migrations /app/pb_migrations +COPY server/pb_hooks /app/pb_hooks +COPY server/pb_data /app/pb_data + +# Mark pb_data as a volume for runtime persistence +VOLUME /app/pb_data + +# Expose default PocketBase port +EXPOSE 8090 + +# Launch PocketBase +#CMD ["/app/pocketbase", "serve", "--dir", "/app/pb_data"] + + +# Launch PocketBase and bind to 0.0.0.0 for external access +CMD ["/app/pocketbase", "serve", "--http=0.0.0.0:8090", "--dir", "/app/pb_data"] diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..e0efa97 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,17 @@ +The MIT License (MIT) +Copyright (c) 2022 - Present, Tola Leng + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software +and associated documentation files (the "Software"), to deal in the Software without restriction, +including without limitation the rights to use, copy, modify, merge, publish, distribute, +sublicense, and/or sell copies of the Software, and to permit persons to whom the Software +is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or +substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING +BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, +DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..edaa62a --- /dev/null +++ b/README.md @@ -0,0 +1,123 @@ +![CheckCle Platform](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-black.png) + +# πŸš€ What is CheckCle? + +CheckCle is an Open Source solution for seamless, real-time monitoring of full-stack systems, applications, and infrastructure. It provides developers, sysadmins, and DevOps teams with deep insights and actionable data across every layer of their environmentβ€”whether it's servers, applications, or services. With CheckCle, you gain visibility, control, and the ability to ensure optimal performance throughout your entire technology stack. + +## 🎯 Live Demo +πŸ‘‰ **Try it now:** [CheckCle Live Demo](https://demo.checkcle.io) Coming Soon! + +## 🌟 Core Features + +### Uptime Services & Infrastructure Server Monitoring +- Monitor HTTP, DNS, and Ping protocols +- Monitor TCP-based, API services (e.g., FTP, SMTP, HTTP) +- Track detail uptime, response times, and performance issues +- Incident History (UP/DOWN/WARNING/PAUSE) +- SSL & Domain Monitoring (Domain, Issuer, Expiration Date, Days Left, Status, Last Notified) +- Infrastructure Server Monitoring, Supports Linux (🐧 Debian, Ubuntu, CentOS, Red Hat, etc.) and Windows (Beta). And Servers metrics like CPU, RAM, disk usage, and network activity) with an one-line installation angent script. +- Schedule Maintenance & Incident Management +- Operational Status / Public Status Pages +- Notifications via email, Telegram, Discord, and Slack +- Reports & Analytics +- Settings Panel (User Management, Data Retention, Multi-language, Themes (Dark & Light Mode), Notification and channels and alert templates). + +## #️⃣ Getting Started + +### Installation with Docker Compose +1. Clone the repository and run +```bash +#Clone the repository + +git clone https://github.com/operacle/checkcle.git +cd checkcle + +# Run docker compose + +docker compose up -d + +``` +2. Docker Compose - Recommended +```bash + +services: + checkcle: + image: operacle/checkcle:latest + container_name: checkcle + restart: unless-stopped + ports: + - "8090:8090" # Web Application + volumes: + - pb_data:/app/pb_data # Ensure persistent data across rebuilds + ulimits: + nofile: + soft: 4096 + hard: 8192 + +volumes: + pb_data: # Docker-managed volume for data persistence + +``` +3. Admin Web Management + + Default URL: http://0.0.0.0:8090 + User: admin@example.com + Passwd: Admin123456 + +4. Follow the Quick Start Guide at https://docs.checkcle.com (Coming Soon) + +### +![Uptime Monitoring](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-collapse-black.png) +![checkcle-collapse-black](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-black.png) +![Service Detail Page](https://pub-4a4062303020445f8f289a2fee84f9e8.r2.dev/images/checkcle-detailpage.png) + +## πŸ“ Development Roadmap + +- [x] Health check & uptime monitoring (HTTP) +- [x] Dashboard UI with live stats +- [x] Auth with Multi-users system (admin) +- [x] Notifications (Telegram) +- [x] Docker containerization +- [ ] SSL & Domain Monitoring +- [ ] Infrastructure Server Monitoring +- [ ] Schedule Maintenance & Incident Management +- [ ] Operational Status / Public Status Pages +- [ ] Uptime monitoring (TCP, PING, DNS) +- [ ] User Permission Roles & Service Group +- [ ] Notifications (Email/Slack/Discord/Signal) +- [ ] Mobile PWA version +- [ ] Open-source release with full documentation + +## 🌟 CheckCle for Communities? +- **Built with Passion**: Created by an open-source enthusiast for the community +- **Free & Open Source**: Completely free to use with no hidden costs +- **Collaborate & Connect**: Meet like-minded people passionate about Open Source + +--- + +## 🀝 Ways to Contribute + +Here are some ways you can help improve CheckCle: + +- 🐞 **Report Bugs** – Found a glitch? Let us know by opening a [GitHub Issue](https://github.com/operacle/checkcle/issues). +- 🌟 **Suggest Features** – Have an idea? Start a [Discussion](https://github.com/operacle/checkcle/discussions) or open a Feature Request issue. +- πŸ›  **Submit Pull Requests** – Improve the code, fix bugs, add features, or enhance the docs. +- πŸ“ **Improve Documentation** – Even a typo fix helps! +- 🌍 **Spread the Word** – Star ⭐ the repo, share it on socials, and invite others to contribute! + +--- + +## 🌍 Stay Connected +- Website: [checkcle.io](https://checkcle.io) +- GitHub Repository: ⭐ [CheckCle](https://github.com/operacle/checkcle.git) +- Community Channels: Engage via discussions and issues! +- Discord: Join our community [@discord](https://discord.gg/xs9gbubGwX) +- X: [@tlengoss](https://x.com/tlengoss) + +## πŸ“œ License + +CheckCle is released under the MIT License. + +--- + +Stay informed, stay online, with CheckCle! 🌐 diff --git a/application/.gitignore b/application/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/application/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/application/bun.lockb b/application/bun.lockb new file mode 100644 index 0000000000000000000000000000000000000000..160304d398161f97165233dfe6636caa631bfdfb GIT binary patch literal 198351 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 literal 0 HcmV?d00001 diff --git a/application/components.json b/application/components.json new file mode 100644 index 0000000..f29e3f1 --- /dev/null +++ b/application/components.json @@ -0,0 +1,20 @@ +{ + "$schema": "https://ui.shadcn.com/schema.json", + "style": "default", + "rsc": false, + "tsx": true, + "tailwind": { + "config": "tailwind.config.ts", + "css": "src/index.css", + "baseColor": "slate", + "cssVariables": true, + "prefix": "" + }, + "aliases": { + "components": "@/components", + "utils": "@/lib/utils", + "ui": "@/components/ui", + "lib": "@/lib", + "hooks": "@/hooks" + } +} \ No newline at end of file diff --git a/application/eslint.config.js b/application/eslint.config.js new file mode 100644 index 0000000..e67846f --- /dev/null +++ b/application/eslint.config.js @@ -0,0 +1,29 @@ +import js from "@eslint/js"; +import globals from "globals"; +import reactHooks from "eslint-plugin-react-hooks"; +import reactRefresh from "eslint-plugin-react-refresh"; +import tseslint from "typescript-eslint"; + +export default tseslint.config( + { ignores: ["dist"] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ["**/*.{ts,tsx}"], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + "react-hooks": reactHooks, + "react-refresh": reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + "react-refresh/only-export-components": [ + "warn", + { allowConstantExport: true }, + ], + "@typescript-eslint/no-unused-vars": "off", + }, + } +); diff --git a/application/index.html b/application/index.html new file mode 100644 index 0000000..da62e94 --- /dev/null +++ b/application/index.html @@ -0,0 +1,26 @@ + + + + + + + CheckCle is an open-source monitoring stack + + + + + + + + + + + + + + +

+ + + + diff --git a/application/package-lock.json b/application/package-lock.json new file mode 100644 index 0000000..1491f66 --- /dev/null +++ b/application/package-lock.json @@ -0,0 +1,6560 @@ +{ + "name": "vite_react_shadcn_ts", + "version": "0.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "vite_react_shadcn_ts", + "version": "0.0.0", + "dependencies": { + "@hookform/resolvers": "^3.9.0", + "@radix-ui/react-accordion": "^1.2.0", + "@radix-ui/react-alert-dialog": "^1.1.1", + "@radix-ui/react-aspect-ratio": "^1.1.0", + "@radix-ui/react-avatar": "^1.1.0", + "@radix-ui/react-checkbox": "^1.1.1", + "@radix-ui/react-collapsible": "^1.1.0", + "@radix-ui/react-context-menu": "^2.2.1", + "@radix-ui/react-dialog": "^1.1.2", + "@radix-ui/react-dropdown-menu": "^2.1.1", + "@radix-ui/react-hover-card": "^1.1.1", + "@radix-ui/react-label": "^2.1.0", + "@radix-ui/react-menubar": "^1.1.1", + "@radix-ui/react-navigation-menu": "^1.2.0", + "@radix-ui/react-popover": "^1.1.1", + "@radix-ui/react-progress": "^1.1.0", + "@radix-ui/react-radio-group": "^1.2.0", + "@radix-ui/react-scroll-area": "^1.1.0", + "@radix-ui/react-select": "^2.1.1", + "@radix-ui/react-separator": "^1.1.0", + "@radix-ui/react-slider": "^1.2.0", + "@radix-ui/react-slot": "^1.1.0", + "@radix-ui/react-switch": "^1.1.0", + "@radix-ui/react-tabs": "^1.1.0", + "@radix-ui/react-toast": "^1.2.1", + "@radix-ui/react-toggle": "^1.1.0", + "@radix-ui/react-toggle-group": "^1.1.0", + "@radix-ui/react-tooltip": "^1.1.4", + "@tanstack/react-query": "^5.56.2", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.0.0", + "date-fns": "^3.6.0", + "embla-carousel-react": "^8.3.0", + "input-otp": "^1.2.4", + "lucide-react": "^0.462.0", + "next-themes": "^0.3.0", + "pocketbase": "^0.19.0", + "react": "^18.3.1", + "react-day-picker": "^8.10.1", + "react-dom": "^18.3.1", + "react-hook-form": "^7.53.0", + "react-resizable-panels": "^2.1.3", + "react-router-dom": "^6.26.2", + "recharts": "^2.12.7", + "sonner": "^1.5.0", + "tailwind-merge": "^2.5.2", + "tailwindcss-animate": "^1.0.7", + "vaul": "^0.9.3", + "zod": "^3.23.8" + }, + "devDependencies": { + "@eslint/js": "^9.9.0", + "@tailwindcss/typography": "^0.5.15", + "@types/node": "^22.5.5", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react-swc": "^3.5.0", + "autoprefixer": "^10.4.20", + "eslint": "^9.9.0", + "eslint-plugin-react-hooks": "^5.1.0-rc.0", + "eslint-plugin-react-refresh": "^0.4.9", + "globals": "^15.9.0", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.11", + "typescript": "^5.5.3", + "typescript-eslint": "^8.0.1", + "vite": "^5.4.1" + } + }, + "node_modules/@alloc/quick-lru": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", + "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@babel/runtime": { + "version": "7.25.9", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.25.9.tgz", + "integrity": "sha512-4zpTHZ9Cm6L9L+uIqghQX8ZXg8HKFcjYO3qHoO8zTmRm6HQUJ8SSJ+KRvbMBZn0EGVlT4DRYeQ/6hjlyXBh+Kg==", + "license": "MIT", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", + "integrity": "sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "license": "MIT", + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.11.1", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.1.tgz", + "integrity": "sha512-m4DVN9ZqskZoLU5GlWZadwDnYo3vAEydiUayB9widCl9ffWx2IvPnp6n3on5rJmziJSw9Bv+Z3ChDVdMwXCY8Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/config-array": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/@eslint/config-array/-/config-array-0.18.0.tgz", + "integrity": "sha512-fTxvnS1sRMu3+JjXwJG0j/i4RT9u4qJ+lqS/yCGap4lH4zZGzQ7tu+xZqQmcMZq5OBZDL4QRxQzRjkWcGt8IVw==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@eslint/object-schema": "^2.1.4", + "debug": "^4.3.1", + "minimatch": "^3.1.2" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/core": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.7.0.tgz", + "integrity": "sha512-xp5Jirz5DyPYlPiKat8jaq0EmYvDXKKpzTbxXMpT9eqlRJkRKIz9AGMdlvYjih+im+QlhWrpvVjl8IPC/lHlUw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-3.1.0.tgz", + "integrity": "sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^10.0.1", + "globals": "^14.0.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-14.0.0.tgz", + "integrity": "sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-9.13.0.tgz", + "integrity": "sha512-IFLyoY4d72Z5y/6o/BazFBezupzI/taV8sGumxTAVw3lXG9A6md1Dc34T9s1FoD/an9pJH8RHbAxsaEbBed9lA==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/object-schema": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/object-schema/-/object-schema-2.1.4.tgz", + "integrity": "sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@eslint/plugin-kit": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.2.3.tgz", + "integrity": "sha512-2b/g5hRmpbb1o4GnTZax9N9m0FXzz9OV42ZzI4rDDMDuHUqigAiQCEWChBWCY4ztAGVRjoWT19v0yMmc5/L5kA==", + "dev": true, + "dependencies": { + "levn": "^0.4.1" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + } + }, + "node_modules/@floating-ui/core": { + "version": "1.6.8", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.8.tgz", + "integrity": "sha512-7XJ9cPU+yI2QeLS+FCSlqNFZJq8arvswefkZrYI1yQBbftw6FyrZOxYSh+9S7z7TpeWlRt9zJ5IhM1WIL334jA==", + "license": "MIT", + "dependencies": { + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.11", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.11.tgz", + "integrity": "sha512-qkMCxSR24v2vGkhYDo/UzxfJN3D4syqSjyuTFz6C7XcpU1pASPRieNI0Kj5VP3/503mOfYiGY891ugBX1GlABQ==", + "license": "MIT", + "dependencies": { + "@floating-ui/core": "^1.6.0", + "@floating-ui/utils": "^0.2.8" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz", + "integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==", + "license": "MIT", + "dependencies": { + "@floating-ui/dom": "^1.0.0" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.8", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.8.tgz", + "integrity": "sha512-kym7SodPp8/wloecOpcmSnWJsK7M0E5Wg8UcFA+uO4B9s5d0ywXOEro/8HM9x0rW+TljRzul/14UYz3TleT3ig==", + "license": "MIT" + }, + "node_modules/@hookform/resolvers": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/@hookform/resolvers/-/resolvers-3.9.0.tgz", + "integrity": "sha512-bU0Gr4EepJ/EQsH/IwEzYLsT/PEj5C0ynLQ4m+GSHS+xKH4TfSelhluTgOaoc4kA5s7eCsQbM4wvZLzELmWzUg==", + "license": "MIT", + "peerDependencies": { + "react-hook-form": "^7.0.0" + } + }, + "node_modules/@humanfs/core": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/@humanfs/core/-/core-0.19.0.tgz", + "integrity": "sha512-2cbWIHbZVEweE853g8jymffCA+NCMiuqeECeBBLm8dg2oFdjuGJhgN4UAbI+6v0CKbbhvtXA4qV8YR5Ji86nmw==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanfs/node": { + "version": "0.16.5", + "resolved": "https://registry.npmjs.org/@humanfs/node/-/node-0.16.5.tgz", + "integrity": "sha512-KSPA4umqSG4LHYRodq31VDwKAvaTF4xmVlzM8Aeh4PlU1JQ3IG0wiA8C25d3RQ9nJyM3mBHyI53K06VVL/oFFg==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@humanfs/core": "^0.19.0", + "@humanwhocodes/retry": "^0.3.0" + }, + "engines": { + "node": ">=18.18.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/retry": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/retry/-/retry-0.3.1.tgz", + "integrity": "sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": ">=18.18" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "license": "ISC", + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", + "license": "MIT", + "dependencies": { + "@jridgewell/set-array": "^1.2.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.24" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", + "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", + "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", + "license": "MIT" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", + "license": "MIT", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "license": "MIT", + "optional": true, + "engines": { + "node": ">=14" + } + }, + "node_modules/@radix-ui/number": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.1.0.tgz", + "integrity": "sha512-V3gRzhVNU1ldS5XhAPTom1fOIo4ccrjjJgmE+LI2h/WaFpHmx0MQApT+KZHnx8abG6Avtfcz4WoEciMnpFT3HQ==", + "license": "MIT" + }, + "node_modules/@radix-ui/primitive": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.1.0.tgz", + "integrity": "sha512-4Z8dn6Upk0qk4P74xBhZ6Hd/w0mPEzOOLxy4xiPXOXqjF7jZS0VAKk7/x/H6FyY2zCkYJqePf1G5KmkmNJ4RBA==", + "license": "MIT" + }, + "node_modules/@radix-ui/react-accordion": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-accordion/-/react-accordion-1.2.1.tgz", + "integrity": "sha512-bg/l7l5QzUjgsh8kjwDFommzAshnUsuVMV5NM56QVCm+7ZckYdd9P/ExR8xG/Oup0OajVxNLaHJ1tb8mXk+nzQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collapsible": "1.1.1", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-alert-dialog": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-alert-dialog/-/react-alert-dialog-1.1.2.tgz", + "integrity": "sha512-eGSlLzPhKO+TErxkiGcCZGuvbVMnLA1MTnyBksGOeGRGkxHiiJUujsjmNTdWTm4iHVSRaUao9/4Ur671auMghQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-dialog": "1.1.2", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-arrow": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.1.0.tgz", + "integrity": "sha512-FmlW1rCg7hBpEBwFbjHwCW6AmWLQM6g/v0Sn8XbP9NvmSZ2San1FpQeyPtufzOMSIx7Y4dzjlHoifhp+7NkZhw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.0.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-aspect-ratio": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-aspect-ratio/-/react-aspect-ratio-1.1.0.tgz", + "integrity": "sha512-dP87DM/Y7jFlPgUZTlhx6FF5CEzOiaxp2rBCKlaXlpH5Ip/9Fg5zZ9lDOQ5o/MOfUlf36eak14zoWYpgcgGoOg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.0.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-avatar": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-avatar/-/react-avatar-1.1.1.tgz", + "integrity": "sha512-eoOtThOmxeoizxpX6RiEsQZ2wj5r4+zoeqAwO0cBaFQGjJwIH3dIX0OCxNrCyrrdxG+vBweMETh3VziQG7c1kw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-checkbox": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-checkbox/-/react-checkbox-1.1.2.tgz", + "integrity": "sha512-/i0fl686zaJbDQLNKrkCbMyDm6FQMt4jg323k7HuqitoANm9sE23Ql8yOK3Wusk34HSLKDChhMux05FnP6KUkw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-previous": "1.1.0", + "@radix-ui/react-use-size": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-collapsible": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collapsible/-/react-collapsible-1.1.1.tgz", + "integrity": "sha512-1///SnrfQHJEofLokyczERxQbWfCGQlQ2XsCZMucVs6it+lq9iw4vXy+uDn1edlb58cOZOWSldnfPAYcT4O/Yg==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-collection": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.1.0.tgz", + "integrity": "sha512-GZsZslMJEyo1VKm5L1ZJY8tGDxZNPAoUeQUIbKeJfoi7Q4kmig5AsgLMYYuyYbfjd8fBmFORAIwYAkXMnXZgZw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-collection/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.1.0.tgz", + "integrity": "sha512-b4inOtiaOnYf9KWyO3jAeeCG6FeyfY6ldiEPanbUjWd+xIk5wZeHa8yVwmrJ2vderhu/BQvzCrJI0lHd+wIiqw==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-context": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.1.tgz", + "integrity": "sha512-UASk9zi+crv9WteK/NU4PLvOoL3OuE6BWVKNF6hPRBtYBDXQ2u5iu3O59zUlJiTVvkyuycnqrztsHVJwcK9K+Q==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-context-menu": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context-menu/-/react-context-menu-2.2.2.tgz", + "integrity": "sha512-99EatSTpW+hRYHt7m8wdDlLtkmTovEe8Z/hnxUPV+SKuuNL5HWNhQI4QSdjZqNSgXHay2z4M3Dym73j9p2Gx5Q==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-menu": "2.1.2", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dialog": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.2.tgz", + "integrity": "sha512-Yj4dZtqa2o+kG61fzB0H2qUvmwBA2oyQroGLyNtBj1beo1khoQ3q1a2AO8rrQYjd8256CO9+N8L9tvsS+bnIyA==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-focus-guards": "1.1.1", + "@radix-ui/react-focus-scope": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.6.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-direction": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.0.tgz", + "integrity": "sha512-BUuBvgThEiAXh2DWu93XsT+a3aWrGqolGlqqw5VU1kG7p/ZH2cuDlM1sRLNnY3QcBS69UIz2mcKhMxDsdewhjg==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dismissable-layer": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.1.1.tgz", + "integrity": "sha512-QSxg29lfr/xcev6kSz7MAlmDnzbP1eI/Dwn3Tp1ip0KT5CUELsxkekFEMVBEoykI3oV39hKT4TKZzBNMbcTZYQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-escape-keydown": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-dropdown-menu": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dropdown-menu/-/react-dropdown-menu-2.1.2.tgz", + "integrity": "sha512-GVZMR+eqK8/Kes0a36Qrv+i20bAPXSn8rCBTHx30w+3ECnR5o3xixAlqcVaYvLeyKUsm0aqyhWfmUcqufM8nYA==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-menu": "2.1.2", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-focus-guards": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.1.1.tgz", + "integrity": "sha512-pSIwfrT1a6sIoDASCSpFwOasEwKTZWDw/iBdtnqKO7v6FeOzYJ7U53cPzYFVR3geGGXgVHaH+CdngrrAzqUGxg==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-focus-scope": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.1.0.tgz", + "integrity": "sha512-200UD8zylvEyL8Bx+z76RJnASR2gRMuxlgFCPAe/Q/679a/r0eK3MBVYMb7vZODZcffZBdob1EGnky78xmVvcA==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-hover-card": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-hover-card/-/react-hover-card-1.1.2.tgz", + "integrity": "sha512-Y5w0qGhysvmqsIy6nQxaPa6mXNKznfoGjOfBgzOjocLxr2XlSjqBMYQQL+FfyogsMuX+m8cZyQGYhJxvxUzO4w==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-popper": "1.2.0", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-id": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.1.0.tgz", + "integrity": "sha512-EJUrI8yYh7WOjNOqpoJaf1jlFIH2LvtgAl+YcFqNCa+4hj64ZXmPkAKOFs/ukjz3byN6bdb/AVUqHkI8/uWWMA==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-label": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-label/-/react-label-2.1.0.tgz", + "integrity": "sha512-peLblDlFw/ngk3UWq0VnYaOLy6agTZZ+MUO/WhVfm14vJGML+xH4FAl2XQGLqdefjNb7ApRg6Yn7U42ZhmYXdw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.0.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-menu": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-menu/-/react-menu-2.1.2.tgz", + "integrity": "sha512-lZ0R4qR2Al6fZ4yCCZzu/ReTFrylHFxIqy7OezIpWF4bL0o9biKo0pFIvkaew3TyZ9Fy5gYVrR5zCGZBVbO1zg==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-focus-guards": "1.1.1", + "@radix-ui/react-focus-scope": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-popper": "1.2.0", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-slot": "1.1.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.6.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-menubar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-menubar/-/react-menubar-1.1.2.tgz", + "integrity": "sha512-cKmj5Gte7LVyuz+8gXinxZAZECQU+N7aq5pw7kUPpx3xjnDXDbsdzHtCCD2W72bwzy74AvrqdYnKYS42ueskUQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-menu": "2.1.2", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-navigation-menu": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-navigation-menu/-/react-navigation-menu-1.2.1.tgz", + "integrity": "sha512-egDo0yJD2IK8L17gC82vptkvW1jLeni1VuqCyzY727dSJdk5cDjINomouLoNk8RVF7g2aNIfENKWL4UzeU9c8Q==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0", + "@radix-ui/react-use-previous": "1.1.0", + "@radix-ui/react-visually-hidden": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-popover": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popover/-/react-popover-1.1.2.tgz", + "integrity": "sha512-u2HRUyWW+lOiA2g0Le0tMmT55FGOEWHwPFt1EPfbLly7uXQExFo5duNKqG2DzmFXIdqOeNd+TpE8baHWJCyP9w==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-focus-guards": "1.1.1", + "@radix-ui/react-focus-scope": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-popper": "1.2.0", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.6.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-popper": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.2.0.tgz", + "integrity": "sha512-ZnRMshKF43aBxVWPWvbj21+7TQCvhuULWJ4gNIKYpRlQt5xGRhLx66tMp8pya2UkGHTSlhpXwmjqltDYHhw7Vg==", + "license": "MIT", + "dependencies": { + "@floating-ui/react-dom": "^2.0.0", + "@radix-ui/react-arrow": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0", + "@radix-ui/react-use-rect": "1.1.0", + "@radix-ui/react-use-size": "1.1.0", + "@radix-ui/rect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-popper/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-portal": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.1.2.tgz", + "integrity": "sha512-WeDYLGPxJb/5EGBoedyJbT0MpoULmwnIPMJMSldkuiMsBAv7N1cRdsTWZWht9vpPOiN3qyiGAtbK2is47/uMFg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-presence": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.1.1.tgz", + "integrity": "sha512-IeFXVi4YS1K0wVZzXNrbaaUvIJ3qdY+/Ih4eHFhWA9SwGR9UDX7Ck8abvL57C4cv3wwMvUE0OG69Qc3NCcTe/A==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-primitive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-2.0.0.tgz", + "integrity": "sha512-ZSpFm0/uHa8zTvKBDjLFWLo8dkr4MBsiDLz0g3gMUwqgLHz9rTaRRGYDgvZPtBJgYCBKXkS9fzmoySgr8CO6Cw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-slot": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-progress": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-progress/-/react-progress-1.1.0.tgz", + "integrity": "sha512-aSzvnYpP725CROcxAOEBVZZSIQVQdHgBr2QQFKySsaD14u8dNT0batuXI+AAGDdAHfXH8rbnHmjYFqVJ21KkRg==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-primitive": "2.0.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-progress/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-radio-group": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-radio-group/-/react-radio-group-1.2.1.tgz", + "integrity": "sha512-kdbv54g4vfRjja9DNWPMxKvXblzqbpEC8kspEkZ6dVP7kQksGCn+iZHkcCz2nb00+lPdRvxrqy4WrvvV1cNqrQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-previous": "1.1.0", + "@radix-ui/react-use-size": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.1.0.tgz", + "integrity": "sha512-EA6AMGeq9AEeQDeSH0aZgG198qkfHSbvWTf1HvoDmOB5bBG/qTxjYMWUKMnYiV6J/iP/J8MEFSuB2zRU2n7ODA==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-roving-focus/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-scroll-area": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-scroll-area/-/react-scroll-area-1.2.0.tgz", + "integrity": "sha512-q2jMBdsJ9zB7QG6ngQNzNwlvxLQqONyL58QbEGwuyRZZb/ARQwk3uQVbCF7GvQVOtV6EU/pDxAw3zRzJZI3rpQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/number": "1.1.0", + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-select": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-2.1.2.tgz", + "integrity": "sha512-rZJtWmorC7dFRi0owDmoijm6nSJH1tVw64QGiNIZ9PNLyBDtG+iAq+XGsya052At4BfarzY/Dhv9wrrUr6IMZA==", + "license": "MIT", + "dependencies": { + "@radix-ui/number": "1.1.0", + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-focus-guards": "1.1.1", + "@radix-ui/react-focus-scope": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-popper": "1.2.0", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0", + "@radix-ui/react-use-previous": "1.1.0", + "@radix-ui/react-visually-hidden": "1.1.0", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.6.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.1.0.tgz", + "integrity": "sha512-3uBAs+egzvJBDZAzvb/n4NxxOYpnspmWxO2u5NbZ8Y6FM/NdrGSF9bop3Cf6F6C71z1rTSn8KV0Fo2ZVd79lGA==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.0.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-slider": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slider/-/react-slider-1.2.1.tgz", + "integrity": "sha512-bEzQoDW0XP+h/oGbutF5VMWJPAl/UU8IJjr7h02SOHDIIIxq+cep8nItVNoBV+OMmahCdqdF38FTpmXoqQUGvw==", + "license": "MIT", + "dependencies": { + "@radix-ui/number": "1.1.0", + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0", + "@radix-ui/react-use-previous": "1.1.0", + "@radix-ui/react-use-size": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-slot": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.1.0.tgz", + "integrity": "sha512-FUCf5XMfmW4dtYl69pdS4DbxKy8nj4M7SafBgPllysxmdachynNflAdp/gCsnYWNDnge6tI9onzMp5ARYc1KNw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-compose-refs": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-switch": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.1.1.tgz", + "integrity": "sha512-diPqDDoBcZPSicYoMWdWx+bCPuTRH4QSp9J+65IvtdS0Kuzt67bI6n32vCj8q6NZmYW/ah+2orOtMwcX5eQwIg==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-previous": "1.1.0", + "@radix-ui/react-use-size": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-tabs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-tabs/-/react-tabs-1.1.1.tgz", + "integrity": "sha512-3GBUDmP2DvzmtYLMsHmpA1GtR46ZDZ+OreXM/N+kkQJOPIgytFWWTfDQmBQKBvaFS0Vno0FktdbVzN28KGrMdw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toast": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toast/-/react-toast-1.2.2.tgz", + "integrity": "sha512-Z6pqSzmAP/bFJoqMAston4eSNa+ud44NSZTiZUmUen+IOZ5nBY8kzuU5WDBVyFXPtcW6yUalOHsxM/BP6Sv8ww==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-collection": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-callback-ref": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-use-layout-effect": "1.1.0", + "@radix-ui/react-visually-hidden": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.1.0.tgz", + "integrity": "sha512-gwoxaKZ0oJ4vIgzsfESBuSgJNdc0rv12VhHgcqN0TEJmmZixXG/2XpsLK8kzNWYcnaoRIEEQc0bEi3dIvdUpjw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle-group": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.1.0.tgz", + "integrity": "sha512-PpTJV68dZU2oqqgq75Uzto5o/XfOVgkrJ9rulVmfTKxWp3HfUjHE6CP/WLRR4AzPX9HWxw7vFow2me85Yu+Naw==", + "license": "MIT", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-context": "1.1.0", + "@radix-ui/react-direction": "1.1.0", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-roving-focus": "1.1.0", + "@radix-ui/react-toggle": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-toggle-group/node_modules/@radix-ui/react-context": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.0.tgz", + "integrity": "sha512-OKrckBy+sMEgYM/sMmqmErVn0kZqrHPJze+Ql3DzYsDDp0hl0L62nx/2122/Bvps1qz645jlcu2tD9lrRSdf8A==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-tooltip": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-tooltip/-/react-tooltip-1.1.4.tgz", + "integrity": "sha512-QpObUH/ZlpaO4YgHSaYzrLO2VuO+ZBFFgGzjMUPwtiYnAzzNNDPJeEGRrT7qNOrWm/Jr08M1vlp+vTHtnSQ0Uw==", + "dependencies": { + "@radix-ui/primitive": "1.1.0", + "@radix-ui/react-compose-refs": "1.1.0", + "@radix-ui/react-context": "1.1.1", + "@radix-ui/react-dismissable-layer": "1.1.1", + "@radix-ui/react-id": "1.1.0", + "@radix-ui/react-popper": "1.2.0", + "@radix-ui/react-portal": "1.1.2", + "@radix-ui/react-presence": "1.1.1", + "@radix-ui/react-primitive": "2.0.0", + "@radix-ui/react-slot": "1.1.0", + "@radix-ui/react-use-controllable-state": "1.1.0", + "@radix-ui/react-visually-hidden": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.1.0.tgz", + "integrity": "sha512-CasTfvsy+frcFkbXtSJ2Zu9JHpN8TYKxkgJGWbjiZhFivxaeW7rMeZt7QELGVLaYVfFMsKHjb7Ak0nMEe+2Vfw==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.1.0.tgz", + "integrity": "sha512-MtfMVJiSr2NjzS0Aa90NPTnvTSg6C/JLCV7ma0W6+OMV78vd8OyRpID+Ng9LxzsPbLeuBnWBA1Nq30AtBIDChw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-callback-ref": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.1.0.tgz", + "integrity": "sha512-L7vwWlR1kTTQ3oh7g1O0CBF3YCyyTj8NmhLR+phShpyA50HCfBFKVJTpshm9PzLiKmehsrQzTYTpX9HvmC9rhw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-callback-ref": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.1.0.tgz", + "integrity": "sha512-+FPE0rOdziWSrH9athwI1R0HDVbWlEhd+FR+aSDk4uWGmSJ9Z54sdZVDQPZAinJhJXwfT+qnj969mCsT2gfm5w==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-previous": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.1.0.tgz", + "integrity": "sha512-Z/e78qg2YFnnXcW88A4JmTtm4ADckLno6F7OXotmkQfeuCVaKuYzqAATPhVzl3delXE7CxIV8shofPn3jPc5Og==", + "license": "MIT", + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-rect": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.1.0.tgz", + "integrity": "sha512-0Fmkebhr6PiseyZlYAOtLS+nb7jLmpqTrJyv61Pe68MKYW6OWdRE2kI70TaYY27u7H0lajqM3hSMMLFq18Z7nQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/rect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-use-size": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.1.0.tgz", + "integrity": "sha512-XW3/vWuIXHa+2Uwcc2ABSfcCledmXhhQPlGbfcRXbiUQI5Icjcg19BGCZVKKInYbvUCut/ufbbLLPFC5cbb1hw==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-use-layout-effect": "1.1.0" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-visually-hidden": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.1.0.tgz", + "integrity": "sha512-N8MDZqtgCgG5S3aV60INAB475osJousYpZ4cTJ2cFbMpdHS5Y6loLTH8LPtkj2QN0x93J30HT/M3qJXM0+lyeQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-primitive": "2.0.0" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc", + "react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/rect": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.1.0.tgz", + "integrity": "sha512-A9+lCBZoaMJlVKcRBz2YByCG+Cp2t6nAnMnNba+XiWxnj6r4JUFqfsgwocMBZU9LPtdxC6wB56ySYpc7LQIoJg==", + "license": "MIT" + }, + "node_modules/@remix-run/router": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/@remix-run/router/-/router-1.20.0.tgz", + "integrity": "sha512-mUnk8rPJBI9loFDZ+YzPGdeniYK+FTmRD1TMCz7ev2SNIozyKKpnGgsxO34u6Z4z/t0ITuu7voi/AshfsGsgFg==", + "license": "MIT", + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.24.0.tgz", + "integrity": "sha512-Q6HJd7Y6xdB48x8ZNVDOqsbh2uByBhgK8PiQgPhwkIw/HC/YX5Ghq2mQY5sRMZWHb3VsFkWooUVOZHKr7DmDIA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.24.0.tgz", + "integrity": "sha512-ijLnS1qFId8xhKjT81uBHuuJp2lU4x2yxa4ctFPtG+MqEE6+C5f/+X/bStmxapgmwLwiL3ih122xv8kVARNAZA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.24.0.tgz", + "integrity": "sha512-bIv+X9xeSs1XCk6DVvkO+S/z8/2AMt/2lMqdQbMrmVpgFvXlmde9mLcbQpztXm1tajC3raFDqegsH18HQPMYtA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.24.0.tgz", + "integrity": "sha512-X6/nOwoFN7RT2svEQWUsW/5C/fYMBe4fnLK9DQk4SX4mgVBiTA9h64kjUYPvGQ0F/9xwJ5U5UfTbl6BEjaQdBQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.24.0.tgz", + "integrity": "sha512-0KXvIJQMOImLCVCz9uvvdPgfyWo93aHHp8ui3FrtOP57svqrF/roSSR5pjqL2hcMp0ljeGlU4q9o/rQaAQ3AYA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.24.0.tgz", + "integrity": "sha512-it2BW6kKFVh8xk/BnHfakEeoLPv8STIISekpoF+nBgWM4d55CZKc7T4Dx1pEbTnYm/xEKMgy1MNtYuoA8RFIWw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.24.0.tgz", + "integrity": "sha512-i0xTLXjqap2eRfulFVlSnM5dEbTVque/3Pi4g2y7cxrs7+a9De42z4XxKLYJ7+OhE3IgxvfQM7vQc43bwTgPwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.24.0.tgz", + "integrity": "sha512-9E6MKUJhDuDh604Qco5yP/3qn3y7SLXYuiC0Rpr89aMScS2UAmK1wHP2b7KAa1nSjWJc/f/Lc0Wl1L47qjiyQw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.24.0.tgz", + "integrity": "sha512-2XFFPJ2XMEiF5Zi2EBf4h73oR1V/lycirxZxHZNc93SqDN/IWhYYSYj8I9381ikUFXZrz2v7r2tOVk2NBwxrWw==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.24.0.tgz", + "integrity": "sha512-M3Dg4hlwuntUCdzU7KjYqbbd+BLq3JMAOhCKdBE3TcMGMZbKkDdJ5ivNdehOssMCIokNHFOsv7DO4rlEOfyKpg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.24.0.tgz", + "integrity": "sha512-mjBaoo4ocxJppTorZVKWFpy1bfFj9FeCMJqzlMQGjpNPY9JwQi7OuS1axzNIk0nMX6jSgy6ZURDZ2w0QW6D56g==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.24.0.tgz", + "integrity": "sha512-ZXFk7M72R0YYFN5q13niV0B7G8/5dcQ9JDp8keJSfr3GoZeXEoMHP/HlvqROA3OMbMdfr19IjCeNAnPUG93b6A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.24.0.tgz", + "integrity": "sha512-w1i+L7kAXZNdYl+vFvzSZy8Y1arS7vMgIy8wusXJzRrPyof5LAb02KGr1PD2EkRcl73kHulIID0M501lN+vobQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.24.0.tgz", + "integrity": "sha512-VXBrnPWgBpVDCVY6XF3LEW0pOU51KbaHhccHw6AS6vBWIC60eqsH19DAeeObl+g8nKAz04QFdl/Cefta0xQtUQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.24.0.tgz", + "integrity": "sha512-xrNcGDU0OxVcPTH/8n/ShH4UevZxKIO6HJFK0e15XItZP2UcaiLFd5kiX7hJnqCbSztUF8Qot+JWBC/QXRPYWQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.24.0.tgz", + "integrity": "sha512-fbMkAF7fufku0N2dE5TBXcNlg0pt0cJue4xBRE2Qc5Vqikxr4VCgKj/ht6SMdFcOacVA9rqF70APJ8RN/4vMJw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@swc/core": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.7.39.tgz", + "integrity": "sha512-jns6VFeOT49uoTKLWIEfiQqJAlyqldNAt80kAr8f7a5YjX0zgnG3RBiLMpksx4Ka4SlK4O6TJ/lumIM3Trp82g==", + "dev": true, + "hasInstallScript": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3", + "@swc/types": "^0.1.13" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.7.39", + "@swc/core-darwin-x64": "1.7.39", + "@swc/core-linux-arm-gnueabihf": "1.7.39", + "@swc/core-linux-arm64-gnu": "1.7.39", + "@swc/core-linux-arm64-musl": "1.7.39", + "@swc/core-linux-x64-gnu": "1.7.39", + "@swc/core-linux-x64-musl": "1.7.39", + "@swc/core-win32-arm64-msvc": "1.7.39", + "@swc/core-win32-ia32-msvc": "1.7.39", + "@swc/core-win32-x64-msvc": "1.7.39" + }, + "peerDependencies": { + "@swc/helpers": "*" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } + } + }, + "node_modules/@swc/core-darwin-arm64": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.7.39.tgz", + "integrity": "sha512-o2nbEL6scMBMCTvY9OnbyVXtepLuNbdblV9oNJEFia5v5eGj9WMrnRQiylH3Wp/G2NYkW7V1/ZVW+kfvIeYe9A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-darwin-x64": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.7.39.tgz", + "integrity": "sha512-qMlv3XPgtPi/Fe11VhiPDHSLiYYk2dFYl747oGsHZPq+6tIdDQjIhijXPcsUHIXYDyG7lNpODPL8cP/X1sc9MA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.7.39.tgz", + "integrity": "sha512-NP+JIkBs1ZKnpa3Lk2W1kBJMwHfNOxCUJXuTa2ckjFsuZ8OUu2gwdeLFkTHbR43dxGwH5UzSmuGocXeMowra/Q==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "Apache-2.0", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.7.39.tgz", + "integrity": "sha512-cPc+/HehyHyHcvAsk3ML/9wYcpWVIWax3YBaA+ScecJpSE04l/oBHPfdqKUPslqZ+Gcw0OWnIBGJT/fBZW2ayw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.7.39.tgz", + "integrity": "sha512-8RxgBC6ubFem66bk9XJ0vclu3exJ6eD7x7CwDhp5AD/tulZslTYXM7oNPjEtje3xxabXuj/bEUMNvHZhQRFdqA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.7.39.tgz", + "integrity": "sha512-3gtCPEJuXLQEolo9xsXtuPDocmXQx12vewEyFFSMSjOfakuPOBmOQMa0sVL8Wwius8C1eZVeD1fgk0omMqeC+Q==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.7.39.tgz", + "integrity": "sha512-mg39pW5x/eqqpZDdtjZJxrUvQNSvJF4O8wCl37fbuFUqOtXs4TxsjZ0aolt876HXxxhsQl7rS+N4KioEMSgTZw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.7.39.tgz", + "integrity": "sha512-NZwuS0mNJowH3e9bMttr7B1fB8bW5svW/yyySigv9qmV5VcQRNz1kMlCvrCLYRsa93JnARuiaBI6FazSeG8mpA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.7.39.tgz", + "integrity": "sha512-qFmvv5UExbJPXhhvCVDBnjK5Duqxr048dlVB6ZCgGzbRxuarOlawCzzLK4N172230pzlAWGLgn9CWl3+N6zfHA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.7.39", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.7.39.tgz", + "integrity": "sha512-o+5IMqgOtj9+BEOp16atTfBgCogVak9svhBpwsbcJQp67bQbxGYhAPPDW/hZ2rpSSF7UdzbY9wudoX9G4trcuQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "Apache-2.0 AND MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" + } + }, + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "dev": true, + "license": "Apache-2.0" + }, + "node_modules/@swc/types": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.13.tgz", + "integrity": "sha512-JL7eeCk6zWCbiYQg2xQSdLXQJl8Qoc9rXmG2cEKvHe3CKwMHwHGpfOb8frzNLmbycOo6I51qxnLnn9ESf4I20Q==", + "dev": true, + "license": "Apache-2.0", + "dependencies": { + "@swc/counter": "^0.1.3" + } + }, + "node_modules/@tailwindcss/typography": { + "version": "0.5.15", + "resolved": "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.15.tgz", + "integrity": "sha512-AqhlCXl+8grUz8uqExv5OTtgpjuVIwFTSXTrh8y9/pw6q2ek7fJ+Y8ZEVw7EB2DCcuCOtEjf9w3+J3rzts01uA==", + "dev": true, + "dependencies": { + "lodash.castarray": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.merge": "^4.6.2", + "postcss-selector-parser": "6.0.10" + }, + "peerDependencies": { + "tailwindcss": ">=3.0.0 || insiders || >=4.0.0-alpha.20" + } + }, + "node_modules/@tailwindcss/typography/node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@tanstack/query-core": { + "version": "5.59.16", + "resolved": "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.59.16.tgz", + "integrity": "sha512-crHn+G3ltqb5JG0oUv6q+PMz1m1YkjpASrXTU+sYWW9pLk0t2GybUHNRqYPZWhxgjPaVGC4yp92gSFEJgYEsPw==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + } + }, + "node_modules/@tanstack/react-query": { + "version": "5.59.16", + "resolved": "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.59.16.tgz", + "integrity": "sha512-MuyWheG47h6ERd4PKQ6V8gDyBu3ThNG22e1fRVwvq6ap3EqsFhyuxCAwhNP/03m/mLg+DAb0upgbPaX6VB+CkQ==", + "license": "MIT", + "dependencies": { + "@tanstack/query-core": "5.59.16" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/tannerlinsley" + }, + "peerDependencies": { + "react": "^18 || ^19" + } + }, + "node_modules/@types/d3-array": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/d3-array/-/d3-array-3.2.1.tgz", + "integrity": "sha512-Y2Jn2idRrLzUfAKV2LyRImR+y4oa2AntrgID95SHJxuMUrkNXmanDSed71sRNZysveJVt1hLLemQZIady0FpEg==", + "license": "MIT" + }, + "node_modules/@types/d3-color": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/@types/d3-color/-/d3-color-3.1.3.tgz", + "integrity": "sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==", + "license": "MIT" + }, + "node_modules/@types/d3-ease": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-ease/-/d3-ease-3.0.2.tgz", + "integrity": "sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==", + "license": "MIT" + }, + "node_modules/@types/d3-interpolate": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/d3-interpolate/-/d3-interpolate-3.0.4.tgz", + "integrity": "sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==", + "license": "MIT", + "dependencies": { + "@types/d3-color": "*" + } + }, + "node_modules/@types/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@types/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-P2dlU/q51fkOc/Gfl3Ul9kicV7l+ra934qBFXCFhrZMOL6du1TM0pm1ThYvENukyOn5h9v+yMJ9Fn5JK4QozrQ==", + "license": "MIT" + }, + "node_modules/@types/d3-scale": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@types/d3-scale/-/d3-scale-4.0.8.tgz", + "integrity": "sha512-gkK1VVTr5iNiYJ7vWDI+yUFFlszhNMtVeneJ6lUTKPjprsvLLI9/tgEGiXJOnlINJA8FyA88gfnQsHbybVZrYQ==", + "license": "MIT", + "dependencies": { + "@types/d3-time": "*" + } + }, + "node_modules/@types/d3-shape": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/@types/d3-shape/-/d3-shape-3.1.6.tgz", + "integrity": "sha512-5KKk5aKGu2I+O6SONMYSNflgiP0WfZIQvVUMan50wHsLG1G94JlxEVnCpQARfTtzytuY0p/9PXXZb3I7giofIA==", + "license": "MIT", + "dependencies": { + "@types/d3-path": "*" + } + }, + "node_modules/@types/d3-time": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/d3-time/-/d3-time-3.0.3.tgz", + "integrity": "sha512-2p6olUZ4w3s+07q3Tm2dbiMZy5pCDfYwtLXXHUnVzXgQlZ/OyPtUz6OL382BkOuGlLXqfT+wqv8Fw2v8/0geBw==", + "license": "MIT" + }, + "node_modules/@types/d3-timer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/d3-timer/-/d3-timer-3.0.2.tgz", + "integrity": "sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==", + "license": "MIT" + }, + "node_modules/@types/estree": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", + "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true, + "license": "MIT" + }, + "node_modules/@types/node": { + "version": "22.7.9", + "resolved": "https://registry.npmjs.org/@types/node/-/node-22.7.9.tgz", + "integrity": "sha512-jrTfRC7FM6nChvU7X2KqcrgquofrWLFDeYC1hKfwNWomVvrn7JIksqf344WN2X/y8xrgqBd2dJATZV4GbatBfg==", + "dev": true, + "license": "MIT", + "dependencies": { + "undici-types": "~6.19.2" + } + }, + "node_modules/@types/prop-types": { + "version": "15.7.13", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.13.tgz", + "integrity": "sha512-hCZTSvwbzWGvhqxp/RqVqwU999pBf2vp7hzIjiYOsl8wqOmUxkQ6ddw1cV3l8811+kdUFus/q4d1Y3E3SyEifA==", + "devOptional": true, + "license": "MIT" + }, + "node_modules/@types/react": { + "version": "18.3.12", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.3.12.tgz", + "integrity": "sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/prop-types": "*", + "csstype": "^3.0.2" + } + }, + "node_modules/@types/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==", + "devOptional": true, + "license": "MIT", + "dependencies": { + "@types/react": "*" + } + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.11.0.tgz", + "integrity": "sha512-KhGn2LjW1PJT2A/GfDpiyOfS4a8xHQv2myUagTM5+zsormOmBlYsnQ6pobJ8XxJmh6hnHwa2Mbe3fPrDJoDhbA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/regexpp": "^4.10.0", + "@typescript-eslint/scope-manager": "8.11.0", + "@typescript-eslint/type-utils": "8.11.0", + "@typescript-eslint/utils": "8.11.0", + "@typescript-eslint/visitor-keys": "8.11.0", + "graphemer": "^1.4.0", + "ignore": "^5.3.1", + "natural-compare": "^1.4.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^8.0.0 || ^8.0.0-alpha.0", + "eslint": "^8.57.0 || ^9.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/parser": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-8.11.0.tgz", + "integrity": "sha512-lmt73NeHdy1Q/2ul295Qy3uninSqi6wQI18XwSpm8w0ZbQXUpjCAWP1Vlv/obudoBiIjJVjlztjQ+d/Md98Yxg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/scope-manager": "8.11.0", + "@typescript-eslint/types": "8.11.0", + "@typescript-eslint/typescript-estree": "8.11.0", + "@typescript-eslint/visitor-keys": "8.11.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-8.11.0.tgz", + "integrity": "sha512-Uholz7tWhXmA4r6epo+vaeV7yjdKy5QFCERMjs1kMVsLRKIrSdM6o21W2He9ftp5PP6aWOVpD5zvrvuHZC0bMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.11.0", + "@typescript-eslint/visitor-keys": "8.11.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-8.11.0.tgz", + "integrity": "sha512-ItiMfJS6pQU0NIKAaybBKkuVzo6IdnAhPFZA/2Mba/uBjuPQPet/8+zh5GtLHwmuFRShZx+8lhIs7/QeDHflOg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/typescript-estree": "8.11.0", + "@typescript-eslint/utils": "8.11.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.11.0.tgz", + "integrity": "sha512-tn6sNMHf6EBAYMvmPUaKaVeYvhUsrE6x+bXQTxjQRp360h1giATU0WvgeEys1spbvb5R+VpNOZ+XJmjD8wOUHw==", + "dev": true, + "license": "MIT", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-8.11.0.tgz", + "integrity": "sha512-yHC3s1z1RCHoCz5t06gf7jH24rr3vns08XXhfEqzYpd6Hll3z/3g23JRi0jM8A47UFKNc3u/y5KIMx8Ynbjohg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "@typescript-eslint/types": "8.11.0", + "@typescript-eslint/visitor-keys": "8.11.0", + "debug": "^4.3.4", + "fast-glob": "^3.3.2", + "is-glob": "^4.0.3", + "minimatch": "^9.0.4", + "semver": "^7.6.0", + "ts-api-utils": "^1.3.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@typescript-eslint/utils": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.11.0.tgz", + "integrity": "sha512-CYiX6WZcbXNJV7UNB4PLDIBtSdRmRI/nb0FMyqHPTQD1rMjA0foPLaPUV39C/MxkTd/QKSeX+Gb34PPsDVC35g==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@typescript-eslint/scope-manager": "8.11.0", + "@typescript-eslint/types": "8.11.0", + "@typescript-eslint/typescript-estree": "8.11.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.57.0 || ^9.0.0" + } + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-8.11.0.tgz", + "integrity": "sha512-EaewX6lxSjRJnc+99+dqzTeoDZUfyrA52d2/HRrkI830kgovWsmIiTfmr0NZorzqic7ga+1bS60lRBUgR3n/Bw==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/types": "8.11.0", + "eslint-visitor-keys": "^3.4.3" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/visitor-keys/node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@vitejs/plugin-react-swc": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-react-swc/-/plugin-react-swc-3.7.1.tgz", + "integrity": "sha512-vgWOY0i1EROUK0Ctg1hwhtC3SdcDjZcdit4Ups4aPkDcB1jYhmo+RMYWY87cmXMhvtD5uf8lV89j2w16vkdSVg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@swc/core": "^1.7.26" + }, + "peerDependencies": { + "vite": "^4 || ^5" + } + }, + "node_modules/acorn": { + "version": "8.13.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.13.0.tgz", + "integrity": "sha512-8zSiw54Oxrdym50NlZ9sUusyO1Z1ZchgRLWRaK6c86XJFClyCgFKetdowBg5bKxyp/u+CDBJG4Mpp0m3HLZl9w==", + "dev": true, + "license": "MIT", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "license": "MIT", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", + "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "license": "MIT", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/any-promise": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", + "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", + "license": "MIT" + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "license": "ISC", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", + "license": "MIT" + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true, + "license": "Python-2.0" + }, + "node_modules/aria-hidden": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", + "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.20", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", + "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "browserslist": "^4.23.3", + "caniuse-lite": "^1.0.30001646", + "fraction.js": "^4.3.7", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.1", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "license": "MIT" + }, + "node_modules/binary-extensions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", + "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", + "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", + "license": "MIT", + "dependencies": { + "fill-range": "^7.1.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.24.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.2.tgz", + "integrity": "sha512-ZIc+Q62revdMcqC6aChtW4jz3My3klmCO1fEmINZY/8J3EpBg5/A/D0AKmBveUh6pgoeycoMkVMko84tuYS+Gg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "caniuse-lite": "^1.0.30001669", + "electron-to-chromium": "^1.5.41", + "node-releases": "^2.0.18", + "update-browserslist-db": "^1.1.1" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-css": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", + "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001669", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001669.tgz", + "integrity": "sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "CC-BY-4.0" + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", + "license": "MIT", + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/class-variance-authority": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/class-variance-authority/-/class-variance-authority-0.7.1.tgz", + "integrity": "sha512-Ka+9Trutv7G8M6WT6SeiRWz792K5qEqIGEGzXKhAE6xOWAY6pPH8U+9IY3oCMv6kqTmLsv7Xh/2w2RigkePMsg==", + "dependencies": { + "clsx": "^2.1.1" + }, + "funding": { + "url": "https://polar.sh/cva" + } + }, + "node_modules/clsx": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", + "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/cmdk": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cmdk/-/cmdk-1.0.0.tgz", + "integrity": "sha512-gDzVf0a09TvoJ5jnuPvygTB77+XdOSwEmJ88L6XPFPlv7T3RxbP9jgenfylrAMD0+Le1aO0nVjQUzl2g+vjz5Q==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-dialog": "1.0.5", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/cmdk/node_modules/@radix-ui/primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", + "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-context": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", + "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-dialog": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.5.tgz", + "integrity": "sha512-GjWJX/AUpB703eEBanuBnIWdIXg6NvJFCXcNlSZk4xdszCdhrJgBoUd1cGk67vFO+WdA2pfI/plOpqz/5GUP6Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.5", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.4", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-portal": "1.0.4", + "@radix-ui/react-presence": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-controllable-state": "1.0.1", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-dismissable-layer": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.5.tgz", + "integrity": "sha512-aJeDjQhywg9LBu2t/At58hCvr7pEm0o2Ke1x33B+MhjNmmZ17sy4KImo0KPLgsnc/zN7GPdce8Cnn0SWvwZO7g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-escape-keydown": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-focus-guards": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz", + "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-focus-scope": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.4.tgz", + "integrity": "sha512-sL04Mgvf+FmyvZeYfNu1EPAaaxD+aw7cYeIB9L9Fvq8+urhltTRaEo5ysKOpHuKPclsZcSUMKlN05x4u+CINpA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-id": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", + "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-portal": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.4.tgz", + "integrity": "sha512-Qki+C/EuGUVCQTOTD5vzJzJuMUlewbzuKyUy+/iHM2uwGiru9gZeBJtHAPKAEkB5KWGi9mP/CHKcY0wt1aW45Q==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-presence": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-presence/-/react-presence-1.0.1.tgz", + "integrity": "sha512-UXLW4UAbIY5ZjcvzjfRFo5gxva8QirC9hF7wRE4U5gz+TP0DbRk+//qyuAQ1McDxBt1xNMBTaciFGvEmJvAZCg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-primitive": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", + "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-slot": "1.0.2" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", + "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", + "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", + "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", + "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/cmdk/node_modules/react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", + "license": "MIT", + "dependencies": { + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "license": "MIT", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "license": "MIT" + }, + "node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true, + "license": "MIT" + }, + "node_modules/cross-spawn": { + "version": "7.0.6", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", + "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "license": "MIT", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==", + "license": "MIT" + }, + "node_modules/d3-array": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-3.2.4.tgz", + "integrity": "sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==", + "license": "ISC", + "dependencies": { + "internmap": "1 - 2" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-color": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-3.1.0.tgz", + "integrity": "sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-ease": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-ease/-/d3-ease-3.0.1.tgz", + "integrity": "sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-format": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-3.1.0.tgz", + "integrity": "sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-interpolate": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-3.0.1.tgz", + "integrity": "sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==", + "license": "ISC", + "dependencies": { + "d3-color": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-3.1.0.tgz", + "integrity": "sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-scale": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-4.0.2.tgz", + "integrity": "sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==", + "license": "ISC", + "dependencies": { + "d3-array": "2.10.0 - 3", + "d3-format": "1 - 3", + "d3-interpolate": "1.2.0 - 3", + "d3-time": "2.1.1 - 3", + "d3-time-format": "2 - 4" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-shape": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-3.2.0.tgz", + "integrity": "sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==", + "license": "ISC", + "dependencies": { + "d3-path": "^3.1.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-3.1.0.tgz", + "integrity": "sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==", + "license": "ISC", + "dependencies": { + "d3-array": "2 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-time-format": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-4.1.0.tgz", + "integrity": "sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==", + "license": "ISC", + "dependencies": { + "d3-time": "1 - 3" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/d3-timer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-3.0.1.tgz", + "integrity": "sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/date-fns": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.6.0.tgz", + "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/kossnocorp" + } + }, + "node_modules/debug": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz", + "integrity": "sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decimal.js-light": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/decimal.js-light/-/decimal.js-light-2.5.1.tgz", + "integrity": "sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==", + "license": "MIT" + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", + "license": "MIT" + }, + "node_modules/didyoumean": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", + "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", + "license": "Apache-2.0" + }, + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", + "license": "MIT" + }, + "node_modules/dom-helpers": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/dom-helpers/-/dom-helpers-5.2.1.tgz", + "integrity": "sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==", + "license": "MIT", + "dependencies": { + "@babel/runtime": "^7.8.7", + "csstype": "^3.0.2" + } + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "license": "MIT" + }, + "node_modules/electron-to-chromium": { + "version": "1.5.45", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.45.tgz", + "integrity": "sha512-vOzZS6uZwhhbkZbcRyiy99Wg+pYFV5hk+5YaECvx0+Z31NR3Tt5zS6dze2OepT6PCTzVzT0dIJItti+uAW5zmw==", + "dev": true, + "license": "ISC" + }, + "node_modules/embla-carousel": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/embla-carousel/-/embla-carousel-8.3.0.tgz", + "integrity": "sha512-Ve8dhI4w28qBqR8J+aMtv7rLK89r1ZA5HocwFz6uMB/i5EiC7bGI7y+AM80yAVUJw3qqaZYK7clmZMUR8kM3UA==", + "license": "MIT" + }, + "node_modules/embla-carousel-react": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/embla-carousel-react/-/embla-carousel-react-8.3.0.tgz", + "integrity": "sha512-P1FlinFDcIvggcErRjNuVqnUR8anyo8vLMIH8Rthgofw7Nj8qTguCa2QjFAbzxAUTQTPNNjNL7yt0BGGinVdFw==", + "license": "MIT", + "dependencies": { + "embla-carousel": "8.3.0", + "embla-carousel-reactive-utils": "8.3.0" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.1 || ^18.0.0" + } + }, + "node_modules/embla-carousel-reactive-utils": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/embla-carousel-reactive-utils/-/embla-carousel-reactive-utils-8.3.0.tgz", + "integrity": "sha512-EYdhhJ302SC4Lmkx8GRsp0sjUhEN4WyFXPOk0kGu9OXZSRMmcBlRgTvHcq8eKJE1bXWBsOi1T83B+BSSVZSmwQ==", + "license": "MIT", + "peerDependencies": { + "embla-carousel": "8.3.0" + } + }, + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "license": "MIT" + }, + "node_modules/esbuild": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz", + "integrity": "sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.21.5", + "@esbuild/android-arm": "0.21.5", + "@esbuild/android-arm64": "0.21.5", + "@esbuild/android-x64": "0.21.5", + "@esbuild/darwin-arm64": "0.21.5", + "@esbuild/darwin-x64": "0.21.5", + "@esbuild/freebsd-arm64": "0.21.5", + "@esbuild/freebsd-x64": "0.21.5", + "@esbuild/linux-arm": "0.21.5", + "@esbuild/linux-arm64": "0.21.5", + "@esbuild/linux-ia32": "0.21.5", + "@esbuild/linux-loong64": "0.21.5", + "@esbuild/linux-mips64el": "0.21.5", + "@esbuild/linux-ppc64": "0.21.5", + "@esbuild/linux-riscv64": "0.21.5", + "@esbuild/linux-s390x": "0.21.5", + "@esbuild/linux-x64": "0.21.5", + "@esbuild/netbsd-x64": "0.21.5", + "@esbuild/openbsd-x64": "0.21.5", + "@esbuild/sunos-x64": "0.21.5", + "@esbuild/win32-arm64": "0.21.5", + "@esbuild/win32-ia32": "0.21.5", + "@esbuild/win32-x64": "0.21.5" + } + }, + "node_modules/escalade": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", + "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "9.13.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-9.13.0.tgz", + "integrity": "sha512-EYZK6SX6zjFHST/HRytOdA/zE72Cq/bfw45LSyuwrdvcclb/gqV8RRQxywOBEWO2+WDpva6UZa4CcDeJKzUCFA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.11.0", + "@eslint/config-array": "^0.18.0", + "@eslint/core": "^0.7.0", + "@eslint/eslintrc": "^3.1.0", + "@eslint/js": "9.13.0", + "@eslint/plugin-kit": "^0.2.0", + "@humanfs/node": "^0.16.5", + "@humanwhocodes/module-importer": "^1.0.1", + "@humanwhocodes/retry": "^0.3.1", + "@types/estree": "^1.0.6", + "@types/json-schema": "^7.0.15", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^8.1.0", + "eslint-visitor-keys": "^4.1.0", + "espree": "^10.2.0", + "esquery": "^1.5.0", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^8.0.0", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://eslint.org/donate" + }, + "peerDependencies": { + "jiti": "*" + }, + "peerDependenciesMeta": { + "jiti": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "5.1.0-rc-fb9a90fa48-20240614", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0-rc-fb9a90fa48-20240614.tgz", + "integrity": "sha512-xsiRwaDNF5wWNC4ZHLut+x/YcAxksUd9Rizt7LaEn3bV8VyYRpXnRJQlLOfYaVy9esk4DFP4zPPnoNVjq5Gc0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 || ^9.0.0" + } + }, + "node_modules/eslint-plugin-react-refresh": { + "version": "0.4.14", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-refresh/-/eslint-plugin-react-refresh-0.4.14.tgz", + "integrity": "sha512-aXvzCTK7ZBv1e7fahFuR3Z/fyQQSIQ711yPgYRj+Oj64tyTgO4iQIDmYXDBqvSWQ/FA4OSCsXOStlF+noU0/NA==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "eslint": ">=7" + } + }, + "node_modules/eslint-scope": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-8.1.0.tgz", + "integrity": "sha512-14dSvlhaVhKKsa9Fx1l8A17s7ah7Ef7wCakJ10LYk6+GYmP9yDti2oq2SEwcyndt6knfcZyhyxwY3i9yL78EQw==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-4.1.0.tgz", + "integrity": "sha512-Q7lok0mqMUSf5a/AdAZkA5a/gHcO6snwQClVNNvFKCAVlxXucdU8pKydU5ZVZjBx5xr37vGbFFWtLQYreLzrZg==", + "dev": true, + "license": "Apache-2.0", + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-10.2.0.tgz", + "integrity": "sha512-upbkBJbckcCNBDBDXEbuhjbP68n+scUd3k/U2EkyM9nw+I/jPiL4cLF/Al06CF96wRltFda16sxDFrxsI1v0/g==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "acorn": "^8.12.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^4.1.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", + "dev": true, + "license": "BSD-3-Clause", + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "license": "BSD-2-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", + "license": "MIT" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-equals": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/fast-equals/-/fast-equals-5.0.1.tgz", + "integrity": "sha512-WF1Wi8PwwSY7/6Kx0vKXtw8RwuSGoM1bvDaJbu7MxDlR1vovZjIAKrnzyrThgAjm6JDTu0fVgWXDlMGspodfoQ==", + "license": "MIT", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "license": "MIT", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true, + "license": "MIT" + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "license": "ISC", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-8.0.0.tgz", + "integrity": "sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "flat-cache": "^4.0.0" + }, + "engines": { + "node": ">=16.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", + "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", + "license": "MIT", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "license": "MIT", + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-4.0.1.tgz", + "integrity": "sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==", + "dev": true, + "license": "MIT", + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.4" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true, + "license": "ISC" + }, + "node_modules/foreground-child": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", + "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", + "license": "ISC", + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, + "license": "MIT", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/glob": { + "version": "10.4.5", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", + "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", + "license": "ISC", + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^3.1.2", + "minimatch": "^9.0.4", + "minipass": "^7.1.2", + "package-json-from-dist": "^1.0.0", + "path-scurry": "^1.11.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "license": "ISC", + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/glob/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/glob/node_modules/minimatch": { + "version": "9.0.5", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", + "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", + "license": "ISC", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globals": { + "version": "15.11.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-15.11.0.tgz", + "integrity": "sha512-yeyNSjdbyVaWurlwCpcA6XNBrHTMIeDdj0/hnvX/OLJ9ekOXYbLsLinH/MucQyGvNnXhidTdNhTtJaffL2sMfw==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true, + "license": "MIT" + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ignore": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "license": "MIT", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/input-otp": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/input-otp/-/input-otp-1.2.4.tgz", + "integrity": "sha512-md6rhmD+zmMnUh5crQNSQxq3keBRYvE3odbr4Qb9g2NWzQv9azi+t1a3X4TBTbh98fsGHgEEJlzbe1q860uGCA==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/internmap": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/internmap/-/internmap-2.0.3.tgz", + "integrity": "sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==", + "license": "ISC", + "engines": { + "node": ">=12" + } + }, + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.0.0" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "license": "MIT", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-core-module": { + "version": "2.15.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.15.1.tgz", + "integrity": "sha512-z0vtXSwucUJtANQWldhbtbt7BnL0vxiFjIdDLAatwhDYty2bad6s+rijD6Ri4YuYJubLzIJLUidCh09e1djEVQ==", + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "license": "MIT", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "license": "MIT", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "license": "ISC" + }, + "node_modules/jackspeak": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", + "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", + "license": "BlueOak-1.0.0", + "dependencies": { + "@isaacs/cliui": "^8.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" + } + }, + "node_modules/jiti": { + "version": "1.21.6", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.6.tgz", + "integrity": "sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==", + "license": "MIT", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "license": "MIT" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "license": "MIT", + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true, + "license": "MIT" + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true, + "license": "MIT" + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "license": "MIT", + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", + "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", + "license": "MIT", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antonk52" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "license": "MIT" + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "license": "MIT" + }, + "node_modules/lodash.castarray": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.castarray/-/lodash.castarray-4.4.0.tgz", + "integrity": "sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==", + "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true, + "license": "MIT" + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "license": "MIT", + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "10.4.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", + "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", + "license": "ISC" + }, + "node_modules/lucide-react": { + "version": "0.462.0", + "resolved": "https://registry.npmjs.org/lucide-react/-/lucide-react-0.462.0.tgz", + "integrity": "sha512-NTL7EbAao9IFtuSivSZgrAh4fZd09Lr+6MTkqIxuHaH2nnYiYIzXPo06cOxHg9wKLdj6LL8TByG4qpePqwgx/g==", + "peerDependencies": { + "react": "^16.5.1 || ^17.0.0 || ^18.0.0 || ^19.0.0-rc" + } + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "license": "MIT", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", + "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", + "license": "MIT", + "dependencies": { + "braces": "^3.0.3", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "license": "ISC", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minipass": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", + "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", + "license": "ISC", + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true, + "license": "MIT" + }, + "node_modules/mz": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", + "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0", + "object-assign": "^4.0.1", + "thenify-all": "^1.0.0" + } + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true, + "license": "MIT" + }, + "node_modules/next-themes": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/next-themes/-/next-themes-0.3.0.tgz", + "integrity": "sha512-/QHIrsYpd6Kfk7xakK4svpDI5mmXP0gfvCoJdGpZQ2TOrQZmsW0QxjaiLn8wbIKjtm4BTSqLoix4lxYYOnLJ/w==", + "license": "MIT", + "peerDependencies": { + "react": "^16.8 || ^17 || ^18", + "react-dom": "^16.8 || ^17 || ^18" + } + }, + "node_modules/node-releases": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.18.tgz", + "integrity": "sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g==", + "dev": true, + "license": "MIT" + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-hash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", + "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "license": "MIT", + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "license": "MIT", + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/package-json-from-dist": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", + "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", + "license": "BlueOak-1.0.0" + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "license": "MIT", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "license": "MIT" + }, + "node_modules/path-scurry": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", + "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", + "license": "BlueOak-1.0.0", + "dependencies": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.18" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/picocolors": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", + "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", + "license": "ISC" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "license": "MIT", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "license": "MIT", + "engines": { + "node": ">= 6" + } + }, + "node_modules/pocketbase": { + "version": "0.19.0", + "resolved": "https://registry.npmjs.org/pocketbase/-/pocketbase-0.19.0.tgz", + "integrity": "sha512-bUVZfVdD17K8GnwbeDMZPEdREVg2YE0F8uHPDC0zer4VtwXUqoPCCeudTy3fhUE7pfuKnfpuPxeBSYsBY3AGIQ==", + "license": "MIT" + }, + "node_modules/postcss": { + "version": "8.4.47", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.47.tgz", + "integrity": "sha512-56rxCq7G/XfB4EkXq9Egn5GCqugWvDFjafDOThIdMBsI15iqPqR5r15TfSr1YPYeEI19YeaXMCbY6u88Y76GLQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.1.0", + "source-map-js": "^1.2.1" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "license": "MIT", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-js": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", + "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", + "license": "MIT", + "dependencies": { + "camelcase-css": "^2.0.1" + }, + "engines": { + "node": "^12 || ^14 || >= 16" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.4.21" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", + "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "lilconfig": "^3.0.0", + "yaml": "^2.3.4" + }, + "engines": { + "node": ">= 14" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-nested": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", + "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "postcss-selector-parser": "^6.1.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "postcss": "^8.2.14" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.1.2", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", + "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", + "license": "MIT", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "license": "MIT" + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "license": "MIT" + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT" + }, + "node_modules/react": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", + "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-day-picker": { + "version": "8.10.1", + "resolved": "https://registry.npmjs.org/react-day-picker/-/react-day-picker-8.10.1.tgz", + "integrity": "sha512-TMx7fNbhLk15eqcMt+7Z7S2KF7mfTId/XJDjKE8f+IUcFn0l08/kI4FiYTL/0yuOLmEcbR4Fwe3GJf/NiiMnPA==", + "license": "MIT", + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/gpbl" + }, + "peerDependencies": { + "date-fns": "^2.28.0 || ^3.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-dom": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", + "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.2" + }, + "peerDependencies": { + "react": "^18.3.1" + } + }, + "node_modules/react-hook-form": { + "version": "7.53.1", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.53.1.tgz", + "integrity": "sha512-6aiQeBda4zjcuaugWvim9WsGqisoUk+etmFEsSUMm451/Ic8L/UAb7sRtMj3V+Hdzm6mMjU1VhiSzYUZeBm0Vg==", + "license": "MIT", + "engines": { + "node": ">=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17 || ^18 || ^19" + } + }, + "node_modules/react-is": { + "version": "18.3.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz", + "integrity": "sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==", + "license": "MIT" + }, + "node_modules/react-remove-scroll": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.6.0.tgz", + "integrity": "sha512-I2U4JVEsQenxDAKaVa3VZ/JeJZe0/2DxPWL8Tj8yLKctQJQiZM52pn/GWFpSp8dftjM3pSAHVJZscAnC/y+ySQ==", + "license": "MIT", + "dependencies": { + "react-remove-scroll-bar": "^2.3.6", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-remove-scroll-bar": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", + "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", + "license": "MIT", + "dependencies": { + "react-style-singleton": "^2.2.1", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-resizable-panels": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/react-resizable-panels/-/react-resizable-panels-2.1.5.tgz", + "integrity": "sha512-JMSe18rYupmx+dzYcdfWYZ93ZdxqQmLum3xWDVSUMI0UVwl9bB9gUaFmPbxYoO4G+m5sqgdXQCYQxnOysytfnw==", + "license": "MIT", + "peerDependencies": { + "react": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc", + "react-dom": "^16.14.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 || ^19.0.0-rc" + } + }, + "node_modules/react-router": { + "version": "6.27.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.27.0.tgz", + "integrity": "sha512-YA+HGZXz4jaAkVoYBE98VQl+nVzI+cVI2Oj/06F5ZM+0u3TgedN9Y9kmMRo2mnkSK2nCpNQn0DVob4HCsY/WLw==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.20.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8" + } + }, + "node_modules/react-router-dom": { + "version": "6.27.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.27.0.tgz", + "integrity": "sha512-+bvtFWMC0DgAFrfKXKG9Fc+BcXWRUO1aJIihbB79xaeq0v5UzfvnM5houGUm1Y461WVRcgAQ+Clh5rdb1eCx4g==", + "license": "MIT", + "dependencies": { + "@remix-run/router": "1.20.0", + "react-router": "6.27.0" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" + } + }, + "node_modules/react-smooth": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/react-smooth/-/react-smooth-4.0.1.tgz", + "integrity": "sha512-OE4hm7XqR0jNOq3Qmk9mFLyd6p2+j6bvbPJ7qlB7+oo0eNcL2l7WQzG6MBnT3EXY6xzkLMUBec3AfewJdA0J8w==", + "license": "MIT", + "dependencies": { + "fast-equals": "^5.0.1", + "prop-types": "^15.8.1", + "react-transition-group": "^4.4.5" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-style-singleton": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", + "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", + "license": "MIT", + "dependencies": { + "get-nonce": "^1.0.0", + "invariant": "^2.2.4", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/react-transition-group": { + "version": "4.4.5", + "resolved": "https://registry.npmjs.org/react-transition-group/-/react-transition-group-4.4.5.tgz", + "integrity": "sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==", + "license": "BSD-3-Clause", + "dependencies": { + "@babel/runtime": "^7.5.5", + "dom-helpers": "^5.0.1", + "loose-envify": "^1.4.0", + "prop-types": "^15.6.2" + }, + "peerDependencies": { + "react": ">=16.6.0", + "react-dom": ">=16.6.0" + } + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "license": "MIT", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "license": "MIT", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/recharts": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/recharts/-/recharts-2.13.0.tgz", + "integrity": "sha512-sbfxjWQ+oLWSZEWmvbq/DFVdeRLqqA6d0CDjKx2PkxVVdoXo16jvENCE+u/x7HxOO+/fwx//nYRwb8p8X6s/lQ==", + "license": "MIT", + "dependencies": { + "clsx": "^2.0.0", + "eventemitter3": "^4.0.1", + "lodash": "^4.17.21", + "react-is": "^18.3.1", + "react-smooth": "^4.0.0", + "recharts-scale": "^0.4.4", + "tiny-invariant": "^1.3.1", + "victory-vendor": "^36.6.8" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "react": "^16.0.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/recharts-scale": { + "version": "0.4.5", + "resolved": "https://registry.npmjs.org/recharts-scale/-/recharts-scale-0.4.5.tgz", + "integrity": "sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==", + "license": "MIT", + "dependencies": { + "decimal.js-light": "^2.4.1" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", + "license": "MIT" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "license": "MIT", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "license": "MIT", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rollup": { + "version": "4.24.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.24.0.tgz", + "integrity": "sha512-DOmrlGSXNk1DM0ljiQA+i+o0rSLhtii1je5wgk60j49d1jHT5YYttBv1iWOnYSTG+fZZESUOSNiAl89SIet+Cg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.6" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.24.0", + "@rollup/rollup-android-arm64": "4.24.0", + "@rollup/rollup-darwin-arm64": "4.24.0", + "@rollup/rollup-darwin-x64": "4.24.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.24.0", + "@rollup/rollup-linux-arm-musleabihf": "4.24.0", + "@rollup/rollup-linux-arm64-gnu": "4.24.0", + "@rollup/rollup-linux-arm64-musl": "4.24.0", + "@rollup/rollup-linux-powerpc64le-gnu": "4.24.0", + "@rollup/rollup-linux-riscv64-gnu": "4.24.0", + "@rollup/rollup-linux-s390x-gnu": "4.24.0", + "@rollup/rollup-linux-x64-gnu": "4.24.0", + "@rollup/rollup-linux-x64-musl": "4.24.0", + "@rollup/rollup-win32-arm64-msvc": "4.24.0", + "@rollup/rollup-win32-ia32-msvc": "4.24.0", + "@rollup/rollup-win32-x64-msvc": "4.24.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "license": "MIT", + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/scheduler": { + "version": "0.23.2", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", + "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", + "license": "MIT", + "dependencies": { + "loose-envify": "^1.1.0" + } + }, + "node_modules/semver": { + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", + "dev": true, + "license": "ISC", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "license": "MIT", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "license": "ISC", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/sonner": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/sonner/-/sonner-1.5.0.tgz", + "integrity": "sha512-FBjhG/gnnbN6FY0jaNnqZOMmB73R+5IiyYAw8yBj7L54ER7HB3fOSE5OFiQiE2iXWxeXKvg6fIP4LtVppHEdJA==", + "license": "MIT", + "peerDependencies": { + "react": "^18.0.0", + "react-dom": "^18.0.0" + } + }, + "node_modules/source-map-js": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", + "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", + "license": "BSD-3-Clause", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "license": "MIT", + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/string-width-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/sucrase": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", + "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", + "license": "MIT", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.2", + "commander": "^4.0.0", + "glob": "^10.3.10", + "lines-and-columns": "^1.1.6", + "mz": "^2.7.0", + "pirates": "^4.0.1", + "ts-interface-checker": "^0.1.9" + }, + "bin": { + "sucrase": "bin/sucrase", + "sucrase-node": "bin/sucrase-node" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tailwind-merge": { + "version": "2.5.4", + "resolved": "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.5.4.tgz", + "integrity": "sha512-0q8cfZHMu9nuYP/b5Shb7Y7Sh1B7Nnl5GqNr1U+n2p6+mybvRtayrQ+0042Z5byvTA8ihjlP8Odo8/VnHbZu4Q==", + "license": "MIT", + "funding": { + "type": "github", + "url": "https://github.com/sponsors/dcastil" + } + }, + "node_modules/tailwindcss": { + "version": "3.4.17", + "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", + "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", + "license": "MIT", + "dependencies": { + "@alloc/quick-lru": "^5.2.0", + "arg": "^5.0.2", + "chokidar": "^3.6.0", + "didyoumean": "^1.2.2", + "dlv": "^1.1.3", + "fast-glob": "^3.3.2", + "glob-parent": "^6.0.2", + "is-glob": "^4.0.3", + "jiti": "^1.21.6", + "lilconfig": "^3.1.3", + "micromatch": "^4.0.8", + "normalize-path": "^3.0.0", + "object-hash": "^3.0.0", + "picocolors": "^1.1.1", + "postcss": "^8.4.47", + "postcss-import": "^15.1.0", + "postcss-js": "^4.0.1", + "postcss-load-config": "^4.0.2", + "postcss-nested": "^6.2.0", + "postcss-selector-parser": "^6.1.2", + "resolve": "^1.22.8", + "sucrase": "^3.35.0" + }, + "bin": { + "tailwind": "lib/cli.js", + "tailwindcss": "lib/cli.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/tailwindcss-animate": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/tailwindcss-animate/-/tailwindcss-animate-1.0.7.tgz", + "integrity": "sha512-bl6mpH3T7I3UFxuvDEXLxy/VuFxBk5bbzplh7tXI68mwMokNYd1t9qPBHlnyTwfa4JGC4zP516I1hYYtQ/vspA==", + "license": "MIT", + "peerDependencies": { + "tailwindcss": ">=3.0.0 || insiders" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true, + "license": "MIT" + }, + "node_modules/thenify": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", + "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", + "license": "MIT", + "dependencies": { + "any-promise": "^1.0.0" + } + }, + "node_modules/thenify-all": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", + "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", + "license": "MIT", + "dependencies": { + "thenify": ">= 3.1.0 < 4" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "license": "MIT" + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "license": "MIT", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/ts-api-utils": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.3.0.tgz", + "integrity": "sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=16" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/ts-interface-checker": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", + "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", + "license": "Apache-2.0" + }, + "node_modules/tslib": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.0.tgz", + "integrity": "sha512-jWVzBLplnCmoaTr13V9dYbiQ99wvZRd0vNWaDRg+aVYRcjDF3nDksxFDE/+fkXnKhpnUUkmx5pK/v8mCtLVqZA==", + "license": "0BSD" + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "license": "MIT", + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/typescript": { + "version": "5.6.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.6.3.tgz", + "integrity": "sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/typescript-eslint": { + "version": "8.11.0", + "resolved": "https://registry.npmjs.org/typescript-eslint/-/typescript-eslint-8.11.0.tgz", + "integrity": "sha512-cBRGnW3FSlxaYwU8KfAewxFK5uzeOAp0l2KebIlPDOT5olVi65KDG/yjBooPBG0kGW/HLkoz1c/iuBFehcS3IA==", + "dev": true, + "license": "MIT", + "dependencies": { + "@typescript-eslint/eslint-plugin": "8.11.0", + "@typescript-eslint/parser": "8.11.0", + "@typescript-eslint/utils": "8.11.0" + }, + "engines": { + "node": "^18.18.0 || ^20.9.0 || >=21.1.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/undici-types": { + "version": "6.19.8", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.19.8.tgz", + "integrity": "sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==", + "dev": true, + "license": "MIT" + }, + "node_modules/update-browserslist-db": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.1.tgz", + "integrity": "sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "license": "MIT", + "dependencies": { + "escalade": "^3.2.0", + "picocolors": "^1.1.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "license": "BSD-2-Clause", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/use-callback-ref": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", + "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", + "license": "MIT", + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/use-sidecar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", + "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", + "license": "MIT", + "dependencies": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "license": "MIT" + }, + "node_modules/vaul": { + "version": "0.9.9", + "resolved": "https://registry.npmjs.org/vaul/-/vaul-0.9.9.tgz", + "integrity": "sha512-7afKg48srluhZwIkaU+lgGtFCUsYBSGOl8vcc8N/M3YQlZFlynHD15AE+pwrYdc826o7nrIND4lL9Y6b9WWZZQ==", + "license": "MIT", + "dependencies": { + "@radix-ui/react-dialog": "^1.1.1" + }, + "peerDependencies": { + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + } + }, + "node_modules/victory-vendor": { + "version": "36.9.2", + "resolved": "https://registry.npmjs.org/victory-vendor/-/victory-vendor-36.9.2.tgz", + "integrity": "sha512-PnpQQMuxlwYdocC8fIJqVXvkeViHYzotI+NJrCuav0ZYFoq912ZHBk3mCeuj+5/VpodOjPe1z0Fk2ihgzlXqjQ==", + "license": "MIT AND ISC", + "dependencies": { + "@types/d3-array": "^3.0.3", + "@types/d3-ease": "^3.0.0", + "@types/d3-interpolate": "^3.0.1", + "@types/d3-scale": "^4.0.2", + "@types/d3-shape": "^3.1.0", + "@types/d3-time": "^3.0.0", + "@types/d3-timer": "^3.0.0", + "d3-array": "^3.1.6", + "d3-ease": "^3.0.1", + "d3-interpolate": "^3.0.1", + "d3-scale": "^4.0.2", + "d3-shape": "^3.1.0", + "d3-time": "^3.0.0", + "d3-timer": "^3.0.1" + } + }, + "node_modules/vite": { + "version": "5.4.10", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.4.10.tgz", + "integrity": "sha512-1hvaPshuPUtxeQ0hsVH3Mud0ZanOLwVTneA1EgbAM5LhaZEqyPWGRQ7BtaMvUrTDeEaC8pxtj6a6jku3x4z6SQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "esbuild": "^0.21.3", + "postcss": "^8.4.43", + "rollup": "^4.20.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "sass-embedded": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "license": "ISC", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "license": "MIT", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "license": "MIT", + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "license": "MIT" + }, + "node_modules/wrap-ansi-cjs/node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "license": "MIT", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "license": "MIT", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/yaml": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.6.0.tgz", + "integrity": "sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==", + "license": "ISC", + "bin": { + "yaml": "bin.mjs" + }, + "engines": { + "node": ">= 14" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/zod": { + "version": "3.23.8", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.23.8.tgz", + "integrity": "sha512-XBx9AXhXktjUqnepgTiE5flcKIYWi/rme0Eaj+5Y0lftuGBq+jyRu/md4WnuxqgP1ubdpNCsYEYPxrzVHD8d6g==", + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/colinhacks" + } + } + } +} diff --git a/application/package.json b/application/package.json new file mode 100644 index 0000000..df825c9 --- /dev/null +++ b/application/package.json @@ -0,0 +1,83 @@ +{ + "name": "vite_react_shadcn_ts", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "build:dev": "vite build --mode development", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "@hookform/resolvers": "^3.9.0", + "@radix-ui/react-accordion": "^1.2.0", + "@radix-ui/react-alert-dialog": "^1.1.1", + "@radix-ui/react-aspect-ratio": "^1.1.0", + "@radix-ui/react-avatar": "^1.1.0", + "@radix-ui/react-checkbox": "^1.1.1", + "@radix-ui/react-collapsible": "^1.1.0", + "@radix-ui/react-context-menu": "^2.2.1", + "@radix-ui/react-dialog": "^1.1.2", + "@radix-ui/react-dropdown-menu": "^2.1.1", + "@radix-ui/react-hover-card": "^1.1.1", + "@radix-ui/react-label": "^2.1.0", + "@radix-ui/react-menubar": "^1.1.1", + "@radix-ui/react-navigation-menu": "^1.2.0", + "@radix-ui/react-popover": "^1.1.1", + "@radix-ui/react-progress": "^1.1.0", + "@radix-ui/react-radio-group": "^1.2.0", + "@radix-ui/react-scroll-area": "^1.1.0", + "@radix-ui/react-select": "^2.1.1", + "@radix-ui/react-separator": "^1.1.0", + "@radix-ui/react-slider": "^1.2.0", + "@radix-ui/react-slot": "^1.1.0", + "@radix-ui/react-switch": "^1.1.0", + "@radix-ui/react-tabs": "^1.1.0", + "@radix-ui/react-toast": "^1.2.1", + "@radix-ui/react-toggle": "^1.1.0", + "@radix-ui/react-toggle-group": "^1.1.0", + "@radix-ui/react-tooltip": "^1.1.4", + "@tanstack/react-query": "^5.56.2", + "class-variance-authority": "^0.7.1", + "clsx": "^2.1.1", + "cmdk": "^1.0.0", + "date-fns": "^3.6.0", + "embla-carousel-react": "^8.3.0", + "input-otp": "^1.2.4", + "lucide-react": "^0.462.0", + "next-themes": "^0.3.0", + "pocketbase": "^0.19.0", + "react": "^18.3.1", + "react-day-picker": "^8.10.1", + "react-dom": "^18.3.1", + "react-hook-form": "^7.53.0", + "react-resizable-panels": "^2.1.3", + "react-router-dom": "^6.26.2", + "recharts": "^2.12.7", + "sonner": "^1.5.0", + "tailwind-merge": "^2.5.2", + "tailwindcss-animate": "^1.0.7", + "vaul": "^0.9.3", + "zod": "^3.23.8" + }, + "devDependencies": { + "@eslint/js": "^9.9.0", + "@tailwindcss/typography": "^0.5.15", + "@types/node": "^22.5.5", + "@types/react": "^18.3.3", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react-swc": "^3.5.0", + "autoprefixer": "^10.4.20", + "eslint": "^9.9.0", + "eslint-plugin-react-hooks": "^5.1.0-rc.0", + "eslint-plugin-react-refresh": "^0.4.9", + "globals": "^15.9.0", + "postcss": "^8.4.47", + "tailwindcss": "^3.4.11", + "typescript": "^5.5.3", + "typescript-eslint": "^8.0.1", + "vite": "^5.4.1" + } +} diff --git a/application/postcss.config.js b/application/postcss.config.js new file mode 100644 index 0000000..2e7af2b --- /dev/null +++ b/application/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/application/public/favicon.ico b/application/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..7ae5c720ad60353831cd826babd2f54938ee5d72 GIT binary patch literal 46108 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 av7++uUuMnWsx~xae2S;vzUuEIF8nV7E56MD literal 0 HcmV?d00001 diff --git a/application/public/placeholder.svg b/application/public/placeholder.svg new file mode 100644 index 0000000..e763910 --- /dev/null +++ b/application/public/placeholder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/application/public/robots.txt b/application/public/robots.txt new file mode 100644 index 0000000..6018e70 --- /dev/null +++ b/application/public/robots.txt @@ -0,0 +1,14 @@ +User-agent: Googlebot +Allow: / + +User-agent: Bingbot +Allow: / + +User-agent: Twitterbot +Allow: / + +User-agent: facebookexternalhit +Allow: / + +User-agent: * +Allow: / diff --git a/application/public/upload/profile/profile1.svg b/application/public/upload/profile/profile1.svg new file mode 100644 index 0000000..aa0b9f7 --- /dev/null +++ b/application/public/upload/profile/profile1.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile2.svg b/application/public/upload/profile/profile2.svg new file mode 100644 index 0000000..f514232 --- /dev/null +++ b/application/public/upload/profile/profile2.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile3.svg b/application/public/upload/profile/profile3.svg new file mode 100644 index 0000000..37ebc61 --- /dev/null +++ b/application/public/upload/profile/profile3.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile4.svg b/application/public/upload/profile/profile4.svg new file mode 100644 index 0000000..4a475a2 --- /dev/null +++ b/application/public/upload/profile/profile4.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile5.svg b/application/public/upload/profile/profile5.svg new file mode 100644 index 0000000..5a257c8 --- /dev/null +++ b/application/public/upload/profile/profile5.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile6.svg b/application/public/upload/profile/profile6.svg new file mode 100644 index 0000000..c372ee0 --- /dev/null +++ b/application/public/upload/profile/profile6.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile7.svg b/application/public/upload/profile/profile7.svg new file mode 100644 index 0000000..4315075 --- /dev/null +++ b/application/public/upload/profile/profile7.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/public/upload/profile/profile8.svg b/application/public/upload/profile/profile8.svg new file mode 100644 index 0000000..a1a8e5e --- /dev/null +++ b/application/public/upload/profile/profile8.svg @@ -0,0 +1 @@ +Fun Emoji SetDavis Uchehttps://www.figma.com/community/file/968125295144990435https://creativecommons.org/licenses/by/4.0/Remix of β€žFun Emoji Set” (https://www.figma.com/community/file/968125295144990435) by β€žDavis Uche”, licensed under β€žCC BY 4.0” (https://creativecommons.org/licenses/by/4.0/) \ No newline at end of file diff --git a/application/src/App.css b/application/src/App.css new file mode 100644 index 0000000..b9d355d --- /dev/null +++ b/application/src/App.css @@ -0,0 +1,42 @@ +#root { + max-width: 1280px; + margin: 0 auto; + padding: 2rem; + text-align: center; +} + +.logo { + height: 6em; + padding: 1.5em; + will-change: filter; + transition: filter 300ms; +} +.logo:hover { + filter: drop-shadow(0 0 2em #646cffaa); +} +.logo.react:hover { + filter: drop-shadow(0 0 2em #61dafbaa); +} + +@keyframes logo-spin { + from { + transform: rotate(0deg); + } + to { + transform: rotate(360deg); + } +} + +@media (prefers-reduced-motion: no-preference) { + a:nth-of-type(2) .logo { + animation: logo-spin infinite 20s linear; + } +} + +.card { + padding: 2em; +} + +.read-the-docs { + color: #888; +} diff --git a/application/src/App.tsx b/application/src/App.tsx new file mode 100644 index 0000000..9375424 --- /dev/null +++ b/application/src/App.tsx @@ -0,0 +1,107 @@ + +import { Toaster } from "@/components/ui/toaster"; +import { Toaster as Sonner } from "@/components/ui/sonner"; +import { TooltipProvider } from "@/components/ui/tooltip"; +import { QueryClient, QueryClientProvider } from "@tanstack/react-query"; +import { BrowserRouter, Routes, Route, Navigate } from "react-router-dom"; +import { useEffect, useState } from "react"; +import { authService } from "@/services/authService"; +import { ThemeProvider } from "@/contexts/ThemeContext"; +import { LanguageProvider } from "@/contexts/LanguageContext"; + +import Login from "./pages/Login"; +import Dashboard from "./pages/Dashboard"; +import ServiceDetail from "./pages/ServiceDetail"; +import Settings from "./pages/Settings"; +import Profile from "./pages/Profile"; +import NotFound from "./pages/NotFound"; + +// Create a Protected route component +const ProtectedRoute = ({ children }: { children: React.ReactNode }) => { + const isAuthenticated = authService.isAuthenticated(); + + if (!isAuthenticated) { + return ; + } + + return <>{children}; +}; + +const queryClient = new QueryClient(); + +const App = () => { + const [isLoading, setIsLoading] = useState(true); + + useEffect(() => { + // Check authentication status when the app loads + const checkAuth = async () => { + try { + // Just check the auth state + authService.isAuthenticated(); + } finally { + setIsLoading(false); + } + }; + + checkAuth(); + }, []); + + if (isLoading) { + return
Loading...
; + } + + return ( + + + + + + + + + } /> + } /> + + + + } + /> + + + + } + /> + + + + } + /> + + + + } + /> + {/* ADD ALL CUSTOM ROUTES ABOVE THE CATCH-ALL "*" ROUTE */} + } /> + + + + + + + ); +}; + +export default App; diff --git a/application/src/api/index.ts b/application/src/api/index.ts new file mode 100644 index 0000000..52190d5 --- /dev/null +++ b/application/src/api/index.ts @@ -0,0 +1,34 @@ + +// API routes handler +import realtime from './realtime'; + +/** + * Simple API router for client-side application + */ +const api = { + /** + * Handle API requests + */ + async handleRequest(path, method, body) { + console.log(`API request: ${method} ${path}`, body); + + // Route to the appropriate handler + if (path === '/api/realtime') { + console.log("Routing to realtime handler"); + return await realtime(body); + } + + // Return 404 for unknown routes + console.error(`Endpoint not found: ${path}`); + return { + status: 404, + json: { + ok: false, + error_code: 404, + description: "Endpoint not found" + } + }; + } +}; + +export default api; diff --git a/application/src/api/realtime/index.ts b/application/src/api/realtime/index.ts new file mode 100644 index 0000000..3a53ee0 --- /dev/null +++ b/application/src/api/realtime/index.ts @@ -0,0 +1,195 @@ + +// This file handles realtime notifications in a client-side environment +// In a production app, this would be a server-side endpoint + +console.log("API Realtime endpoint loaded"); + +// Simple implementation that simulates sending notifications +export default async function handler(req) { + try { + console.log("Realtime API call received:", JSON.stringify({ + ...req, + botToken: req?.botToken ? "[REDACTED]" : undefined + }, null, 2)); + + // Make sure we're accessing the body correctly + const body = req || {}; + const { type } = body; + + if (!type) { + console.error("Missing notification type parameter"); + return { + status: 400, + json: { + ok: false, + error_code: 400, + description: "Missing notification type" + } + }; + } + + // Handle Telegram notifications + if (type === "telegram") { + const { chatId, botToken, message } = body; + + console.log("Telegram notification request details:"); + console.log("- Chat ID:", chatId); + console.log("- Bot token available:", !!botToken); + console.log("- Message length:", message?.length || 0); + + if (!chatId || !botToken || !message) { + console.error("Missing required parameters for Telegram notification", { + hasChatId: !!chatId, + hasBotToken: !!botToken, + hasMessage: !!message + }); + + return { + status: 400, + json: { + ok: false, + error_code: 400, + description: "Missing required Telegram parameters" + } + }; + } + + try { + console.log("Attempting to call real Telegram API"); + const telegramApiUrl = `https://api.telegram.org/bot${botToken}/sendMessage`; + + console.log("Calling Telegram API:", telegramApiUrl.replace(botToken, "[REDACTED]")); + + const response = await fetch(telegramApiUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json', + }, + body: JSON.stringify({ + chat_id: chatId, + text: message, + parse_mode: 'HTML' + }), + }); + + if (!response.ok) { + const errorText = await response.text(); + console.error(`Telegram API error (${response.status}):`, errorText); + + try { + // Try to parse error as JSON if possible + const errorJson = JSON.parse(errorText); + return { + status: response.status, + json: errorJson + }; + } catch (e) { + // If parsing fails, return the raw error + return { + status: response.status, + json: { + ok: false, + error_code: response.status, + description: `Telegram API error: ${errorText}` + } + }; + } + } + + const result = await response.json(); + console.log("Telegram API response:", JSON.stringify(result, null, 2)); + + if (!result.ok) { + console.error("Telegram API error:", result); + return { + status: response.status, + json: result + }; + } + + console.log("Successfully sent message to Telegram!"); + return { + status: 200, + json: { + ok: true, + result: result.result, + description: "Message sent successfully to Telegram" + } + }; + } catch (error) { + console.error("Error calling Telegram API:", error); + + // Return detailed error information + return { + status: 500, + json: { + ok: false, + error_code: 500, + description: `Error sending Telegram message: ${error instanceof Error ? error.message : "Unknown error"}` + } + }; + } + } + // Handle Signal notifications + else if (type === "signal") { + const { signalNumber, message } = body; + + if (!signalNumber || !message) { + console.error("Missing required parameters for Signal notification", { + hasSignalNumber: !!signalNumber, + hasMessage: !!message + }); + + return { + status: 400, + json: { + ok: false, + error_code: 400, + description: "Missing required Signal parameters" + } + }; + } + + // Simulate sending Signal message + console.log(`[SIMULATION] Sending Signal message to ${signalNumber}: ${message}`); + + // Simulate network delay + await new Promise(resolve => setTimeout(resolve, 500)); + + // Return success response + return { + status: 200, + json: { + ok: true, + result: { + id: Math.floor(Math.random() * 10000), + timestamp: Date.now(), + delivered: true + }, + description: "Signal message sent successfully (simulated)" + } + }; + } else { + // Return error for unsupported notification type + console.error("Unsupported notification type:", type); + return { + status: 400, + json: { + ok: false, + error_code: 400, + description: `Unsupported notification type: ${type}` + } + }; + } + } catch (error) { + console.error("Error in realtime handler:", error); + return { + status: 500, + json: { + ok: false, + error_code: 500, + description: error.message || "Internal server error" + } + }; + } +} diff --git a/application/src/components/dashboard/DashboardContent.tsx b/application/src/components/dashboard/DashboardContent.tsx new file mode 100644 index 0000000..e12c14e --- /dev/null +++ b/application/src/components/dashboard/DashboardContent.tsx @@ -0,0 +1,73 @@ + +import { useState } from "react"; +import { Button } from "@/components/ui/button"; +import { Plus } from "lucide-react"; +import { Service } from "@/services/serviceService"; +import { StatusCards } from "./StatusCards"; +import { ServiceFilters } from "./ServiceFilters"; +import { ServicesTable } from "./ServicesTable"; +import { AddServiceDialog } from "@/components/services/AddServiceDialog"; + +interface DashboardContentProps { + services: Service[]; + isLoading: boolean; + error: Error | null; +} + +export const DashboardContent = ({ services, isLoading, error }: DashboardContentProps) => { + const [filter, setFilter] = useState("all"); + const [searchTerm, setSearchTerm] = useState(""); + const [isAddDialogOpen, setIsAddDialogOpen] = useState(false); + + // Filter services based on search term and type filter + const filteredServices = services.filter(service => { + const matchesSearch = service.name.toLowerCase().includes(searchTerm.toLowerCase()) || + (service.url && service.url.toLowerCase().includes(searchTerm.toLowerCase())); + const matchesFilter = filter === 'all' || service.type.toLowerCase() === filter.toLowerCase(); + return matchesSearch && matchesFilter; + }); + + if (error) { + return ( +
+

Error loading service data.

+ +
+ ); + } + + return ( +
+
+
+

Overview

+ +
+ + + + + +
+ +
+
+ + +
+ ); +}; diff --git a/application/src/components/dashboard/Header.tsx b/application/src/components/dashboard/Header.tsx new file mode 100644 index 0000000..5febc55 --- /dev/null +++ b/application/src/components/dashboard/Header.tsx @@ -0,0 +1,190 @@ + +import { Button } from "@/components/ui/button"; +import { AuthUser } from "@/services/authService"; +import { useTheme } from "@/contexts/ThemeContext"; +import { Moon, PanelLeft, PanelLeftClose, Sun, Globe, FileText, Github, Twitter, MessageSquare, Bell, User, Settings, LogOut, Grid3x3 } from "lucide-react"; +import { useLanguage } from "@/contexts/LanguageContext"; +import { DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuTrigger, DropdownMenuSeparator } from "@/components/ui/dropdown-menu"; +import { useEffect, useState } from "react"; +import { Avatar, AvatarFallback, AvatarImage } from "@/components/ui/avatar"; +import { useNavigate } from "react-router-dom"; +import { useSystemSettings } from "@/hooks/useSystemSettings"; + +interface HeaderProps { + currentUser: AuthUser | null; + onLogout: () => void; + sidebarCollapsed: boolean; + toggleSidebar: () => void; +} + +export const Header = ({ + currentUser, + onLogout, + sidebarCollapsed, + toggleSidebar +}: HeaderProps) => { + const { theme, toggleTheme } = useTheme(); + const { language, setLanguage, t } = useLanguage(); + const [greeting, setGreeting] = useState(""); + const { systemName } = useSystemSettings(); + const navigate = useNavigate(); + + // Set greeting based on time of day + useEffect(() => { + const updateGreeting = () => { + const hour = new Date().getHours(); + if (hour >= 5 && hour < 12) { + setGreeting(t("goodMorning")); + } else if (hour >= 12 && hour < 18) { + setGreeting(t("goodAfternoon")); + } else { + setGreeting(t("goodEvening")); + } + }; + updateGreeting(); + // Update greeting if language changes + + // You could add a timer to update the greeting throughout the day + // but that's typically unnecessary since most sessions aren't active across time periods + }, [language, t]); + + // Log avatar data for debugging + useEffect(() => { + if (currentUser) { + console.log("Avatar URL in Header:", currentUser.avatar); + } + }, [currentUser]); + + // Prepare avatar URL - ensure it displays correctly if it's a local profile image + let avatarUrl = ''; + if (currentUser?.avatar) { + // If it's a relative path from the public folder, make sure it's resolved properly + if (currentUser.avatar.startsWith('/upload/profile/')) { + avatarUrl = currentUser.avatar; + } else { + avatarUrl = currentUser.avatar; + } + console.log("Final avatar URL:", avatarUrl); + } + + return ( +
+ {/* Grid Pattern Overlay - Similar to StatusCards */} +
+
+
+
+
+ + {/* Header Content */} +
+ +
+ +

{greeting}, {currentUser?.name || currentUser?.email?.split('@')[0] || 'User'} πŸ‘‹ ✨

+
+
+ +
+ + + + + + + + setLanguage("en")} className={language === "en" ? "bg-accent" : ""}> + {t("english")} + + setLanguage("km")} className={language === "km" ? "bg-accent" : ""}> + {t("khmer")} + + + + + {/* Documentation */} + + + {/* GitHub */} + + + {/* X (Twitter) */} + + + {/* Discord (replaced with MessageSquare) */} + + + {/* Notifications */} + + + {/* User Profile Dropdown */} + + + + {avatarUrl ? : + {currentUser?.name?.[0] || currentUser?.email?.[0] || 'U'} + } + + + +
+ + {avatarUrl ? : + {currentUser?.name?.[0] || currentUser?.email?.[0] || 'U'} + } + +
+ {currentUser?.name || 'User'} + {currentUser?.email} +
+
+ + navigate("/profile")}> + + {t("profile")} + + navigate("/settings")}> + + {t("settings")} + + + + + {t("logout")} + +
+
+
+
+ ); +}; diff --git a/application/src/components/dashboard/ServiceFilters.tsx b/application/src/components/dashboard/ServiceFilters.tsx new file mode 100644 index 0000000..726d4a2 --- /dev/null +++ b/application/src/components/dashboard/ServiceFilters.tsx @@ -0,0 +1,54 @@ + +import { Button } from "@/components/ui/button"; +import { Input } from "@/components/ui/input"; +import { Select, SelectTrigger, SelectValue, SelectContent, SelectItem } from "@/components/ui/select"; +import { Plus } from "lucide-react"; + +interface ServiceFiltersProps { + filter: string; + setFilter: (value: string) => void; + searchTerm: string; + setSearchTerm: (value: string) => void; + servicesCount: number; +} + +export const ServiceFilters = ({ + filter, + setFilter, + searchTerm, + setSearchTerm, + servicesCount +}: ServiceFiltersProps) => { + return ( +
+
+

Currently Monitoring

+ + {servicesCount} + +
+
+ +
+ setSearchTerm(e.target.value)} + /> +
+
+
+ ); +}; diff --git a/application/src/components/dashboard/ServicesTable.tsx b/application/src/components/dashboard/ServicesTable.tsx new file mode 100644 index 0000000..c47526e --- /dev/null +++ b/application/src/components/dashboard/ServicesTable.tsx @@ -0,0 +1,15 @@ + +import { Service } from "@/types/service.types"; +import { ServicesTableContainer } from "@/components/services/ServicesTableContainer"; + +interface ServicesTableProps { + services: Service[]; +} + +export const ServicesTable = ({ services }: ServicesTableProps) => { + return ( +
+ +
+ ); +}; diff --git a/application/src/components/dashboard/Sidebar.tsx b/application/src/components/dashboard/Sidebar.tsx new file mode 100644 index 0000000..ae87cc0 --- /dev/null +++ b/application/src/components/dashboard/Sidebar.tsx @@ -0,0 +1,141 @@ + +import { Globe, Boxes, Radar, Calendar, BarChart2, LineChart, FileText, Settings, User, UserCog, Bell, FileClock, Database, RefreshCw, Info, ChevronDown, BookOpen } from "lucide-react"; +import { useTheme } from "@/contexts/ThemeContext"; +import { Link, useLocation } from "react-router-dom"; +import { useState, useEffect } from "react"; +import { Collapsible, CollapsibleContent, CollapsibleTrigger } from "@/components/ui/collapsible"; +import { ScrollArea } from "@/components/ui/scroll-area"; +import { useLanguage } from "@/contexts/LanguageContext"; + +interface SidebarProps { + collapsed: boolean; +} + +export const Sidebar = ({ + collapsed +}: SidebarProps) => { + const { + theme + } = useTheme(); + const { + t + } = useLanguage(); + const location = useLocation(); + const [activeSettingsItem, setActiveSettingsItem] = useState("general"); + const [settingsPanelOpen, setSettingsPanelOpen] = useState(false); + + // Update active settings item based on URL + useEffect(() => { + if (location.pathname === '/settings') { + const params = new URLSearchParams(location.search); + const panel = params.get('panel'); + if (panel) { + setActiveSettingsItem(panel); + } + } + }, [location]); + + const handleSettingsItemClick = (item: string) => { + setActiveSettingsItem(item); + }; + + const getMenuItemClasses = (isActive: boolean) => { + return `p-2 ${isActive ? theme === 'dark' ? 'bg-[#1a1a1a]' : 'bg-sidebar-accent' : `hover:${theme === 'dark' ? 'bg-[#1a1a1a]' : 'bg-sidebar-accent'}`} rounded-lg flex items-center`; + }; + + // New larger icon size for the main menu + const mainIconSize = "h-6 w-6"; + + return
+
+
+ C +
+ {!collapsed &&

CheckCle App

} +
+ + + + {!collapsed &&
+ + +
+ {t("settingPanel")} +
+
+ + +
+
+ + +
+ +
+ handleSettingsItemClick('general')}> + + {t("generalSettings")} + + handleSettingsItemClick('users')}> + + {t("userManagement")} + + handleSettingsItemClick('notifications')}> + + {t("notificationSettings")} + + handleSettingsItemClick('templates')}> + + {t("alertsTemplates")} + +
+ + {t("dataRetention")} +
+ handleSettingsItemClick('about')}> + + {t("aboutSystem")} + +
+
+
+
+
+
} + + {collapsed &&
+ + + +
} +
; +}; diff --git a/application/src/components/dashboard/StatusCards.tsx b/application/src/components/dashboard/StatusCards.tsx new file mode 100644 index 0000000..e0a4794 --- /dev/null +++ b/application/src/components/dashboard/StatusCards.tsx @@ -0,0 +1,152 @@ + +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { ArrowUp, ArrowDown, Pause, AlertTriangle } from "lucide-react"; +import { Service } from "@/services/serviceService"; +import { useTheme } from "@/contexts/ThemeContext"; + +interface StatusCardsProps { + services: Service[]; +} + +export const StatusCards = ({ services }: StatusCardsProps) => { + // Count services by status + const upServices = services.filter(s => s.status === "up").length; + const downServices = services.filter(s => s.status === "down").length; + const pausedServices = services.filter(s => s.status === "paused").length; + const warningServices = services.filter(s => s.responseTime > 1000).length; + + // Get current theme to adjust card styles + const { theme } = useTheme(); + + return ( +
+ {/* Up Services Card */} + + {/* Grid Pattern Overlay */} +
+
+
+ + UP SERVICES + + + {upServices} +
+ +
+
+
+ + {/* Down Services Card */} + + {/* Grid Pattern Overlay */} +
+
+
+ + DOWN SERVICES + + + {downServices} +
+ +
+
+
+ + {/* Paused Services Card */} + + {/* Grid Pattern Overlay */} +
+
+
+ + PAUSED SERVICES + + + {pausedServices} +
+ +
+
+
+ + {/* Warning Services Card */} + + {/* Grid Pattern Overlay */} +
+
+
+ + WARNING SERVICES + + + {warningServices} +
+ +
+
+
+
+ ); +}; diff --git a/application/src/components/profile/ChangePasswordForm.tsx b/application/src/components/profile/ChangePasswordForm.tsx new file mode 100644 index 0000000..41ccb45 --- /dev/null +++ b/application/src/components/profile/ChangePasswordForm.tsx @@ -0,0 +1,191 @@ + +import { useState } from "react"; +import { z } from "zod"; +import { useForm } from "react-hook-form"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { Button } from "@/components/ui/button"; +import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form"; +import { Input } from "@/components/ui/input"; +import { useToast } from "@/hooks/use-toast"; +import { Eye, EyeOff } from "lucide-react"; +import { pb } from "@/lib/pocketbase"; +import { authService } from "@/services/authService"; + +// Password change form schema +const passwordFormSchema = z.object({ + currentPassword: z.string().min(1, "Current password is required"), + newPassword: z.string().min(8, "Password must be at least 8 characters"), + confirmPassword: z.string().min(8, "Confirm password is required"), +}).refine((data) => data.newPassword === data.confirmPassword, { + message: "Passwords don't match", + path: ["confirmPassword"], +}); + +type PasswordFormValues = z.infer; + +interface ChangePasswordFormProps { + userId: string; +} + +export function ChangePasswordForm({ userId }: ChangePasswordFormProps) { + const [isSubmitting, setIsSubmitting] = useState(false); + const [showCurrentPassword, setShowCurrentPassword] = useState(false); + const [showNewPassword, setShowNewPassword] = useState(false); + const [showConfirmPassword, setShowConfirmPassword] = useState(false); + + const { toast } = useToast(); + + const form = useForm({ + resolver: zodResolver(passwordFormSchema), + defaultValues: { + currentPassword: "", + newPassword: "", + confirmPassword: "", + }, + }); + + async function onSubmit(data: PasswordFormValues) { + setIsSubmitting(true); + + try { + // PocketBase requires the old password along with the new one + await pb.collection('users').update(userId, { + oldPassword: data.currentPassword, + password: data.newPassword, + passwordConfirm: data.confirmPassword, + }); + + // Refresh auth data to ensure token remains valid + await authService.refreshUserData(); + + toast({ + title: "Password updated", + description: "Your password has been changed successfully.", + }); + + // Reset the form + form.reset(); + } catch (error) { + console.error("Password change error:", error); + + let errorMessage = "Failed to update password. Please try again."; + if (error instanceof Error) { + errorMessage = error.message; + } + + toast({ + title: "Password change failed", + description: errorMessage, + variant: "destructive", + }); + } finally { + setIsSubmitting(false); + } + } + + return ( +
+ + ( + + Current Password + +
+ + +
+
+ +
+ )} + /> + + ( + + New Password + +
+ + +
+
+ +
+ )} + /> + + ( + + Confirm Password + +
+ + +
+
+ +
+ )} + /> + + + + + ); +} diff --git a/application/src/components/profile/ProfileContent.tsx b/application/src/components/profile/ProfileContent.tsx new file mode 100644 index 0000000..7dc80ae --- /dev/null +++ b/application/src/components/profile/ProfileContent.tsx @@ -0,0 +1,74 @@ + +import { useState } from "react"; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { User } from "@/services/userService"; +import { UserProfileDetails } from "./UserProfileDetails"; +import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; +import { ChangePasswordForm } from "./ChangePasswordForm"; +import { UpdateProfileForm } from "./UpdateProfileForm"; + +interface ProfileContentProps { + currentUser: User | null; +} + +export function ProfileContent({ currentUser }: ProfileContentProps) { + const [activeTab, setActiveTab] = useState("details"); + + if (!currentUser) { + return ( + + + User Profile + Your profile information could not be loaded + + + ); + } + + return ( +
+
+

My Profile

+
+ +
+ {/* Left column - Profile summary card */} + + + Profile Summary + + + + + + + {/* Right column - Profile tabs for edit and password change */} + + + My Account + Manage your account settings + + + + + Profile Details + Security + + + + + + + + + + + + + Last updated: {new Date(currentUser.updated).toLocaleString()} + + +
+
+ ); +} diff --git a/application/src/components/profile/UpdateProfileForm.tsx b/application/src/components/profile/UpdateProfileForm.tsx new file mode 100644 index 0000000..8911530 --- /dev/null +++ b/application/src/components/profile/UpdateProfileForm.tsx @@ -0,0 +1,132 @@ + +import { useState } from "react"; +import { z } from "zod"; +import { useForm } from "react-hook-form"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { User, userService } from "@/services/userService"; +import { Button } from "@/components/ui/button"; +import { Form, FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form"; +import { Input } from "@/components/ui/input"; +import { useToast } from "@/hooks/use-toast"; +import { authService } from "@/services/authService"; + +// Profile update form schema +const profileFormSchema = z.object({ + full_name: z.string().min(2, { + message: "Name must be at least 2 characters.", + }), + username: z.string().min(3, { + message: "Username must be at least 3 characters.", + }), + email: z.string().email({ + message: "Please enter a valid email address.", + }), +}); + +type ProfileFormValues = z.infer; + +interface UpdateProfileFormProps { + user: User; +} + +export function UpdateProfileForm({ user }: UpdateProfileFormProps) { + const [isSubmitting, setIsSubmitting] = useState(false); + const { toast } = useToast(); + + // Initialize the form with current user data + const form = useForm({ + resolver: zodResolver(profileFormSchema), + defaultValues: { + full_name: user.full_name || "", + username: user.username || "", + email: user.email || "", + }, + }); + + async function onSubmit(data: ProfileFormValues) { + setIsSubmitting(true); + + try { + await userService.updateUser(user.id, { + full_name: data.full_name, + username: data.username, + email: data.email, + }); + + // Refresh user data in auth context + await authService.refreshUserData(); + + toast({ + title: "Profile updated", + description: "Your profile information has been updated successfully.", + }); + } catch (error) { + console.error("Profile update error:", error); + + let errorMessage = "Failed to update profile. Please try again."; + if (error instanceof Error) { + errorMessage = error.message; + } + + toast({ + title: "Update failed", + description: errorMessage, + variant: "destructive", + }); + } finally { + setIsSubmitting(false); + } + } + + return ( +
+ + ( + + Full Name + + + + + + )} + /> + + ( + + Username + + + + + + )} + /> + + ( + + Email + + + + + + )} + /> + + + + + ); +} diff --git a/application/src/components/profile/UserProfileDetails.tsx b/application/src/components/profile/UserProfileDetails.tsx new file mode 100644 index 0000000..de90535 --- /dev/null +++ b/application/src/components/profile/UserProfileDetails.tsx @@ -0,0 +1,75 @@ + +import { User } from "@/services/userService"; +import { Avatar, AvatarImage, AvatarFallback } from "@/components/ui/avatar"; +import { Badge } from "@/components/ui/badge"; +import { Mail, User as UserIcon } from "lucide-react"; + +interface UserProfileDetailsProps { + user: User; +} + +export function UserProfileDetails({ user }: UserProfileDetailsProps) { + // Format dates + const createdDate = new Date(user.created).toLocaleDateString(); + + // Get avatar or initials + const getInitials = () => { + if (user.full_name) { + return user.full_name.split(' ') + .map(name => name[0]) + .join('') + .toUpperCase(); + } + return user.username[0].toUpperCase(); + }; + + return ( +
+ + {user.avatar ? ( + + ) : ( + + {getInitials()} + + )} + + +
+

{user.full_name || user.username}

+
+ + {user.email} +
+
+ + @{user.username} +
+
+ +
+
+ {user.role && ( + + {user.role} + + )} + + {user.isActive ? "Active" : "Inactive"} + + {user.verified && ( + + Verified + + )} +
+ +
+

+ Member since: {createdDate} +

+
+
+
+ ); +} diff --git a/application/src/components/services/AddServiceDialog.tsx b/application/src/components/services/AddServiceDialog.tsx new file mode 100644 index 0000000..6442666 --- /dev/null +++ b/application/src/components/services/AddServiceDialog.tsx @@ -0,0 +1,43 @@ + +import { + Dialog, + DialogContent, + DialogDescription, + DialogHeader, + DialogTitle, +} from "@/components/ui/dialog"; +import { ServiceForm } from "./ServiceForm"; +import { ScrollArea } from "@/components/ui/scroll-area"; + +interface AddServiceDialogProps { + open: boolean; + onOpenChange: (open: boolean) => void; +} + +export function AddServiceDialog({ open, onOpenChange }: AddServiceDialogProps) { + const handleSuccess = () => { + onOpenChange(false); + }; + + const handleCancel = () => { + onOpenChange(false); + }; + + return ( + + + + Create New Service + + Fill in the details to create a new service to monitor. + + + +
+ +
+
+
+
+ ); +} diff --git a/application/src/components/services/DateRangeFilter.tsx b/application/src/components/services/DateRangeFilter.tsx new file mode 100644 index 0000000..51ddcf9 --- /dev/null +++ b/application/src/components/services/DateRangeFilter.tsx @@ -0,0 +1,156 @@ + +import { useState } from "react"; +import { Button } from "@/components/ui/button"; +import { Calendar } from "@/components/ui/calendar"; +import { + Popover, + PopoverContent, + PopoverTrigger, +} from "@/components/ui/popover"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue, +} from "@/components/ui/select"; +import { format, subDays, subHours, subMonths, subWeeks, subYears } from "date-fns"; +import { Calendar as CalendarIcon } from "lucide-react"; +import { cn } from "@/lib/utils"; + +export type DateRangeOption = '60min' | '24h' | '7d' | '30d' | '1y' | 'custom'; + +interface DateRangeFilterProps { + onRangeChange: (startDate: Date, endDate: Date, option: DateRangeOption) => void; + selectedOption?: DateRangeOption; +} + +// Define a proper type for the date range +interface DateRange { + from: Date | undefined; + to: Date | undefined; +} + +export function DateRangeFilter({ onRangeChange, selectedOption = '24h' }: DateRangeFilterProps) { + const [currentOption, setCurrentOption] = useState(selectedOption); + const [customDateRange, setCustomDateRange] = useState({ + from: undefined, + to: undefined, + }); + const [isCalendarOpen, setIsCalendarOpen] = useState(false); + + const handleOptionChange = (value: string) => { + const option = value as DateRangeOption; + setCurrentOption(option); + + const now = new Date(); + let startDate: Date; + + switch (option) { + case '60min': + // Ensure we're getting exactly 60 minutes ago + startDate = new Date(now.getTime() - 60 * 60 * 1000); + console.log(`60min option selected: ${startDate.toISOString()} to ${now.toISOString()}`); + break; + case '24h': + startDate = new Date(now.getTime() - 24 * 60 * 60 * 1000); + break; + case '7d': + startDate = subDays(now, 7); + break; + case '30d': + startDate = subDays(now, 30); + break; + case '1y': + startDate = subYears(now, 1); + break; + case 'custom': + // Don't trigger onRangeChange for custom until both dates are selected + setIsCalendarOpen(true); + return; + default: + startDate = new Date(now.getTime() - 24 * 60 * 60 * 1000); + } + + console.log(`DateRangeFilter: Option changed to ${option}, date range: ${startDate.toISOString()} to ${now.toISOString()}`); + onRangeChange(startDate, now, option); + }; + + // Handle custom date range selection + const handleCustomRangeSelect = (range: DateRange | undefined) => { + if (!range) { + return; + } + + setCustomDateRange(range); + + if (range.from && range.to) { + // Ensure that we have both from and to dates before triggering the change + const startOfDay = new Date(range.from); + startOfDay.setHours(0, 0, 0, 0); + + const endOfDay = new Date(range.to); + endOfDay.setHours(23, 59, 59, 999); + + console.log(`DateRangeFilter: Custom range selected: ${startOfDay.toISOString()} to ${endOfDay.toISOString()}`); + onRangeChange(startOfDay, endOfDay, 'custom'); + setIsCalendarOpen(false); + } + }; + + return ( +
+ + + {currentOption === 'custom' && ( + + + + + + + + + )} +
+ ); +} diff --git a/application/src/components/services/LastCheckedTime.tsx b/application/src/components/services/LastCheckedTime.tsx new file mode 100644 index 0000000..3757f12 --- /dev/null +++ b/application/src/components/services/LastCheckedTime.tsx @@ -0,0 +1,87 @@ + +import React from "react"; +import { Clock, TimerOff } from "lucide-react"; +import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"; + +interface LastCheckedTimeProps { + lastCheckedTime: string; + status?: string; + interval?: number; +} + +export const LastCheckedTime = ({ lastCheckedTime, status, interval }: LastCheckedTimeProps) => { + // Format the time without seconds to display a static time + const formatTimeWithoutSeconds = (timeString: string) => { + try { + const date = new Date(timeString); + + // Check if it's a valid date + if (isNaN(date.getTime())) { + // If it's already in HH:MM format, just return it + if (timeString.includes(':') && !timeString.includes(':00:')) { + return timeString; + } + return timeString; + } + + // Format to only show hours and minutes (HH:MM) + return date.toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' }); + } catch (e) { + return timeString; + } + }; + + // Get the formatted time without creating a new Date for paused services + const formattedTime = formatTimeWithoutSeconds(lastCheckedTime); + + // Explicitly prevent real-time updates for paused services + const isPaused = status === "paused"; + + // Format the interval for display + const formatInterval = (seconds: number) => { + if (seconds < 60) return `${seconds}s`; + const minutes = Math.round(seconds / 60); + return `${minutes}min`; + }; + + return ( + + + +
+ {isPaused ? ( + + ) : ( + + )} + + {isPaused ? "Paused at " : ""} + {formattedTime} + +
+
+ +
+
+ {isPaused ? "Monitoring Paused" : "Last Check Details"} +
+
+ {isPaused ? "No automatic checks" : `Checked at ${formattedTime}`} +
+ {interval && !isPaused && ( +
+ Check interval: {formatInterval(interval)} +
+ )} +
+ {new Date(lastCheckedTime).toLocaleString()} +
+
+
+
+
+ ); +}; diff --git a/application/src/components/services/LoadingState.tsx b/application/src/components/services/LoadingState.tsx new file mode 100644 index 0000000..a96a562 --- /dev/null +++ b/application/src/components/services/LoadingState.tsx @@ -0,0 +1,15 @@ + +export function LoadingState() { + return ( +
+
+
+
+
+
+

Loading server data

+

Please wait while we retrieve your information...

+
+
+ ); +} diff --git a/application/src/components/services/ResponseTimeChart.tsx b/application/src/components/services/ResponseTimeChart.tsx new file mode 100644 index 0000000..affb107 --- /dev/null +++ b/application/src/components/services/ResponseTimeChart.tsx @@ -0,0 +1,234 @@ + +import { AreaChart, Area, XAxis, YAxis, CartesianGrid, Tooltip, ResponsiveContainer, ReferenceLine } from "recharts"; +import { UptimeData } from "@/types/service.types"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { useTheme } from "@/contexts/ThemeContext"; +import { useMemo } from "react"; +import { format } from "date-fns"; + +interface ResponseTimeChartProps { + uptimeData: UptimeData[]; +} + +export function ResponseTimeChart({ uptimeData }: ResponseTimeChartProps) { + const { theme } = useTheme(); + + // Format data for the chart with enhanced time formatting + const chartData = useMemo(() => { + if (!uptimeData || uptimeData.length === 0) return []; + + // Sort by timestamp ascending (oldest to newest) + const sortedData = [...uptimeData].sort((a, b) => + new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime() + ); + + // Get time format based on data density + const isShortTimeRange = uptimeData.length > 0 && + (new Date(uptimeData[0].timestamp).getTime() - new Date(uptimeData[uptimeData.length - 1].timestamp).getTime()) < 2 * 60 * 60 * 1000; + + return sortedData.map(data => { + const timestamp = new Date(data.timestamp); + + return { + time: isShortTimeRange + ? format(timestamp, 'HH:mm:ss') // Include seconds for short time ranges like 60min + : format(timestamp, 'HH:mm'), + rawTime: timestamp.getTime(), + date: format(timestamp, 'MMM dd, yyyy'), + value: data.status === "paused" ? null : data.responseTime, + status: data.status, + }; + }); + }, [uptimeData]); + + // Create a custom tooltip for the chart + const CustomTooltip = ({ active, payload, label }: any) => { + if (active && payload && payload.length) { + const data = payload[0].payload; + + // Set background color based on status + let statusColor = "bg-emerald-800"; + let statusText = "Up"; + + if (data.status === "down") { + statusColor = "bg-red-800"; + statusText = "Down"; + } else if (data.status === "warning") { + statusColor = "bg-yellow-800"; + statusText = "Warning"; + } else if (data.status === "paused") { + statusColor = "bg-gray-800"; + statusText = "Paused"; + } + + return ( +
+

{label}

+

{data.date}

+
+
+ {statusText} +
+

+ {data.status === "paused" ? "Monitoring paused" : + data.value !== null ? `${data.value} ms` : "No data"} +

+
+ ); + } + return null; + }; + + // Compute status segments for different areas + const getStatusSegments = () => { + const segments = { + up: [] as any[], + down: [] as any[], + warning: [] as any[] + }; + + chartData.forEach(point => { + if (point.status === "paused") return; + + if (point.status === "up") { + segments.up.push(point); + } else if (point.status === "down") { + segments.down.push(point); + } else if (point.status === "warning") { + segments.warning.push(point); + } + }); + + return segments; + }; + + const segments = getStatusSegments(); + + // Check if we have any data to display - be more lenient by checking raw uptimeData + const hasData = uptimeData.length > 0; + + // Get date range for display + const dateRange = useMemo(() => { + if (!chartData.length) return { start: "", end: "" }; + + const sortedData = [...chartData].sort((a, b) => a.rawTime - b.rawTime); + return { + start: sortedData[0]?.date || "", + end: sortedData[sortedData.length - 1]?.date || "" + }; + }, [chartData]); + + // Display date range if different dates + const dateRangeDisplay = dateRange.start === dateRange.end + ? dateRange.start + : `${dateRange.start} - ${dateRange.end}`; + + return ( + + + + Response Time History + {hasData && ( + + {dateRangeDisplay} + + )} + + + + {!hasData ? ( +
+

No data available for the selected time period.

+
+ ) : ( +
+ + + + + + + + + + + + + + + + + + + + } /> + + {/* Area charts for different statuses */} + {segments.up.length > 0 && ( + + )} + + {segments.down.length > 0 && ( + + )} + + {segments.warning.length > 0 && ( + + )} + + {/* Add reference lines for paused periods */} + {chartData.map((entry, index) => + entry.status === 'paused' ? ( + + ) : null + )} + + +
+ )} +
+
+ ); +} diff --git a/application/src/components/services/ServiceDeleteDialog.tsx b/application/src/components/services/ServiceDeleteDialog.tsx new file mode 100644 index 0000000..1109bc4 --- /dev/null +++ b/application/src/components/services/ServiceDeleteDialog.tsx @@ -0,0 +1,77 @@ + +import { + AlertDialog, + AlertDialogAction, + AlertDialogCancel, + AlertDialogContent, + AlertDialogDescription, + AlertDialogFooter, + AlertDialogHeader, + AlertDialogTitle, +} from "@/components/ui/alert-dialog"; +import { Service } from "@/types/service.types"; +import { useTheme } from "@/contexts/ThemeContext"; +import { Loader2 } from "lucide-react"; + +interface ServiceDeleteDialogProps { + isOpen: boolean; + onOpenChange: (open: boolean) => void; + selectedService: Service | null; + onConfirmDelete: () => Promise; + isDeleting?: boolean; +} + +export const ServiceDeleteDialog = ({ + isOpen, + onOpenChange, + selectedService, + onConfirmDelete, + isDeleting = false, +}: ServiceDeleteDialogProps) => { + const { theme } = useTheme(); + + const handleConfirm = async () => { + if (!isDeleting) { + await onConfirmDelete(); + } + }; + + return ( + + + + Are you sure you want to delete this service? + + This action cannot be undone. This will permanently delete{' '} + + {selectedService?.name} + {' '} + and all of its uptime records. + + + + + Cancel + + + {isDeleting ? ( + <> + + Deleting... + + ) : ( + 'Delete' + )} + + + + + ); +}; diff --git a/application/src/components/services/ServiceDetailContainer.tsx b/application/src/components/services/ServiceDetailContainer.tsx new file mode 100644 index 0000000..e19901d --- /dev/null +++ b/application/src/components/services/ServiceDetailContainer.tsx @@ -0,0 +1,6 @@ + +import { ServiceDetailContainer as NewServiceDetailContainer } from "./ServiceDetailContainer/index"; + +export const ServiceDetailContainer = () => { + return ; +}; diff --git a/application/src/components/services/ServiceDetailContainer/ServiceDetailWrapper.tsx b/application/src/components/services/ServiceDetailContainer/ServiceDetailWrapper.tsx new file mode 100644 index 0000000..ed1fac3 --- /dev/null +++ b/application/src/components/services/ServiceDetailContainer/ServiceDetailWrapper.tsx @@ -0,0 +1,51 @@ + +import React from "react"; +import { Sidebar } from "@/components/dashboard/Sidebar"; +import { Header } from "@/components/dashboard/Header"; +import { LoadingState } from "@/components/services/LoadingState"; +import { ServiceNotFound } from "@/components/services/ServiceNotFound"; +import { Service } from "@/types/service.types"; + +interface ServiceDetailWrapperProps { + children: React.ReactNode; + isLoading: boolean; + service: Service | null; + sidebarCollapsed: boolean; + toggleSidebar: () => void; + currentUser: any; + handleLogout: () => void; +} + +export const ServiceDetailWrapper = ({ + children, + isLoading, + service, + sidebarCollapsed, + toggleSidebar, + currentUser, + handleLogout +}: ServiceDetailWrapperProps) => { + return ( +
+ +
+
+ + {isLoading ? ( + + ) : !service ? ( + + ) : ( +
+ {children} +
+ )} +
+
+ ); +}; diff --git a/application/src/components/services/ServiceDetailContainer/hooks/index.ts b/application/src/components/services/ServiceDetailContainer/hooks/index.ts new file mode 100644 index 0000000..68d53ec --- /dev/null +++ b/application/src/components/services/ServiceDetailContainer/hooks/index.ts @@ -0,0 +1,3 @@ + +export * from './useServiceData'; +export * from './useRealTimeUpdates'; diff --git a/application/src/components/services/ServiceDetailContainer/hooks/useRealTimeUpdates.tsx b/application/src/components/services/ServiceDetailContainer/hooks/useRealTimeUpdates.tsx new file mode 100644 index 0000000..20f0687 --- /dev/null +++ b/application/src/components/services/ServiceDetailContainer/hooks/useRealTimeUpdates.tsx @@ -0,0 +1,87 @@ + +import { useEffect } from "react"; +import { pb } from "@/lib/pocketbase"; +import { Service, UptimeData } from "@/types/service.types"; + +interface UseRealTimeUpdatesProps { + serviceId: string | undefined; + startDate: Date; + endDate: Date; + setService: React.Dispatch>; + setUptimeData: React.Dispatch>; +} + +export const useRealTimeUpdates = ({ + serviceId, + startDate, + endDate, + setService, + setUptimeData +}: UseRealTimeUpdatesProps) => { + // Listen for real-time updates to this service + useEffect(() => { + if (!serviceId) return; + + console.log(`Setting up real-time updates for service: ${serviceId}`); + + try { + // Subscribe to the service record for real-time updates + const subscription = pb.collection('services').subscribe(serviceId, function(e) { + console.log("Service updated:", e.record); + + // Update our local state with the new data + if (e.record) { + setService(prev => { + if (!prev) return null; + return { + ...prev, + status: e.record.status || prev.status, + responseTime: e.record.response_time || e.record.responseTime || prev.responseTime, + uptime: e.record.uptime || prev.uptime, + lastChecked: e.record.last_checked || e.record.lastChecked || prev.lastChecked, + }; + }); + } + }); + + // Subscribe to uptime data updates + const uptimeSubscription = pb.collection('uptime_data').subscribe('*', function(e) { + if (e.record && e.record.service_id === serviceId) { + console.log("New uptime data:", e.record); + + // Add the new uptime data to our list if it's within the selected date range + const timestamp = new Date(e.record.timestamp); + if (timestamp >= startDate && timestamp <= endDate) { + setUptimeData(prev => { + const newData: UptimeData = { + id: e.record.id, + serviceId: e.record.service_id, + timestamp: e.record.timestamp, + status: e.record.status, + responseTime: e.record.response_time || 0, + date: e.record.timestamp, // Adding required date property + uptime: e.record.uptime || 0 // Adding required uptime property + }; + + // Add at the beginning of the array to maintain newest first sorting + return [newData, ...prev]; + }); + } + } + }); + + // Clean up the subscriptions + return () => { + console.log(`Cleaning up subscriptions for service: ${serviceId}`); + try { + pb.collection('services').unsubscribe(serviceId); + pb.collection('uptime_data').unsubscribe('*'); + } catch (error) { + console.error("Error cleaning up subscriptions:", error); + } + }; + } catch (error) { + console.error("Error setting up real-time updates:", error); + } + }, [serviceId, startDate, endDate, setService, setUptimeData]); +}; diff --git a/application/src/components/services/ServiceDetailContainer/hooks/useServiceData.tsx b/application/src/components/services/ServiceDetailContainer/hooks/useServiceData.tsx new file mode 100644 index 0000000..b344764 --- /dev/null +++ b/application/src/components/services/ServiceDetailContainer/hooks/useServiceData.tsx @@ -0,0 +1,173 @@ + +import { useState, useEffect } from "react"; +import { pb } from "@/lib/pocketbase"; +import { Service, UptimeData } from "@/types/service.types"; +import { useToast } from "@/hooks/use-toast"; +import { useNavigate } from "react-router-dom"; +import { uptimeService } from "@/services/uptimeService"; + +export const useServiceData = (serviceId: string | undefined, startDate: Date, endDate: Date) => { + const [service, setService] = useState(null); + const [uptimeData, setUptimeData] = useState([]); + const [isLoading, setIsLoading] = useState(true); + const { toast } = useToast(); + const navigate = useNavigate(); + + // Handler for service status changes + const handleStatusChange = async (newStatus: "up" | "down" | "paused" | "warning") => { + if (!service || !serviceId) return; + + try { + // Optimistic UI update + setService({ ...service, status: newStatus as Service["status"] }); + + // Update the service status in PocketBase + await pb.collection('services').update(serviceId, { + status: newStatus + }); + + toast({ + title: "Status updated", + description: `Service status changed to ${newStatus}`, + }); + } catch (error) { + console.error("Failed to update service status:", error); + // Revert the optimistic update + setService(prevService => prevService); + + toast({ + variant: "destructive", + title: "Update failed", + description: "Could not update service status. Please try again.", + }); + } + }; + + // Function to fetch uptime data with date filters + const fetchUptimeData = async (serviceId: string, start: Date, end: Date, selectedRange: string) => { + try { + console.log(`Fetching uptime data from ${start.toISOString()} to ${end.toISOString()}`); + + // Set appropriate limits based on time range to ensure enough granularity + let limit = 200; // default + + // Adjust limits based on selected range + if (selectedRange === '60min') { + limit = 300; // More points for shorter time ranges + } else if (selectedRange === '24h') { + limit = 200; + } else if (selectedRange === '7d') { + limit = 250; + } else if (selectedRange === '30d' || selectedRange === '1y') { + limit = 300; // More points for longer time ranges + } + + console.log(`Using limit ${limit} for range ${selectedRange}`); + + const history = await uptimeService.getUptimeHistory(serviceId, limit, start, end); + console.log(`Fetched ${history.length} uptime records for time range ${selectedRange}`); + + if (history.length === 0) { + console.log("No data returned from API, checking if we need to fetch with a higher limit"); + // If no data, try with a higher limit as fallback + if (limit < 500) { + const extendedHistory = await uptimeService.getUptimeHistory(serviceId, 500, start, end); + console.log(`Fallback: Fetched ${extendedHistory.length} uptime records with higher limit`); + + if (extendedHistory.length > 0) { + setUptimeData(extendedHistory); + return extendedHistory; + } + } + } + + // Sort data by timestamp (newest first) + const sortedHistory = [...history].sort((a, b) => + new Date(b.timestamp).getTime() - new Date(a.timestamp).getTime() + ); + + setUptimeData(sortedHistory); + return sortedHistory; + } catch (error) { + console.error("Error fetching uptime data:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to load uptime history. Please try again.", + }); + return []; + } + }; + + // Initial data loading + useEffect(() => { + const fetchServiceData = async () => { + try { + if (!serviceId) { + setIsLoading(false); + return; + } + + setIsLoading(true); + + // Add a timeout to prevent hanging + const timeoutPromise = new Promise((_, reject) => { + setTimeout(() => reject(new Error("Request timed out")), 10000); + }); + + const fetchPromise = pb.collection('services').getOne(serviceId); + const serviceData = await Promise.race([fetchPromise, timeoutPromise]) as any; + + const formattedService: Service = { + id: serviceData.id, + name: serviceData.name, + url: serviceData.url || "", + type: serviceData.service_type || serviceData.type || "HTTP", + status: serviceData.status || "paused", + responseTime: serviceData.response_time || serviceData.responseTime || 0, + uptime: serviceData.uptime || 0, + lastChecked: serviceData.last_checked || serviceData.lastChecked || new Date().toLocaleString(), + interval: serviceData.heartbeat_interval || serviceData.interval || 60, + retries: serviceData.max_retries || serviceData.retries || 3, + notificationChannel: serviceData.notification_id, + alertTemplate: serviceData.template_id, + alerts: serviceData.alerts || "unmuted" + }; + + setService(formattedService); + + // Fetch uptime history with date range + await fetchUptimeData(serviceId, startDate, endDate, '24h'); + } catch (error) { + console.error("Error fetching service:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to load service data. Please try again.", + }); + navigate("/dashboard"); + } finally { + setIsLoading(false); + } + }; + + fetchServiceData(); + }, [serviceId, navigate, toast]); + + // Update data when date range changes + useEffect(() => { + if (serviceId && !isLoading) { + fetchUptimeData(serviceId, startDate, endDate, '24h'); + } + }, [startDate, endDate]); + + return { + service, + setService, + uptimeData, + setUptimeData, + isLoading, + handleStatusChange, + fetchUptimeData + }; +}; diff --git a/application/src/components/services/ServiceDetailContainer/index.tsx b/application/src/components/services/ServiceDetailContainer/index.tsx new file mode 100644 index 0000000..2bd7d2c --- /dev/null +++ b/application/src/components/services/ServiceDetailContainer/index.tsx @@ -0,0 +1,126 @@ + +import { useState, useEffect, useCallback } from "react"; +import { useParams, useNavigate } from "react-router-dom"; +import { DateRangeOption } from "../DateRangeFilter"; +import { authService } from "@/services/authService"; +import { ServiceDetailContent } from "../ServiceDetailContent"; +import { ServiceDetailWrapper } from "./ServiceDetailWrapper"; +import { useServiceData, useRealTimeUpdates } from "./hooks"; +import { toast } from "@/components/ui/use-toast"; + +export const ServiceDetailContainer = () => { + const { id } = useParams<{ id: string }>(); + const navigate = useNavigate(); + + // Ensure we use exact timestamp for startDate + const [startDate, setStartDate] = useState(() => { + const date = new Date(); + date.setHours(date.getHours() - 24); + return date; + }); + const [endDate, setEndDate] = useState(new Date()); + const [selectedRange, setSelectedRange] = useState('24h'); + + // State for sidebar collapse functionality (shared with Dashboard) + const [sidebarCollapsed, setSidebarCollapsed] = useState(() => { + // Check if there's a saved preference in localStorage + const saved = localStorage.getItem("sidebarCollapsed"); + return saved ? JSON.parse(saved) : window.innerWidth < 768; + }); + + // Toggle sidebar and save preference + const toggleSidebar = useCallback(() => { + setSidebarCollapsed(prev => { + const newState = !prev; + localStorage.setItem("sidebarCollapsed", JSON.stringify(newState)); + return newState; + }); + }, []); + + // Get current user for header + const currentUser = authService.getCurrentUser(); + + useEffect(() => { + // Verify user is authenticated + if (!authService.isAuthenticated()) { + toast({ + variant: "destructive", + title: "Authentication required", + description: "Please log in to view service details", + }); + navigate("/login"); + } + + // Auto-collapse sidebar on small screens + const handleResize = () => { + if (window.innerWidth < 768 && !sidebarCollapsed) { + setSidebarCollapsed(true); + localStorage.setItem("sidebarCollapsed", JSON.stringify(true)); + } + }; + + window.addEventListener("resize", handleResize); + return () => window.removeEventListener("resize", handleResize); + }, [navigate, sidebarCollapsed]); + + // Handler for logout (same as Dashboard) + const handleLogout = () => { + authService.logout(); + navigate("/login"); + }; + + // Use our custom hooks + const { + service, + uptimeData, + isLoading, + handleStatusChange, + fetchUptimeData, + setService, + setUptimeData + } = useServiceData(id, startDate, endDate); + + // Set up real-time updates + useRealTimeUpdates({ + serviceId: id, + startDate, + endDate, + setService, + setUptimeData + }); + + // Handle date range filter changes + const handleDateRangeChange = useCallback((start: Date, end: Date, option: DateRangeOption) => { + console.log(`Date range changed: ${start.toISOString()} to ${end.toISOString()}, option: ${option}`); + + setStartDate(start); + setEndDate(end); + setSelectedRange(option); + + // Refetch uptime data with new date range, passing the selected range option + if (id) { + fetchUptimeData(id, start, end, option); + } + }, [id, fetchUptimeData]); + + return ( + + {service && ( + + )} + + ); +}; diff --git a/application/src/components/services/ServiceDetailContent.tsx b/application/src/components/services/ServiceDetailContent.tsx new file mode 100644 index 0000000..78dabb1 --- /dev/null +++ b/application/src/components/services/ServiceDetailContent.tsx @@ -0,0 +1,64 @@ + +import { Service, UptimeData } from "@/types/service.types"; +import { ServiceHeader } from "@/components/services/ServiceHeader"; +import { ServiceStatsCards } from "@/components/services/ServiceStatsCards"; +import { ResponseTimeChart } from "@/components/services/ResponseTimeChart"; +import { LatestChecksTable } from "@/components/services/incident-history"; +import { DateRangeFilter, DateRangeOption } from "@/components/services/DateRangeFilter"; +import { Card, CardContent } from "@/components/ui/card"; +import { AlertTriangle } from "lucide-react"; + +interface ServiceDetailContentProps { + service: Service; + uptimeData: UptimeData[]; + onDateRangeChange: (start: Date, end: Date, option: DateRangeOption) => void; + onStatusChange: (newStatus: "up" | "down" | "paused" | "warning") => void; + selectedDateOption: DateRangeOption; +} + +export const ServiceDetailContent = ({ + service, + uptimeData, + onDateRangeChange, + onStatusChange, + selectedDateOption +}: ServiceDetailContentProps) => { + // Check if data is available + const hasUptimeData = uptimeData && uptimeData.length > 0; + + return ( +
+ + + +
+

Response Time History

+ +
+ + {!hasUptimeData && ( + + +
+ +

No uptime data available

+

+ There's no monitoring data for this service in the selected time period. + This could be because the service was recently added or monitoring is paused. +

+
+
+
+ )} + + {hasUptimeData && } + +
+ +
+
+ ); +}; diff --git a/application/src/components/services/ServiceEditDialog.tsx b/application/src/components/services/ServiceEditDialog.tsx new file mode 100644 index 0000000..d1098af --- /dev/null +++ b/application/src/components/services/ServiceEditDialog.tsx @@ -0,0 +1,77 @@ + +import { + Dialog, + DialogContent, + DialogDescription, + DialogHeader, + DialogTitle, +} from "@/components/ui/dialog"; +import { ServiceForm } from "./ServiceForm"; +import { Service } from "@/types/service.types"; +import { useQueryClient } from "@tanstack/react-query"; +import { useState, useEffect } from "react"; +import { ScrollArea } from "@/components/ui/scroll-area"; + +interface ServiceEditDialogProps { + open: boolean; + onOpenChange: (open: boolean) => void; + service: Service | null; +} + +export function ServiceEditDialog({ open, onOpenChange, service }: ServiceEditDialogProps) { + const queryClient = useQueryClient(); + const [isSubmitting, setIsSubmitting] = useState(false); + + // Reset submission state when dialog opens/closes + useEffect(() => { + if (!open) { + setIsSubmitting(false); + } + }, [open]); + + const handleSuccess = () => { + // Invalidate the services query to trigger a refetch + queryClient.invalidateQueries({ queryKey: ["services"] }); + setIsSubmitting(false); + onOpenChange(false); + }; + + const handleCancel = () => { + if (!isSubmitting) { + onOpenChange(false); + } + }; + + // Only render the form if dialog is open and service data exists + // This prevents form validation errors when dialog is closed + return ( + { + // Only allow closing if not currently submitting + if (!isSubmitting || !newOpen) { + onOpenChange(newOpen); + } + }}> + + + Edit Service + + Update the details of your monitored service. + + + {open && service && ( + +
+ setIsSubmitting(true)} + /> +
+
+ )} +
+
+ ); +} diff --git a/application/src/components/services/ServiceForm.tsx b/application/src/components/services/ServiceForm.tsx new file mode 100644 index 0000000..a6e1617 --- /dev/null +++ b/application/src/components/services/ServiceForm.tsx @@ -0,0 +1,142 @@ + +import { Form } from "@/components/ui/form"; +import { useForm } from "react-hook-form"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { useState, useEffect } from "react"; +import { useToast } from "@/hooks/use-toast"; +import { serviceSchema, ServiceFormData } from "./add-service/types"; +import { ServiceBasicFields } from "./add-service/ServiceBasicFields"; +import { ServiceTypeField } from "./add-service/ServiceTypeField"; +import { ServiceConfigFields } from "./add-service/ServiceConfigFields"; +import { ServiceNotificationFields } from "./add-service/ServiceNotificationFields"; +import { ServiceFormActions } from "./add-service/ServiceFormActions"; +import { serviceService } from "@/services/serviceService"; +import { Service } from "@/types/service.types"; + +interface ServiceFormProps { + onSuccess: () => void; + onCancel: () => void; + initialData?: Service | null; + isEdit?: boolean; + onSubmitStart?: () => void; +} + +export function ServiceForm({ + onSuccess, + onCancel, + initialData, + isEdit = false, + onSubmitStart +}: ServiceFormProps) { + const { toast } = useToast(); + const [isSubmitting, setIsSubmitting] = useState(false); + + // Initialize form with default values + const form = useForm({ + resolver: zodResolver(serviceSchema), + defaultValues: { + name: "", + type: "http", + url: "", + interval: "60", + retries: "3", + notificationChannel: "", + alertTemplate: "", + }, + mode: "onBlur", + }); + + // Populate form when initialData changes (separate from initialization) + useEffect(() => { + if (initialData && isEdit) { + // Reset the form with initial data values + form.reset({ + name: initialData.name || "", + type: (initialData.type || "http").toLowerCase(), + url: initialData.url || "", + interval: String(initialData.interval || 60), + retries: String(initialData.retries || 3), + notificationChannel: initialData.notificationChannel || "", + alertTemplate: initialData.alertTemplate || "", + }); + + // Log for debugging + console.log("Populating form with URL:", initialData.url); + } + }, [initialData, isEdit, form]); + + const handleSubmit = async (data: ServiceFormData) => { + if (isSubmitting) return; + + setIsSubmitting(true); + if (onSubmitStart) onSubmitStart(); + + try { + console.log("Form data being submitted:", data); // Debug log for submitted data + + if (isEdit && initialData) { + // Update existing service + await serviceService.updateService(initialData.id, { + name: data.name, + type: data.type, + url: data.url, + interval: parseInt(data.interval), + retries: parseInt(data.retries), + notificationChannel: data.notificationChannel === "none" ? "" : data.notificationChannel, + alertTemplate: data.alertTemplate === "default" ? "" : data.alertTemplate, + }); + + toast({ + title: "Service updated", + description: `${data.name} has been updated successfully.`, + }); + } else { + // Create new service + await serviceService.createService({ + name: data.name, + type: data.type, + url: data.url, + interval: parseInt(data.interval), + retries: parseInt(data.retries), + notificationChannel: data.notificationChannel === "none" ? undefined : data.notificationChannel, + alertTemplate: data.alertTemplate === "default" ? undefined : data.alertTemplate, + }); + + toast({ + title: "Service created", + description: `${data.name} has been added to monitoring.`, + }); + } + + onSuccess(); + if (!isEdit) { + form.reset(); + } + } catch (error) { + console.error(`Error ${isEdit ? 'updating' : 'creating'} service:`, error); + toast({ + title: `Failed to ${isEdit ? 'update' : 'create'} service`, + description: `An error occurred while ${isEdit ? 'updating' : 'creating'} the service.`, + variant: "destructive", + }); + } finally { + setIsSubmitting(false); + } + }; + + return ( +
+ + + + + + + + + ); +} diff --git a/application/src/components/services/ServiceHeader.tsx b/application/src/components/services/ServiceHeader.tsx new file mode 100644 index 0000000..d9df6a5 --- /dev/null +++ b/application/src/components/services/ServiceHeader.tsx @@ -0,0 +1,83 @@ + +import { ArrowLeft, Globe, MoreVertical, FileText, Github, Twitter, MessageSquare, Bell } from "lucide-react"; +import { useNavigate } from "react-router-dom"; +import { Button } from "@/components/ui/button"; +import { StatusBadge } from "@/components/services/StatusBadge"; +import { ServiceMonitoringButton } from "@/components/services/ServiceMonitoringButton"; +import { Service } from "@/types/service.types"; +import { useLanguage } from "@/contexts/LanguageContext"; +import { cn } from "@/lib/utils"; + +interface ServiceHeaderProps { + service: Service; + onStatusChange?: (newStatus: "up" | "down" | "paused" | "warning") => void; +} + +export function ServiceHeader({ service, onStatusChange }: ServiceHeaderProps) { + const navigate = useNavigate(); + const { t } = useLanguage(); + + return ( +
+ ); +} diff --git a/application/src/components/services/ServiceHistoryDialog.tsx b/application/src/components/services/ServiceHistoryDialog.tsx new file mode 100644 index 0000000..7a9830a --- /dev/null +++ b/application/src/components/services/ServiceHistoryDialog.tsx @@ -0,0 +1,74 @@ + +import { useState, useEffect } from "react"; +import { + Dialog, + DialogContent, + DialogHeader, + DialogTitle, + DialogDescription +} from "@/components/ui/dialog"; +import { Service } from "@/types/service.types"; +import { ServiceUptimeHistory } from "@/components/services/ServiceUptimeHistory"; +import { useTheme } from "@/contexts/ThemeContext"; +import { DateRangeFilter, DateRangeOption } from "@/components/services/DateRangeFilter"; + +interface ServiceHistoryDialogProps { + isOpen: boolean; + onOpenChange: (open: boolean) => void; + selectedService: Service | null; +} + +export const ServiceHistoryDialog = ({ + isOpen, + onOpenChange, + selectedService, +}: ServiceHistoryDialogProps) => { + const { theme } = useTheme(); + const [startDate, setStartDate] = useState(new Date(Date.now() - 24 * 60 * 60 * 1000)); // Default to 24h ago + const [endDate, setEndDate] = useState(new Date()); + + // Reset date range when dialog opens to ensure fresh data + useEffect(() => { + if (isOpen) { + setStartDate(new Date(Date.now() - 24 * 60 * 60 * 1000)); + setEndDate(new Date()); + } + }, [isOpen]); + + // Handle date range filter changes + const handleDateRangeChange = (start: Date, end: Date, option: DateRangeOption) => { + console.log(`ServiceHistoryDialog: Date range changed to ${start.toISOString()} - ${end.toISOString()}`); + setStartDate(start); + setEndDate(end); + }; + + return ( + + + + + {selectedService?.name} - Uptime History + + + Showing the most recent uptime checks for this service. + {selectedService?.interval && ( + Checked every {selectedService.interval} seconds. + )} + + + +
+ +
+ + {selectedService && ( + + )} +
+
+ ); +}; diff --git a/application/src/components/services/ServiceMonitoringButton.tsx b/application/src/components/services/ServiceMonitoringButton.tsx new file mode 100644 index 0000000..03dd30f --- /dev/null +++ b/application/src/components/services/ServiceMonitoringButton.tsx @@ -0,0 +1,103 @@ + +import { useState, useEffect } from "react"; +import { Button } from "@/components/ui/button"; +import { Play, Pause } from "lucide-react"; +import { Service } from "@/types/service.types"; +import { serviceService } from "@/services/serviceService"; +import { useToast } from "@/hooks/use-toast"; +import { notificationService } from "@/services/notificationService"; + +interface ServiceMonitoringButtonProps { + service: Service; + onStatusChange?: (newStatus: "up" | "down" | "paused" | "warning") => void; +} + +export function ServiceMonitoringButton({ service, onStatusChange }: ServiceMonitoringButtonProps) { + const [isMonitoring, setIsMonitoring] = useState(service.status !== "paused"); + const [isLoading, setIsLoading] = useState(false); + const { toast } = useToast(); + + // Update local state when service prop changes + useEffect(() => { + setIsMonitoring(service.status !== "paused"); + }, [service.status]); + + const handleToggleMonitoring = async () => { + try { + setIsLoading(true); + + if (isMonitoring) { + // Pause monitoring + console.log(`Pausing monitoring for service ${service.id} (${service.name})`); + await serviceService.pauseMonitoring(service.id); + setIsMonitoring(false); + + if (onStatusChange) onStatusChange("paused"); + + // Send notification for paused status (only here, not in pauseMonitoring.ts) + if (service.alerts !== "muted") { + console.log("Sending pause notification from UI component"); + // IMPORTANT: Direct call to the notification service to ensure a message is sent + await notificationService.sendNotification({ + service: service, + status: "paused", + timestamp: new Date().toISOString(), + }); + } + + toast({ + title: "Monitoring paused", + description: `Monitoring for ${service.name} has been paused.`, + }); + } else { + // Start/resume monitoring + console.log(`Starting monitoring for service ${service.id} (${service.name})`); + + // First ensure we update the status in the database to not be paused anymore + await serviceService.resumeMonitoring(service.id); + setIsMonitoring(true); + + // Perform an immediate check + await serviceService.startMonitoringService(service.id); + + toast({ + title: "Monitoring resumed", + description: `Monitoring for ${service.name} has been resumed. First check is running now.`, + }); + } + } catch (error) { + console.error("Error toggling monitoring:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to change monitoring status. Please try again.", + }); + } finally { + setIsLoading(false); + } + }; + + return ( + + ); +} diff --git a/application/src/components/services/ServiceNotFound.tsx b/application/src/components/services/ServiceNotFound.tsx new file mode 100644 index 0000000..6873da0 --- /dev/null +++ b/application/src/components/services/ServiceNotFound.tsx @@ -0,0 +1,25 @@ + +import { AlertTriangle } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { useNavigate } from "react-router-dom"; + +export function ServiceNotFound() { + const navigate = useNavigate(); + + return ( +
+
+ +

Service Not Found

+

The service you're looking for doesn't exist or has been deleted.

+ +
+
+ ); +} diff --git a/application/src/components/services/ServiceRow.tsx b/application/src/components/services/ServiceRow.tsx new file mode 100644 index 0000000..1800849 --- /dev/null +++ b/application/src/components/services/ServiceRow.tsx @@ -0,0 +1,80 @@ + +import React from "react"; +import { TableRow, TableCell } from "@/components/ui/table"; +import { Service } from "@/types/service.types"; +import { StatusBadge } from "./StatusBadge"; +import { UptimeBar } from "./UptimeBar"; +import { LastCheckedTime } from "./LastCheckedTime"; +import { + ServiceRowActions, + ServiceRowHeader, + ServiceRowResponseTime +} from "./service-row"; +import { useTheme } from "@/contexts/ThemeContext"; + +interface ServiceRowProps { + service: Service; + onViewDetail: (service: Service) => void; + onPauseResume: (service: Service) => Promise; + onEdit: (service: Service) => void; + onDelete: (service: Service) => void; + onMuteAlerts?: (service: Service) => Promise; +} + +export const ServiceRow = ({ + service, + onViewDetail, + onPauseResume, + onEdit, + onDelete, + onMuteAlerts +}: ServiceRowProps) => { + const { theme } = useTheme(); + const handleRowClick = () => { + onViewDetail(service); + }; + + // Get the timestamp to display - use only lastChecked since that's what's defined in the Service type + const displayTimestamp = service.lastChecked || new Date().toLocaleString(); + + return ( + + e.stopPropagation()}> + + + e.stopPropagation()} className={`text-base py-4 ${theme === 'dark' ? 'text-gray-300' : 'text-gray-700'}`}> + {service.type} + + e.stopPropagation()} className="py-4"> + + + e.stopPropagation()} className="py-4"> + + + e.stopPropagation()}> + + + e.stopPropagation()} className="py-4"> + + + e.stopPropagation()} className="py-4"> + + + + ); +}; diff --git a/application/src/components/services/ServiceStatsCards.tsx b/application/src/components/services/ServiceStatsCards.tsx new file mode 100644 index 0000000..db469e1 --- /dev/null +++ b/application/src/components/services/ServiceStatsCards.tsx @@ -0,0 +1,171 @@ + +import { Clock, Server, ArrowUp, ArrowDown } from "lucide-react"; +import { Service, UptimeData } from "@/types/service.types"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { useMemo } from "react"; +import { formatDistanceStrict } from "date-fns"; + +interface ServiceStatsCardsProps { + service: Service; + uptimeData: UptimeData[]; +} + +export function ServiceStatsCards({ service, uptimeData }: ServiceStatsCardsProps) { + // Calculate uptime percentage + const calculateUptimePercentage = () => { + if (uptimeData.length === 0) return 100; + + const totalChecks = uptimeData.length; + const upChecks = uptimeData.filter(data => data.status === "up").length; + return Math.round((upChecks / totalChecks) * 100); + }; + + // Calculate total uptime/downtime + const uptimeStats = useMemo(() => { + if (uptimeData.length === 0) { + return { + totalUptimeFormatted: "N/A", + totalDowntimeFormatted: "N/A", + currentStatusDuration: "N/A" + }; + } + + // Sort data by timestamp for chronological analysis + const sortedData = [...uptimeData].sort((a, b) => + new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime() + ); + + // Get the status change events + const statusChanges = sortedData.reduce((changes, check, index) => { + if (index === 0 || (index > 0 && sortedData[index-1].status !== check.status)) { + changes.push(check); + } + return changes; + }, [] as UptimeData[]); + + let totalUptime = 0; + let totalDowntime = 0; + let currentStatus = service.status; + let lastChangeTime = new Date(); + + // Calculate durations between status changes + for (let i = 0; i < statusChanges.length; i++) { + const currentChange = statusChanges[i]; + const nextChange = statusChanges[i + 1]; + + if (nextChange) { + const duration = new Date(nextChange.timestamp).getTime() - new Date(currentChange.timestamp).getTime(); + + if (currentChange.status === "up") { + totalUptime += duration; + } else { + totalDowntime += duration; + } + } else { + // For the last status, calculate time until now + lastChangeTime = new Date(currentChange.timestamp); + currentStatus = currentChange.status; + } + } + + // Add time from last change until now for current status + const now = new Date(); + const sinceLastChange = now.getTime() - lastChangeTime.getTime(); + + if (currentStatus === "up") { + totalUptime += sinceLastChange; + } else if (currentStatus === "down") { + totalDowntime += sinceLastChange; + } + + // Format durations + const formatDuration = (ms: number): string => { + if (ms < 1000) return "0s"; + return formatDistanceStrict(0, ms, { addSuffix: false }); + }; + + return { + totalUptimeFormatted: formatDuration(totalUptime), + totalDowntimeFormatted: formatDuration(totalDowntime), + currentStatusDuration: formatDuration(sinceLastChange) + }; + }, [uptimeData, service.status]); + + // Calculate average response time from recent checks + const calculateAverageResponseTime = () => { + const upChecks = uptimeData.filter(data => data.status === "up" && data.responseTime > 0); + if (upChecks.length === 0) return service.responseTime || 0; + + const sum = upChecks.reduce((total, check) => total + check.responseTime, 0); + return Math.round((sum / upChecks.length) * 100) / 100; // Two decimal precision + }; + + const uptimePercentage = calculateUptimePercentage(); + const avgResponseTime = calculateAverageResponseTime(); + // Define upChecks here so we can use it in both the calculation and the JSX + const upChecks = uptimeData.filter(data => data.status === "up" && data.responseTime > 0); + + return ( +
+ + + Response Time + + +
+ {service.responseTime}ms +
+

Last checked at {service.lastChecked}

+ {avgResponseTime > 0 && avgResponseTime !== service.responseTime && ( +

Avg: {avgResponseTime}ms (last {upChecks.length} up checks)

+ )} +
+
+ + + + Uptime + + +
+ {uptimePercentage}% +
+

Based on last {uptimeData.length} checks

+
+
+ + Total uptime: {uptimeStats.totalUptimeFormatted} +
+
+ + Total downtime: {uptimeStats.totalDowntimeFormatted} +
+ {service.status !== "paused" && ( +
+ + {service.status === "up" ? "Up" : "Down"} for {uptimeStats.currentStatusDuration} + +
+ )} +
+
+
+ + + + Monitoring Settings + + +
+ + Checked every {service.interval} seconds +
+
+ + {service.type} monitoring +
+
+
+
+ ); +} diff --git a/application/src/components/services/ServiceUptimeHistory.tsx b/application/src/components/services/ServiceUptimeHistory.tsx new file mode 100644 index 0000000..11fa123 --- /dev/null +++ b/application/src/components/services/ServiceUptimeHistory.tsx @@ -0,0 +1,138 @@ + +import { useQuery } from "@tanstack/react-query"; +import { UptimeData } from "@/types/service.types"; +import { uptimeService } from "@/services/uptimeService"; +import { format, parseISO } from "date-fns"; +import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"; +import { Badge } from "@/components/ui/badge"; +import { useTheme } from "@/contexts/ThemeContext"; +import { Check, X, AlertTriangle, Pause } from "lucide-react"; + +interface ServiceUptimeHistoryProps { + serviceId: string; + startDate?: Date; + endDate?: Date; +} + +export function ServiceUptimeHistory({ + serviceId, + startDate = new Date(Date.now() - 24 * 60 * 60 * 1000), + endDate = new Date() +}: ServiceUptimeHistoryProps) { + const { theme } = useTheme(); + const { data: uptimeHistory, isLoading, error } = useQuery({ + queryKey: ['uptimeHistory', serviceId, startDate?.toISOString(), endDate?.toISOString()], + queryFn: () => uptimeService.getUptimeHistory(serviceId, 200, startDate, endDate), + enabled: !!serviceId, + refetchInterval: 5000, // Refresh UI every 5 seconds + }); + + if (isLoading) { + return ( +
+

Loading uptime history...

+
+ ); + } + + if (error) { + return ( +
+

Error loading uptime history.

+
+ ); + } + + if (!uptimeHistory || uptimeHistory.length === 0) { + return ( +
+

No uptime history available for the selected time period.

+
+ ); + } + + // Function to get appropriate status badge styling + const getStatusBadge = (status: string) => { + switch(status) { + case 'up': + return { + variant: 'default' as const, + className: 'bg-emerald-800 text-white hover:bg-emerald-700', + icon: + }; + case 'warning': + return { + variant: 'outline' as const, + className: 'bg-yellow-800/80 text-yellow-300 border-yellow-700 hover:bg-yellow-800', + icon: + }; + case 'paused': + return { + variant: 'outline' as const, + className: 'bg-gray-800/50 text-gray-400 border-gray-700 hover:bg-gray-800', + icon: + }; + default: + return { + variant: 'destructive' as const, + className: '', + icon: + }; + } + }; + + return ( +
+ + + + Time + Status + Response Time + + + + {uptimeHistory.map((record) => { + const statusBadge = getStatusBadge(record.status); + const isResponseTimeHigh = record.responseTime >= 1000; + + return ( + + + {format(parseISO(record.timestamp), 'yyyy-MM-dd HH:mm:ss')} + + + + + {statusBadge.icon} + {record.status === 'up' ? 'Up' : + record.status === 'down' ? 'Down' : + record.status === 'warning' ? 'Warning' : 'Paused'} + + + + +
+ {record.responseTime > 0 ? ( + <> + + {record.responseTime}ms + + {isResponseTimeHigh && ( + + )} + + ) : 'N/A'} +
+
+
+ ); + })} +
+
+
+ ); +} diff --git a/application/src/components/services/ServicesTableContainer.tsx b/application/src/components/services/ServicesTableContainer.tsx new file mode 100644 index 0000000..d8e65db --- /dev/null +++ b/application/src/components/services/ServicesTableContainer.tsx @@ -0,0 +1,94 @@ + +import { useEffect } from "react"; +import { Service } from "@/types/service.types"; +import { ServicesTableView } from "./ServicesTableView"; +import { ServiceDeleteDialog } from "./ServiceDeleteDialog"; +import { ServiceHistoryDialog } from "./ServiceHistoryDialog"; +import { ServiceEditDialog } from "./ServiceEditDialog"; +import { useServiceActions, useDialogState } from "./hooks"; + +interface ServicesTableContainerProps { + services: Service[]; +} + +export const ServicesTableContainer = ({ services }: ServicesTableContainerProps) => { + const { + services: localServices, + selectedService, + isDeleting, + setSelectedService, + updateServices, + handleViewDetail, + handlePauseResume, + handleEdit, + handleDelete, + confirmDelete, + handleMuteAlerts + } = useServiceActions(services); + + const { + isHistoryDialogOpen, + isDeleteDialogOpen, + isEditDialogOpen, + setIsHistoryDialogOpen, + setIsDeleteDialogOpen, + handleEditDialogChange, + handleDeleteDialogChange + } = useDialogState(); + + // Update local services state when props change + useEffect(() => { + updateServices(services); + }, [services]); + + // Handler functions that combine local state management + const onEdit = (service: Service) => { + const selectedService = handleEdit(service); + setTimeout(() => { + handleEditDialogChange(true); + }, 0); + }; + + const onDelete = (service: Service) => { + handleDelete(service); + setIsDeleteDialogOpen(true); + }; + + const openHistoryDialog = (service: Service) => { + setSelectedService(service); + setIsHistoryDialogOpen(true); + }; + + return ( +
+ + + + + handleDeleteDialogChange(open, isDeleting)} + selectedService={selectedService} + onConfirmDelete={confirmDelete} + isDeleting={isDeleting} + /> + + +
+ ); +} diff --git a/application/src/components/services/ServicesTableView.tsx b/application/src/components/services/ServicesTableView.tsx new file mode 100644 index 0000000..5cdb36c --- /dev/null +++ b/application/src/components/services/ServicesTableView.tsx @@ -0,0 +1,68 @@ + +import { Table, TableHeader, TableRow, TableHead, TableBody, TableCell } from "@/components/ui/table"; +import { Service } from "@/types/service.types"; +import { ServiceRow } from "@/components/services/ServiceRow"; +import { useTheme } from "@/contexts/ThemeContext"; +import { useLanguage } from "@/contexts/LanguageContext"; + +interface ServicesTableViewProps { + services: Service[]; + onViewDetail: (service: Service) => void; + onPauseResume: (service: Service) => Promise; + onEdit: (service: Service) => void; + onDelete: (service: Service) => void; + onMuteAlerts?: (service: Service) => Promise; +} + +export const ServicesTableView = ({ + services, + onViewDetail, + onPauseResume, + onEdit, + onDelete, + onMuteAlerts +}: ServicesTableViewProps) => { + const { theme } = useTheme(); + const { t } = useLanguage(); + + return ( +
+
+ + + + {t("serviceName")} + {t("serviceType")} + {t("serviceStatus")} + {t("responseTime")} + {t("uptime")} + {t("lastChecked")} + {t("actions")} + + + + {services.length > 0 ? ( + services.map((service) => ( + + )) + ) : ( + + + {t("noServices")} + + + )} + +
+
+
+ ); +}; diff --git a/application/src/components/services/StatusBadge.tsx b/application/src/components/services/StatusBadge.tsx new file mode 100644 index 0000000..2621b0a --- /dev/null +++ b/application/src/components/services/StatusBadge.tsx @@ -0,0 +1,71 @@ + +import React from "react"; +import { Check, X, Pause, AlertTriangle } from "lucide-react"; + +export interface StatusBadgeProps { + status: string; + size?: "sm" | "md" | "lg"; +} + +export const StatusBadge = ({ status, size = "sm" }: StatusBadgeProps) => { + // Determine the sizing classes based on the size prop + const getSizeClasses = () => { + switch (size) { + case "lg": + return "px-3 py-1.5 text-sm gap-1.5"; + case "md": + return "px-2.5 py-1 text-sm gap-1.5"; + case "sm": + default: + return "px-2 py-0.5 text-xs gap-0.5"; + } + }; + + const getIconSize = () => { + switch (size) { + case "lg": + return "h-4 w-4"; + case "md": + return "h-4 w-4"; + case "sm": + default: + return "h-3 w-3"; + } + }; + + const sizeClasses = getSizeClasses(); + const iconSize = getIconSize(); + + switch (status) { + case "up": + return ( +
+ + Up +
+ ); + case "down": + return ( +
+ + Down +
+ ); + case "warning": + return ( +
+ + Warning +
+ ); + case "paused": + return ( +
+ + Paused +
+ ); + default: + return null; + } +}; diff --git a/application/src/components/services/UptimeBar.tsx b/application/src/components/services/UptimeBar.tsx new file mode 100644 index 0000000..fb0e87c --- /dev/null +++ b/application/src/components/services/UptimeBar.tsx @@ -0,0 +1,210 @@ + +import React, { useState, useEffect } from "react"; +import { Progress } from "@/components/ui/progress"; +import { Check, X, AlertTriangle, Pause, Clock, Info, RefreshCcw } from "lucide-react"; +import { useTheme } from "@/contexts/ThemeContext"; +import { + HoverCard, + HoverCardContent, + HoverCardTrigger +} from "@/components/ui/hover-card"; +import { Tooltip, TooltipContent, TooltipProvider, TooltipTrigger } from "@/components/ui/tooltip"; +import { uptimeService } from "@/services/uptimeService"; +import { UptimeData } from "@/types/service.types"; +import { useQuery } from "@tanstack/react-query"; +import { Button } from "@/components/ui/button"; + +interface UptimeBarProps { + uptime: number; + status: string; + serviceId?: string; // Optional serviceId to fetch history +} + +export const UptimeBar = ({ uptime, status, serviceId }: UptimeBarProps) => { + const { theme } = useTheme(); + const [historyItems, setHistoryItems] = useState([]); + + // Fetch real uptime history data if serviceId is provided with improved caching and error handling + const { data: uptimeData, isLoading, error, isFetching, refetch } = useQuery({ + queryKey: ['uptimeHistory', serviceId], + queryFn: () => serviceId ? uptimeService.getUptimeHistory(serviceId, 20) : Promise.resolve([]), + enabled: !!serviceId, + refetchInterval: 30000, // Refresh every 30 seconds + staleTime: 15000, // Consider data fresh for 15 seconds + placeholderData: (previousData) => previousData, // Show previous data while refetching + retry: 3, // Retry failed requests three times + retryDelay: (attemptIndex) => Math.min(1000 * 2 ** attemptIndex, 10000), // Exponential backoff with max 10s + }); + + // Update history items when data changes + useEffect(() => { + if (uptimeData && uptimeData.length > 0) { + setHistoryItems(uptimeData); + } else if (status === "paused" || (uptimeData && uptimeData.length === 0)) { + // For paused services with no history, or empty history data, show all as paused + const statusValue = (status === "up" || status === "down" || status === "warning" || status === "paused") + ? status + : "paused"; // Default to paused if not a valid status + + const placeholderHistory: UptimeData[] = Array(20).fill(null).map((_, index) => ({ + id: `placeholder-${index}`, + serviceId: serviceId || "", + timestamp: new Date().toISOString(), + status: statusValue as "up" | "down" | "warning" | "paused", + responseTime: 0 + })); + setHistoryItems(placeholderHistory); + } + }, [uptimeData, serviceId, status]); + + // Get appropriate color classes for each status type + const getStatusColor = (itemStatus: string) => { + switch(itemStatus) { + case "up": + return theme === "dark" ? "bg-emerald-500" : "bg-emerald-500"; + case "down": + return theme === "dark" ? "bg-red-500" : "bg-red-500"; + case "warning": + return theme === "dark" ? "bg-yellow-500" : "bg-yellow-500"; + case "paused": + default: + return theme === "dark" ? "bg-gray-500" : "bg-gray-400"; + } + }; + + // Get status label + const getStatusLabel = (itemStatus: string): string => { + switch(itemStatus) { + case "up": return "Online"; + case "down": return "Offline"; + case "warning": return "Degraded"; + case "paused": return "Paused"; + default: return "Unknown"; + } + }; + + // Format timestamp for display + const formatTimestamp = (timestamp: string): string => { + try { + return new Date(timestamp).toLocaleString([], { + hour: '2-digit', + minute: '2-digit', + month: 'short', + day: 'numeric' + }); + } catch (e) { + return timestamp; + } + }; + + // If still loading and no history, show improved loading state + if ((isLoading || isFetching) && historyItems.length === 0) { + // Show skeleton loading UI instead of text + return ( +
+
+ {Array(20).fill(0).map((_, index) => ( +
+ ))} +
+
+ + +
+
+ ); + } + + // If there's an error and no history, show improved error state with retry button + if (error && historyItems.length === 0) { + // Provide visual error state that matches the design system + return ( +
+
+ {Array(20).fill(0).map((_, index) => ( +
+ ))} +
+
+ {Math.round(uptime)}% uptime + +
+
+ ); + } + + // Ensure we always have 20 items by padding with the last known status + const displayItems = [...historyItems]; + if (displayItems.length < 20) { + const lastItem = displayItems.length > 0 ? displayItems[displayItems.length - 1] : null; + const lastStatus = lastItem ? lastItem.status : + (status === "up" || status === "down" || status === "warning" || status === "paused") ? + status as "up" | "down" | "warning" | "paused" : "paused"; + + const paddingItems: UptimeData[] = Array(20 - displayItems.length).fill(null).map((_, index) => ({ + id: `padding-${index}`, + serviceId: serviceId || "", + timestamp: new Date().toISOString(), + status: lastStatus, + responseTime: 0 + })); + displayItems.push(...paddingItems); + } + + // Limit to 20 items for display + const limitedItems = displayItems.slice(0, 20); + + return ( + +
+
+ {limitedItems.map((item, index) => ( + + +
+ + +
+
{getStatusLabel(item.status)}
+
+ {item.status !== "paused" && item.status !== "down" ? + `${item.responseTime}ms` : + "No response"} +
+
+ {formatTimestamp(item.timestamp)} +
+
+
+ + ))} +
+
+ + {Math.round(uptime)}% uptime + + + Last 20 checks + +
+
+ + ); +} diff --git a/application/src/components/services/add-service/ServiceBasicFields.tsx b/application/src/components/services/add-service/ServiceBasicFields.tsx new file mode 100644 index 0000000..884818c --- /dev/null +++ b/application/src/components/services/add-service/ServiceBasicFields.tsx @@ -0,0 +1,55 @@ + +import { FormControl, FormField, FormItem, FormLabel, FormMessage } from "@/components/ui/form"; +import { Input } from "@/components/ui/input"; +import { UseFormReturn } from "react-hook-form"; +import { ServiceFormData } from "./types"; + +interface ServiceBasicFieldsProps { + form: UseFormReturn; +} + +export function ServiceBasicFields({ form }: ServiceBasicFieldsProps) { + return ( + <> + ( + + Service Name + + + + + + )} + /> + + ( + + Service URL + + { + console.log("URL field changed:", e.target.value); + field.onChange(e); + }} + /> + + + + )} + /> + + ); +} diff --git a/application/src/components/services/add-service/ServiceConfigFields.tsx b/application/src/components/services/add-service/ServiceConfigFields.tsx new file mode 100644 index 0000000..6635833 --- /dev/null +++ b/application/src/components/services/add-service/ServiceConfigFields.tsx @@ -0,0 +1,51 @@ + +import { FormControl, FormField, FormItem, FormLabel } from "@/components/ui/form"; +import { Input } from "@/components/ui/input"; +import { UseFormReturn } from "react-hook-form"; +import { ServiceFormData } from "./types"; + +interface ServiceConfigFieldsProps { + form: UseFormReturn; +} + +export function ServiceConfigFields({ form }: ServiceConfigFieldsProps) { + return ( + <> + ( + + Heartbeat Interval + + + + + )} + /> + + ( + + Maximum Retries + + + + + )} + /> + + ); +} diff --git a/application/src/components/services/add-service/ServiceForm.tsx b/application/src/components/services/add-service/ServiceForm.tsx new file mode 100644 index 0000000..fa7f127 --- /dev/null +++ b/application/src/components/services/add-service/ServiceForm.tsx @@ -0,0 +1,143 @@ + +import { Form } from "@/components/ui/form"; +import { useForm } from "react-hook-form"; +import { zodResolver } from "@hookform/resolvers/zod"; +import { useState, useEffect } from "react"; +import { useToast } from "@/hooks/use-toast"; +import { useQueryClient } from "@tanstack/react-query"; +import { serviceSchema, ServiceFormData } from "./types"; +import { ServiceBasicFields } from "./ServiceBasicFields"; +import { ServiceTypeField } from "./ServiceTypeField"; +import { ServiceConfigFields } from "./ServiceConfigFields"; +import { ServiceNotificationFields } from "./ServiceNotificationFields"; +import { ServiceFormActions } from "./ServiceFormActions"; +import { serviceService } from "@/services/serviceService"; +import { Service } from "@/types/service.types"; + +interface ServiceFormProps { + onSuccess: () => void; + onCancel: () => void; + initialData?: Service | null; + isEdit?: boolean; + onSubmitStart?: () => void; +} + +export function ServiceForm({ + onSuccess, + onCancel, + initialData, + isEdit = false, + onSubmitStart +}: ServiceFormProps) { + const { toast } = useToast(); + const [isSubmitting, setIsSubmitting] = useState(false); + + // Initialize form with default values + const form = useForm({ + resolver: zodResolver(serviceSchema), + defaultValues: { + name: "", + type: "http", + url: "", + interval: "60", + retries: "3", + notificationChannel: "", + alertTemplate: "", + }, + mode: "onBlur", + }); + + // Populate form when initialData changes (separate from initialization) + useEffect(() => { + if (initialData && isEdit) { + // Reset the form with initial data values + form.reset({ + name: initialData.name || "", + type: (initialData.type || "http").toLowerCase(), + url: initialData.url || "", + interval: String(initialData.interval || 60), + retries: String(initialData.retries || 3), + notificationChannel: initialData.notificationChannel || "", + alertTemplate: initialData.alertTemplate || "", + }); + + // Log for debugging + console.log("Populating form with URL:", initialData.url); + } + }, [initialData, isEdit, form]); + + const handleSubmit = async (data: ServiceFormData) => { + if (isSubmitting) return; + + setIsSubmitting(true); + if (onSubmitStart) onSubmitStart(); + + try { + console.log("Form data being submitted:", data); // Debug log for submitted data + + if (isEdit && initialData) { + // Update existing service + await serviceService.updateService(initialData.id, { + name: data.name, + type: data.type, + url: data.url, // Ensure URL is included here + interval: parseInt(data.interval), + retries: parseInt(data.retries), + notificationChannel: data.notificationChannel || undefined, + alertTemplate: data.alertTemplate || undefined, + }); + + toast({ + title: "Service updated", + description: `${data.name} has been updated successfully.`, + }); + } else { + // Create new service + await serviceService.createService({ + name: data.name, + type: data.type, + url: data.url, // Ensure URL is included here + interval: parseInt(data.interval), + retries: parseInt(data.retries), + notificationChannel: data.notificationChannel || undefined, + alertTemplate: data.alertTemplate || undefined, + }); + + toast({ + title: "Service created", + description: `${data.name} has been added to monitoring.`, + }); + } + + onSuccess(); + if (!isEdit) { + form.reset(); + } + } catch (error) { + console.error(`Error ${isEdit ? 'updating' : 'creating'} service:`, error); + toast({ + title: `Failed to ${isEdit ? 'update' : 'create'} service`, + description: `An error occurred while ${isEdit ? 'updating' : 'creating'} the service.`, + variant: "destructive", + }); + } finally { + setIsSubmitting(false); + } + }; + + return ( +
+ + + + + + + + + ); +} diff --git a/application/src/components/services/add-service/ServiceFormActions.tsx b/application/src/components/services/add-service/ServiceFormActions.tsx new file mode 100644 index 0000000..a012012 --- /dev/null +++ b/application/src/components/services/add-service/ServiceFormActions.tsx @@ -0,0 +1,51 @@ + +import { Button } from "@/components/ui/button"; +import { Loader2 } from "lucide-react"; +import { MouseEvent } from "react"; + +interface ServiceFormActionsProps { + isSubmitting: boolean; + onCancel: () => void; + submitLabel?: string; +} + +export function ServiceFormActions({ + isSubmitting, + onCancel, + submitLabel = "Create Service" +}: ServiceFormActionsProps) { + const handleCancel = (e: MouseEvent) => { + e.preventDefault(); + if (!isSubmitting) { + onCancel(); + } + }; + + return ( +
+ + +
+ ); +} diff --git a/application/src/components/services/add-service/ServiceNotificationFields.tsx b/application/src/components/services/add-service/ServiceNotificationFields.tsx new file mode 100644 index 0000000..7e3d719 --- /dev/null +++ b/application/src/components/services/add-service/ServiceNotificationFields.tsx @@ -0,0 +1,139 @@ + +import { FormControl, FormField, FormItem, FormLabel } from "@/components/ui/form"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { UseFormReturn } from "react-hook-form"; +import { ServiceFormData } from "./types"; +import { useQuery } from "@tanstack/react-query"; +import { templateService } from "@/services/templateService"; +import { alertConfigService, AlertConfiguration } from "@/services/alertConfigService"; +import { useState, useEffect } from "react"; + +interface ServiceNotificationFieldsProps { + form: UseFormReturn; +} + +export function ServiceNotificationFields({ form }: ServiceNotificationFieldsProps) { + const [alertConfigs, setAlertConfigs] = useState([]); + + // Get the current form values for debugging + const notificationChannel = form.watch("notificationChannel"); + const alertTemplate = form.watch("alertTemplate"); + + console.log("Current notification values:", { + notificationChannel, + alertTemplate + }); + + // Fetch alert configurations for notification channels + const { data: alertConfigsData } = useQuery({ + queryKey: ['alertConfigs'], + queryFn: () => alertConfigService.getAlertConfigurations(), + }); + + // Fetch templates for template selection + const { data: templates } = useQuery({ + queryKey: ['templates'], + queryFn: () => templateService.getTemplates(), + }); + + // Update alert configs when data is loaded + useEffect(() => { + if (alertConfigsData) { + setAlertConfigs(alertConfigsData); + + // Debug log to check what alert configs are loaded + console.log("Loaded alert configurations:", alertConfigsData); + } + }, [alertConfigsData]); + + // Log when form values change to debug + useEffect(() => { + console.log("Notification values changed:", { + notificationChannel: form.getValues("notificationChannel"), + alertTemplate: form.getValues("alertTemplate") + }); + }, [form.watch("notificationChannel"), form.watch("alertTemplate")]); + + return ( + <> + { + // Important: We need to preserve the actual value for notification channel + const fieldValue = field.value || ""; + const displayValue = fieldValue === "" ? "none" : fieldValue; + + console.log("Rendering notification channel field with value:", { + fieldValue, + displayValue + }); + + return ( + + Notification Channel + + + + + ); + }} + /> + + { + // Don't convert existing values to "default" + const displayValue = field.value || "default"; + console.log("Rendering alert template field with value:", displayValue); + + return ( + + Alert Template + + + + + ); + }} + /> + + ); +} diff --git a/application/src/components/services/add-service/ServiceTypeField.tsx b/application/src/components/services/add-service/ServiceTypeField.tsx new file mode 100644 index 0000000..7182411 --- /dev/null +++ b/application/src/components/services/add-service/ServiceTypeField.tsx @@ -0,0 +1,58 @@ + +import { FormControl, FormField, FormItem, FormLabel } from "@/components/ui/form"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { Globe } from "lucide-react"; +import { UseFormReturn } from "react-hook-form"; +import { ServiceFormData } from "./types"; + +interface ServiceTypeFieldProps { + form: UseFormReturn; +} + +export function ServiceTypeField({ form }: ServiceTypeFieldProps) { + return ( + ( + + Service Type + + + + + )} + /> + ); +} diff --git a/application/src/components/services/add-service/index.ts b/application/src/components/services/add-service/index.ts new file mode 100644 index 0000000..aa5eb2a --- /dev/null +++ b/application/src/components/services/add-service/index.ts @@ -0,0 +1,3 @@ + +export * from "./ServiceForm"; +export * from "./types"; diff --git a/application/src/components/services/add-service/types.ts b/application/src/components/services/add-service/types.ts new file mode 100644 index 0000000..eb3ac47 --- /dev/null +++ b/application/src/components/services/add-service/types.ts @@ -0,0 +1,14 @@ + +import { z } from "zod"; + +export const serviceSchema = z.object({ + name: z.string().min(1, "Service name is required"), + type: z.string().min(1, "Service type is required"), + url: z.string().min(1, "Service URL is required"), + interval: z.string().min(1, "Heartbeat interval is required"), + retries: z.string().min(1, "Maximum retries is required"), + notificationChannel: z.string().optional(), + alertTemplate: z.string().optional(), +}); + +export type ServiceFormData = z.infer; diff --git a/application/src/components/services/hooks/index.ts b/application/src/components/services/hooks/index.ts new file mode 100644 index 0000000..2cb6785 --- /dev/null +++ b/application/src/components/services/hooks/index.ts @@ -0,0 +1,3 @@ + +export * from './useServiceActions'; +export * from './useDialogState'; diff --git a/application/src/components/services/hooks/useDialogState.ts b/application/src/components/services/hooks/useDialogState.ts new file mode 100644 index 0000000..7ebe89c --- /dev/null +++ b/application/src/components/services/hooks/useDialogState.ts @@ -0,0 +1,30 @@ + +import { useState } from "react"; + +export function useDialogState() { + const [isHistoryDialogOpen, setIsHistoryDialogOpen] = useState(false); + const [isDeleteDialogOpen, setIsDeleteDialogOpen] = useState(false); + const [isEditDialogOpen, setIsEditDialogOpen] = useState(false); + + const handleEditDialogChange = (open: boolean) => { + setIsEditDialogOpen(open); + }; + + const handleDeleteDialogChange = (open: boolean, isDeleting: boolean = false) => { + // Only allow closing if not currently deleting + if (!isDeleting || !open) { + setIsDeleteDialogOpen(open); + } + }; + + return { + isHistoryDialogOpen, + isDeleteDialogOpen, + isEditDialogOpen, + setIsHistoryDialogOpen, + setIsDeleteDialogOpen, + setIsEditDialogOpen, + handleEditDialogChange, + handleDeleteDialogChange + }; +} diff --git a/application/src/components/services/hooks/useServiceActions.ts b/application/src/components/services/hooks/useServiceActions.ts new file mode 100644 index 0000000..b7f3ee8 --- /dev/null +++ b/application/src/components/services/hooks/useServiceActions.ts @@ -0,0 +1,205 @@ + +import { useState } from "react"; +import { useToast } from "@/hooks/use-toast"; +import { useNavigate } from "react-router-dom"; +import { useQueryClient } from "@tanstack/react-query"; +import { pb } from "@/lib/pocketbase"; +import { Service } from "@/types/service.types"; +import { serviceService } from "@/services/serviceService"; +import { recordMuteStatusChange } from "@/services/monitoring/utils/notificationUtils"; + +export function useServiceActions(initialServices: Service[]) { + const [services, setServices] = useState(initialServices); + const [selectedService, setSelectedService] = useState(null); + const [isDeleting, setIsDeleting] = useState(false); + const { toast } = useToast(); + const navigate = useNavigate(); + const queryClient = useQueryClient(); + + // Update services state when props change + const updateServices = (newServices: Service[]) => { + if (JSON.stringify(services) !== JSON.stringify(newServices)) { + setServices(newServices); + } + }; + + const handleViewDetail = (service: Service) => { + navigate(`/service/${service.id}`); + }; + + const handlePauseResume = async (service: Service) => { + try { + if (service.status === "paused") { + // Resume monitoring + await serviceService.startMonitoringService(service.id); + toast({ + title: "Service resumed", + description: `${service.name} monitoring has been resumed successfully.`, + }); + + // Update local state - ensure status is properly typed as "up" + const updatedServices = services.map(s => + s.id === service.id ? { ...s, status: "up" as const } : s + ); + setServices(updatedServices); + } else { + // Pause monitoring + await serviceService.pauseMonitoring(service.id); + + // Get the pause time and update local state + const pauseTime = new Date().toISOString(); + const updatedServices = services.map(s => + s.id === service.id ? { ...s, status: "paused" as const, lastChecked: pauseTime } : s + ); + setServices(updatedServices); + + toast({ + title: "Service paused", + description: `${service.name} monitoring has been paused successfully.`, + }); + } + + // Invalidate the services query to trigger a refetch + queryClient.invalidateQueries({ queryKey: ["services"] }); + } catch (error) { + console.error("Error updating service status:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to update service status. Please try again.", + }); + } + }; + + const handleEdit = (service: Service) => { + setSelectedService({...service}); // Create a copy to avoid reference issues + return service; + }; + + const handleDelete = (service: Service) => { + setSelectedService(service); + return service; + }; + + // Modified to return Promise instead of Promise + const confirmDelete = async (): Promise => { + if (!selectedService || isDeleting) return; + + try { + setIsDeleting(true); + + // First try to pause monitoring for this service to prevent any concurrency issues + if (selectedService.status !== "paused") { + await serviceService.pauseMonitoring(selectedService.id); + } + + // Set a timeout to prevent hanging UI + const timeoutPromise = new Promise((_, reject) => { + setTimeout(() => reject(new Error("Delete request timed out")), 10000); + }); + + const deletePromise = pb.collection('services').delete(selectedService.id); + await Promise.race([deletePromise, timeoutPromise]); + + toast({ + title: "Service deleted", + description: `${selectedService.name} has been deleted successfully.`, + }); + + // Update local state + const updatedServices = services.filter(s => s.id !== selectedService.id); + setServices(updatedServices); + + // Invalidate the services query to trigger a refetch + queryClient.invalidateQueries({ queryKey: ["services"] }); + + setSelectedService(null); + } catch (error) { + console.error("Error deleting service:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to delete service. Please try again.", + }); + } finally { + setIsDeleting(false); + } + }; + + const handleMuteAlerts = async (service: Service) => { + try { + // Check alerts status - check both fields for backward compatibility + const isMuted = service.alerts === "muted" || service.muteAlerts === true; + + // Toggle the mute alerts status for this specific service + const newMuteStatus = !isMuted; + + console.log(`${newMuteStatus ? "Muting" : "Unmuting"} alerts for service ${service.id} (${service.name})`); + + // First update the local state immediately for better UI responsiveness + // Using proper type casting to ensure TypeScript knows we're creating valid Service objects + const updatedServices = services.map(s => { + if (s.id === service.id) { + return { + ...s, + muteAlerts: newMuteStatus, + alerts: newMuteStatus ? "muted" as const : "unmuted" as const + }; + } + return s; + }); + + setServices(updatedServices); + + // Record the mute status change (this will also update the service record) + await recordMuteStatusChange(service.id, service.name, newMuteStatus); + + // Show a toast message + toast({ + title: newMuteStatus ? "Alerts muted" : "Alerts unmuted", + description: `Notifications for ${service.name} are now ${newMuteStatus ? "muted" : "enabled"}.`, + }); + + // Immediately invalidate the services query to trigger a refetch + // This ensures our local state matches the database state + await queryClient.invalidateQueries({ queryKey: ["services"] }); + + } catch (error) { + console.error("Error updating alert settings:", error); + + // Revert the local state change if the server update failed + const revertedServices = services.map(s => { + if (s.id === service.id) { + return { + ...s, + muteAlerts: service.muteAlerts, + alerts: service.alerts + }; + } + return s; + }); + + setServices(revertedServices); + + toast({ + variant: "destructive", + title: "Error", + description: `Failed to ${!service.muteAlerts ? "mute" : "unmute"} alerts for ${service.name}. Please try again.`, + }); + } + }; + + return { + services, + selectedService, + isDeleting, + setSelectedService, + updateServices, + handleViewDetail, + handlePauseResume, + handleEdit, + handleDelete, + confirmDelete, + handleMuteAlerts + }; +} diff --git a/application/src/components/services/incident-history/EmptyState.tsx b/application/src/components/services/incident-history/EmptyState.tsx new file mode 100644 index 0000000..113bbbb --- /dev/null +++ b/application/src/components/services/incident-history/EmptyState.tsx @@ -0,0 +1,19 @@ + +interface EmptyStateProps { + statusFilter: string; +} + +export function EmptyState({ statusFilter }: EmptyStateProps) { + return ( +
+ {statusFilter === "all" + ? "No incidents recorded in selected time period" + : `No ${ + statusFilter === "up" ? "uptime" : + statusFilter === "down" ? "downtime" : + statusFilter === "warning" ? "warning" : + "paused" + } incidents recorded in selected time period`} +
+ ); +} diff --git a/application/src/components/services/incident-history/IncidentTable.tsx b/application/src/components/services/incident-history/IncidentTable.tsx new file mode 100644 index 0000000..5f7c125 --- /dev/null +++ b/application/src/components/services/incident-history/IncidentTable.tsx @@ -0,0 +1,61 @@ + +import { format } from "date-fns"; +import { UptimeData } from "@/types/service.types"; +import { getStatusInfo } from "./utils"; +import { Table, TableBody, TableCell, TableHead, TableHeader, TableRow } from "@/components/ui/table"; +import { useTheme } from "@/contexts/ThemeContext"; +import { useLanguage } from "@/contexts/LanguageContext"; + +interface IncidentTableProps { + incidents: UptimeData[]; +} + +export function IncidentTable({ incidents }: IncidentTableProps) { + const { theme } = useTheme(); + const { t } = useLanguage(); + + if (incidents.length === 0) { + return null; + } + + return ( + + + + {t("time")} + {t("status")} + {t("responseTime")} + + + + {incidents.map((check, index) => { + const statusInfo = getStatusInfo(check.status); + const timestamp = new Date(check.timestamp); + + return ( + + +
+ {format(timestamp, 'MMM dd, yyyy')} + + {format(timestamp, 'h:mm a')} + +
+
+ +
+ {statusInfo.badge} +
+
+ + {check.status !== "paused" && check.responseTime > 0 + ? `${check.responseTime}ms` + : "N/A"} + +
+ ); + })} +
+
+ ); +} diff --git a/application/src/components/services/incident-history/LatestChecksTable.tsx b/application/src/components/services/incident-history/LatestChecksTable.tsx new file mode 100644 index 0000000..c133347 --- /dev/null +++ b/application/src/components/services/incident-history/LatestChecksTable.tsx @@ -0,0 +1,94 @@ + +import { useState, useEffect, useMemo } from "react"; +import { UptimeData } from "@/types/service.types"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { StatusFilterTabs } from "./StatusFilterTabs"; +import { TablePagination } from "./TablePagination"; +import { EmptyState } from "./EmptyState"; +import { IncidentTable } from "./IncidentTable"; +import { StatusFilter, PageSize } from "./types"; +import { getStatusChangeEvents } from "./utils"; +import { useTheme } from "@/contexts/ThemeContext"; + +export function LatestChecksTable({ uptimeData }: { uptimeData: UptimeData[] }) { + // Get current theme + const { theme } = useTheme(); + + // Filter state + const [statusFilter, setStatusFilter] = useState("all"); + const [currentPage, setCurrentPage] = useState(1); + const [pageSize, setPageSize] = useState("25"); + + // Reset to first page when filters change + useEffect(() => { + setCurrentPage(1); + }, [statusFilter, pageSize]); + + // Filter incidents by status + const incidents = useMemo(() => { + const statusChanges = getStatusChangeEvents(uptimeData); + console.log(`Total status changes: ${statusChanges.length}`); + console.log(`Status types in incidents: ${[...new Set(statusChanges.map(i => i.status))].join(', ')}`); + + if (statusFilter === "all") return statusChanges; + + return statusChanges.filter(incident => incident.status === statusFilter); + }, [uptimeData, statusFilter]); + + // Calculate pagination + const { paginatedIncidents, totalPages } = useMemo(() => { + if (pageSize === "all") { + return { + paginatedIncidents: incidents, + totalPages: 1, + }; + } + + const itemsPerPage = parseInt(pageSize, 10); + const pages = Math.ceil(incidents.length / itemsPerPage); + const start = (currentPage - 1) * itemsPerPage; + const end = start + itemsPerPage; + + return { + paginatedIncidents: incidents.slice(start, end), + totalPages: Math.max(1, pages), + }; + }, [incidents, currentPage, pageSize]); + + // Calculate items per page for pagination display + const itemsPerPage = pageSize === "all" ? incidents.length : parseInt(pageSize, 10); + + console.log(`Status Filter: ${statusFilter}, Incidents: ${incidents.length}, Includes paused: ${incidents.some(i => i.status === 'paused')}`); + + return ( + + +
+ + Incident History + + +
+
+ + {incidents.length === 0 ? ( + + ) : ( + <> + + + + + )} + +
+ ); +} diff --git a/application/src/components/services/incident-history/StatusFilterTabs.tsx b/application/src/components/services/incident-history/StatusFilterTabs.tsx new file mode 100644 index 0000000..58e3472 --- /dev/null +++ b/application/src/components/services/incident-history/StatusFilterTabs.tsx @@ -0,0 +1,66 @@ + +import { Activity, AlertTriangle, CheckCircle, Pause, X } from "lucide-react"; +import { Tabs, TabsList, TabsTrigger } from "@/components/ui/tabs"; +import { StatusFilter } from "./types"; +import { useTheme } from "@/contexts/ThemeContext"; + +interface StatusFilterTabsProps { + statusFilter: StatusFilter; + onStatusFilterChange: (value: StatusFilter) => void; +} + +export function StatusFilterTabs({ + statusFilter, + onStatusFilterChange +}: StatusFilterTabsProps) { + // Get current theme to apply appropriate styling + const { theme } = useTheme(); + + return ( + onStatusFilterChange(value as StatusFilter)} + className="w-full" + > + + + + All + + + + Up + + + + Down + + + + Warning + + + + Paused + + + + ); +} diff --git a/application/src/components/services/incident-history/TablePagination.tsx b/application/src/components/services/incident-history/TablePagination.tsx new file mode 100644 index 0000000..8ce20a9 --- /dev/null +++ b/application/src/components/services/incident-history/TablePagination.tsx @@ -0,0 +1,118 @@ + +import { + Pagination, + PaginationContent, + PaginationItem, + PaginationLink, + PaginationNext, + PaginationPrevious +} from "@/components/ui/pagination"; +import { + Select, + SelectContent, + SelectItem, + SelectTrigger, + SelectValue +} from "@/components/ui/select"; +import { PageSize } from "./types"; + +interface TablePaginationProps { + currentPage: number; + totalPages: number; + pageSize: PageSize; + totalItems: number; + itemsPerPage: number; + onPageChange: (page: number) => void; + onPageSizeChange: (size: PageSize) => void; +} + +export function TablePagination({ + currentPage, + totalPages, + pageSize, + totalItems, + itemsPerPage, + onPageChange, + onPageSizeChange, +}: TablePaginationProps) { + // Generate page numbers + const getPageNumbers = () => { + const pages = []; + const maxVisiblePages = 5; + const halfVisible = Math.floor(maxVisiblePages / 2); + + let startPage = Math.max(1, currentPage - halfVisible); + let endPage = Math.min(totalPages, startPage + maxVisiblePages - 1); + + if (endPage - startPage + 1 < maxVisiblePages) { + startPage = Math.max(1, endPage - maxVisiblePages + 1); + } + + for (let i = startPage; i <= endPage; i++) { + pages.push(i); + } + + return pages; + }; + + return ( +
+
+ Rows per page: + + + {pageSize === 'all' + ? `Showing all ${totalItems} items` + : `Showing ${Math.min((currentPage - 1) * itemsPerPage + 1, totalItems)}-${Math.min(currentPage * itemsPerPage, totalItems)} of ${totalItems} items`} + +
+ + {totalPages > 1 && ( + + + + onPageChange(Math.max(1, currentPage - 1))} + className={currentPage === 1 ? "pointer-events-none opacity-50" : "cursor-pointer"} + /> + + + {getPageNumbers().map((page) => ( + + onPageChange(page)} + className="cursor-pointer" + > + {page} + + + ))} + + + onPageChange(Math.min(totalPages, currentPage + 1))} + className={currentPage === totalPages ? "pointer-events-none opacity-50" : "cursor-pointer"} + /> + + + + )} +
+ ); +} diff --git a/application/src/components/services/incident-history/index.ts b/application/src/components/services/incident-history/index.ts new file mode 100644 index 0000000..8e2cfdd --- /dev/null +++ b/application/src/components/services/incident-history/index.ts @@ -0,0 +1,11 @@ + +// Export components +export { LatestChecksTable } from './LatestChecksTable'; +export { StatusFilterTabs } from './StatusFilterTabs'; +export { TablePagination } from './TablePagination'; +export { IncidentTable } from './IncidentTable'; +export { EmptyState } from './EmptyState'; + +// Export types and utils +export * from './types'; +export * from './utils'; diff --git a/application/src/components/services/incident-history/types.ts b/application/src/components/services/incident-history/types.ts new file mode 100644 index 0000000..2629492 --- /dev/null +++ b/application/src/components/services/incident-history/types.ts @@ -0,0 +1,16 @@ + +import { UptimeData } from "@/types/service.types"; + +export type StatusFilter = "all" | "up" | "down" | "paused" | "warning"; +export type PageSize = "10" | "25" | "50" | "100" | "250" | "all"; + +export interface LatestChecksTableProps { + uptimeData: UptimeData[]; +} + +export interface StatusInfo { + icon: JSX.Element; + text: string; + textColor: string; + badge: JSX.Element; +} diff --git a/application/src/components/services/incident-history/utils.tsx b/application/src/components/services/incident-history/utils.tsx new file mode 100644 index 0000000..77560e5 --- /dev/null +++ b/application/src/components/services/incident-history/utils.tsx @@ -0,0 +1,89 @@ + +import { CheckCircle, AlertTriangle, X, Pause } from "lucide-react"; +import { Badge } from "@/components/ui/badge"; +import { UptimeData } from "@/types/service.types"; +import { format } from "date-fns"; +import { StatusInfo } from "./types"; + +// Get appropriate icon and style for each status +export const getStatusInfo = (status: string): StatusInfo => { + switch (status) { + case "up": + return { + icon: , + text: "Up", + textColor: "text-green-500", + badge: Up + }; + case "warning": + return { + icon: , + text: "Warning", + textColor: "text-yellow-500", + badge: Warning + }; + case "paused": + return { + icon: , + text: "Paused", + textColor: "text-gray-500", + badge: Paused + }; + default: // down + return { + icon: , + text: "Down", + textColor: "text-red-500", + badge: Down + }; + } +}; + +// Filter the uptimeData to only include status changes (incidents) +export const getStatusChangeEvents = (uptimeData: UptimeData[]): UptimeData[] => { + if (!uptimeData.length) return []; + + // First sort the data by timestamp (newest first for display) + const sortedData = [...uptimeData].sort((a, b) => + new Date(b.timestamp).getTime() - new Date(a.timestamp).getTime() + ); + + // We need to find all status changes, including to/from paused + const statusChanges: UptimeData[] = []; + + // Always include the most recent check as a baseline + if (sortedData.length > 0) { + statusChanges.push(sortedData[0]); + } + + // Compare each check with the previous one to detect status changes + for (let i = 0; i < sortedData.length - 1; i++) { + const currentCheck = sortedData[i]; + const nextCheck = sortedData[i + 1]; // This is actually the "older" check + + // If the status changed, add the "older" check to our incidents list + // This shows what the status changed TO + if (currentCheck.status !== nextCheck.status) { + statusChanges.push(nextCheck); + } + } + + console.log(`Found ${statusChanges.length} status changes, including paused status changes: ${statusChanges.some(i => i.status === 'paused')}`); + + return statusChanges; +}; + +// Get date range for display +export const getDateRangeDisplay = (incidents: UptimeData[]): string => { + if (!incidents.length) return ""; + + const sortedData = [...incidents].sort((a, b) => + new Date(a.timestamp).getTime() - new Date(b.timestamp).getTime() + ); + + const start = format(new Date(sortedData[0].timestamp), 'MMM dd, yyyy'); + const end = format(new Date(sortedData[sortedData.length - 1].timestamp), 'MMM dd, yyyy'); + + // Display date range if different dates + return start === end ? start : `${start} - ${end}`; +}; diff --git a/application/src/components/services/index.ts b/application/src/components/services/index.ts new file mode 100644 index 0000000..a1daa8c --- /dev/null +++ b/application/src/components/services/index.ts @@ -0,0 +1,15 @@ + +// Export all service components for easier imports +export * from './ServiceHeader'; +export * from './ServiceStatsCards'; +export * from './ResponseTimeChart'; +export * from './incident-history/LatestChecksTable'; +export * from './LoadingState'; +export * from './ServiceNotFound'; +export * from './ServiceMonitoringButton'; +export * from './AddServiceDialog'; +export * from './ServicesTableContainer'; +export * from './ServicesTableView'; +export * from './ServiceDeleteDialog'; +export * from './ServiceHistoryDialog'; +export * from './ServiceEditDialog'; diff --git a/application/src/components/services/service-row/ServiceRowActions.tsx b/application/src/components/services/service-row/ServiceRowActions.tsx new file mode 100644 index 0000000..3c8d385 --- /dev/null +++ b/application/src/components/services/service-row/ServiceRowActions.tsx @@ -0,0 +1,184 @@ + +import React from "react"; +import { Button } from "@/components/ui/button"; +import { MoreHorizontal, Eye, Play, Pause, Edit, Bell, BellOff, Trash2 } from "lucide-react"; +import { + DropdownMenu, + DropdownMenuContent, + DropdownMenuItem, + DropdownMenuTrigger, + DropdownMenuSeparator, +} from "@/components/ui/dropdown-menu"; +import { Service } from "@/types/service.types"; +import { serviceService } from "@/services/serviceService"; +import { useToast } from "@/hooks/use-toast"; + +interface ServiceRowActionsProps { + service: Service; + onViewDetail: (service: Service) => void; + onPauseResume: (service: Service) => Promise; + onEdit: (service: Service) => void; + onDelete: (service: Service) => void; + onMuteAlerts?: (service: Service) => Promise; +} + +export const ServiceRowActions = ({ + service, + onViewDetail, + onPauseResume, + onEdit, + onDelete, + onMuteAlerts +}: ServiceRowActionsProps) => { + const { toast } = useToast(); + + // Handle pause/resume directly from dropdown + const handlePauseResume = async (e: React.MouseEvent) => { + e.stopPropagation(); + + try { + if (service.status === "paused") { + // Resume monitoring + console.log(`Resuming monitoring for service ${service.id} (${service.name}) from dropdown`); + + // First ensure we update the status + await serviceService.resumeMonitoring(service.id); + + // Then start monitoring service (performs an immediate check) + await serviceService.startMonitoringService(service.id); + + toast({ + title: "Monitoring resumed", + description: `Monitoring for ${service.name} has been resumed. First check is running now.`, + }); + } else { + // Pause monitoring + console.log(`Pausing monitoring for service ${service.id} (${service.name}) from dropdown`); + await serviceService.pauseMonitoring(service.id); + + toast({ + title: "Monitoring paused", + description: `Monitoring for ${service.name} has been paused.`, + }); + } + + // Call the parent handler to refresh the UI + onPauseResume(service); + } catch (error) { + console.error("Error toggling monitoring:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to change monitoring status. Please try again.", + }); + } + }; + + // Check alerts status - check both fields for backward compatibility + const alertsMuted = service.alerts === "muted" || service.muteAlerts === true; + + // Handle mute/unmute alerts + const handleMuteAlerts = async (e: React.MouseEvent) => { + e.stopPropagation(); + + if (onMuteAlerts) { + try { + console.log(`Attempting to ${alertsMuted ? 'unmute' : 'mute'} alerts for service ${service.id} (${service.name})`); + await onMuteAlerts(service); + } catch (error) { + console.error("Error toggling alerts:", error); + toast({ + variant: "destructive", + title: "Error", + description: "Failed to change alert settings. Please try again.", + }); + } + } + }; + + return ( +
+ + + + + + { + e.stopPropagation(); + onViewDetail(service); + }} + > + + View Detail + + + {service.status === "paused" ? ( + <> + + Resume Monitoring + + ) : ( + <> + + Pause Monitoring + + )} + + { + e.stopPropagation(); + onEdit(service); + }} + > + + Edit + + + {alertsMuted ? ( + <> + + Unmute Alerts + + ) : ( + <> + + Mute Alerts + + )} + + + { + e.stopPropagation(); + onDelete(service); + }} + > + + Delete + + + +
+ ); +}; diff --git a/application/src/components/services/service-row/ServiceRowHeader.tsx b/application/src/components/services/service-row/ServiceRowHeader.tsx new file mode 100644 index 0000000..3644e48 --- /dev/null +++ b/application/src/components/services/service-row/ServiceRowHeader.tsx @@ -0,0 +1,61 @@ + +import React from "react"; +import { BellOff } from "lucide-react"; +import { Service } from "@/types/service.types"; + +interface ServiceRowHeaderProps { + service: Service; +} + +export const ServiceRowHeader = ({ service }: ServiceRowHeaderProps) => { + // Display URL for HTTP services, hostname for others + const shouldDisplayFullUrl = service.type.toLowerCase() === "http"; + let serviceSubtitle = ""; + + // Check alerts status - check both fields for backward compatibility + const alertsMuted = service.alerts === "muted" || service.muteAlerts === true; + + if (service.url) { + try { + const url = service.url; + // If the URL doesn't start with http:// or https://, add https:// prefix + const formattedUrl = (!url.startsWith('http://') && !url.startsWith('https://')) + ? `https://${url}` + : url; + + try { + // Now try to parse it as a URL + const urlObj = new URL(formattedUrl); + if (shouldDisplayFullUrl) { + serviceSubtitle = formattedUrl; + } else { + serviceSubtitle = urlObj.hostname; + } + } catch (urlError) { + // If URL parsing still fails, just show the original URL + serviceSubtitle = url; + } + } catch (e) { + // If any other error occurs, just show the original URL + serviceSubtitle = service.url; + console.log("Error processing URL:", e); + } + } + + return ( +
+
+
{service.name}
+ {service.url && ( +
{serviceSubtitle}
+ )} +
+ {/* Add a visual indicator if alerts are muted for this service */} + {alertsMuted && ( +
+ +
+ )} +
+ ); +}; diff --git a/application/src/components/services/service-row/ServiceRowResponseTime.tsx b/application/src/components/services/service-row/ServiceRowResponseTime.tsx new file mode 100644 index 0000000..929de3a --- /dev/null +++ b/application/src/components/services/service-row/ServiceRowResponseTime.tsx @@ -0,0 +1,27 @@ + +import React from "react"; +import { AlertTriangle } from "lucide-react"; + +interface ServiceRowResponseTimeProps { + responseTime: number; +} + +export const ServiceRowResponseTime = ({ responseTime }: ServiceRowResponseTimeProps) => { + // Determine if response time is high (β‰₯ 1000ms) + const isResponseTimeHigh = responseTime >= 1000; + + return ( +
+ {responseTime > 0 ? ( + <> + + {responseTime}ms + + {isResponseTimeHigh && ( + + )} + + ) : 'N/A'} +
+ ); +}; diff --git a/application/src/components/services/service-row/index.ts b/application/src/components/services/service-row/index.ts new file mode 100644 index 0000000..3eb2c30 --- /dev/null +++ b/application/src/components/services/service-row/index.ts @@ -0,0 +1,4 @@ + +export * from './ServiceRowActions'; +export * from './ServiceRowHeader'; +export * from './ServiceRowResponseTime'; diff --git a/application/src/components/settings/GeneralSettings.tsx b/application/src/components/settings/GeneralSettings.tsx new file mode 100644 index 0000000..1aa3d86 --- /dev/null +++ b/application/src/components/settings/GeneralSettings.tsx @@ -0,0 +1,105 @@ + +import React, { useState, useEffect } from 'react'; +import { useQuery } from '@tanstack/react-query'; +import { Input } from "@/components/ui/input"; +import { Label } from "@/components/ui/label"; +import { Button } from "@/components/ui/button"; +import { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "@/components/ui/card"; +import { Settings } from "lucide-react"; +import { settingsService, type GeneralSettings } from "@/services/settingsService"; +import { useToast } from "@/hooks/use-toast"; + +const GeneralSettingsPanel = () => { + const { toast } = useToast(); + const [formData, setFormData] = useState>({}); + const [isEditing, setIsEditing] = useState(false); + + const { data: settings, isLoading, error, refetch } = useQuery({ + queryKey: ['generalSettings'], + queryFn: settingsService.getGeneralSettings, + }); + + useEffect(() => { + if (settings) { + setFormData(settings); + } + }, [settings]); + + const handleChange = (e: React.ChangeEvent) => { + const { name, value } = e.target; + setFormData(prev => ({ + ...prev, + [name]: value + })); + }; + + const handleSave = async () => { + if (!settings?.id || !formData) return; + + try { + const result = await settingsService.updateGeneralSettings(settings.id, formData); + if (result) { + toast({ + title: "Settings updated", + description: "Your settings have been updated successfully.", + variant: "default", + }); + refetch(); + setIsEditing(false); + } + } catch (error) { + console.error("Error updating settings:", error); + toast({ + title: "Update failed", + description: "There was a problem updating your settings.", + variant: "destructive", + }); + } + }; + + if (isLoading) { + return
Loading settings...
; + } + + if (error) { + return
Error loading settings
; + } + + return ( +
+ + + System Settings + + Configure your system settings and preferences + + + +
+ + +
+
+ + {isEditing ? ( + <> + + + + ) : ( + + )} + +
+
+ ); +}; + +export default GeneralSettingsPanel; diff --git a/application/src/components/settings/about-system/AboutSystem.tsx b/application/src/components/settings/about-system/AboutSystem.tsx new file mode 100644 index 0000000..6a52bbd --- /dev/null +++ b/application/src/components/settings/about-system/AboutSystem.tsx @@ -0,0 +1,91 @@ +import React from 'react'; +import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"; +import { Separator } from "@/components/ui/separator"; +import { Github, FileText, Twitter, MessageCircle, Code2, ServerIcon } from "lucide-react"; +import { Button } from "@/components/ui/button"; +import { useLanguage } from "@/contexts/LanguageContext"; +import { useTheme } from "@/contexts/ThemeContext"; +import { useSystemSettings } from "@/hooks/useSystemSettings"; +export const AboutSystem: React.FC = () => { + const { + t + } = useLanguage(); + const { + theme + } = useTheme(); + const { + systemName + } = useSystemSettings(); + return
+
+

{t('aboutSystem')}

+

{t('aboutCheckCle')}

+
+ + + +
+ + + + + {t('systemDescription')} + + + +
+ + +
+
+ {t('systemVersion')} + {t('version')} 1.0.0 +
+ +
+ {t('license')} + {t('mitLicense')} +
+ +
+ {t('releasedOn')} + May 10, 2025 +
+
+
+
+
+ + + + + + {t('links')} + + {systemName || 'CheckCle'} {t('resources').toLowerCase()} + + +
+ + + + +
+
+
+
+
; +}; +export default AboutSystem; \ No newline at end of file diff --git a/application/src/components/settings/about-system/index.ts b/application/src/components/settings/about-system/index.ts new file mode 100644 index 0000000..714fc98 --- /dev/null +++ b/application/src/components/settings/about-system/index.ts @@ -0,0 +1,2 @@ + +export { default as AboutSystem } from './AboutSystem'; diff --git a/application/src/components/settings/alerts-templates/AlertsTemplates.tsx b/application/src/components/settings/alerts-templates/AlertsTemplates.tsx new file mode 100644 index 0000000..b8226d4 --- /dev/null +++ b/application/src/components/settings/alerts-templates/AlertsTemplates.tsx @@ -0,0 +1,89 @@ + +import React, { useState } from "react"; +import { useQuery } from "@tanstack/react-query"; +import { templateService } from "@/services/templateService"; +import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"; +import { Button } from "@/components/ui/button"; +import { Plus, RefreshCcw } from "lucide-react"; +import { TemplateList } from "./TemplateList"; +import { TemplateDialog } from "./TemplateDialog"; +import { useToast } from "@/hooks/use-toast"; + +export const AlertsTemplates = () => { + const { toast } = useToast(); + const [isDialogOpen, setIsDialogOpen] = useState(false); + const [editingTemplate, setEditingTemplate] = useState(null); + + const { + data: templates = [], + isLoading, + error, + refetch + } = useQuery({ + queryKey: ['notification_templates'], + queryFn: templateService.getTemplates, + }); + + const handleAddTemplate = () => { + setEditingTemplate(null); + setIsDialogOpen(true); + }; + + const handleEditTemplate = (id: string) => { + setEditingTemplate(id); + setIsDialogOpen(true); + }; + + const handleRefresh = () => { + refetch(); + toast({ + title: "Refreshing", + description: "Updating template list...", + }); + }; + + return ( + + + Alert Templates +
+ + +
+
+ + {error ? ( +
+

Error loading templates

+ +
+ ) : ( + + )} +
+ + { + refetch(); + setIsDialogOpen(false); + }} + /> +
+ ); +}; diff --git a/application/src/components/settings/alerts-templates/TemplateDialog.tsx b/application/src/components/settings/alerts-templates/TemplateDialog.tsx new file mode 100644 index 0000000..a9dbc18 --- /dev/null +++ b/application/src/components/settings/alerts-templates/TemplateDialog.tsx @@ -0,0 +1,123 @@ + +import React, { useEffect } from "react"; +import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogFooter } from "@/components/ui/dialog"; +import { Button } from "@/components/ui/button"; +import { Form } from "@/components/ui/form"; +import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs"; +import { useTemplateForm } from "./hooks/useTemplateForm"; +import { BasicTemplateFields } from "./form/BasicTemplateFields"; +import { MessagesTabContent } from "./form/MessagesTabContent"; +import { PlaceholdersTabContent } from "./form/PlaceholdersTabContent"; +import { Loader2, ChevronDown } from "lucide-react"; +import { ScrollArea } from "@/components/ui/scroll-area"; + +interface TemplateDialogProps { + open: boolean; + templateId: string | null; + onOpenChange: (open: boolean) => void; + onSuccess: () => void; +} + +export const TemplateDialog: React.FC = ({ + open, + templateId, + onOpenChange, + onSuccess, +}) => { + const { + form, + isEditMode, + isLoadingTemplate, + isSubmitting, + onSubmit + } = useTemplateForm({ + templateId, + open, + onOpenChange, + onSuccess + }); + + // For debugging purposes + useEffect(() => { + if (open) { + console.log("Template dialog opened. Edit mode:", isEditMode, "Template ID:", templateId); + + // Log form values when they change + const subscription = form.watch((value) => { + console.log("Current form values:", value); + }); + + return () => subscription.unsubscribe(); + } + }, [open, isEditMode, templateId, form]); + + return ( + + + + {isEditMode ? "Edit Template" : "Add Template"} + + + {isLoadingTemplate ? ( +
+ + Loading template data... +
+ ) : ( +
+ +
+ +
+ + + + + Messages + Placeholders + + + + + + + + + + +
+
+
+ +
+
+ + + + + +
+ + )} +
+
+ ); +}; diff --git a/application/src/components/settings/alerts-templates/TemplateList.tsx b/application/src/components/settings/alerts-templates/TemplateList.tsx new file mode 100644 index 0000000..e3c40d2 --- /dev/null +++ b/application/src/components/settings/alerts-templates/TemplateList.tsx @@ -0,0 +1,168 @@ + +import React, { useState } from "react"; +import { NotificationTemplate, templateService } from "@/services/templateService"; +import { + Table, + TableBody, + TableCell, + TableHead, + TableHeader, + TableRow, +} from "@/components/ui/table"; +import { Button } from "@/components/ui/button"; +import { Edit, Trash2 } from "lucide-react"; +import { + AlertDialog, + AlertDialogAction, + AlertDialogCancel, + AlertDialogContent, + AlertDialogDescription, + AlertDialogFooter, + AlertDialogHeader, + AlertDialogTitle, +} from "@/components/ui/alert-dialog"; +import { useToast } from "@/hooks/use-toast"; +import { Badge } from "@/components/ui/badge"; + +interface TemplateListProps { + templates: NotificationTemplate[]; + isLoading: boolean; + onEdit: (id: string) => void; + refetchTemplates: () => void; +} + +export const TemplateList: React.FC = ({ + templates, + isLoading, + onEdit, + refetchTemplates, +}) => { + const { toast } = useToast(); + const [deleteDialogOpen, setDeleteDialogOpen] = useState(false); + const [templateToDelete, setTemplateToDelete] = useState(null); + const [isDeleting, setIsDeleting] = useState(false); + + const handleDeletePrompt = (template: NotificationTemplate) => { + setTemplateToDelete(template); + setDeleteDialogOpen(true); + }; + + const handleDeleteTemplate = async () => { + if (!templateToDelete) return; + + setIsDeleting(true); + try { + await templateService.deleteTemplate(templateToDelete.id); + toast({ + title: "Template deleted", + description: `Template "${templateToDelete.name}" has been removed.`, + }); + refetchTemplates(); + } catch (error) { + console.error("Error deleting template:", error); + toast({ + title: "Error", + description: "Failed to delete template. Please try again.", + variant: "destructive", + }); + } finally { + setIsDeleting(false); + setDeleteDialogOpen(false); + setTemplateToDelete(null); + } + }; + + if (isLoading) { + return ( +
+
+
+
+
+
+ ); + } + + if (templates.length === 0) { + return ( +
+

No templates found

+

+ Create your first notification template to get started. +

+
+ ); + } + + return ( + <> +
+ + + + Name + Type + Created + Actions + + + + {templates.map((template) => ( + + {template.name} + + {template.type} + + + {new Date(template.created).toLocaleDateString()} + + +
+ + +
+
+
+ ))} +
+
+
+ + + + + Delete Template + + Are you sure you want to delete the template "{templateToDelete?.name}"? This action cannot be undone. + + + + Cancel + { + e.preventDefault(); + handleDeleteTemplate(); + }} + disabled={isDeleting} + className="bg-destructive text-destructive-foreground hover:bg-destructive/90" + > + {isDeleting ? "Deleting..." : "Delete"} + + + + + + ); +}; diff --git a/application/src/components/settings/alerts-templates/form/BasicTemplateFields.tsx b/application/src/components/settings/alerts-templates/form/BasicTemplateFields.tsx new file mode 100644 index 0000000..e5061de --- /dev/null +++ b/application/src/components/settings/alerts-templates/form/BasicTemplateFields.tsx @@ -0,0 +1,61 @@ + +import React from "react"; +import { FormField, FormItem, FormLabel, FormControl, FormMessage } from "@/components/ui/form"; +import { Input } from "@/components/ui/input"; +import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select"; +import { Control } from "react-hook-form"; + +interface BasicTemplateFieldsProps { + control: Control; +} + +export const BasicTemplateFields: React.FC = ({ control }) => { + return ( +
+ ( + + Template Name + + + + + + )} + /> + ( + + Template Type + + + + + + )} + /> +
+ ); +}; diff --git a/application/src/components/settings/alerts-templates/form/MessagesTabContent.tsx b/application/src/components/settings/alerts-templates/form/MessagesTabContent.tsx new file mode 100644 index 0000000..e3f1979 --- /dev/null +++ b/application/src/components/settings/alerts-templates/form/MessagesTabContent.tsx @@ -0,0 +1,124 @@ + +import React from "react"; +import { FormField, FormItem, FormLabel, FormControl, FormMessage, FormDescription } from "@/components/ui/form"; +import { Textarea } from "@/components/ui/textarea"; +import { Control } from "react-hook-form"; +import { Card, CardContent } from "@/components/ui/card"; + +interface MessagesTabContentProps { + control: Control; +} + +export const MessagesTabContent: React.FC = ({ control }) => { + return ( +
+ + +
+ ( + + Up Message + +