@m5kdev/web-ui 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/animations/card.motion.d.ts +2 -0
- package/dist/src/animations/card.motion.js +7 -0
- package/dist/src/components/AvatarUpload.d.ts +7 -0
- package/dist/src/components/AvatarUpload.js +67 -0
- package/dist/src/components/Button.d.ts +5 -0
- package/dist/src/components/Button.js +5 -0
- package/dist/src/components/Calendar.d.ts +35 -0
- package/dist/src/components/Calendar.js +10 -0
- package/dist/src/components/CardsSelect.d.ts +23 -0
- package/dist/src/components/CardsSelect.js +46 -0
- package/dist/src/components/CollapsibleSidebarMenuItem.d.ts +9 -0
- package/dist/src/components/CollapsibleSidebarMenuItem.js +11 -0
- package/dist/src/components/ColorPicker.d.ts +4 -0
- package/dist/src/components/ColorPicker.js +21 -0
- package/dist/src/components/CopyButton.d.ts +6 -0
- package/dist/src/components/CopyButton.js +24 -0
- package/dist/src/components/CropDialog.d.ts +10 -0
- package/dist/src/components/CropDialog.js +67 -0
- package/dist/src/components/DialogProvider.d.ts +15 -0
- package/dist/src/components/DialogProvider.js +50 -0
- package/dist/src/components/ErrorFallback.d.ts +4 -0
- package/dist/src/components/ErrorFallback.js +5 -0
- package/dist/src/components/FileDropzone.d.ts +6 -0
- package/dist/src/components/FileDropzone.js +63 -0
- package/dist/src/components/MultiSelectDropdown.d.ts +26 -0
- package/dist/src/components/MultiSelectDropdown.js +53 -0
- package/dist/src/components/Orb.d.ts +6 -0
- package/{src/components/Orb.tsx → dist/src/components/Orb.js} +107 -136
- package/dist/src/components/PageAlert.d.ts +18 -0
- package/dist/src/components/PageAlert.js +48 -0
- package/dist/src/components/SelectChips.d.ts +10 -0
- package/dist/src/components/SelectChips.js +11 -0
- package/dist/src/components/SidebarItem.d.ts +7 -0
- package/dist/src/components/SidebarItem.js +6 -0
- package/dist/src/components/Steps.d.ts +19 -0
- package/dist/src/components/Steps.js +34 -0
- package/dist/src/components/TablerIconPicker.d.ts +2 -0
- package/dist/src/components/TablerIconPicker.js +4238 -0
- package/dist/src/components/app-header.d.ts +6 -0
- package/dist/src/components/app-header.js +8 -0
- package/dist/src/components/blur-card.d.ts +13 -0
- package/dist/src/components/blur-card.js +34 -0
- package/dist/src/components/features-section-demo-1.d.ts +6 -0
- package/dist/src/components/features-section-demo-1.js +53 -0
- package/dist/src/components/features-section-demo-2.d.ts +1 -0
- package/dist/src/components/features-section-demo-2.js +51 -0
- package/dist/src/components/features-section-demo-3.d.ts +8 -0
- package/dist/src/components/features-section-demo-3.js +116 -0
- package/dist/src/components/mode-toggle.d.ts +1 -0
- package/dist/src/components/mode-toggle.js +9 -0
- package/dist/src/components/nav-main.d.ts +13 -0
- package/dist/src/components/nav-main.js +9 -0
- package/dist/src/components/pricing-cards.d.ts +1 -0
- package/dist/src/components/pricing-cards.js +27 -0
- package/dist/src/components/shared/ButtonCopy.d.ts +6 -0
- package/dist/src/components/shared/ButtonCopy.js +24 -0
- package/dist/src/components/team-switcher.d.ts +8 -0
- package/dist/src/components/team-switcher.js +10 -0
- package/dist/src/components/theme-provider.d.ts +13 -0
- package/dist/src/components/theme-provider.js +41 -0
- package/dist/src/components/typewriter.d.ts +18 -0
- package/dist/src/components/typewriter.js +38 -0
- package/dist/src/components/ui/alert-dialog.d.ts +14 -0
- package/dist/src/components/ui/alert-dialog.js +38 -0
- package/dist/src/components/ui/alert.d.ts +9 -0
- package/dist/src/components/ui/alert.js +24 -0
- package/dist/src/components/ui/avatar.d.ts +6 -0
- package/dist/src/components/ui/avatar.js +12 -0
- package/dist/src/components/ui/badge.d.ts +9 -0
- package/dist/src/components/ui/badge.js +20 -0
- package/dist/src/components/ui/bento-grid.d.ts +11 -0
- package/dist/src/components/ui/bento-grid.js +8 -0
- package/dist/src/components/ui/bento-grid2.d.ts +15 -0
- package/dist/src/components/ui/bento-grid2.js +13 -0
- package/dist/src/components/ui/breadcrumb.d.ts +19 -0
- package/dist/src/components/ui/breadcrumb.js +23 -0
- package/dist/src/components/ui/button.d.ts +11 -0
- package/dist/src/components/ui/button.js +33 -0
- package/dist/src/components/ui/card.d.ts +8 -0
- package/dist/src/components/ui/card.js +16 -0
- package/dist/src/components/ui/checkbox.d.ts +4 -0
- package/dist/src/components/ui/checkbox.js +8 -0
- package/dist/src/components/ui/collapsible.d.ts +5 -0
- package/{src/components/ui/collapsible.tsx → dist/src/components/ui/collapsible.js} +5 -9
- package/dist/src/components/ui/dialog.d.ts +13 -0
- package/dist/src/components/ui/dialog.js +35 -0
- package/dist/src/components/ui/dropdown-menu.d.ts +27 -0
- package/dist/src/components/ui/dropdown-menu.js +32 -0
- package/dist/src/components/ui/floating-navbar.d.ts +9 -0
- package/dist/src/components/ui/floating-navbar.js +38 -0
- package/dist/src/components/ui/form.d.ts +23 -0
- package/dist/src/components/ui/form.js +60 -0
- package/dist/src/components/ui/image.d.ts +6 -0
- package/dist/src/components/ui/image.js +15 -0
- package/dist/src/components/ui/input.d.ts +3 -0
- package/dist/src/components/ui/input.js +8 -0
- package/dist/src/components/ui/label.d.ts +5 -0
- package/dist/src/components/ui/label.js +9 -0
- package/dist/src/components/ui/pagination.d.ts +13 -0
- package/dist/src/components/ui/pagination.js +29 -0
- package/dist/src/components/ui/progress.d.ts +4 -0
- package/dist/src/components/ui/progress.js +7 -0
- package/dist/src/components/ui/resizable-navbar.d.ts +56 -0
- package/dist/src/components/ui/resizable-navbar.js +86 -0
- package/dist/src/components/ui/segment-control.d.ts +9 -0
- package/dist/src/components/ui/segment-control.js +42 -0
- package/dist/src/components/ui/select.d.ts +13 -0
- package/dist/src/components/ui/select.js +26 -0
- package/dist/src/components/ui/separator.d.ts +4 -0
- package/dist/src/components/ui/separator.js +7 -0
- package/dist/src/components/ui/sheet.d.ts +25 -0
- package/dist/src/components/ui/sheet.js +37 -0
- package/dist/src/components/ui/sidebar.d.ts +66 -0
- package/dist/src/components/ui/sidebar.js +222 -0
- package/dist/src/components/ui/skeleton.d.ts +2 -0
- package/dist/src/components/ui/skeleton.js +6 -0
- package/dist/src/components/ui/slider.d.ts +4 -0
- package/dist/src/components/ui/slider.js +7 -0
- package/dist/src/components/ui/sonner.d.ts +4 -0
- package/dist/src/components/ui/sonner.js +15 -0
- package/dist/src/components/ui/spinner.d.ts +14 -0
- package/dist/src/components/ui/spinner.js +30 -0
- package/dist/src/components/ui/switch.d.ts +4 -0
- package/dist/src/components/ui/switch.js +7 -0
- package/dist/src/components/ui/table.d.ts +10 -0
- package/dist/src/components/ui/table.js +27 -0
- package/dist/src/components/ui/tabs.d.ts +7 -0
- package/dist/src/components/ui/tabs.js +16 -0
- package/dist/src/components/ui/textarea.d.ts +3 -0
- package/dist/src/components/ui/textarea.js +6 -0
- package/dist/src/components/ui/timeline.d.ts +11 -0
- package/dist/src/components/ui/timeline.js +27 -0
- package/dist/src/components/ui/toast.d.ts +15 -0
- package/dist/src/components/ui/toast.js +33 -0
- package/dist/src/components/ui/tooltip.d.ts +7 -0
- package/dist/src/components/ui/tooltip.js +16 -0
- package/dist/src/components/ui/typewriter-effect.d.ts +16 -0
- package/dist/src/components/ui/typewriter-effect.js +76 -0
- package/dist/src/hooks/use-mobile.d.ts +1 -0
- package/dist/src/hooks/use-mobile.js +15 -0
- package/dist/src/hooks/useDialog.d.ts +4 -0
- package/dist/src/hooks/useDialog.js +22 -0
- package/dist/src/icons/GoogleIcon.d.ts +5 -0
- package/dist/src/icons/GoogleIcon.js +4 -0
- package/dist/src/icons/LinkedInIcon.d.ts +5 -0
- package/dist/src/icons/LinkedInIcon.js +4 -0
- package/dist/src/icons/MicrosoftIcon.d.ts +5 -0
- package/dist/src/icons/MicrosoftIcon.js +4 -0
- package/dist/src/lib/chatwoot.d.ts +11 -0
- package/dist/src/lib/chatwoot.js +28 -0
- package/dist/src/lib/utils.d.ts +2 -0
- package/dist/src/lib/utils.js +5 -0
- package/dist/src/modules/app/components/AppLoader.d.ts +2 -0
- package/dist/src/modules/app/components/AppLoader.js +5 -0
- package/dist/src/modules/app/components/AppShell.d.ts +7 -0
- package/dist/src/modules/app/components/AppShell.js +7 -0
- package/dist/src/modules/app/components/AppSidebar.d.ts +7 -0
- package/dist/src/modules/app/components/AppSidebar.js +5 -0
- package/dist/src/modules/app/components/AppSidebarContent.d.ts +16 -0
- package/dist/src/modules/app/components/AppSidebarContent.js +7 -0
- package/dist/src/modules/app/components/AppSidebarHeader.d.ts +8 -0
- package/dist/src/modules/app/components/AppSidebarHeader.js +10 -0
- package/dist/src/modules/app/components/AppSidebarInvites.d.ts +3 -0
- package/dist/src/modules/app/components/AppSidebarInvites.js +12 -0
- package/dist/src/modules/app/components/AppSidebarUser.d.ts +11 -0
- package/dist/src/modules/app/components/AppSidebarUser.js +16 -0
- package/dist/src/modules/auth/components/AdminUserManagement.d.ts +6 -0
- package/dist/src/modules/auth/components/AdminUserManagement.js +422 -0
- package/dist/src/modules/auth/components/AdminWaitlist.d.ts +6 -0
- package/dist/src/modules/auth/components/AdminWaitlist.js +118 -0
- package/dist/src/modules/auth/components/AuthLayout.d.ts +4 -0
- package/dist/src/modules/auth/components/AuthLayout.js +5 -0
- package/dist/src/modules/auth/components/AuthProviders.d.ts +6 -0
- package/dist/src/modules/auth/components/AuthProviders.js +45 -0
- package/dist/src/modules/auth/components/AuthRouter.d.ts +9 -0
- package/dist/src/modules/auth/components/AuthRouter.js +12 -0
- package/dist/src/modules/auth/components/ClaimAccountRoute.d.ts +4 -0
- package/dist/src/modules/auth/components/ClaimAccountRoute.js +143 -0
- package/dist/src/modules/auth/components/ErrorAuthRoute.d.ts +1 -0
- package/dist/src/modules/auth/components/ErrorAuthRoute.js +93 -0
- package/dist/src/modules/auth/components/ForgotPasswordForm.d.ts +1 -0
- package/dist/src/modules/auth/components/ForgotPasswordForm.js +27 -0
- package/dist/src/modules/auth/components/ForgotPasswordRoute.d.ts +1 -0
- package/dist/src/modules/auth/components/ForgotPasswordRoute.js +9 -0
- package/dist/src/modules/auth/components/InviteFriends.d.ts +5 -0
- package/dist/src/modules/auth/components/InviteFriends.js +74 -0
- package/dist/src/modules/auth/components/LastUsedBadge.d.ts +5 -0
- package/dist/src/modules/auth/components/LastUsedBadge.js +9 -0
- package/dist/src/modules/auth/components/LoginForm.d.ts +3 -0
- package/dist/src/modules/auth/components/LoginForm.js +44 -0
- package/dist/src/modules/auth/components/LoginRoute.d.ts +3 -0
- package/dist/src/modules/auth/components/LoginRoute.js +11 -0
- package/dist/src/modules/auth/components/LogoutRoute.d.ts +1 -0
- package/dist/src/modules/auth/components/LogoutRoute.js +15 -0
- package/dist/src/modules/auth/components/OrganizationAcceptInvitationRoute.d.ts +9 -0
- package/dist/src/modules/auth/components/OrganizationAcceptInvitationRoute.js +102 -0
- package/dist/src/modules/auth/components/OrganizationMembersRoute.d.ts +51 -0
- package/dist/src/modules/auth/components/OrganizationMembersRoute.js +359 -0
- package/dist/src/modules/auth/components/OrganizationSettingsRoute.d.ts +20 -0
- package/dist/src/modules/auth/components/OrganizationSettingsRoute.js +153 -0
- package/dist/src/modules/auth/components/OrganizationSwitcher.d.ts +7 -0
- package/dist/src/modules/auth/components/OrganizationSwitcher.js +74 -0
- package/dist/src/modules/auth/components/ProfileRoute.d.ts +1 -0
- package/dist/src/modules/auth/components/ProfileRoute.js +42 -0
- package/dist/src/modules/auth/components/RangeNuqsDatePicker.d.ts +31 -0
- package/dist/src/modules/auth/components/RangeNuqsDatePicker.js +236 -0
- package/dist/src/modules/auth/components/ResetPasswordForm.d.ts +1 -0
- package/dist/src/modules/auth/components/ResetPasswordForm.js +39 -0
- package/dist/src/modules/auth/components/ResetPasswordRoute.d.ts +1 -0
- package/dist/src/modules/auth/components/ResetPasswordRoute.js +9 -0
- package/dist/src/modules/auth/components/SignupFormRoute.d.ts +5 -0
- package/dist/src/modules/auth/components/SignupFormRoute.js +106 -0
- package/dist/src/modules/auth/components/SignupRoute.d.ts +7 -0
- package/dist/src/modules/auth/components/SignupRoute.js +16 -0
- package/dist/src/modules/auth/components/UserPreferences.d.ts +30 -0
- package/dist/src/modules/auth/components/UserPreferences.js +60 -0
- package/dist/src/modules/auth/components/WaitlistCard.d.ts +6 -0
- package/dist/src/modules/auth/components/WaitlistCard.js +32 -0
- package/dist/src/modules/auth/components/WaitlistCodeValidation.d.ts +7 -0
- package/dist/src/modules/auth/components/WaitlistCodeValidation.js +43 -0
- package/dist/src/modules/billing/components/BillingBetaPage.d.ts +8 -0
- package/dist/src/modules/billing/components/BillingBetaPage.js +11 -0
- package/dist/src/modules/billing/components/BillingInvoicePage.d.ts +7 -0
- package/dist/src/modules/billing/components/BillingInvoicePage.js +32 -0
- package/dist/src/modules/billing/components/BillingPlanSelect.d.ts +6 -0
- package/dist/src/modules/billing/components/BillingPlanSelect.js +8 -0
- package/dist/src/modules/billing/components/BillingRouter.d.ts +9 -0
- package/dist/src/modules/billing/components/BillingRouter.js +8 -0
- package/dist/src/modules/billing/components/BillingSinglePlanSelect.d.ts +8 -0
- package/dist/src/modules/billing/components/BillingSinglePlanSelect.js +46 -0
- package/dist/src/modules/table/components/ColumnOrderAndVisibility.d.ts +10 -0
- package/dist/src/modules/table/components/ColumnOrderAndVisibility.js +42 -0
- package/dist/src/modules/table/components/NuqsTable.d.ts +23 -0
- package/dist/src/modules/table/components/NuqsTable.js +198 -0
- package/dist/src/modules/table/components/TableFiltering.d.ts +23 -0
- package/dist/src/modules/table/components/TableFiltering.js +236 -0
- package/dist/src/modules/table/components/TablePagination.d.ts +9 -0
- package/dist/src/modules/table/components/TablePagination.js +21 -0
- package/{src/modules/table/components/table.types.ts → dist/src/modules/table/components/table.types.d.ts} +12 -11
- package/dist/src/modules/table/components/table.types.js +1 -0
- package/dist/src/modules/table/filterTransformers.d.ts +53 -0
- package/dist/src/modules/table/filterTransformers.js +276 -0
- package/{src/types.ts → dist/src/types.d.ts} +3 -4
- package/dist/src/types.js +1 -0
- package/dist/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +8 -5
- package/.cursor/rules/web-ui.mdc +0 -126
- package/.turbo/turbo-build.log +0 -5
- package/.turbo/turbo-check-types.log +0 -5
- package/.turbo/turbo-lint$colon$fix.log +0 -381
- package/.turbo/turbo-lint.log +0 -361
- package/CHANGELOG.md +0 -19
- package/components.json +0 -21
- package/src/animations/card.motion.ts +0 -9
- package/src/components/AvatarUpload.tsx +0 -133
- package/src/components/Button.tsx +0 -14
- package/src/components/Calendar.css +0 -684
- package/src/components/Calendar.tsx +0 -32
- package/src/components/CardsSelect.tsx +0 -155
- package/src/components/CollapsibleSidebarMenuItem.tsx +0 -57
- package/src/components/ColorPicker.tsx +0 -56
- package/src/components/CopyButton.tsx +0 -45
- package/src/components/CropDialog.tsx +0 -154
- package/src/components/DialogProvider.tsx +0 -105
- package/src/components/ErrorFallback.tsx +0 -17
- package/src/components/FileDropzone.tsx +0 -120
- package/src/components/MultiSelectDropdown.tsx +0 -233
- package/src/components/PageAlert.tsx +0 -121
- package/src/components/SelectChips.tsx +0 -40
- package/src/components/SidebarItem.tsx +0 -26
- package/src/components/Steps.tsx +0 -340
- package/src/components/TablerIconPicker.tsx +0 -4260
- package/src/components/app-header.tsx +0 -40
- package/src/components/blur-card.tsx +0 -132
- package/src/components/features-section-demo-1.tsx +0 -127
- package/src/components/features-section-demo-2.tsx +0 -102
- package/src/components/features-section-demo-3.tsx +0 -272
- package/src/components/mode-toggle.tsx +0 -31
- package/src/components/nav-main.tsx +0 -69
- package/src/components/pricing-cards.tsx +0 -133
- package/src/components/shared/ButtonCopy.tsx +0 -50
- package/src/components/team-switcher.tsx +0 -83
- package/src/components/theme-provider.tsx +0 -74
- package/src/components/typewriter.tsx +0 -90
- package/src/components/ui/alert-dialog.tsx +0 -133
- package/src/components/ui/alert.tsx +0 -60
- package/src/components/ui/avatar.tsx +0 -47
- package/src/components/ui/badge.tsx +0 -33
- package/src/components/ui/bento-grid.tsx +0 -54
- package/src/components/ui/bento-grid2.tsx +0 -66
- package/src/components/ui/breadcrumb.tsx +0 -101
- package/src/components/ui/button.tsx +0 -50
- package/src/components/ui/card.tsx +0 -55
- package/src/components/ui/checkbox.tsx +0 -26
- package/src/components/ui/dialog.tsx +0 -119
- package/src/components/ui/dropdown-menu.tsx +0 -186
- package/src/components/ui/floating-navbar.tsx +0 -78
- package/src/components/ui/form.tsx +0 -167
- package/src/components/ui/image.tsx +0 -55
- package/src/components/ui/input.tsx +0 -22
- package/src/components/ui/label.tsx +0 -19
- package/src/components/ui/pagination.tsx +0 -105
- package/src/components/ui/progress.tsx +0 -23
- package/src/components/ui/resizable-navbar.tsx +0 -260
- package/src/components/ui/segment-control.tsx +0 -143
- package/src/components/ui/select.tsx +0 -153
- package/src/components/ui/separator.tsx +0 -24
- package/src/components/ui/sheet.tsx +0 -121
- package/src/components/ui/sidebar.tsx +0 -736
- package/src/components/ui/skeleton.tsx +0 -7
- package/src/components/ui/slider.tsx +0 -23
- package/src/components/ui/sonner.tsx +0 -27
- package/src/components/ui/spinner.tsx +0 -45
- package/src/components/ui/switch.tsx +0 -27
- package/src/components/ui/table.tsx +0 -90
- package/src/components/ui/tabs.tsx +0 -52
- package/src/components/ui/textarea.tsx +0 -18
- package/src/components/ui/timeline.tsx +0 -95
- package/src/components/ui/toast.tsx +0 -126
- package/src/components/ui/tooltip.tsx +0 -55
- package/src/components/ui/typewriter-effect.tsx +0 -181
- package/src/hooks/use-mobile.ts +0 -19
- package/src/hooks/useDialog.ts +0 -25
- package/src/icons/GoogleIcon.tsx +0 -32
- package/src/icons/LinkedInIcon.tsx +0 -30
- package/src/icons/MicrosoftIcon.tsx +0 -21
- package/src/lib/chatwoot.ts +0 -51
- package/src/lib/utils.ts +0 -6
- package/src/modules/app/components/AppLoader.tsx +0 -9
- package/src/modules/app/components/AppShell.tsx +0 -21
- package/src/modules/app/components/AppSidebar.tsx +0 -26
- package/src/modules/app/components/AppSidebarContent.tsx +0 -73
- package/src/modules/app/components/AppSidebarHeader.tsx +0 -57
- package/src/modules/app/components/AppSidebarInvites.tsx +0 -32
- package/src/modules/app/components/AppSidebarUser.tsx +0 -128
- package/src/modules/auth/components/AdminUserManagement.tsx +0 -1136
- package/src/modules/auth/components/AdminWaitlist.tsx +0 -358
- package/src/modules/auth/components/AuthLayout.tsx +0 -13
- package/src/modules/auth/components/AuthProviders.tsx +0 -105
- package/src/modules/auth/components/AuthRouter.tsx +0 -29
- package/src/modules/auth/components/ClaimAccountRoute.tsx +0 -242
- package/src/modules/auth/components/ErrorAuthRoute.tsx +0 -121
- package/src/modules/auth/components/ForgotPasswordForm.tsx +0 -58
- package/src/modules/auth/components/ForgotPasswordRoute.tsx +0 -27
- package/src/modules/auth/components/InviteFriends.tsx +0 -273
- package/src/modules/auth/components/LastUsedBadge.tsx +0 -22
- package/src/modules/auth/components/LoginForm.tsx +0 -104
- package/src/modules/auth/components/LoginRoute.tsx +0 -31
- package/src/modules/auth/components/LogoutRoute.tsx +0 -21
- package/src/modules/auth/components/OrganizationAcceptInvitationRoute.tsx +0 -161
- package/src/modules/auth/components/OrganizationMembersRoute.tsx +0 -730
- package/src/modules/auth/components/OrganizationSettingsRoute.tsx +0 -280
- package/src/modules/auth/components/OrganizationSwitcher.tsx +0 -148
- package/src/modules/auth/components/ProfileRoute.tsx +0 -104
- package/src/modules/auth/components/RangeNuqsDatePicker.tsx +0 -365
- package/src/modules/auth/components/ResetPasswordForm.tsx +0 -103
- package/src/modules/auth/components/ResetPasswordRoute.tsx +0 -27
- package/src/modules/auth/components/SignupFormRoute.tsx +0 -189
- package/src/modules/auth/components/SignupRoute.tsx +0 -53
- package/src/modules/auth/components/UserPreferences.tsx +0 -144
- package/src/modules/auth/components/WaitlistCard.tsx +0 -78
- package/src/modules/auth/components/WaitlistCodeValidation.tsx +0 -79
- package/src/modules/billing/components/BillingBetaPage.tsx +0 -124
- package/src/modules/billing/components/BillingInvoicePage.tsx +0 -180
- package/src/modules/billing/components/BillingPlanSelect.tsx +0 -14
- package/src/modules/billing/components/BillingRouter.tsx +0 -20
- package/src/modules/billing/components/BillingSinglePlanSelect.tsx +0 -172
- package/src/modules/table/components/ColumnOrderAndVisibility.tsx +0 -127
- package/src/modules/table/components/NuqsTable.tsx +0 -396
- package/src/modules/table/components/TableFiltering.tsx +0 -520
- package/src/modules/table/components/TablePagination.tsx +0 -59
- package/src/modules/table/filterTransformers.ts +0 -323
- package/src/vite-env.d.ts +0 -1
- package/translations/en/web-ui.json +0 -192
- package/tsconfig.json +0 -30
|
@@ -1,120 +0,0 @@
|
|
|
1
|
-
import { File, Upload, X } from "lucide-react";
|
|
2
|
-
import { useCallback, useState } from "react";
|
|
3
|
-
import { useDropzone } from "react-dropzone";
|
|
4
|
-
import { Button } from "#components/ui/button";
|
|
5
|
-
import { Progress } from "#components/ui/progress";
|
|
6
|
-
import { cn } from "#utils";
|
|
7
|
-
|
|
8
|
-
interface FileDropzoneProps {
|
|
9
|
-
onUploadComplete?: (filePath: string) => void;
|
|
10
|
-
className?: string;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
export function FileDropzone({ onUploadComplete, className }: FileDropzoneProps) {
|
|
14
|
-
const [uploadProgress, setUploadProgress] = useState(0);
|
|
15
|
-
const [selectedFile, setSelectedFile] = useState<File | null>(null);
|
|
16
|
-
const [isUploading, setIsUploading] = useState(false);
|
|
17
|
-
|
|
18
|
-
const onDrop = useCallback((acceptedFiles: File[]) => {
|
|
19
|
-
if (acceptedFiles.length > 0) {
|
|
20
|
-
setSelectedFile(acceptedFiles[0]);
|
|
21
|
-
}
|
|
22
|
-
}, []);
|
|
23
|
-
|
|
24
|
-
const { getRootProps, getInputProps, isDragActive } = useDropzone({
|
|
25
|
-
onDrop,
|
|
26
|
-
accept: {
|
|
27
|
-
"image/jpeg": [],
|
|
28
|
-
"image/png": [],
|
|
29
|
-
"image/webp": [],
|
|
30
|
-
"image/jpg": [],
|
|
31
|
-
},
|
|
32
|
-
maxFiles: 1,
|
|
33
|
-
});
|
|
34
|
-
|
|
35
|
-
const uploadFile = async () => {
|
|
36
|
-
if (!selectedFile) return;
|
|
37
|
-
|
|
38
|
-
setIsUploading(true);
|
|
39
|
-
setUploadProgress(0);
|
|
40
|
-
|
|
41
|
-
const formData = new FormData();
|
|
42
|
-
formData.append("file", selectedFile);
|
|
43
|
-
|
|
44
|
-
try {
|
|
45
|
-
const response = await fetch("/api/upload/image", {
|
|
46
|
-
method: "POST",
|
|
47
|
-
body: formData,
|
|
48
|
-
// Note: Content-Type is automatically set for FormData
|
|
49
|
-
});
|
|
50
|
-
|
|
51
|
-
if (!response.ok) {
|
|
52
|
-
throw new Error(`HTTP error! status: ${response.status}`);
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
const data = await response.json();
|
|
56
|
-
onUploadComplete?.(data.filePath);
|
|
57
|
-
setSelectedFile(null);
|
|
58
|
-
setUploadProgress(0);
|
|
59
|
-
} catch (error) {
|
|
60
|
-
console.error("Upload error:", error);
|
|
61
|
-
} finally {
|
|
62
|
-
setIsUploading(false);
|
|
63
|
-
}
|
|
64
|
-
};
|
|
65
|
-
|
|
66
|
-
const removeFile = () => {
|
|
67
|
-
setSelectedFile(null);
|
|
68
|
-
setUploadProgress(0);
|
|
69
|
-
};
|
|
70
|
-
|
|
71
|
-
return (
|
|
72
|
-
<div className={cn("w-full max-w-xl", className)}>
|
|
73
|
-
<div
|
|
74
|
-
{...getRootProps()}
|
|
75
|
-
className={cn(
|
|
76
|
-
"border-2 border-dashed rounded-lg p-6 cursor-pointer transition-colors",
|
|
77
|
-
isDragActive ? "border-primary bg-primary/5" : "border-gray-300 hover:border-primary",
|
|
78
|
-
selectedFile && "border-primary"
|
|
79
|
-
)}
|
|
80
|
-
>
|
|
81
|
-
<input {...getInputProps()} />
|
|
82
|
-
<div className="flex flex-col items-center justify-center space-y-2 text-center">
|
|
83
|
-
{selectedFile ? (
|
|
84
|
-
<>
|
|
85
|
-
<File className="h-8 w-8 text-primary" />
|
|
86
|
-
<div className="flex items-center gap-2">
|
|
87
|
-
<span className="text-sm text-gray-600">{selectedFile.name}</span>
|
|
88
|
-
<button
|
|
89
|
-
type="button"
|
|
90
|
-
onClick={(e) => {
|
|
91
|
-
e.stopPropagation();
|
|
92
|
-
removeFile();
|
|
93
|
-
}}
|
|
94
|
-
className="p-1 hover:bg-gray-100 rounded-full"
|
|
95
|
-
>
|
|
96
|
-
<X className="h-4 w-4 text-gray-500" />
|
|
97
|
-
</button>
|
|
98
|
-
</div>
|
|
99
|
-
</>
|
|
100
|
-
) : (
|
|
101
|
-
<>
|
|
102
|
-
<Upload className="h-8 w-8 text-gray-400" />
|
|
103
|
-
<p className="text-sm text-gray-600">Drag & drop an image here, or click to select</p>
|
|
104
|
-
<p className="text-xs text-gray-500">Supports JPG, PNG, and WebP</p>
|
|
105
|
-
</>
|
|
106
|
-
)}
|
|
107
|
-
</div>
|
|
108
|
-
</div>
|
|
109
|
-
|
|
110
|
-
{selectedFile && (
|
|
111
|
-
<div className="mt-4 space-y-4">
|
|
112
|
-
{isUploading && <Progress value={uploadProgress} className="h-2 w-full" />}
|
|
113
|
-
<Button onClick={uploadFile} disabled={isUploading} className="w-full">
|
|
114
|
-
{isUploading ? "Uploading..." : "Upload File"}
|
|
115
|
-
</Button>
|
|
116
|
-
</div>
|
|
117
|
-
)}
|
|
118
|
-
</div>
|
|
119
|
-
);
|
|
120
|
-
}
|
|
@@ -1,233 +0,0 @@
|
|
|
1
|
-
import { ChevronDown, RotateCcw } from "lucide-react";
|
|
2
|
-
import * as React from "react";
|
|
3
|
-
|
|
4
|
-
import { Button } from "#components/ui/button";
|
|
5
|
-
import {
|
|
6
|
-
DropdownMenu,
|
|
7
|
-
DropdownMenuCheckboxItem,
|
|
8
|
-
DropdownMenuContent,
|
|
9
|
-
DropdownMenuGroup,
|
|
10
|
-
DropdownMenuItem,
|
|
11
|
-
DropdownMenuLabel,
|
|
12
|
-
DropdownMenuSeparator,
|
|
13
|
-
DropdownMenuTrigger,
|
|
14
|
-
} from "#components/ui/dropdown-menu";
|
|
15
|
-
import { cn } from "#utils";
|
|
16
|
-
|
|
17
|
-
interface MultiSelectOption {
|
|
18
|
-
label: string;
|
|
19
|
-
icon?: React.ReactNode;
|
|
20
|
-
value: string;
|
|
21
|
-
group?: string;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
interface MultiSelectDropdownProps {
|
|
25
|
-
options: MultiSelectOption[];
|
|
26
|
-
selectedValues: string[];
|
|
27
|
-
onValueChange: (selectedValues: string[]) => void;
|
|
28
|
-
placeholder?: React.ReactNode;
|
|
29
|
-
label?: string;
|
|
30
|
-
className?: string;
|
|
31
|
-
triggerClassName?: string;
|
|
32
|
-
disabled?: boolean;
|
|
33
|
-
maxDisplayCount?: number;
|
|
34
|
-
multiSelectLabel?: string;
|
|
35
|
-
trigger?: React.ReactNode;
|
|
36
|
-
resetButton?: "bottom" | "top";
|
|
37
|
-
resetLabel?: React.ReactNode;
|
|
38
|
-
separateGroups?: boolean;
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
const MultiSelectDropdown = React.forwardRef<
|
|
42
|
-
React.ElementRef<typeof DropdownMenuTrigger>,
|
|
43
|
-
MultiSelectDropdownProps
|
|
44
|
-
>(
|
|
45
|
-
(
|
|
46
|
-
{
|
|
47
|
-
options,
|
|
48
|
-
selectedValues,
|
|
49
|
-
onValueChange,
|
|
50
|
-
placeholder = "Select items...",
|
|
51
|
-
label,
|
|
52
|
-
className,
|
|
53
|
-
triggerClassName,
|
|
54
|
-
trigger,
|
|
55
|
-
multiSelectLabel,
|
|
56
|
-
disabled = false,
|
|
57
|
-
maxDisplayCount = 3,
|
|
58
|
-
resetButton = "bottom",
|
|
59
|
-
resetLabel = "Reset",
|
|
60
|
-
separateGroups = false,
|
|
61
|
-
...props
|
|
62
|
-
},
|
|
63
|
-
ref
|
|
64
|
-
) => {
|
|
65
|
-
const handleValueChange = (value: string, checked: boolean) => {
|
|
66
|
-
if (checked) {
|
|
67
|
-
onValueChange([...selectedValues, value]);
|
|
68
|
-
} else {
|
|
69
|
-
onValueChange(selectedValues.filter((v) => v !== value));
|
|
70
|
-
}
|
|
71
|
-
};
|
|
72
|
-
|
|
73
|
-
const handleReset = () => {
|
|
74
|
-
onValueChange([]);
|
|
75
|
-
};
|
|
76
|
-
|
|
77
|
-
const getDisplayText = () => {
|
|
78
|
-
if (selectedValues.length === 0) {
|
|
79
|
-
return placeholder;
|
|
80
|
-
}
|
|
81
|
-
|
|
82
|
-
const selectedLabels = options
|
|
83
|
-
.filter((option) => selectedValues.includes(option.value))
|
|
84
|
-
.map((option) => option.label);
|
|
85
|
-
|
|
86
|
-
if (multiSelectLabel && selectedLabels.length > 1) {
|
|
87
|
-
return multiSelectLabel;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
if (selectedLabels.length <= maxDisplayCount) {
|
|
91
|
-
return selectedLabels.join(", ");
|
|
92
|
-
}
|
|
93
|
-
|
|
94
|
-
return `${selectedLabels.slice(0, maxDisplayCount).join(", ")} (+${
|
|
95
|
-
selectedLabels.length - maxDisplayCount
|
|
96
|
-
} more)`;
|
|
97
|
-
};
|
|
98
|
-
|
|
99
|
-
const groupedOptions = React.useMemo(() => {
|
|
100
|
-
const groups: Record<string, MultiSelectOption[]> = {};
|
|
101
|
-
const ungrouped: MultiSelectOption[] = [];
|
|
102
|
-
|
|
103
|
-
options.forEach((option) => {
|
|
104
|
-
if (option.group) {
|
|
105
|
-
if (!groups[option.group]) {
|
|
106
|
-
groups[option.group] = [];
|
|
107
|
-
}
|
|
108
|
-
groups[option.group].push(option);
|
|
109
|
-
} else {
|
|
110
|
-
ungrouped.push(option);
|
|
111
|
-
}
|
|
112
|
-
});
|
|
113
|
-
|
|
114
|
-
return { groups, ungrouped };
|
|
115
|
-
}, [options]);
|
|
116
|
-
|
|
117
|
-
return (
|
|
118
|
-
<div className={cn("w-full", className)}>
|
|
119
|
-
<DropdownMenu>
|
|
120
|
-
<DropdownMenuTrigger asChild>
|
|
121
|
-
<Button
|
|
122
|
-
ref={ref}
|
|
123
|
-
variant="outline"
|
|
124
|
-
className={cn(
|
|
125
|
-
"w-full justify-between text-left font-normal",
|
|
126
|
-
selectedValues.length === 0 && "text-muted-foreground",
|
|
127
|
-
triggerClassName
|
|
128
|
-
)}
|
|
129
|
-
disabled={disabled}
|
|
130
|
-
{...props}
|
|
131
|
-
>
|
|
132
|
-
{trigger || (
|
|
133
|
-
<>
|
|
134
|
-
<span className="truncate">{getDisplayText()}</span>
|
|
135
|
-
<ChevronDown className="ml-2 h-4 w-4 shrink-0 opacity-50" />
|
|
136
|
-
</>
|
|
137
|
-
)}
|
|
138
|
-
</Button>
|
|
139
|
-
</DropdownMenuTrigger>
|
|
140
|
-
|
|
141
|
-
<DropdownMenuContent
|
|
142
|
-
className="w-full min-w-[var(--radix-dropdown-menu-trigger-width)]"
|
|
143
|
-
align="start"
|
|
144
|
-
>
|
|
145
|
-
{resetButton && resetButton === "top" && (
|
|
146
|
-
<>
|
|
147
|
-
<DropdownMenuItem
|
|
148
|
-
onClick={handleReset}
|
|
149
|
-
disabled={selectedValues.length === 0}
|
|
150
|
-
onSelect={(event) => event.preventDefault()}
|
|
151
|
-
className="cursor-pointer text-muted-foreground hover:text-foreground"
|
|
152
|
-
>
|
|
153
|
-
{resetLabel || (
|
|
154
|
-
<>
|
|
155
|
-
<RotateCcw className="mr-2 h-4 w-4" />
|
|
156
|
-
Reset
|
|
157
|
-
</>
|
|
158
|
-
)}
|
|
159
|
-
</DropdownMenuItem>
|
|
160
|
-
<DropdownMenuSeparator />
|
|
161
|
-
</>
|
|
162
|
-
)}
|
|
163
|
-
{label && (
|
|
164
|
-
<>
|
|
165
|
-
<DropdownMenuLabel>{label}</DropdownMenuLabel>
|
|
166
|
-
<DropdownMenuSeparator />
|
|
167
|
-
</>
|
|
168
|
-
)}
|
|
169
|
-
{Object.entries(groupedOptions.groups).map(([groupName, groupOptions], groupIndex) => (
|
|
170
|
-
<DropdownMenuGroup key={groupName}>
|
|
171
|
-
{groupIndex > 0 && separateGroups && <DropdownMenuSeparator />}
|
|
172
|
-
<DropdownMenuLabel className="text-xs font-semibold text-muted-foreground px-2 py-1.5">
|
|
173
|
-
{groupName}
|
|
174
|
-
</DropdownMenuLabel>
|
|
175
|
-
{groupOptions.map((option) => (
|
|
176
|
-
<DropdownMenuCheckboxItem
|
|
177
|
-
key={option.value}
|
|
178
|
-
checked={selectedValues.includes(option.value)}
|
|
179
|
-
onCheckedChange={(checked) => handleValueChange(option.value, checked)}
|
|
180
|
-
onSelect={(event) => event.preventDefault()}
|
|
181
|
-
className="cursor-pointer"
|
|
182
|
-
>
|
|
183
|
-
{option.icon && <span className="mr-2">{option.icon}</span>}
|
|
184
|
-
{option.label}
|
|
185
|
-
</DropdownMenuCheckboxItem>
|
|
186
|
-
))}
|
|
187
|
-
</DropdownMenuGroup>
|
|
188
|
-
))}
|
|
189
|
-
{groupedOptions.ungrouped.length > 0 && (
|
|
190
|
-
<DropdownMenuGroup>
|
|
191
|
-
{Object.keys(groupedOptions.groups).length > 0 && <DropdownMenuSeparator />}
|
|
192
|
-
{groupedOptions.ungrouped.map((option) => (
|
|
193
|
-
<DropdownMenuCheckboxItem
|
|
194
|
-
key={option.value}
|
|
195
|
-
checked={selectedValues.includes(option.value)}
|
|
196
|
-
onCheckedChange={(checked) => handleValueChange(option.value, checked)}
|
|
197
|
-
onSelect={(event) => event.preventDefault()}
|
|
198
|
-
className="cursor-pointer"
|
|
199
|
-
>
|
|
200
|
-
{option.label}
|
|
201
|
-
</DropdownMenuCheckboxItem>
|
|
202
|
-
))}
|
|
203
|
-
</DropdownMenuGroup>
|
|
204
|
-
)}
|
|
205
|
-
{resetButton && resetButton === "bottom" && (
|
|
206
|
-
<>
|
|
207
|
-
<DropdownMenuSeparator />
|
|
208
|
-
<DropdownMenuItem
|
|
209
|
-
onClick={handleReset}
|
|
210
|
-
disabled={selectedValues.length === 0}
|
|
211
|
-
onSelect={(event) => event.preventDefault()}
|
|
212
|
-
className="cursor-pointer text-muted-foreground hover:text-foreground"
|
|
213
|
-
>
|
|
214
|
-
{resetLabel || (
|
|
215
|
-
<>
|
|
216
|
-
<RotateCcw className="mr-2 h-4 w-4" />
|
|
217
|
-
Reset
|
|
218
|
-
</>
|
|
219
|
-
)}
|
|
220
|
-
</DropdownMenuItem>
|
|
221
|
-
</>
|
|
222
|
-
)}
|
|
223
|
-
</DropdownMenuContent>
|
|
224
|
-
</DropdownMenu>
|
|
225
|
-
</div>
|
|
226
|
-
);
|
|
227
|
-
}
|
|
228
|
-
);
|
|
229
|
-
|
|
230
|
-
MultiSelectDropdown.displayName = "MultiSelectDropdown";
|
|
231
|
-
|
|
232
|
-
export { MultiSelectDropdown };
|
|
233
|
-
export type { MultiSelectOption, MultiSelectDropdownProps };
|
|
@@ -1,121 +0,0 @@
|
|
|
1
|
-
import { cva, type VariantProps } from "class-variance-authority";
|
|
2
|
-
import { AlertCircle, AlertTriangle, CheckCircle, Info, X } from "lucide-react";
|
|
3
|
-
import * as React from "react";
|
|
4
|
-
import { useTranslation } from "react-i18next";
|
|
5
|
-
|
|
6
|
-
import { cn } from "#utils";
|
|
7
|
-
|
|
8
|
-
const pageAlertVariants = cva(
|
|
9
|
-
"relative w-full border-b px-4 py-3 text-sm transition-all duration-300 ease-in-out",
|
|
10
|
-
{
|
|
11
|
-
variants: {
|
|
12
|
-
variant: {
|
|
13
|
-
default: "bg-background border-border text-foreground",
|
|
14
|
-
info: "bg-blue-50 border-blue-200 text-blue-900 dark:bg-blue-950/50 dark:border-blue-800 dark:text-blue-100",
|
|
15
|
-
success:
|
|
16
|
-
"bg-green-50 border-green-200 text-green-900 dark:bg-green-950/50 dark:border-green-800 dark:text-green-100",
|
|
17
|
-
warning:
|
|
18
|
-
"bg-yellow-50 border-yellow-200 text-yellow-900 dark:bg-yellow-950/50 dark:border-yellow-800 dark:text-yellow-100",
|
|
19
|
-
destructive:
|
|
20
|
-
"bg-red-50 border-red-200 text-red-900 dark:bg-red-950/50 dark:border-red-800 dark:text-red-100",
|
|
21
|
-
},
|
|
22
|
-
},
|
|
23
|
-
defaultVariants: {
|
|
24
|
-
variant: "default",
|
|
25
|
-
},
|
|
26
|
-
}
|
|
27
|
-
);
|
|
28
|
-
|
|
29
|
-
const iconMap = {
|
|
30
|
-
default: Info,
|
|
31
|
-
info: Info,
|
|
32
|
-
success: CheckCircle,
|
|
33
|
-
warning: AlertTriangle,
|
|
34
|
-
destructive: AlertCircle,
|
|
35
|
-
} as const;
|
|
36
|
-
|
|
37
|
-
interface PageAlertProps
|
|
38
|
-
extends React.ComponentProps<"div">,
|
|
39
|
-
VariantProps<typeof pageAlertVariants> {
|
|
40
|
-
title?: string;
|
|
41
|
-
description?: React.ReactNode;
|
|
42
|
-
icon?: React.ComponentType<{ className?: string }>;
|
|
43
|
-
dismissible?: boolean;
|
|
44
|
-
defaultOpen?: boolean;
|
|
45
|
-
onDismiss?: () => void;
|
|
46
|
-
children?: React.ReactNode;
|
|
47
|
-
}
|
|
48
|
-
|
|
49
|
-
const PageAlert = React.forwardRef<HTMLDivElement, PageAlertProps>(
|
|
50
|
-
(
|
|
51
|
-
{
|
|
52
|
-
className,
|
|
53
|
-
variant = "default",
|
|
54
|
-
title,
|
|
55
|
-
description,
|
|
56
|
-
icon,
|
|
57
|
-
dismissible = true,
|
|
58
|
-
defaultOpen = true,
|
|
59
|
-
onDismiss,
|
|
60
|
-
children,
|
|
61
|
-
...props
|
|
62
|
-
},
|
|
63
|
-
ref
|
|
64
|
-
) => {
|
|
65
|
-
const { t } = useTranslation();
|
|
66
|
-
const [isOpen, setIsOpen] = React.useState(defaultOpen);
|
|
67
|
-
const [isAnimatingOut, setIsAnimatingOut] = React.useState(false);
|
|
68
|
-
const IconComponent = icon || iconMap[variant || "default"];
|
|
69
|
-
|
|
70
|
-
const handleDismiss = React.useCallback(() => {
|
|
71
|
-
setIsAnimatingOut(true);
|
|
72
|
-
// Wait for animation to complete before removing from DOM
|
|
73
|
-
setTimeout(() => {
|
|
74
|
-
setIsOpen(false);
|
|
75
|
-
onDismiss?.();
|
|
76
|
-
}, 300); // Match the animation duration
|
|
77
|
-
}, [onDismiss]);
|
|
78
|
-
|
|
79
|
-
if (!isOpen) {
|
|
80
|
-
return null;
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
const content = (
|
|
84
|
-
<div
|
|
85
|
-
ref={ref}
|
|
86
|
-
role="alert"
|
|
87
|
-
className={cn(
|
|
88
|
-
pageAlertVariants({ variant }),
|
|
89
|
-
isAnimatingOut && "transform -translate-y-full opacity-0",
|
|
90
|
-
className
|
|
91
|
-
)}
|
|
92
|
-
{...props}
|
|
93
|
-
>
|
|
94
|
-
<div className="flex items-start gap-3">
|
|
95
|
-
{IconComponent && <IconComponent className="h-4 w-4 mt-0.5 flex-shrink-0" />}
|
|
96
|
-
<div className="flex-1 min-w-0">
|
|
97
|
-
{title && <div className="font-medium leading-none tracking-tight mb-1">{title}</div>}
|
|
98
|
-
{description && <div className="text-sm opacity-90 leading-relaxed">{description}</div>}
|
|
99
|
-
{children}
|
|
100
|
-
</div>
|
|
101
|
-
{dismissible && (
|
|
102
|
-
<button
|
|
103
|
-
type="button"
|
|
104
|
-
onClick={handleDismiss}
|
|
105
|
-
className="flex-shrink-0 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none"
|
|
106
|
-
aria-label={t("web-ui:alert.dismissLabel")}
|
|
107
|
-
>
|
|
108
|
-
<X className="h-4 w-4" />
|
|
109
|
-
</button>
|
|
110
|
-
)}
|
|
111
|
-
</div>
|
|
112
|
-
</div>
|
|
113
|
-
);
|
|
114
|
-
|
|
115
|
-
return content;
|
|
116
|
-
}
|
|
117
|
-
);
|
|
118
|
-
|
|
119
|
-
PageAlert.displayName = "PageAlert";
|
|
120
|
-
|
|
121
|
-
export { PageAlert, type PageAlertProps };
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { Button, type ButtonProps, Checkbox } from "@heroui/react";
|
|
2
|
-
|
|
3
|
-
export function SelectChips({
|
|
4
|
-
items,
|
|
5
|
-
selectedItems,
|
|
6
|
-
onSelectionChange,
|
|
7
|
-
buttonProps,
|
|
8
|
-
}: {
|
|
9
|
-
items: string[] | { label: string; value: string }[];
|
|
10
|
-
selectedItems: string[];
|
|
11
|
-
onSelectionChange: (items: string[]) => void;
|
|
12
|
-
buttonProps?: ButtonProps;
|
|
13
|
-
}) {
|
|
14
|
-
return items.map((item) => {
|
|
15
|
-
const value = typeof item === "string" ? item : item.value;
|
|
16
|
-
const label = typeof item === "string" ? item : item.label;
|
|
17
|
-
return (
|
|
18
|
-
<Button
|
|
19
|
-
key={value}
|
|
20
|
-
startContent={
|
|
21
|
-
<Checkbox
|
|
22
|
-
isSelected={selectedItems.includes(value)}
|
|
23
|
-
isReadOnly
|
|
24
|
-
style={{ pointerEvents: "none" }}
|
|
25
|
-
/>
|
|
26
|
-
}
|
|
27
|
-
onPress={() =>
|
|
28
|
-
onSelectionChange(
|
|
29
|
-
selectedItems.includes(value)
|
|
30
|
-
? selectedItems.filter((i) => i !== value)
|
|
31
|
-
: [...selectedItems, value]
|
|
32
|
-
)
|
|
33
|
-
}
|
|
34
|
-
{...buttonProps}
|
|
35
|
-
>
|
|
36
|
-
{label}
|
|
37
|
-
</Button>
|
|
38
|
-
);
|
|
39
|
-
});
|
|
40
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import type { ReactNode } from "react";
|
|
2
|
-
import { Link } from "react-router";
|
|
3
|
-
import { SidebarMenuButton, SidebarMenuItem } from "#components/ui/sidebar";
|
|
4
|
-
|
|
5
|
-
export function SidebarItem({
|
|
6
|
-
label,
|
|
7
|
-
icon,
|
|
8
|
-
link,
|
|
9
|
-
badge,
|
|
10
|
-
}: {
|
|
11
|
-
label: string;
|
|
12
|
-
icon: ReactNode;
|
|
13
|
-
link: string;
|
|
14
|
-
badge?: ReactNode;
|
|
15
|
-
}) {
|
|
16
|
-
return (
|
|
17
|
-
<SidebarMenuItem>
|
|
18
|
-
<SidebarMenuButton asChild tooltip={label}>
|
|
19
|
-
<Link to={link}>
|
|
20
|
-
{icon}
|
|
21
|
-
{badge ? badge : <span>{label}</span>}
|
|
22
|
-
</Link>
|
|
23
|
-
</SidebarMenuButton>
|
|
24
|
-
</SidebarMenuItem>
|
|
25
|
-
);
|
|
26
|
-
}
|