@igamingcareer/igaming-components 1.1.21 → 1.1.23

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.
Files changed (429) hide show
  1. package/dist/index.js +26 -26
  2. package/dist/index.mjs +2634 -2604
  3. package/dist/types/components/ui/alert-dialog.d.ts +20 -0
  4. package/dist/types/components/ui/alert.d.ts +8 -0
  5. package/dist/types/components/ui/avatar.d.ts +6 -0
  6. package/dist/types/components/ui/badge.d.ts +9 -0
  7. package/dist/types/components/ui/button.d.ts +11 -0
  8. package/dist/types/components/ui/card.d.ts +8 -0
  9. package/dist/types/components/ui/checkbox.d.ts +4 -0
  10. package/dist/types/components/ui/collapsible.d.ts +5 -0
  11. package/dist/types/components/ui/command.d.ts +82 -0
  12. package/dist/types/components/ui/dialog.d.ts +19 -0
  13. package/dist/types/components/ui/drawer.d.ts +22 -0
  14. package/dist/types/components/ui/dropdown-menu.d.ts +27 -0
  15. package/dist/types/components/ui/input.d.ts +3 -0
  16. package/dist/types/components/ui/label.d.ts +5 -0
  17. package/dist/types/components/ui/popover.d.ts +7 -0
  18. package/dist/types/components/ui/progress.d.ts +4 -0
  19. package/dist/types/components/ui/radio-group.d.ts +5 -0
  20. package/dist/types/components/ui/scroll-area.d.ts +5 -0
  21. package/dist/types/components/ui/select.d.ts +13 -0
  22. package/dist/types/components/ui/separator.d.ts +4 -0
  23. package/dist/types/components/ui/slider.d.ts +4 -0
  24. package/dist/types/components/ui/switch.d.ts +4 -0
  25. package/dist/types/components/ui/tabs.d.ts +7 -0
  26. package/dist/types/components/ui/textarea.d.ts +5 -0
  27. package/dist/types/components/ui/toast.d.ts +15 -0
  28. package/dist/types/hooks/use-toast.d.ts +45 -0
  29. package/dist/types/lib/utils.d.ts +2 -0
  30. package/dist/types/src/components/App/App.d.ts +2 -0
  31. package/dist/types/src/components/Auth/ForgotPassword.d.ts +26 -0
  32. package/dist/types/src/components/Auth/ForgotPasswordForm.d.ts +16 -0
  33. package/dist/types/src/components/Auth/Login.d.ts +36 -0
  34. package/dist/types/src/components/Auth/LoginForm.d.ts +23 -0
  35. package/dist/types/src/components/Auth/Register.d.ts +33 -0
  36. package/dist/types/src/components/Auth/RegisterForm.d.ts +29 -0
  37. package/dist/types/src/components/Auth/RegisterFormV2.d.ts +20 -0
  38. package/dist/types/src/components/Auth/RegisterV2.d.ts +18 -0
  39. package/dist/types/src/components/Auth/SignInPromptModal.d.ts +23 -0
  40. package/dist/types/src/components/Auth/VerificationBanner.d.ts +11 -0
  41. package/dist/types/src/components/Button/Button.d.ts +5 -0
  42. package/dist/types/src/components/CandidateProfile/CandidateProfile.d.ts +49 -0
  43. package/dist/types/src/components/CareerAssistant/CareerAssistant.d.ts +11 -0
  44. package/dist/types/src/components/CareerAssistant/MessageBubble.d.ts +15 -0
  45. package/dist/types/src/components/CareerAssistant/WelcomeScreen.d.ts +7 -0
  46. package/dist/types/src/components/CareerAssistant/mockCareerAssistant.d.ts +8 -0
  47. package/dist/types/src/components/Companies/CompaniesList.d.ts +30 -0
  48. package/dist/types/src/components/Companies/CompanyAdminPage.d.ts +0 -0
  49. package/dist/types/src/components/Companies/CompanyDetail.d.ts +33 -0
  50. package/dist/types/src/components/Companies/CompanyDetail.similarCompanies.test.d.ts +1 -0
  51. package/dist/types/src/components/Companies/CompanyDirectory.d.ts +27 -0
  52. package/dist/types/src/components/Companies/CompanyDirectoryContainer.d.ts +23 -0
  53. package/dist/types/src/components/Companies/CompanyFilters.test.d.ts +1 -0
  54. package/dist/types/src/components/Companies/CompanyGroupDetail.d.ts +6 -0
  55. package/dist/types/src/components/Companies/CompanyPublicPage.d.ts +0 -0
  56. package/dist/types/src/components/Companies/CompanyReviewsTab.d.ts +13 -0
  57. package/dist/types/src/components/Companies/admin/CompanyJobsAdmin.d.ts +0 -0
  58. package/dist/types/src/components/Companies/admin/CompanyPeopleAdmin.d.ts +0 -0
  59. package/dist/types/src/components/Companies/admin/CompanyProfileEditor.d.ts +0 -0
  60. package/dist/types/src/components/Companies/companiesListFilters.d.ts +19 -0
  61. package/dist/types/src/components/Companies/companiesListFilters.test.d.ts +1 -0
  62. package/dist/types/src/components/Companies/components/ClaimProfileDialog.d.ts +10 -0
  63. package/dist/types/src/components/Companies/components/CompaniesHeader.d.ts +2 -0
  64. package/dist/types/src/components/Companies/components/CompanyAdminEditDialog.d.ts +15 -0
  65. package/dist/types/src/components/Companies/components/CompanyAdminShell.d.ts +38 -0
  66. package/dist/types/src/components/Companies/components/CompanyCard.d.ts +25 -0
  67. package/dist/types/src/components/Companies/components/CompanyClaim.d.ts +7 -0
  68. package/dist/types/src/components/Companies/components/CompanyComparison.d.ts +12 -0
  69. package/dist/types/src/components/Companies/components/CompanyFilters.d.ts +10 -0
  70. package/dist/types/src/components/Companies/components/CompanyHeader.d.ts +34 -0
  71. package/dist/types/src/components/Companies/components/CompanyMetaHighlights.d.ts +11 -0
  72. package/dist/types/src/components/Companies/components/LoadingCompanyShadowCard.d.ts +5 -0
  73. package/dist/types/src/components/Companies/components/ViewControls.d.ts +14 -0
  74. package/dist/types/src/components/Companies/components/admin/CandidateCard.d.ts +11 -0
  75. package/dist/types/src/components/Companies/components/admin/CompanyAdminCandidates.d.ts +10 -0
  76. package/dist/types/src/components/Companies/components/admin/CompanyAdminEvents.d.ts +10 -0
  77. package/dist/types/src/components/Companies/components/admin/CompanyAdminJobs.d.ts +10 -0
  78. package/dist/types/src/components/Companies/components/admin/CompanyAdminNews.d.ts +10 -0
  79. package/dist/types/src/components/Companies/components/admin/CompanyAdminOverview.d.ts +10 -0
  80. package/dist/types/src/components/Companies/components/admin/CompanyAdminPeople.d.ts +10 -0
  81. package/dist/types/src/components/Companies/components/admin/CompanyAdminProducts.d.ts +10 -0
  82. package/dist/types/src/components/Companies/components/admin/CompanyAdminSettings.d.ts +10 -0
  83. package/dist/types/src/components/Companies/components/admin/modals/AddEventModal.d.ts +16 -0
  84. package/dist/types/src/components/Companies/components/admin/modals/AddJobModal.d.ts +17 -0
  85. package/dist/types/src/components/Companies/components/admin/modals/AddPersonModal.d.ts +15 -0
  86. package/dist/types/src/components/Companies/components/admin/modals/AddProductModal.d.ts +15 -0
  87. package/dist/types/src/components/Companies/components/tabs/CompanyEventsTab.d.ts +8 -0
  88. package/dist/types/src/components/Companies/components/tabs/CompanyInsightsTab.d.ts +2 -0
  89. package/dist/types/src/components/Companies/components/tabs/CompanyJobsTab.d.ts +9 -0
  90. package/dist/types/src/components/Companies/components/tabs/CompanyNewsTab.d.ts +8 -0
  91. package/dist/types/src/components/Companies/components/tabs/CompanyOverviewTab.d.ts +9 -0
  92. package/dist/types/src/components/Companies/components/tabs/CompanyPeopleTab.d.ts +6 -0
  93. package/dist/types/src/components/Companies/components/tabs/CompanyProductsTab.d.ts +6 -0
  94. package/dist/types/src/components/Companies/components/tabs/CompanySidebar.d.ts +7 -0
  95. package/dist/types/src/components/Companies/components/tabs/CompanyTabsList.d.ts +7 -0
  96. package/dist/types/src/components/Companies/components/tabs/CompanyTrustTab.d.ts +7 -0
  97. package/dist/types/src/components/Companies/data/companies.d.ts +18 -0
  98. package/dist/types/src/components/Companies/data/company-group-preview.d.ts +3 -0
  99. package/dist/types/src/components/Companies/hooks/useCompaniesQuery.d.ts +10 -0
  100. package/dist/types/src/components/Companies/reviews/LeaveReviewModal.d.ts +11 -0
  101. package/dist/types/src/components/Companies/reviews/ReviewCard.d.ts +9 -0
  102. package/dist/types/src/components/Companies/reviews/ReviewStars.d.ts +9 -0
  103. package/dist/types/src/components/Companies/reviews/ReviewSummaryBar.d.ts +7 -0
  104. package/dist/types/src/components/Companies/reviews/index.d.ts +4 -0
  105. package/dist/types/src/components/Companies/types/companyAdmin.d.ts +30 -0
  106. package/dist/types/src/components/Companies/types/index.d.ts +379 -0
  107. package/dist/types/src/components/Companies/utils/companiesQuery.d.ts +6 -0
  108. package/dist/types/src/components/Companies/utils/companyFilters.d.ts +53 -0
  109. package/dist/types/src/components/Companies/utils/companyFilters.test.d.ts +1 -0
  110. package/dist/types/src/components/Companies/utils/normalizeCompanies.d.ts +15 -0
  111. package/dist/types/src/components/Companies/utils/normalizeCompaniesResponse.test.d.ts +1 -0
  112. package/dist/types/src/components/Companies/utils/permissions.d.ts +9 -0
  113. package/dist/types/src/components/Companies/utils/similarCompanies.d.ts +2 -0
  114. package/dist/types/src/components/CompanyOnboarding/CompanyOnboardingModal.d.ts +18 -0
  115. package/dist/types/src/components/CompanyOnboarding/index.d.ts +1 -0
  116. package/dist/types/src/components/Complaints/Complaints.d.ts +8 -0
  117. package/dist/types/src/components/Complaints/SubmitComplaintModal.d.ts +16 -0
  118. package/dist/types/src/components/Consent/Analytics.d.ts +9 -0
  119. package/dist/types/src/components/Consent/ConsentBanner.d.ts +11 -0
  120. package/dist/types/src/components/Consent/ConsentContext.d.ts +20 -0
  121. package/dist/types/src/components/ContactForm/ContactFormHybrid.d.ts +8 -0
  122. package/dist/types/src/components/Courses/CoursesList.d.ts +9 -0
  123. package/dist/types/src/components/Dashboard/AddExperienceModal.d.ts +33 -0
  124. package/dist/types/src/components/Dashboard/AddJobDetailModal.d.ts +9 -0
  125. package/dist/types/src/components/Dashboard/AddLanguageModal.d.ts +10 -0
  126. package/dist/types/src/components/Dashboard/AddPreferenceTopicModal.d.ts +7 -0
  127. package/dist/types/src/components/Dashboard/AddSkillModal.d.ts +7 -0
  128. package/dist/types/src/components/Dashboard/Alerts/AlertCard.d.ts +12 -0
  129. package/dist/types/src/components/Dashboard/Alerts/AlertEmptyState.d.ts +5 -0
  130. package/dist/types/src/components/Dashboard/Alerts/AlertForm.d.ts +10 -0
  131. package/dist/types/src/components/Dashboard/Alerts/AlertInsightsWidget.d.ts +8 -0
  132. package/dist/types/src/components/Dashboard/Alerts/AlertStatusBadge.d.ts +8 -0
  133. package/dist/types/src/components/Dashboard/Alerts/DashboardAlerts.d.ts +11 -0
  134. package/dist/types/src/components/Dashboard/CVUploadDialog.d.ts +8 -0
  135. package/dist/types/src/components/Dashboard/CompanyDashboard.d.ts +15 -0
  136. package/dist/types/src/components/Dashboard/CompanyEmployeeOverview.d.ts +29 -0
  137. package/dist/types/src/components/Dashboard/CompanyOwnerOverview.d.ts +20 -0
  138. package/dist/types/src/components/Dashboard/CompanyRecruiterOverview.d.ts +31 -0
  139. package/dist/types/src/components/Dashboard/Dashboard.d.ts +56 -0
  140. package/dist/types/src/components/Dashboard/DashboardCourses.d.ts +32 -0
  141. package/dist/types/src/components/Dashboard/DashboardJobCard.d.ts +13 -0
  142. package/dist/types/src/components/Dashboard/DashboardJobs.d.ts +17 -0
  143. package/dist/types/src/components/Dashboard/DashboardLayout.d.ts +15 -0
  144. package/dist/types/src/components/Dashboard/DashboardNews.d.ts +15 -0
  145. package/dist/types/src/components/Dashboard/DashboardNewsCard.d.ts +12 -0
  146. package/dist/types/src/components/Dashboard/DashboardOverview.d.ts +46 -0
  147. package/dist/types/src/components/Dashboard/DashboardProfile.d.ts +64 -0
  148. package/dist/types/src/components/Dashboard/DashboardSettings.d.ts +84 -0
  149. package/dist/types/src/components/Dashboard/DashboardStats.d.ts +17 -0
  150. package/dist/types/src/components/Dashboard/FreelancerActivationCard.d.ts +6 -0
  151. package/dist/types/src/components/Dashboard/FreelancerDashboardSection.d.ts +10 -0
  152. package/dist/types/src/components/Dashboard/FreelancerOnboardingModal.d.ts +10 -0
  153. package/dist/types/src/components/Dashboard/OnboardingChecklist.d.ts +16 -0
  154. package/dist/types/src/components/Dashboard/OnboardingDashboard.d.ts +19 -0
  155. package/dist/types/src/components/Events/EventCalendarCard.d.ts +7 -0
  156. package/dist/types/src/components/Events/EventsList.d.ts +11 -0
  157. package/dist/types/src/components/Events/SubmitEventModal.d.ts +22 -0
  158. package/dist/types/src/components/Events/mockEvents.d.ts +2 -0
  159. package/dist/types/src/components/Events/types.d.ts +22 -0
  160. package/dist/types/src/components/Footer/Footer.d.ts +32 -0
  161. package/dist/types/src/components/Freelancer/FreelancerProfile.d.ts +19 -0
  162. package/dist/types/src/components/Freelancer/FreelancerProfileContainer.d.ts +2 -0
  163. package/dist/types/src/components/Freelancer/Freelancers.d.ts +30 -0
  164. package/dist/types/src/components/Freelancer/FreelancersContainer.d.ts +2 -0
  165. package/dist/types/src/components/Freelancer/FreelancersList.d.ts +10 -0
  166. package/dist/types/src/components/Freelancer/mockFreelancers.d.ts +6 -0
  167. package/dist/types/src/components/GenericListing/Banner.d.ts +9 -0
  168. package/dist/types/src/components/GenericListing/DateFilter.d.ts +13 -0
  169. package/dist/types/src/components/GenericListing/LastVisitedJobs.d.ts +7 -0
  170. package/dist/types/src/components/GenericListing/Listing.d.ts +32 -0
  171. package/dist/types/src/components/GenericListing/ListingGrid.d.ts +15 -0
  172. package/dist/types/src/components/GenericListing/ListingHeader.d.ts +5 -0
  173. package/dist/types/src/components/GenericListing/ListingSort.d.ts +14 -0
  174. package/dist/types/src/components/GenericListing/MobileFilterDrawer.d.ts +21 -0
  175. package/dist/types/src/components/GenericListing/MobileNav.d.ts +3 -0
  176. package/dist/types/src/components/GenericListing/Pagination.d.ts +8 -0
  177. package/dist/types/src/components/GenericListing/PaginationControls.d.ts +8 -0
  178. package/dist/types/src/components/GenericListing/SearchBar.d.ts +10 -0
  179. package/dist/types/src/components/GenericListing/SearchableSelect.d.ts +10 -0
  180. package/dist/types/src/components/GenericListing/Sidebar.d.ts +11 -0
  181. package/dist/types/src/components/GenericListing/SidebarFilter.d.ts +31 -0
  182. package/dist/types/src/components/GenericListing/SidebarFilters.d.ts +12 -0
  183. package/dist/types/src/components/GenericListing/accessControl.d.ts +22 -0
  184. package/dist/types/src/components/GenericListing/generateMockJobs.d.ts +2 -0
  185. package/dist/types/src/components/GenericListing/useJobDataHook.d.ts +5 -0
  186. package/dist/types/src/components/GenericListing/useLocalStorageState.d.ts +1 -0
  187. package/dist/types/src/components/Header/Header.d.ts +2 -0
  188. package/dist/types/src/components/Header/HeaderAlternative.d.ts +13 -0
  189. package/dist/types/src/components/HomePage/Advantages.d.ts +15 -0
  190. package/dist/types/src/components/HomePage/Cart.d.ts +12 -0
  191. package/dist/types/src/components/HomePage/Chatbot.d.ts +6 -0
  192. package/dist/types/src/components/HomePage/Contact.d.ts +22 -0
  193. package/dist/types/src/components/HomePage/CourseTypes.d.ts +26 -0
  194. package/dist/types/src/components/HomePage/Courses.d.ts +16 -0
  195. package/dist/types/src/components/HomePage/Destinations.d.ts +12 -0
  196. package/dist/types/src/components/HomePage/FAQ.d.ts +11 -0
  197. package/dist/types/src/components/HomePage/FeatureJobs.d.ts +19 -0
  198. package/dist/types/src/components/HomePage/Features.d.ts +13 -0
  199. package/dist/types/src/components/HomePage/ForEmployers.d.ts +10 -0
  200. package/dist/types/src/components/HomePage/Gallery.d.ts +13 -0
  201. package/dist/types/src/components/HomePage/Hero.d.ts +11 -0
  202. package/dist/types/src/components/HomePage/HeroAlternative.d.ts +11 -0
  203. package/dist/types/src/components/HomePage/HeroSection.d.ts +2 -0
  204. package/dist/types/src/components/HomePage/HomePage.d.ts +3 -0
  205. package/dist/types/src/components/HomePage/IgamingCareerHome.d.ts +33 -0
  206. package/dist/types/src/components/HomePage/ImageSlider.d.ts +11 -0
  207. package/dist/types/src/components/HomePage/JobSearch.d.ts +2 -0
  208. package/dist/types/src/components/HomePage/JobsSearchWidget.d.ts +22 -0
  209. package/dist/types/src/components/HomePage/Navbar.d.ts +19 -0
  210. package/dist/types/src/components/HomePage/Newsletter.d.ts +11 -0
  211. package/dist/types/src/components/HomePage/NewsletterV2.d.ts +21 -0
  212. package/dist/types/src/components/HomePage/NotificationModal.d.ts +7 -0
  213. package/dist/types/src/components/HomePage/Partners.d.ts +2 -0
  214. package/dist/types/src/components/HomePage/Services.d.ts +13 -0
  215. package/dist/types/src/components/HomePage/ServicesNoIcons.d.ts +16 -0
  216. package/dist/types/src/components/HomePage/SidebarNewsletter.d.ts +9 -0
  217. package/dist/types/src/components/HomePage/SidebarNewsletterV2.d.ts +18 -0
  218. package/dist/types/src/components/HomePage/Testimonials.d.ts +14 -0
  219. package/dist/types/src/components/HomePage/TestimonialsVariant.d.ts +2 -0
  220. package/dist/types/src/components/HomePage/TrustSignals.d.ts +18 -0
  221. package/dist/types/src/components/HomePage/ValueProposition.d.ts +12 -0
  222. package/dist/types/src/components/HomePage/Videos.d.ts +13 -0
  223. package/dist/types/src/components/HomePage/context/CartContext.d.ts +22 -0
  224. package/dist/types/src/components/IgamingCoursesPage/CourseCard.d.ts +12 -0
  225. package/dist/types/src/components/IgamingCoursesPage/CourseFilters.d.ts +19 -0
  226. package/dist/types/src/components/IgamingCoursesPage/CourseNavigation.d.ts +11 -0
  227. package/dist/types/src/components/IgamingCoursesPage/CourseSearch.d.ts +10 -0
  228. package/dist/types/src/components/IgamingCoursesPage/CourseSidebarFilters.d.ts +23 -0
  229. package/dist/types/src/components/IgamingCoursesPage/CoursesListingCards.d.ts +17 -0
  230. package/dist/types/src/components/IgamingCoursesPage/FeaturedCourses.d.ts +12 -0
  231. package/dist/types/src/components/IgamingCoursesPage/HeroSection.d.ts +9 -0
  232. package/dist/types/src/components/IgamingCoursesPage/IgamingCoursesPage.d.ts +12 -0
  233. package/dist/types/src/components/IgamingCoursesPage/MobileCourseSearch.d.ts +10 -0
  234. package/dist/types/src/components/IgamingCoursesPage/Statistics.d.ts +8 -0
  235. package/dist/types/src/components/IgamingCoursesPage/data/courses.d.ts +3 -0
  236. package/dist/types/src/components/IgamingCoursesPage/types/course.d.ts +63 -0
  237. package/dist/types/src/components/JobListing/JobListing.d.ts +24 -0
  238. package/dist/types/src/components/JobListing/components/Filters.d.ts +17 -0
  239. package/dist/types/src/components/JobListing/components/Footer.d.ts +12 -0
  240. package/dist/types/src/components/JobListing/components/JobCard.d.ts +14 -0
  241. package/dist/types/src/components/JobListing/components/JobList.d.ts +11 -0
  242. package/dist/types/src/components/JobListing/components/MobileFilterDrawer.d.ts +21 -0
  243. package/dist/types/src/components/JobListing/components/Navbar.d.ts +13 -0
  244. package/dist/types/src/components/JobListing/components/PromoCard.d.ts +11 -0
  245. package/dist/types/src/components/JobListing/components/SearchBar.d.ts +10 -0
  246. package/dist/types/src/components/JobListing/types/Job.d.ts +23 -0
  247. package/dist/types/src/components/Jobs/JobsList.d.ts +38 -0
  248. package/dist/types/src/components/Jobs/jobsListFilters.d.ts +12 -0
  249. package/dist/types/src/components/Jobs/jobsListFilters.test.d.ts +1 -0
  250. package/dist/types/src/components/JobsDetails/JobDetail.d.ts +9 -0
  251. package/dist/types/src/components/JobsDetails/utils/navigation.d.ts +2 -0
  252. package/dist/types/src/components/JobsDetails/utils/types.d.ts +37 -0
  253. package/dist/types/src/components/JobsDetails/utils/useJobSlug.d.ts +1 -0
  254. package/dist/types/src/components/MarketDetail/MarketDetail.d.ts +6 -0
  255. package/dist/types/src/components/Markets/MarketsList.d.ts +9 -0
  256. package/dist/types/src/components/Markets/SuggestMarketModal.d.ts +8 -0
  257. package/dist/types/src/components/Markets/mockMarkets.d.ts +3 -0
  258. package/dist/types/src/components/Modal/Modal.d.ts +10 -0
  259. package/dist/types/src/components/News/NewsList.d.ts +7 -0
  260. package/dist/types/src/components/NewsPage/BreakingNews.d.ts +7 -0
  261. package/dist/types/src/components/NewsPage/NewsCard.d.ts +15 -0
  262. package/dist/types/src/components/NewsPage/NewsFilters.d.ts +14 -0
  263. package/dist/types/src/components/NewsPage/NewsPage.d.ts +19 -0
  264. package/dist/types/src/components/NewsPage/NewsSearch.d.ts +9 -0
  265. package/dist/types/src/components/NewsPage/NewsSidebarFilters.d.ts +19 -0
  266. package/dist/types/src/components/NewsPage/TrendingNews.d.ts +8 -0
  267. package/dist/types/src/components/NewsPage/data/news.d.ts +3 -0
  268. package/dist/types/src/components/NewsPage/types/news.d.ts +35 -0
  269. package/dist/types/src/components/Notification/NotificationItem.d.ts +15 -0
  270. package/dist/types/src/components/Notification/NotificationProvider.d.ts +20 -0
  271. package/dist/types/src/components/Notification/NotificationTester.d.ts +21 -0
  272. package/dist/types/src/components/Notification/NotificationViewport.d.ts +20 -0
  273. package/dist/types/src/components/Notification/index.d.ts +4 -0
  274. package/dist/types/src/components/Notification/notificationStore.d.ts +51 -0
  275. package/dist/types/src/components/Onboarding/DashboardOnboardingSection.d.ts +12 -0
  276. package/dist/types/src/components/Onboarding/OnboardingChecklist.d.ts +8 -0
  277. package/dist/types/src/components/Onboarding/OnboardingContext.d.ts +6 -0
  278. package/dist/types/src/components/Onboarding/OnboardingDashboard.d.ts +11 -0
  279. package/dist/types/src/components/Onboarding/OnboardingModal.d.ts +19 -0
  280. package/dist/types/src/components/Onboarding/OnboardingPopup.d.ts +6 -0
  281. package/dist/types/src/components/Onboarding/ShieldedActionButton.d.ts +15 -0
  282. package/dist/types/src/components/Onboarding/VerificationBanner.d.ts +12 -0
  283. package/dist/types/src/components/Onboarding/index.d.ts +13 -0
  284. package/dist/types/src/components/Places/PlacesList.d.ts +7 -0
  285. package/dist/types/src/components/Places/mockPlaces.d.ts +2 -0
  286. package/dist/types/src/components/Places/types.d.ts +16 -0
  287. package/dist/types/src/components/Prices/Group/GroupPrices.d.ts +10 -0
  288. package/dist/types/src/components/Prices/Summary/SlidingSummary.d.ts +7 -0
  289. package/dist/types/src/components/ProductCategories/ProductCategoriesList.d.ts +9 -0
  290. package/dist/types/src/components/ProductCategories/ProductCategoryDetail.d.ts +7 -0
  291. package/dist/types/src/components/ProductCategories/mockProductCategories.d.ts +3 -0
  292. package/dist/types/src/components/ProductCategories/types.d.ts +47 -0
  293. package/dist/types/src/components/RegulatorDetail/RegulatorDetail.d.ts +6 -0
  294. package/dist/types/src/components/Regulators/JurisdictionsList.d.ts +6 -0
  295. package/dist/types/src/components/Regulators/RegulatorsList.d.ts +9 -0
  296. package/dist/types/src/components/Regulators/mockJurisdictions.d.ts +3 -0
  297. package/dist/types/src/components/Regulators/mockRegulators.d.ts +3 -0
  298. package/dist/types/src/components/Regulators/types.d.ts +55 -0
  299. package/dist/types/src/components/Reviews/LeaveReviewStandaloneModal.d.ts +23 -0
  300. package/dist/types/src/components/Reviews/Reviews.d.ts +8 -0
  301. package/dist/types/src/components/Shared/ActiveFiltersDisplay.d.ts +15 -0
  302. package/dist/types/src/components/Shared/Cards/CareerPathCard.d.ts +20 -0
  303. package/dist/types/src/components/Shared/Cards/ChannelCard.d.ts +9 -0
  304. package/dist/types/src/components/Shared/Cards/CompanyCardMobile.d.ts +30 -0
  305. package/dist/types/src/components/Shared/Cards/CompanyTypeCard.d.ts +9 -0
  306. package/dist/types/src/components/Shared/Cards/CourseCard.d.ts +37 -0
  307. package/dist/types/src/components/Shared/Cards/DepartmentCard.d.ts +15 -0
  308. package/dist/types/src/components/Shared/Cards/DepartmentEntityCard.d.ts +9 -0
  309. package/dist/types/src/components/Shared/Cards/DirectoryDetailCard.d.ts +13 -0
  310. package/dist/types/src/components/Shared/Cards/DirectoryInfoPanel.d.ts +25 -0
  311. package/dist/types/src/components/Shared/Cards/DirectoryKeyRolesList.d.ts +11 -0
  312. package/dist/types/src/components/Shared/Cards/EventsCard.d.ts +19 -0
  313. package/dist/types/src/components/Shared/Cards/FreelancerCard.d.ts +23 -0
  314. package/dist/types/src/components/Shared/Cards/GamblingVerticalCard.d.ts +9 -0
  315. package/dist/types/src/components/Shared/Cards/JobCard.d.ts +31 -0
  316. package/dist/types/src/components/Shared/Cards/JurisdictionCard.d.ts +8 -0
  317. package/dist/types/src/components/Shared/Cards/MarketsCard.d.ts +8 -0
  318. package/dist/types/src/components/Shared/Cards/NewsCard.d.ts +32 -0
  319. package/dist/types/src/components/Shared/Cards/PlacesCard.d.ts +18 -0
  320. package/dist/types/src/components/Shared/Cards/PlaybookCard.d.ts +17 -0
  321. package/dist/types/src/components/Shared/Cards/ProductCategoriesCard.d.ts +26 -0
  322. package/dist/types/src/components/Shared/Cards/RegulatorsCard.d.ts +21 -0
  323. package/dist/types/src/components/Shared/Cards/RoleGuideCard.d.ts +17 -0
  324. package/dist/types/src/components/Shared/Cards/TermCard.d.ts +14 -0
  325. package/dist/types/src/components/Shared/Cards/VideoCard.d.ts +21 -0
  326. package/dist/types/src/components/Shared/Cards/index.d.ts +10 -0
  327. package/dist/types/src/components/Shared/Directory/DirectoryBanner.d.ts +8 -0
  328. package/dist/types/src/components/Shared/Directory/DirectoryShell.d.ts +30 -0
  329. package/dist/types/src/components/Shared/Directory/DirectoryShowcase.d.ts +3 -0
  330. package/dist/types/src/components/Shared/Directory/DirectoryToolbar.d.ts +20 -0
  331. package/dist/types/src/components/Shared/Directory/ViewModeToggle.d.ts +1 -0
  332. package/dist/types/src/components/Shared/Directory/index.d.ts +5 -0
  333. package/dist/types/src/components/Shared/Directory/types.d.ts +73 -0
  334. package/dist/types/src/components/Shared/GenericFilter.d.ts +17 -0
  335. package/dist/types/src/components/Shared/GenericPagination.d.ts +8 -0
  336. package/dist/types/src/components/Shared/ItemsPerPageSelector.d.ts +10 -0
  337. package/dist/types/src/components/Shared/Listing/ListingActiveFilters.d.ts +16 -0
  338. package/dist/types/src/components/Shared/Listing/ListingEmptyState.d.ts +16 -0
  339. package/dist/types/src/components/Shared/Listing/ListingHeader.d.ts +17 -0
  340. package/dist/types/src/components/Shared/Listing/ListingMobileFilters.d.ts +24 -0
  341. package/dist/types/src/components/Shared/Listing/ListingPagination.d.ts +15 -0
  342. package/dist/types/src/components/Shared/Listing/ListingSearchBar.d.ts +20 -0
  343. package/dist/types/src/components/Shared/Listing/ListingSidebar.d.ts +25 -0
  344. package/dist/types/src/components/Shared/Listing/ListingToolbar.d.ts +24 -0
  345. package/dist/types/src/components/Shared/Listing/index.d.ts +9 -0
  346. package/dist/types/src/components/Shared/Listing/types.d.ts +50 -0
  347. package/dist/types/src/components/Shared/LoadingShadowCard.d.ts +5 -0
  348. package/dist/types/src/components/Shared/Mobile/BottomSheetFilter.d.ts +23 -0
  349. package/dist/types/src/components/Shared/Mobile/FloatingActionButton.d.ts +22 -0
  350. package/dist/types/src/components/Shared/Mobile/HorizontalTagSlider.d.ts +22 -0
  351. package/dist/types/src/components/Shared/Mobile/StickyFilterChips.d.ts +20 -0
  352. package/dist/types/src/components/Shared/Mobile/UserIdentityMenu.d.ts +36 -0
  353. package/dist/types/src/components/Shared/Mobile/index.d.ts +5 -0
  354. package/dist/types/src/components/Shared/MobileDrawer.d.ts +9 -0
  355. package/dist/types/src/components/Shared/PageTitleHeader.d.ts +16 -0
  356. package/dist/types/src/components/Shared/SearchBox.d.ts +11 -0
  357. package/dist/types/src/components/Shared/ShieldedActionButton.d.ts +14 -0
  358. package/dist/types/src/components/Shared/SubscriptionModal.d.ts +10 -0
  359. package/dist/types/src/components/Shared/Taxonomy/ExamplesPanel.d.ts +7 -0
  360. package/dist/types/src/components/Shared/Taxonomy/TaxonomyApproveForm.d.ts +15 -0
  361. package/dist/types/src/components/Shared/Taxonomy/TaxonomySuggestionDetail.d.ts +11 -0
  362. package/dist/types/src/components/Shared/Taxonomy/TaxonomySuggestionTable.d.ts +12 -0
  363. package/dist/types/src/components/Shared/Taxonomy/types.d.ts +18 -0
  364. package/dist/types/src/components/Shared/ViewControls.d.ts +13 -0
  365. package/dist/types/src/components/Shared/ViewModeToggle.d.ts +9 -0
  366. package/dist/types/src/components/Shared/extractTagsFromTitle.d.ts +3 -0
  367. package/dist/types/src/components/Shared/helpers/api.d.ts +21 -0
  368. package/dist/types/src/components/Shared/helpers/filters.d.ts +10 -0
  369. package/dist/types/src/components/Shared/helpers/jobsHelpers.d.ts +6 -0
  370. package/dist/types/src/components/Shared/types/shared-types.d.ts +125 -0
  371. package/dist/types/src/components/Shared/useSavedJobs.d.ts +5 -0
  372. package/dist/types/src/components/TagBadge/TagBadge.d.ts +12 -0
  373. package/dist/types/src/components/TagPicker/TagPicker.d.ts +20 -0
  374. package/dist/types/src/components/hooks/useFilters.d.ts +5 -0
  375. package/dist/types/src/components/hooks/useOnboarding.d.ts +19 -0
  376. package/dist/types/src/components/hooks/usePagination.d.ts +6 -0
  377. package/dist/types/src/components/hooks/useSubscription.d.ts +4 -0
  378. package/dist/types/src/data/mockCandidates.d.ts +2 -0
  379. package/dist/types/src/data/mockCareerAssistant.d.ts +6 -0
  380. package/dist/types/src/data/mockComplaints.d.ts +2 -0
  381. package/dist/types/src/data/mockReviews.d.ts +6 -0
  382. package/dist/types/src/hooks/useCareerAssistant.d.ts +7 -0
  383. package/dist/types/src/index.d.ts +152 -0
  384. package/dist/types/src/main.d.ts +7 -0
  385. package/dist/types/src/services/careerAssistant.mock.d.ts +53 -0
  386. package/dist/types/src/stories/Button.stories.d.ts +7 -0
  387. package/dist/types/src/stories/CompanyGroupDetail.stories.d.ts +6 -0
  388. package/dist/types/src/stories/ConsentAnalytics.stories.d.ts +9 -0
  389. package/dist/types/src/stories/Footer.stories.d.ts +7 -0
  390. package/dist/types/src/stories/GenericPagination.stories.d.ts +7 -0
  391. package/dist/types/src/stories/Header.stories.d.ts +6 -0
  392. package/dist/types/src/stories/ItemsPerPageSelector.stories.d.ts +7 -0
  393. package/dist/types/src/stories/LoadingCompanyShadowCard.stories.d.ts +7 -0
  394. package/dist/types/src/stories/LoadingShadowCard.stories.d.ts +7 -0
  395. package/dist/types/src/stories/Login.stories.d.ts +7 -0
  396. package/dist/types/src/stories/Notification.stories.d.ts +6 -0
  397. package/dist/types/src/stories/NotificationTester.stories.d.ts +6 -0
  398. package/dist/types/src/stories/OnboardingChecklist.stories.d.ts +8 -0
  399. package/dist/types/src/stories/OnboardingDashboard.stories.d.ts +9 -0
  400. package/dist/types/src/stories/PageComponents.stories.d.ts +7 -0
  401. package/dist/types/src/stories/PricingComponents.stories.d.ts +6 -0
  402. package/dist/types/src/stories/ShieldedActionButton.stories.d.ts +8 -0
  403. package/dist/types/src/stories/SignInPromptModal.stories.d.ts +7 -0
  404. package/dist/types/src/stories/VerificationBanner.stories.d.ts +9 -0
  405. package/dist/types/src/types/candidate.d.ts +27 -0
  406. package/dist/types/src/types/chat-messages.d.ts +6 -0
  407. package/dist/types/src/types/company-user.d.ts +33 -0
  408. package/dist/types/src/types/company-user.test.d.ts +1 -0
  409. package/dist/types/src/types/complaint.d.ts +21 -0
  410. package/dist/types/src/types/conference.d.ts +21 -0
  411. package/dist/types/src/types/dashboard.d.ts +252 -0
  412. package/dist/types/src/types/events.courses.d.ts +49 -0
  413. package/dist/types/src/types/events.d.ts +23 -0
  414. package/dist/types/src/types/events.freelancers.d.ts +11 -0
  415. package/dist/types/src/types/events.jobs.d.ts +70 -0
  416. package/dist/types/src/types/events.news.d.ts +57 -0
  417. package/dist/types/src/types/events.newsletter.d.ts +6 -0
  418. package/dist/types/src/types/freelancer.d.ts +128 -0
  419. package/dist/types/src/types/general.d.ts +15 -0
  420. package/dist/types/src/types/icon-utils.d.ts +3 -0
  421. package/dist/types/src/types/item.d.ts +10 -0
  422. package/dist/types/src/types/job-alert.d.ts +64 -0
  423. package/dist/types/src/types/job.d.ts +30 -0
  424. package/dist/types/src/types/market.d.ts +78 -0
  425. package/dist/types/src/types/news.d.ts +15 -0
  426. package/dist/types/src/types/onboarding.d.ts +42 -0
  427. package/dist/types/src/types/review.d.ts +61 -0
  428. package/dist/types/src/types/user.d.ts +34 -0
  429. package/package.json +8 -8
@@ -0,0 +1,10 @@
1
+ import type { Company } from "@/components/Companies/types";
2
+ import type { CompanyAdminUpdateEvent } from "@/components/Companies/types/companyAdmin";
3
+ interface CompanyAdminProductsProps {
4
+ company: Company;
5
+ onUpdate: (event: CompanyAdminUpdateEvent) => void | Promise<void>;
6
+ isSaving?: boolean;
7
+ canEdit?: boolean;
8
+ }
9
+ declare const CompanyAdminProducts: ({ company, onUpdate, isSaving, canEdit, }: CompanyAdminProductsProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default CompanyAdminProducts;
@@ -0,0 +1,10 @@
1
+ import type { Company } from "@/components/Companies/types";
2
+ import type { CompanyAdminUpdateEvent } from "@/components/Companies/types/companyAdmin";
3
+ interface CompanyAdminSettingsProps {
4
+ company: Company;
5
+ onUpdate: (event: CompanyAdminUpdateEvent) => void | Promise<void>;
6
+ isSaving?: boolean;
7
+ canEdit?: boolean;
8
+ }
9
+ declare const CompanyAdminSettings: ({ company, onUpdate, isSaving, canEdit, }: CompanyAdminSettingsProps) => import("react/jsx-runtime").JSX.Element;
10
+ export default CompanyAdminSettings;
@@ -0,0 +1,16 @@
1
+ export interface EventForm {
2
+ id?: string;
3
+ title: string;
4
+ date: string;
5
+ location: string;
6
+ description?: string;
7
+ url?: string;
8
+ }
9
+ interface AddEventModalProps {
10
+ open: boolean;
11
+ onClose: () => void;
12
+ onSave: (event: EventForm) => void;
13
+ existingEvent?: EventForm | null;
14
+ }
15
+ declare const AddEventModal: ({ open, onClose, onSave, existingEvent }: AddEventModalProps) => import("react/jsx-runtime").JSX.Element;
16
+ export default AddEventModal;
@@ -0,0 +1,17 @@
1
+ export interface JobForm {
2
+ id?: string;
3
+ title: string;
4
+ location: string;
5
+ employmentType: string;
6
+ description?: string;
7
+ requirements?: string;
8
+ status?: "Draft" | "Published";
9
+ }
10
+ interface AddJobModalProps {
11
+ open: boolean;
12
+ onClose: () => void;
13
+ onSave: (job: JobForm) => void;
14
+ existingJob?: JobForm | null;
15
+ }
16
+ declare const AddJobModal: ({ open, onClose, onSave, existingJob }: AddJobModalProps) => import("react/jsx-runtime").JSX.Element;
17
+ export default AddJobModal;
@@ -0,0 +1,15 @@
1
+ export interface TeamMemberForm {
2
+ id?: string;
3
+ name: string;
4
+ role: string;
5
+ linkedIn?: string;
6
+ email?: string;
7
+ }
8
+ interface AddPersonModalProps {
9
+ open: boolean;
10
+ onClose: () => void;
11
+ onSave: (person: TeamMemberForm) => void;
12
+ existingPerson?: TeamMemberForm | null;
13
+ }
14
+ declare const AddPersonModal: ({ open, onClose, onSave, existingPerson, }: AddPersonModalProps) => import("react/jsx-runtime").JSX.Element;
15
+ export default AddPersonModal;
@@ -0,0 +1,15 @@
1
+ export interface ProductServiceForm {
2
+ id?: string;
3
+ name: string;
4
+ category: string;
5
+ description: string;
6
+ url?: string;
7
+ }
8
+ interface AddProductModalProps {
9
+ open: boolean;
10
+ onClose: () => void;
11
+ onSave: (product: ProductServiceForm) => void;
12
+ existingProduct?: ProductServiceForm | null;
13
+ }
14
+ declare const AddProductModal: ({ open, onClose, onSave, existingProduct, }: AddProductModalProps) => import("react/jsx-runtime").JSX.Element;
15
+ export default AddProductModal;
@@ -0,0 +1,8 @@
1
+ import { EventsSummary } from "../../types";
2
+ import type { ConferenceEvent } from "@/types/conference";
3
+ interface CompanyEventsTabProps {
4
+ companyEvents: EventsSummary;
5
+ conferenceEvents?: ConferenceEvent[];
6
+ }
7
+ declare const CompanyEventsTab: ({ companyEvents, conferenceEvents, }: CompanyEventsTabProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default CompanyEventsTab;
@@ -0,0 +1,2 @@
1
+ declare const CompanyInsightsTab: () => import("react/jsx-runtime").JSX.Element;
2
+ export default CompanyInsightsTab;
@@ -0,0 +1,9 @@
1
+ import type { Company } from "../../types";
2
+ import type { DashboardJob } from "@/types/job";
3
+ interface CompanyJobsTabProps {
4
+ company: Company;
5
+ jobListings: DashboardJob[];
6
+ openRolesCount: number | string[];
7
+ }
8
+ declare const CompanyJobsTab: ({ company, jobListings, openRolesCount }: CompanyJobsTabProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default CompanyJobsTab;
@@ -0,0 +1,8 @@
1
+ import { NewsSummary } from "../../types";
2
+ import type { DashboardNewsArticle } from "@/types/news";
3
+ interface CompanyNewsTabProps {
4
+ companyNews: NewsSummary;
5
+ newsArticles?: DashboardNewsArticle[];
6
+ }
7
+ declare const CompanyNewsTab: ({ companyNews, newsArticles, }: CompanyNewsTabProps) => import("react/jsx-runtime").JSX.Element;
8
+ export default CompanyNewsTab;
@@ -0,0 +1,9 @@
1
+ import { CompanyClassification, CompanyOverview, OfficeLocation } from "../../types";
2
+ interface CompanyOverviewTabProps {
3
+ overview: CompanyOverview;
4
+ classification: CompanyClassification;
5
+ officeLocations: OfficeLocation[];
6
+ formatOfficeLocation: (location: OfficeLocation) => string;
7
+ }
8
+ declare const CompanyOverviewTab: ({ overview, classification, officeLocations, formatOfficeLocation, }: CompanyOverviewTabProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default CompanyOverviewTab;
@@ -0,0 +1,6 @@
1
+ import type { Person } from "../../types";
2
+ interface CompanyPeopleTabProps {
3
+ members: Person[];
4
+ }
5
+ declare const CompanyPeopleTab: ({ members }: CompanyPeopleTabProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CompanyPeopleTab;
@@ -0,0 +1,6 @@
1
+ import type { DerivedProduct, ProductService } from "../../types";
2
+ interface CompanyProductsTabProps {
3
+ products: Array<ProductService | DerivedProduct>;
4
+ }
5
+ declare const CompanyProductsTab: ({ products }: CompanyProductsTabProps) => import("react/jsx-runtime").JSX.Element;
6
+ export default CompanyProductsTab;
@@ -0,0 +1,7 @@
1
+ import { CompanyOverview, SimilarCompanyItem } from "../../types";
2
+ interface CompanySidebarProps {
3
+ companyOverview: CompanyOverview;
4
+ similarCompanies: SimilarCompanyItem[];
5
+ }
6
+ declare const CompanySidebar: ({ companyOverview, similarCompanies }: CompanySidebarProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default CompanySidebar;
@@ -0,0 +1,7 @@
1
+ import { TabsListItem } from "@/components/Companies/types";
2
+ interface CompanyTabsListProps {
3
+ items: TabsListItem[];
4
+ className?: string;
5
+ }
6
+ declare const CompanyTabsList: ({ items, className }: CompanyTabsListProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default CompanyTabsList;
@@ -0,0 +1,7 @@
1
+ import { CredibilityEvidence, TrustCompliance } from "../../types";
2
+ interface CompanyTrustTabProps {
3
+ companyTrustData: TrustCompliance;
4
+ credibilityEvidence?: CredibilityEvidence;
5
+ }
6
+ declare const CompanyTrustTab: ({ companyTrustData, credibilityEvidence, }: CompanyTrustTabProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default CompanyTrustTab;
@@ -0,0 +1,18 @@
1
+ import type { Company } from "../types";
2
+ export declare const companies: Company[];
3
+ export declare const companyTypes: string[];
4
+ export declare const verticals: string[];
5
+ export declare const productCategories: string[];
6
+ export declare const jurisdictions: string[];
7
+ export declare const employeeRanges: string[];
8
+ export declare function getCompanyBySlug(slug: string): Company | undefined;
9
+ export declare function filterCompanies(filters: {
10
+ search?: string;
11
+ companyType?: string;
12
+ verticals?: string[];
13
+ productCategories?: string[];
14
+ countries?: string[];
15
+ employeeRanges?: string[];
16
+ hiringNow?: boolean;
17
+ claimedOnly?: boolean;
18
+ }): Company[];
@@ -0,0 +1,3 @@
1
+ import type { Company, CompanyGroup } from "@/components/Companies/types";
2
+ export declare const sampleGroup: CompanyGroup;
3
+ export declare const sampleCompany: Company;
@@ -0,0 +1,10 @@
1
+ import type { CompaniesApiResponse, CompaniesQuery } from "../types";
2
+ type UseCompaniesQueryOptions = {
3
+ buildUrl: (query: CompaniesQuery) => string;
4
+ initialData?: CompaniesApiResponse;
5
+ };
6
+ declare const useCompaniesQuery: (query: CompaniesQuery, options: UseCompaniesQueryOptions) => {
7
+ data: CompaniesApiResponse | null;
8
+ loading: boolean;
9
+ };
10
+ export default useCompaniesQuery;
@@ -0,0 +1,11 @@
1
+ import type { LeaveReviewPayload } from "@/types/review";
2
+ interface LeaveReviewModalProps {
3
+ companyName: string;
4
+ companyId: string;
5
+ companySlug: string;
6
+ open: boolean;
7
+ onOpenChange: (open: boolean) => void;
8
+ onSubmit?: (payload: LeaveReviewPayload) => void;
9
+ }
10
+ declare const LeaveReviewModal: ({ companyName, companyId, companySlug, open, onOpenChange, onSubmit, }: LeaveReviewModalProps) => import("react/jsx-runtime").JSX.Element;
11
+ export default LeaveReviewModal;
@@ -0,0 +1,9 @@
1
+ import { CompanyReview } from "@/types/review";
2
+ interface ReviewCardProps {
3
+ review: CompanyReview;
4
+ onHelpful?: (reviewId: string) => void;
5
+ onShare?: (reviewId: string) => void;
6
+ onReport?: (reviewId: string) => void;
7
+ }
8
+ declare const ReviewCard: ({ review, onHelpful, onShare, onReport }: ReviewCardProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default ReviewCard;
@@ -0,0 +1,9 @@
1
+ interface ReviewStarsProps {
2
+ rating: number;
3
+ maxRating?: number;
4
+ size?: "sm" | "md" | "lg";
5
+ interactive?: boolean;
6
+ onRatingChange?: (rating: number) => void;
7
+ }
8
+ declare const ReviewStars: ({ rating, maxRating, size, interactive, onRatingChange, }: ReviewStarsProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default ReviewStars;
@@ -0,0 +1,7 @@
1
+ import type { ReviewSummary } from "@/types/review";
2
+ interface ReviewSummaryBarProps {
3
+ summary: ReviewSummary;
4
+ compact?: boolean;
5
+ }
6
+ declare const ReviewSummaryBar: ({ summary, compact }: ReviewSummaryBarProps) => import("react/jsx-runtime").JSX.Element;
7
+ export default ReviewSummaryBar;
@@ -0,0 +1,4 @@
1
+ export { default as ReviewCard } from "./ReviewCard";
2
+ export { default as ReviewStars } from "./ReviewStars";
3
+ export { default as ReviewSummaryBar } from "./ReviewSummaryBar";
4
+ export { default as LeaveReviewModal } from "./LeaveReviewModal";
@@ -0,0 +1,30 @@
1
+ import type { CandidateRating, CandidateStatus } from "@/types/candidate";
2
+ export type CompanyAdminPermissions = {
3
+ canViewOverview?: boolean;
4
+ canManageProducts?: boolean;
5
+ canManagePeople?: boolean;
6
+ canManageJobs?: boolean;
7
+ canManageCandidates?: boolean;
8
+ canManageEvents?: boolean;
9
+ canManageNews?: boolean;
10
+ canManageSettings?: boolean;
11
+ };
12
+ export type CandidatesUpdatePayload = {
13
+ action: "change-status";
14
+ candidateId: string;
15
+ status: CandidateStatus;
16
+ reason?: string;
17
+ } | {
18
+ action: "rate";
19
+ candidateId: string;
20
+ rating: CandidateRating;
21
+ } | {
22
+ action: "add-note";
23
+ candidateId: string;
24
+ note: string;
25
+ isInternal: boolean;
26
+ };
27
+ export interface CompanyAdminUpdateEvent {
28
+ type: "overview" | "products" | "people" | "jobs" | "candidates" | "events" | "news" | "settings";
29
+ payload: any;
30
+ }
@@ -0,0 +1,379 @@
1
+ import { LucideIcon } from "lucide-react";
2
+ export interface MediaAsset {
3
+ url: string;
4
+ width: number;
5
+ height: number;
6
+ mime: string;
7
+ }
8
+ export interface License {
9
+ jurisdiction: string;
10
+ authority: string;
11
+ }
12
+ export interface Certification {
13
+ name: string;
14
+ issuer: string;
15
+ }
16
+ export interface Award {
17
+ name: string;
18
+ year: number;
19
+ }
20
+ export interface CompanyClassification {
21
+ businessModel: string;
22
+ verticals: string[];
23
+ productCategories: string[];
24
+ tags: string[];
25
+ }
26
+ export interface Location {
27
+ city?: string;
28
+ cities?: string;
29
+ country?: string;
30
+ location?: string;
31
+ }
32
+ export type OfficeLocation = Location | string;
33
+ export interface CompanyOverview {
34
+ shortDescription: string;
35
+ longDescription?: string;
36
+ foundedYear: number;
37
+ headquarters: {
38
+ city: string;
39
+ country: string;
40
+ };
41
+ officeLocations?: OfficeLocation[];
42
+ employeeRange: string;
43
+ publicCompany?: boolean;
44
+ stockTicker?: string;
45
+ website: string;
46
+ socialLinks?: Record<string, string>;
47
+ }
48
+ export interface ProductService {
49
+ name: string;
50
+ category: string;
51
+ description: string;
52
+ targetCustomers: string[];
53
+ integrationModel: string;
54
+ keyDifferentiators: string[];
55
+ }
56
+ export interface TrustCompliance {
57
+ licenses: Array<string | License>;
58
+ certifications: Array<string | Certification>;
59
+ awards: Array<string | Award>;
60
+ }
61
+ export interface Person {
62
+ name: string;
63
+ title: string;
64
+ profileUrl?: string;
65
+ }
66
+ export interface PeopleInfo {
67
+ departmentDistribution: Record<string, number>;
68
+ members: Person[];
69
+ }
70
+ export interface JobsSummary {
71
+ openRoles: number | string[];
72
+ departmentsHiring: string[];
73
+ locationsHiring: string[];
74
+ remotePolicy: string;
75
+ }
76
+ export interface NewsSummary {
77
+ pressMentions: Array<string | PressMention>;
78
+ employeePosts: Array<string | PressMention>;
79
+ }
80
+ export interface EventSummary {
81
+ name: string;
82
+ startDate: string;
83
+ endDate: string;
84
+ location: string;
85
+ }
86
+ export interface LegacyEventSummary {
87
+ eventName: string;
88
+ location: string;
89
+ date: string;
90
+ }
91
+ export interface EventsSummary {
92
+ upcomingEvents: Array<EventSummary | LegacyEventSummary>;
93
+ bookMeetingEnabled: boolean;
94
+ }
95
+ export interface PressMention {
96
+ title: string;
97
+ url: string;
98
+ source: string;
99
+ }
100
+ export interface SignalsInsights {
101
+ profileViews30d: number;
102
+ followsCount: number;
103
+ hiringIntensity: "Low" | "Medium" | "High";
104
+ topSkillsHiring: string[];
105
+ topViewingCountries: string[];
106
+ oftenComparedWith: string[];
107
+ similarCompanies: string[];
108
+ }
109
+ export interface SimilarCompanyItem {
110
+ name: string;
111
+ slug?: string;
112
+ url?: string;
113
+ }
114
+ export type CompanyFollowAction = "follow" | "unfollow";
115
+ export type SaveCompanyAction = "save" | "unsave";
116
+ export interface CompanyFollowActionPayload {
117
+ companyId: string;
118
+ companySlug: string;
119
+ action: CompanyFollowAction;
120
+ }
121
+ export interface SaveCompanyPayload {
122
+ companyId: string;
123
+ companySlug: string;
124
+ companyName: string;
125
+ action: SaveCompanyAction;
126
+ }
127
+ export interface CompanyClaimRequestPayload {
128
+ companyId: string;
129
+ companySlug: string;
130
+ companyName: string;
131
+ fullName: string;
132
+ workEmail: string;
133
+ jobTitle: string;
134
+ relationship: string;
135
+ message: string;
136
+ }
137
+ export interface ClaimProfilePrefillData {
138
+ fullName?: string;
139
+ workEmail?: string;
140
+ jobTitle?: string;
141
+ }
142
+ export interface VisibilityMetrics {
143
+ searchImpressions: number;
144
+ profileClicks: number;
145
+ externalClicks: number;
146
+ }
147
+ export interface BasicSignals {
148
+ has_news: boolean;
149
+ has_games: boolean;
150
+ has_careers: boolean;
151
+ has_partners: boolean;
152
+ has_platform: boolean;
153
+ has_products: boolean;
154
+ has_live_casino: boolean;
155
+ has_contact_form: boolean;
156
+ is_csr: boolean;
157
+ }
158
+ export interface HiringEvidence {
159
+ open_positions_count: number;
160
+ career_page_complexity: "low" | "medium" | "high";
161
+ positions: {
162
+ title: string;
163
+ location: string;
164
+ department: string | null;
165
+ }[];
166
+ locations_hiring: string[];
167
+ departments_hiring: string[];
168
+ }
169
+ export interface CredibilityEvidence {
170
+ awards_mentioned: string[];
171
+ clients_mentioned: string[];
172
+ partners_mentioned: string[];
173
+ countries_mentioned: string[];
174
+ }
175
+ export interface EvidenceSignals {
176
+ hiring?: HiringEvidence;
177
+ credibility?: CredibilityEvidence;
178
+ compliance?: Record<string, unknown>;
179
+ capabilities?: Record<string, unknown>;
180
+ }
181
+ export interface NavItem {
182
+ url: string;
183
+ path: string;
184
+ text: string;
185
+ }
186
+ export interface NavItemDetails extends NavItem {
187
+ title: string;
188
+ key_points: string[];
189
+ }
190
+ export interface Menus {
191
+ primary_nav: NavItem[];
192
+ secondary_nav: NavItem[];
193
+ footer_nav: NavItem[];
194
+ primary_nav_details: NavItemDetails[];
195
+ }
196
+ export interface WebContacts {
197
+ emails?: string[];
198
+ phones?: string[];
199
+ }
200
+ export interface WebIntelligence {
201
+ status: "pending" | "enriched" | "failed";
202
+ menus: Menus;
203
+ classifiedSections: Record<string, string[]>;
204
+ signals: {
205
+ basic_signals: BasicSignals;
206
+ evidence: EvidenceSignals;
207
+ };
208
+ menuDepth: number;
209
+ contacts: WebContacts;
210
+ keywords: string[];
211
+ }
212
+ export interface IntelligenceProfile {
213
+ capabilitiesScore: number;
214
+ credibilityScore: number;
215
+ complianceScore: number;
216
+ hiringScore: number;
217
+ overallScore: number;
218
+ detectedBusinessModel: string;
219
+ detectedProducts: string[];
220
+ detectedMarkets: string[];
221
+ }
222
+ export interface CompanyGroupMember {
223
+ id: string;
224
+ name: string;
225
+ slug: string;
226
+ companyType?: string;
227
+ overview?: {
228
+ shortDescription?: string;
229
+ headquarters?: {
230
+ city: string;
231
+ country: string;
232
+ };
233
+ employeeRange?: string;
234
+ };
235
+ isPrimary?: boolean;
236
+ }
237
+ export interface CompanyGroup {
238
+ id: string;
239
+ name: string;
240
+ slug?: string;
241
+ website?: string;
242
+ description?: string;
243
+ primaryCompanyId?: string;
244
+ companies?: CompanyGroupMember[];
245
+ intelligenceProfile?: SignalsInsights;
246
+ }
247
+ export interface CompanyMetrics {
248
+ openRolesCount?: number;
249
+ }
250
+ export interface CompanyLight {
251
+ id: string;
252
+ name: string;
253
+ slug: string;
254
+ logo?: MediaAsset | string | null;
255
+ companyType: string;
256
+ classification: Pick<CompanyClassification, "verticals">;
257
+ overview: Pick<CompanyOverview, "employeeRange">;
258
+ metrics?: CompanyMetrics;
259
+ signalsAndInsights?: Pick<SignalsInsights, "hiringIntensity">;
260
+ }
261
+ export interface Company {
262
+ id: string;
263
+ name: string;
264
+ slug: string;
265
+ group_id?: string | null;
266
+ group_name?: string | null;
267
+ group_slug?: string | null;
268
+ groupId?: string;
269
+ groupName?: string;
270
+ groupSlug?: string;
271
+ group?: CompanyGroup | null;
272
+ is_primary?: boolean;
273
+ isPrimary?: boolean;
274
+ companyType: string;
275
+ claimedStatus: "claimed" | "unclaimed" | "verified";
276
+ isFollowing?: boolean;
277
+ isSaved?: boolean;
278
+ logo?: MediaAsset | string | null;
279
+ classification: CompanyClassification;
280
+ overview: CompanyOverview;
281
+ productsAndServices: ProductService[];
282
+ trustAndCompliance: TrustCompliance;
283
+ people: PeopleInfo;
284
+ jobs: JobsSummary;
285
+ newsAndMedia: NewsSummary;
286
+ events: EventsSummary;
287
+ signalsAndInsights: SignalsInsights;
288
+ visibilityMetrics: VisibilityMetrics;
289
+ webIntelligence?: WebIntelligence | null;
290
+ intelligenceProfile?: IntelligenceProfile | null;
291
+ schema_version?: string | null;
292
+ profile_updated_at?: string | null;
293
+ }
294
+ export interface CompanyFiltersState {
295
+ search: string;
296
+ companyType: string;
297
+ verticals: string[];
298
+ productCategories: string[];
299
+ employeeRanges: string[];
300
+ products: string[];
301
+ openRolesRanges: string[];
302
+ yearsActiveRanges: string[];
303
+ hiringNow: boolean;
304
+ scope: "company" | "group";
305
+ claimedOnly: boolean;
306
+ hasLicenses: boolean;
307
+ hasAwards: boolean;
308
+ }
309
+ export type CompaniesQuery = {
310
+ query?: string;
311
+ filters: {
312
+ country?: string[];
313
+ products?: string[];
314
+ employees?: string[];
315
+ verticals?: string[];
316
+ companyType?: string;
317
+ hiringNow?: boolean;
318
+ claimedOnly?: boolean;
319
+ hasLicenses?: boolean;
320
+ hasAwards?: boolean;
321
+ productCategories?: string[];
322
+ openRoles?: string[];
323
+ yearsActive?: string[];
324
+ };
325
+ segment?: string;
326
+ subcategory?: string;
327
+ region?: string;
328
+ sort?: string;
329
+ page: number;
330
+ pageSize: number;
331
+ scope: "company" | "group";
332
+ };
333
+ export type CompaniesApiResponse = {
334
+ count: number;
335
+ page: number;
336
+ pageSize: number;
337
+ totalPages: number;
338
+ results: Company[];
339
+ filterOptions?: CompanyFilterOptions;
340
+ };
341
+ export interface CompanyFilterOptions {
342
+ companyTypes: string[];
343
+ verticals: string[];
344
+ productCategories: string[];
345
+ employeeRanges: string[];
346
+ products: string[];
347
+ openRolesRanges: string[];
348
+ yearsActiveRanges: string[];
349
+ }
350
+ export type DerivedProductTemplate = {
351
+ name: string;
352
+ category: string;
353
+ description: string;
354
+ keywords: string[];
355
+ negativeKeywords?: string[];
356
+ priority: number;
357
+ };
358
+ export type DerivedProduct = {
359
+ name: string;
360
+ category: string;
361
+ description: string;
362
+ keyDifferentiators: string[];
363
+ source: "derived";
364
+ confidence: number;
365
+ priority: number;
366
+ };
367
+ export interface TabsListItem {
368
+ value: string;
369
+ label: string;
370
+ icon?: LucideIcon;
371
+ disabled?: boolean;
372
+ hidden?: boolean;
373
+ }
374
+ export type CompanyDetailTab = "overview" | "products" | "trust" | "people" | "jobs" | "news" | "events" | "reviews" | "insights";
375
+ export interface CompanyDetailTabChangeEvent {
376
+ tab: CompanyDetailTab;
377
+ path?: string;
378
+ }
379
+ export * from "./companyAdmin";