@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
package/src/components/Steps.tsx
DELETED
|
@@ -1,340 +0,0 @@
|
|
|
1
|
-
import { Check } from "lucide-react";
|
|
2
|
-
import type React from "react";
|
|
3
|
-
import { Badge } from "#components/ui/badge";
|
|
4
|
-
import { Separator } from "#components/ui/separator";
|
|
5
|
-
import { cn } from "#utils";
|
|
6
|
-
|
|
7
|
-
export interface Step {
|
|
8
|
-
id: string;
|
|
9
|
-
title: string;
|
|
10
|
-
description?: string;
|
|
11
|
-
status: "completed" | "current" | "upcoming";
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export interface StepsProps {
|
|
15
|
-
steps: Step[];
|
|
16
|
-
className?: string;
|
|
17
|
-
onStepClick?: (step: number) => void;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
export const Steps: React.FC<StepsProps> = ({ steps, className, onStepClick }) => {
|
|
21
|
-
return (
|
|
22
|
-
<nav aria-label="Progress" className={cn("w-full", className)}>
|
|
23
|
-
{/* Vertical layout for mobile/tablet */}
|
|
24
|
-
<ol className="lg:hidden space-y-6">
|
|
25
|
-
{steps.map((step, stepIdx) => (
|
|
26
|
-
<li key={step.id} className="relative">
|
|
27
|
-
<div className="flex items-start">
|
|
28
|
-
{/* Step indicator */}
|
|
29
|
-
<div className="flex-shrink-0">
|
|
30
|
-
{step.status === "completed" ? (
|
|
31
|
-
<button type="button" onClick={() => onStepClick?.(stepIdx)}>
|
|
32
|
-
<Badge
|
|
33
|
-
variant="default"
|
|
34
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center"
|
|
35
|
-
>
|
|
36
|
-
<Check className="h-5 w-5" />
|
|
37
|
-
</Badge>
|
|
38
|
-
</button>
|
|
39
|
-
) : step.status === "current" ? (
|
|
40
|
-
<Badge
|
|
41
|
-
variant="default"
|
|
42
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium"
|
|
43
|
-
>
|
|
44
|
-
{stepIdx + 1}
|
|
45
|
-
</Badge>
|
|
46
|
-
) : (
|
|
47
|
-
<Badge
|
|
48
|
-
variant="outline"
|
|
49
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium bg-background"
|
|
50
|
-
>
|
|
51
|
-
{stepIdx + 1}
|
|
52
|
-
</Badge>
|
|
53
|
-
)}
|
|
54
|
-
</div>
|
|
55
|
-
|
|
56
|
-
{/* Step content */}
|
|
57
|
-
<div className="ml-4 min-w-0 flex-1">
|
|
58
|
-
<p
|
|
59
|
-
className={cn(
|
|
60
|
-
"text-sm font-medium",
|
|
61
|
-
step.status === "completed" || step.status === "current"
|
|
62
|
-
? "text-foreground"
|
|
63
|
-
: "text-muted-foreground"
|
|
64
|
-
)}
|
|
65
|
-
>
|
|
66
|
-
{step.title}
|
|
67
|
-
</p>
|
|
68
|
-
{step.description && (
|
|
69
|
-
<p
|
|
70
|
-
className={cn(
|
|
71
|
-
"text-sm mt-1",
|
|
72
|
-
step.status === "completed" || step.status === "current"
|
|
73
|
-
? "text-muted-foreground"
|
|
74
|
-
: "text-muted-foreground/60"
|
|
75
|
-
)}
|
|
76
|
-
>
|
|
77
|
-
{step.description}
|
|
78
|
-
</p>
|
|
79
|
-
)}
|
|
80
|
-
</div>
|
|
81
|
-
</div>
|
|
82
|
-
|
|
83
|
-
{/* Connecting line - vertical */}
|
|
84
|
-
{stepIdx !== steps.length - 1 && (
|
|
85
|
-
<div className="absolute left-5 top-10 -ml-px mt-2 h-6">
|
|
86
|
-
<Separator
|
|
87
|
-
orientation="vertical"
|
|
88
|
-
className={cn(
|
|
89
|
-
"h-full",
|
|
90
|
-
step.status === "completed" ? "bg-primary" : "bg-muted-foreground/20"
|
|
91
|
-
)}
|
|
92
|
-
/>
|
|
93
|
-
</div>
|
|
94
|
-
)}
|
|
95
|
-
</li>
|
|
96
|
-
))}
|
|
97
|
-
</ol>
|
|
98
|
-
|
|
99
|
-
{/* Horizontal layout for desktop */}
|
|
100
|
-
<ol className="hidden lg:flex items-center justify-between">
|
|
101
|
-
{steps.map((step, stepIdx) => (
|
|
102
|
-
<li key={step.id} className="relative flex flex-col items-center flex-1">
|
|
103
|
-
{/* Step indicator */}
|
|
104
|
-
<div className="relative z-10 flex-shrink-0">
|
|
105
|
-
{step.status === "completed" ? (
|
|
106
|
-
<button type="button" onClick={() => onStepClick?.(stepIdx)}>
|
|
107
|
-
<Badge
|
|
108
|
-
variant="default"
|
|
109
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center"
|
|
110
|
-
>
|
|
111
|
-
<Check className="h-5 w-5" />
|
|
112
|
-
</Badge>
|
|
113
|
-
</button>
|
|
114
|
-
) : step.status === "current" ? (
|
|
115
|
-
<Badge
|
|
116
|
-
variant="default"
|
|
117
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium"
|
|
118
|
-
>
|
|
119
|
-
{stepIdx + 1}
|
|
120
|
-
</Badge>
|
|
121
|
-
) : (
|
|
122
|
-
<Badge
|
|
123
|
-
variant="outline"
|
|
124
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium bg-background"
|
|
125
|
-
>
|
|
126
|
-
{stepIdx + 1}
|
|
127
|
-
</Badge>
|
|
128
|
-
)}
|
|
129
|
-
</div>
|
|
130
|
-
|
|
131
|
-
{/* Step content */}
|
|
132
|
-
<div className="mt-3 text-center max-w-32">
|
|
133
|
-
<p
|
|
134
|
-
className={cn(
|
|
135
|
-
"text-sm font-medium",
|
|
136
|
-
step.status === "completed" || step.status === "current"
|
|
137
|
-
? "text-foreground"
|
|
138
|
-
: "text-muted-foreground"
|
|
139
|
-
)}
|
|
140
|
-
>
|
|
141
|
-
{step.title}
|
|
142
|
-
</p>
|
|
143
|
-
{step.description && (
|
|
144
|
-
<p
|
|
145
|
-
className={cn(
|
|
146
|
-
"text-xs mt-1",
|
|
147
|
-
step.status === "completed" || step.status === "current"
|
|
148
|
-
? "text-muted-foreground"
|
|
149
|
-
: "text-muted-foreground/60"
|
|
150
|
-
)}
|
|
151
|
-
>
|
|
152
|
-
{step.description}
|
|
153
|
-
</p>
|
|
154
|
-
)}
|
|
155
|
-
</div>
|
|
156
|
-
|
|
157
|
-
{/* Connecting line - horizontal */}
|
|
158
|
-
{stepIdx !== steps.length - 1 && (
|
|
159
|
-
<div className="absolute left-1/2 top-5 w-full h-0.5 -z-10">
|
|
160
|
-
<Separator
|
|
161
|
-
orientation="horizontal"
|
|
162
|
-
className={cn(
|
|
163
|
-
"w-full",
|
|
164
|
-
step.status === "completed" ? "bg-primary" : "bg-muted-foreground/20"
|
|
165
|
-
)}
|
|
166
|
-
/>
|
|
167
|
-
</div>
|
|
168
|
-
)}
|
|
169
|
-
</li>
|
|
170
|
-
))}
|
|
171
|
-
</ol>
|
|
172
|
-
</nav>
|
|
173
|
-
);
|
|
174
|
-
};
|
|
175
|
-
|
|
176
|
-
// Keep the individual components for specific use cases
|
|
177
|
-
export const VerticalSteps: React.FC<StepsProps> = ({ steps, className }) => {
|
|
178
|
-
return (
|
|
179
|
-
<nav aria-label="Progress" className={cn("", className)}>
|
|
180
|
-
<ol className="space-y-6">
|
|
181
|
-
{steps.map((step, stepIdx) => (
|
|
182
|
-
<li key={step.id} className="relative">
|
|
183
|
-
<div className="flex items-start">
|
|
184
|
-
{/* Step indicator */}
|
|
185
|
-
<div className="flex-shrink-0">
|
|
186
|
-
{step.status === "completed" ? (
|
|
187
|
-
<Badge
|
|
188
|
-
variant="default"
|
|
189
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center"
|
|
190
|
-
>
|
|
191
|
-
<Check className="h-5 w-5" />
|
|
192
|
-
</Badge>
|
|
193
|
-
) : step.status === "current" ? (
|
|
194
|
-
<Badge
|
|
195
|
-
variant="default"
|
|
196
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium"
|
|
197
|
-
>
|
|
198
|
-
{stepIdx + 1}
|
|
199
|
-
</Badge>
|
|
200
|
-
) : (
|
|
201
|
-
<Badge
|
|
202
|
-
variant="outline"
|
|
203
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium bg-background"
|
|
204
|
-
>
|
|
205
|
-
{stepIdx + 1}
|
|
206
|
-
</Badge>
|
|
207
|
-
)}
|
|
208
|
-
</div>
|
|
209
|
-
|
|
210
|
-
{/* Step content */}
|
|
211
|
-
<div className="ml-4 min-w-0 flex-1">
|
|
212
|
-
<p
|
|
213
|
-
className={cn(
|
|
214
|
-
"text-sm font-medium",
|
|
215
|
-
step.status === "completed" || step.status === "current"
|
|
216
|
-
? "text-foreground"
|
|
217
|
-
: "text-muted-foreground"
|
|
218
|
-
)}
|
|
219
|
-
>
|
|
220
|
-
{step.title}
|
|
221
|
-
</p>
|
|
222
|
-
{step.description && (
|
|
223
|
-
<p
|
|
224
|
-
className={cn(
|
|
225
|
-
"text-sm mt-1",
|
|
226
|
-
step.status === "completed" || step.status === "current"
|
|
227
|
-
? "text-muted-foreground"
|
|
228
|
-
: "text-muted-foreground/60"
|
|
229
|
-
)}
|
|
230
|
-
>
|
|
231
|
-
{step.description}
|
|
232
|
-
</p>
|
|
233
|
-
)}
|
|
234
|
-
</div>
|
|
235
|
-
</div>
|
|
236
|
-
|
|
237
|
-
{/* Connecting line */}
|
|
238
|
-
{stepIdx !== steps.length - 1 && (
|
|
239
|
-
<div className="absolute left-5 top-10 -ml-px mt-2 h-6">
|
|
240
|
-
<Separator
|
|
241
|
-
orientation="vertical"
|
|
242
|
-
className={cn(
|
|
243
|
-
"h-full",
|
|
244
|
-
step.status === "completed" ? "bg-primary" : "bg-muted-foreground/20"
|
|
245
|
-
)}
|
|
246
|
-
/>
|
|
247
|
-
</div>
|
|
248
|
-
)}
|
|
249
|
-
</li>
|
|
250
|
-
))}
|
|
251
|
-
</ol>
|
|
252
|
-
</nav>
|
|
253
|
-
);
|
|
254
|
-
};
|
|
255
|
-
|
|
256
|
-
export interface HorizontalStepsProps {
|
|
257
|
-
steps: Step[];
|
|
258
|
-
className?: string;
|
|
259
|
-
}
|
|
260
|
-
|
|
261
|
-
export const HorizontalSteps: React.FC<HorizontalStepsProps> = ({ steps, className }) => {
|
|
262
|
-
return (
|
|
263
|
-
<nav aria-label="Progress" className={cn("w-full", className)}>
|
|
264
|
-
<ol className="flex items-center justify-between">
|
|
265
|
-
{steps.map((step, stepIdx) => (
|
|
266
|
-
<li key={step.id} className="relative flex flex-col items-center flex-1">
|
|
267
|
-
{/* Step indicator */}
|
|
268
|
-
<div className="relative z-10 flex-shrink-0">
|
|
269
|
-
{step.status === "completed" ? (
|
|
270
|
-
<Badge
|
|
271
|
-
variant="default"
|
|
272
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center"
|
|
273
|
-
>
|
|
274
|
-
<Check className="h-5 w-5" />
|
|
275
|
-
</Badge>
|
|
276
|
-
) : step.status === "current" ? (
|
|
277
|
-
<Badge
|
|
278
|
-
variant="default"
|
|
279
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium"
|
|
280
|
-
>
|
|
281
|
-
{stepIdx + 1}
|
|
282
|
-
</Badge>
|
|
283
|
-
) : (
|
|
284
|
-
<Badge
|
|
285
|
-
variant="outline"
|
|
286
|
-
className="h-10 w-10 rounded-full p-0 flex items-center justify-center text-sm font-medium bg-background"
|
|
287
|
-
>
|
|
288
|
-
{stepIdx + 1}
|
|
289
|
-
</Badge>
|
|
290
|
-
)}
|
|
291
|
-
</div>
|
|
292
|
-
|
|
293
|
-
{/* Step content */}
|
|
294
|
-
<div className="mt-3 text-center max-w-32">
|
|
295
|
-
<p
|
|
296
|
-
className={cn(
|
|
297
|
-
"text-sm font-medium",
|
|
298
|
-
step.status === "completed" || step.status === "current"
|
|
299
|
-
? "text-foreground"
|
|
300
|
-
: "text-muted-foreground"
|
|
301
|
-
)}
|
|
302
|
-
>
|
|
303
|
-
{step.title}
|
|
304
|
-
</p>
|
|
305
|
-
{step.description && (
|
|
306
|
-
<p
|
|
307
|
-
className={cn(
|
|
308
|
-
"text-xs mt-1",
|
|
309
|
-
step.status === "completed" || step.status === "current"
|
|
310
|
-
? "text-muted-foreground"
|
|
311
|
-
: "text-muted-foreground/60"
|
|
312
|
-
)}
|
|
313
|
-
>
|
|
314
|
-
{step.description}
|
|
315
|
-
</p>
|
|
316
|
-
)}
|
|
317
|
-
</div>
|
|
318
|
-
|
|
319
|
-
{/* Connecting line */}
|
|
320
|
-
{stepIdx !== steps.length - 1 && (
|
|
321
|
-
<div className="absolute left-1/2 top-5 w-full h-0.5 -z-10">
|
|
322
|
-
<Separator
|
|
323
|
-
orientation="horizontal"
|
|
324
|
-
className={cn(
|
|
325
|
-
"w-full",
|
|
326
|
-
step.status === "completed" ? "bg-primary" : "bg-muted-foreground/20"
|
|
327
|
-
)}
|
|
328
|
-
/>
|
|
329
|
-
</div>
|
|
330
|
-
)}
|
|
331
|
-
</li>
|
|
332
|
-
))}
|
|
333
|
-
</ol>
|
|
334
|
-
</nav>
|
|
335
|
-
);
|
|
336
|
-
};
|
|
337
|
-
|
|
338
|
-
Steps.displayName = "Steps";
|
|
339
|
-
VerticalSteps.displayName = "VerticalSteps";
|
|
340
|
-
HorizontalSteps.displayName = "HorizontalSteps";
|