@mohasinac/appkit 2.2.0 → 2.3.1

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 (1022) hide show
  1. package/README.md +94 -31
  2. package/dist/client.d.ts +95 -15
  3. package/dist/client.js +143 -15
  4. package/dist/constants/api-endpoints.d.ts +46 -0
  5. package/dist/constants/api-endpoints.js +23 -0
  6. package/dist/constants/index.d.ts +1 -0
  7. package/dist/constants/index.js +1 -0
  8. package/dist/contracts/auth.js +1 -1
  9. package/dist/contracts/client-auth.js +1 -1
  10. package/dist/contracts/client-payment-gateway.js +1 -1
  11. package/dist/contracts/client-realtime.js +1 -1
  12. package/dist/contracts/client-session.js +17 -5
  13. package/dist/contracts/config.js +1 -1
  14. package/dist/contracts/email.js +1 -1
  15. package/dist/contracts/feature.js +1 -1
  16. package/dist/contracts/field-ops.js +2 -2
  17. package/dist/contracts/form.js +1 -1
  18. package/dist/contracts/infra.js +1 -1
  19. package/dist/contracts/payment.js +1 -1
  20. package/dist/contracts/repository.js +2 -2
  21. package/dist/contracts/search.js +1 -1
  22. package/dist/contracts/shipping.js +1 -1
  23. package/dist/contracts/storage.js +1 -1
  24. package/dist/contracts/style.js +1 -1
  25. package/dist/core/hooks/useSiteSettings.js +0 -1
  26. package/dist/core/index.d.ts +1 -0
  27. package/dist/core/index.js +1 -0
  28. package/dist/core/integration-keys.d.ts +0 -16
  29. package/dist/core/integration-keys.js +0 -1
  30. package/dist/core/mutation-events.js +2 -2
  31. package/dist/core/server-action.js +5 -5
  32. package/dist/core/unit-of-work.d.ts +13 -14
  33. package/dist/core/unit-of-work.js +0 -1
  34. package/dist/errors/messages.d.ts +1 -0
  35. package/dist/errors/messages.js +1 -0
  36. package/dist/features/about/components/AboutView.d.ts +14 -14
  37. package/dist/features/about/components/AboutView.js +2 -2
  38. package/dist/features/about/components/FAQPageView.d.ts +6 -0
  39. package/dist/features/about/components/FAQPageView.js +29 -0
  40. package/dist/features/about/components/FeesView.d.ts +4 -0
  41. package/dist/features/about/components/FeesView.js +63 -0
  42. package/dist/features/about/components/HelpPageView.d.ts +4 -0
  43. package/dist/features/about/components/HelpPageView.js +63 -0
  44. package/dist/features/about/components/HowAuctionsWorkView.d.ts +4 -0
  45. package/dist/features/about/components/HowAuctionsWorkView.js +87 -0
  46. package/dist/features/about/components/HowCheckoutWorksView.d.ts +4 -0
  47. package/dist/features/about/components/HowCheckoutWorksView.js +73 -0
  48. package/dist/features/about/components/HowOffersWorkView.d.ts +4 -0
  49. package/dist/features/about/components/HowOffersWorkView.js +58 -0
  50. package/dist/features/about/components/HowOrdersWorkView.d.ts +4 -0
  51. package/dist/features/about/components/HowOrdersWorkView.js +131 -0
  52. package/dist/features/about/components/HowPayoutsWorkView.d.ts +4 -0
  53. package/dist/features/about/components/HowPayoutsWorkView.js +87 -0
  54. package/dist/features/about/components/HowPreOrdersWorkView.d.ts +4 -0
  55. package/dist/features/about/components/HowPreOrdersWorkView.js +87 -0
  56. package/dist/features/about/components/HowReviewsWorkView.d.ts +4 -0
  57. package/dist/features/about/components/HowReviewsWorkView.js +72 -0
  58. package/dist/features/about/components/PolicyPageView.d.ts +6 -0
  59. package/dist/features/about/components/PolicyPageView.js +28 -0
  60. package/dist/features/about/components/PublicProfileView.d.ts +5 -0
  61. package/dist/features/about/components/PublicProfileView.js +21 -0
  62. package/dist/features/about/components/SecurityPrivacyView.d.ts +4 -0
  63. package/dist/features/about/components/SecurityPrivacyView.js +122 -0
  64. package/dist/features/about/components/ShippingPolicyView.d.ts +4 -0
  65. package/dist/features/about/components/ShippingPolicyView.js +59 -0
  66. package/dist/features/about/components/TrackOrderView.d.ts +4 -0
  67. package/dist/features/about/components/TrackOrderView.js +43 -0
  68. package/dist/features/about/components/UnauthorizedView.d.ts +4 -0
  69. package/dist/features/about/components/UnauthorizedView.js +29 -0
  70. package/dist/features/about/index.d.ts +32 -0
  71. package/dist/features/about/index.js +16 -0
  72. package/dist/features/account/components/AddressBook.js +3 -2
  73. package/dist/features/account/components/AddressForm.js +2 -1
  74. package/dist/features/account/components/AddressSelectorCreate.js +2 -1
  75. package/dist/features/account/components/ChatList.js +0 -1
  76. package/dist/features/account/components/ChatWindow.js +2 -2
  77. package/dist/features/account/components/MessagesView.js +2 -1
  78. package/dist/features/account/components/NotificationBell.js +3 -2
  79. package/dist/features/account/components/UserSidebar.d.ts +15 -0
  80. package/dist/features/account/components/UserSidebar.js +18 -0
  81. package/dist/features/account/components/index.d.ts +2 -0
  82. package/dist/features/account/components/index.js +1 -0
  83. package/dist/features/account/hooks/useAccount.js +0 -1
  84. package/dist/features/account/hooks/useAddressSelector.js +0 -1
  85. package/dist/features/account/hooks/useAddresses.js +0 -1
  86. package/dist/features/account/hooks/useNotifications.js +0 -1
  87. package/dist/features/account/hooks/useProfile.js +0 -1
  88. package/dist/features/account/hooks/useProfileStats.js +0 -1
  89. package/dist/features/account/hooks/usePublicProfile.js +0 -1
  90. package/dist/features/account/repository/address.repository.js +2 -3
  91. package/dist/features/account/schemas/index.d.ts +20 -20
  92. package/dist/features/account/schemas/index.js +2 -2
  93. package/dist/features/account/server.d.ts +0 -1
  94. package/dist/features/account/server.js +0 -1
  95. package/dist/features/account/types/index.js +1 -1
  96. package/dist/features/admin/components/AdminAdEditorView.d.ts +10 -0
  97. package/dist/features/admin/components/AdminAdEditorView.js +225 -0
  98. package/dist/features/admin/components/AdminAdsView.d.ts +25 -0
  99. package/dist/features/admin/components/AdminAdsView.js +165 -0
  100. package/dist/features/admin/components/AdminAnalyticsView.d.ts +2 -1
  101. package/dist/features/admin/components/AdminAnalyticsView.js +19 -5
  102. package/dist/features/admin/components/AdminBidsView.d.ts +1 -1
  103. package/dist/features/admin/components/AdminBidsView.js +26 -2
  104. package/dist/features/admin/components/AdminBlogView.d.ts +1 -1
  105. package/dist/features/admin/components/AdminBlogView.js +34 -2
  106. package/dist/features/admin/components/AdminCarouselView.d.ts +3 -8
  107. package/dist/features/admin/components/AdminCarouselView.js +39 -4
  108. package/dist/features/admin/components/AdminCategoriesView.d.ts +3 -8
  109. package/dist/features/admin/components/AdminCategoriesView.js +40 -4
  110. package/dist/features/admin/components/AdminCouponsView.d.ts +1 -1
  111. package/dist/features/admin/components/AdminCouponsView.js +28 -2
  112. package/dist/features/admin/components/AdminDashboardView.d.ts +2 -1
  113. package/dist/features/admin/components/AdminDashboardView.js +28 -3
  114. package/dist/features/admin/components/AdminFaqsView.d.ts +1 -1
  115. package/dist/features/admin/components/AdminFaqsView.js +23 -2
  116. package/dist/features/admin/components/AdminFeatureFlagsView.js +48 -3
  117. package/dist/features/admin/components/AdminFilterBar.js +3 -4
  118. package/dist/features/admin/components/AdminListingScaffold.d.ts +26 -0
  119. package/dist/features/admin/components/AdminListingScaffold.js +57 -0
  120. package/dist/features/admin/components/AdminMediaView.d.ts +7 -7
  121. package/dist/features/admin/components/AdminMediaView.js +50 -4
  122. package/dist/features/admin/components/AdminNavigationView.d.ts +7 -3
  123. package/dist/features/admin/components/AdminNavigationView.js +81 -4
  124. package/dist/features/admin/components/AdminOrdersView.d.ts +1 -1
  125. package/dist/features/admin/components/AdminOrdersView.js +28 -2
  126. package/dist/features/admin/components/AdminPageHeader.js +1 -2
  127. package/dist/features/admin/components/AdminPayoutsView.d.ts +1 -1
  128. package/dist/features/admin/components/AdminPayoutsView.js +28 -2
  129. package/dist/features/admin/components/AdminProductsView.d.ts +1 -1
  130. package/dist/features/admin/components/AdminProductsView.js +26 -2
  131. package/dist/features/admin/components/AdminReviewsView.d.ts +1 -1
  132. package/dist/features/admin/components/AdminReviewsView.js +24 -2
  133. package/dist/features/admin/components/AdminSectionsView.d.ts +3 -7
  134. package/dist/features/admin/components/AdminSectionsView.js +947 -4
  135. package/dist/features/admin/components/AdminSessionsManager.js +1 -2
  136. package/dist/features/admin/components/AdminSidebar.d.ts +5 -1
  137. package/dist/features/admin/components/AdminSidebar.js +5 -4
  138. package/dist/features/admin/components/AdminSiteView.js +43 -3
  139. package/dist/features/admin/components/AdminStoresView.d.ts +1 -1
  140. package/dist/features/admin/components/AdminStoresView.js +26 -2
  141. package/dist/features/admin/components/AdminUsersView.d.ts +1 -1
  142. package/dist/features/admin/components/AdminUsersView.js +38 -2
  143. package/dist/features/admin/components/DashboardStats.js +7 -7
  144. package/dist/features/admin/components/DataTable.js +2 -2
  145. package/dist/features/admin/components/DrawerFormFooter.js +1 -2
  146. package/dist/features/admin/components/QuickActionsPanel.js +1 -2
  147. package/dist/features/admin/components/analytics/AdminStatCard.js +0 -1
  148. package/dist/features/admin/components/analytics/AdminTopProductsTable.js +1 -2
  149. package/dist/features/admin/components/index.d.ts +4 -0
  150. package/dist/features/admin/components/index.js +2 -0
  151. package/dist/features/admin/hooks/useAdmin.js +0 -1
  152. package/dist/features/admin/hooks/useAdminListingData.d.ts +28 -0
  153. package/dist/features/admin/hooks/useAdminListingData.js +100 -0
  154. package/dist/features/admin/hooks/useAdminSectionsListing.d.ts +28 -0
  155. package/dist/features/admin/hooks/useAdminSectionsListing.js +34 -0
  156. package/dist/features/admin/index.d.ts +2 -0
  157. package/dist/features/admin/index.js +2 -0
  158. package/dist/features/admin/repository/chat.repository.d.ts +1 -1
  159. package/dist/features/admin/repository/chat.repository.js +1 -1
  160. package/dist/features/admin/repository/notification.repository.d.ts +0 -1
  161. package/dist/features/admin/repository/notification.repository.js +9 -7
  162. package/dist/features/admin/repository/site-settings.repository.d.ts +2 -0
  163. package/dist/features/admin/repository/site-settings.repository.js +25 -2
  164. package/dist/features/admin/schemas/firestore.d.ts +5 -1
  165. package/dist/features/admin/schemas/firestore.js +5 -0
  166. package/dist/features/admin/server.d.ts +0 -1
  167. package/dist/features/admin/server.js +0 -1
  168. package/dist/features/auctions/actions/bid-actions.js +1 -1
  169. package/dist/features/auctions/api/route.js +1 -1
  170. package/dist/features/auctions/columns/index.js +2 -2
  171. package/dist/features/auctions/components/AuctionCard.js +3 -2
  172. package/dist/features/auctions/components/AuctionDetailPageView.d.ts +4 -0
  173. package/dist/features/auctions/components/AuctionDetailPageView.js +71 -0
  174. package/dist/features/auctions/components/AuctionsListView.d.ts +1 -0
  175. package/dist/features/auctions/components/AuctionsListView.js +17 -0
  176. package/dist/features/auctions/components/MarketplaceAuctionCard.js +5 -2
  177. package/dist/features/auctions/components/MarketplaceAuctionGrid.js +0 -1
  178. package/dist/features/auctions/components/index.d.ts +3 -0
  179. package/dist/features/auctions/components/index.js +2 -0
  180. package/dist/features/auctions/hooks/useAuctions.js +0 -1
  181. package/dist/features/auctions/hooks/usePlaceBid.js +0 -1
  182. package/dist/features/auctions/repository/bid.repository.js +3 -13
  183. package/dist/features/auctions/schemas/index.d.ts +22 -22
  184. package/dist/features/auctions/schemas/index.js +2 -2
  185. package/dist/features/auctions/server.d.ts +0 -1
  186. package/dist/features/auctions/server.js +0 -1
  187. package/dist/features/auth/api/route.js +2 -2
  188. package/dist/features/auth/components/AuthStatusPanel.js +3 -3
  189. package/dist/features/auth/components/ForgotPasswordView.js +2 -2
  190. package/dist/features/auth/components/Guards.d.ts +2 -2
  191. package/dist/features/auth/components/Guards.js +2 -2
  192. package/dist/features/auth/components/LoginForm.js +1 -1
  193. package/dist/features/auth/components/OAuthLoadingView.d.ts +1 -0
  194. package/dist/features/auth/components/OAuthLoadingView.js +5 -0
  195. package/dist/features/auth/components/RegisterForm.js +1 -1
  196. package/dist/features/auth/components/ResetPasswordView.js +1 -1
  197. package/dist/features/auth/components/SocialAuthButtons.js +1 -2
  198. package/dist/features/auth/components/VerifyEmailView.js +4 -3
  199. package/dist/features/auth/components/index.d.ts +1 -0
  200. package/dist/features/auth/components/index.js +1 -0
  201. package/dist/features/auth/consent-otp.d.ts +5 -3
  202. package/dist/features/auth/consent-otp.js +0 -1
  203. package/dist/features/auth/hooks/useAuth.d.ts +0 -1
  204. package/dist/features/auth/hooks/useAuth.js +0 -1
  205. package/dist/features/auth/hooks/useAuthEvent.js +0 -1
  206. package/dist/features/auth/hooks/useLogout.js +0 -1
  207. package/dist/features/auth/repository/session.repository.d.ts +0 -1
  208. package/dist/features/auth/repository/session.repository.js +0 -1
  209. package/dist/features/auth/repository/token.repository.d.ts +0 -1
  210. package/dist/features/auth/repository/token.repository.js +0 -1
  211. package/dist/features/auth/repository/user.repository.d.ts +0 -1
  212. package/dist/features/auth/repository/user.repository.js +18 -29
  213. package/dist/features/auth/schemas/firestore.js +1 -1
  214. package/dist/features/auth/schemas/index.d.ts +4 -4
  215. package/dist/features/auth/schemas/index.js +2 -2
  216. package/dist/features/auth/server.d.ts +0 -1
  217. package/dist/features/auth/server.js +0 -1
  218. package/dist/features/auth/token-store.d.ts +0 -1
  219. package/dist/features/auth/token-store.js +0 -1
  220. package/dist/features/before-after/hooks/useBeforeAfter.js +0 -1
  221. package/dist/features/before-after/schemas/index.d.ts +2 -2
  222. package/dist/features/before-after/server.d.ts +0 -1
  223. package/dist/features/before-after/server.js +0 -1
  224. package/dist/features/blog/actions/blog-actions.d.ts +53 -53
  225. package/dist/features/blog/actions/blog-actions.js +2 -2
  226. package/dist/features/blog/api/[slug]/route.js +1 -1
  227. package/dist/features/blog/api/route.js +1 -1
  228. package/dist/features/blog/components/BlogFeaturedCard.js +9 -7
  229. package/dist/features/blog/components/BlogFilters.js +0 -1
  230. package/dist/features/blog/components/BlogIndexListing.d.ts +4 -0
  231. package/dist/features/blog/components/BlogIndexListing.js +26 -0
  232. package/dist/features/blog/components/BlogIndexPageView.d.ts +1 -0
  233. package/dist/features/blog/components/BlogIndexPageView.js +11 -0
  234. package/dist/features/blog/components/BlogListView.js +4 -3
  235. package/dist/features/blog/components/BlogPostForm.js +3 -3
  236. package/dist/features/blog/components/BlogPostView.js +3 -3
  237. package/dist/features/blog/components/index.d.ts +2 -0
  238. package/dist/features/blog/components/index.js +1 -0
  239. package/dist/features/blog/hooks/useBlog.js +0 -1
  240. package/dist/features/blog/repository/blog.repository.d.ts +0 -1
  241. package/dist/features/blog/repository/blog.repository.js +0 -1
  242. package/dist/features/blog/schemas/index.d.ts +35 -35
  243. package/dist/features/blog/schemas/index.js +2 -2
  244. package/dist/features/blog/server.d.ts +0 -1
  245. package/dist/features/blog/server.js +0 -1
  246. package/dist/features/cart/components/CartDrawer.js +5 -4
  247. package/dist/features/cart/components/CartSummary.js +1 -1
  248. package/dist/features/cart/components/CartView.js +1 -1
  249. package/dist/features/cart/components/CheckoutAddressStep.js +0 -1
  250. package/dist/features/cart/components/CheckoutOtpModal.js +1 -2
  251. package/dist/features/cart/components/CheckoutView.js +1 -1
  252. package/dist/features/cart/hooks/useCart.js +0 -1
  253. package/dist/features/cart/hooks/useCartCount.js +0 -1
  254. package/dist/features/cart/hooks/useCartQuery.js +0 -1
  255. package/dist/features/cart/hooks/useCheckoutReadQueries.js +0 -1
  256. package/dist/features/cart/hooks/useOrder.js +0 -1
  257. package/dist/features/cart/repository/cart.repository.d.ts +0 -1
  258. package/dist/features/cart/repository/cart.repository.js +0 -1
  259. package/dist/features/cart/schemas/index.d.ts +19 -19
  260. package/dist/features/cart/server.d.ts +0 -1
  261. package/dist/features/cart/server.js +0 -1
  262. package/dist/features/cart/utils/guest-cart.d.ts +0 -1
  263. package/dist/features/cart/utils/guest-cart.js +0 -1
  264. package/dist/features/categories/api/[id]/route.js +3 -3
  265. package/dist/features/categories/api/route.js +5 -5
  266. package/dist/features/categories/components/BreadcrumbTrail.js +0 -1
  267. package/dist/features/categories/components/CategoriesIndexListing.d.ts +5 -0
  268. package/dist/features/categories/components/CategoriesIndexListing.js +44 -0
  269. package/dist/features/categories/components/CategoriesIndexPageView.d.ts +1 -0
  270. package/dist/features/categories/components/CategoriesIndexPageView.js +12 -0
  271. package/dist/features/categories/components/CategoriesListView.js +3 -3
  272. package/dist/features/categories/components/CategoryDetailPageView.d.ts +4 -0
  273. package/dist/features/categories/components/CategoryDetailPageView.js +25 -0
  274. package/dist/features/categories/components/CategoryFilters.js +0 -1
  275. package/dist/features/categories/components/CategoryForm.js +4 -4
  276. package/dist/features/categories/components/CategoryGrid.d.ts +2 -1
  277. package/dist/features/categories/components/CategoryGrid.js +11 -5
  278. package/dist/features/categories/components/CategoryProductsListing.d.ts +5 -0
  279. package/dist/features/categories/components/CategoryProductsListing.js +29 -0
  280. package/dist/features/categories/components/CategoryProductsView.js +3 -3
  281. package/dist/features/categories/components/CategorySelectorCreate.js +2 -2
  282. package/dist/features/categories/components/CategorySortSelect.js +0 -1
  283. package/dist/features/categories/components/CategoryTableColumns.js +3 -3
  284. package/dist/features/categories/components/CategoryTree.js +1 -1
  285. package/dist/features/categories/components/ConcernCard.js +2 -1
  286. package/dist/features/categories/components/index.d.ts +4 -0
  287. package/dist/features/categories/components/index.js +2 -0
  288. package/dist/features/categories/hooks/useCategories.js +0 -1
  289. package/dist/features/categories/hooks/useCategorySelector.js +0 -1
  290. package/dist/features/categories/repository/categories.repository.d.ts +0 -1
  291. package/dist/features/categories/repository/categories.repository.js +0 -1
  292. package/dist/features/categories/schemas/index.d.ts +40 -40
  293. package/dist/features/categories/schemas/index.js +2 -2
  294. package/dist/features/categories/server.d.ts +0 -1
  295. package/dist/features/categories/server.js +0 -1
  296. package/dist/features/checkout/actions/checkout-actions.d.ts +7 -1
  297. package/dist/features/checkout/actions/checkout-actions.js +0 -1
  298. package/dist/features/checkout/components/CheckoutStepper.js +4 -3
  299. package/dist/features/checkout/hooks/useCheckoutApi.js +0 -1
  300. package/dist/features/checkout/hooks/usePaymentCheckout.d.ts +0 -1
  301. package/dist/features/checkout/hooks/usePaymentCheckout.js +1 -2
  302. package/dist/features/checkout/server.d.ts +0 -1
  303. package/dist/features/checkout/server.js +0 -1
  304. package/dist/features/collections/components/CollectionCard.js +2 -2
  305. package/dist/features/collections/hooks/useCollections.js +0 -1
  306. package/dist/features/collections/schemas/index.d.ts +5 -5
  307. package/dist/features/collections/server.d.ts +0 -1
  308. package/dist/features/collections/server.js +0 -1
  309. package/dist/features/consultation/hooks/useBookConsultation.js +0 -1
  310. package/dist/features/consultation/schemas/index.d.ts +7 -7
  311. package/dist/features/consultation/server.d.ts +0 -1
  312. package/dist/features/consultation/server.js +0 -1
  313. package/dist/features/contact/components/ContactInfoSidebar.js +1 -2
  314. package/dist/features/contact/components/ContactPageView.d.ts +1 -0
  315. package/dist/features/contact/components/ContactPageView.js +45 -0
  316. package/dist/features/contact/components/index.d.ts +1 -0
  317. package/dist/features/contact/components/index.js +1 -0
  318. package/dist/features/contact/email.d.ts +0 -1
  319. package/dist/features/contact/email.js +0 -1
  320. package/dist/features/contact/hooks/useContactSubmit.js +0 -1
  321. package/dist/features/contact/server.d.ts +0 -1
  322. package/dist/features/contact/server.js +0 -1
  323. package/dist/features/copilot/components/AdminCopilotView.d.ts +5 -5
  324. package/dist/features/copilot/components/AdminCopilotView.js +26 -11
  325. package/dist/features/copilot/hooks/useCopilotChat.d.ts +3 -0
  326. package/dist/features/copilot/hooks/useCopilotChat.js +9 -1
  327. package/dist/features/copilot/hooks/useCopilotFeedback.js +0 -1
  328. package/dist/features/corporate/hooks/useSubmitCorporateInquiry.js +0 -1
  329. package/dist/features/corporate/schemas/index.d.ts +1 -1
  330. package/dist/features/corporate/server.d.ts +0 -1
  331. package/dist/features/corporate/server.js +0 -1
  332. package/dist/features/cron/firebase-adapters.js +2 -2
  333. package/dist/features/cron/index.js +3 -3
  334. package/dist/features/cron/registry.js +4 -4
  335. package/dist/features/events/actions/event-actions.js +7 -7
  336. package/dist/features/events/api/[id]/route.js +1 -1
  337. package/dist/features/events/components/AdminEventEntriesView.d.ts +7 -2
  338. package/dist/features/events/components/AdminEventEntriesView.js +114 -7
  339. package/dist/features/events/components/AdminEventsView.d.ts +3 -10
  340. package/dist/features/events/components/AdminEventsView.js +34 -4
  341. package/dist/features/events/components/EventBanner.js +1 -1
  342. package/dist/features/events/components/EventCard.d.ts +1 -0
  343. package/dist/features/events/components/EventCard.js +7 -5
  344. package/dist/features/events/components/EventFilters.js +0 -1
  345. package/dist/features/events/components/EventFormDrawer.js +1 -1
  346. package/dist/features/events/components/EventLeaderboard.js +3 -3
  347. package/dist/features/events/components/EventParticipateView.js +2 -2
  348. package/dist/features/events/components/EventsIndexListing.d.ts +4 -0
  349. package/dist/features/events/components/EventsIndexListing.js +24 -0
  350. package/dist/features/events/components/EventsListPageView.d.ts +1 -0
  351. package/dist/features/events/components/EventsListPageView.js +16 -0
  352. package/dist/features/events/components/index.d.ts +2 -0
  353. package/dist/features/events/components/index.js +1 -0
  354. package/dist/features/events/hooks/useBulkEvent.js +0 -1
  355. package/dist/features/events/hooks/useEvent.js +0 -1
  356. package/dist/features/events/hooks/useEvents.js +0 -1
  357. package/dist/features/events/schemas/index.d.ts +45 -45
  358. package/dist/features/events/schemas/index.js +2 -2
  359. package/dist/features/events/server.d.ts +0 -1
  360. package/dist/features/events/server.js +0 -1
  361. package/dist/features/faq/actions/faq-actions.d.ts +20 -20
  362. package/dist/features/faq/actions/faq-actions.js +2 -2
  363. package/dist/features/faq/components/ContactCTA.js +0 -1
  364. package/dist/features/faq/components/FAQAccordion.js +5 -5
  365. package/dist/features/faq/components/FAQCategorySidebar.js +0 -1
  366. package/dist/features/faq/components/FAQHelpfulButtons.js +2 -2
  367. package/dist/features/faq/components/FAQPageContent.d.ts +4 -1
  368. package/dist/features/faq/components/FAQPageContent.js +14 -15
  369. package/dist/features/faq/components/FAQSortDropdown.js +1 -2
  370. package/dist/features/faq/components/RelatedFAQs.js +0 -1
  371. package/dist/features/faq/hooks/useFAQs.js +0 -1
  372. package/dist/features/faq/hooks/useFaqList.js +0 -1
  373. package/dist/features/faq/hooks/useFaqVote.js +0 -1
  374. package/dist/features/faq/repository/faqs.repository.d.ts +0 -1
  375. package/dist/features/faq/repository/faqs.repository.js +0 -1
  376. package/dist/features/faq/schemas/index.d.ts +18 -18
  377. package/dist/features/faq/schemas/index.js +2 -2
  378. package/dist/features/faq/server.d.ts +0 -1
  379. package/dist/features/faq/server.js +0 -1
  380. package/dist/features/filters/FilterFacetSection.js +1 -1
  381. package/dist/features/filters/index.d.ts +4 -0
  382. package/dist/features/filters/index.js +2 -0
  383. package/dist/features/filters/routeFilterState.d.ts +58 -0
  384. package/dist/features/filters/routeFilterState.js +97 -0
  385. package/dist/features/filters/usePendingFilters.d.ts +37 -0
  386. package/dist/features/filters/usePendingFilters.js +22 -0
  387. package/dist/features/forms/Checkbox.js +1 -0
  388. package/dist/features/forms/Form.js +1 -2
  389. package/dist/features/forms/Radio.js +0 -1
  390. package/dist/features/forms/utils.js +1 -1
  391. package/dist/features/homepage/actions/homepage-section-actions.js +2 -2
  392. package/dist/features/homepage/ad-registry.d.ts +96 -0
  393. package/dist/features/homepage/ad-registry.js +84 -0
  394. package/dist/features/homepage/api/[id]/route.js +3 -3
  395. package/dist/features/homepage/api/carousel/[id]/route.js +3 -3
  396. package/dist/features/homepage/api/carousel/route.js +1 -1
  397. package/dist/features/homepage/api/route.js +1 -1
  398. package/dist/features/homepage/components/AdSlot.d.ts +28 -0
  399. package/dist/features/homepage/components/AdSlot.js +85 -0
  400. package/dist/features/homepage/components/AdvertisementBanner.js +8 -8
  401. package/dist/features/homepage/components/AnnouncementBar.d.ts +5 -0
  402. package/dist/features/homepage/components/AnnouncementBar.js +10 -0
  403. package/dist/features/homepage/components/BeforeAfterCard.d.ts +0 -1
  404. package/dist/features/homepage/components/BeforeAfterCard.js +0 -1
  405. package/dist/features/homepage/components/BlogArticlesSection.d.ts +8 -0
  406. package/dist/features/homepage/components/BlogArticlesSection.js +12 -0
  407. package/dist/features/homepage/components/BrandsSection.d.ts +9 -0
  408. package/dist/features/homepage/components/BrandsSection.js +20 -0
  409. package/dist/features/homepage/components/CTABannerSection.d.ts +10 -0
  410. package/dist/features/homepage/components/CTABannerSection.js +6 -0
  411. package/dist/features/homepage/components/CharacterHotspot.d.ts +0 -1
  412. package/dist/features/homepage/components/CharacterHotspot.js +4 -4
  413. package/dist/features/homepage/components/CustomerReviewsSection.js +3 -4
  414. package/dist/features/homepage/components/EventsSection.d.ts +9 -0
  415. package/dist/features/homepage/components/EventsSection.js +10 -0
  416. package/dist/features/homepage/components/FAQSection.d.ts +0 -1
  417. package/dist/features/homepage/components/FAQSection.js +4 -4
  418. package/dist/features/homepage/components/FeaturedAuctionsSection.d.ts +8 -0
  419. package/dist/features/homepage/components/FeaturedAuctionsSection.js +10 -0
  420. package/dist/features/homepage/components/FeaturedPreOrdersSection.d.ts +8 -0
  421. package/dist/features/homepage/components/FeaturedPreOrdersSection.js +10 -0
  422. package/dist/features/homepage/components/FeaturedProductsSection.d.ts +8 -0
  423. package/dist/features/homepage/components/FeaturedProductsSection.js +11 -0
  424. package/dist/features/homepage/components/FeaturedResultsSection.js +9 -9
  425. package/dist/features/homepage/components/FeaturedStoresSection.d.ts +9 -0
  426. package/dist/features/homepage/components/FeaturedStoresSection.js +11 -0
  427. package/dist/features/homepage/components/HeroCarousel.d.ts +1 -2
  428. package/dist/features/homepage/components/HeroCarousel.js +5 -12
  429. package/dist/features/homepage/components/HomepageCustomerReviewsSection.d.ts +8 -0
  430. package/dist/features/homepage/components/HomepageCustomerReviewsSection.js +9 -0
  431. package/dist/features/homepage/components/HomepageSkeleton.js +1 -2
  432. package/dist/features/homepage/components/HowItWorksInfoView.js +2 -2
  433. package/dist/features/homepage/components/HowItWorksSection.js +4 -4
  434. package/dist/features/homepage/components/MarketplaceHomepageView.d.ts +25 -0
  435. package/dist/features/homepage/components/MarketplaceHomepageView.js +252 -0
  436. package/dist/features/homepage/components/NewsletterSection.js +2 -3
  437. package/dist/features/homepage/components/SectionCarousel.js +13 -7
  438. package/dist/features/homepage/components/SecurityHighlightsSection.js +4 -4
  439. package/dist/features/homepage/components/ShopByCategorySection.d.ts +9 -0
  440. package/dist/features/homepage/components/ShopByCategorySection.js +21 -0
  441. package/dist/features/homepage/components/SiteFeaturesSection.js +2 -3
  442. package/dist/features/homepage/components/StatsCounterSection.js +5 -5
  443. package/dist/features/homepage/components/TrustFeaturesSection.js +7 -7
  444. package/dist/features/homepage/components/TrustIndicatorsSection.js +2 -3
  445. package/dist/features/homepage/components/WelcomeSection.d.ts +3 -1
  446. package/dist/features/homepage/components/WelcomeSection.js +5 -5
  447. package/dist/features/homepage/components/WhatsAppCommunitySection.d.ts +0 -1
  448. package/dist/features/homepage/components/WhatsAppCommunitySection.js +4 -5
  449. package/dist/features/homepage/components/index.d.ts +24 -0
  450. package/dist/features/homepage/components/index.js +12 -0
  451. package/dist/features/homepage/hooks/useBlogArticles.js +0 -1
  452. package/dist/features/homepage/hooks/useFeaturedAuctions.js +0 -1
  453. package/dist/features/homepage/hooks/useFeaturedPreOrders.js +0 -1
  454. package/dist/features/homepage/hooks/useFeaturedProducts.js +0 -1
  455. package/dist/features/homepage/hooks/useFeaturedStores.d.ts +2 -0
  456. package/dist/features/homepage/hooks/useFeaturedStores.js +14 -0
  457. package/dist/features/homepage/hooks/useHeroCarousel.js +0 -1
  458. package/dist/features/homepage/hooks/useHomepage.js +0 -1
  459. package/dist/features/homepage/hooks/useHomepageEvents.d.ts +6 -0
  460. package/dist/features/homepage/hooks/useHomepageEvents.js +14 -0
  461. package/dist/features/homepage/hooks/useHomepageReviews.js +0 -1
  462. package/dist/features/homepage/hooks/useHomepageSections.js +0 -1
  463. package/dist/features/homepage/hooks/useNewsletter.js +0 -1
  464. package/dist/features/homepage/hooks/useTopBrands.js +0 -1
  465. package/dist/features/homepage/hooks/useTopCategories.js +0 -1
  466. package/dist/features/homepage/index.d.ts +4 -0
  467. package/dist/features/homepage/index.js +3 -0
  468. package/dist/features/homepage/repository/carousel.repository.d.ts +0 -1
  469. package/dist/features/homepage/repository/carousel.repository.js +2 -8
  470. package/dist/features/homepage/schemas/firestore.d.ts +20 -2
  471. package/dist/features/homepage/schemas/firestore.js +10 -8
  472. package/dist/features/homepage/server.d.ts +0 -1
  473. package/dist/features/homepage/server.js +0 -1
  474. package/dist/features/layout/AppLayoutShell.d.ts +98 -0
  475. package/dist/features/layout/AppLayoutShell.js +147 -0
  476. package/dist/features/layout/AutoBreadcrumbs.js +5 -5
  477. package/dist/features/layout/BackToTop.d.ts +0 -1
  478. package/dist/features/layout/BackToTop.js +0 -1
  479. package/dist/features/layout/BottomActions.js +8 -11
  480. package/dist/features/layout/BottomActionsContext.js +2 -2
  481. package/dist/features/layout/BottomNavItem.js +0 -1
  482. package/dist/features/layout/BottomNavLayout.js +1 -2
  483. package/dist/features/layout/BottomNavbar.d.ts +7 -0
  484. package/dist/features/layout/BottomNavbar.js +13 -6
  485. package/dist/features/layout/BottomSheet.d.ts +0 -1
  486. package/dist/features/layout/BottomSheet.js +0 -1
  487. package/dist/features/layout/Breadcrumbs.js +3 -3
  488. package/dist/features/layout/DashboardNavContext.d.ts +10 -2
  489. package/dist/features/layout/DashboardNavContext.js +35 -3
  490. package/dist/features/layout/FooterLayout.js +4 -2
  491. package/dist/features/layout/LayoutClient.js +0 -1
  492. package/dist/features/layout/ListingLayout.d.ts +0 -1
  493. package/dist/features/layout/ListingLayout.js +0 -1
  494. package/dist/features/layout/LocaleSwitcher.js +0 -1
  495. package/dist/features/layout/NavItem.js +2 -3
  496. package/dist/features/layout/NavbarLayout.js +4 -4
  497. package/dist/features/layout/SidebarLayout.js +0 -1
  498. package/dist/features/layout/TitleBar.d.ts +4 -2
  499. package/dist/features/layout/TitleBar.js +8 -4
  500. package/dist/features/layout/TitleBarLayout.d.ts +5 -3
  501. package/dist/features/layout/TitleBarLayout.js +3 -4
  502. package/dist/features/layout/index.d.ts +2 -0
  503. package/dist/features/layout/index.js +1 -0
  504. package/dist/features/loyalty/components/CoinsDisplay.js +0 -1
  505. package/dist/features/loyalty/hooks/useLoyaltyBalance.js +0 -1
  506. package/dist/features/loyalty/schemas/index.d.ts +6 -6
  507. package/dist/features/loyalty/server.d.ts +0 -1
  508. package/dist/features/loyalty/server.js +0 -1
  509. package/dist/features/media/AvatarUpload.js +1 -1
  510. package/dist/features/media/MediaImage.d.ts +3 -1
  511. package/dist/features/media/MediaImage.js +9 -5
  512. package/dist/features/media/MediaLightbox.d.ts +0 -1
  513. package/dist/features/media/MediaLightbox.js +1 -2
  514. package/dist/features/media/components/MediaSlider.d.ts +4 -0
  515. package/dist/features/media/components/MediaSlider.js +0 -1
  516. package/dist/features/media/hooks/useMedia.d.ts +6 -0
  517. package/dist/features/media/hooks/useMedia.js +1 -2
  518. package/dist/features/media/server.d.ts +0 -1
  519. package/dist/features/media/server.js +0 -1
  520. package/dist/features/media/types/index.d.ts +2 -2
  521. package/dist/features/orders/api/track/[trackingId]/route.d.ts +0 -1
  522. package/dist/features/orders/api/track/[trackingId]/route.js +0 -1
  523. package/dist/features/orders/components/MarketplaceOrderCard.d.ts +0 -1
  524. package/dist/features/orders/components/MarketplaceOrderCard.js +1 -2
  525. package/dist/features/orders/components/OrderFilters.js +0 -1
  526. package/dist/features/orders/components/OrdersList.js +3 -2
  527. package/dist/features/orders/hooks/useOrders.js +0 -1
  528. package/dist/features/orders/repository/orders.repository.d.ts +0 -1
  529. package/dist/features/orders/repository/orders.repository.js +0 -1
  530. package/dist/features/orders/schemas/index.d.ts +28 -28
  531. package/dist/features/orders/schemas/index.js +2 -2
  532. package/dist/features/orders/server.d.ts +0 -1
  533. package/dist/features/orders/server.js +0 -1
  534. package/dist/features/payments/hooks/usePaymentEvent.js +0 -1
  535. package/dist/features/payments/hooks/usePayments.js +0 -1
  536. package/dist/features/payments/schemas/index.d.ts +4 -4
  537. package/dist/features/payments/server.d.ts +0 -1
  538. package/dist/features/payments/server.js +0 -1
  539. package/dist/features/pre-orders/api/route.js +1 -1
  540. package/dist/features/pre-orders/components/MarketplacePreorderCard.d.ts +1 -0
  541. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +7 -3
  542. package/dist/features/pre-orders/components/PreOrderDetailPageView.d.ts +4 -0
  543. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +27 -0
  544. package/dist/features/pre-orders/components/PreOrdersIndexListing.d.ts +4 -0
  545. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +25 -0
  546. package/dist/features/pre-orders/components/PreOrdersListView.d.ts +1 -0
  547. package/dist/features/pre-orders/components/PreOrdersListView.js +16 -0
  548. package/dist/features/pre-orders/components/PreorderCard.js +0 -1
  549. package/dist/features/pre-orders/components/index.d.ts +5 -0
  550. package/dist/features/pre-orders/components/index.js +3 -0
  551. package/dist/features/pre-orders/hooks/usePreOrders.js +0 -1
  552. package/dist/features/pre-orders/schemas/index.d.ts +8 -8
  553. package/dist/features/pre-orders/server.d.ts +0 -1
  554. package/dist/features/pre-orders/server.js +0 -1
  555. package/dist/features/products/api/[id]/route.js +3 -3
  556. package/dist/features/products/api/route.js +4 -4
  557. package/dist/features/products/columns/productTableColumns.js +0 -1
  558. package/dist/features/products/components/AuctionsIndexListing.d.ts +4 -0
  559. package/dist/features/products/components/AuctionsIndexListing.js +23 -0
  560. package/dist/features/products/components/BidHistory.js +3 -3
  561. package/dist/features/products/components/BuyBar.js +0 -1
  562. package/dist/features/products/components/InteractiveProductCard.js +0 -1
  563. package/dist/features/products/components/MakeOfferForm.js +1 -1
  564. package/dist/features/products/components/PlaceBidForm.js +1 -1
  565. package/dist/features/products/components/ProductDetailPageView.d.ts +4 -0
  566. package/dist/features/products/components/ProductDetailPageView.js +100 -0
  567. package/dist/features/products/components/ProductDetailView.d.ts +15 -2
  568. package/dist/features/products/components/ProductDetailView.js +2 -2
  569. package/dist/features/products/components/ProductFeatureBadges.js +0 -1
  570. package/dist/features/products/components/ProductFilters.js +0 -1
  571. package/dist/features/products/components/ProductForm.js +3 -2
  572. package/dist/features/products/components/ProductGalleryClient.d.ts +5 -0
  573. package/dist/features/products/components/ProductGalleryClient.js +23 -0
  574. package/dist/features/products/components/ProductGrid.d.ts +6 -2
  575. package/dist/features/products/components/ProductGrid.js +19 -11
  576. package/dist/features/products/components/ProductInfo.js +1 -1
  577. package/dist/features/products/components/ProductTabs.js +2 -1
  578. package/dist/features/products/components/ProductTabsShell.d.ts +18 -0
  579. package/dist/features/products/components/ProductTabsShell.js +26 -0
  580. package/dist/features/products/components/ProductsIndexListing.d.ts +4 -0
  581. package/dist/features/products/components/ProductsIndexListing.js +27 -0
  582. package/dist/features/products/components/ProductsIndexPageView.d.ts +1 -0
  583. package/dist/features/products/components/ProductsIndexPageView.js +17 -0
  584. package/dist/features/products/components/RelatedProducts.js +2 -2
  585. package/dist/features/products/components/index.d.ts +4 -0
  586. package/dist/features/products/components/index.js +2 -0
  587. package/dist/features/products/hooks/useProductDetail.js +0 -1
  588. package/dist/features/products/hooks/useProducts.js +2 -1
  589. package/dist/features/products/hooks/useRelatedProducts.js +0 -1
  590. package/dist/features/products/repository/products.repository.d.ts +7 -1
  591. package/dist/features/products/repository/products.repository.js +53 -4
  592. package/dist/features/products/schemas/index.d.ts +110 -110
  593. package/dist/features/products/schemas/index.js +2 -2
  594. package/dist/features/products/server.d.ts +0 -1
  595. package/dist/features/products/server.js +0 -1
  596. package/dist/features/products/types/index.d.ts +1 -0
  597. package/dist/features/promotions/actions/seller-coupon-actions.js +3 -3
  598. package/dist/features/promotions/api/route.js +1 -1
  599. package/dist/features/promotions/hooks/useCouponValidate.js +0 -1
  600. package/dist/features/promotions/hooks/usePromotions.js +0 -1
  601. package/dist/features/promotions/repository/coupons.repository.d.ts +0 -1
  602. package/dist/features/promotions/repository/coupons.repository.js +0 -1
  603. package/dist/features/promotions/schemas/index.d.ts +18 -18
  604. package/dist/features/promotions/schemas/index.js +2 -2
  605. package/dist/features/promotions/server.d.ts +0 -1
  606. package/dist/features/promotions/server.js +0 -1
  607. package/dist/features/promotions/types/index.js +1 -1
  608. package/dist/features/reviews/api/[id]/route.js +3 -3
  609. package/dist/features/reviews/api/route.js +3 -3
  610. package/dist/features/reviews/components/ReviewFilters.js +0 -1
  611. package/dist/features/reviews/components/ReviewModal.js +6 -2
  612. package/dist/features/reviews/components/ReviewSummary.js +0 -1
  613. package/dist/features/reviews/components/ReviewsIndexListing.d.ts +5 -0
  614. package/dist/features/reviews/components/ReviewsIndexListing.js +55 -0
  615. package/dist/features/reviews/components/ReviewsIndexPageView.d.ts +1 -0
  616. package/dist/features/reviews/components/ReviewsIndexPageView.js +9 -0
  617. package/dist/features/reviews/components/ReviewsList.js +6 -4
  618. package/dist/features/reviews/components/index.d.ts +2 -0
  619. package/dist/features/reviews/components/index.js +1 -0
  620. package/dist/features/reviews/hooks/useCreateReview.js +2 -1
  621. package/dist/features/reviews/hooks/useReviews.js +0 -1
  622. package/dist/features/reviews/schemas/index.d.ts +24 -24
  623. package/dist/features/reviews/schemas/index.js +2 -2
  624. package/dist/features/reviews/server.d.ts +0 -1
  625. package/dist/features/reviews/server.js +0 -1
  626. package/dist/features/search/api/route.js +1 -1
  627. package/dist/features/search/components/Search.d.ts +0 -1
  628. package/dist/features/search/components/Search.js +9 -10
  629. package/dist/features/search/components/SearchResultsSection.js +0 -1
  630. package/dist/features/search/hooks/useSearch.js +0 -1
  631. package/dist/features/search/schemas/index.d.ts +5 -5
  632. package/dist/features/search/server.d.ts +0 -1
  633. package/dist/features/search/server.js +0 -1
  634. package/dist/features/seller/actions/offer-actions.js +7 -7
  635. package/dist/features/seller/actions/seller-actions.js +9 -9
  636. package/dist/features/seller/columns/index.js +2 -2
  637. package/dist/features/seller/components/SellerAddressesView.d.ts +1 -1
  638. package/dist/features/seller/components/SellerAddressesView.js +1 -1
  639. package/dist/features/seller/components/SellerAuctionsView.d.ts +3 -3
  640. package/dist/features/seller/components/SellerAuctionsView.js +27 -3
  641. package/dist/features/seller/components/SellerCouponsView.d.ts +3 -3
  642. package/dist/features/seller/components/SellerCouponsView.js +27 -3
  643. package/dist/features/seller/components/SellerCreateProductView.d.ts +1 -1
  644. package/dist/features/seller/components/SellerCreateProductView.js +1 -1
  645. package/dist/features/seller/components/SellerEditProductView.d.ts +1 -1
  646. package/dist/features/seller/components/SellerEditProductView.js +1 -1
  647. package/dist/features/seller/components/SellerOffersView.d.ts +3 -3
  648. package/dist/features/seller/components/SellerOffersView.js +27 -3
  649. package/dist/features/seller/components/SellerOrdersView.d.ts +3 -3
  650. package/dist/features/seller/components/SellerOrdersView.js +27 -3
  651. package/dist/features/seller/components/SellerPayoutHistoryTable.js +0 -1
  652. package/dist/features/seller/components/SellerPayoutStats.js +0 -1
  653. package/dist/features/seller/components/SellerPayoutsView.d.ts +3 -17
  654. package/dist/features/seller/components/SellerPayoutsView.js +27 -9
  655. package/dist/features/seller/components/SellerProductsView.d.ts +3 -3
  656. package/dist/features/seller/components/SellerProductsView.js +27 -3
  657. package/dist/features/seller/components/SellerSidebar.d.ts +5 -1
  658. package/dist/features/seller/components/SellerSidebar.js +11 -6
  659. package/dist/features/seller/components/SellerStatCard.js +2 -1
  660. package/dist/features/seller/components/SellerStoreView.d.ts +1 -1
  661. package/dist/features/seller/components/SellerStoreView.js +1 -1
  662. package/dist/features/seller/components/analytics/SellerAnalyticsStats.js +0 -1
  663. package/dist/features/seller/components/analytics/SellerTopProducts.js +0 -1
  664. package/dist/features/seller/hooks/useBecomeSeller.js +0 -1
  665. package/dist/features/seller/hooks/useSellerListingData.d.ts +29 -0
  666. package/dist/features/seller/hooks/useSellerListingData.js +87 -0
  667. package/dist/features/seller/hooks/useSellerPayouts.js +0 -1
  668. package/dist/features/seller/hooks/useSellerStore.js +0 -1
  669. package/dist/features/seller/hooks/useSellerStorefront.js +0 -1
  670. package/dist/features/seller/index.d.ts +1 -0
  671. package/dist/features/seller/index.js +1 -0
  672. package/dist/features/seller/repository/offer.repository.js +3 -3
  673. package/dist/features/seller/schemas/index.d.ts +26 -26
  674. package/dist/features/seller/schemas/index.js +3 -3
  675. package/dist/features/seller/server.d.ts +0 -1
  676. package/dist/features/seller/server.js +0 -1
  677. package/dist/features/seller/types/index.js +1 -1
  678. package/dist/features/stores/api/[storeSlug]/auctions/route.js +1 -1
  679. package/dist/features/stores/api/[storeSlug]/products/route.js +1 -1
  680. package/dist/features/stores/api/[storeSlug]/reviews/route.js +1 -1
  681. package/dist/features/stores/api/[storeSlug]/route.js +1 -1
  682. package/dist/features/stores/api/route.js +1 -1
  683. package/dist/features/stores/components/InteractiveStoreCard.d.ts +1 -0
  684. package/dist/features/stores/components/InteractiveStoreCard.js +5 -5
  685. package/dist/features/stores/components/StoreAboutView.js +3 -2
  686. package/dist/features/stores/components/StoreAddressSelectorCreate.js +1 -1
  687. package/dist/features/stores/components/StoreAuctionsListing.d.ts +5 -0
  688. package/dist/features/stores/components/StoreAuctionsListing.js +41 -0
  689. package/dist/features/stores/components/StoreAuctionsPageView.d.ts +4 -0
  690. package/dist/features/stores/components/StoreAuctionsPageView.js +21 -0
  691. package/dist/features/stores/components/StoreAuctionsView.d.ts +2 -2
  692. package/dist/features/stores/components/StoreAuctionsView.js +2 -2
  693. package/dist/features/stores/components/StoreDetailLayoutView.d.ts +8 -0
  694. package/dist/features/stores/components/StoreDetailLayoutView.js +19 -0
  695. package/dist/features/stores/components/StoreHeader.js +3 -3
  696. package/dist/features/stores/components/StoreNavTabs.js +3 -4
  697. package/dist/features/stores/components/StoreProductsListing.d.ts +5 -0
  698. package/dist/features/stores/components/StoreProductsListing.js +29 -0
  699. package/dist/features/stores/components/StoreProductsPageView.d.ts +4 -0
  700. package/dist/features/stores/components/StoreProductsPageView.js +21 -0
  701. package/dist/features/stores/components/StoreProductsView.js +8 -3
  702. package/dist/features/stores/components/StoreReviewsListing.d.ts +4 -0
  703. package/dist/features/stores/components/StoreReviewsListing.js +34 -0
  704. package/dist/features/stores/components/StoreReviewsPageView.d.ts +4 -0
  705. package/dist/features/stores/components/StoreReviewsPageView.js +5 -0
  706. package/dist/features/stores/components/StoreReviewsView.d.ts +2 -2
  707. package/dist/features/stores/components/StoreReviewsView.js +2 -6
  708. package/dist/features/stores/components/StoresIndexListing.d.ts +4 -0
  709. package/dist/features/stores/components/StoresIndexListing.js +22 -0
  710. package/dist/features/stores/components/StoresIndexPageView.d.ts +1 -0
  711. package/dist/features/stores/components/StoresIndexPageView.js +11 -0
  712. package/dist/features/stores/components/StoresListView.js +5 -4
  713. package/dist/features/stores/components/index.d.ts +8 -0
  714. package/dist/features/stores/components/index.js +4 -0
  715. package/dist/features/stores/hooks/useStoreAddressSelector.js +0 -1
  716. package/dist/features/stores/hooks/useStores.d.ts +2 -1
  717. package/dist/features/stores/hooks/useStores.js +1 -1
  718. package/dist/features/stores/repository/store-address.repository.js +2 -3
  719. package/dist/features/stores/repository/store.repository.d.ts +0 -1
  720. package/dist/features/stores/repository/store.repository.js +0 -1
  721. package/dist/features/stores/schemas/firestore.js +1 -1
  722. package/dist/features/stores/schemas/index.d.ts +14 -14
  723. package/dist/features/stores/schemas/index.js +1 -1
  724. package/dist/features/stores/server.d.ts +0 -1
  725. package/dist/features/stores/server.js +0 -1
  726. package/dist/features/stores/types/index.js +1 -1
  727. package/dist/features/whatsapp-bot/components/WhatsAppChatButton.js +0 -1
  728. package/dist/features/whatsapp-bot/helpers/whatsapp.d.ts +0 -1
  729. package/dist/features/whatsapp-bot/helpers/whatsapp.js +0 -1
  730. package/dist/features/whatsapp-bot/server.d.ts +0 -1
  731. package/dist/features/whatsapp-bot/server.js +0 -1
  732. package/dist/features/wishlist/components/WishlistPage.js +4 -3
  733. package/dist/features/wishlist/components/WishlistToggleButton.js +0 -1
  734. package/dist/features/wishlist/components/WishlistView.d.ts +2 -2
  735. package/dist/features/wishlist/components/WishlistView.js +2 -2
  736. package/dist/features/wishlist/hooks/useUserWishlist.js +0 -1
  737. package/dist/features/wishlist/hooks/useWishlist.js +0 -1
  738. package/dist/features/wishlist/schemas/index.d.ts +2 -2
  739. package/dist/features/wishlist/server.d.ts +0 -1
  740. package/dist/features/wishlist/server.js +0 -1
  741. package/dist/index.d.ts +2766 -1
  742. package/dist/index.js +5177 -1
  743. package/dist/monitoring/server-logger.d.ts +10 -1
  744. package/dist/monitoring/server-logger.js +35 -14
  745. package/dist/next/ErrorBoundary.d.ts +1 -1
  746. package/dist/next/ErrorBoundary.js +2 -1
  747. package/dist/next/api/apiHandler.d.ts +9 -0
  748. package/dist/next/api/apiHandler.js +20 -0
  749. package/dist/next/api/routeHandler.d.ts +9 -0
  750. package/dist/next/api/routeHandler.js +30 -5
  751. package/dist/next/routing/route-map.d.ts +6 -2
  752. package/dist/next/routing/route-map.js +3 -1
  753. package/dist/providers/auth-firebase/helpers.js +3 -3
  754. package/dist/providers/db-firebase/admin-app-lite.d.ts +0 -1
  755. package/dist/providers/db-firebase/admin-app-lite.js +11 -6
  756. package/dist/providers/db-firebase/admin-storage-lite.d.ts +0 -1
  757. package/dist/providers/db-firebase/admin-storage-lite.js +0 -1
  758. package/dist/providers/db-firebase/admin.d.ts +0 -1
  759. package/dist/providers/db-firebase/admin.js +16 -21
  760. package/dist/providers/db-firebase/base.d.ts +0 -1
  761. package/dist/providers/db-firebase/base.js +42 -16
  762. package/dist/providers/db-firebase/base.repository.d.ts +1 -2
  763. package/dist/providers/db-firebase/base.repository.js +0 -1
  764. package/dist/providers/db-firebase/field-ops.d.ts +0 -1
  765. package/dist/providers/db-firebase/field-ops.js +0 -1
  766. package/dist/providers/db-firebase/helpers.d.ts +2 -0
  767. package/dist/providers/db-firebase/helpers.js +11 -2
  768. package/dist/providers/db-firebase/index.d.ts +1 -2
  769. package/dist/providers/db-firebase/index.js +1 -2
  770. package/dist/providers/db-firebase/realtime.d.ts +1 -2
  771. package/dist/providers/db-firebase/realtime.js +20 -4
  772. package/dist/providers/db-firebase/sieve.d.ts +0 -1
  773. package/dist/providers/db-firebase/sieve.js +23 -5
  774. package/dist/providers/firebase-client/auth.js +0 -1
  775. package/dist/providers/firebase-client/index.js +0 -1
  776. package/dist/providers/firebase-client/realtime.js +0 -1
  777. package/dist/providers/payment-razorpay/index.d.ts +20 -1
  778. package/dist/providers/payment-razorpay/index.js +3 -4
  779. package/dist/providers/shipping-shiprocket/index.d.ts +37 -0
  780. package/dist/providers/shipping-shiprocket/index.js +36 -3
  781. package/dist/providers/shipping-shiprocket/shiprocket-provider.d.ts +2 -3
  782. package/dist/providers/shipping-shiprocket/shiprocket-provider.js +28 -12
  783. package/dist/providers/storage-firebase/client.js +1 -2
  784. package/dist/providers.d.ts +25 -0
  785. package/dist/providers.js +31 -0
  786. package/dist/react/ErrorBoundary.d.ts +1 -1
  787. package/dist/react/ErrorBoundary.js +1 -1
  788. package/dist/react/contexts/SessionContext.d.ts +0 -1
  789. package/dist/react/contexts/SessionContext.js +0 -1
  790. package/dist/react/contexts/ThemeContext.d.ts +0 -1
  791. package/dist/react/contexts/ThemeContext.js +0 -1
  792. package/dist/react/hooks/useBreakpoint.js +0 -1
  793. package/dist/react/hooks/useCamera.d.ts +0 -1
  794. package/dist/react/hooks/useCamera.js +0 -1
  795. package/dist/react/hooks/useClickOutside.d.ts +0 -1
  796. package/dist/react/hooks/useClickOutside.js +0 -1
  797. package/dist/react/hooks/useContainerGrid.js +1 -1
  798. package/dist/react/hooks/useCountdown.js +1 -0
  799. package/dist/react/hooks/useMediaQuery.d.ts +0 -1
  800. package/dist/react/hooks/useMediaQuery.js +0 -1
  801. package/dist/react/hooks/useSwipe.d.ts +0 -1
  802. package/dist/react/hooks/useSwipe.js +0 -1
  803. package/dist/react/hooks/useUnsavedChanges.d.ts +0 -1
  804. package/dist/react/hooks/useUnsavedChanges.js +3 -3
  805. package/dist/react/hooks/useVisibleItems.js +1 -1
  806. package/dist/react/useModalStack.js +1 -1
  807. package/dist/repositories/index.d.ts +0 -1
  808. package/dist/repositories/index.js +0 -1
  809. package/dist/security/authorization.js +10 -15
  810. package/dist/security/index.d.ts +1 -1
  811. package/dist/security/index.js +1 -1
  812. package/dist/security/pii-encrypt.d.ts +11 -1
  813. package/dist/security/pii-encrypt.js +11 -5
  814. package/dist/security/pii-redact.d.ts +16 -0
  815. package/dist/security/pii-redact.js +32 -0
  816. package/dist/security/rate-limit.d.ts +0 -1
  817. package/dist/security/rate-limit.js +17 -5
  818. package/dist/security/rbac/Can.js +0 -2
  819. package/dist/security/rbac/hook.js +1 -1
  820. package/dist/security/settings-encryption.d.ts +0 -1
  821. package/dist/security/settings-encryption.js +7 -2
  822. package/dist/seed/actions/demo-seed-actions.d.ts +12 -1
  823. package/dist/seed/addresses-seed-data.d.ts +0 -1
  824. package/dist/seed/addresses-seed-data.js +1 -2
  825. package/dist/seed/bids-seed-data.d.ts +0 -1
  826. package/dist/seed/bids-seed-data.js +21 -22
  827. package/dist/seed/blog-posts-seed-data.d.ts +0 -1
  828. package/dist/seed/blog-posts-seed-data.js +8 -5
  829. package/dist/seed/carousel-slides-seed-data.d.ts +0 -1
  830. package/dist/seed/carousel-slides-seed-data.js +4 -1
  831. package/dist/seed/cart-seed-data.d.ts +0 -1
  832. package/dist/seed/cart-seed-data.js +5 -6
  833. package/dist/seed/categories-seed-data.d.ts +0 -1
  834. package/dist/seed/categories-seed-data.js +4 -1
  835. package/dist/seed/coupons-seed-data.d.ts +0 -1
  836. package/dist/seed/coupons-seed-data.js +4 -1
  837. package/dist/seed/events-seed-data.d.ts +0 -1
  838. package/dist/seed/events-seed-data.js +7 -4
  839. package/dist/seed/factories/product.factory.js +1 -1
  840. package/dist/seed/faq-seed-data.d.ts +0 -1
  841. package/dist/seed/faq-seed-data.js +15 -1
  842. package/dist/seed/firestore-indexes.d.ts +0 -1
  843. package/dist/seed/firestore-indexes.js +0 -1
  844. package/dist/seed/homepage-sections-seed-data.d.ts +4 -5
  845. package/dist/seed/homepage-sections-seed-data.js +84 -31
  846. package/dist/seed/index.d.ts +7 -1
  847. package/dist/seed/index.js +8 -1
  848. package/dist/seed/notifications-seed-data.d.ts +0 -1
  849. package/dist/seed/notifications-seed-data.js +15 -12
  850. package/dist/seed/orders-seed-data.d.ts +0 -1
  851. package/dist/seed/orders-seed-data.js +6 -7
  852. package/dist/seed/payouts-seed-data.d.ts +0 -1
  853. package/dist/seed/payouts-seed-data.js +4 -5
  854. package/dist/seed/pokemon-carousel-slides-seed-data.d.ts +6 -0
  855. package/dist/seed/pokemon-carousel-slides-seed-data.js +433 -0
  856. package/dist/seed/pokemon-categories-seed-data.d.ts +27 -0
  857. package/dist/seed/pokemon-categories-seed-data.js +1127 -0
  858. package/dist/seed/pokemon-homepage-sections-seed-data.d.ts +6 -0
  859. package/dist/seed/pokemon-homepage-sections-seed-data.js +370 -0
  860. package/dist/seed/pokemon-products-seed-data.d.ts +9 -0
  861. package/dist/seed/pokemon-products-seed-data.js +1119 -0
  862. package/dist/seed/pokemon-seed-bundle.d.ts +22 -0
  863. package/dist/seed/pokemon-seed-bundle.js +22 -0
  864. package/dist/seed/pokemon-stores-seed-data.d.ts +7 -0
  865. package/dist/seed/pokemon-stores-seed-data.js +78 -0
  866. package/dist/seed/pokemon-users-seed-data.d.ts +6 -0
  867. package/dist/seed/pokemon-users-seed-data.js +438 -0
  868. package/dist/seed/products-seed-data.d.ts +0 -1
  869. package/dist/seed/products-seed-data.js +34 -2
  870. package/dist/seed/reviews-seed-data.d.ts +0 -1
  871. package/dist/seed/reviews-seed-data.js +4 -1
  872. package/dist/seed/runner.d.ts +0 -1
  873. package/dist/seed/runner.js +10 -2
  874. package/dist/seed/seed-market-config.d.ts +0 -1
  875. package/dist/seed/seed-market-config.js +1 -2
  876. package/dist/seed/sessions-seed-data.d.ts +0 -1
  877. package/dist/seed/sessions-seed-data.js +19 -20
  878. package/dist/seed/site-settings-seed-data.d.ts +38 -2
  879. package/dist/seed/site-settings-seed-data.js +124 -1
  880. package/dist/seed/store-addresses-seed-data.d.ts +0 -1
  881. package/dist/seed/store-addresses-seed-data.js +1 -2
  882. package/dist/seed/stores-seed-data.d.ts +0 -1
  883. package/dist/seed/stores-seed-data.js +14 -4
  884. package/dist/seed/test-utils.d.ts +0 -1
  885. package/dist/seed/test-utils.js +0 -1
  886. package/dist/seed/types.d.ts +0 -1
  887. package/dist/seed/types.js +2 -1
  888. package/dist/seed/users-seed-data.d.ts +0 -1
  889. package/dist/seed/users-seed-data.js +7 -8
  890. package/dist/seed/wishlists-seed-data.d.ts +10 -0
  891. package/dist/seed/wishlists-seed-data.js +38 -0
  892. package/dist/seo/json-ld.js +1 -1
  893. package/dist/server.d.ts +437 -109
  894. package/dist/server.js +1296 -110
  895. package/dist/styles.css +20 -0
  896. package/dist/tokens/index.d.ts +131 -0
  897. package/dist/tokens/index.js +55 -11
  898. package/dist/tokens/tokens.css +9 -9
  899. package/dist/ui/DataTable.js +15 -15
  900. package/dist/ui/columns/column-renderers.js +3 -3
  901. package/dist/ui/components/Accordion.js +1 -1
  902. package/dist/ui/components/ActiveFilterChips.js +0 -1
  903. package/dist/ui/components/Alert.js +1 -1
  904. package/dist/ui/components/Avatar.js +1 -2
  905. package/dist/ui/components/AvatarDisplay.js +2 -3
  906. package/dist/ui/components/BackgroundRenderer.js +1 -1
  907. package/dist/ui/components/BaseListingCard.js +7 -5
  908. package/dist/ui/components/BulkActionBar.d.ts +0 -1
  909. package/dist/ui/components/BulkActionBar.js +2 -3
  910. package/dist/ui/components/Button.style.css +2 -2
  911. package/dist/ui/components/Card.js +4 -4
  912. package/dist/ui/components/Checkbox.js +1 -1
  913. package/dist/ui/components/ConfirmDeleteModal.d.ts +0 -1
  914. package/dist/ui/components/ConfirmDeleteModal.js +2 -3
  915. package/dist/ui/components/CountdownDisplay.d.ts +0 -1
  916. package/dist/ui/components/CountdownDisplay.js +0 -1
  917. package/dist/ui/components/DashboardStatsCard.js +1 -2
  918. package/dist/ui/components/DescriptionField.js +1 -1
  919. package/dist/ui/components/DetailViewShell.d.ts +16 -2
  920. package/dist/ui/components/DetailViewShell.js +9 -5
  921. package/dist/ui/components/Div.d.ts +1 -1
  922. package/dist/ui/components/Div.js +2 -2
  923. package/dist/ui/components/Divider.js +1 -1
  924. package/dist/ui/components/Drawer.d.ts +0 -1
  925. package/dist/ui/components/Drawer.js +2 -3
  926. package/dist/ui/components/Dropdown.d.ts +0 -1
  927. package/dist/ui/components/Dropdown.js +1 -2
  928. package/dist/ui/components/DynamicSelect.d.ts +0 -1
  929. package/dist/ui/components/DynamicSelect.js +2 -3
  930. package/dist/ui/components/EmptyState.js +1 -2
  931. package/dist/ui/components/FilterDrawer.d.ts +3 -1
  932. package/dist/ui/components/FilterDrawer.js +3 -3
  933. package/dist/ui/components/FlowDiagram.js +3 -3
  934. package/dist/ui/components/Form.js +2 -2
  935. package/dist/ui/components/FormField.js +3 -4
  936. package/dist/ui/components/FormGrid.js +2 -2
  937. package/dist/ui/components/FormGrid.style.css +1 -1
  938. package/dist/ui/components/HorizontalScroller.d.ts +1 -1
  939. package/dist/ui/components/HorizontalScroller.js +86 -15
  940. package/dist/ui/components/HorizontalScroller.style.css +105 -109
  941. package/dist/ui/components/ImageGallery.d.ts +0 -1
  942. package/dist/ui/components/ImageGallery.js +4 -5
  943. package/dist/ui/components/ImageLightbox.d.ts +0 -1
  944. package/dist/ui/components/ImageLightbox.js +1 -2
  945. package/dist/ui/components/ImageLightbox.style.css +3 -3
  946. package/dist/ui/components/Input.js +1 -1
  947. package/dist/ui/components/Layout.d.ts +7 -7
  948. package/dist/ui/components/Layout.js +5 -5
  949. package/dist/ui/components/ListingLayout.d.ts +11 -8
  950. package/dist/ui/components/ListingLayout.js +22 -44
  951. package/dist/ui/components/ListingLayout.style.css +15 -15
  952. package/dist/ui/components/ListingViewShell.d.ts +1 -2
  953. package/dist/ui/components/ListingViewShell.js +1 -3
  954. package/dist/ui/components/Menu.js +0 -1
  955. package/dist/ui/components/Modal.d.ts +0 -1
  956. package/dist/ui/components/Modal.js +3 -4
  957. package/dist/ui/components/NavigationLoader.d.ts +29 -0
  958. package/dist/ui/components/NavigationLoader.js +146 -0
  959. package/dist/ui/components/NavigationLoader.style.css +19 -0
  960. package/dist/ui/components/Pagination.js +0 -1
  961. package/dist/ui/components/PasswordStrengthIndicator.js +1 -2
  962. package/dist/ui/components/PriceDisplay.js +0 -1
  963. package/dist/ui/components/Progress.js +2 -3
  964. package/dist/ui/components/Radio.js +1 -2
  965. package/dist/ui/components/RatingDisplay.js +1 -2
  966. package/dist/ui/components/ResponsiveView.js +1 -2
  967. package/dist/ui/components/RichTextEditor.d.ts +9 -0
  968. package/dist/ui/components/RichTextEditor.js +59 -0
  969. package/dist/ui/components/RoleBadge.js +0 -1
  970. package/dist/ui/components/RowActionMenu.js +1 -1
  971. package/dist/ui/components/SectionTabs.js +4 -4
  972. package/dist/ui/components/Select.js +2 -2
  973. package/dist/ui/components/Semantic.d.ts +2 -2
  974. package/dist/ui/components/Semantic.js +1 -1
  975. package/dist/ui/components/SideDrawer.d.ts +0 -1
  976. package/dist/ui/components/SideDrawer.js +2 -3
  977. package/dist/ui/components/SideDrawer.style.css +2 -2
  978. package/dist/ui/components/SideModal.d.ts +0 -1
  979. package/dist/ui/components/SideModal.js +0 -1
  980. package/dist/ui/components/SideModal.style.css +4 -4
  981. package/dist/ui/components/Skeleton.js +1 -2
  982. package/dist/ui/components/SkipToMain.js +0 -1
  983. package/dist/ui/components/Slider.js +2 -2
  984. package/dist/ui/components/SlottedListingView.d.ts +1 -2
  985. package/dist/ui/components/SlottedListingView.js +2 -3
  986. package/dist/ui/components/SortDropdown.js +1 -2
  987. package/dist/ui/components/Spinner.d.ts +1 -1
  988. package/dist/ui/components/Spinner.js +2 -1
  989. package/dist/ui/components/Spinner.style.css +8 -0
  990. package/dist/ui/components/StackedViewShell.d.ts +0 -1
  991. package/dist/ui/components/StackedViewShell.js +0 -2
  992. package/dist/ui/components/StatsGrid.js +0 -1
  993. package/dist/ui/components/StatusBadge.d.ts +5 -5
  994. package/dist/ui/components/StepperNav.js +2 -3
  995. package/dist/ui/components/SummaryCard.js +0 -1
  996. package/dist/ui/components/TabStrip.d.ts +0 -1
  997. package/dist/ui/components/TabStrip.js +1 -2
  998. package/dist/ui/components/TablePagination.js +0 -1
  999. package/dist/ui/components/Tabs.js +3 -3
  1000. package/dist/ui/components/TagInput.js +1 -1
  1001. package/dist/ui/components/TextLink.js +0 -1
  1002. package/dist/ui/components/Textarea.js +2 -2
  1003. package/dist/ui/components/Toast.d.ts +0 -1
  1004. package/dist/ui/components/Toast.js +2 -3
  1005. package/dist/ui/components/Toggle.js +1 -1
  1006. package/dist/ui/components/Tooltip.d.ts +0 -1
  1007. package/dist/ui/components/Tooltip.js +1 -2
  1008. package/dist/ui/components/UnsavedChangesModal.d.ts +0 -1
  1009. package/dist/ui/components/UnsavedChangesModal.js +2 -3
  1010. package/dist/ui/components/ViewToggle.js +0 -1
  1011. package/dist/ui/components/index.style.css +1 -0
  1012. package/dist/ui/index.d.ts +5 -1
  1013. package/dist/ui/index.js +5 -3
  1014. package/dist/ui/rich-text/RichText.d.ts +0 -1
  1015. package/dist/ui/rich-text/RichText.js +3 -4
  1016. package/dist/utils/event-manager.d.ts +6 -1
  1017. package/dist/utils/event-manager.js +6 -1
  1018. package/dist/utils/id-generators.js +3 -3
  1019. package/dist/utils/string.formatter.d.ts +5 -0
  1020. package/dist/utils/string.formatter.js +15 -0
  1021. package/dist/validation/schemas.d.ts +20 -20
  1022. package/package.json +86 -25
@@ -3,10 +3,12 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import Link from "next/link";
4
4
  import { useState } from "react";
5
5
  import { ChevronDown } from "lucide-react";
6
- import { BlockFooter, Button, Div, Heading, Li, Row, Span, Text, Ul, } from "../../ui";
6
+ import { BlockFooter, Div, Heading, Li, Row, Span, Text, Ul, } from "../../ui";
7
7
  export function FooterLayout({ brandName, brandDescription, socialLinks, linkGroups, copyrightText, madeInText, newsletterSlot, newsletterEnabled = true, showTrustBar = false, trustBarItems = [], id = "footer", }) {
8
8
  const [openGroups, setOpenGroups] = useState({});
9
9
  const toggleGroup = (idx) => setOpenGroups((prev) => ({ ...prev, [idx]: !prev[idx] }));
10
10
  const visibleTrustItems = trustBarItems.filter((item) => item.visible !== false);
11
- return (_jsxs(BlockFooter, { id: id, className: "bg-zinc-50 dark:bg-slate-900 border-t border-zinc-200 dark:border-slate-800", children: [showTrustBar && visibleTrustItems.length > 0 && (_jsx(Div, { className: "border-b border-zinc-200 dark:border-slate-800 py-6", children: _jsx(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px]", children: _jsx(Row, { as: "ul", wrap: true, justify: "center", gap: "lg", className: "lg:gap-10", children: visibleTrustItems.map((item, i) => (_jsx(Li, { children: _jsxs(Row, { gap: "sm", className: "text-sm min-w-[160px]", children: [_jsx(Span, { className: "flex-shrink-0 text-primary-600 dark:text-secondary-400", children: item.icon }), _jsxs(Span, { children: [_jsx(Span, { className: "font-semibold text-zinc-900 dark:text-zinc-100", children: item.label }), item.subtitle && (_jsx(Span, { className: "text-zinc-500 dark:text-zinc-400 text-xs", children: item.subtitle }))] })] }) }, item.id ?? String(i)))) }) }) })), _jsxs(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px] py-10 lg:py-14", children: [_jsxs(Div, { className: "grid grid-cols-1 lg:grid-cols-5 gap-10 lg:gap-16", children: [_jsxs(Div, { className: "lg:col-span-2 space-y-4", children: [_jsx(Heading, { level: 5, className: "text-zinc-900 dark:text-zinc-100", children: brandName }), _jsx(Text, { className: "text-sm text-zinc-600 dark:text-zinc-400 leading-relaxed max-w-sm", children: brandDescription }), socialLinks.length > 0 && (_jsx(Row, { as: Ul, gap: "sm", children: socialLinks.map((link) => (_jsx(Li, { children: _jsx(Link, { href: link.href, "aria-label": link.ariaLabel, target: "_blank", rel: "noopener noreferrer", className: "flex items-center justify-center w-9 h-9 rounded-full border border-zinc-200 dark:border-slate-700 text-zinc-600 dark:text-zinc-400 hover:text-zinc-900 dark:hover:text-zinc-100 hover:border-zinc-300 dark:hover:border-slate-600 transition-colors", children: link.icon }) }, link.platform))) })), newsletterEnabled && newsletterSlot && (_jsx(Div, { className: "pt-2", children: newsletterSlot }))] }), _jsx(Div, { className: "lg:col-span-3 grid grid-cols-1 sm:grid-cols-3 gap-0 sm:gap-8", children: linkGroups.map((group, idx) => (_jsxs(Div, { children: [_jsxs(Button, { type: "button", variant: "ghost", size: "sm", onClick: () => toggleGroup(idx), className: "sm:hidden flex items-center justify-between w-full py-3 border-b border-zinc-200 dark:border-slate-800 text-sm font-semibold text-zinc-900 dark:text-zinc-100", children: [group.heading, _jsx(ChevronDown, { className: `w-4 h-4 transition-transform duration-200 ${openGroups[idx] ? "rotate-180" : ""}` })] }), _jsx(Ul, { className: `sm:hidden overflow-hidden transition-all duration-200 ${openGroups[idx] ? "max-h-96 py-3" : "max-h-0"} space-y-2.5`, children: group.links.map((link) => (_jsx(Li, { children: _jsx(Link, { href: link.href, className: "text-sm text-zinc-600 dark:text-zinc-400 hover:text-zinc-900 dark:hover:text-zinc-100 transition-colors", children: link.label }) }, link.href))) }), _jsxs(Div, { className: "hidden sm:block", children: [_jsx(Text, { className: "text-xs font-semibold uppercase tracking-wider text-zinc-500 dark:text-zinc-400 mb-3", children: group.heading }), _jsx(Ul, { className: "space-y-2.5", children: group.links.map((link) => (_jsx(Li, { children: _jsx(Link, { href: link.href, className: "text-sm text-zinc-600 dark:text-zinc-400 hover:text-zinc-900 dark:hover:text-zinc-100 transition-colors", children: link.label }) }, link.href))) })] })] }, idx))) })] }), _jsxs(Div, { className: "mt-10 pt-6 border-t border-zinc-200 dark:border-slate-800 flex flex-col sm:flex-row items-center justify-between gap-3 text-xs text-zinc-600 dark:text-zinc-400", children: [_jsx(Text, { className: "text-xs text-zinc-600 dark:text-zinc-400", children: copyrightText }), madeInText && (_jsx(Text, { className: "text-xs text-zinc-600 dark:text-zinc-400", children: madeInText }))] })] })] }));
11
+ return (_jsxs(BlockFooter, { id: id, className: "bg-zinc-50 dark:bg-slate-950 border-t border-zinc-200 dark:border-slate-800", children: [showTrustBar && visibleTrustItems.length > 0 && (_jsx(Div, { className: "border-b border-zinc-100 dark:border-slate-800 py-8", children: _jsx(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px]", children: _jsx(Row, { as: "ul", wrap: true, justify: "center", gap: "lg", className: "lg:gap-10", children: visibleTrustItems.map((item, i) => (_jsx(Li, { children: _jsxs(Row, { gap: "sm", className: "text-sm min-w-[160px]", children: [_jsx(Span, { className: "flex-shrink-0 text-primary-600 dark:text-secondary-400 w-5 h-5", children: item.icon }), _jsxs(Span, { children: [_jsx(Span, { className: "font-bold text-zinc-900 dark:text-zinc-100 block text-sm", children: item.label }), item.subtitle && (_jsx(Span, { className: "text-zinc-500 dark:text-zinc-400 text-xs block", children: item.subtitle }))] })] }) }, item.id ?? String(i)))) }) }) })), _jsxs(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px] py-10 lg:py-14", children: [_jsxs(Div, { className: "grid grid-cols-1 lg:grid-cols-5 gap-10 lg:gap-16", children: [_jsxs(Div, { className: "lg:col-span-2 space-y-4", children: [_jsx(Heading, { level: 5, className: "text-zinc-900 dark:text-zinc-50 font-bold text-xl", children: brandName }), _jsx(Text, { className: "text-sm text-zinc-600 dark:text-zinc-400 leading-relaxed max-w-sm", children: brandDescription }), socialLinks.length > 0 && (_jsx(Row, { as: Ul, gap: "sm", children: socialLinks.map((link) => (_jsx(Li, { children: _jsx(Link, { href: link.href, "aria-label": link.ariaLabel, target: "_blank", rel: "noopener noreferrer", className: "flex items-center justify-center w-9 h-9 rounded-full border border-zinc-200 dark:border-slate-700 text-zinc-500 dark:text-zinc-400 hover:text-primary dark:hover:text-secondary hover:border-primary/40 dark:hover:border-secondary/40 transition-colors", children: link.icon }) }, link.platform))) })), newsletterEnabled && newsletterSlot && (_jsx(Div, { className: "pt-2", children: newsletterSlot }))] }), _jsx(Div, { className: `lg:col-span-3 grid grid-cols-1 gap-0 lg:gap-8 ${linkGroups.length <= 3 ? "lg:grid-cols-3" :
12
+ linkGroups.length === 4 ? "lg:grid-cols-4" :
13
+ "lg:grid-cols-5"}`, children: linkGroups.map((group, idx) => (_jsxs(Div, { children: [_jsxs("button", { type: "button", onClick: () => toggleGroup(idx), className: "flex w-full items-center justify-between border-b border-zinc-200 py-3 text-left text-sm font-semibold text-zinc-800 transition-colors hover:text-zinc-950 dark:border-slate-800 dark:text-zinc-100 dark:hover:text-white lg:hidden", "aria-expanded": !!openGroups[idx], children: [group.heading, _jsx(ChevronDown, { className: `w-4 h-4 transition-transform duration-200 ${openGroups[idx] ? "rotate-180" : ""}` })] }), _jsx(Ul, { className: `lg:hidden overflow-hidden transition-all duration-200 ${openGroups[idx] ? "max-h-96 py-3" : "max-h-0"} space-y-2.5`, children: group.links.map((link) => (_jsx(Li, { children: _jsx(Link, { href: link.href, className: "text-sm text-zinc-500 dark:text-zinc-400 hover:text-primary dark:hover:text-secondary transition-colors", children: link.label }) }, link.href))) }), _jsxs(Div, { className: "hidden lg:block", children: [_jsx(Text, { className: "text-xs font-semibold uppercase tracking-wider text-zinc-500 dark:text-zinc-400 mb-3", children: group.heading }), _jsx(Ul, { className: "space-y-2.5", children: group.links.map((link) => (_jsx(Li, { children: _jsx(Link, { href: link.href, className: "text-sm text-zinc-500 dark:text-zinc-400 hover:text-primary dark:hover:text-secondary transition-colors", children: link.label }) }, link.href))) })] })] }, idx))) })] }), _jsxs(Div, { className: "mt-10 pt-6 border-t border-zinc-200 dark:border-slate-800 flex flex-col sm:flex-row items-center justify-between gap-3 text-xs text-zinc-600 dark:text-zinc-400", children: [_jsx(Text, { className: "text-xs text-zinc-600 dark:text-zinc-400", children: copyrightText }), madeInText && (_jsx(Text, { className: "text-xs text-zinc-600 dark:text-zinc-400", children: madeInText }))] })] })] }));
12
14
  }
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
3
2
  export function LayoutClient({ children, providers = [], renderShell, }) {
4
3
  const withProviders = providers.reduceRight((acc, Provider) => _jsx(Provider, { children: acc }), children);
@@ -1,4 +1,3 @@
1
- import "client-only";
2
1
  import { type ReactNode } from "react";
3
2
  export interface ListingLayoutLabels {
4
3
  filtersTitle?: string;
@@ -1,6 +1,5 @@
1
1
  "use client";
2
2
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
3
- import "client-only";
4
3
  import { useEffect, useRef, useState } from "react";
5
4
  import { Aside, Button, Div, Nav, Row, Span } from "../../ui";
6
5
  export function ListingLayout({ headerSlot, statusTabsSlot, filterContent, filterActiveCount = 0, onFilterApply, onFilterClear, filterTitle, activeFiltersSlot, searchSlot, sortSlot, viewToggleSlot, actionsSlot, selectedCount = 0, toolbarPaginationSlot, paginationSlot, children, defaultSidebarOpen = false, className = "", errorSlot, isDashboard = false, labels, bulkActionBarSlot, }) {
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import { Select } from "../../ui";
4
3
  /**
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import Link from "next/link";
4
3
  import { Row, Span } from "../../ui";
@@ -10,12 +9,12 @@ export function NavItem({ href, label, icon, isActive = false, variant = "horizo
10
9
  const stateClass = isActive ? activeClassName : inactiveClassName;
11
10
  if (variant === "vertical") {
12
11
  return (_jsxs(Link, { href: href, className: [
13
- "relative flex flex-col items-center gap-1 py-2 transition-colors",
12
+ "relative flex h-full w-full flex-col items-center justify-center gap-1 py-1 text-center transition-colors",
14
13
  stateClass,
15
14
  className,
16
15
  ]
17
16
  .filter(Boolean)
18
- .join(" "), children: [isActive && (_jsx(Span, { className: "absolute inset-0 rounded-t-xl bg-gradient-to-b from-primary/10 to-transparent pointer-events-none", "aria-hidden": true })), _jsx(Row, { className: ["relative", iconClassName].join(" "), children: icon }), _jsx(Span, { className: ["relative", labelClassName].join(" "), children: label })] }));
17
+ .join(" "), children: [isActive && (_jsx(Span, { className: "absolute inset-0 rounded-t-xl bg-gradient-to-b from-primary/10 to-transparent pointer-events-none", "aria-hidden": true })), _jsx(Row, { className: ["relative", iconClassName].join(" "), children: icon }), _jsx(Span, { className: ["relative whitespace-nowrap", labelClassName].join(" "), children: label })] }));
19
18
  }
20
19
  if (highlighted) {
21
20
  return (_jsxs(Link, { href: href, className: [
@@ -3,10 +3,10 @@ import Link from "next/link";
3
3
  import { Div, Li, Nav, Span, Ul } from "../../ui";
4
4
  function DefaultNavItem({ item, isActive, }) {
5
5
  const activeClasses = item.highlighted
6
- ? "border border-primary-500/30 dark:border-secondary-400/30 text-primary-600 dark:text-secondary-400 bg-primary-50/60 dark:bg-secondary-900/30 px-3"
6
+ ? "border border-primary-400/40 dark:border-secondary-400/30 text-primary-700 dark:text-secondary-400 bg-primary-50/80 dark:bg-secondary-900/30 px-3"
7
7
  : isActive
8
- ? "bg-zinc-100 dark:bg-slate-800 text-zinc-900 dark:text-zinc-50 font-semibold px-3"
9
- : "text-zinc-600 dark:text-zinc-400 hover:bg-zinc-100 dark:hover:bg-slate-800 hover:text-zinc-900 dark:hover:text-zinc-50 transition-colors px-3";
8
+ ? "bg-primary-50 dark:bg-secondary-900/20 text-primary-800 dark:text-secondary-300 font-semibold px-3 border-b-2 border-primary dark:border-secondary rounded-none pb-[6px]"
9
+ : "text-zinc-700 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 hover:text-zinc-950 dark:hover:text-white transition-colors px-3";
10
10
  return (_jsxs(Link, { href: item.href, "aria-current": isActive ? "page" : undefined, className: `flex items-center gap-1.5 py-2 text-sm rounded-lg font-medium transition-colors duration-150 ${activeClasses}`, children: [item.icon, _jsx(Span, { children: item.label })] }));
11
11
  }
12
12
  /**
@@ -19,5 +19,5 @@ export function NavbarLayout({ items, activeHref, id = "main-navbar", ariaLabel
19
19
  if (inline) {
20
20
  return (_jsx(Ul, { "aria-label": ariaLabel, className: "hidden xl:flex items-center gap-0.5 xl:gap-1", children: items.map((item) => (_jsx(Li, { children: renderItem ? (renderItem(item, activeHref === item.href)) : (_jsx(DefaultNavItem, { item: item, isActive: activeHref === item.href })) }, item.href))) }));
21
21
  }
22
- return (_jsx(Nav, { id: id, "aria-label": ariaLabel, className: "hidden xl:block bg-white/90 dark:bg-slate-950/90 backdrop-blur-md border-b border-zinc-200/80 dark:border-slate-800/80", children: _jsx(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px]", children: _jsx(Ul, { className: "flex items-center gap-0.5 lg:gap-1 h-10 md:h-12", children: items.map((item) => (_jsx(Li, { children: renderItem ? (renderItem(item, activeHref === item.href)) : (_jsx(DefaultNavItem, { item: item, isActive: activeHref === item.href })) }, item.href))) }) }) }));
22
+ return (_jsx(Nav, { id: id, "aria-label": ariaLabel, className: "hidden lg:block bg-white/95 dark:bg-slate-950/95 backdrop-blur-md border-b border-zinc-100 dark:border-slate-800", children: _jsx(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px]", children: _jsx(Ul, { className: "flex items-center gap-0.5 lg:gap-1 h-10", children: items.map((item) => (_jsx(Li, { children: renderItem ? (renderItem(item, activeHref === item.href)) : (_jsx(DefaultNavItem, { item: item, isActive: activeHref === item.href })) }, item.href))) }) }) }));
23
23
  }
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
3
2
  import { forwardRef } from "react";
4
3
  import { Aside, Div } from "../../ui";
@@ -1,10 +1,12 @@
1
1
  import type { TitleBarLayoutProps } from "./TitleBarLayout";
2
- export interface TitleBarProps extends Omit<TitleBarLayoutProps, "cartCount" | "hasDashboardNav" | "onOpenDashboardNav"> {
2
+ export interface TitleBarProps extends Omit<TitleBarLayoutProps, "cartCount" | "hasDashboardNav" | "onToggleDashboardNav"> {
3
3
  /**
4
4
  * When true, hides the dashboard nav PanelLeft button so that nested
5
5
  * admin/seller/user layouts can own their sidebar controls exclusively.
6
6
  */
7
7
  suppressDashboardNav?: boolean;
8
+ /** Optional hook invoked immediately before toggling the dashboard nav drawer. */
9
+ onBeforeToggleDashboardNav?: () => void;
8
10
  }
9
11
  /**
10
12
  * TitleBar � domain shell over TitleBarLayout.
@@ -15,4 +17,4 @@ export interface TitleBarProps extends Omit<TitleBarLayoutProps, "cartCount" | "
15
17
  * Wrap with `DashboardNavProvider` at the app root to enable the
16
18
  * dashboard nav button in nested admin/seller/user routes.
17
19
  */
18
- export declare function TitleBar({ suppressDashboardNav, ...rest }: TitleBarProps): import("react/jsx-runtime").JSX.Element;
20
+ export declare function TitleBar({ suppressDashboardNav, onBeforeToggleDashboardNav, ...rest }: TitleBarProps): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx } from "react/jsx-runtime";
3
2
  import { useCartCount } from "../cart/hooks/useCartCount";
4
3
  import { useDashboardNav } from "./DashboardNavContext";
@@ -12,8 +11,13 @@ import { TitleBarLayout } from "./TitleBarLayout";
12
11
  * Wrap with `DashboardNavProvider` at the app root to enable the
13
12
  * dashboard nav button in nested admin/seller/user routes.
14
13
  */
15
- export function TitleBar({ suppressDashboardNav, ...rest }) {
14
+ export function TitleBar({ suppressDashboardNav, onBeforeToggleDashboardNav, ...rest }) {
16
15
  const cartCount = useCartCount();
17
- const { hasNav: hasDashboardNav, openNav: openDashboardNav } = useDashboardNav();
18
- return (_jsx(TitleBarLayout, { ...rest, cartCount: cartCount, hasDashboardNav: suppressDashboardNav ? false : hasDashboardNav, onOpenDashboardNav: suppressDashboardNav ? undefined : openDashboardNav, hideSidebarToggle: rest.hideSidebarToggle ?? suppressDashboardNav }));
16
+ const { hasNav: hasDashboardNav, toggleNav: toggleDashboardNav } = useDashboardNav();
17
+ return (_jsx(TitleBarLayout, { ...rest, cartCount: cartCount, hasDashboardNav: suppressDashboardNav ? false : hasDashboardNav, onToggleDashboardNav: suppressDashboardNav
18
+ ? undefined
19
+ : () => {
20
+ onBeforeToggleDashboardNav?.();
21
+ toggleDashboardNav();
22
+ }, hideSidebarToggle: rest.hideSidebarToggle ?? suppressDashboardNav }));
19
23
  }
@@ -16,6 +16,8 @@ export interface TitleBarLayoutProps {
16
16
  brandShortName?: string;
17
17
  logoHref: string;
18
18
  promotionsHref?: string;
19
+ /** Href for the compare page/drawer. When provided, renders a Compare icon button. */
20
+ compareHref?: string;
19
21
  cartHref?: string;
20
22
  cartCount?: number;
21
23
  profileHref?: string;
@@ -32,8 +34,8 @@ export interface TitleBarLayoutProps {
32
34
  onToggleTheme?: () => void;
33
35
  /** Whether a dashboard section has registered a secondary navigation drawer. */
34
36
  hasDashboardNav?: boolean;
35
- /** Callback to open the registered dashboard navigation drawer. */
36
- onOpenDashboardNav?: () => void;
37
+ /** Callback to toggle the registered dashboard navigation drawer. */
38
+ onToggleDashboardNav?: () => void;
37
39
  /** Hide the public sidebar toggle button when nested layouts own navigation. */
38
40
  hideSidebarToggle?: boolean;
39
41
  id?: string;
@@ -45,4 +47,4 @@ export interface TitleBarLayoutProps {
45
47
  * Receives all domain data as props — zero domain imports.
46
48
  * Domain shell reads useAuth() and SITE_CONFIG and passes values in.
47
49
  */
48
- export declare function TitleBarLayout({ onToggleSidebar, sidebarOpen, onSearchToggle, searchOpen, brandName, brandShortName, logoHref, promotionsHref, cartHref, cartCount, profileHref, user, notificationSlot, devSlot, navSlot, promoStripText, isDark, onToggleTheme, hasDashboardNav, onOpenDashboardNav, hideSidebarToggle, id, className, }: TitleBarLayoutProps): import("react/jsx-runtime").JSX.Element;
50
+ export declare function TitleBarLayout({ onToggleSidebar, sidebarOpen, onSearchToggle, searchOpen, brandName, brandShortName, logoHref, promotionsHref, compareHref, cartHref, cartCount, profileHref, user, notificationSlot, devSlot, navSlot, promoStripText, isDark, onToggleTheme, hasDashboardNav, onToggleDashboardNav, hideSidebarToggle, id, className, }: TitleBarLayoutProps): import("react/jsx-runtime").JSX.Element;
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx, Fragment as _Fragment, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import Image from "next/image";
4
3
  import Link from "next/link";
@@ -9,9 +8,9 @@ import { BlockHeader, Button, Div, Row, Span } from "../../ui";
9
8
  * Receives all domain data as props — zero domain imports.
10
9
  * Domain shell reads useAuth() and SITE_CONFIG and passes values in.
11
10
  */
12
- export function TitleBarLayout({ onToggleSidebar, sidebarOpen, onSearchToggle, searchOpen, brandName, brandShortName, logoHref, promotionsHref, cartHref, cartCount = 0, profileHref, user, notificationSlot, devSlot, navSlot, promoStripText, isDark = false, onToggleTheme, hasDashboardNav = false, onOpenDashboardNav, hideSidebarToggle = false, id = "titlebar", className = "", }) {
11
+ export function TitleBarLayout({ onToggleSidebar, sidebarOpen, onSearchToggle, searchOpen, brandName, brandShortName, logoHref, promotionsHref, compareHref, cartHref, cartCount = 0, profileHref, user, notificationSlot, devSlot, navSlot, promoStripText, isDark = false, onToggleTheme, hasDashboardNav = false, onToggleDashboardNav, hideSidebarToggle = false, id = "titlebar", className = "", }) {
13
12
  void searchOpen;
14
- return (_jsxs(BlockHeader, { id: id, className: `sticky top-0 z-50 bg-white/90 dark:bg-slate-950/90 backdrop-blur-md border-b border-zinc-200/80 dark:border-slate-800/80 ${className}`, children: [promoStripText && (_jsx(Div, { className: "bg-gradient-to-r from-primary-700 to-blue-700 dark:from-secondary-700 dark:to-blue-700 text-white text-xs py-1 text-center font-medium", children: promoStripText })), _jsx(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px]", children: _jsxs(Row, { justify: "between", gap: "none", className: "h-12", children: [_jsxs(Row, { gap: "3", children: [!hideSidebarToggle && (_jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": sidebarOpen ? "Close menu" : "Open menu", "aria-expanded": sidebarOpen, "aria-controls": "secondary-sidebar", onClick: onToggleSidebar, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: sidebarOpen ? (_jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" })) : (_jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h16" })) }) })), hasDashboardNav && onOpenDashboardNav && (_jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": "Open dashboard navigation", onClick: onOpenDashboardNav, className: "hidden md:flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h16" }) }) })), _jsx(Link, { href: logoHref, className: "font-bold text-lg text-zinc-900 dark:text-zinc-50 hover:opacity-80 transition-opacity", children: brandShortName ? (_jsxs(_Fragment, { children: [_jsx(Span, { className: "md:hidden", children: brandShortName }), _jsx(Span, { className: "hidden md:inline", children: brandName })] })) : (brandName) })] }), navSlot && _jsx(Div, { className: "hidden md:flex", children: navSlot }), _jsxs(Row, { gap: "xs", children: [promotionsHref && (_jsx(Link, { href: promotionsHref, "aria-label": "Today's deals", className: "hidden lg:flex items-center px-2.5 py-1.5 rounded-lg text-xs font-semibold text-pink-600 dark:text-pink-400 hover:bg-pink-50 dark:hover:bg-pink-950/30 transition-colors", children: "Deals" })), _jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": "Search", onClick: onSearchToggle, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 21l-4.35-4.35M17 11A6 6 0 1 1 5 11a6 6 0 0 1 12 0z" }) }) }), notificationSlot, devSlot, onToggleTheme && (_jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": isDark ? "Switch to light mode" : "Switch to dark mode", onClick: onToggleTheme, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 transition-colors", children: isDark ? (_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 3v1m0 16v1m8.66-9h-1M4.34 12h-1m15.07-6.07-.71.71M6.34 17.66l-.71.71m12.73 0-.71-.71M6.34 6.34l-.71-.71M12 5a7 7 0 1 0 0 14A7 7 0 0 0 12 5z" }) })) : (_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12.79A9 9 0 1 1 11.21 3a7 7 0 1 0 9.79 9.79z" }) })) })), cartHref && (_jsxs(Link, { href: cartHref, "aria-label": `Cart${cartCount > 0 ? `, ${cartCount} items` : ""}`, className: "relative flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 transition-colors", children: [_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0z" }) }), cartCount > 0 && (_jsx(Span, { className: "absolute -top-0.5 -right-0.5 flex items-center justify-center w-4 h-4 rounded-full bg-red-500 text-white text-[10px] font-bold leading-none", children: cartCount > 9 ? "9+" : cartCount }))] })), profileHref && (_jsx(Link, { href: profileHref, "aria-label": user
13
+ return (_jsxs(BlockHeader, { id: id, className: `sticky top-0 z-50 bg-white/95 dark:bg-slate-950/95 backdrop-blur-md border-b border-zinc-100 dark:border-slate-800 shadow-sm ${className}`, children: [promoStripText && (_jsx(Div, { className: "bg-gradient-to-r from-primary-700 to-blue-700 dark:from-secondary-700 dark:to-blue-700 text-white text-xs py-1 text-center font-medium", children: promoStripText })), _jsx(Div, { className: "container mx-auto px-4 sm:px-6 lg:px-8 max-w-[1920px]", children: _jsxs(Row, { justify: "between", gap: "none", className: "h-14", children: [_jsxs(Row, { gap: "3", children: [hasDashboardNav && onToggleDashboardNav && (_jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": "Toggle dashboard navigation", onClick: onToggleDashboardNav, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h16" }) }) })), _jsx(Link, { href: logoHref, className: "font-bold text-xl tracking-tight text-zinc-900 dark:text-zinc-50 hover:text-primary dark:hover:text-secondary transition-colors", children: brandShortName ? (_jsxs(_Fragment, { children: [_jsx(Span, { className: "md:hidden", children: brandShortName }), _jsx(Span, { className: "hidden md:inline", children: brandName })] })) : (brandName) })] }), navSlot && _jsx(Div, { className: "hidden md:flex", children: navSlot }), _jsxs(Row, { gap: "xs", children: [promotionsHref && (_jsxs(Link, { href: promotionsHref, "aria-label": "Today's deals", className: "hidden lg:flex items-center gap-1 px-3 py-1 rounded-full text-xs font-bold bg-primary-100 text-primary-700 dark:bg-secondary-900/40 dark:text-secondary-400 hover:bg-primary-200 dark:hover:bg-secondary-900/60 transition-colors border border-primary-200/60 dark:border-secondary-700/40", children: [_jsx("svg", { className: "w-3 h-3", viewBox: "0 0 24 24", fill: "currentColor", "aria-hidden": "true", children: _jsx("path", { d: "M21.41 11.58l-9-9C12.05 2.22 11.55 2 11 2H4c-1.1 0-2 .9-2 2v7c0 .55.22 1.05.59 1.42l9 9c.36.37.86.58 1.41.58.55 0 1.05-.21 1.41-.59l7-7c.37-.36.59-.86.59-1.41 0-.55-.23-1.06-.59-1.42zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" }) }), "Today's Deals"] })), compareHref && (_jsx(Link, { href: compareHref, "aria-label": "Compare items", className: "hidden lg:flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" }) }) })), _jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": "Search", onClick: onSearchToggle, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 21l-4.35-4.35M17 11A6 6 0 1 1 5 11a6 6 0 0 1 12 0z" }) }) }), notificationSlot, devSlot, onToggleTheme && (_jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": isDark ? "Switch to light mode" : "Switch to dark mode", onClick: onToggleTheme, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: isDark ? (_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M12 3v1m0 16v1m8.66-9h-1M4.34 12h-1m15.07-6.07-.71.71M6.34 17.66l-.71.71m12.73 0-.71-.71M6.34 6.34l-.71-.71M12 5a7 7 0 1 0 0 14A7 7 0 0 0 12 5z" }) })) : (_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M21 12.79A9 9 0 1 1 11.21 3a7 7 0 1 0 9.79 9.79z" }) })) })), cartHref && (_jsxs(Link, { href: cartHref, "aria-label": `Cart${cartCount > 0 ? `, ${cartCount} items` : ""}`, className: "relative flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: [_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M2.25 3h1.386c.51 0 .955.343 1.087.835l.383 1.437M7.5 14.25a3 3 0 0 0-3 3h15.75m-12.75-3h11.218c1.121-2.3 2.1-4.684 2.924-7.138a60.114 60.114 0 0 0-16.536-1.84M7.5 14.25 5.106 5.272M6 20.25a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0zm12.75 0a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0z" }) }), cartCount > 0 && (_jsx(Span, { className: "absolute -top-0.5 -right-0.5 flex items-center justify-center w-4 h-4 rounded-full bg-red-500 text-white text-[10px] font-bold leading-none", children: cartCount > 9 ? "9+" : cartCount }))] })), !hideSidebarToggle && (_jsx(Button, { type: "button", variant: "ghost", size: "sm", "aria-label": sidebarOpen ? "Close menu" : "Open menu", "aria-expanded": sidebarOpen, "aria-controls": "secondary-sidebar", onClick: onToggleSidebar, className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: _jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: sidebarOpen ? (_jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M6 18L18 6M6 6l12 12" })) : (_jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M4 6h16M4 12h16M4 18h16" })) }) })), profileHref && (_jsx(Link, { href: profileHref, "aria-label": user
15
14
  ? `Profile — ${user.displayName ?? user.email}`
16
- : "Sign in", className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-300 hover:bg-zinc-100 dark:hover:bg-slate-800 transition-colors", children: user?.photoURL ? (_jsx(Image, { src: user.photoURL, alt: user.displayName ?? "Profile", width: 28, height: 28, className: "w-7 h-7 rounded-full object-cover" })) : (_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0zM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632z" }) })) }))] })] }) })] }));
15
+ : "Sign in", className: "flex items-center justify-center w-9 h-9 rounded-lg text-zinc-600 dark:text-zinc-400 hover:bg-primary-50 hover:text-primary-700 dark:hover:bg-slate-800 dark:hover:text-secondary-400 transition-colors", children: user?.photoURL ? (_jsx(Image, { src: user.photoURL, alt: user.displayName ?? "Profile", width: 28, height: 28, className: "w-7 h-7 rounded-full object-cover" })) : (_jsx("svg", { className: "w-5 h-5", fill: "none", stroke: "currentColor", viewBox: "0 0 24 24", "aria-hidden": "true", children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: 2, d: "M15.75 6a3.75 3.75 0 1 1-7.5 0 3.75 3.75 0 0 1 7.5 0zM4.501 20.118a7.5 7.5 0 0 1 14.998 0A17.933 17.933 0 0 1 12 21.75c-2.676 0-5.216-.584-7.499-1.632z" }) })) }))] })] }) })] }));
17
16
  }
@@ -26,6 +26,8 @@ export { ListingLayout } from "./ListingLayout";
26
26
  export type { ListingLayoutProps, ListingLayoutLabels } from "./ListingLayout";
27
27
  export { LayoutClient } from "./LayoutClient";
28
28
  export type { LayoutClientProps, LayoutProvider } from "./LayoutClient";
29
+ export { AppLayoutShell } from "./AppLayoutShell";
30
+ export type { AppLayoutShellProps } from "./AppLayoutShell";
29
31
  export { BottomActionsProvider, useBottomActionsContext, } from "./BottomActionsContext";
30
32
  export type { BottomAction, BottomBulkConfig, BottomActionsState, } from "./BottomActionsContext";
31
33
  export { useBottomActions } from "./hooks/useBottomActions";
@@ -14,6 +14,7 @@ export { LocaleSwitcher } from "./LocaleSwitcher";
14
14
  export { BackToTop, SkipToMain } from "./BackToTop";
15
15
  export { ListingLayout } from "./ListingLayout";
16
16
  export { LayoutClient } from "./LayoutClient";
17
+ export { AppLayoutShell } from "./AppLayoutShell";
17
18
  export { BottomActionsProvider, useBottomActionsContext, } from "./BottomActionsContext";
18
19
  export { useBottomActions } from "./hooks/useBottomActions";
19
20
  export { default as BottomActions } from "./BottomActions";
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import { Div, Span, Text } from "../../../ui";
4
3
  export function CoinsBadge({ coins, className }) {
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { useQuery } from "@tanstack/react-query";
3
2
  import { LOYALTY_ENDPOINTS } from "../../../constants/api-endpoints";
4
3
  export function useLoyaltyBalance(uid, opts) {
@@ -9,12 +9,12 @@ export declare const coinHistoryEntrySchema: z.ZodObject<{
9
9
  orderId: z.ZodOptional<z.ZodString>;
10
10
  timestamp: z.ZodOptional<z.ZodString>;
11
11
  }, "strip", z.ZodTypeAny, {
12
- reason: "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit" | "expiry";
12
+ reason: "expiry" | "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit";
13
13
  delta: number;
14
14
  orderId?: string | undefined;
15
15
  timestamp?: string | undefined;
16
16
  }, {
17
- reason: "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit" | "expiry";
17
+ reason: "expiry" | "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit";
18
18
  delta: number;
19
19
  orderId?: string | undefined;
20
20
  timestamp?: string | undefined;
@@ -38,12 +38,12 @@ export declare const loyaltyBalanceSchema: z.ZodObject<{
38
38
  orderId: z.ZodOptional<z.ZodString>;
39
39
  timestamp: z.ZodOptional<z.ZodString>;
40
40
  }, "strip", z.ZodTypeAny, {
41
- reason: "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit" | "expiry";
41
+ reason: "expiry" | "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit";
42
42
  delta: number;
43
43
  orderId?: string | undefined;
44
44
  timestamp?: string | undefined;
45
45
  }, {
46
- reason: "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit" | "expiry";
46
+ reason: "expiry" | "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit";
47
47
  delta: number;
48
48
  orderId?: string | undefined;
49
49
  timestamp?: string | undefined;
@@ -52,7 +52,7 @@ export declare const loyaltyBalanceSchema: z.ZodObject<{
52
52
  uid: string;
53
53
  hcCoins: number;
54
54
  coinHistory?: {
55
- reason: "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit" | "expiry";
55
+ reason: "expiry" | "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit";
56
56
  delta: number;
57
57
  orderId?: string | undefined;
58
58
  timestamp?: string | undefined;
@@ -61,7 +61,7 @@ export declare const loyaltyBalanceSchema: z.ZodObject<{
61
61
  uid: string;
62
62
  hcCoins?: number | undefined;
63
63
  coinHistory?: {
64
- reason: "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit" | "expiry";
64
+ reason: "expiry" | "redemption" | "order_reward" | "referral" | "review_reward" | "manual_credit" | "manual_debit";
65
65
  delta: number;
66
66
  orderId?: string | undefined;
67
67
  timestamp?: string | undefined;
@@ -3,5 +3,4 @@
3
3
  *
4
4
  * Server-only entry point for loyalty repositories.
5
5
  */
6
- import "server-only";
7
6
  export { LoyaltyRepository } from "./repository/loyalty.repository";
@@ -3,5 +3,4 @@
3
3
  *
4
4
  * Server-only entry point for loyalty repositories.
5
5
  */
6
- import "server-only";
7
6
  export { LoyaltyRepository } from "./repository/loyalty.repository";
@@ -128,6 +128,6 @@ export function AvatarUpload({ currentPhotoURL, currentCropData, userId, display
128
128
  fileInputRef.current.value = "";
129
129
  };
130
130
  const hasPending = pendingCropData !== null && pendingUploadFile !== null;
131
- return (_jsxs(_Fragment, { children: [_jsxs("div", { className: "space-y-4", children: [_jsxs("div", { className: "flex items-start gap-6", children: [_jsx("div", { className: "shrink-0", children: _jsx(AvatarDisplay, { cropData: hasPending ? pendingCropData : cropData, size: "2xl", className: `border-4 ${hasPending ? "border-primary/60 ring-2 ring-primary/20" : "border-zinc-200 dark:border-slate-700"}`, displayName: displayName }) }), _jsxs("div", { className: "flex-1 space-y-3", children: [_jsx(Text, { variant: "secondary", className: "text-xs", children: "JPG, PNG, WEBP or GIF up to 10MB." }), isUploading ? (_jsx(Progress, { value: 50, variant: "primary", size: "sm", label: t.uploading })) : null, hasPending && !isUploading ? (_jsxs("div", { className: "space-y-2", children: [_jsx(Text, { variant: "secondary", className: "text-xs text-primary", children: t.readyToSave }), _jsxs("div", { className: "flex gap-3", children: [_jsx(Button, { type: "button", onClick: handleConfirmSave, size: "sm", children: t.saveAvatar }), _jsx(Button, { type: "button", variant: "secondary", size: "sm", onClick: handleCancelPending, children: t.cancelChange })] })] })) : null, !hasPending && !isUploading ? (_jsxs("div", { className: "flex gap-3", children: [_jsx(Button, { type: "button", onClick: () => fileInputRef.current?.click(), size: "sm", children: previewUrl ? t.changePhoto : t.chooseImage }), previewUrl ? (_jsx(Button, { type: "button", variant: "secondary", size: "sm", onClick: handleRemovePhoto, children: t.removePhoto })) : null] })) : null, _jsx(Input, { ref: fileInputRef, bare: true, type: "file", accept: "image/jpeg,image/png,image/webp,image/gif", onChange: handleFileSelect, className: "hidden", "aria-label": t.changePhoto })] })] }), uploadApiError ? (_jsx(Alert, { variant: "error", children: uploadApiError.message })) : null] }), showCropModal && tempImageUrl ? (_jsx(ImageCropModal, { isOpen: showCropModal, imageUrl: tempImageUrl, onClose: handleCropCancel, onSave: handleCropSave, initialCropData: cropData || undefined })) : null] }));
131
+ return (_jsxs(_Fragment, { children: [_jsxs("div", { className: "space-y-4", "data-section": "avatarupload-div-404", children: [_jsxs("div", { className: "flex items-start gap-6", "data-section": "avatarupload-div-405", children: [_jsx("div", { className: "shrink-0", "data-section": "avatarupload-div-406", children: _jsx(AvatarDisplay, { cropData: hasPending ? pendingCropData : cropData, size: "2xl", className: `border-4 ${hasPending ? "border-primary/60 ring-2 ring-primary/20" : "border-zinc-200 dark:border-slate-700"}`, displayName: displayName }) }), _jsxs("div", { className: "flex-1 space-y-3", "data-section": "avatarupload-div-407", children: [_jsx(Text, { variant: "secondary", className: "text-xs", children: "JPG, PNG, WEBP or GIF up to 10MB." }), isUploading ? (_jsx(Progress, { value: 50, variant: "primary", size: "sm", label: t.uploading })) : null, hasPending && !isUploading ? (_jsxs("div", { className: "space-y-2", "data-section": "avatarupload-div-408", children: [_jsx(Text, { variant: "secondary", className: "text-xs text-primary", children: t.readyToSave }), _jsxs("div", { className: "flex gap-3", "data-section": "avatarupload-div-409", children: [_jsx(Button, { type: "button", onClick: handleConfirmSave, size: "sm", children: t.saveAvatar }), _jsx(Button, { type: "button", variant: "secondary", size: "sm", onClick: handleCancelPending, children: t.cancelChange })] })] })) : null, !hasPending && !isUploading ? (_jsxs("div", { className: "flex gap-3", "data-section": "avatarupload-div-410", children: [_jsx(Button, { type: "button", onClick: () => fileInputRef.current?.click(), size: "sm", children: previewUrl ? t.changePhoto : t.chooseImage }), previewUrl ? (_jsx(Button, { type: "button", variant: "secondary", size: "sm", onClick: handleRemovePhoto, children: t.removePhoto })) : null] })) : null, _jsx(Input, { ref: fileInputRef, bare: true, type: "file", accept: "image/jpeg,image/png,image/webp,image/gif", onChange: handleFileSelect, className: "hidden", "aria-label": t.changePhoto })] })] }), uploadApiError ? (_jsx(Alert, { variant: "error", children: uploadApiError.message })) : null] }), showCropModal && tempImageUrl ? (_jsx(ImageCropModal, { isOpen: showCropModal, imageUrl: tempImageUrl, onClose: handleCropCancel, onSave: handleCropSave, initialCropData: cropData || undefined })) : null] }));
132
132
  }
133
133
  export default AvatarUpload;
@@ -11,6 +11,8 @@ export interface MediaImageProps {
11
11
  size?: MediaImageSize;
12
12
  /** Pass `true` for above-the-fold hero / banner images to skip lazy loading. */
13
13
  priority?: boolean;
14
+ /** Override browser loading strategy when needed (`eager` for LCP images). */
15
+ loading?: "lazy" | "eager";
14
16
  /** CSS object-fit applied to the underlying img element. Defaults to `'cover'`. */
15
17
  objectFit?: "cover" | "contain";
16
18
  /**
@@ -24,5 +26,5 @@ export interface MediaImageProps {
24
26
  */
25
27
  className?: string;
26
28
  }
27
- export declare function MediaImage({ src, alt, size, priority, objectFit, fallback, className, }: MediaImageProps): import("react/jsx-runtime").JSX.Element;
29
+ export declare function MediaImage({ src, alt, size, priority, loading, objectFit, fallback, className, }: MediaImageProps): import("react/jsx-runtime").JSX.Element;
28
30
  export default MediaImage;
@@ -6,8 +6,12 @@ import { Div, Span } from "../../ui";
6
6
  const SIZE_HINTS = {
7
7
  thumbnail: "(max-width: 640px) 80px, (max-width: 1024px) 96px, 112px",
8
8
  card: "(max-width: 640px) 50vw, (max-width: 1024px) 33vw, 25vw",
9
- hero: "100vw",
10
- banner: "100vw",
9
+ // Use a constrained fallback instead of unconditional 100vw to avoid
10
+ // the Next.js runtime warning when `fill` is used inside non-viewport
11
+ // width containers (cards, sliders). This still provides a helpful
12
+ // responsive hint while avoiding false-positive perf warnings.
13
+ hero: "(max-width: 768px) 100vw, 1200px",
14
+ banner: "(max-width: 768px) 100vw, 1200px",
11
15
  gallery: "(max-width: 640px) 100vw, (max-width: 1024px) 50vw, 33vw",
12
16
  avatar: "(max-width: 640px) 48px, 56px",
13
17
  };
@@ -19,17 +23,17 @@ const FALLBACK_ICONS = {
19
23
  gallery: "📦",
20
24
  avatar: "👤",
21
25
  };
22
- export function MediaImage({ src, alt, size = "card", priority = false, objectFit = "cover", fallback, className, }) {
26
+ export function MediaImage({ src, alt, size = "card", priority = false, loading, objectFit = "cover", fallback, className, }) {
23
27
  const [hasError, setHasError] = useState(false);
24
28
  const [isLoaded, setIsLoaded] = useState(false);
25
29
  const icon = fallback ?? FALLBACK_ICONS[size];
26
30
  const fitClass = objectFit === "contain" ? "object-contain" : "object-cover";
27
31
  if (!src || hasError) {
28
- return (_jsx(Div, { className: `absolute inset-0 flex items-center justify-center bg-zinc-100 dark:bg-slate-800 text-zinc-400 text-4xl${className ? ` ${className}` : ""}`, role: "img", "aria-label": alt, children: _jsx(Span, { "aria-hidden": "true", children: icon }) }));
32
+ return (_jsx(Div, { className: `relative w-full h-full overflow-hidden flex items-center justify-center bg-zinc-100 dark:bg-slate-800 text-zinc-400 text-4xl${className ? ` ${className}` : ""}`, role: "img", "aria-label": alt, children: _jsx(Span, { "aria-hidden": "true", children: icon }) }));
29
33
  }
30
34
  const isSvg = src.toLowerCase().endsWith(".svg") ||
31
35
  src.includes("image/svg") ||
32
36
  /[./]svg(\?|$)/i.test(src);
33
- return (_jsxs(Div, { className: `absolute inset-0 overflow-hidden${className ? ` ${className}` : ""}`, children: [!isLoaded && (_jsx(Div, { className: "absolute inset-0 bg-zinc-200 dark:bg-slate-700 animate-pulse", "aria-hidden": "true" })), _jsx(Image, { src: src, alt: alt, fill: true, priority: priority, className: fitClass, sizes: SIZE_HINTS[size], onLoad: () => setIsLoaded(true), onError: () => setHasError(true), unoptimized: isSvg })] }));
37
+ return (_jsxs(Div, { className: `relative w-full h-full overflow-hidden${className ? ` ${className}` : ""}`, children: [!isLoaded && (_jsx(Div, { className: "absolute inset-0 bg-zinc-200 dark:bg-slate-700 animate-pulse", "aria-hidden": "true" })), _jsx(Image, { src: src, alt: alt, fill: true, priority: priority, loading: loading ?? (priority ? "eager" : "lazy"), className: fitClass, sizes: SIZE_HINTS[size], onLoad: () => setIsLoaded(true), onError: () => setHasError(true), unoptimized: isSvg })] }));
34
38
  }
35
39
  export default MediaImage;
@@ -1,4 +1,3 @@
1
- import "client-only";
2
1
  export interface LightboxItem {
3
2
  src: string;
4
3
  alt: string;
@@ -1,6 +1,5 @@
1
1
  "use client";
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
- import "client-only";
4
3
  import { useEffect, useCallback, useRef, useState } from "react";
5
4
  import { X, ZoomIn, ZoomOut, Maximize, Minimize, ChevronLeft, ChevronRight, RotateCcw, } from "lucide-react";
6
5
  import { MediaImage } from "./MediaImage";
@@ -26,7 +25,7 @@ function cn(...classes) {
26
25
  function IconBtn({ onClick, disabled, ariaLabel, ariaCurrent, className, children, }) {
27
26
  return (_jsx(Button, { type: "button", onClick: onClick, disabled: disabled, "aria-label": ariaLabel, "aria-current": ariaCurrent, className: cn("inline-flex items-center justify-center w-12 h-12 rounded-full bg-white/15 hover:bg-white/30 text-white border-0 active:scale-95 transition-colors disabled:opacity-30 disabled:cursor-not-allowed", className), children: children }));
28
27
  }
29
- // ─── MediaLightbox ────────────────────────────────────────────────────────────
28
+ // --- MediaLightbox ------------------------------------------------------------
30
29
  export function MediaLightbox({ items, initialIndex = 0, isOpen, onClose, labels, }) {
31
30
  const L = { ...DEFAULT_LABELS, ...labels };
32
31
  const containerRef = useRef(null);
@@ -1,3 +1,7 @@
1
+ /**
2
+ * MediaSlider — lightweight range-input wrapper used internally by media editing modals.
3
+ * No external dependencies beyond React and Tailwind.
4
+ */
1
5
  export interface MediaSliderProps {
2
6
  value?: number;
3
7
  min?: number;
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx } from "react/jsx-runtime";
3
2
  export function MediaSlider({ value, min = 0, max = 100, step = 1, onChange, onChangeEnd, className = "", }) {
4
3
  return (_jsx("input", { type: "range", min: min, max: max, step: step, value: value, onChange: (e) => onChange?.(parseFloat(e.target.value)), onMouseUp: (e) => onChangeEnd?.(parseFloat(e.target.value)), onTouchEnd: (e) => onChangeEnd?.(parseFloat(e.target.value)), className: [
@@ -1,3 +1,9 @@
1
+ /**
2
+ * useMedia — upload/crop/trim hooks for @mohasinac/feat-media.
3
+ *
4
+ * Wraps @mohasinac/http apiClient via TanStack Query mutations.
5
+ * Endpoint paths can be overridden per call for non-standard deployments.
6
+ */
1
7
  import type { MediaFilenameContext } from "../../../utils/id-generators";
2
8
  export interface MediaUploadResult {
3
9
  url: string;
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  /**
3
2
  * useMedia — upload/crop/trim hooks for @mohasinac/feat-media.
4
3
  *
@@ -8,7 +7,7 @@
8
7
  import { useMutation } from "@tanstack/react-query";
9
8
  import { apiClient } from "../../../http";
10
9
  import { MEDIA_ENDPOINTS } from "../../../constants/api-endpoints";
11
- // ─── Hooks ────────────────────────────────────────────────────────────────────
10
+ // --- Hooks --------------------------------------------------------------------
12
11
  /**
13
12
  * useMediaUpload — uploads a file via FormData to /api/media/upload.
14
13
  *
@@ -1,2 +1 @@
1
- import "server-only";
2
1
  export { extractStoragePathFromUrl, finalizeStagedMediaUrl, finalizeStagedMediaField, finalizeStagedMediaArray, finalizeStagedMediaObject, finalizeStagedMediaObjectArray, } from "./finalize";
@@ -1,2 +1 @@
1
- import "server-only";
2
1
  export { extractStoragePathFromUrl, finalizeStagedMediaUrl, finalizeStagedMediaField, finalizeStagedMediaArray, finalizeStagedMediaObject, finalizeStagedMediaObjectArray, } from "./finalize";
@@ -13,13 +13,13 @@ export declare const mediaFieldSchema: z.ZodObject<{
13
13
  alt: z.ZodOptional<z.ZodString>;
14
14
  thumbnailUrl: z.ZodOptional<z.ZodString>;
15
15
  }, "strip", z.ZodTypeAny, {
16
- type: "video" | "image" | "file";
17
16
  url: string;
17
+ type: "video" | "image" | "file";
18
18
  alt?: string | undefined;
19
19
  thumbnailUrl?: string | undefined;
20
20
  }, {
21
- type: "video" | "image" | "file";
22
21
  url: string;
22
+ type: "video" | "image" | "file";
23
23
  alt?: string | undefined;
24
24
  thumbnailUrl?: string | undefined;
25
25
  }>;
@@ -8,7 +8,6 @@
8
8
  * export { GET } from "@mohasinac/appkit/features/orders";
9
9
  * ```
10
10
  */
11
- import "server-only";
12
11
  import { NextResponse } from "next/server.js";
13
12
  export declare function GET(_request: Request, { params }: {
14
13
  params: {
@@ -8,7 +8,6 @@
8
8
  * export { GET } from "@mohasinac/appkit/features/orders";
9
9
  * ```
10
10
  */
11
- import "server-only";
12
11
  import { NextResponse } from "next/server.js";
13
12
  import { getTrackingInfo } from "../../../actions/order-actions";
14
13
  export async function GET(_request, { params }) {
@@ -1,4 +1,3 @@
1
- import "client-only";
2
1
  export interface MarketplaceOrderCardOrder {
3
2
  id: string;
4
3
  status: string;
@@ -1,6 +1,5 @@
1
1
  "use client";
2
2
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
- import "client-only";
4
3
  import { useCallback } from "react";
5
4
  import { Package } from "lucide-react";
6
5
  import { Button, Caption, Span, StatusBadge, Text, TextLink, } from "../../../ui";
@@ -46,7 +45,7 @@ export function MarketplaceOrderCard({ order, links, labels, className = "", var
46
45
  }, [orderId, isSelected, onSelect]);
47
46
  const isListVariant = variant === "list";
48
47
  const itemCount = order.items?.length ?? 0;
49
- return (_jsxs("div", { className: `relative overflow-hidden rounded-xl border border-zinc-200 bg-white transition-all duration-200 hover:shadow-md dark:border-slate-800 dark:bg-slate-900 ${isSelected ? "ring-2 ring-primary-500 dark:ring-primary-400" : ""} ${className}`, children: [selectable && (_jsx(Button, { variant: "ghost", "aria-label": isSelected ? "Deselect order" : "Select order", "aria-pressed": isSelected, onClick: handleSelect, className: `absolute top-3 left-3 z-10 h-6 w-6 cursor-pointer rounded-md border-2 p-0 shadow-md transition-colors ${isSelected ? "border-primary bg-primary" : "border-zinc-400 bg-white/95 hover:border-primary dark:border-slate-500 dark:bg-slate-800/95"}`, children: isSelected && (_jsx("svg", { className: "h-3.5 w-3.5 text-white", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", strokeWidth: 3, children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M5 13l4 4L19 7" }) })) })), _jsxs("div", { className: `flex gap-4 p-4 ${isListVariant ? "flex-row items-center justify-between" : "flex-col"}`, children: [_jsxs("div", { className: `flex items-start gap-3 ${selectable ? "pl-8" : ""} ${isListVariant ? "min-w-0 flex-1" : ""}`, children: [_jsx("div", { className: "flex h-10 w-10 flex-shrink-0 items-center justify-center rounded-lg bg-zinc-100 dark:bg-slate-800", children: _jsx(Package, { className: "h-5 w-5 text-zinc-500 dark:text-slate-400" }) }), _jsxs("div", { className: "min-w-0 space-y-1", children: [_jsx(TextLink, { href: detailHref, className: "leading-tight", children: _jsx(Text, { weight: "semibold", className: "truncate", children: order.productTitle ?? shortId }) }), _jsxs(Caption, { className: "font-mono text-xs", children: [mergedLabels.orderNumber, " ", shortId] }), _jsxs(Caption, { className: "text-xs", children: [mergedLabels.placedOn, " ", formatDate(order.orderDate)] }), itemCount > 1 && (_jsxs(Caption, { className: "text-xs", children: [mergedLabels.items, ": ", _jsx(Span, { weight: "medium", children: itemCount })] }))] })] }), _jsxs("div", { className: `flex ${isListVariant ? "flex-shrink-0 items-center gap-4" : "flex-col gap-3"}`, children: [_jsxs("div", { className: `flex ${isListVariant ? "items-center gap-4" : "flex-wrap items-center justify-between gap-3"}`, children: [_jsx(StatusBadge, { status: status, label: statusLabel }), _jsx(Text, { weight: "semibold", className: "tabular-nums", children: formatCurrency(order.totalPrice, order.currency) })] }), _jsxs("div", { className: "flex flex-wrap items-center gap-2", children: [(isShipped || isDelivered) &&
48
+ return (_jsxs("div", { className: `relative overflow-hidden rounded-xl border border-zinc-200 bg-white transition-all duration-200 hover:shadow-md dark:border-slate-800 dark:bg-slate-900 ${isSelected ? "ring-2 ring-primary-500 dark:ring-primary-400" : ""} ${className}`, "data-section": "marketplaceordercard-div-411", children: [selectable && (_jsx(Button, { variant: "ghost", "aria-label": isSelected ? "Deselect order" : "Select order", "aria-pressed": isSelected, onClick: handleSelect, className: `absolute top-3 left-3 z-10 h-6 w-6 cursor-pointer rounded-md border-2 p-0 shadow-md transition-colors ${isSelected ? "border-primary bg-primary" : "border-zinc-400 bg-white/95 hover:border-primary dark:border-slate-500 dark:bg-slate-800/95"}`, children: isSelected && (_jsx("svg", { className: "h-3.5 w-3.5 text-white", fill: "none", viewBox: "0 0 24 24", stroke: "currentColor", strokeWidth: 3, children: _jsx("path", { strokeLinecap: "round", strokeLinejoin: "round", d: "M5 13l4 4L19 7" }) })) })), _jsxs("div", { className: `flex gap-4 p-4 ${isListVariant ? "flex-row items-center justify-between" : "flex-col"}`, "data-section": "marketplaceordercard-div-412", children: [_jsxs("div", { className: `flex items-start gap-3 ${selectable ? "pl-8" : ""} ${isListVariant ? "min-w-0 flex-1" : ""}`, "data-section": "marketplaceordercard-div-413", children: [_jsx("div", { className: "flex h-10 w-10 flex-shrink-0 items-center justify-center rounded-lg bg-zinc-100 dark:bg-slate-800", "data-section": "marketplaceordercard-div-414", children: _jsx(Package, { className: "h-5 w-5 text-zinc-500 dark:text-slate-400" }) }), _jsxs("div", { className: "min-w-0 space-y-1", "data-section": "marketplaceordercard-div-415", children: [_jsx(TextLink, { href: detailHref, className: "leading-tight", children: _jsx(Text, { weight: "semibold", className: "truncate", children: order.productTitle ?? shortId }) }), _jsxs(Caption, { className: "font-mono text-xs", children: [mergedLabels.orderNumber, " ", shortId] }), _jsxs(Caption, { className: "text-xs", children: [mergedLabels.placedOn, " ", formatDate(order.orderDate)] }), itemCount > 1 && (_jsxs(Caption, { className: "text-xs", children: [mergedLabels.items, ": ", _jsx(Span, { weight: "medium", children: itemCount })] }))] })] }), _jsxs("div", { className: `flex ${isListVariant ? "flex-shrink-0 items-center gap-4" : "flex-col gap-3"}`, "data-section": "marketplaceordercard-div-416", children: [_jsxs("div", { className: `flex ${isListVariant ? "items-center gap-4" : "flex-wrap items-center justify-between gap-3"}`, "data-section": "marketplaceordercard-div-417", children: [_jsx(StatusBadge, { status: status, label: statusLabel }), _jsx(Text, { weight: "semibold", className: "tabular-nums", children: formatCurrency(order.totalPrice, order.currency) })] }), _jsxs("div", { className: "flex flex-wrap items-center gap-2", "data-section": "marketplaceordercard-div-418", children: [(isShipped || isDelivered) &&
50
49
  trackHref &&
51
50
  order.trackingNumber && (_jsx(Button, { variant: "ghost", size: "sm", className: "min-w-0 flex-1 px-2 text-xs", onClick: () => navigate(trackHref), children: mergedLabels.trackOrder })), isDelivered && reviewHref && (_jsx(Button, { variant: "outline", size: "sm", className: "min-w-0 flex-1 px-2 text-xs", onClick: () => navigate(reviewHref), children: mergedLabels.writeReview })), _jsx(Button, { variant: "secondary", size: "sm", className: "min-w-0 flex-1 px-2 text-xs", onClick: () => navigate(detailHref), children: mergedLabels.viewOrder })] })] })] })] }));
52
51
  }
@@ -1,4 +1,3 @@
1
- "use client";
2
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
2
  import { useTranslations } from "next-intl";
4
3
  import { FilterFacetSection } from "../../filters/FilterFacetSection";