@igamingcareer/igaming-components 1.1.21 → 1.1.22
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/index.js +26 -26
- package/dist/index.mjs +2634 -2604
- package/dist/types/components/ui/alert-dialog.d.ts +20 -0
- package/dist/types/components/ui/alert.d.ts +8 -0
- package/dist/types/components/ui/avatar.d.ts +6 -0
- package/dist/types/components/ui/badge.d.ts +9 -0
- package/dist/types/components/ui/button.d.ts +11 -0
- package/dist/types/components/ui/card.d.ts +8 -0
- package/dist/types/components/ui/checkbox.d.ts +4 -0
- package/dist/types/components/ui/collapsible.d.ts +5 -0
- package/dist/types/components/ui/command.d.ts +82 -0
- package/dist/types/components/ui/dialog.d.ts +19 -0
- package/dist/types/components/ui/drawer.d.ts +22 -0
- package/dist/types/components/ui/dropdown-menu.d.ts +27 -0
- package/dist/types/components/ui/input.d.ts +3 -0
- package/dist/types/components/ui/label.d.ts +5 -0
- package/dist/types/components/ui/popover.d.ts +7 -0
- package/dist/types/components/ui/progress.d.ts +4 -0
- package/dist/types/components/ui/radio-group.d.ts +5 -0
- package/dist/types/components/ui/scroll-area.d.ts +5 -0
- package/dist/types/components/ui/select.d.ts +13 -0
- package/dist/types/components/ui/separator.d.ts +4 -0
- package/dist/types/components/ui/slider.d.ts +4 -0
- package/dist/types/components/ui/switch.d.ts +4 -0
- package/dist/types/components/ui/tabs.d.ts +7 -0
- package/dist/types/components/ui/textarea.d.ts +5 -0
- package/dist/types/components/ui/toast.d.ts +15 -0
- package/dist/types/hooks/use-toast.d.ts +45 -0
- package/dist/types/lib/utils.d.ts +2 -0
- package/dist/types/src/components/App/App.d.ts +2 -0
- package/dist/types/src/components/Auth/ForgotPassword.d.ts +26 -0
- package/dist/types/src/components/Auth/ForgotPasswordForm.d.ts +16 -0
- package/dist/types/src/components/Auth/Login.d.ts +36 -0
- package/dist/types/src/components/Auth/LoginForm.d.ts +23 -0
- package/dist/types/src/components/Auth/Register.d.ts +33 -0
- package/dist/types/src/components/Auth/RegisterForm.d.ts +29 -0
- package/dist/types/src/components/Auth/RegisterFormV2.d.ts +20 -0
- package/dist/types/src/components/Auth/RegisterV2.d.ts +18 -0
- package/dist/types/src/components/Auth/SignInPromptModal.d.ts +23 -0
- package/dist/types/src/components/Auth/VerificationBanner.d.ts +11 -0
- package/dist/types/src/components/Button/Button.d.ts +5 -0
- package/dist/types/src/components/CandidateProfile/CandidateProfile.d.ts +49 -0
- package/dist/types/src/components/CareerAssistant/CareerAssistant.d.ts +11 -0
- package/dist/types/src/components/CareerAssistant/MessageBubble.d.ts +15 -0
- package/dist/types/src/components/CareerAssistant/WelcomeScreen.d.ts +7 -0
- package/dist/types/src/components/CareerAssistant/mockCareerAssistant.d.ts +8 -0
- package/dist/types/src/components/Companies/CompaniesList.d.ts +30 -0
- package/dist/types/src/components/Companies/CompanyAdminPage.d.ts +0 -0
- package/dist/types/src/components/Companies/CompanyDetail.d.ts +33 -0
- package/dist/types/src/components/Companies/CompanyDetail.similarCompanies.test.d.ts +1 -0
- package/dist/types/src/components/Companies/CompanyDirectory.d.ts +27 -0
- package/dist/types/src/components/Companies/CompanyDirectoryContainer.d.ts +23 -0
- package/dist/types/src/components/Companies/CompanyFilters.test.d.ts +1 -0
- package/dist/types/src/components/Companies/CompanyGroupDetail.d.ts +6 -0
- package/dist/types/src/components/Companies/CompanyPublicPage.d.ts +0 -0
- package/dist/types/src/components/Companies/CompanyReviewsTab.d.ts +13 -0
- package/dist/types/src/components/Companies/admin/CompanyJobsAdmin.d.ts +0 -0
- package/dist/types/src/components/Companies/admin/CompanyPeopleAdmin.d.ts +0 -0
- package/dist/types/src/components/Companies/admin/CompanyProfileEditor.d.ts +0 -0
- package/dist/types/src/components/Companies/companiesListFilters.d.ts +19 -0
- package/dist/types/src/components/Companies/companiesListFilters.test.d.ts +1 -0
- package/dist/types/src/components/Companies/components/ClaimProfileDialog.d.ts +10 -0
- package/dist/types/src/components/Companies/components/CompaniesHeader.d.ts +2 -0
- package/dist/types/src/components/Companies/components/CompanyAdminEditDialog.d.ts +15 -0
- package/dist/types/src/components/Companies/components/CompanyAdminShell.d.ts +38 -0
- package/dist/types/src/components/Companies/components/CompanyCard.d.ts +25 -0
- package/dist/types/src/components/Companies/components/CompanyClaim.d.ts +7 -0
- package/dist/types/src/components/Companies/components/CompanyComparison.d.ts +12 -0
- package/dist/types/src/components/Companies/components/CompanyFilters.d.ts +10 -0
- package/dist/types/src/components/Companies/components/CompanyHeader.d.ts +34 -0
- package/dist/types/src/components/Companies/components/CompanyMetaHighlights.d.ts +11 -0
- package/dist/types/src/components/Companies/components/LoadingCompanyShadowCard.d.ts +5 -0
- package/dist/types/src/components/Companies/components/ViewControls.d.ts +14 -0
- package/dist/types/src/components/Companies/components/admin/CandidateCard.d.ts +11 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminCandidates.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminEvents.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminJobs.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminNews.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminOverview.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminPeople.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminProducts.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/CompanyAdminSettings.d.ts +10 -0
- package/dist/types/src/components/Companies/components/admin/modals/AddEventModal.d.ts +16 -0
- package/dist/types/src/components/Companies/components/admin/modals/AddJobModal.d.ts +17 -0
- package/dist/types/src/components/Companies/components/admin/modals/AddPersonModal.d.ts +15 -0
- package/dist/types/src/components/Companies/components/admin/modals/AddProductModal.d.ts +15 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyEventsTab.d.ts +8 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyInsightsTab.d.ts +2 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyJobsTab.d.ts +9 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyNewsTab.d.ts +8 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyOverviewTab.d.ts +9 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyPeopleTab.d.ts +6 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyProductsTab.d.ts +6 -0
- package/dist/types/src/components/Companies/components/tabs/CompanySidebar.d.ts +7 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyTabsList.d.ts +7 -0
- package/dist/types/src/components/Companies/components/tabs/CompanyTrustTab.d.ts +7 -0
- package/dist/types/src/components/Companies/data/companies.d.ts +18 -0
- package/dist/types/src/components/Companies/data/company-group-preview.d.ts +3 -0
- package/dist/types/src/components/Companies/hooks/useCompaniesQuery.d.ts +10 -0
- package/dist/types/src/components/Companies/reviews/LeaveReviewModal.d.ts +11 -0
- package/dist/types/src/components/Companies/reviews/ReviewCard.d.ts +9 -0
- package/dist/types/src/components/Companies/reviews/ReviewStars.d.ts +9 -0
- package/dist/types/src/components/Companies/reviews/ReviewSummaryBar.d.ts +7 -0
- package/dist/types/src/components/Companies/reviews/index.d.ts +4 -0
- package/dist/types/src/components/Companies/types/companyAdmin.d.ts +30 -0
- package/dist/types/src/components/Companies/types/index.d.ts +379 -0
- package/dist/types/src/components/Companies/utils/companiesQuery.d.ts +6 -0
- package/dist/types/src/components/Companies/utils/companyFilters.d.ts +53 -0
- package/dist/types/src/components/Companies/utils/companyFilters.test.d.ts +1 -0
- package/dist/types/src/components/Companies/utils/normalizeCompanies.d.ts +15 -0
- package/dist/types/src/components/Companies/utils/normalizeCompaniesResponse.test.d.ts +1 -0
- package/dist/types/src/components/Companies/utils/permissions.d.ts +9 -0
- package/dist/types/src/components/Companies/utils/similarCompanies.d.ts +2 -0
- package/dist/types/src/components/CompanyOnboarding/CompanyOnboardingModal.d.ts +18 -0
- package/dist/types/src/components/CompanyOnboarding/index.d.ts +1 -0
- package/dist/types/src/components/Complaints/Complaints.d.ts +8 -0
- package/dist/types/src/components/Complaints/SubmitComplaintModal.d.ts +16 -0
- package/dist/types/src/components/Consent/Analytics.d.ts +9 -0
- package/dist/types/src/components/Consent/ConsentBanner.d.ts +11 -0
- package/dist/types/src/components/Consent/ConsentContext.d.ts +20 -0
- package/dist/types/src/components/ContactForm/ContactFormHybrid.d.ts +8 -0
- package/dist/types/src/components/Courses/CoursesList.d.ts +9 -0
- package/dist/types/src/components/Dashboard/AddExperienceModal.d.ts +33 -0
- package/dist/types/src/components/Dashboard/AddJobDetailModal.d.ts +9 -0
- package/dist/types/src/components/Dashboard/AddLanguageModal.d.ts +10 -0
- package/dist/types/src/components/Dashboard/AddPreferenceTopicModal.d.ts +7 -0
- package/dist/types/src/components/Dashboard/AddSkillModal.d.ts +7 -0
- package/dist/types/src/components/Dashboard/Alerts/AlertCard.d.ts +12 -0
- package/dist/types/src/components/Dashboard/Alerts/AlertEmptyState.d.ts +5 -0
- package/dist/types/src/components/Dashboard/Alerts/AlertForm.d.ts +10 -0
- package/dist/types/src/components/Dashboard/Alerts/AlertInsightsWidget.d.ts +8 -0
- package/dist/types/src/components/Dashboard/Alerts/AlertStatusBadge.d.ts +8 -0
- package/dist/types/src/components/Dashboard/Alerts/DashboardAlerts.d.ts +11 -0
- package/dist/types/src/components/Dashboard/CVUploadDialog.d.ts +8 -0
- package/dist/types/src/components/Dashboard/CompanyDashboard.d.ts +15 -0
- package/dist/types/src/components/Dashboard/CompanyEmployeeOverview.d.ts +29 -0
- package/dist/types/src/components/Dashboard/CompanyOwnerOverview.d.ts +20 -0
- package/dist/types/src/components/Dashboard/CompanyRecruiterOverview.d.ts +31 -0
- package/dist/types/src/components/Dashboard/Dashboard.d.ts +56 -0
- package/dist/types/src/components/Dashboard/DashboardCourses.d.ts +32 -0
- package/dist/types/src/components/Dashboard/DashboardJobCard.d.ts +13 -0
- package/dist/types/src/components/Dashboard/DashboardJobs.d.ts +17 -0
- package/dist/types/src/components/Dashboard/DashboardLayout.d.ts +15 -0
- package/dist/types/src/components/Dashboard/DashboardNews.d.ts +15 -0
- package/dist/types/src/components/Dashboard/DashboardNewsCard.d.ts +12 -0
- package/dist/types/src/components/Dashboard/DashboardOverview.d.ts +46 -0
- package/dist/types/src/components/Dashboard/DashboardProfile.d.ts +64 -0
- package/dist/types/src/components/Dashboard/DashboardSettings.d.ts +84 -0
- package/dist/types/src/components/Dashboard/DashboardStats.d.ts +17 -0
- package/dist/types/src/components/Dashboard/FreelancerActivationCard.d.ts +6 -0
- package/dist/types/src/components/Dashboard/FreelancerDashboardSection.d.ts +10 -0
- package/dist/types/src/components/Dashboard/FreelancerOnboardingModal.d.ts +10 -0
- package/dist/types/src/components/Dashboard/OnboardingChecklist.d.ts +16 -0
- package/dist/types/src/components/Dashboard/OnboardingDashboard.d.ts +19 -0
- package/dist/types/src/components/Events/EventCalendarCard.d.ts +7 -0
- package/dist/types/src/components/Events/EventsList.d.ts +11 -0
- package/dist/types/src/components/Events/SubmitEventModal.d.ts +22 -0
- package/dist/types/src/components/Events/mockEvents.d.ts +2 -0
- package/dist/types/src/components/Events/types.d.ts +22 -0
- package/dist/types/src/components/Footer/Footer.d.ts +32 -0
- package/dist/types/src/components/Freelancer/FreelancerProfile.d.ts +19 -0
- package/dist/types/src/components/Freelancer/FreelancerProfileContainer.d.ts +2 -0
- package/dist/types/src/components/Freelancer/Freelancers.d.ts +30 -0
- package/dist/types/src/components/Freelancer/FreelancersContainer.d.ts +2 -0
- package/dist/types/src/components/Freelancer/FreelancersList.d.ts +10 -0
- package/dist/types/src/components/Freelancer/mockFreelancers.d.ts +6 -0
- package/dist/types/src/components/GenericListing/Banner.d.ts +9 -0
- package/dist/types/src/components/GenericListing/DateFilter.d.ts +13 -0
- package/dist/types/src/components/GenericListing/LastVisitedJobs.d.ts +7 -0
- package/dist/types/src/components/GenericListing/Listing.d.ts +32 -0
- package/dist/types/src/components/GenericListing/ListingGrid.d.ts +15 -0
- package/dist/types/src/components/GenericListing/ListingHeader.d.ts +5 -0
- package/dist/types/src/components/GenericListing/ListingSort.d.ts +14 -0
- package/dist/types/src/components/GenericListing/MobileFilterDrawer.d.ts +21 -0
- package/dist/types/src/components/GenericListing/MobileNav.d.ts +3 -0
- package/dist/types/src/components/GenericListing/Pagination.d.ts +8 -0
- package/dist/types/src/components/GenericListing/PaginationControls.d.ts +8 -0
- package/dist/types/src/components/GenericListing/SearchBar.d.ts +10 -0
- package/dist/types/src/components/GenericListing/SearchableSelect.d.ts +10 -0
- package/dist/types/src/components/GenericListing/Sidebar.d.ts +11 -0
- package/dist/types/src/components/GenericListing/SidebarFilter.d.ts +31 -0
- package/dist/types/src/components/GenericListing/SidebarFilters.d.ts +12 -0
- package/dist/types/src/components/GenericListing/accessControl.d.ts +22 -0
- package/dist/types/src/components/GenericListing/generateMockJobs.d.ts +2 -0
- package/dist/types/src/components/GenericListing/useJobDataHook.d.ts +5 -0
- package/dist/types/src/components/GenericListing/useLocalStorageState.d.ts +1 -0
- package/dist/types/src/components/Header/Header.d.ts +2 -0
- package/dist/types/src/components/Header/HeaderAlternative.d.ts +13 -0
- package/dist/types/src/components/HomePage/Advantages.d.ts +15 -0
- package/dist/types/src/components/HomePage/Cart.d.ts +12 -0
- package/dist/types/src/components/HomePage/Chatbot.d.ts +6 -0
- package/dist/types/src/components/HomePage/Contact.d.ts +22 -0
- package/dist/types/src/components/HomePage/CourseTypes.d.ts +26 -0
- package/dist/types/src/components/HomePage/Courses.d.ts +16 -0
- package/dist/types/src/components/HomePage/Destinations.d.ts +12 -0
- package/dist/types/src/components/HomePage/FAQ.d.ts +11 -0
- package/dist/types/src/components/HomePage/FeatureJobs.d.ts +19 -0
- package/dist/types/src/components/HomePage/Features.d.ts +13 -0
- package/dist/types/src/components/HomePage/ForEmployers.d.ts +10 -0
- package/dist/types/src/components/HomePage/Gallery.d.ts +13 -0
- package/dist/types/src/components/HomePage/Hero.d.ts +11 -0
- package/dist/types/src/components/HomePage/HeroAlternative.d.ts +11 -0
- package/dist/types/src/components/HomePage/HeroSection.d.ts +2 -0
- package/dist/types/src/components/HomePage/HomePage.d.ts +3 -0
- package/dist/types/src/components/HomePage/IgamingCareerHome.d.ts +33 -0
- package/dist/types/src/components/HomePage/ImageSlider.d.ts +11 -0
- package/dist/types/src/components/HomePage/JobSearch.d.ts +2 -0
- package/dist/types/src/components/HomePage/JobsSearchWidget.d.ts +22 -0
- package/dist/types/src/components/HomePage/Navbar.d.ts +19 -0
- package/dist/types/src/components/HomePage/Newsletter.d.ts +11 -0
- package/dist/types/src/components/HomePage/NewsletterV2.d.ts +21 -0
- package/dist/types/src/components/HomePage/NotificationModal.d.ts +7 -0
- package/dist/types/src/components/HomePage/Partners.d.ts +2 -0
- package/dist/types/src/components/HomePage/Services.d.ts +13 -0
- package/dist/types/src/components/HomePage/ServicesNoIcons.d.ts +16 -0
- package/dist/types/src/components/HomePage/SidebarNewsletter.d.ts +9 -0
- package/dist/types/src/components/HomePage/SidebarNewsletterV2.d.ts +18 -0
- package/dist/types/src/components/HomePage/Testimonials.d.ts +14 -0
- package/dist/types/src/components/HomePage/TestimonialsVariant.d.ts +2 -0
- package/dist/types/src/components/HomePage/TrustSignals.d.ts +18 -0
- package/dist/types/src/components/HomePage/ValueProposition.d.ts +12 -0
- package/dist/types/src/components/HomePage/Videos.d.ts +13 -0
- package/dist/types/src/components/HomePage/context/CartContext.d.ts +22 -0
- package/dist/types/src/components/IgamingCoursesPage/CourseCard.d.ts +12 -0
- package/dist/types/src/components/IgamingCoursesPage/CourseFilters.d.ts +19 -0
- package/dist/types/src/components/IgamingCoursesPage/CourseNavigation.d.ts +11 -0
- package/dist/types/src/components/IgamingCoursesPage/CourseSearch.d.ts +10 -0
- package/dist/types/src/components/IgamingCoursesPage/CourseSidebarFilters.d.ts +23 -0
- package/dist/types/src/components/IgamingCoursesPage/CoursesListingCards.d.ts +17 -0
- package/dist/types/src/components/IgamingCoursesPage/FeaturedCourses.d.ts +12 -0
- package/dist/types/src/components/IgamingCoursesPage/HeroSection.d.ts +9 -0
- package/dist/types/src/components/IgamingCoursesPage/IgamingCoursesPage.d.ts +12 -0
- package/dist/types/src/components/IgamingCoursesPage/MobileCourseSearch.d.ts +10 -0
- package/dist/types/src/components/IgamingCoursesPage/Statistics.d.ts +8 -0
- package/dist/types/src/components/IgamingCoursesPage/data/courses.d.ts +3 -0
- package/dist/types/src/components/IgamingCoursesPage/types/course.d.ts +63 -0
- package/dist/types/src/components/JobListing/JobListing.d.ts +24 -0
- package/dist/types/src/components/JobListing/components/Filters.d.ts +17 -0
- package/dist/types/src/components/JobListing/components/Footer.d.ts +12 -0
- package/dist/types/src/components/JobListing/components/JobCard.d.ts +14 -0
- package/dist/types/src/components/JobListing/components/JobList.d.ts +11 -0
- package/dist/types/src/components/JobListing/components/MobileFilterDrawer.d.ts +21 -0
- package/dist/types/src/components/JobListing/components/Navbar.d.ts +13 -0
- package/dist/types/src/components/JobListing/components/PromoCard.d.ts +11 -0
- package/dist/types/src/components/JobListing/components/SearchBar.d.ts +10 -0
- package/dist/types/src/components/JobListing/types/Job.d.ts +23 -0
- package/dist/types/src/components/Jobs/JobsList.d.ts +38 -0
- package/dist/types/src/components/Jobs/jobsListFilters.d.ts +12 -0
- package/dist/types/src/components/Jobs/jobsListFilters.test.d.ts +1 -0
- package/dist/types/src/components/JobsDetails/JobDetail.d.ts +9 -0
- package/dist/types/src/components/JobsDetails/utils/navigation.d.ts +2 -0
- package/dist/types/src/components/JobsDetails/utils/types.d.ts +37 -0
- package/dist/types/src/components/JobsDetails/utils/useJobSlug.d.ts +1 -0
- package/dist/types/src/components/MarketDetail/MarketDetail.d.ts +6 -0
- package/dist/types/src/components/Markets/MarketsList.d.ts +9 -0
- package/dist/types/src/components/Markets/SuggestMarketModal.d.ts +8 -0
- package/dist/types/src/components/Markets/mockMarkets.d.ts +3 -0
- package/dist/types/src/components/Modal/Modal.d.ts +10 -0
- package/dist/types/src/components/News/NewsList.d.ts +7 -0
- package/dist/types/src/components/NewsPage/BreakingNews.d.ts +7 -0
- package/dist/types/src/components/NewsPage/NewsCard.d.ts +15 -0
- package/dist/types/src/components/NewsPage/NewsFilters.d.ts +14 -0
- package/dist/types/src/components/NewsPage/NewsPage.d.ts +19 -0
- package/dist/types/src/components/NewsPage/NewsSearch.d.ts +9 -0
- package/dist/types/src/components/NewsPage/NewsSidebarFilters.d.ts +19 -0
- package/dist/types/src/components/NewsPage/TrendingNews.d.ts +8 -0
- package/dist/types/src/components/NewsPage/data/news.d.ts +3 -0
- package/dist/types/src/components/NewsPage/types/news.d.ts +35 -0
- package/dist/types/src/components/Notification/NotificationItem.d.ts +15 -0
- package/dist/types/src/components/Notification/NotificationProvider.d.ts +20 -0
- package/dist/types/src/components/Notification/NotificationTester.d.ts +21 -0
- package/dist/types/src/components/Notification/NotificationViewport.d.ts +20 -0
- package/dist/types/src/components/Notification/index.d.ts +4 -0
- package/dist/types/src/components/Notification/notificationStore.d.ts +51 -0
- package/dist/types/src/components/Onboarding/DashboardOnboardingSection.d.ts +12 -0
- package/dist/types/src/components/Onboarding/OnboardingChecklist.d.ts +8 -0
- package/dist/types/src/components/Onboarding/OnboardingContext.d.ts +6 -0
- package/dist/types/src/components/Onboarding/OnboardingDashboard.d.ts +11 -0
- package/dist/types/src/components/Onboarding/OnboardingModal.d.ts +19 -0
- package/dist/types/src/components/Onboarding/OnboardingPopup.d.ts +6 -0
- package/dist/types/src/components/Onboarding/ShieldedActionButton.d.ts +15 -0
- package/dist/types/src/components/Onboarding/VerificationBanner.d.ts +12 -0
- package/dist/types/src/components/Onboarding/index.d.ts +13 -0
- package/dist/types/src/components/Places/PlacesList.d.ts +7 -0
- package/dist/types/src/components/Places/mockPlaces.d.ts +2 -0
- package/dist/types/src/components/Places/types.d.ts +16 -0
- package/dist/types/src/components/Prices/Group/GroupPrices.d.ts +10 -0
- package/dist/types/src/components/Prices/Summary/SlidingSummary.d.ts +7 -0
- package/dist/types/src/components/ProductCategories/ProductCategoriesList.d.ts +9 -0
- package/dist/types/src/components/ProductCategories/ProductCategoryDetail.d.ts +7 -0
- package/dist/types/src/components/ProductCategories/mockProductCategories.d.ts +3 -0
- package/dist/types/src/components/ProductCategories/types.d.ts +47 -0
- package/dist/types/src/components/RegulatorDetail/RegulatorDetail.d.ts +6 -0
- package/dist/types/src/components/Regulators/JurisdictionsList.d.ts +6 -0
- package/dist/types/src/components/Regulators/RegulatorsList.d.ts +9 -0
- package/dist/types/src/components/Regulators/mockJurisdictions.d.ts +3 -0
- package/dist/types/src/components/Regulators/mockRegulators.d.ts +3 -0
- package/dist/types/src/components/Regulators/types.d.ts +55 -0
- package/dist/types/src/components/Reviews/LeaveReviewStandaloneModal.d.ts +23 -0
- package/dist/types/src/components/Reviews/Reviews.d.ts +8 -0
- package/dist/types/src/components/Shared/ActiveFiltersDisplay.d.ts +15 -0
- package/dist/types/src/components/Shared/Cards/CareerPathCard.d.ts +20 -0
- package/dist/types/src/components/Shared/Cards/ChannelCard.d.ts +9 -0
- package/dist/types/src/components/Shared/Cards/CompanyCardMobile.d.ts +30 -0
- package/dist/types/src/components/Shared/Cards/CompanyTypeCard.d.ts +9 -0
- package/dist/types/src/components/Shared/Cards/CourseCard.d.ts +37 -0
- package/dist/types/src/components/Shared/Cards/DepartmentCard.d.ts +15 -0
- package/dist/types/src/components/Shared/Cards/DepartmentEntityCard.d.ts +9 -0
- package/dist/types/src/components/Shared/Cards/DirectoryDetailCard.d.ts +13 -0
- package/dist/types/src/components/Shared/Cards/DirectoryInfoPanel.d.ts +25 -0
- package/dist/types/src/components/Shared/Cards/DirectoryKeyRolesList.d.ts +11 -0
- package/dist/types/src/components/Shared/Cards/EventsCard.d.ts +19 -0
- package/dist/types/src/components/Shared/Cards/FreelancerCard.d.ts +23 -0
- package/dist/types/src/components/Shared/Cards/GamblingVerticalCard.d.ts +9 -0
- package/dist/types/src/components/Shared/Cards/JobCard.d.ts +31 -0
- package/dist/types/src/components/Shared/Cards/JurisdictionCard.d.ts +8 -0
- package/dist/types/src/components/Shared/Cards/MarketsCard.d.ts +8 -0
- package/dist/types/src/components/Shared/Cards/NewsCard.d.ts +32 -0
- package/dist/types/src/components/Shared/Cards/PlacesCard.d.ts +18 -0
- package/dist/types/src/components/Shared/Cards/PlaybookCard.d.ts +17 -0
- package/dist/types/src/components/Shared/Cards/ProductCategoriesCard.d.ts +26 -0
- package/dist/types/src/components/Shared/Cards/RegulatorsCard.d.ts +21 -0
- package/dist/types/src/components/Shared/Cards/RoleGuideCard.d.ts +17 -0
- package/dist/types/src/components/Shared/Cards/TermCard.d.ts +14 -0
- package/dist/types/src/components/Shared/Cards/VideoCard.d.ts +21 -0
- package/dist/types/src/components/Shared/Cards/index.d.ts +10 -0
- package/dist/types/src/components/Shared/Directory/DirectoryBanner.d.ts +8 -0
- package/dist/types/src/components/Shared/Directory/DirectoryShell.d.ts +30 -0
- package/dist/types/src/components/Shared/Directory/DirectoryShowcase.d.ts +3 -0
- package/dist/types/src/components/Shared/Directory/DirectoryToolbar.d.ts +20 -0
- package/dist/types/src/components/Shared/Directory/ViewModeToggle.d.ts +1 -0
- package/dist/types/src/components/Shared/Directory/index.d.ts +5 -0
- package/dist/types/src/components/Shared/Directory/types.d.ts +73 -0
- package/dist/types/src/components/Shared/GenericFilter.d.ts +17 -0
- package/dist/types/src/components/Shared/GenericPagination.d.ts +8 -0
- package/dist/types/src/components/Shared/ItemsPerPageSelector.d.ts +10 -0
- package/dist/types/src/components/Shared/Listing/ListingActiveFilters.d.ts +16 -0
- package/dist/types/src/components/Shared/Listing/ListingEmptyState.d.ts +16 -0
- package/dist/types/src/components/Shared/Listing/ListingHeader.d.ts +17 -0
- package/dist/types/src/components/Shared/Listing/ListingMobileFilters.d.ts +24 -0
- package/dist/types/src/components/Shared/Listing/ListingPagination.d.ts +15 -0
- package/dist/types/src/components/Shared/Listing/ListingSearchBar.d.ts +20 -0
- package/dist/types/src/components/Shared/Listing/ListingSidebar.d.ts +25 -0
- package/dist/types/src/components/Shared/Listing/ListingToolbar.d.ts +24 -0
- package/dist/types/src/components/Shared/Listing/index.d.ts +9 -0
- package/dist/types/src/components/Shared/Listing/types.d.ts +50 -0
- package/dist/types/src/components/Shared/LoadingShadowCard.d.ts +5 -0
- package/dist/types/src/components/Shared/Mobile/BottomSheetFilter.d.ts +23 -0
- package/dist/types/src/components/Shared/Mobile/FloatingActionButton.d.ts +22 -0
- package/dist/types/src/components/Shared/Mobile/HorizontalTagSlider.d.ts +22 -0
- package/dist/types/src/components/Shared/Mobile/StickyFilterChips.d.ts +20 -0
- package/dist/types/src/components/Shared/Mobile/UserIdentityMenu.d.ts +36 -0
- package/dist/types/src/components/Shared/Mobile/index.d.ts +5 -0
- package/dist/types/src/components/Shared/MobileDrawer.d.ts +9 -0
- package/dist/types/src/components/Shared/PageTitleHeader.d.ts +16 -0
- package/dist/types/src/components/Shared/SearchBox.d.ts +11 -0
- package/dist/types/src/components/Shared/ShieldedActionButton.d.ts +14 -0
- package/dist/types/src/components/Shared/SubscriptionModal.d.ts +10 -0
- package/dist/types/src/components/Shared/Taxonomy/ExamplesPanel.d.ts +7 -0
- package/dist/types/src/components/Shared/Taxonomy/TaxonomyApproveForm.d.ts +15 -0
- package/dist/types/src/components/Shared/Taxonomy/TaxonomySuggestionDetail.d.ts +11 -0
- package/dist/types/src/components/Shared/Taxonomy/TaxonomySuggestionTable.d.ts +12 -0
- package/dist/types/src/components/Shared/Taxonomy/types.d.ts +18 -0
- package/dist/types/src/components/Shared/ViewControls.d.ts +13 -0
- package/dist/types/src/components/Shared/ViewModeToggle.d.ts +9 -0
- package/dist/types/src/components/Shared/extractTagsFromTitle.d.ts +3 -0
- package/dist/types/src/components/Shared/helpers/api.d.ts +21 -0
- package/dist/types/src/components/Shared/helpers/filters.d.ts +10 -0
- package/dist/types/src/components/Shared/helpers/jobsHelpers.d.ts +6 -0
- package/dist/types/src/components/Shared/types/shared-types.d.ts +125 -0
- package/dist/types/src/components/Shared/useSavedJobs.d.ts +5 -0
- package/dist/types/src/components/TagBadge/TagBadge.d.ts +12 -0
- package/dist/types/src/components/TagPicker/TagPicker.d.ts +20 -0
- package/dist/types/src/components/hooks/useFilters.d.ts +5 -0
- package/dist/types/src/components/hooks/useOnboarding.d.ts +19 -0
- package/dist/types/src/components/hooks/usePagination.d.ts +6 -0
- package/dist/types/src/components/hooks/useSubscription.d.ts +4 -0
- package/dist/types/src/data/mockCandidates.d.ts +2 -0
- package/dist/types/src/data/mockCareerAssistant.d.ts +6 -0
- package/dist/types/src/data/mockComplaints.d.ts +2 -0
- package/dist/types/src/data/mockReviews.d.ts +6 -0
- package/dist/types/src/hooks/useCareerAssistant.d.ts +7 -0
- package/dist/types/src/index.d.ts +152 -0
- package/dist/types/src/main.d.ts +7 -0
- package/dist/types/src/services/careerAssistant.mock.d.ts +53 -0
- package/dist/types/src/stories/Button.stories.d.ts +7 -0
- package/dist/types/src/stories/CompanyGroupDetail.stories.d.ts +6 -0
- package/dist/types/src/stories/ConsentAnalytics.stories.d.ts +9 -0
- package/dist/types/src/stories/Footer.stories.d.ts +7 -0
- package/dist/types/src/stories/GenericPagination.stories.d.ts +7 -0
- package/dist/types/src/stories/Header.stories.d.ts +6 -0
- package/dist/types/src/stories/ItemsPerPageSelector.stories.d.ts +7 -0
- package/dist/types/src/stories/LoadingCompanyShadowCard.stories.d.ts +7 -0
- package/dist/types/src/stories/LoadingShadowCard.stories.d.ts +7 -0
- package/dist/types/src/stories/Login.stories.d.ts +7 -0
- package/dist/types/src/stories/Notification.stories.d.ts +6 -0
- package/dist/types/src/stories/NotificationTester.stories.d.ts +6 -0
- package/dist/types/src/stories/OnboardingChecklist.stories.d.ts +8 -0
- package/dist/types/src/stories/OnboardingDashboard.stories.d.ts +9 -0
- package/dist/types/src/stories/PageComponents.stories.d.ts +7 -0
- package/dist/types/src/stories/PricingComponents.stories.d.ts +6 -0
- package/dist/types/src/stories/ShieldedActionButton.stories.d.ts +8 -0
- package/dist/types/src/stories/SignInPromptModal.stories.d.ts +7 -0
- package/dist/types/src/stories/VerificationBanner.stories.d.ts +9 -0
- package/dist/types/src/types/candidate.d.ts +27 -0
- package/dist/types/src/types/chat-messages.d.ts +6 -0
- package/dist/types/src/types/company-user.d.ts +33 -0
- package/dist/types/src/types/company-user.test.d.ts +1 -0
- package/dist/types/src/types/complaint.d.ts +21 -0
- package/dist/types/src/types/conference.d.ts +21 -0
- package/dist/types/src/types/dashboard.d.ts +252 -0
- package/dist/types/src/types/events.courses.d.ts +49 -0
- package/dist/types/src/types/events.d.ts +23 -0
- package/dist/types/src/types/events.freelancers.d.ts +11 -0
- package/dist/types/src/types/events.jobs.d.ts +70 -0
- package/dist/types/src/types/events.news.d.ts +57 -0
- package/dist/types/src/types/events.newsletter.d.ts +6 -0
- package/dist/types/src/types/freelancer.d.ts +128 -0
- package/dist/types/src/types/general.d.ts +15 -0
- package/dist/types/src/types/icon-utils.d.ts +3 -0
- package/dist/types/src/types/item.d.ts +10 -0
- package/dist/types/src/types/job-alert.d.ts +64 -0
- package/dist/types/src/types/job.d.ts +30 -0
- package/dist/types/src/types/market.d.ts +78 -0
- package/dist/types/src/types/news.d.ts +15 -0
- package/dist/types/src/types/onboarding.d.ts +42 -0
- package/dist/types/src/types/review.d.ts +61 -0
- package/dist/types/src/types/user.d.ts +34 -0
- package/package.json +3 -2
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type React from "react";
|
|
2
|
+
import type { NewsArticle } from "./types/news";
|
|
3
|
+
interface TrendingNewsProps {
|
|
4
|
+
articles: NewsArticle[];
|
|
5
|
+
onArticleClick: (article: NewsArticle) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const TrendingNews: React.FC<TrendingNewsProps>;
|
|
8
|
+
export default TrendingNews;
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export interface NewsArticle {
|
|
2
|
+
_id: string;
|
|
3
|
+
title: string;
|
|
4
|
+
content: string;
|
|
5
|
+
author: string[];
|
|
6
|
+
categories: string[];
|
|
7
|
+
tags: string[];
|
|
8
|
+
company: string;
|
|
9
|
+
date: string;
|
|
10
|
+
image: string;
|
|
11
|
+
link: string;
|
|
12
|
+
slug: string;
|
|
13
|
+
status: number;
|
|
14
|
+
scraped_at: string;
|
|
15
|
+
readTime?: number;
|
|
16
|
+
isBreaking?: boolean;
|
|
17
|
+
isTrending?: boolean;
|
|
18
|
+
viewCount?: number;
|
|
19
|
+
}
|
|
20
|
+
export interface NewsCategory {
|
|
21
|
+
id: string;
|
|
22
|
+
name: string;
|
|
23
|
+
icon: string;
|
|
24
|
+
count: number;
|
|
25
|
+
color: string;
|
|
26
|
+
}
|
|
27
|
+
export type NewsSortOption = "latest" | "trending" | "most-read" | "oldest" | "relevance";
|
|
28
|
+
export interface NewsFilters {
|
|
29
|
+
categories: string[];
|
|
30
|
+
tags: string[];
|
|
31
|
+
authors: string[];
|
|
32
|
+
companies: string[];
|
|
33
|
+
dateRange: [string, string];
|
|
34
|
+
readTime: [number, number];
|
|
35
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { NotificationState, NotificationType } from "./notificationStore";
|
|
3
|
+
export type NotificationItemProps = {
|
|
4
|
+
notification: NotificationState;
|
|
5
|
+
onDismiss: (id: string) => void;
|
|
6
|
+
actionClassName?: string;
|
|
7
|
+
closeButtonClassName?: string;
|
|
8
|
+
notificationClassName?: string;
|
|
9
|
+
titleClassName?: string;
|
|
10
|
+
messageClassName?: string;
|
|
11
|
+
variantClassNames?: Partial<Record<NotificationType, string>>;
|
|
12
|
+
iconClassNames?: Partial<Record<NotificationType, string>>;
|
|
13
|
+
renderIcon?: (type: NotificationType) => React.ReactNode;
|
|
14
|
+
};
|
|
15
|
+
export declare const NotificationItem: ({ notification, onDismiss, actionClassName, closeButtonClassName, notificationClassName, titleClassName, messageClassName, variantClassNames, iconClassNames, renderIcon, }: NotificationItemProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { NotificationContextValue, NotificationPlacement, NotificationType } from "./notificationStore";
|
|
3
|
+
export type NotificationProviderProps = {
|
|
4
|
+
children: React.ReactNode;
|
|
5
|
+
placement?: NotificationPlacement;
|
|
6
|
+
containerClassName?: string;
|
|
7
|
+
containerStyle?: React.CSSProperties;
|
|
8
|
+
stackClassName?: string;
|
|
9
|
+
notificationClassName?: string;
|
|
10
|
+
titleClassName?: string;
|
|
11
|
+
messageClassName?: string;
|
|
12
|
+
actionClassName?: string;
|
|
13
|
+
closeButtonClassName?: string;
|
|
14
|
+
variantClassNames?: Partial<Record<NotificationType, string>>;
|
|
15
|
+
iconClassNames?: Partial<Record<NotificationType, string>>;
|
|
16
|
+
renderIcon?: (type: NotificationType) => React.ReactNode;
|
|
17
|
+
maxVisible?: number;
|
|
18
|
+
};
|
|
19
|
+
export declare const NotificationProvider: ({ children, placement, containerClassName, containerStyle, stackClassName, notificationClassName, titleClassName, messageClassName, actionClassName, closeButtonClassName, variantClassNames, iconClassNames, renderIcon, maxVisible, }: NotificationProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
20
|
+
export declare const useNotification: () => NotificationContextValue;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import type { NotificationPayload, NotificationType } from "./notificationStore";
|
|
2
|
+
export type NotificationTesterProps = {
|
|
3
|
+
position?: "bottom-right" | "bottom-left" | "top-right" | "top-left";
|
|
4
|
+
buttonLabel?: string;
|
|
5
|
+
panelTitle?: string;
|
|
6
|
+
defaultType?: NotificationType;
|
|
7
|
+
defaultTitle?: string;
|
|
8
|
+
defaultMessage?: string;
|
|
9
|
+
allowCustomMessage?: boolean;
|
|
10
|
+
allowCustomTitle?: boolean;
|
|
11
|
+
allowActions?: boolean;
|
|
12
|
+
allowDuration?: boolean;
|
|
13
|
+
allowPersistent?: boolean;
|
|
14
|
+
showAllTypes?: boolean;
|
|
15
|
+
presetCases?: Array<{
|
|
16
|
+
label: string;
|
|
17
|
+
payload: NotificationPayload;
|
|
18
|
+
}>;
|
|
19
|
+
onTrigger?: (payload: NotificationPayload) => void;
|
|
20
|
+
};
|
|
21
|
+
export declare const NotificationTester: ({ position, buttonLabel, panelTitle, defaultType, defaultTitle, defaultMessage, allowCustomMessage, allowCustomTitle, allowActions, allowDuration, allowPersistent, showAllTypes, presetCases, onTrigger, }: NotificationTesterProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
import type { NotificationPlacement, NotificationState, NotificationType } from "./notificationStore";
|
|
3
|
+
export type NotificationViewportProps = {
|
|
4
|
+
notifications: NotificationState[];
|
|
5
|
+
placement?: NotificationPlacement;
|
|
6
|
+
containerClassName?: string;
|
|
7
|
+
containerStyle?: React.CSSProperties;
|
|
8
|
+
stackClassName?: string;
|
|
9
|
+
notificationClassName?: string;
|
|
10
|
+
titleClassName?: string;
|
|
11
|
+
messageClassName?: string;
|
|
12
|
+
actionClassName?: string;
|
|
13
|
+
closeButtonClassName?: string;
|
|
14
|
+
variantClassNames?: Partial<Record<NotificationType, string>>;
|
|
15
|
+
iconClassNames?: Partial<Record<NotificationType, string>>;
|
|
16
|
+
renderIcon?: (type: NotificationType) => React.ReactNode;
|
|
17
|
+
onDismiss: (id: string) => void;
|
|
18
|
+
maxVisible?: number;
|
|
19
|
+
};
|
|
20
|
+
export declare const NotificationViewport: ({ notifications, placement, containerClassName, containerStyle, stackClassName, notificationClassName, titleClassName, messageClassName, actionClassName, closeButtonClassName, variantClassNames, iconClassNames, renderIcon, onDismiss, maxVisible, }: NotificationViewportProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { NotificationProvider, useNotification } from "./NotificationProvider";
|
|
2
|
+
export { NotificationTester } from "./NotificationTester";
|
|
3
|
+
export { NotificationViewport } from "./NotificationViewport";
|
|
4
|
+
export { notify, dismiss, updateNotification, clearNotifications, type NotificationAction, type NotificationContextValue, type NotificationPayload, type NotificationPlacement, type NotificationState, type NotificationType, } from "./notificationStore";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
export type NotificationType = "success" | "error" | "warning" | "info" | "custom";
|
|
3
|
+
export type NotificationPlacement = "top-left" | "top-right" | "top-center" | "bottom-left" | "bottom-right" | "bottom-center" | "center";
|
|
4
|
+
export type NotificationAction = {
|
|
5
|
+
label: string;
|
|
6
|
+
onClick?: (id: string) => void;
|
|
7
|
+
href?: string;
|
|
8
|
+
target?: string;
|
|
9
|
+
autoDismiss?: boolean;
|
|
10
|
+
variant?: "primary" | "secondary" | "ghost";
|
|
11
|
+
ariaLabel?: string;
|
|
12
|
+
};
|
|
13
|
+
export type NotificationPayload = {
|
|
14
|
+
id?: string;
|
|
15
|
+
type?: NotificationType;
|
|
16
|
+
title?: React.ReactNode;
|
|
17
|
+
message?: React.ReactNode;
|
|
18
|
+
content?: React.ReactNode;
|
|
19
|
+
duration?: number;
|
|
20
|
+
persistent?: boolean;
|
|
21
|
+
actions?: NotificationAction[];
|
|
22
|
+
icon?: React.ReactNode;
|
|
23
|
+
className?: string;
|
|
24
|
+
titleClassName?: string;
|
|
25
|
+
messageClassName?: string;
|
|
26
|
+
role?: "status" | "alert";
|
|
27
|
+
ariaLabel?: string;
|
|
28
|
+
onDismiss?: (id: string) => void;
|
|
29
|
+
};
|
|
30
|
+
export type NotificationState = NotificationPayload & {
|
|
31
|
+
id: string;
|
|
32
|
+
type: NotificationType;
|
|
33
|
+
status: "active" | "leaving";
|
|
34
|
+
createdAt: number;
|
|
35
|
+
};
|
|
36
|
+
export type NotificationContextValue = {
|
|
37
|
+
notifications: NotificationState[];
|
|
38
|
+
notify: (payload: NotificationPayload) => NotificationState;
|
|
39
|
+
update: (payload: Partial<NotificationState> & {
|
|
40
|
+
id: string;
|
|
41
|
+
}) => void;
|
|
42
|
+
dismiss: (id?: string) => void;
|
|
43
|
+
clear: () => void;
|
|
44
|
+
};
|
|
45
|
+
export declare const notify: (payload: NotificationPayload) => NotificationState;
|
|
46
|
+
export declare const updateNotification: (payload: Partial<NotificationState> & {
|
|
47
|
+
id: string;
|
|
48
|
+
}) => void;
|
|
49
|
+
export declare const dismiss: (id?: string) => void;
|
|
50
|
+
export declare const clearNotifications: () => void;
|
|
51
|
+
export declare const useNotificationStore: () => NotificationContextValue;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { OnboardingStep } from "../../types/onboarding";
|
|
2
|
+
interface DashboardOnboardingSectionProps {
|
|
3
|
+
emailVerified: boolean;
|
|
4
|
+
profileComplete: boolean;
|
|
5
|
+
steps: OnboardingStep[];
|
|
6
|
+
progress: number;
|
|
7
|
+
onActionClick?: (actionId: string, stepId: string) => void;
|
|
8
|
+
onOpenFullOnboarding?: () => void;
|
|
9
|
+
className?: string;
|
|
10
|
+
}
|
|
11
|
+
export default function DashboardOnboardingSection({ emailVerified, profileComplete, steps, progress, onActionClick, onOpenFullOnboarding, className, }: DashboardOnboardingSectionProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export { DashboardOnboardingSection };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { ChecklistStep } from "../../types/onboarding";
|
|
2
|
+
export type OnboardingChecklistProps = {
|
|
3
|
+
steps: ChecklistStep[];
|
|
4
|
+
onActionClick?: (actionId: string, stepId: string) => void;
|
|
5
|
+
variant?: "compact" | "full";
|
|
6
|
+
};
|
|
7
|
+
export default function OnboardingChecklist({ steps, onActionClick, variant, }: OnboardingChecklistProps): import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export { OnboardingChecklist };
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { ReactNode } from "react";
|
|
2
|
+
import { UseOnboardingReturn } from "../../components/hooks/useOnboarding";
|
|
3
|
+
export declare function OnboardingProvider({ children }: {
|
|
4
|
+
children: ReactNode;
|
|
5
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare function useOnboardingContext(): UseOnboardingReturn;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { OnboardingStep } from "../../types/onboarding";
|
|
2
|
+
export type OnboardingDashboardProps = {
|
|
3
|
+
emailVerified?: boolean;
|
|
4
|
+
profileComplete?: boolean;
|
|
5
|
+
steps: OnboardingStep[];
|
|
6
|
+
progress?: number;
|
|
7
|
+
onActionClick?: (actionId: string | undefined, stepId: string) => void;
|
|
8
|
+
variant?: "compact" | "full";
|
|
9
|
+
};
|
|
10
|
+
export default function OnboardingDashboard({ emailVerified, profileComplete, steps, progress, onActionClick, variant, }: OnboardingDashboardProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export { OnboardingDashboard };
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { OnboardingStep } from "../../types/onboarding";
|
|
2
|
+
export type OnboardingModalProps = {
|
|
3
|
+
open: boolean;
|
|
4
|
+
onOpenChange: (open: boolean) => void;
|
|
5
|
+
emailVerified: boolean;
|
|
6
|
+
profileComplete: boolean;
|
|
7
|
+
steps: OnboardingStep[];
|
|
8
|
+
onActionClick?: (actionId: string | undefined, stepId: string) => void;
|
|
9
|
+
onResendVerification?: () => Promise<void> | void;
|
|
10
|
+
onChangeEmail?: () => void;
|
|
11
|
+
isResending?: boolean;
|
|
12
|
+
resendError?: string | null;
|
|
13
|
+
onDismiss?: () => void;
|
|
14
|
+
dismissLabel?: string;
|
|
15
|
+
title?: string;
|
|
16
|
+
description?: string;
|
|
17
|
+
};
|
|
18
|
+
export default function OnboardingModal({ open, onOpenChange, emailVerified, profileComplete, steps, onActionClick, onResendVerification, onChangeEmail, isResending, resendError, onDismiss, dismissLabel, title, description, }: OnboardingModalProps): import("react/jsx-runtime").JSX.Element;
|
|
19
|
+
export { OnboardingModal };
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as React from "react";
|
|
2
|
+
export type ShieldedActionButtonProps = {
|
|
3
|
+
children: React.ReactNode;
|
|
4
|
+
onClick?: () => void;
|
|
5
|
+
emailVerified?: boolean;
|
|
6
|
+
profileComplete?: boolean;
|
|
7
|
+
requiredSteps?: string[];
|
|
8
|
+
isBlocked?: boolean;
|
|
9
|
+
blockedReason?: string;
|
|
10
|
+
ctaLabel?: string;
|
|
11
|
+
onCtaClick?: () => void;
|
|
12
|
+
variant?: "tooltip" | "modal";
|
|
13
|
+
};
|
|
14
|
+
export default function ShieldedActionButton({ children, onClick, emailVerified, profileComplete, requiredSteps, isBlocked, blockedReason, ctaLabel, onCtaClick, variant, }: ShieldedActionButtonProps): import("react/jsx-runtime").JSX.Element;
|
|
15
|
+
export { ShieldedActionButton };
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export type VerificationBannerProps = {
|
|
2
|
+
emailVerified: boolean;
|
|
3
|
+
onResend: () => Promise<void> | void;
|
|
4
|
+
onChangeEmail: () => void;
|
|
5
|
+
isResending?: boolean;
|
|
6
|
+
error?: string | null;
|
|
7
|
+
variant?: "inline" | "page" | "compact";
|
|
8
|
+
dismissible?: boolean;
|
|
9
|
+
onDismiss?: () => void;
|
|
10
|
+
};
|
|
11
|
+
export default function VerificationBanner({ emailVerified, onResend, onChangeEmail, isResending, error, variant, dismissible, onDismiss, }: VerificationBannerProps): import("react/jsx-runtime").JSX.Element | null;
|
|
12
|
+
export { VerificationBanner };
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export { default as VerificationBanner } from "./VerificationBanner";
|
|
2
|
+
export type { VerificationBannerProps } from "./VerificationBanner";
|
|
3
|
+
export { default as OnboardingDashboard } from "./OnboardingDashboard";
|
|
4
|
+
export type { OnboardingDashboardProps } from "./OnboardingDashboard";
|
|
5
|
+
export { default as OnboardingChecklist } from "./OnboardingChecklist";
|
|
6
|
+
export type { OnboardingChecklistProps } from "./OnboardingChecklist";
|
|
7
|
+
export { default as ShieldedActionButton } from "./ShieldedActionButton";
|
|
8
|
+
export type { ShieldedActionButtonProps } from "./ShieldedActionButton";
|
|
9
|
+
export { default as OnboardingModal } from "./OnboardingModal";
|
|
10
|
+
export type { OnboardingModalProps } from "./OnboardingModal";
|
|
11
|
+
export { default as OnboardingPopup } from "./OnboardingPopup";
|
|
12
|
+
export { OnboardingProvider, useOnboardingContext } from "./OnboardingContext";
|
|
13
|
+
export { default as DashboardOnboardingSection } from "./DashboardOnboardingSection";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
interface PlacesListProps {
|
|
2
|
+
apiUrl?: string;
|
|
3
|
+
itemsPerPage?: number;
|
|
4
|
+
enableMobileFilter?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const PlacesList: ({ apiUrl, itemsPerPage, enableMobileFilter: _enableMobileFilter, }: PlacesListProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default PlacesList;
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export type PlaceType = "Office" | "Conference Venue" | "Coworking" | "Innovation Hub";
|
|
2
|
+
export interface Place {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
type: PlaceType;
|
|
6
|
+
city: string;
|
|
7
|
+
country: string;
|
|
8
|
+
shortDescription: string;
|
|
9
|
+
services: string[];
|
|
10
|
+
tags: string[];
|
|
11
|
+
rating: number;
|
|
12
|
+
reviewCount: number;
|
|
13
|
+
image?: string;
|
|
14
|
+
website?: string;
|
|
15
|
+
isFeatured?: boolean;
|
|
16
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type GroupPricesProps = {
|
|
2
|
+
groupedIds: string[];
|
|
3
|
+
tabTitles: string[];
|
|
4
|
+
lang?: string;
|
|
5
|
+
url?: string;
|
|
6
|
+
PromotionsTitle?: string;
|
|
7
|
+
buttonMsg?: string;
|
|
8
|
+
};
|
|
9
|
+
export default function GroupPrices({ groupedIds, tabTitles, lang, url, PromotionsTitle, buttonMsg }: GroupPricesProps): import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { ProductCategory } from "./types";
|
|
2
|
+
type ProductCategoriesListProps = {
|
|
3
|
+
apiUrl?: string;
|
|
4
|
+
categoriesData?: ProductCategory[];
|
|
5
|
+
productCategoriesData?: ProductCategory[];
|
|
6
|
+
itemsPerPage?: number;
|
|
7
|
+
};
|
|
8
|
+
declare const ProductCategoriesList: ({ apiUrl, categoriesData, productCategoriesData, itemsPerPage, }: ProductCategoriesListProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default ProductCategoriesList;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { ProductCategory } from "./types";
|
|
2
|
+
type Props = {
|
|
3
|
+
onNavigate: (path: string) => void;
|
|
4
|
+
category: ProductCategory;
|
|
5
|
+
};
|
|
6
|
+
declare const ProductCategoryDetail: ({ category, onNavigate }: Props) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export default ProductCategoryDetail;
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
export type ComplianceLevel = "Low" | "Medium" | "High";
|
|
2
|
+
export interface CategoryCompany {
|
|
3
|
+
name: string;
|
|
4
|
+
slug: string;
|
|
5
|
+
offeringsStrength: "core" | "secondary" | "emerging";
|
|
6
|
+
}
|
|
7
|
+
export interface CategoryJob {
|
|
8
|
+
title: string;
|
|
9
|
+
company: string;
|
|
10
|
+
location: string;
|
|
11
|
+
slug: string;
|
|
12
|
+
}
|
|
13
|
+
export interface CategorySkill {
|
|
14
|
+
name: string;
|
|
15
|
+
demandLevel: "High" | "Medium" | "Low";
|
|
16
|
+
}
|
|
17
|
+
export interface CategoryRelated {
|
|
18
|
+
name: string;
|
|
19
|
+
slug: string;
|
|
20
|
+
}
|
|
21
|
+
export interface SubCategory {
|
|
22
|
+
name: string;
|
|
23
|
+
slug: string;
|
|
24
|
+
description: string;
|
|
25
|
+
}
|
|
26
|
+
export interface ProductCategory {
|
|
27
|
+
id: string;
|
|
28
|
+
slug: string;
|
|
29
|
+
name: string;
|
|
30
|
+
parentCategory: string;
|
|
31
|
+
description: string;
|
|
32
|
+
longDescription: string;
|
|
33
|
+
synonyms: string[];
|
|
34
|
+
subcategories: SubCategory[];
|
|
35
|
+
vendorCount: number;
|
|
36
|
+
productCount: number;
|
|
37
|
+
jobCount: number;
|
|
38
|
+
complianceLevel: ComplianceLevel;
|
|
39
|
+
tags: string[];
|
|
40
|
+
lastUpdated: string;
|
|
41
|
+
isFeatured?: boolean;
|
|
42
|
+
isTrending?: boolean;
|
|
43
|
+
topCompanies: CategoryCompany[];
|
|
44
|
+
sampleJobs: CategoryJob[];
|
|
45
|
+
keySkills: CategorySkill[];
|
|
46
|
+
relatedCategories: CategoryRelated[];
|
|
47
|
+
}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Regulator } from "../../components/Regulators/types";
|
|
2
|
+
interface RegulatorDetailProps {
|
|
3
|
+
regulatorData?: Regulator;
|
|
4
|
+
}
|
|
5
|
+
declare const RegulatorDetail: ({ regulatorData }: RegulatorDetailProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default RegulatorDetail;
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import type { Jurisdiction } from "./types";
|
|
2
|
+
interface JurisdictionsListProps {
|
|
3
|
+
jurisdictionsData?: Jurisdiction[];
|
|
4
|
+
}
|
|
5
|
+
declare const JurisdictionsList: ({ jurisdictionsData }: JurisdictionsListProps) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export default JurisdictionsList;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import type { Regulator } from "./types";
|
|
2
|
+
interface RegulatorsListProps {
|
|
3
|
+
apiUrl?: string;
|
|
4
|
+
regulatorsData?: Regulator[];
|
|
5
|
+
itemsPerPage?: number;
|
|
6
|
+
enableMobileFilter?: boolean;
|
|
7
|
+
}
|
|
8
|
+
declare const RegulatorsList: ({ apiUrl, regulatorsData, itemsPerPage, }: RegulatorsListProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default RegulatorsList;
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
export type RegulatorJurisdiction = "National" | "State" | "Regional" | "Supranational";
|
|
2
|
+
export type LicenseEvidenceLevel = "verified" | "self-reported" | "community-suggested";
|
|
3
|
+
export interface RegulatorCareerRole {
|
|
4
|
+
roleFamily: string;
|
|
5
|
+
description: string;
|
|
6
|
+
}
|
|
7
|
+
export interface RegulatorLinkedMarket {
|
|
8
|
+
name: string;
|
|
9
|
+
slug: string;
|
|
10
|
+
}
|
|
11
|
+
export interface RegulatorLinkedCompany {
|
|
12
|
+
name: string;
|
|
13
|
+
slug: string;
|
|
14
|
+
evidenceLevel: LicenseEvidenceLevel;
|
|
15
|
+
evidenceUrl?: string;
|
|
16
|
+
licenseId?: string;
|
|
17
|
+
}
|
|
18
|
+
export interface Regulator {
|
|
19
|
+
id: string;
|
|
20
|
+
slug: string;
|
|
21
|
+
name: string;
|
|
22
|
+
acronym: string;
|
|
23
|
+
country: string;
|
|
24
|
+
region: string;
|
|
25
|
+
jurisdiction: RegulatorJurisdiction;
|
|
26
|
+
sectors: string[];
|
|
27
|
+
licenseTypes: string[];
|
|
28
|
+
scopeTags: string[];
|
|
29
|
+
establishedYear: number;
|
|
30
|
+
complianceRating: number;
|
|
31
|
+
website?: string;
|
|
32
|
+
registerUrl?: string;
|
|
33
|
+
isPrimary?: boolean;
|
|
34
|
+
description: string;
|
|
35
|
+
scope: string;
|
|
36
|
+
careerImplications: string;
|
|
37
|
+
careerRoles: RegulatorCareerRole[];
|
|
38
|
+
keyRequirements: string[];
|
|
39
|
+
linkedMarkets: RegulatorLinkedMarket[];
|
|
40
|
+
linkedCompanies: RegulatorLinkedCompany[];
|
|
41
|
+
}
|
|
42
|
+
export type JurisdictionStatus = "Active" | "Reforming" | "Emerging" | "Restricted";
|
|
43
|
+
export interface Jurisdiction {
|
|
44
|
+
id: string;
|
|
45
|
+
slug: string;
|
|
46
|
+
name: string;
|
|
47
|
+
region: string;
|
|
48
|
+
status: JurisdictionStatus;
|
|
49
|
+
regulatorIds: string[];
|
|
50
|
+
regulatorNames: string[];
|
|
51
|
+
notes: string;
|
|
52
|
+
markets: RegulatorLinkedMarket[];
|
|
53
|
+
gamblingSectors: string[];
|
|
54
|
+
keyFacts: string[];
|
|
55
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { ReviewRating } from "../../types/review";
|
|
2
|
+
export interface LeaveReviewStandalonePayload {
|
|
3
|
+
companyName: string;
|
|
4
|
+
title: string;
|
|
5
|
+
body: string;
|
|
6
|
+
rating: ReviewRating;
|
|
7
|
+
pros?: string;
|
|
8
|
+
cons?: string;
|
|
9
|
+
relationship: string;
|
|
10
|
+
isAnonymous: boolean;
|
|
11
|
+
}
|
|
12
|
+
interface LeaveReviewStandaloneModalProps {
|
|
13
|
+
open: boolean;
|
|
14
|
+
onOpenChange: (open: boolean) => void;
|
|
15
|
+
onSubmit?: (payload: LeaveReviewStandalonePayload) => void;
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* Standalone "Leave a Review" modal for the /reviews listing page.
|
|
19
|
+
* Unlike the company-scoped LeaveReviewModal, this one asks the user
|
|
20
|
+
* to specify the company name.
|
|
21
|
+
*/
|
|
22
|
+
declare const LeaveReviewStandaloneModal: ({ open, onOpenChange, onSubmit }: LeaveReviewStandaloneModalProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export default LeaveReviewStandaloneModal;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { LeaveReviewStandalonePayload } from "../../components/Reviews/LeaveReviewStandaloneModal";
|
|
2
|
+
import { CompanyReview } from "../../types/review";
|
|
3
|
+
interface ReviewsProps {
|
|
4
|
+
reviewsData?: CompanyReview[];
|
|
5
|
+
onLeaveReview?: (payload: LeaveReviewStandalonePayload) => void;
|
|
6
|
+
}
|
|
7
|
+
declare const Reviews: ({ reviewsData, onLeaveReview }: ReviewsProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default Reviews;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface FilterTag {
|
|
3
|
+
key: string;
|
|
4
|
+
label: string;
|
|
5
|
+
value: string;
|
|
6
|
+
onRemove: () => void;
|
|
7
|
+
}
|
|
8
|
+
interface ActiveFiltersDisplayProps {
|
|
9
|
+
filters: FilterTag[];
|
|
10
|
+
onClearAll: () => void;
|
|
11
|
+
handleCreateAlert?: () => void;
|
|
12
|
+
className?: string;
|
|
13
|
+
}
|
|
14
|
+
declare const ActiveFiltersDisplay: React.FC<ActiveFiltersDisplayProps>;
|
|
15
|
+
export default ActiveFiltersDisplay;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface CareerPathCardProps {
|
|
3
|
+
slug: string;
|
|
4
|
+
title: string;
|
|
5
|
+
department: string;
|
|
6
|
+
description: string;
|
|
7
|
+
typicalTimeline: string;
|
|
8
|
+
keySkills: string[];
|
|
9
|
+
nodesCount: number;
|
|
10
|
+
entryPointsCount: number;
|
|
11
|
+
marketHotspots: string[];
|
|
12
|
+
salaryRange?: {
|
|
13
|
+
entry: string;
|
|
14
|
+
director: string;
|
|
15
|
+
};
|
|
16
|
+
viewMode?: "grid" | "list";
|
|
17
|
+
onNavigate: (url: string) => void;
|
|
18
|
+
}
|
|
19
|
+
declare const CareerPathCard: React.FC<CareerPathCardProps>;
|
|
20
|
+
export default CareerPathCard;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
import { Channel } from "../../../components/Shared/types/shared-types";
|
|
3
|
+
interface ChannelCardProps {
|
|
4
|
+
item: Channel;
|
|
5
|
+
viewMode?: "grid" | "list";
|
|
6
|
+
onNavigate: (url: string) => void;
|
|
7
|
+
}
|
|
8
|
+
declare const ChannelCard: React.FC<ChannelCardProps>;
|
|
9
|
+
export default ChannelCard;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import React from "react";
|
|
2
|
+
interface CompanyCardMobileProps {
|
|
3
|
+
id: string;
|
|
4
|
+
name: string;
|
|
5
|
+
slug?: string;
|
|
6
|
+
logo?: string;
|
|
7
|
+
tagline?: string;
|
|
8
|
+
companyType: string;
|
|
9
|
+
location?: string;
|
|
10
|
+
employeeRange?: string;
|
|
11
|
+
verticals?: string[];
|
|
12
|
+
hiringNow?: boolean;
|
|
13
|
+
isClaimed?: boolean;
|
|
14
|
+
isVerified?: boolean;
|
|
15
|
+
profileViews?: number;
|
|
16
|
+
hiringIntensity?: "low" | "medium" | "high";
|
|
17
|
+
licenses?: string[];
|
|
18
|
+
isSaved?: boolean;
|
|
19
|
+
onSave?: (id: string) => void;
|
|
20
|
+
onClick?: (slug: string) => void;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* CompanyCardMobile - Mobile-optimized company card with micro-signals
|
|
24
|
+
* MVP improvements:
|
|
25
|
+
* - Micro-signal row (icons only): 👀 Profile views, 🔥 Hiring intensity, ✅ Verified
|
|
26
|
+
* - Reduce text density → icons + tooltips
|
|
27
|
+
* - Compliance badges (MGA-licensed) where applicable
|
|
28
|
+
*/
|
|
29
|
+
declare const CompanyCardMobile: React.FC<CompanyCardMobileProps>;
|
|
30
|
+
export default CompanyCardMobile;
|