@mohasinac/appkit 2.8.9 → 3.0.0

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 (1289) hide show
  1. package/dist/_internal/client/features/classified/ClassifiedDetailView.js +17 -4
  2. package/dist/_internal/client/features/digital-code/CodeRevealPanel.js +4 -2
  3. package/dist/_internal/client/features/digital-code/DigitalCodeDetailView.js +2 -2
  4. package/dist/_internal/client/features/layout/SidebarCollapseToggle.js +1 -3
  5. package/dist/_internal/client/features/live/LiveItemDetailView.js +6 -6
  6. package/dist/_internal/client/features/maintenance/index.d.ts +7 -0
  7. package/dist/_internal/client/features/maintenance/index.js +4 -0
  8. package/dist/_internal/client/features/maintenance/views/AnalysisRunnerView.d.ts +2 -0
  9. package/dist/_internal/client/features/maintenance/views/AnalysisRunnerView.js +51 -0
  10. package/dist/_internal/client/features/maintenance/views/MaintenanceDashboardView.d.ts +7 -0
  11. package/dist/_internal/client/features/maintenance/views/MaintenanceDashboardView.js +14 -0
  12. package/dist/_internal/client/features/maintenance/views/ServerErrorDetailView.d.ts +8 -0
  13. package/dist/_internal/client/features/maintenance/views/ServerErrorDetailView.js +9 -0
  14. package/dist/_internal/client/features/maintenance/views/ServerErrorsListView.d.ts +10 -0
  15. package/dist/_internal/client/features/maintenance/views/ServerErrorsListView.js +44 -0
  16. package/dist/_internal/client/scaffolds/AppShell.js +2 -2
  17. package/dist/_internal/client/scaffolds/DashboardScaffold.js +2 -2
  18. package/dist/_internal/client/theme/ThemeProvider.d.ts +39 -0
  19. package/dist/_internal/client/theme/ThemeProvider.js +115 -0
  20. package/dist/_internal/client/theme/__tests__/ThemeProvider.test.d.ts +1 -0
  21. package/dist/_internal/client/theme/__tests__/ThemeProvider.test.js +109 -0
  22. package/dist/_internal/client/theme/buildRegistry.d.ts +29 -0
  23. package/dist/_internal/client/theme/buildRegistry.js +37 -0
  24. package/dist/_internal/client/theme/index.d.ts +4 -0
  25. package/dist/_internal/client/theme/index.js +2 -0
  26. package/dist/_internal/server/features/auctions/actions.d.ts +2 -1
  27. package/dist/_internal/server/features/auctions/actions.js +39 -35
  28. package/dist/_internal/server/features/auctions/og.js +1 -0
  29. package/dist/_internal/server/features/auctions/service.js +4 -0
  30. package/dist/_internal/server/features/auth/capabilities.js +1 -0
  31. package/dist/_internal/server/features/blog/actions.d.ts +6 -5
  32. package/dist/_internal/server/features/blog/actions.js +47 -34
  33. package/dist/_internal/server/features/brands/actions.d.ts +5 -4
  34. package/dist/_internal/server/features/brands/actions.js +63 -52
  35. package/dist/_internal/server/features/cart/actions.d.ts +5 -12
  36. package/dist/_internal/server/features/cart/actions.js +33 -21
  37. package/dist/_internal/server/features/checkout/actions.d.ts +0 -8
  38. package/dist/_internal/server/features/checkout/actions.js +41 -19
  39. package/dist/_internal/server/features/classified/actions.d.ts +2 -1
  40. package/dist/_internal/server/features/classified/actions.js +20 -17
  41. package/dist/_internal/server/features/digital-code/actions.d.ts +2 -1
  42. package/dist/_internal/server/features/digital-code/actions.js +20 -17
  43. package/dist/_internal/server/features/events/actions.d.ts +5 -4
  44. package/dist/_internal/server/features/events/actions.js +55 -43
  45. package/dist/_internal/server/features/events/og.js +1 -0
  46. package/dist/_internal/server/features/events/service.d.ts +3 -2
  47. package/dist/_internal/server/features/events/service.js +2 -0
  48. package/dist/_internal/server/features/grouped/data.js +2 -0
  49. package/dist/_internal/server/features/history/actions.d.ts +3 -2
  50. package/dist/_internal/server/features/history/actions.js +12 -7
  51. package/dist/_internal/server/features/live/actions.d.ts +2 -1
  52. package/dist/_internal/server/features/live/actions.js +20 -17
  53. package/dist/_internal/server/features/maintenance/analyze.d.ts +67 -0
  54. package/dist/_internal/server/features/maintenance/analyze.js +178 -0
  55. package/dist/_internal/server/features/maintenance/data.d.ts +35 -0
  56. package/dist/_internal/server/features/maintenance/data.js +86 -0
  57. package/dist/_internal/server/features/media/contextGuards.d.ts +2 -1
  58. package/dist/_internal/server/features/orders/actions.d.ts +5 -4
  59. package/dist/_internal/server/features/orders/actions.js +47 -33
  60. package/dist/_internal/server/features/payouts/actions.d.ts +2 -1
  61. package/dist/_internal/server/features/payouts/actions.js +22 -19
  62. package/dist/_internal/server/features/pre-orders/actions.d.ts +2 -7
  63. package/dist/_internal/server/features/pre-orders/actions.js +21 -17
  64. package/dist/_internal/server/features/pre-orders/og.js +1 -0
  65. package/dist/_internal/server/features/pre-orders/service.js +1 -0
  66. package/dist/_internal/server/features/products/actions.d.ts +8 -7
  67. package/dist/_internal/server/features/products/actions.js +80 -58
  68. package/dist/_internal/server/features/products/service.js +1 -0
  69. package/dist/_internal/server/features/promotions/actions.d.ts +5 -9
  70. package/dist/_internal/server/features/promotions/actions.js +37 -25
  71. package/dist/_internal/server/features/raffle/actions.d.ts +3 -2
  72. package/dist/_internal/server/features/raffle/actions.js +4 -3
  73. package/dist/_internal/server/features/refunds/actions.d.ts +3 -2
  74. package/dist/_internal/server/features/refunds/actions.js +109 -91
  75. package/dist/_internal/server/features/reviews/actions.d.ts +5 -4
  76. package/dist/_internal/server/features/reviews/actions.js +63 -50
  77. package/dist/_internal/server/features/scams/og.d.ts +2 -1
  78. package/dist/_internal/server/features/search/actions.d.ts +2 -10
  79. package/dist/_internal/server/features/search/actions.js +13 -10
  80. package/dist/_internal/server/features/seo/sitemap.js +8 -0
  81. package/dist/_internal/server/features/wishlist/actions.d.ts +4 -3
  82. package/dist/_internal/server/features/wishlist/actions.js +36 -27
  83. package/dist/_internal/server/functions/bind-all.d.ts +25 -0
  84. package/dist/_internal/server/functions/bind-all.js +85 -0
  85. package/dist/_internal/server/functions/define.d.ts +19 -0
  86. package/dist/_internal/server/functions/define.js +18 -0
  87. package/dist/_internal/server/functions/firestore.d.ts +30 -0
  88. package/dist/_internal/server/functions/firestore.js +117 -0
  89. package/dist/_internal/server/functions/https.d.ts +24 -0
  90. package/dist/_internal/server/functions/https.js +153 -0
  91. package/dist/_internal/server/functions/index.d.ts +11 -0
  92. package/dist/_internal/server/functions/index.js +10 -0
  93. package/dist/_internal/server/functions/manifest.d.ts +15 -0
  94. package/dist/_internal/server/functions/manifest.js +22 -0
  95. package/dist/_internal/server/functions/merge.d.ts +18 -0
  96. package/dist/_internal/server/functions/merge.js +37 -0
  97. package/dist/_internal/server/functions/scheduled.d.ts +22 -0
  98. package/dist/_internal/server/functions/scheduled.js +176 -0
  99. package/dist/_internal/server/functions/types.d.ts +96 -0
  100. package/dist/_internal/server/functions/types.js +17 -0
  101. package/dist/_internal/server/jobs/core/cleanupRtdbEvents.js +3 -0
  102. package/dist/_internal/server/jobs/core/countersReconcile.js +3 -1
  103. package/dist/_internal/server/jobs/core/listingProcessor.d.ts +2 -1
  104. package/dist/_internal/server/jobs/core/mediaTmpCleanup.d.ts +0 -12
  105. package/dist/_internal/server/jobs/core/mediaTmpCleanup.js +2 -0
  106. package/dist/_internal/server/jobs/core/offerExpiry.js +2 -0
  107. package/dist/_internal/server/jobs/core/onBidPlaced.js +2 -0
  108. package/dist/_internal/server/jobs/core/onCategoryWrite.d.ts +2 -7
  109. package/dist/_internal/server/jobs/core/onCategoryWrite.js +2 -0
  110. package/dist/_internal/server/jobs/core/onOrderCreate.js +3 -0
  111. package/dist/_internal/server/jobs/core/onOrderStatusChange.js +2 -0
  112. package/dist/_internal/server/jobs/core/onProductStockChange.js +2 -12
  113. package/dist/_internal/server/jobs/core/onProductWrite.d.ts +2 -5
  114. package/dist/_internal/server/jobs/core/onProductWrite.js +2 -0
  115. package/dist/_internal/server/jobs/core/onReviewWrite.d.ts +3 -2
  116. package/dist/_internal/server/jobs/core/onScamReportCreate.js +5 -2
  117. package/dist/_internal/server/jobs/core/onScamReportRejected.js +2 -0
  118. package/dist/_internal/server/jobs/core/onScamReportVerified.js +2 -0
  119. package/dist/_internal/server/jobs/core/onStoreWrite.d.ts +2 -1
  120. package/dist/_internal/server/jobs/core/onSupportTicketCreate.js +2 -0
  121. package/dist/_internal/server/jobs/core/onSupportTicketUpdate.js +3 -1
  122. package/dist/_internal/server/jobs/core/onUserBanChange.js +2 -0
  123. package/dist/_internal/server/jobs/core/payoutBatch.d.ts +0 -6
  124. package/dist/_internal/server/jobs/core/payoutBatch.js +2 -0
  125. package/dist/_internal/server/jobs/core/prizeRevealExpiry.js +3 -1
  126. package/dist/_internal/server/jobs/core/prizeRevealOpen.js +3 -1
  127. package/dist/_internal/server/jobs/core/prizeRevealReminder.js +3 -1
  128. package/dist/_internal/server/jobs/core/wrapJobHandler.d.ts +25 -0
  129. package/dist/_internal/server/jobs/core/wrapJobHandler.js +79 -0
  130. package/dist/_internal/server/jobs/handlers/onProductStockChange.d.ts +2 -1
  131. package/dist/_internal/server/jobs/handlers/onReviewWrite.d.ts +2 -1
  132. package/dist/_internal/server/jobs/handlers/onScamReportCreate.d.ts +2 -1
  133. package/dist/_internal/server/jobs/handlers/onScamReportUpdate.d.ts +2 -1
  134. package/dist/_internal/server/jobs/handlers/onSupportTicketCreate.d.ts +2 -1
  135. package/dist/_internal/server/jobs/handlers/onSupportTicketUpdate.d.ts +2 -1
  136. package/dist/_internal/server/jobs/handlers/onUserBanChange.d.ts +2 -1
  137. package/dist/_internal/server/jobs/runtime/adapters/firebase.js +2 -0
  138. package/dist/_internal/server/jobs/runtime/types.d.ts +4 -3
  139. package/dist/_internal/server/providers/index.d.ts +11 -0
  140. package/dist/_internal/server/providers/index.js +11 -0
  141. package/dist/_internal/server/providers/payment/razorpay-mock.d.ts +51 -0
  142. package/dist/_internal/server/providers/payment/razorpay-mock.js +116 -0
  143. package/dist/_internal/server/providers/resolve.d.ts +39 -0
  144. package/dist/_internal/server/providers/resolve.js +37 -0
  145. package/dist/_internal/server/providers/shipping/shiprocket-mock.d.ts +29 -0
  146. package/dist/_internal/server/providers/shipping/shiprocket-mock.js +152 -0
  147. package/dist/_internal/shared/checkout/rules/types.d.ts +3 -2
  148. package/dist/_internal/shared/config/schema.d.ts +7 -6
  149. package/dist/_internal/shared/features/layout/config.js +2 -2
  150. package/dist/_internal/shared/features/orders/schema.d.ts +2 -2
  151. package/dist/_internal/shared/features/promotions/schema.d.ts +6 -6
  152. package/dist/_internal/shared/features/reviews/schema.d.ts +2 -2
  153. package/dist/_internal/shared/listing-types/action-tracker.d.ts +3 -2
  154. package/dist/_internal/shared/listing-types/action-tracker.js +0 -18
  155. package/dist/_internal/shared/listing-types/cart-shipping.d.ts +1 -1
  156. package/dist/_internal/shared/listing-types/cart-shipping.js +1 -1
  157. package/dist/_internal/shared/serialization/index.js +4 -0
  158. package/dist/_internal/shared/styles/grid.d.ts +12 -0
  159. package/dist/_internal/shared/styles/grid.js +12 -0
  160. package/dist/_internal/shared/styles/page.d.ts +20 -0
  161. package/dist/_internal/shared/styles/page.js +20 -0
  162. package/dist/_internal/shared/styles/skeleton.d.ts +16 -0
  163. package/dist/_internal/shared/styles/skeleton.js +18 -0
  164. package/dist/_internal/shared/styles/themed.d.ts +26 -0
  165. package/dist/_internal/shared/styles/themed.js +29 -0
  166. package/dist/_internal/shared/tokens/index.d.ts +1 -1
  167. package/dist/_internal/shared/tokens/index.js +1 -1
  168. package/dist/_internal/shared/types/__tests__/action-result.test.d.ts +1 -0
  169. package/dist/_internal/shared/types/__tests__/action-result.test.js +65 -0
  170. package/dist/_internal/shared/types/action-result.d.ts +49 -0
  171. package/dist/_internal/shared/types/action-result.js +47 -0
  172. package/dist/cli/index.d.ts +2 -1
  173. package/dist/client/api/ApiError.d.ts +18 -0
  174. package/dist/client/api/ApiError.js +23 -0
  175. package/dist/client/api/surface-error.d.ts +30 -0
  176. package/dist/client/api/surface-error.js +39 -0
  177. package/dist/client/api/useApiMutation.d.ts +31 -0
  178. package/dist/client/api/useApiMutation.js +52 -0
  179. package/dist/client/api/useApiQuery.d.ts +20 -0
  180. package/dist/client/api/useApiQuery.js +56 -0
  181. package/dist/client/observability/installClientErrorReporter.d.ts +10 -0
  182. package/dist/client/observability/installClientErrorReporter.js +48 -0
  183. package/dist/client/observability/reportClientError.d.ts +16 -0
  184. package/dist/client/observability/reportClientError.js +70 -0
  185. package/dist/client.d.ts +31 -3
  186. package/dist/client.js +37 -5
  187. package/dist/configs/eslint.js +50 -8
  188. package/dist/configs/next.d.ts +4 -3
  189. package/dist/configs/next.js +2 -2
  190. package/dist/configs/tailwind.d.ts +1 -1
  191. package/dist/configs/tailwind.js +2 -1
  192. package/dist/constants/api-endpoint-resolver.d.ts +3 -3
  193. package/dist/constants/api-endpoint-resolver.js +3 -3
  194. package/dist/contracts/auth.d.ts +3 -2
  195. package/dist/contracts/extend.d.ts +26 -26
  196. package/dist/contracts/extend.js +6 -6
  197. package/dist/contracts/feature.d.ts +3 -3
  198. package/dist/contracts/field-ops.js +2 -0
  199. package/dist/contracts/form.d.ts +12 -12
  200. package/dist/contracts/form.js +12 -12
  201. package/dist/contracts/payment.d.ts +3 -2
  202. package/dist/contracts/repository.d.ts +13 -5
  203. package/dist/contracts/search.d.ts +1 -1
  204. package/dist/core/EventBus.d.ts +0 -6
  205. package/dist/core/EventBus.js +4 -0
  206. package/dist/core/Logger.js +6 -0
  207. package/dist/core/Queue.js +2 -0
  208. package/dist/core/StorageManager.d.ts +0 -7
  209. package/dist/core/StorageManager.js +5 -0
  210. package/dist/core/hooks/useSiteSettings.d.ts +1 -1
  211. package/dist/core/mutation-events.d.ts +1 -1
  212. package/dist/core/mutation-events.js +2 -1
  213. package/dist/core/newsletter.repository.js +6 -2
  214. package/dist/core/server-action.d.ts +0 -36
  215. package/dist/core/server-action.js +16 -11
  216. package/dist/core/unit-of-work.js +3 -0
  217. package/dist/errors/__tests__/error-mapping.test.d.ts +1 -0
  218. package/dist/errors/__tests__/error-mapping.test.js +122 -0
  219. package/dist/errors/__tests__/safe-read.test.d.ts +1 -0
  220. package/dist/errors/__tests__/safe-read.test.js +39 -0
  221. package/dist/errors/api-error.js +1 -0
  222. package/dist/errors/authentication-error.js +1 -0
  223. package/dist/errors/authorization-error.js +1 -0
  224. package/dist/errors/base-error.js +3 -1
  225. package/dist/errors/database-error.js +1 -0
  226. package/dist/errors/error-display-map.d.ts +14 -0
  227. package/dist/errors/error-display-map.js +233 -0
  228. package/dist/errors/error-handler.d.ts +2 -1
  229. package/dist/errors/error-handler.js +5 -1
  230. package/dist/errors/error-mapping.d.ts +49 -0
  231. package/dist/errors/error-mapping.js +213 -0
  232. package/dist/errors/index.d.ts +6 -0
  233. package/dist/errors/index.js +11 -0
  234. package/dist/errors/normalize.d.ts +81 -0
  235. package/dist/errors/normalize.js +206 -0
  236. package/dist/errors/not-found-error.js +1 -0
  237. package/dist/errors/razorpay-unreachable.d.ts +4 -0
  238. package/dist/errors/razorpay-unreachable.js +7 -0
  239. package/dist/errors/safe-read.d.ts +37 -0
  240. package/dist/errors/safe-read.js +39 -0
  241. package/dist/errors/validation-error.js +1 -0
  242. package/dist/features/_guide-cls.js +1 -1
  243. package/dist/features/about/components/AboutView.d.ts +2 -3
  244. package/dist/features/about/components/AboutView.js +3 -3
  245. package/dist/features/about/components/FAQPageView.d.ts +1 -2
  246. package/dist/features/about/components/FAQPageView.js +9 -10
  247. package/dist/features/about/components/FeesView.d.ts +1 -2
  248. package/dist/features/about/components/FeesView.js +12 -9
  249. package/dist/features/about/components/HelpPageView.d.ts +1 -2
  250. package/dist/features/about/components/HelpPageView.js +15 -12
  251. package/dist/features/about/components/HowAuctionsWorkView.d.ts +1 -2
  252. package/dist/features/about/components/HowAuctionsWorkView.js +11 -12
  253. package/dist/features/about/components/HowCheckoutWorksView.d.ts +1 -2
  254. package/dist/features/about/components/HowCheckoutWorksView.js +11 -12
  255. package/dist/features/about/components/HowOffersWorkView.d.ts +1 -2
  256. package/dist/features/about/components/HowOffersWorkView.js +11 -12
  257. package/dist/features/about/components/HowOrdersWorkView.d.ts +1 -2
  258. package/dist/features/about/components/HowOrdersWorkView.js +11 -12
  259. package/dist/features/about/components/HowPayoutsWorkView.d.ts +1 -2
  260. package/dist/features/about/components/HowPayoutsWorkView.js +11 -12
  261. package/dist/features/about/components/HowPreOrdersWorkView.d.ts +1 -2
  262. package/dist/features/about/components/HowPreOrdersWorkView.js +11 -12
  263. package/dist/features/about/components/HowReviewsWorkView.d.ts +1 -2
  264. package/dist/features/about/components/HowReviewsWorkView.js +11 -12
  265. package/dist/features/about/components/PolicyPageView.d.ts +1 -2
  266. package/dist/features/about/components/PolicyPageView.js +6 -6
  267. package/dist/features/about/components/PublicProfileView.d.ts +1 -2
  268. package/dist/features/about/components/PublicProfileView.js +31 -24
  269. package/dist/features/about/components/SecurityPrivacyView.d.ts +1 -2
  270. package/dist/features/about/components/SecurityPrivacyView.js +9 -10
  271. package/dist/features/about/components/ShippingPolicyView.d.ts +1 -2
  272. package/dist/features/about/components/ShippingPolicyView.js +4 -5
  273. package/dist/features/about/components/TrackOrderView.d.ts +1 -2
  274. package/dist/features/about/components/TrackOrderView.js +14 -6
  275. package/dist/features/about/components/UnauthorizedView.d.ts +1 -2
  276. package/dist/features/about/components/UnauthorizedView.js +6 -7
  277. package/dist/features/account/api/[userId]/addresses/route.js +3 -0
  278. package/dist/features/account/api/[userId]/route.js +3 -0
  279. package/dist/features/account/components/AddressBook.d.ts +2 -1
  280. package/dist/features/account/components/AddressBook.js +5 -4
  281. package/dist/features/account/components/AddressForm.js +25 -30
  282. package/dist/features/account/components/AddressesIndexListing.js +4 -3
  283. package/dist/features/account/components/BecomeSellerView.js +1 -1
  284. package/dist/features/account/components/BuyerAccountGuideView.js +9 -9
  285. package/dist/features/account/components/BuyerAuctionsGuideView.js +7 -7
  286. package/dist/features/account/components/BuyerOrdersGuideView.js +8 -8
  287. package/dist/features/account/components/BuyerShoppingGuideView.js +8 -8
  288. package/dist/features/account/components/ChatList.js +1 -1
  289. package/dist/features/account/components/ChatWindow.js +2 -3
  290. package/dist/features/account/components/MessagesView.js +4 -3
  291. package/dist/features/account/components/NotificationBell.js +18 -9
  292. package/dist/features/account/components/NotificationPreferencesPanel.js +9 -7
  293. package/dist/features/account/components/UserOffersPanel.js +8 -4
  294. package/dist/features/account/components/UserSidebar.js +7 -7
  295. package/dist/features/account/components/UserSupportView.js +12 -11
  296. package/dist/features/account/hooks/useAccount.d.ts +2 -2
  297. package/dist/features/account/hooks/useAddressSelector.d.ts +1 -1
  298. package/dist/features/account/hooks/useAddresses.d.ts +2 -2
  299. package/dist/features/account/hooks/useNotifications.d.ts +3 -2
  300. package/dist/features/account/hooks/useProfile.d.ts +4 -3
  301. package/dist/features/account/hooks/useProfile.js +3 -2
  302. package/dist/features/account/hooks/usePublicProfile.d.ts +2 -2
  303. package/dist/features/addresses/repository/addresses.repository.d.ts +0 -10
  304. package/dist/features/addresses/repository/addresses.repository.js +18 -4
  305. package/dist/features/addresses/schemas/index.d.ts +75 -0
  306. package/dist/features/addresses/schemas/index.js +22 -0
  307. package/dist/features/admin/actions/admin-actions.d.ts +0 -6
  308. package/dist/features/admin/actions/admin-actions.js +2 -0
  309. package/dist/features/admin/actions/notification-actions.js +4 -0
  310. package/dist/features/admin/actions/site-settings-actions.d.ts +2 -1
  311. package/dist/features/admin/components/AdminAdEditorView.js +8 -7
  312. package/dist/features/admin/components/AdminAddressEditorView.js +12 -10
  313. package/dist/features/admin/components/AdminAdsView.js +13 -12
  314. package/dist/features/admin/components/AdminAllEventEntriesView.js +3 -2
  315. package/dist/features/admin/components/AdminAnalyticsGuideView.js +7 -7
  316. package/dist/features/admin/components/AdminAnalyticsView.js +2 -2
  317. package/dist/features/admin/components/AdminBidsView.js +3 -2
  318. package/dist/features/admin/components/AdminBlogEditorView.js +12 -10
  319. package/dist/features/admin/components/AdminBrandEditorView.js +29 -18
  320. package/dist/features/admin/components/AdminBrandsView.js +6 -6
  321. package/dist/features/admin/components/AdminBundleEditorView.js +36 -33
  322. package/dist/features/admin/components/AdminBundlesView.js +7 -6
  323. package/dist/features/admin/components/AdminCarouselEditorView.js +35 -24
  324. package/dist/features/admin/components/AdminCarouselView.js +13 -9
  325. package/dist/features/admin/components/AdminCartsView.js +1 -0
  326. package/dist/features/admin/components/AdminCatalogGuideView.js +8 -8
  327. package/dist/features/admin/components/AdminCategoriesView.js +7 -7
  328. package/dist/features/admin/components/AdminCategoryEditorView.js +25 -18
  329. package/dist/features/admin/components/AdminContactEditorView.js +5 -4
  330. package/dist/features/admin/components/AdminContactView.js +4 -3
  331. package/dist/features/admin/components/AdminContentGuideView.js +10 -10
  332. package/dist/features/admin/components/AdminCouponEditorView.js +35 -24
  333. package/dist/features/admin/components/AdminCouponsView.js +2 -2
  334. package/dist/features/admin/components/AdminEmployeeEditorView.js +9 -8
  335. package/dist/features/admin/components/AdminFaqEditorView.js +29 -19
  336. package/dist/features/admin/components/AdminFaqsView.js +6 -6
  337. package/dist/features/admin/components/AdminFeatureEditorView.js +9 -7
  338. package/dist/features/admin/components/AdminFeatureFlagsView.js +7 -6
  339. package/dist/features/admin/components/AdminFilterBar.d.ts +8 -8
  340. package/dist/features/admin/components/AdminFilterBar.js +1 -1
  341. package/dist/features/admin/components/AdminGuideHubView.js +6 -6
  342. package/dist/features/admin/components/AdminMediaView.js +12 -6
  343. package/dist/features/admin/components/AdminNavEditorView.js +3 -3
  344. package/dist/features/admin/components/AdminNavigationView.js +10 -9
  345. package/dist/features/admin/components/AdminNewsletterView.js +3 -2
  346. package/dist/features/admin/components/AdminNotificationsView.js +7 -6
  347. package/dist/features/admin/components/AdminOrderEditorView.js +5 -4
  348. package/dist/features/admin/components/AdminOrdersGuideView.js +11 -11
  349. package/dist/features/admin/components/AdminPageHeader.d.ts +9 -9
  350. package/dist/features/admin/components/AdminPageHeader.js +3 -3
  351. package/dist/features/admin/components/AdminPayoutsView.js +6 -4
  352. package/dist/features/admin/components/AdminPrizeDrawsView.js +4 -4
  353. package/dist/features/admin/components/AdminProductEditorView.js +9 -7
  354. package/dist/features/admin/components/AdminProductsView.js +10 -6
  355. package/dist/features/admin/components/AdminReturnRequestsView.js +4 -3
  356. package/dist/features/admin/components/AdminReviewsView.js +7 -6
  357. package/dist/features/admin/components/AdminScammerEditorView.js +6 -5
  358. package/dist/features/admin/components/AdminScammersView.js +4 -4
  359. package/dist/features/admin/components/AdminSectionsView.js +45 -44
  360. package/dist/features/admin/components/AdminSessionsManager.js +2 -2
  361. package/dist/features/admin/components/AdminSessionsView.js +6 -5
  362. package/dist/features/admin/components/AdminSidebar.js +9 -9
  363. package/dist/features/admin/components/AdminSiteConfigGuideView.js +2 -2
  364. package/dist/features/admin/components/AdminSiteSettingsView.js +32 -4
  365. package/dist/features/admin/components/AdminSiteView.js +4 -3
  366. package/dist/features/admin/components/AdminStoreEditorView.js +9 -8
  367. package/dist/features/admin/components/AdminStoresGuideView.js +9 -9
  368. package/dist/features/admin/components/AdminStoresView.js +4 -3
  369. package/dist/features/admin/components/AdminSublistingCategoryEditorView.js +21 -15
  370. package/dist/features/admin/components/AdminSupportTicketDetailView.js +21 -16
  371. package/dist/features/admin/components/AdminSupportTicketsView.js +5 -5
  372. package/dist/features/admin/components/AdminTeamGuideView.js +7 -7
  373. package/dist/features/admin/components/AdminTeamView.js +1 -1
  374. package/dist/features/admin/components/AdminTrustGuideView.js +10 -10
  375. package/dist/features/admin/components/AdminUserEditorView.js +13 -12
  376. package/dist/features/admin/components/AdminUsersGuideView.js +9 -9
  377. package/dist/features/admin/components/AdminUsersView.js +4 -3
  378. package/dist/features/admin/components/AdminViewCards.js +7 -7
  379. package/dist/features/admin/components/BrandQuickCreateForm.js +5 -4
  380. package/dist/features/admin/components/CategoryQuickCreateForm.js +5 -4
  381. package/dist/features/admin/components/DashboardStats.js +9 -7
  382. package/dist/features/admin/components/DataListingView.js +8 -4
  383. package/dist/features/admin/components/DataTable.js +9 -7
  384. package/dist/features/admin/components/DrawerFormFooter.js +2 -2
  385. package/dist/features/admin/components/QuickActionsPanel.js +1 -1
  386. package/dist/features/admin/components/QuickEditMenu.d.ts +6 -2
  387. package/dist/features/admin/components/QuickEditMenu.js +2 -2
  388. package/dist/features/admin/components/analytics/AdminAnalyticsCharts.js +3 -3
  389. package/dist/features/admin/components/analytics/AdminStatCard.js +8 -6
  390. package/dist/features/admin/components/analytics/AdminTopProductsTable.js +4 -2
  391. package/dist/features/admin/components/sections/adminSectionsBuildParse.d.ts +51 -50
  392. package/dist/features/admin/components/sections/adminSectionsBuildParse.js +5 -0
  393. package/dist/features/admin/components/sections/adminSectionsTypes.d.ts +2 -1
  394. package/dist/features/admin/hooks/useAdmin.d.ts +1 -1
  395. package/dist/features/admin/hooks/useAdminListingData.d.ts +8 -2
  396. package/dist/features/admin/hooks/useAdminListingData.js +5 -0
  397. package/dist/features/admin/hooks/useAdminSectionsListing.d.ts +1 -1
  398. package/dist/features/admin/hooks/useChat.d.ts +3 -3
  399. package/dist/features/admin/hooks/useChat.js +8 -3
  400. package/dist/features/admin/repository/chat.repository.d.ts +0 -20
  401. package/dist/features/admin/repository/chat.repository.js +7 -0
  402. package/dist/features/admin/repository/notification.repository.js +6 -7
  403. package/dist/features/admin/repository/site-settings.repository.js +3 -0
  404. package/dist/features/admin/schemas/firestore.d.ts +53 -11
  405. package/dist/features/admin/schemas/firestore.js +21 -0
  406. package/dist/features/admin/types/index.d.ts +1 -1
  407. package/dist/features/auctions/actions/bid-actions.d.ts +0 -6
  408. package/dist/features/auctions/actions/bid-actions.js +2 -0
  409. package/dist/features/auctions/api/route.js +2 -0
  410. package/dist/features/auctions/components/AuctionBidsTable.js +8 -6
  411. package/dist/features/auctions/components/AuctionDetailPageView.js +13 -8
  412. package/dist/features/auctions/components/AuctionsListView.js +1 -1
  413. package/dist/features/auctions/components/CollapsibleBidHistory.js +1 -1
  414. package/dist/features/auctions/components/MarketplaceAuctionCard.js +21 -10
  415. package/dist/features/auctions/components/MarketplaceAuctionGrid.js +3 -3
  416. package/dist/features/auctions/components/PlaceBidFormClient.js +65 -45
  417. package/dist/features/auctions/hooks/useAuctions.d.ts +8 -8
  418. package/dist/features/auctions/hooks/usePlaceBid.d.ts +2 -1
  419. package/dist/features/auctions/repository/bid.repository.js +11 -0
  420. package/dist/features/auctions/schemas/bid-input.d.ts +17 -0
  421. package/dist/features/auctions/schemas/bid-input.js +16 -0
  422. package/dist/features/auctions/schemas/index.d.ts +2 -2
  423. package/dist/features/auth/actions/profile-actions.d.ts +2 -0
  424. package/dist/features/auth/actions/profile-actions.js +25 -0
  425. package/dist/features/auth/actions/realtime-token-actions.js +3 -0
  426. package/dist/features/auth/components/AuthStatusPanel.js +4 -4
  427. package/dist/features/auth/components/ForgotPasswordView.js +18 -11
  428. package/dist/features/auth/components/Guards.d.ts +11 -11
  429. package/dist/features/auth/components/Guards.js +3 -3
  430. package/dist/features/auth/components/LoginForm.d.ts +1 -6
  431. package/dist/features/auth/components/LoginForm.js +19 -11
  432. package/dist/features/auth/components/OAuthLoadingView.js +2 -2
  433. package/dist/features/auth/components/RegisterForm.js +28 -20
  434. package/dist/features/auth/components/ResetPasswordView.js +25 -18
  435. package/dist/features/auth/components/SocialAuthButtons.js +2 -2
  436. package/dist/features/auth/components/VerifyEmailView.js +8 -8
  437. package/dist/features/auth/consent-otp.d.ts +3 -2
  438. package/dist/features/auth/consent-otp.js +8 -8
  439. package/dist/features/auth/hooks/useAuth.d.ts +27 -26
  440. package/dist/features/auth/hooks/useAuth.js +3 -0
  441. package/dist/features/auth/permissions/constants.d.ts +2 -2
  442. package/dist/features/auth/permissions/constants.js +17 -0
  443. package/dist/features/auth/repository/session.repository.js +9 -0
  444. package/dist/features/auth/repository/token.repository.js +9 -0
  445. package/dist/features/auth/repository/user.repository.js +14 -6
  446. package/dist/features/auth/role-predicates.d.ts +20 -16
  447. package/dist/features/auth/role-predicates.js +1 -8
  448. package/dist/features/auth/schemas/index.d.ts +6 -6
  449. package/dist/features/auth/server/checkSoftBan.js +2 -1
  450. package/dist/features/before-after/api/[id]/route.js +4 -0
  451. package/dist/features/before-after/api/route.js +3 -0
  452. package/dist/features/before-after/components/BeforeAfterGallery.js +2 -2
  453. package/dist/features/before-after/components/BeforeAfterSlider.js +3 -3
  454. package/dist/features/blog/actions/blog-actions.d.ts +7 -7
  455. package/dist/features/blog/api/[slug]/route.d.ts +1 -1
  456. package/dist/features/blog/api/[slug]/route.js +3 -1
  457. package/dist/features/blog/api/route.js +2 -0
  458. package/dist/features/blog/columns/index.d.ts +2 -2
  459. package/dist/features/blog/columns/index.js +2 -2
  460. package/dist/features/blog/components/BlogFeaturedCard.js +9 -8
  461. package/dist/features/blog/components/BlogIndexListing.js +7 -6
  462. package/dist/features/blog/components/BlogIndexPageView.js +1 -1
  463. package/dist/features/blog/components/BlogListView.js +10 -11
  464. package/dist/features/blog/components/BlogPostForm.js +3 -3
  465. package/dist/features/blog/components/BlogPostView.js +10 -10
  466. package/dist/features/blog/repository/blog.repository.js +6 -0
  467. package/dist/features/blog/schemas/index.d.ts +210 -3
  468. package/dist/features/blog/schemas/index.js +27 -0
  469. package/dist/features/cart/api/[id]/route.js +3 -0
  470. package/dist/features/cart/api/route.js +3 -0
  471. package/dist/features/cart/components/CartDrawer.js +9 -8
  472. package/dist/features/cart/components/CartSummary.js +2 -2
  473. package/dist/features/cart/components/CartView.d.ts +2 -1
  474. package/dist/features/cart/components/CartView.js +2 -2
  475. package/dist/features/cart/components/CheckoutAddressStep.js +2 -2
  476. package/dist/features/cart/components/CheckoutView.js +2 -2
  477. package/dist/features/cart/components/ShippingPicker.js +1 -1
  478. package/dist/features/cart/hooks/useAddToCart.d.ts +2 -1
  479. package/dist/features/cart/hooks/useAddToCart.js +2 -0
  480. package/dist/features/cart/hooks/useCart.d.ts +1 -1
  481. package/dist/features/cart/hooks/useCartQuery.d.ts +3 -2
  482. package/dist/features/cart/hooks/useCheckoutReadQueries.d.ts +5 -4
  483. package/dist/features/cart/hooks/useOrder.d.ts +2 -2
  484. package/dist/features/cart/repository/cart.repository.js +3 -0
  485. package/dist/features/categories/api/[id]/route.d.ts +1 -1
  486. package/dist/features/categories/api/[id]/route.js +3 -1
  487. package/dist/features/categories/api/route.js +3 -0
  488. package/dist/features/categories/components/BrandDetailPageView.js +15 -4
  489. package/dist/features/categories/components/BrandDetailTabs.js +1 -1
  490. package/dist/features/categories/components/BreadcrumbTrail.d.ts +3 -3
  491. package/dist/features/categories/components/BreadcrumbTrail.js +3 -3
  492. package/dist/features/categories/components/BundleBuyNowCta.js +2 -0
  493. package/dist/features/categories/components/BundleCollage.js +4 -4
  494. package/dist/features/categories/components/BundleDetailView.d.ts +5 -6
  495. package/dist/features/categories/components/BundleDetailView.js +6 -3
  496. package/dist/features/categories/components/BundleDynamicRuleEditor.js +2 -2
  497. package/dist/features/categories/components/BundleItemsPicker.js +10 -6
  498. package/dist/features/categories/components/BundlesListView.js +1 -1
  499. package/dist/features/categories/components/CategoriesIndexListing.js +8 -7
  500. package/dist/features/categories/components/CategoriesIndexPageView.js +2 -1
  501. package/dist/features/categories/components/CategoryBundlesListing.js +6 -4
  502. package/dist/features/categories/components/CategoryDetailPageView.js +14 -3
  503. package/dist/features/categories/components/CategoryDetailTabs.js +1 -1
  504. package/dist/features/categories/components/CategoryForm.js +2 -2
  505. package/dist/features/categories/components/CategoryGrid.js +6 -7
  506. package/dist/features/categories/components/CategoryProductsListing.js +3 -5
  507. package/dist/features/categories/components/CategoryProductsView.js +2 -2
  508. package/dist/features/categories/components/CategorySelectorCreate.js +3 -2
  509. package/dist/features/categories/components/CategorySortSelect.js +1 -1
  510. package/dist/features/categories/components/CategoryStoresListing.js +3 -3
  511. package/dist/features/categories/components/CategoryTableColumns.js +6 -6
  512. package/dist/features/categories/components/CategoryTree.js +5 -5
  513. package/dist/features/categories/components/ConcernCard.js +2 -3
  514. package/dist/features/categories/hooks/useCategories.d.ts +3 -3
  515. package/dist/features/categories/hooks/useCategorySelector.d.ts +7 -6
  516. package/dist/features/categories/hooks/useCategoryTree.d.ts +1 -1
  517. package/dist/features/categories/hooks/useCategoryTree.js +1 -1
  518. package/dist/features/categories/repository/categories.repository.d.ts +2 -1
  519. package/dist/features/categories/repository/categories.repository.js +14 -0
  520. package/dist/features/categories/schemas/index.d.ts +555 -0
  521. package/dist/features/categories/schemas/index.js +96 -0
  522. package/dist/features/checkout/components/CheckoutStepper.js +2 -7
  523. package/dist/features/checkout/hooks/useCheckoutApi.d.ts +2 -2
  524. package/dist/features/checkout/hooks/usePaymentCheckout.js +6 -0
  525. package/dist/features/classified/components/ClassifiedFilters.js +1 -1
  526. package/dist/features/classified/components/ClassifiedIndexListing.js +2 -2
  527. package/dist/features/classified/components/ClassifiedListView.js +1 -1
  528. package/dist/features/collections/api/[slug]/route.js +4 -0
  529. package/dist/features/collections/api/route.js +3 -0
  530. package/dist/features/collections/components/CollectionCard.js +6 -4
  531. package/dist/features/collections/hooks/useCollections.d.ts +2 -2
  532. package/dist/features/consultation/api/[id]/route.js +4 -0
  533. package/dist/features/consultation/api/route.js +3 -0
  534. package/dist/features/consultation/components/ConsultationForm.js +7 -8
  535. package/dist/features/consultation/schemas/index.d.ts +2 -2
  536. package/dist/features/contact/components/ContactForm.js +5 -5
  537. package/dist/features/contact/components/ContactInfoSidebar.js +2 -2
  538. package/dist/features/contact/components/ContactPageView.js +3 -9
  539. package/dist/features/contact/email.d.ts +9 -8
  540. package/dist/features/contact/email.js +36 -196
  541. package/dist/features/copilot/components/AdminCopilotView.js +9 -12
  542. package/dist/features/copilot/hooks/useCopilotChat.d.ts +1 -1
  543. package/dist/features/copilot/hooks/useCopilotChat.js +2 -2
  544. package/dist/features/copilot/hooks/useCopilotFeedback.d.ts +1 -1
  545. package/dist/features/copilot/hooks/useCopilotFeedback.js +2 -2
  546. package/dist/features/corporate/api/[id]/route.js +4 -0
  547. package/dist/features/corporate/api/route.js +3 -0
  548. package/dist/features/corporate/components/CorporateInquiryForm.js +8 -15
  549. package/dist/features/cron/firebase-adapters.d.ts +1 -1
  550. package/dist/features/cron/firebase-adapters.js +1 -1
  551. package/dist/features/cron/jobs/auction-expiry.job.d.ts +1 -1
  552. package/dist/features/cron/registry.d.ts +11 -11
  553. package/dist/features/cron/registry.js +11 -11
  554. package/dist/features/cron/types.d.ts +2 -1
  555. package/dist/features/digital-codes/components/DigitalCodesIndexListing.js +2 -2
  556. package/dist/features/digital-codes/components/DigitalCodesListView.js +1 -1
  557. package/dist/features/email/index.d.ts +9 -0
  558. package/dist/features/email/index.js +8 -0
  559. package/dist/features/email/primitives.d.ts +90 -0
  560. package/dist/features/email/primitives.js +122 -0
  561. package/dist/features/events/actions/event-actions.d.ts +7 -6
  562. package/dist/features/events/actions/event-actions.js +1 -0
  563. package/dist/features/events/api/[id]/route.js +3 -0
  564. package/dist/features/events/api/route.js +2 -0
  565. package/dist/features/events/components/AdminEventEditorView.js +13 -11
  566. package/dist/features/events/components/AdminEventEntriesView.js +11 -10
  567. package/dist/features/events/components/EventBanner.js +3 -3
  568. package/dist/features/events/components/EventCard.js +9 -5
  569. package/dist/features/events/components/EventFormDrawer.js +2 -2
  570. package/dist/features/events/components/EventLeaderboard.js +4 -4
  571. package/dist/features/events/components/EventOfferCard.js +2 -2
  572. package/dist/features/events/components/EventParticipateView.js +3 -3
  573. package/dist/features/events/components/EventPollWidget.js +8 -6
  574. package/dist/features/events/components/EventRaffleEntryForm.js +6 -2
  575. package/dist/features/events/components/EventRaffleWinnerView.js +7 -5
  576. package/dist/features/events/components/EventRafflesSection.js +2 -1
  577. package/dist/features/events/components/EventSaleBanner.js +2 -2
  578. package/dist/features/events/components/EventStatusBadge.js +1 -1
  579. package/dist/features/events/components/EventsIndexListing.js +3 -2
  580. package/dist/features/events/components/EventsListPageView.js +1 -1
  581. package/dist/features/events/components/EventsListView.js +6 -6
  582. package/dist/features/events/components/SpinWheelView.js +15 -13
  583. package/dist/features/events/hooks/useBulkEvent.d.ts +3 -3
  584. package/dist/features/events/hooks/useBulkEvent.js +1 -0
  585. package/dist/features/events/hooks/useEvent.d.ts +3 -3
  586. package/dist/features/events/hooks/useEvents.d.ts +1 -1
  587. package/dist/features/events/repository/event-entry.repository.js +7 -0
  588. package/dist/features/events/repository/events.repository.js +7 -0
  589. package/dist/features/events/schemas/firestore.d.ts +2 -1
  590. package/dist/features/events/schemas/index.d.ts +4 -4
  591. package/dist/features/events/types/index.d.ts +3 -2
  592. package/dist/features/faq/api/route.js +2 -0
  593. package/dist/features/faq/components/ContactCTA.js +4 -2
  594. package/dist/features/faq/components/FAQAccordion.js +5 -3
  595. package/dist/features/faq/components/FAQCategorySidebar.js +5 -7
  596. package/dist/features/faq/components/FAQHelpfulButtons.js +7 -4
  597. package/dist/features/faq/components/FAQPageContent.js +4 -4
  598. package/dist/features/faq/components/FAQSortDropdown.js +2 -2
  599. package/dist/features/faq/components/RelatedFAQs.js +6 -2
  600. package/dist/features/faq/hooks/useFAQs.d.ts +1 -1
  601. package/dist/features/faq/hooks/useFaqList.d.ts +15 -15
  602. package/dist/features/faq/schemas/index.d.ts +198 -0
  603. package/dist/features/faq/schemas/index.js +35 -0
  604. package/dist/features/filters/AsyncFacetSection.js +8 -6
  605. package/dist/features/filters/FilterFacetSection.js +22 -12
  606. package/dist/features/filters/RangeFilter.js +5 -5
  607. package/dist/features/filters/SwitchFilter.js +2 -2
  608. package/dist/features/forms/Checkbox.js +6 -4
  609. package/dist/features/forms/Radio.js +1 -1
  610. package/dist/features/forms/Slider.js +2 -2
  611. package/dist/features/forms/Textarea.js +2 -2
  612. package/dist/features/forms/index.d.ts +0 -2
  613. package/dist/features/forms/index.js +4 -1
  614. package/dist/features/grouped/schemas/index.d.ts +83 -0
  615. package/dist/features/grouped/schemas/index.js +34 -0
  616. package/dist/features/history/repository/user-history.repository.js +2 -0
  617. package/dist/features/homepage/actions/carousel-actions.d.ts +3 -2
  618. package/dist/features/homepage/actions/carousel-actions.js +1 -0
  619. package/dist/features/homepage/actions/homepage-section-actions.js +5 -3
  620. package/dist/features/homepage/api/[id]/route.d.ts +1 -1
  621. package/dist/features/homepage/api/[id]/route.js +3 -1
  622. package/dist/features/homepage/api/carousel/[id]/route.d.ts +1 -1
  623. package/dist/features/homepage/api/carousel/[id]/route.js +3 -1
  624. package/dist/features/homepage/api/carousel/route.js +3 -0
  625. package/dist/features/homepage/api/route.js +3 -0
  626. package/dist/features/homepage/api/sections/[id]/route.js +4 -0
  627. package/dist/features/homepage/api/sections/route.js +3 -0
  628. package/dist/features/homepage/components/AdSlot.js +3 -2
  629. package/dist/features/homepage/components/AdvertisementBanner.js +15 -7
  630. package/dist/features/homepage/components/AnnouncementBar.js +2 -1
  631. package/dist/features/homepage/components/BeforeAfterCard.js +4 -4
  632. package/dist/features/homepage/components/BlogArticlesSection.js +2 -2
  633. package/dist/features/homepage/components/BrandsSection.js +5 -5
  634. package/dist/features/homepage/components/CTABannerSection.js +2 -2
  635. package/dist/features/homepage/components/CharacterHotspot.js +12 -12
  636. package/dist/features/homepage/components/CharacterHotspotForm.d.ts +7 -7
  637. package/dist/features/homepage/components/CharacterHotspotForm.js +39 -31
  638. package/dist/features/homepage/components/CollectionCardsSection.js +3 -1
  639. package/dist/features/homepage/components/CustomCardsSection.js +11 -10
  640. package/dist/features/homepage/components/CustomerReviewsSection.js +6 -4
  641. package/dist/features/homepage/components/EventsSection.js +2 -2
  642. package/dist/features/homepage/components/FAQSection.js +7 -6
  643. package/dist/features/homepage/components/FeaturedAuctionsSection.js +2 -2
  644. package/dist/features/homepage/components/FeaturedBundlesSection.js +5 -5
  645. package/dist/features/homepage/components/FeaturedPreOrdersSection.js +2 -2
  646. package/dist/features/homepage/components/FeaturedProductsSection.js +2 -2
  647. package/dist/features/homepage/components/FeaturedResultsSection.js +6 -5
  648. package/dist/features/homepage/components/FeaturedStoresSection.js +2 -2
  649. package/dist/features/homepage/components/GoogleReviewsSection.js +11 -11
  650. package/dist/features/homepage/components/HeroBanner.js +8 -8
  651. package/dist/features/homepage/components/HeroCarousel.js +44 -24
  652. package/dist/features/homepage/components/HeroSection.js +6 -2
  653. package/dist/features/homepage/components/HomepageSkeleton.js +5 -3
  654. package/dist/features/homepage/components/HowItWorksInfoView.d.ts +2 -2
  655. package/dist/features/homepage/components/HowItWorksInfoView.js +7 -5
  656. package/dist/features/homepage/components/HowItWorksSection.js +9 -5
  657. package/dist/features/homepage/components/MarketplaceHomepageView.js +8 -0
  658. package/dist/features/homepage/components/NewsletterBanner.js +11 -5
  659. package/dist/features/homepage/components/NewsletterSection.js +1 -1
  660. package/dist/features/homepage/components/PromoGrid.js +6 -4
  661. package/dist/features/homepage/components/SectionCarousel.js +12 -11
  662. package/dist/features/homepage/components/SecurityHighlightsSection.js +7 -5
  663. package/dist/features/homepage/components/ShopByCategorySection.js +11 -6
  664. package/dist/features/homepage/components/SiteFeaturesSection.js +3 -3
  665. package/dist/features/homepage/components/SocialFeedSection.js +7 -7
  666. package/dist/features/homepage/components/SocialPostCard.js +10 -8
  667. package/dist/features/homepage/components/StatsCounterSection.js +5 -3
  668. package/dist/features/homepage/components/TestimonialsCarousel.js +4 -4
  669. package/dist/features/homepage/components/TrustBadges.js +5 -3
  670. package/dist/features/homepage/components/TrustFeaturesSection.js +5 -7
  671. package/dist/features/homepage/components/TrustIndicatorsSection.js +3 -3
  672. package/dist/features/homepage/components/WelcomeSection.js +19 -4
  673. package/dist/features/homepage/components/WhatsAppCommunitySection.js +7 -5
  674. package/dist/features/homepage/constants/carousel-per-view.d.ts +56 -0
  675. package/dist/features/homepage/constants/carousel-per-view.js +22 -0
  676. package/dist/features/homepage/constants/hero-carousel-styles.d.ts +15 -0
  677. package/dist/features/homepage/constants/hero-carousel-styles.js +15 -0
  678. package/dist/features/homepage/hooks/useBlogArticles.d.ts +1 -1
  679. package/dist/features/homepage/hooks/useFeaturedAuctions.d.ts +2 -2
  680. package/dist/features/homepage/hooks/useFeaturedPreOrders.d.ts +2 -2
  681. package/dist/features/homepage/hooks/useFeaturedProducts.d.ts +1 -1
  682. package/dist/features/homepage/hooks/useFeaturedStores.d.ts +1 -1
  683. package/dist/features/homepage/hooks/useHeroCarousel.d.ts +1 -1
  684. package/dist/features/homepage/hooks/useHomepageEvents.d.ts +1 -1
  685. package/dist/features/homepage/hooks/useHomepageReviews.d.ts +1 -1
  686. package/dist/features/homepage/hooks/useHomepageSections.d.ts +1 -1
  687. package/dist/features/homepage/hooks/useTopBrands.d.ts +1 -1
  688. package/dist/features/homepage/hooks/useTopCategories.d.ts +1 -1
  689. package/dist/features/homepage/lib/social-feed-fetcher.js +8 -0
  690. package/dist/features/homepage/repository/carousel.repository.js +10 -0
  691. package/dist/features/homepage/repository/carousels.repository.js +6 -0
  692. package/dist/features/homepage/repository/homepage-sections.repository.d.ts +3 -2
  693. package/dist/features/homepage/repository/homepage-sections.repository.js +11 -0
  694. package/dist/features/homepage/schemas/index.d.ts +932 -0
  695. package/dist/features/homepage/schemas/index.js +164 -0
  696. package/dist/features/layout/AppLayoutShell.js +40 -27
  697. package/dist/features/layout/AutoBreadcrumbs.js +2 -2
  698. package/dist/features/layout/BottomActions.js +4 -4
  699. package/dist/features/layout/BottomNavItem.d.ts +6 -6
  700. package/dist/features/layout/BottomNavItem.js +7 -7
  701. package/dist/features/layout/BottomNavbar.js +12 -2
  702. package/dist/features/layout/BottomSheet.d.ts +1 -1
  703. package/dist/features/layout/BottomSheet.js +3 -3
  704. package/dist/features/layout/Breadcrumbs.js +2 -2
  705. package/dist/features/layout/FooterLayout.js +3 -3
  706. package/dist/features/layout/NavItem.js +1 -1
  707. package/dist/features/layout/NavbarLayout.js +3 -3
  708. package/dist/features/layout/SidebarLayout.js +1 -10
  709. package/dist/features/layout/TitleBarLayout.js +4 -4
  710. package/dist/features/live/components/LiveItemFilters.js +1 -1
  711. package/dist/features/live/components/LiveItemsIndexListing.js +2 -2
  712. package/dist/features/live/components/LiveItemsListView.js +1 -1
  713. package/dist/features/loyalty/api/admin/loyalty/grant/route.js +2 -0
  714. package/dist/features/loyalty/api/balance/route.js +2 -0
  715. package/dist/features/loyalty/api/earn/route.js +2 -0
  716. package/dist/features/loyalty/api/history/route.js +2 -0
  717. package/dist/features/loyalty/api/redeem/route.js +2 -0
  718. package/dist/features/loyalty/components/CoinsDisplay.js +4 -4
  719. package/dist/features/loyalty/hooks/useLoyaltyBalance.d.ts +1 -1
  720. package/dist/features/media/AvatarUpload.js +5 -2
  721. package/dist/features/media/MediaAudio.d.ts +22 -0
  722. package/dist/features/media/MediaAudio.js +15 -0
  723. package/dist/features/media/MediaAvatar.js +1 -1
  724. package/dist/features/media/MediaImage.d.ts +17 -1
  725. package/dist/features/media/MediaImage.js +30 -4
  726. package/dist/features/media/MediaLightbox.js +5 -5
  727. package/dist/features/media/MediaPickerModal.d.ts +3 -3
  728. package/dist/features/media/MediaPickerModal.js +7 -7
  729. package/dist/features/media/MediaVideo.d.ts +27 -1
  730. package/dist/features/media/MediaVideo.js +47 -5
  731. package/dist/features/media/finalize.js +3 -2
  732. package/dist/features/media/hooks/useMedia.d.ts +6 -5
  733. package/dist/features/media/modals/ImageCropModal.js +3 -3
  734. package/dist/features/media/modals/ImageEditor.js +5 -3
  735. package/dist/features/media/modals/VideoThumbnailSelector.js +4 -2
  736. package/dist/features/media/modals/VideoTrimModal.js +3 -1
  737. package/dist/features/media/upload/CameraCapture.js +2 -2
  738. package/dist/features/media/upload/ImageUpload.js +5 -3
  739. package/dist/features/media/upload/MediaUploadField.d.ts +14 -1
  740. package/dist/features/media/upload/MediaUploadField.js +53 -15
  741. package/dist/features/media/upload/MediaUploadList.js +5 -3
  742. package/dist/features/media/upload/video-poster.d.ts +48 -0
  743. package/dist/features/media/upload/video-poster.js +116 -0
  744. package/dist/features/media/upload/video-poster.test.d.ts +1 -0
  745. package/dist/features/media/upload/video-poster.test.js +42 -0
  746. package/dist/features/messages/actions/ping-rtdb.js +2 -0
  747. package/dist/features/messages/hooks/useConversation.js +2 -0
  748. package/dist/features/messages/hooks/useConversations.js +2 -0
  749. package/dist/features/messages/repository/conversations.repository.js +17 -15
  750. package/dist/features/messages/schemas/index.d.ts +177 -0
  751. package/dist/features/messages/schemas/index.js +35 -0
  752. package/dist/features/orders/api/track/[trackingId]/route.js +3 -0
  753. package/dist/features/orders/components/MarketplaceOrderCard.js +2 -2
  754. package/dist/features/orders/components/OrderSiblingPayments.js +2 -2
  755. package/dist/features/orders/components/OrdersList.js +6 -7
  756. package/dist/features/orders/components/RefundHistoryTable.js +4 -2
  757. package/dist/features/orders/components/RefundRequestView.js +5 -3
  758. package/dist/features/orders/hooks/useOrders.d.ts +2 -2
  759. package/dist/features/orders/repository/orders.repository.js +4 -0
  760. package/dist/features/orders/schemas/index.d.ts +677 -10
  761. package/dist/features/orders/schemas/index.js +148 -1
  762. package/dist/features/payments/hooks/usePayments.d.ts +1 -1
  763. package/dist/features/payments/repository/payout.repository.js +4 -3
  764. package/dist/features/payments/schemas/index.d.ts +252 -2
  765. package/dist/features/payments/schemas/index.js +48 -0
  766. package/dist/features/payments/types/index.d.ts +2 -1
  767. package/dist/features/pre-orders/api/[id]/route.js +4 -0
  768. package/dist/features/pre-orders/api/[slug]/route.js +2 -0
  769. package/dist/features/pre-orders/api/admin/[id]/route.js +3 -0
  770. package/dist/features/pre-orders/api/admin/route.js +2 -0
  771. package/dist/features/pre-orders/api/route.js +3 -0
  772. package/dist/features/pre-orders/components/MarketplacePreorderCard.js +11 -8
  773. package/dist/features/pre-orders/components/PreOrderActionsClient.js +6 -3
  774. package/dist/features/pre-orders/components/PreOrderBadge.js +4 -2
  775. package/dist/features/pre-orders/components/PreOrderDetailPageView.js +11 -9
  776. package/dist/features/pre-orders/components/PreOrdersIndexListing.js +2 -2
  777. package/dist/features/pre-orders/components/PreOrdersListView.js +1 -1
  778. package/dist/features/pre-orders/components/PreorderCard.js +1 -1
  779. package/dist/features/pre-orders/hooks/usePreOrders.d.ts +2 -2
  780. package/dist/features/products/api/[id]/route.d.ts +1 -1
  781. package/dist/features/products/api/[id]/route.js +9 -6
  782. package/dist/features/products/api/route.js +6 -2
  783. package/dist/features/products/columns/index.d.ts +11 -11
  784. package/dist/features/products/columns/index.js +11 -11
  785. package/dist/features/products/columns/productTableColumns.js +7 -7
  786. package/dist/features/products/components/AuctionsIndexListing.js +2 -2
  787. package/dist/features/products/components/BidHistory.js +4 -4
  788. package/dist/features/products/components/CompareOverlay.js +6 -5
  789. package/dist/features/products/components/CustomFieldsEditor.js +2 -2
  790. package/dist/features/products/components/CustomSectionTabContent.js +3 -2
  791. package/dist/features/products/components/CustomSectionsEditor.js +3 -3
  792. package/dist/features/products/components/GroupSettingsPanel.js +13 -5
  793. package/dist/features/products/components/MakeOfferButton.js +10 -6
  794. package/dist/features/products/components/MakeOfferForm.js +2 -2
  795. package/dist/features/products/components/MarketplaceBundleCard.js +7 -8
  796. package/dist/features/products/components/MarketplacePrizeDrawCard.js +8 -7
  797. package/dist/features/products/components/NonRefundableConsentModal.js +2 -2
  798. package/dist/features/products/components/PlaceBidForm.js +2 -2
  799. package/dist/features/products/components/PrizeDrawCollage.js +20 -5
  800. package/dist/features/products/components/PrizeDrawDetailPageView.js +4 -2
  801. package/dist/features/products/components/PrizeDrawEntryActions.js +1 -1
  802. package/dist/features/products/components/PrizeDrawItemsEditor.js +9 -7
  803. package/dist/features/products/components/PrizeDrawsIndexListing.js +2 -2
  804. package/dist/features/products/components/PrizeDrawsListingView.js +1 -1
  805. package/dist/features/products/components/PrizeDrawsSection.js +3 -1
  806. package/dist/features/products/components/PrizeRevealModal.js +5 -3
  807. package/dist/features/products/components/ProductCardMetadataSection.js +1 -1
  808. package/dist/features/products/components/ProductDetailActions.js +3 -1
  809. package/dist/features/products/components/ProductDetailPageView.js +30 -26
  810. package/dist/features/products/components/ProductDetailView.d.ts +4 -2
  811. package/dist/features/products/components/ProductDetailView.js +1 -1
  812. package/dist/features/products/components/ProductFeatureBadges.js +11 -9
  813. package/dist/features/products/components/ProductFeaturesSelector.js +4 -3
  814. package/dist/features/products/components/ProductForm.js +25 -6
  815. package/dist/features/products/components/ProductGalleryClient.js +6 -5
  816. package/dist/features/products/components/ProductGradingTab.js +3 -2
  817. package/dist/features/products/components/ProductGrid.js +35 -30
  818. package/dist/features/products/components/ProductInfo.js +2 -2
  819. package/dist/features/products/components/ProductTabs.js +2 -1
  820. package/dist/features/products/components/ProductTabsShell.js +2 -2
  821. package/dist/features/products/components/ProductsIndexListing.js +2 -2
  822. package/dist/features/products/components/ProductsIndexPageView.js +1 -1
  823. package/dist/features/products/components/RelatedProducts.js +3 -3
  824. package/dist/features/products/components/RelatedProductsCarousel.js +2 -2
  825. package/dist/features/products/components/ShowGroupSection.js +10 -9
  826. package/dist/features/products/components/SublistingCarouselSection.js +6 -4
  827. package/dist/features/products/components/SublistingCategorySelect.js +1 -1
  828. package/dist/features/products/hooks/useProductDetail.d.ts +1 -1
  829. package/dist/features/products/hooks/useRelatedProducts.d.ts +1 -1
  830. package/dist/features/products/repository/product-features.repository.d.ts +1 -1
  831. package/dist/features/products/repository/product-features.repository.js +6 -1
  832. package/dist/features/products/repository/products.repository.js +3 -0
  833. package/dist/features/products/schemas/index.d.ts +10 -10
  834. package/dist/features/products/schemas/product-features.validators.d.ts +6 -6
  835. package/dist/features/products/utils/listing-badge-variant.d.ts +10 -0
  836. package/dist/features/products/utils/listing-badge-variant.js +15 -0
  837. package/dist/features/products/utils/sanitize.d.ts +2 -2
  838. package/dist/features/products/utils/sanitize.js +0 -9
  839. package/dist/features/promotions/api/route.js +2 -0
  840. package/dist/features/promotions/components/CouponCard.d.ts +2 -1
  841. package/dist/features/promotions/components/CouponCard.js +10 -9
  842. package/dist/features/promotions/components/CouponsIndexListing.js +3 -3
  843. package/dist/features/promotions/components/PromotionsView.js +5 -5
  844. package/dist/features/promotions/hooks/useCouponValidate.d.ts +2 -1
  845. package/dist/features/promotions/hooks/usePromotions.d.ts +2 -2
  846. package/dist/features/promotions/repository/claimed-coupons.repository.js +5 -0
  847. package/dist/features/promotions/repository/coupons.repository.d.ts +9 -8
  848. package/dist/features/promotions/repository/coupons.repository.js +24 -9
  849. package/dist/features/promotions/schemas/index.d.ts +726 -10
  850. package/dist/features/promotions/schemas/index.js +111 -1
  851. package/dist/features/reviews/api/[id]/route.d.ts +1 -1
  852. package/dist/features/reviews/api/[id]/route.js +3 -1
  853. package/dist/features/reviews/api/route.js +3 -0
  854. package/dist/features/reviews/components/ReviewDetailPageView.js +2 -2
  855. package/dist/features/reviews/components/ReviewDetailShell.js +13 -9
  856. package/dist/features/reviews/components/ReviewModal.js +5 -5
  857. package/dist/features/reviews/components/ReviewSummary.js +8 -6
  858. package/dist/features/reviews/components/ReviewsIndexListing.js +3 -2
  859. package/dist/features/reviews/components/ReviewsIndexPageView.js +1 -1
  860. package/dist/features/reviews/components/ReviewsList.js +8 -7
  861. package/dist/features/reviews/hooks/useReviews.d.ts +2 -2
  862. package/dist/features/reviews/repository/reviews.repository.d.ts +1 -0
  863. package/dist/features/reviews/repository/reviews.repository.js +13 -0
  864. package/dist/features/reviews/schemas/index.d.ts +194 -0
  865. package/dist/features/reviews/schemas/index.js +41 -0
  866. package/dist/features/scams/components/ScamAwarenessModal.js +4 -3
  867. package/dist/features/scams/components/ScamProfileView.js +12 -9
  868. package/dist/features/scams/components/ScamRegistryView.js +7 -7
  869. package/dist/features/scams/repository/scammer.repository.js +5 -0
  870. package/dist/features/scams/schemas/index.d.ts +375 -0
  871. package/dist/features/scams/schemas/index.js +139 -0
  872. package/dist/features/search/api/route.js +2 -0
  873. package/dist/features/search/components/Search.js +15 -11
  874. package/dist/features/search/components/SearchFiltersRow.js +5 -3
  875. package/dist/features/search/components/SearchResultsSection.js +6 -6
  876. package/dist/features/search/components/SearchView.js +3 -3
  877. package/dist/features/search/hooks/useNavSuggestions.js +2 -0
  878. package/dist/features/search/hooks/useSearch.d.ts +2 -2
  879. package/dist/features/search/schemas/index.d.ts +2 -2
  880. package/dist/features/seller/actions/seller-actions.d.ts +3 -2
  881. package/dist/features/seller/actions/seller-actions.js +2 -1
  882. package/dist/features/seller/components/PhysicalLocationModal.js +2 -0
  883. package/dist/features/seller/components/PrintCenterView.js +2 -2
  884. package/dist/features/seller/components/QuickProductForm.js +3 -2
  885. package/dist/features/seller/components/SellerAddressesView.js +14 -6
  886. package/dist/features/seller/components/SellerAnalyticsAlertsView.js +12 -8
  887. package/dist/features/seller/components/SellerAnalyticsView.js +1 -1
  888. package/dist/features/seller/components/SellerBidsView.js +10 -8
  889. package/dist/features/seller/components/SellerBundlesView.js +7 -8
  890. package/dist/features/seller/components/SellerClassifiedView.js +7 -11
  891. package/dist/features/seller/components/SellerCouponEditorView.js +7 -5
  892. package/dist/features/seller/components/SellerCouponsView.js +5 -3
  893. package/dist/features/seller/components/SellerDashboardView.js +2 -2
  894. package/dist/features/seller/components/SellerDigitalCodesView.js +8 -10
  895. package/dist/features/seller/components/SellerFeaturesView.js +5 -2
  896. package/dist/features/seller/components/SellerGoogleReviewsView.js +6 -3
  897. package/dist/features/seller/components/SellerGroupedListingsView.js +6 -6
  898. package/dist/features/seller/components/SellerLiveView.js +9 -11
  899. package/dist/features/seller/components/SellerOffersPanel.js +7 -3
  900. package/dist/features/seller/components/SellerOrdersView.js +18 -9
  901. package/dist/features/seller/components/SellerPayoutMethodsView.js +6 -6
  902. package/dist/features/seller/components/SellerPayoutRequestView.js +5 -3
  903. package/dist/features/seller/components/SellerPayoutSettingsView.js +7 -5
  904. package/dist/features/seller/components/SellerPreOrdersView.js +6 -6
  905. package/dist/features/seller/components/SellerPrizeDrawsView.js +6 -6
  906. package/dist/features/seller/components/SellerProductShell.js +20 -5
  907. package/dist/features/seller/components/SellerProductsCards.js +14 -5
  908. package/dist/features/seller/components/SellerProductsFilterDrawer.js +3 -4
  909. package/dist/features/seller/components/SellerProductsView.js +15 -11
  910. package/dist/features/seller/components/SellerReviewsView.js +10 -5
  911. package/dist/features/seller/components/SellerShippingConfigsView.js +11 -9
  912. package/dist/features/seller/components/SellerShippingView.js +5 -3
  913. package/dist/features/seller/components/SellerSidebar.js +12 -12
  914. package/dist/features/seller/components/SellerStoreCategoriesView.js +6 -7
  915. package/dist/features/seller/components/SellerStoreSetupView.js +1 -1
  916. package/dist/features/seller/components/SellerStorefrontView.js +1 -1
  917. package/dist/features/seller/components/SellerTemplatesView.d.ts +2 -1
  918. package/dist/features/seller/components/SellerTemplatesView.js +10 -7
  919. package/dist/features/seller/components/analytics/SellerAnalyticsStats.js +1 -1
  920. package/dist/features/seller/components/analytics/SellerRevenueChart.js +4 -2
  921. package/dist/features/seller/components/analytics/SellerTopProducts.js +4 -2
  922. package/dist/features/seller/hooks/useSellerListingData.d.ts +2 -1
  923. package/dist/features/seller/hooks/useSellerListingData.js +5 -0
  924. package/dist/features/seller/hooks/useSellerPayouts.d.ts +3 -3
  925. package/dist/features/seller/hooks/useSellerStore.d.ts +6 -6
  926. package/dist/features/seller/hooks/useSellerStorefront.d.ts +2 -2
  927. package/dist/features/seller/repository/offer.repository.js +1 -0
  928. package/dist/features/seller/schemas/index.d.ts +4 -4
  929. package/dist/features/server-errors/repository/server-errors.repository.d.ts +19 -0
  930. package/dist/features/server-errors/repository/server-errors.repository.js +80 -0
  931. package/dist/features/server-errors/schemas/firestore.d.ts +42 -0
  932. package/dist/features/server-errors/schemas/firestore.js +18 -0
  933. package/dist/features/server-errors/schemas/index.d.ts +47 -0
  934. package/dist/features/server-errors/schemas/index.js +22 -0
  935. package/dist/features/shell/FormShell.d.ts +7 -1
  936. package/dist/features/shell/FormShell.js +14 -7
  937. package/dist/features/shell/QuickFormDrawer.d.ts +14 -5
  938. package/dist/features/shell/QuickFormDrawer.js +25 -7
  939. package/dist/features/shell/StepForm.d.ts +4 -3
  940. package/dist/features/shell/StepForm.js +10 -8
  941. package/dist/features/site-settings/components/ActionPermissionsManager.js +11 -11
  942. package/dist/features/site-settings/components/NavPermissionsManager.js +5 -3
  943. package/dist/features/site-settings/components/ThemeManagerView.d.ts +17 -0
  944. package/dist/features/site-settings/components/ThemeManagerView.js +169 -0
  945. package/dist/features/site-settings/components/__tests__/ThemeManagerView.test.d.ts +1 -0
  946. package/dist/features/site-settings/components/__tests__/ThemeManagerView.test.js +37 -0
  947. package/dist/features/store-extensions/schemas/firestore.d.ts +3 -2
  948. package/dist/features/store-extensions/schemas/firestore.js +0 -20
  949. package/dist/features/stores/api/[storeSlug]/auctions/route.js +2 -0
  950. package/dist/features/stores/api/[storeSlug]/products/route.js +2 -0
  951. package/dist/features/stores/api/[storeSlug]/reviews/route.js +3 -0
  952. package/dist/features/stores/api/[storeSlug]/route.d.ts +1 -1
  953. package/dist/features/stores/api/[storeSlug]/route.js +3 -1
  954. package/dist/features/stores/api/route.js +2 -0
  955. package/dist/features/stores/components/InteractiveStoreCard.js +3 -4
  956. package/dist/features/stores/components/StoreAboutView.js +6 -5
  957. package/dist/features/stores/components/StoreAuctionsListing.js +3 -3
  958. package/dist/features/stores/components/StoreCapabilitiesGuideView.js +8 -8
  959. package/dist/features/stores/components/StoreDetailLayoutView.js +2 -2
  960. package/dist/features/stores/components/StoreFinanceGuideView.js +8 -7
  961. package/dist/features/stores/components/StoreGuideHubView.js +7 -7
  962. package/dist/features/stores/components/StoreHeader.js +9 -7
  963. package/dist/features/stores/components/StoreListingsGuideView.js +16 -15
  964. package/dist/features/stores/components/StoreNavTabs.js +1 -1
  965. package/dist/features/stores/components/StoreOrdersGuideView.js +14 -14
  966. package/dist/features/stores/components/StorePreOrdersListing.js +3 -3
  967. package/dist/features/stores/components/StoreProductsListing.js +3 -3
  968. package/dist/features/stores/components/StoreProductsView.js +1 -1
  969. package/dist/features/stores/components/StoreReviewsListing.js +3 -2
  970. package/dist/features/stores/components/StoreScopedSearch.js +3 -1
  971. package/dist/features/stores/components/StoreSettingsGuideView.js +9 -8
  972. package/dist/features/stores/components/StoresIndexListing.js +4 -3
  973. package/dist/features/stores/components/StoresIndexPageView.js +1 -1
  974. package/dist/features/stores/hooks/useStoreAddressSelector.d.ts +1 -1
  975. package/dist/features/stores/hooks/useStores.d.ts +6 -6
  976. package/dist/features/stores/repository/store.repository.js +3 -2
  977. package/dist/features/stores/schemas/index.d.ts +570 -0
  978. package/dist/features/stores/schemas/index.js +98 -0
  979. package/dist/features/support/repository/support.repository.js +4 -0
  980. package/dist/features/support/schemas/index.d.ts +238 -0
  981. package/dist/features/support/schemas/index.js +64 -0
  982. package/dist/features/whatsapp-bot/api/send-status/route.js +2 -0
  983. package/dist/features/whatsapp-bot/api/webhook/route.js +2 -0
  984. package/dist/features/whatsapp-bot/components/SellerWhatsAppSettingsView.js +12 -13
  985. package/dist/features/whatsapp-bot/components/WhatsAppChatButton.js +1 -1
  986. package/dist/features/whatsapp-bot/helpers/whatsapp.js +2 -0
  987. package/dist/features/wishlist/components/WishlistPage.js +6 -7
  988. package/dist/features/wishlist/components/WishlistToggleButton.js +11 -9
  989. package/dist/features/wishlist/components/WishlistView.js +2 -2
  990. package/dist/features/wishlist/hooks/useUserWishlist.d.ts +17 -16
  991. package/dist/features/wishlist/hooks/useWishlist.d.ts +1 -1
  992. package/dist/features/wishlist/hooks/useWishlistWithGuest.d.ts +1 -1
  993. package/dist/features/wishlist/repository/user-wishlist.repository.js +2 -0
  994. package/dist/http/ApiClient.d.ts +8 -7
  995. package/dist/http/ApiClient.js +12 -4
  996. package/dist/index.d.ts +50 -3
  997. package/dist/index.js +77 -5
  998. package/dist/instrumentation/index.d.ts +3 -3
  999. package/dist/instrumentation/index.js +3 -3
  1000. package/dist/jobs.d.ts +2 -0
  1001. package/dist/jobs.js +5 -0
  1002. package/dist/monitoring/analytics.d.ts +3 -2
  1003. package/dist/monitoring/analytics.js +5 -0
  1004. package/dist/monitoring/client-logger.d.ts +3 -2
  1005. package/dist/monitoring/client-logger.js +31 -11
  1006. package/dist/monitoring/error-tracking.d.ts +2 -1
  1007. package/dist/monitoring/error-tracking.js +1 -0
  1008. package/dist/monitoring/performance.js +1 -0
  1009. package/dist/monitoring/server-logger.d.ts +2 -1
  1010. package/dist/monitoring/server-logger.js +53 -28
  1011. package/dist/next/ErrorBoundary.js +1 -2
  1012. package/dist/next/IAuthVerifier.d.ts +6 -5
  1013. package/dist/next/IAuthVerifier.js +0 -22
  1014. package/dist/next/api/api-response.d.ts +4 -3
  1015. package/dist/next/api/api-response.js +4 -1
  1016. package/dist/next/api/apiHandler.js +7 -1
  1017. package/dist/next/api/errorHandler.d.ts +6 -6
  1018. package/dist/next/api/errorHandler.js +9 -6
  1019. package/dist/next/api/parseJsonBody.d.ts +16 -0
  1020. package/dist/next/api/parseJsonBody.js +36 -0
  1021. package/dist/next/api/routeHandler.d.ts +24 -41
  1022. package/dist/next/api/routeHandler.js +157 -44
  1023. package/dist/next/cache-middleware.d.ts +2 -2
  1024. package/dist/next/cache-middleware.js +5 -3
  1025. package/dist/next/components/ErrorView.js +3 -3
  1026. package/dist/next/components/GlobalError.js +3 -3
  1027. package/dist/next/components/NotFoundView.js +2 -19
  1028. package/dist/next/components/UnauthorizedView.js +2 -15
  1029. package/dist/next/middleware/chain.d.ts +5 -5
  1030. package/dist/next/middleware/chain.js +8 -5
  1031. package/dist/next/middleware/pii-redactor.d.ts +4 -4
  1032. package/dist/next/middleware/pii-redactor.js +4 -4
  1033. package/dist/next/middleware/pii-scrubber.js +2 -0
  1034. package/dist/providers/auth-firebase/browser-stub.js +0 -1
  1035. package/dist/providers/auth-firebase/helpers.js +3 -6
  1036. package/dist/providers/auth-firebase/provider.js +2 -1
  1037. package/dist/providers/auth-firebase/session.js +1 -1
  1038. package/dist/providers/db-firebase/admin-app-lite.js +0 -3
  1039. package/dist/providers/db-firebase/admin.js +1 -4
  1040. package/dist/providers/db-firebase/base.d.ts +1 -1
  1041. package/dist/providers/db-firebase/base.js +5 -1
  1042. package/dist/providers/db-firebase/base.repository.d.ts +6 -5
  1043. package/dist/providers/db-firebase/base.repository.js +14 -0
  1044. package/dist/providers/db-firebase/browser-stub.js +0 -1
  1045. package/dist/providers/db-firebase/field-ops.js +2 -0
  1046. package/dist/providers/db-firebase/helpers.d.ts +2 -2
  1047. package/dist/providers/db-firebase/helpers.js +7 -2
  1048. package/dist/providers/db-firebase/index.d.ts +1 -1
  1049. package/dist/providers/db-firebase/index.js +1 -1
  1050. package/dist/providers/db-firebase/realtime.d.ts +1 -1
  1051. package/dist/providers/db-firebase/realtime.js +16 -4
  1052. package/dist/providers/db-firebase/sieve.d.ts +5 -5
  1053. package/dist/providers/db-firebase/sieve.js +13 -7
  1054. package/dist/providers/email-resend/provider.d.ts +3 -3
  1055. package/dist/providers/email-resend/provider.js +3 -3
  1056. package/dist/providers/payment-razorpay/index.d.ts +7 -6
  1057. package/dist/providers/payment-razorpay/index.js +8 -5
  1058. package/dist/providers/shipping-shiprocket/index.d.ts +3 -3
  1059. package/dist/providers/shipping-shiprocket/index.js +4 -3
  1060. package/dist/providers/storage-firebase/client.js +9 -0
  1061. package/dist/providers/storage-firebase/index.d.ts +1 -1
  1062. package/dist/providers/storage-firebase/index.js +1 -1
  1063. package/dist/providers/storage-firebase/provider.d.ts +3 -3
  1064. package/dist/providers/storage-firebase/provider.js +3 -3
  1065. package/dist/react/contexts/SessionContext.d.ts +4 -3
  1066. package/dist/react/contexts/SessionContext.js +6 -0
  1067. package/dist/react/contexts/index.d.ts +0 -2
  1068. package/dist/react/contexts/index.js +2 -1
  1069. package/dist/react/hooks/use-action-dispatch.d.ts +2 -1
  1070. package/dist/react/hooks/use-action-dispatch.js +2 -0
  1071. package/dist/react/hooks/useBreakpoint.d.ts +1 -1
  1072. package/dist/react/hooks/useBreakpoint.js +1 -1
  1073. package/dist/react/hooks/useBulkAction.d.ts +4 -4
  1074. package/dist/react/hooks/useBulkAction.js +2 -0
  1075. package/dist/react/hooks/useCamera.js +2 -0
  1076. package/dist/react/hooks/useClickOutside.d.ts +3 -3
  1077. package/dist/react/hooks/useClickOutside.js +3 -3
  1078. package/dist/react/hooks/useContainerGrid.d.ts +5 -5
  1079. package/dist/react/hooks/useContainerGrid.js +5 -5
  1080. package/dist/react/hooks/useCountdown.js +1 -0
  1081. package/dist/react/hooks/useEntityDelete.js +2 -0
  1082. package/dist/react/hooks/useFormStatePreservation.d.ts +2 -1
  1083. package/dist/react/hooks/useGesture.d.ts +3 -3
  1084. package/dist/react/hooks/useGesture.js +3 -3
  1085. package/dist/react/hooks/useInlineRowEdit.js +3 -0
  1086. package/dist/react/hooks/useKeyPress.d.ts +2 -2
  1087. package/dist/react/hooks/useKeyPress.js +2 -2
  1088. package/dist/react/hooks/usePendingFilters.d.ts +10 -10
  1089. package/dist/react/hooks/usePendingFilters.js +10 -10
  1090. package/dist/react/hooks/usePendingTable.d.ts +1 -1
  1091. package/dist/react/hooks/usePendingTable.js +1 -1
  1092. package/dist/react/hooks/usePullToRefresh.d.ts +5 -5
  1093. package/dist/react/hooks/usePullToRefresh.js +5 -5
  1094. package/dist/react/hooks/useRealtimeEvent.d.ts +2 -1
  1095. package/dist/react/hooks/useRealtimeEvent.js +2 -0
  1096. package/dist/react/hooks/useSwipe.d.ts +3 -3
  1097. package/dist/react/hooks/useSwipe.js +3 -3
  1098. package/dist/react/hooks/useUrlTable.js +2 -2
  1099. package/dist/react/index.d.ts +0 -2
  1100. package/dist/react/index.js +2 -2
  1101. package/dist/react/useModalStack.d.ts +1 -1
  1102. package/dist/react/useModalStack.js +1 -1
  1103. package/dist/schemas/api-routes.d.ts +7 -0
  1104. package/dist/schemas/api-routes.js +66 -0
  1105. package/dist/schemas/firestore-helpers.d.ts +35 -0
  1106. package/dist/schemas/firestore-helpers.js +29 -0
  1107. package/dist/schemas/index.d.ts +3 -0
  1108. package/dist/schemas/index.js +6 -0
  1109. package/dist/schemas/registry.d.ts +6719 -0
  1110. package/dist/schemas/registry.js +174 -0
  1111. package/dist/schemas/sieve.d.ts +45 -0
  1112. package/dist/schemas/sieve.js +55 -0
  1113. package/dist/schemas/types.d.ts +61 -0
  1114. package/dist/schemas/types.js +10 -0
  1115. package/dist/schemas/webhooks/google-oauth.d.ts +83 -0
  1116. package/dist/schemas/webhooks/google-oauth.js +39 -0
  1117. package/dist/schemas/webhooks/razorpay.d.ts +2634 -0
  1118. package/dist/schemas/webhooks/razorpay.js +104 -0
  1119. package/dist/schemas/webhooks/shiprocket.d.ts +30 -0
  1120. package/dist/schemas/webhooks/shiprocket.js +22 -0
  1121. package/dist/security/authorization.d.ts +5 -4
  1122. package/dist/security/authorization.js +1 -0
  1123. package/dist/security/csp.d.ts +1 -1
  1124. package/dist/security/csp.js +1 -1
  1125. package/dist/security/pii-encrypt.d.ts +9 -9
  1126. package/dist/security/pii-encrypt.js +15 -10
  1127. package/dist/security/pii-redact.js +3 -0
  1128. package/dist/security/rate-limit.d.ts +4 -0
  1129. package/dist/security/rate-limit.js +1 -0
  1130. package/dist/security/settings-encryption.js +0 -2
  1131. package/dist/seed/cart-seed-data.js +1 -1
  1132. package/dist/seed/categories-seed-data.js +145 -201
  1133. package/dist/seed/factories/homepage-section.factory.d.ts +2 -1
  1134. package/dist/seed/grouped-listings-seed-data.js +2 -2
  1135. package/dist/seed/index.js +0 -2
  1136. package/dist/seed/manifest.js +6 -1
  1137. package/dist/seed/products-prize-draws-seed-data.js +38 -37
  1138. package/dist/seed/products-standard-seed-data.js +5 -122
  1139. package/dist/seed/runner.js +2 -0
  1140. package/dist/seed/stores-seed-data.js +0 -29
  1141. package/dist/seed/test-utils.d.ts +4 -3
  1142. package/dist/seed/test-utils.js +2 -2
  1143. package/dist/seed/users-seed-data.js +0 -30
  1144. package/dist/seo/json-ld.d.ts +20 -11
  1145. package/dist/seo/json-ld.js +2 -2
  1146. package/dist/server.d.ts +15 -0
  1147. package/dist/server.js +29 -0
  1148. package/dist/stores/panel-store.d.ts +3 -2
  1149. package/dist/styles.css +258 -7
  1150. package/dist/tailwind-utilities.css +1 -1
  1151. package/dist/theme/index.d.ts +14 -0
  1152. package/dist/theme/index.js +12 -0
  1153. package/dist/tokens/index.d.ts +2 -534
  1154. package/dist/tokens/index.js +16 -109
  1155. package/dist/tokens/themes/default-dark.d.ts +10 -0
  1156. package/dist/tokens/themes/default-dark.js +84 -0
  1157. package/dist/tokens/themes/default-light.d.ts +10 -0
  1158. package/dist/tokens/themes/default-light.js +87 -0
  1159. package/dist/tokens/themes/index.d.ts +15 -0
  1160. package/dist/tokens/themes/index.js +17 -0
  1161. package/dist/tokens/themes/required.d.ts +15 -0
  1162. package/dist/tokens/themes/required.js +89 -0
  1163. package/dist/tokens/themes/types.d.ts +37 -0
  1164. package/dist/tokens/themes/types.js +1 -0
  1165. package/dist/tokens/tokens.css +108 -6
  1166. package/dist/ui/DataTable.js +5 -5
  1167. package/dist/ui/components/Anchor.d.ts +40 -0
  1168. package/dist/ui/components/Anchor.js +40 -0
  1169. package/dist/ui/components/Badge.d.ts +5 -1
  1170. package/dist/ui/components/Badge.js +7 -2
  1171. package/dist/ui/components/BaseListingCard.js +2 -1
  1172. package/dist/ui/components/Button.d.ts +25 -1
  1173. package/dist/ui/components/Button.js +100 -8
  1174. package/dist/ui/components/Card.d.ts +5 -2
  1175. package/dist/ui/components/Card.js +13 -1
  1176. package/dist/ui/components/Card.style.css +33 -0
  1177. package/dist/ui/components/ConfirmDeleteModal.d.ts +5 -5
  1178. package/dist/ui/components/ConfirmDeleteModal.js +5 -5
  1179. package/dist/ui/components/DescriptionField.d.ts +2 -2
  1180. package/dist/ui/components/DescriptionField.js +2 -2
  1181. package/dist/ui/components/DetailViewShell.d.ts +4 -2
  1182. package/dist/ui/components/DetailViewShell.js +1 -1
  1183. package/dist/ui/components/Details.d.ts +29 -0
  1184. package/dist/ui/components/Details.js +28 -0
  1185. package/dist/ui/components/Dialog.d.ts +26 -0
  1186. package/dist/ui/components/Dialog.js +42 -0
  1187. package/dist/ui/components/Div.d.ts +24 -0
  1188. package/dist/ui/components/Div.js +82 -1
  1189. package/dist/ui/components/FallbackShell.d.ts +31 -0
  1190. package/dist/ui/components/FallbackShell.js +71 -0
  1191. package/dist/ui/components/Fieldset.d.ts +19 -0
  1192. package/dist/ui/components/Fieldset.js +26 -0
  1193. package/dist/ui/components/FilterChipGroup.d.ts +4 -4
  1194. package/dist/ui/components/FlowDiagram.js +6 -2
  1195. package/dist/ui/components/Form.d.ts +37 -4
  1196. package/dist/ui/components/Form.js +38 -3
  1197. package/dist/ui/components/FormGrid.d.ts +3 -3
  1198. package/dist/ui/components/FormGrid.js +3 -3
  1199. package/dist/ui/components/HorizontalRule.d.ts +21 -0
  1200. package/dist/ui/components/HorizontalRule.js +21 -0
  1201. package/dist/ui/components/HotspotMarker.d.ts +34 -0
  1202. package/dist/ui/components/HotspotMarker.js +80 -0
  1203. package/dist/ui/components/IconBox.d.ts +21 -0
  1204. package/dist/ui/components/IconBox.js +32 -0
  1205. package/dist/ui/components/IconButton.d.ts +1 -1
  1206. package/dist/ui/components/IconButton.js +1 -1
  1207. package/dist/ui/components/Iframe.d.ts +21 -0
  1208. package/dist/ui/components/Iframe.js +21 -0
  1209. package/dist/ui/components/ImageGallery.js +10 -2
  1210. package/dist/ui/components/ImageLightbox.js +4 -2
  1211. package/dist/ui/components/Input.js +2 -2
  1212. package/dist/ui/components/Kbd.d.ts +10 -0
  1213. package/dist/ui/components/Kbd.js +17 -0
  1214. package/dist/ui/components/Layout.d.ts +88 -18
  1215. package/dist/ui/components/Layout.js +80 -8
  1216. package/dist/ui/components/Layout.style.css +50 -0
  1217. package/dist/ui/components/ListingToolbar.js +3 -3
  1218. package/dist/ui/components/Motion.js +3 -1
  1219. package/dist/ui/components/NavbarChevron.d.ts +5 -0
  1220. package/dist/ui/components/NavbarChevron.js +20 -0
  1221. package/dist/ui/components/PaginatedSelect.d.ts +5 -2
  1222. package/dist/ui/components/PaginatedSelect.js +2 -2
  1223. package/dist/ui/components/PasswordStrengthIndicator.js +4 -4
  1224. package/dist/ui/components/Quote.d.ts +11 -0
  1225. package/dist/ui/components/Quote.js +18 -0
  1226. package/dist/ui/components/Responsive.d.ts +26 -0
  1227. package/dist/ui/components/Responsive.js +79 -0
  1228. package/dist/ui/components/Scrim.d.ts +25 -0
  1229. package/dist/ui/components/Scrim.js +27 -0
  1230. package/dist/ui/components/Semantic.d.ts +170 -29
  1231. package/dist/ui/components/Semantic.js +398 -31
  1232. package/dist/ui/components/SideDrawer.d.ts +1 -1
  1233. package/dist/ui/components/SideDrawer.js +1 -1
  1234. package/dist/ui/components/SideModal.js +1 -1
  1235. package/dist/ui/components/SiteLogo.d.ts +20 -19
  1236. package/dist/ui/components/SiteLogo.js +46 -16
  1237. package/dist/ui/components/SlottedListingView.js +1 -1
  1238. package/dist/ui/components/StackedViewShell.js +1 -1
  1239. package/dist/ui/components/StickyToolbar.d.ts +29 -0
  1240. package/dist/ui/components/StickyToolbar.js +34 -0
  1241. package/dist/ui/components/TabStrip.d.ts +7 -7
  1242. package/dist/ui/components/TabStrip.js +7 -7
  1243. package/dist/ui/components/TextLink.d.ts +19 -1
  1244. package/dist/ui/components/TextLink.js +47 -2
  1245. package/dist/ui/components/Textarea.js +1 -1
  1246. package/dist/ui/components/Toast.d.ts +15 -2
  1247. package/dist/ui/components/Toast.js +29 -5
  1248. package/dist/ui/components/Tooltip.d.ts +1 -1
  1249. package/dist/ui/components/Tooltip.js +5 -2
  1250. package/dist/ui/components/Typography.d.ts +119 -10
  1251. package/dist/ui/components/Typography.js +209 -7
  1252. package/dist/ui/components/Typography.style.css +66 -0
  1253. package/dist/ui/components/UnsavedChangesModal.js +3 -1
  1254. package/dist/ui/components/__tests__/new-primitives.test.d.ts +1 -0
  1255. package/dist/ui/components/__tests__/new-primitives.test.js +187 -0
  1256. package/dist/ui/components/surface-tokens.d.ts +166 -10
  1257. package/dist/ui/components/surface-tokens.js +170 -10
  1258. package/dist/ui/forms/ColorPickerField.d.ts +21 -0
  1259. package/dist/ui/forms/ColorPickerField.js +36 -0
  1260. package/dist/ui/forms/FieldTextarea.d.ts +13 -0
  1261. package/dist/ui/forms/FieldTextarea.js +25 -0
  1262. package/dist/ui/forms/FormShell.d.ts +28 -6
  1263. package/dist/ui/forms/FormShell.js +32 -2
  1264. package/dist/ui/forms/FormShell.style.css +7 -0
  1265. package/dist/ui/forms/index.d.ts +5 -1
  1266. package/dist/ui/forms/index.js +3 -1
  1267. package/dist/ui/index.d.ts +8 -0
  1268. package/dist/ui/index.js +5 -0
  1269. package/dist/ui/rich-text/RichText.d.ts +8 -8
  1270. package/dist/ui/rich-text/RichText.js +1 -0
  1271. package/dist/utils/action-response.js +1 -0
  1272. package/dist/utils/action-result.d.ts +11 -0
  1273. package/dist/utils/action-result.js +10 -0
  1274. package/dist/utils/auth-error.d.ts +1 -8
  1275. package/dist/utils/auth-error.js +5 -20
  1276. package/dist/utils/date.formatter.js +1 -0
  1277. package/dist/utils/event-manager.js +0 -2
  1278. package/dist/utils/filter.helper.d.ts +3 -3
  1279. package/dist/utils/filter.helper.js +3 -3
  1280. package/dist/utils/media-url.d.ts +9 -0
  1281. package/dist/utils/media-url.js +9 -1
  1282. package/dist/utils/object.helper.d.ts +5 -5
  1283. package/dist/utils/object.helper.js +2 -0
  1284. package/dist/utils/schema-ui.d.ts +2 -2
  1285. package/dist/utils/schema-ui.js +3 -35
  1286. package/dist/utils/type.converter.d.ts +2 -1
  1287. package/dist/validation/input.validator.js +1 -0
  1288. package/dist/validation/schemas.js +6 -3
  1289. package/package.json +4 -3
@@ -1,6 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Button, Div, Span, Text } from "../../../ui";
3
- import { THEME_CONSTANTS } from "../../../tokens";
2
+ import { Button, Div, Span, Stack, Text } from "../../../ui";
4
3
  export function AddressCard({ address, onEdit, onDelete, onSetDefault, labels = {}, }) {
5
4
  const line1 = "line1" in address && address.line1
6
5
  ? address.line1
@@ -8,8 +7,10 @@ export function AddressCard({ address, onEdit, onDelete, onSetDefault, labels =
8
7
  const line2 = "line2" in address && address.line2
9
8
  ? address.line2
10
9
  : address.addressLine2;
11
- return (_jsxs(Div, { surface: "card", padding: "sm", className: "relative", children: [address.isDefault && (_jsx(Span, { size: "xs", weight: "medium", className: "absolute right-3 top-3 rounded-full bg-success-surface px-2 py-0.5 text-success", children: labels.defaultBadge ?? "Default" })), address.label && (_jsx(Text, { className: "mb-1 text-xs font-semibold uppercase tracking-wide text-neutral-500 dark:text-zinc-400", children: address.label })), _jsx(Text, { className: "text-sm text-neutral-900 dark:text-zinc-100", children: line1 }), line2 && _jsx(Text, { className: "text-sm text-neutral-900 dark:text-zinc-100", children: line2 }), _jsxs(Text, { className: "text-sm text-neutral-900 dark:text-zinc-100", children: [address.city, ", ", address.state, " ", address.postalCode] }), _jsx(Text, { className: "text-sm text-neutral-900 dark:text-zinc-100", children: address.country }), address.phone && (_jsx(Text, { className: "mt-1 text-sm text-neutral-500 dark:text-zinc-400", children: address.phone })), _jsxs(Div, { className: `mt-3 flex ${THEME_CONSTANTS.spacing.gap.xs}`, children: [onEdit && (_jsx(Button, { onClick: () => onEdit(address), variant: "ghost", size: "sm", className: "text-xs font-medium text-primary hover:underline", children: labels.edit ?? "Edit" })), onDelete && (_jsx(Button, { onClick: () => onDelete(address.id), variant: "ghost", size: "sm", className: "text-xs font-medium text-error hover:underline", children: labels.delete ?? "Delete" })), !address.isDefault && onSetDefault && (_jsx(Button, { onClick: () => onSetDefault(address.id), variant: "outline", size: "sm", className: "ml-auto text-xs font-medium", children: labels.setDefault ?? "Set default" }))] })] }));
10
+ return (_jsxs(Div, { surface: "card", padding: "sm", className: "relative", children: [address.isDefault && (_jsx(Span, { color: "success", surface: "success-surface", size: "xs", weight: "medium", className: "absolute right-3 top-3", rounded: "full", padding: "pill-xs", children: labels.defaultBadge ?? "Default" })), address.label && (_jsx(Text, { className: "mb-1 tracking-wide text-neutral-500 dark:text-neutral-400", size: "xs", weight: "semibold", transform: "uppercase", children: address.label })), _jsx(Text, { className: "text-neutral-900 dark:text-neutral-100", size: "sm", children: line1 }), line2 && _jsx(Text, { className: "text-neutral-900 dark:text-neutral-100", size: "sm", children: line2 }), _jsxs(Text, { className: "text-neutral-900 dark:text-neutral-100", size: "sm", children: [address.city, ", ", address.state, " ", address.postalCode] }), _jsx(Text, { className: "text-neutral-900 dark:text-neutral-100", size: "sm", children: address.country }), address.phone && (_jsx(Text, { className: "mt-1 text-neutral-500 dark:text-neutral-400", size: "sm", children: address.phone })), _jsxs(Div, { layout: "flex", gap: "1", className: "mt-3", children: [onEdit && (_jsx(Button, { onClick: () => onEdit(address), variant: "ghost", size: "sm", className: "text-xs font-medium text-primary hover:underline", children: labels.edit ?? "Edit" })), onDelete && (_jsx(Button, { onClick: () => onDelete(address.id), variant: "ghost", size: "sm", className: "text-xs font-medium text-error hover:underline", children: labels.delete ?? "Delete" })), !address.isDefault && onSetDefault && (_jsx(Button, { onClick: () => onSetDefault(address.id), variant: "outline", size: "sm", className: "ml-auto text-xs font-medium", children: labels.setDefault ?? "Set default" }))] })] }));
12
11
  }
13
12
  export function AddressBook({ addresses, onEdit, onDelete, onSetDefault, onAdd, emptyLabel = "No saved addresses", addLabel = "Add Address", }) {
14
- return (_jsxs(Div, { className: "space-y-4", children: [addresses.length === 0 && (_jsx(Text, { className: "text-sm text-neutral-500 dark:text-zinc-400", children: emptyLabel })), _jsx(Div, { className: `grid ${THEME_CONSTANTS.spacing.gap.md} sm:grid-cols-2`, children: addresses.map((addr) => (_jsx(AddressCard, { address: addr, onEdit: onEdit, onDelete: onDelete, onSetDefault: onSetDefault }, addr.id))) }), onAdd && (_jsxs(Button, { onClick: onAdd, variant: "outline", className: "mt-2 rounded-lg border border-dashed border-neutral-300 dark:border-slate-600 px-4 py-3 text-sm font-medium text-neutral-500 dark:text-zinc-400 transition hover:border-neutral-400 dark:hover:border-slate-500 hover:text-neutral-700 dark:hover:text-zinc-200", children: ["+ ", addLabel] }))] }));
13
+ return (_jsxs(Stack, { gap: "md", children: [addresses.length === 0 && (_jsx(Text, { className: "text-neutral-500 dark:text-neutral-400", size: "sm", children: emptyLabel })), _jsx(Div, { layout: "grid", gap: "4", className: "sm:grid-cols-2", children: addresses.map((addr) => (_jsx(AddressCard, { address: addr, onEdit: onEdit, onDelete: onDelete, onSetDefault: onSetDefault }, addr.id))) }), onAdd && (
14
+ // audit-variant-ok: add-address Button — dashed border + hover-shade transitions; Button.border lacks dashed variant + hover state
15
+ _jsxs(Button, { rounded: "lg", onClick: onAdd, variant: "outline", paddingX: "md", paddingY: "md", textSize: "sm", weight: "medium", className: "mt-2 border border-dashed border-neutral-300 dark:border-slate-600 text-neutral-500 dark:text-zinc-400 transition hover:border-neutral-400 dark:hover:border-slate-500 hover:text-neutral-700 dark:hover:text-zinc-200", children: ["+ ", addLabel] }))] }));
15
16
  }
@@ -1,9 +1,8 @@
1
1
  "use client";
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
3
3
  import { useState } from "react";
4
- import { Button, Checkbox, Div, FormField, FormGroup } from "../../../ui";
5
- import { useFormShellState } from "../../../ui/forms";
6
- import { THEME_CONSTANTS } from "../../../tokens";
4
+ import { Button, Checkbox, FormField, FormGroup, Row } from "../../../ui";
5
+ import { Form } from "../../../ui/components/Form";
7
6
  const DEFAULT_LABELS = {
8
7
  label: "Address Label",
9
8
  fullName: "Full Name",
@@ -34,7 +33,6 @@ export function AddressForm({ initialData, onSubmit, onCancel, isLoading = false
34
33
  const mergedLabels = { ...DEFAULT_LABELS, ...labels };
35
34
  const mergedPlaceholders = { ...DEFAULT_PLACEHOLDERS, ...placeholders };
36
35
  const effectiveSubmitLabel = submitLabel ?? mergedLabels.save;
37
- const { shellCtx, setFieldError, clearErrors } = useFormShellState();
38
36
  const [formData, setFormData] = useState({
39
37
  label: initialData?.label || "",
40
38
  fullName: initialData?.fullName || "",
@@ -49,30 +47,27 @@ export function AddressForm({ initialData, onSubmit, onCancel, isLoading = false
49
47
  });
50
48
  const handleChange = (field, value) => {
51
49
  setFormData((prev) => ({ ...prev, [field]: value }));
52
- if (typeof value === "string" && value.trim())
53
- setFieldError(field, null);
54
50
  };
55
- const handleSubmit = async (e) => {
56
- e.preventDefault();
57
- clearErrors();
58
- const errs = {};
59
- if (!formData.fullName.trim())
60
- errs["fullName"] = "Full name is required";
61
- if (!formData.phone.trim())
62
- errs["phone"] = "Phone number is required";
63
- if (!formData.addressLine1.trim())
64
- errs["addressLine1"] = "Address is required";
65
- if (!formData.city.trim())
66
- errs["city"] = "City is required";
67
- if (!formData.state.trim())
68
- errs["state"] = "State is required";
69
- if (!formData.postalCode.trim())
70
- errs["postalCode"] = "Postal code is required";
71
- if (Object.keys(errs).length > 0) {
72
- Object.entries(errs).forEach(([k, v]) => setFieldError(k, v));
73
- return;
74
- }
75
- await onSubmit(formData);
76
- };
77
- return (_jsxs("form", { onSubmit: handleSubmit, className: "space-y-4", children: [_jsx(FormField, { label: mergedLabels.label, name: "label", type: "text", value: formData.label, onChange: (value) => handleChange("label", value), placeholder: mergedPlaceholders.label, required: true }), _jsx(FormField, { label: mergedLabels.fullName, name: "fullName", type: "text", value: formData.fullName, onChange: (value) => handleChange("fullName", value), placeholder: mergedPlaceholders.fullName, required: true, error: shellCtx.errors["fullName"] }), _jsx(FormField, { label: mergedLabels.phone, name: "phone", type: "tel", value: formData.phone, onChange: (value) => handleChange("phone", value), placeholder: mergedPlaceholders.phone, required: true, error: shellCtx.errors["phone"] }), _jsx(FormField, { label: mergedLabels.addressLine1, name: "addressLine1", type: "text", value: formData.addressLine1, onChange: (value) => handleChange("addressLine1", value), placeholder: mergedPlaceholders.addressLine1, required: true, error: shellCtx.errors["addressLine1"] }), _jsx(FormField, { label: mergedLabels.addressLine2, name: "addressLine2", type: "text", value: formData.addressLine2, onChange: (value) => handleChange("addressLine2", value), placeholder: mergedPlaceholders.addressLine2 }), _jsxs(FormGroup, { columns: 3, children: [_jsx(FormField, { label: mergedLabels.city, name: "city", type: "text", value: formData.city, onChange: (value) => handleChange("city", value), placeholder: mergedPlaceholders.city, required: true, error: shellCtx.errors["city"] }), _jsx(FormField, { label: mergedLabels.state, name: "state", type: "text", value: formData.state, onChange: (value) => handleChange("state", value), placeholder: mergedPlaceholders.state, required: true, error: shellCtx.errors["state"] }), _jsx(FormField, { label: mergedLabels.postalCode, name: "postalCode", type: "text", value: formData.postalCode, onChange: (value) => handleChange("postalCode", value), placeholder: mergedPlaceholders.postalCode, required: true, error: shellCtx.errors["postalCode"] })] }), _jsx(FormField, { label: mergedLabels.country, name: "country", type: "text", value: formData.country, onChange: (value) => handleChange("country", value), placeholder: mergedPlaceholders.country, required: true }), _jsx(Checkbox, { checked: formData.isDefault, onChange: (e) => handleChange("isDefault", e.target.checked), label: mergedLabels.setDefault }), _jsxs(Div, { className: `flex items-center justify-start ${THEME_CONSTANTS.spacing.gap.xs} pt-2`, children: [_jsx(Button, { type: "button", variant: "outline", onClick: onCancel, disabled: isLoading, children: mergedLabels.cancel }), _jsx(Button, { type: "submit", variant: "primary", disabled: isLoading, children: isLoading ? mergedLabels.loading : effectiveSubmitLabel })] })] }));
51
+ return (_jsx(Form, { onSubmit: (e) => e.preventDefault(), spacing: "md", children: ({ setFieldError, clearErrors }) => (_jsxs(_Fragment, { children: [_jsx(FormField, { label: mergedLabels.label, name: "label", type: "text", value: formData.label, onChange: (value) => handleChange("label", value), placeholder: mergedPlaceholders.label, required: true }), _jsx(FormField, { label: mergedLabels.fullName, name: "fullName", type: "text", value: formData.fullName, onChange: (value) => handleChange("fullName", value), placeholder: mergedPlaceholders.fullName, required: true }), _jsx(FormField, { label: mergedLabels.phone, name: "phone", type: "tel", value: formData.phone, onChange: (value) => handleChange("phone", value), placeholder: mergedPlaceholders.phone, required: true }), _jsx(FormField, { label: mergedLabels.addressLine1, name: "addressLine1", type: "text", value: formData.addressLine1, onChange: (value) => handleChange("addressLine1", value), placeholder: mergedPlaceholders.addressLine1, required: true }), _jsx(FormField, { label: mergedLabels.addressLine2, name: "addressLine2", type: "text", value: formData.addressLine2, onChange: (value) => handleChange("addressLine2", value), placeholder: mergedPlaceholders.addressLine2 }), _jsxs(FormGroup, { columns: 3, children: [_jsx(FormField, { label: mergedLabels.city, name: "city", type: "text", value: formData.city, onChange: (value) => handleChange("city", value), placeholder: mergedPlaceholders.city, required: true }), _jsx(FormField, { label: mergedLabels.state, name: "state", type: "text", value: formData.state, onChange: (value) => handleChange("state", value), placeholder: mergedPlaceholders.state, required: true }), _jsx(FormField, { label: mergedLabels.postalCode, name: "postalCode", type: "text", value: formData.postalCode, onChange: (value) => handleChange("postalCode", value), placeholder: mergedPlaceholders.postalCode, required: true })] }), _jsx(FormField, { label: mergedLabels.country, name: "country", type: "text", value: formData.country, onChange: (value) => handleChange("country", value), placeholder: mergedPlaceholders.country, required: true }), _jsx(Checkbox, { checked: formData.isDefault, onChange: (e) => handleChange("isDefault", e.target.checked), label: mergedLabels.setDefault }), _jsxs(Row, { padding: "t-xs", align: "center", justify: "start", gap: "xs", children: [_jsx(Button, { type: "button", variant: "outline", onClick: onCancel, disabled: isLoading, children: mergedLabels.cancel }), _jsx(Button, { type: "submit", variant: "primary", disabled: isLoading, isLoading: isLoading, onClick: async () => {
52
+ // toast-handled-by-hook: onSubmit prop's mutation hook owns toast UX
53
+ clearErrors();
54
+ const errs = {};
55
+ if (!formData.fullName.trim())
56
+ errs["fullName"] = "Full name is required";
57
+ if (!formData.phone.trim())
58
+ errs["phone"] = "Phone number is required";
59
+ if (!formData.addressLine1.trim())
60
+ errs["addressLine1"] = "Address is required";
61
+ if (!formData.city.trim())
62
+ errs["city"] = "City is required";
63
+ if (!formData.state.trim())
64
+ errs["state"] = "State is required";
65
+ if (!formData.postalCode.trim())
66
+ errs["postalCode"] = "Postal code is required";
67
+ if (Object.keys(errs).length > 0) {
68
+ Object.entries(errs).forEach(([k, v]) => setFieldError(k, v));
69
+ return;
70
+ }
71
+ await onSubmit(formData);
72
+ }, children: isLoading ? mergedLabels.loading : effectiveSubmitLabel })] })] })) }));
78
73
  }
@@ -3,7 +3,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
3
3
  import { useState, useCallback, useMemo } from "react";
4
4
  import { useUrlTable } from "../../../react/hooks/useUrlTable";
5
5
  import { useAddresses } from "../hooks/useAddresses";
6
- import { Div, ListingFilterDrawer, ListingToolbar, Text } from "../../../ui";
6
+ import { Div, ListingFilterDrawer, ListingToolbar, Stack, Text } from "../../../ui";
7
7
  import { AddressBook } from "./AddressBook";
8
8
  import { AddressFilters } from "./AddressFilters";
9
9
  import { TABLE_KEYS, VIEW_MODE } from "../../../constants/table-keys";
@@ -38,6 +38,7 @@ export function AddressesIndexListing({ onAdd, onEdit, onDelete, }) {
38
38
  buildSieveParams: () => "",
39
39
  buildSearchParams: () => "",
40
40
  params: new URLSearchParams(),
41
+ // audit-unknown-ok: TS structural escape — table-state type
41
42
  }), [pendingFilters]);
42
43
  const openFilters = useCallback(() => {
43
44
  setPendingFilters(Object.fromEntries(FILTER_KEYS.map((k) => [k, table.get(k)])));
@@ -73,6 +74,6 @@ export function AddressesIndexListing({ onAdd, onEdit, onDelete, }) {
73
74
  activeOnly: table.get("activeOnly") === "true" || undefined,
74
75
  },
75
76
  });
76
- return (_jsxs(Div, { className: "space-y-4", children: [_jsx(ListingToolbar, { filterCount: activeFilterCount, onFiltersClick: openFilters, searchValue: searchInput, searchPlaceholder: "Search by address, postcode or label...", onSearchChange: setSearchInput, onSearchCommit: commitSearch, view: view, onViewChange: (v) => { if (v === "table")
77
- return; setView(v); }, onResetAll: resetAll, hasActiveState: hasActiveState }), _jsx(Div, { className: "px-3 sm:px-4", children: isLoading ? (_jsx(Div, { className: "grid sm:grid-cols-2 gap-4", children: Array.from({ length: 4 }).map((_, i) => (_jsxs("div", { className: "rounded-xl border border-zinc-200 dark:border-slate-700 animate-pulse p-4 space-y-2", children: [_jsx(Div, { className: "h-4 bg-zinc-200 dark:bg-slate-700 rounded w-1/3" }), _jsx(Div, { className: "h-3 bg-zinc-200 dark:bg-slate-700 rounded w-3/4" }), _jsx(Div, { className: "h-3 bg-zinc-200 dark:bg-slate-700 rounded w-1/2" })] }, i))) })) : addresses.length === 0 ? (_jsx(Text, { className: "py-8 text-center text-sm text-zinc-500 dark:text-zinc-400", children: table.get(TABLE_KEYS.QUERY) ? `No addresses matching "${table.get(TABLE_KEYS.QUERY)}"` : "No saved addresses." })) : (_jsx(AddressBook, { addresses: addresses, onEdit: onEdit, onDelete: onDelete, onAdd: onAdd })) }), _jsx(ListingFilterDrawer, { open: filterOpen, onClose: () => setFilterOpen(false), onApply: applyFilters, onClear: clearFilters, activeCount: activeFilterCount, children: _jsx(AddressFilters, { table: pendingTable }) })] }));
77
+ return (_jsxs(Stack, { gap: "md", children: [_jsx(ListingToolbar, { filterCount: activeFilterCount, onFiltersClick: openFilters, searchValue: searchInput, searchPlaceholder: "Search by address, postcode or label...", onSearchChange: setSearchInput, onSearchCommit: commitSearch, view: view, onViewChange: (v) => { if (v === "table")
78
+ return; setView(v); }, onResetAll: resetAll, hasActiveState: hasActiveState }), _jsx(Div, { className: "sm:px-4", padding: "x-sm", children: isLoading ? (_jsx(Div, { layout: "grid", gap: "4", className: "sm:grid-cols-2", children: Array.from({ length: 4 }).map((_, i) => (_jsxs("div", { className: "rounded-xl border border-zinc-200 dark:border-slate-700 animate-pulse p-4 space-y-2", children: [_jsx(Div, { className: "h-4 w-1/3", surface: "subtle", rounded: "default" }), _jsx(Div, { className: "h-3 w-3/4", surface: "subtle", rounded: "default" }), _jsx(Div, { className: "h-3 w-1/2", surface: "subtle", rounded: "default" })] }, i))) })) : addresses.length === 0 ? (_jsx(Text, { paddingY: "xl", color: "muted", size: "sm", align: "center", children: table.get(TABLE_KEYS.QUERY) ? `No addresses matching "${table.get(TABLE_KEYS.QUERY)}"` : "No saved addresses." })) : (_jsx(AddressBook, { addresses: addresses, onEdit: onEdit, onDelete: onDelete, onAdd: onAdd })) }), _jsx(ListingFilterDrawer, { open: filterOpen, onClose: () => setFilterOpen(false), onApply: applyFilters, onClear: clearFilters, activeCount: activeFilterCount, children: _jsx(AddressFilters, { table: pendingTable }) })] }));
78
79
  }
@@ -1,5 +1,5 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Div, Heading } from "../../../ui";
3
3
  export function BecomeSellerView({ labels = {}, renderGuide, renderSuccess, renderAlreadySeller, state = "guide", isLoading = false, className = "", }) {
4
- return (_jsxs(Div, { className: className, children: [labels.title && state === "guide" && (_jsx(Heading, { level: 1, className: "text-2xl font-bold mb-6", children: labels.title })), state === "guide" && renderGuide?.(), state === "success" && renderSuccess?.(), state === "already-seller" && renderAlreadySeller?.()] }));
4
+ return (_jsxs(Div, { className: className, children: [labels.title && state === "guide" && (_jsx(Heading, { level: 1, className: "mb-6", size: "2xl", weight: "bold", children: labels.title })), state === "guide" && renderGuide?.(), state === "success" && renderSuccess?.(), state === "already-seller" && renderAlreadySeller?.()] }));
5
5
  }
@@ -1,39 +1,39 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { UserCheck, Bell, Heart, Star, Lock, AlertTriangle, Flag } from "lucide-react";
3
- import { Div, Heading, Span, Text, Section, Alert } from "../../../ui";
3
+ import { Alert, Div, Heading, Li, Row, Section, Span, Stack, Text, TextLink, Ul } from "../../../ui";
4
4
  import { ROUTES } from "../../../constants";
5
5
  import { GC } from "../../_guide-cls";
6
6
  const SECTIONS = [
7
7
  {
8
8
  Icon: UserCheck, title: "Your Profile",
9
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Update your profile at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 My Profile" }), ". Your ", _jsx(Span, { weight: "bold", children: "display name" }), " is shown to sellers on order summaries."] }), _jsxs(Div, { className: "grid sm:grid-cols-2 gap-4 text-sm", children: [_jsxs(Div, { children: [_jsx(Text, { className: "font-semibold text-[var(--appkit-color-text)] mb-1", children: "Visible to others:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsx("li", { children: "Display name" }), _jsx("li", { children: "Avatar / profile photo" }), _jsx("li", { children: "Bio" }), _jsx("li", { children: "Member since date" })] })] }), _jsxs(Div, { children: [_jsx(Text, { className: "font-semibold text-[var(--appkit-color-text)] mb-1", children: "Only you can see:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsx("li", { children: "Email address" }), _jsx("li", { children: "Phone number" }), _jsx("li", { children: "Saved addresses" }), _jsx("li", { children: "Order history" })] })] })] })] })),
9
+ content: (_jsxs(Stack, { gap: "3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Update your profile at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 My Profile" }), ". Your ", _jsx(Span, { weight: "bold", children: "display name" }), " is shown to sellers on order summaries."] }), _jsxs(Div, { layout: "grid", gap: "4", textSize: "sm", className: "sm:grid-cols-2", children: [_jsxs(Div, { children: [_jsx(Text, { className: "text-[var(--appkit-color-text)] mb-1", weight: "semibold", children: "Visible to others:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsx(Li, { children: "Display name" }), _jsx(Li, { children: "Avatar / profile photo" }), _jsx(Li, { children: "Bio" }), _jsx(Li, { children: "Member since date" })] })] }), _jsxs(Div, { children: [_jsx(Text, { className: "text-[var(--appkit-color-text)] mb-1", weight: "semibold", children: "Only you can see:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsx(Li, { children: "Email address" }), _jsx(Li, { children: "Phone number" }), _jsx(Li, { children: "Saved addresses" }), _jsx(Li, { children: "Order history" })] })] })] })] })),
10
10
  },
11
11
  {
12
12
  Icon: Bell, title: "Notifications",
13
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsx(Text, { className: GC.textMuted, children: "You'll receive in-app notifications for:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsx("li", { children: "Order status changes (Processing, Shipped, Delivered)" }), _jsx("li", { children: "Outbid alerts on auctions you're participating in" }), _jsx("li", { children: "Auction win notification" }), _jsx("li", { children: "Review request after a delivered order" }), _jsx("li", { children: "Support ticket replies" })] }), _jsxs(Text, { className: GC.textMuted, children: ["Manage notification preferences at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 Settings \u2192 Notifications" }), "."] })] })),
13
+ content: (_jsxs(Stack, { gap: "3", children: [_jsx(Text, { className: GC.textMuted, children: "You'll receive in-app notifications for:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsx(Li, { children: "Order status changes (Processing, Shipped, Delivered)" }), _jsx(Li, { children: "Outbid alerts on auctions you're participating in" }), _jsx(Li, { children: "Auction win notification" }), _jsx(Li, { children: "Review request after a delivered order" }), _jsx(Li, { children: "Support ticket replies" })] }), _jsxs(Text, { className: GC.textMuted, children: ["Manage notification preferences at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 Settings \u2192 Notifications" }), "."] })] })),
14
14
  },
15
15
  {
16
16
  Icon: Heart, iconCls: "w-5 h-5 text-rose-500", title: "Wishlist",
17
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Save any listing to your wishlist by clicking the heart icon on a product card. View your wishlist at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 Wishlist" }), "."] }), _jsxs(Alert, { variant: "info", children: ["Your wishlist holds up to ", _jsx(Span, { weight: "bold", children: "20 items" }), ". Remove items you no longer want to make room for new ones. Wishlists are private \u2014 other users cannot see your saved items."] })] })),
17
+ content: (_jsxs(Stack, { gap: "3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Save any listing to your wishlist by clicking the heart icon on a product card. View your wishlist at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 Wishlist" }), "."] }), _jsxs(Alert, { variant: "info", children: ["Your wishlist holds up to ", _jsx(Span, { weight: "bold", children: "20 items" }), ". Remove items you no longer want to make room for new ones. Wishlists are private \u2014 other users cannot see your saved items."] })] })),
18
18
  },
19
19
  {
20
20
  Icon: Star, iconCls: "w-5 h-5 text-amber-400", title: "Leaving a Review",
21
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsxs(Text, { className: GC.textMuted, children: ["You can leave a review after your order is marked ", _jsx(Span, { weight: "bold", children: "DELIVERED" }), ". Reviews are verified \u2014 only buyers who completed an order can review that product."] }), _jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Rating" }), " \u2014 1\u20135 stars. Be fair and specific."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Title & body" }), " \u2014 describe item condition vs listing, packaging quality, and seller communication."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Photos" }), " \u2014 optional but helpful for other buyers."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Seller response" }), " \u2014 the seller may respond publicly. You cannot edit a review after a seller has responded."] })] }), _jsx(Text, { className: GC.textMuted, children: "Review guidelines: no personal information, no hate speech or slurs, factual only." })] })),
21
+ content: (_jsxs(Stack, { gap: "3", children: [_jsxs(Text, { className: GC.textMuted, children: ["You can leave a review after your order is marked ", _jsx(Span, { weight: "bold", children: "DELIVERED" }), ". Reviews are verified \u2014 only buyers who completed an order can review that product."] }), _jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Rating" }), " \u2014 1\u20135 stars. Be fair and specific."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Title & body" }), " \u2014 describe item condition vs listing, packaging quality, and seller communication."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Photos" }), " \u2014 optional but helpful for other buyers."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Seller response" }), " \u2014 the seller may respond publicly. You cannot edit a review after a seller has responded."] })] }), _jsx(Text, { className: GC.textMuted, children: "Review guidelines: no personal information, no hate speech or slurs, factual only." })] })),
22
22
  },
23
23
  {
24
24
  Icon: Lock, title: "Account Security",
25
- content: (_jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Change password" }), " \u2014 use \"Forgot password\" on the login page. A reset link is sent to your registered email."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Active sessions" }), " \u2014 view all devices signed in at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 Sessions" }), ". Sign out unfamiliar devices immediately."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Sign out everywhere" }), " \u2014 use \"Sign out everywhere\" on the Sessions page to invalidate all active sessions at once."] })] })),
25
+ content: (_jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Change password" }), " \u2014 use \"Forgot password\" on the login page. A reset link is sent to your registered email."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Active sessions" }), " \u2014 view all devices signed in at ", _jsx(Span, { weight: "bold", children: "My Account \u2192 Sessions" }), ". Sign out unfamiliar devices immediately."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Sign out everywhere" }), " \u2014 use \"Sign out everywhere\" on the Sessions page to invalidate all active sessions at once."] })] })),
26
26
  },
27
27
  {
28
28
  Icon: AlertTriangle, iconCls: "w-5 h-5 text-amber-500", title: "Scam Awareness",
29
- content: (_jsxs(_Fragment, { children: [_jsx(Alert, { variant: "warning", title: "Top scam types in the collectibles market:", children: _jsxs("ul", { className: "space-y-1 text-sm mt-1", children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "1. Fake payment screenshots" }), " \u2014 always verify refunds in your bank app."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "2. Empty box shipping" }), " \u2014 item photos look real but the box arrives empty. Check seller rating."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "3. Fake graded cards" }), " \u2014 counterfeit PSA/BGS slabs. Verify cert numbers on the grading company's website."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "4. Urgency pressure" }), " \u2014 \"someone else is about to buy\". Legitimate sellers don't pressure you."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "5. Sympathy plays" }), " \u2014 emotional manipulation is a red flag."] })] }) }), _jsxs(Text, { className: `${GC.textMuted} mt-4`, children: ["Read the full ", _jsx("a", { href: String(ROUTES.PUBLIC.SCAMS), className: "text-[var(--appkit-color-primary)] underline hover:no-underline font-medium", children: "Scam Registry \u2192" }), " for all 27 documented scam types."] })] })),
29
+ content: (_jsxs(_Fragment, { children: [_jsx(Alert, { variant: "warning", title: "Top scam types in the collectibles market:", children: _jsxs(Ul, { className: "mt-1", spacing: "tight", size: "sm", children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "1. Fake payment screenshots" }), " \u2014 always verify refunds in your bank app."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "2. Empty box shipping" }), " \u2014 item photos look real but the box arrives empty. Check seller rating."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "3. Fake graded cards" }), " \u2014 counterfeit PSA/BGS slabs. Verify cert numbers on the grading company's website."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "4. Urgency pressure" }), " \u2014 \"someone else is about to buy\". Legitimate sellers don't pressure you."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "5. Sympathy plays" }), " \u2014 emotional manipulation is a red flag."] })] }) }), _jsxs(Text, { className: `${GC.textMuted} mt-4`, children: ["Read the full ", _jsx(TextLink, { href: String(ROUTES.PUBLIC.SCAMS), weight: "medium", className: "text-[var(--appkit-color-primary)] underline hover:no-underline", children: "Scam Registry \u2192" }), " for all 27 documented scam types."] })] })),
30
30
  },
31
31
  {
32
32
  Icon: Flag, iconCls: "w-5 h-5 text-rose-500", title: "Reporting Issues",
33
- content: (_jsxs(Div, { className: "grid sm:grid-cols-2 gap-6 text-sm", children: [_jsxs(Div, { children: [_jsx(Text, { className: "font-semibold text-[var(--appkit-color-text)] mb-2", children: "Report a seller (scam, fake item, harassment)" }), _jsx(Text, { className: `${GC.textMuted} mb-2`, children: "Use the Scam Registry report form. Our Trust & Safety team reviews within 48 hours." }), _jsx("a", { href: String(ROUTES.PUBLIC.SCAMS), className: "text-[var(--appkit-color-primary)] text-sm font-medium underline hover:no-underline", children: "Go to Scam Registry \u2192" })] }), _jsxs(Div, { children: [_jsx(Text, { className: "font-semibold text-[var(--appkit-color-text)] mb-2", children: "Open a support ticket (order dispute, billing, account)" }), _jsx(Text, { className: `${GC.textMuted} mb-2`, children: "Go to My Account \u2192 Support Tickets. Choose the right category for a faster response." }), _jsx("a", { href: String(ROUTES.USER.SUPPORT), className: "text-[var(--appkit-color-primary)] text-sm font-medium underline hover:no-underline", children: "Open Support Ticket \u2192" })] })] })),
33
+ content: (_jsxs(Div, { layout: "grid", gap: "6", textSize: "sm", className: "sm:grid-cols-2", children: [_jsxs(Div, { children: [_jsx(Text, { className: "text-[var(--appkit-color-text)] mb-2", weight: "semibold", children: "Report a seller (scam, fake item, harassment)" }), _jsx(Text, { className: `${GC.textMuted} mb-2`, children: "Use the Scam Registry report form. Our Trust & Safety team reviews within 48 hours." }), _jsx(TextLink, { href: String(ROUTES.PUBLIC.SCAMS), size: "sm", weight: "medium", className: "text-[var(--appkit-color-primary)] underline hover:no-underline", children: "Go to Scam Registry \u2192" })] }), _jsxs(Div, { children: [_jsx(Text, { className: "text-[var(--appkit-color-text)] mb-2", weight: "semibold", children: "Open a support ticket (order dispute, billing, account)" }), _jsx(Text, { className: `${GC.textMuted} mb-2`, children: "Go to My Account \u2192 Support Tickets. Choose the right category for a faster response." }), _jsx(TextLink, { href: String(ROUTES.USER.SUPPORT), size: "sm", weight: "medium", className: "text-[var(--appkit-color-primary)] underline hover:no-underline", children: "Open Support Ticket \u2192" })] })] })),
34
34
  },
35
35
  ];
36
36
  // ─── Component ────────────────────────────────────────────────────────────────
37
37
  export function BuyerAccountGuideView() {
38
- return (_jsxs(Div, { className: "space-y-8 pb-10 max-w-3xl mx-auto", children: [_jsxs(Section, { children: [_jsxs(Div, { className: "flex items-center gap-3 mb-2", children: [_jsx(Div, { className: "flex-shrink-0 w-10 h-10 rounded-xl flex items-center justify-center", style: { background: GC.pageHeaderGradient }, children: _jsx(UserCheck, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text-muted)] uppercase tracking-widest", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-2xl md:text-3xl font-bold text-[var(--appkit-color-text)] mb-2", children: "Account & Safety" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "Manage your LetItRip profile, stay safe from scams, and know how to report problems." })] }), SECTIONS.map(({ Icon, iconCls, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: iconCls ?? GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
38
+ return (_jsxs(Stack, { className: "max-w-3xl mx-auto", padding: "b-2xl", gap: "xl", children: [_jsxs(Section, { children: [_jsxs(Row, { className: "mb-2", align: "center", gap: "3", children: [_jsx(Row, { className: "flex-shrink-0 w-10 h-10", align: "center", justify: "center", rounded: "xl", style: { background: GC.pageHeaderGradient }, children: _jsx(UserCheck, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)] tracking-widest", size: "sm", weight: "semibold", transform: "uppercase", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-[var(--appkit-color-text)] mb-2", mdSize: "3xl", size: "2xl", weight: "bold", children: "Account & Safety" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "Manage your LetItRip profile, stay safe from scams, and know how to report problems." })] }), SECTIONS.map(({ Icon, iconCls, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: iconCls ?? GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
39
39
  }
@@ -1,19 +1,19 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { Gavel, TrendingUp, Trophy, AlertTriangle, Package, XCircle, ShieldCheck } from "lucide-react";
3
- import { Div, Heading, Span, Text, Section, Alert } from "../../../ui";
3
+ import { Alert, Div, Heading, Li, Row, Section, Span, Stack, Text, Ul } from "../../../ui";
4
4
  import { GC } from "../../_guide-cls";
5
5
  const SECTIONS = [
6
6
  {
7
7
  Icon: Gavel, title: "How Auctions Work",
8
- content: (_jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Reserve price" }), " \u2014 the minimum amount the seller will accept. If bidding ends below the reserve, no sale occurs. You'll see \"Reserve not met\" on the listing."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Bid increment" }), " \u2014 each new bid must exceed the current highest bid by at least the set increment. The increment is shown on the listing."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Auction end time" }), " \u2014 displayed in your local timezone. Countdown timer shows hours and minutes remaining."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Auto-extend" }), " \u2014 if a bid is placed within the last 5 minutes of an auction, the end time extends by 5 minutes. This prevents last-second sniping and gives all bidders a fair chance."] })] })),
8
+ content: (_jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Reserve price" }), " \u2014 the minimum amount the seller will accept. If bidding ends below the reserve, no sale occurs. You'll see \"Reserve not met\" on the listing."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Bid increment" }), " \u2014 each new bid must exceed the current highest bid by at least the set increment. The increment is shown on the listing."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Auction end time" }), " \u2014 displayed in your local timezone. Countdown timer shows hours and minutes remaining."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Auto-extend" }), " \u2014 if a bid is placed within the last 5 minutes of an auction, the end time extends by 5 minutes. This prevents last-second sniping and gives all bidders a fair chance."] })] })),
9
9
  },
10
10
  {
11
11
  Icon: TrendingUp, title: "Placing a Bid",
12
- content: (_jsxs(_Fragment, { children: [_jsxs(Text, { className: `${GC.textMuted} mb-3`, children: ["Enter your bid amount \u2014 it must be at least the current high bid plus the increment \u2014 and click ", _jsx(Span, { weight: "bold", children: "Place Bid" }), ". You'll be asked to confirm."] }), _jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Outbid notification" }), " \u2014 you'll receive an in-app notification and email if someone outbids you."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Max bid (proxy bidding)" }), " \u2014 enter the maximum you're willing to pay. LetItRip will automatically bid on your behalf up to that amount, in the minimum increments needed to keep you in the lead. Your max bid is never revealed to other bidders."] })] }), _jsxs(Text, { className: `${GC.textMuted} mt-3`, children: [_jsx(Span, { weight: "bold", children: "Example:" }), " Current bid is \u20B9500, increment is \u20B950. You set a max bid of \u20B9800. Your bid is placed at \u20B9550. If someone bids \u20B9600, the system auto-bids \u20B9650 for you \u2014 up to \u20B9800."] })] })),
12
+ content: (_jsxs(_Fragment, { children: [_jsxs(Text, { className: `${GC.textMuted} mb-3`, children: ["Enter your bid amount \u2014 it must be at least the current high bid plus the increment \u2014 and click ", _jsx(Span, { weight: "bold", children: "Place Bid" }), ". You'll be asked to confirm."] }), _jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Outbid notification" }), " \u2014 you'll receive an in-app notification and email if someone outbids you."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Max bid (proxy bidding)" }), " \u2014 enter the maximum you're willing to pay. LetItRip will automatically bid on your behalf up to that amount, in the minimum increments needed to keep you in the lead. Your max bid is never revealed to other bidders."] })] }), _jsxs(Text, { className: `${GC.textMuted} mt-3`, children: [_jsx(Span, { weight: "bold", children: "Example:" }), " Current bid is \u20B9500, increment is \u20B950. You set a max bid of \u20B9800. Your bid is placed at \u20B9550. If someone bids \u20B9600, the system auto-bids \u20B9650 for you \u2014 up to \u20B9800."] })] })),
13
13
  },
14
14
  {
15
15
  Icon: Trophy, title: "Winning an Auction",
16
- content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "When an auction ends and you're the highest bidder (above the reserve), you've won." }), _jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Payment window" }), " \u2014 you have ", _jsx(Span, { weight: "bold", children: "48 hours" }), " from the auction end time to complete payment."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "No payment" }), " \u2014 the order auto-cancels after 48 hours, you may receive a bid restriction, and the item may be offered to the next highest bidder."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Winner badge" }), " \u2014 your winning order gets an \"Auction Winner\" badge in My Orders."] })] })] })),
16
+ content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "When an auction ends and you're the highest bidder (above the reserve), you've won." }), _jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Payment window" }), " \u2014 you have ", _jsx(Span, { weight: "bold", children: "48 hours" }), " from the auction end time to complete payment."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "No payment" }), " \u2014 the order auto-cancels after 48 hours, you may receive a bid restriction, and the item may be offered to the next highest bidder."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Winner badge" }), " \u2014 your winning order gets an \"Auction Winner\" badge in My Orders."] })] })] })),
17
17
  },
18
18
  {
19
19
  Icon: AlertTriangle, iconCls: "w-5 h-5 text-amber-500", title: "Bid Retraction Policy",
@@ -21,7 +21,7 @@ const SECTIONS = [
21
21
  },
22
22
  {
23
23
  Icon: Package, title: "Pre-orders",
24
- content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "A pre-order is an item not yet in stock. The seller takes deposits or full payment upfront and orders from their supplier in bulk once demand is confirmed." }), _jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Deposit vs full price" }), " \u2014 check the listing. Some sellers take a partial deposit; others require full payment."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Expected delivery date" }), " \u2014 shown on the listing. This is the seller's estimate based on supplier timelines \u2014 not a guaranteed date."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "\"Confirmed supplier\" status" }), " \u2014 some listings show this badge, meaning the seller has placed the order with their supplier and stock is secured."] })] })] })),
24
+ content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "A pre-order is an item not yet in stock. The seller takes deposits or full payment upfront and orders from their supplier in bulk once demand is confirmed." }), _jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Deposit vs full price" }), " \u2014 check the listing. Some sellers take a partial deposit; others require full payment."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Expected delivery date" }), " \u2014 shown on the listing. This is the seller's estimate based on supplier timelines \u2014 not a guaranteed date."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "\"Confirmed supplier\" status" }), " \u2014 some listings show this badge, meaning the seller has placed the order with their supplier and stock is secured."] })] })] })),
25
25
  },
26
26
  {
27
27
  Icon: XCircle, iconCls: "w-5 h-5 text-rose-500", title: "Pre-order Cancellations",
@@ -29,10 +29,10 @@ const SECTIONS = [
29
29
  },
30
30
  {
31
31
  Icon: ShieldCheck, iconCls: "w-5 h-5 text-emerald-500", title: "Bidding Safety Tips",
32
- content: (_jsx(Alert, { variant: "info", children: _jsxs("ul", { className: "space-y-1 text-sm", children: [_jsx("li", { children: "\u2713 Check the seller's rating and number of completed orders before bidding." }), _jsx("li", { children: "\u2713 Read every product photo carefully \u2014 look for condition issues, especially on graded card slabs." }), _jsx("li", { children: "\u2713 If authenticity is unclear, contact support before placing a bid \u2014 not after." }), _jsx("li", { children: "\u2713 Set a max bid and stick to it. Bid heat is real \u2014 don't let excitement push you past your budget." })] }) })),
32
+ content: (_jsx(Alert, { variant: "info", children: _jsxs(Ul, { spacing: "tight", size: "sm", children: [_jsx(Li, { children: "\u2713 Check the seller's rating and number of completed orders before bidding." }), _jsx(Li, { children: "\u2713 Read every product photo carefully \u2014 look for condition issues, especially on graded card slabs." }), _jsx(Li, { children: "\u2713 If authenticity is unclear, contact support before placing a bid \u2014 not after." }), _jsx(Li, { children: "\u2713 Set a max bid and stick to it. Bid heat is real \u2014 don't let excitement push you past your budget." })] }) })),
33
33
  },
34
34
  ];
35
35
  // ─── Component ────────────────────────────────────────────────────────────────
36
36
  export function BuyerAuctionsGuideView() {
37
- return (_jsxs(Div, { className: "space-y-8 pb-10 max-w-3xl mx-auto", children: [_jsxs(Section, { children: [_jsxs(Div, { className: "flex items-center gap-3 mb-2", children: [_jsx(Div, { className: "flex-shrink-0 w-10 h-10 rounded-xl flex items-center justify-center", style: { background: GC.pageHeaderGradient }, children: _jsx(Gavel, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text-muted)] uppercase tracking-widest", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-2xl md:text-3xl font-bold text-[var(--appkit-color-text)] mb-2", children: "Auctions & Pre-orders" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "How bidding works, how to win, and everything you need to know about pre-orders on LetItRip." })] }), SECTIONS.map(({ Icon, iconCls, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: iconCls ?? GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
37
+ return (_jsxs(Stack, { className: "max-w-3xl mx-auto", padding: "b-2xl", gap: "xl", children: [_jsxs(Section, { children: [_jsxs(Row, { className: "mb-2", align: "center", gap: "3", children: [_jsx(Row, { className: "flex-shrink-0 w-10 h-10", align: "center", justify: "center", rounded: "xl", style: { background: GC.pageHeaderGradient }, children: _jsx(Gavel, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)] tracking-widest", size: "sm", weight: "semibold", transform: "uppercase", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-[var(--appkit-color-text)] mb-2", mdSize: "3xl", size: "2xl", weight: "bold", children: "Auctions & Pre-orders" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "How bidding works, how to win, and everything you need to know about pre-orders on LetItRip." })] }), SECTIONS.map(({ Icon, iconCls, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: iconCls ?? GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
38
38
  }
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { PackageCheck, Truck, Camera, RotateCcw, Clock, Headphones, Scale } from "lucide-react";
3
- import { Div, Heading, Span, Text, Section, Alert } from "../../../ui";
3
+ import { Alert, Code, Div, Heading, Li, Row, Section, Span, Stack, Text, Ul } from "../../../ui";
4
4
  import { GC } from "../../_guide-cls";
5
5
  // ─── Section data ─────────────────────────────────────────────────────────────
6
6
  const ORDER_STATUSES = [
@@ -15,11 +15,11 @@ const ORDER_STATUSES = [
15
15
  const SECTIONS = [
16
16
  {
17
17
  Icon: PackageCheck, title: "Order Lifecycle",
18
- content: (_jsxs(Div, { className: "space-y-4 text-sm", children: [_jsx(Text, { className: GC.textMuted, children: "Every order on LetItRip moves through these statuses:" }), _jsx(Div, { className: "space-y-2", children: ORDER_STATUSES.map(({ status, desc }) => (_jsxs(Div, { className: "flex gap-3", children: [_jsx(Text, { className: "flex-shrink-0 font-mono font-semibold text-[var(--appkit-color-primary)] w-36 text-xs", children: status }), _jsx(Text, { className: GC.textMuted, children: desc })] }, status))) })] })),
18
+ content: (_jsxs(Stack, { textSize: "sm", gap: "md", children: [_jsx(Text, { className: GC.textMuted, children: "Every order on LetItRip moves through these statuses:" }), _jsx(Stack, { gap: "sm", children: ORDER_STATUSES.map(({ status, desc }) => (_jsxs(Row, { gap: "3", children: [_jsx(Text, { className: "flex-shrink-0 font-mono text-[var(--appkit-color-primary)] w-36", size: "xs", weight: "semibold", children: status }), _jsx(Text, { className: GC.textMuted, children: desc })] }, status))) })] })),
19
19
  },
20
20
  {
21
21
  Icon: Truck, title: "Tracking Your Order",
22
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Once your order is SHIPPED, go to ", _jsx(Span, { weight: "bold", children: "My Orders \u2192 [Order] \u2192 Tracking" }), " tab. Your tracking number and carrier name are shown there."] }), _jsx(Text, { className: GC.textMuted, children: "Paste the tracking number into the carrier's website for real-time updates. Common carriers: Shiprocket, Delhivery, BlueDart, India Post, Ekart." }), _jsx(Text, { className: GC.textMuted, children: "Typical delivery times: 2\u20135 days metro cities, 5\u201310 days remote areas, 7\u201314 days for pre-orders subject to supplier shipping." })] })),
22
+ content: (_jsxs(Stack, { gap: "3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Once your order is SHIPPED, go to ", _jsx(Span, { weight: "bold", children: "My Orders \u2192 [Order] \u2192 Tracking" }), " tab. Your tracking number and carrier name are shown there."] }), _jsx(Text, { className: GC.textMuted, children: "Paste the tracking number into the carrier's website for real-time updates. Common carriers: Shiprocket, Delhivery, BlueDart, India Post, Ekart." }), _jsx(Text, { className: GC.textMuted, children: "Typical delivery times: 2\u20135 days metro cities, 5\u201310 days remote areas, 7\u201314 days for pre-orders subject to supplier shipping." })] })),
23
23
  },
24
24
  {
25
25
  Icon: Camera, iconCls: "w-5 h-5 text-amber-500", title: "Wrong or Damaged Item",
@@ -27,22 +27,22 @@ const SECTIONS = [
27
27
  },
28
28
  {
29
29
  Icon: RotateCcw, title: "Return Policy",
30
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Platform-wide return window: ", _jsx(Span, { weight: "bold", children: "7 days from DELIVERED date" }), ". Some stores offer 30-day windows \u2014 shown on the product page."] }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text)]", children: "Non-returnable items:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsx("li", { children: "Opened card packs (Pok\u00E9mon, Yu-Gi-Oh!, etc.)" }), _jsx("li", { children: "Cracked or opened graded card slabs without documented photographic evidence of a defect" }), _jsx("li", { children: "Items explicitly marked \"Final Sale\" on the listing" })] })] })),
30
+ content: (_jsxs(Stack, { gap: "3", children: [_jsxs(Text, { className: GC.textMuted, children: ["Platform-wide return window: ", _jsx(Span, { weight: "bold", children: "7 days from DELIVERED date" }), ". Some stores offer 30-day windows \u2014 shown on the product page."] }), _jsx(Text, { className: "text-[var(--appkit-color-text)]", size: "sm", weight: "semibold", children: "Non-returnable items:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsx(Li, { children: "Opened card packs (Pok\u00E9mon, Yu-Gi-Oh!, etc.)" }), _jsx(Li, { children: "Cracked or opened graded card slabs without documented photographic evidence of a defect" }), _jsx(Li, { children: "Items explicitly marked \"Final Sale\" on the listing" })] })] })),
31
31
  },
32
32
  {
33
33
  Icon: Clock, title: "Refund Timeline",
34
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsx(Text, { className: GC.textMuted, children: "After the seller accepts your return and confirms receipt of the item:" }), _jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Credit/debit card" }), " \u2014 3\u20137 business days back to your card via Razorpay."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "UPI" }), " \u2014 typically 1\u20132 business days."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Net banking" }), " \u2014 3\u20135 business days."] })] }), _jsx(Text, { className: GC.textMuted, children: "Refunds go back to the original payment method. LetItRip does not issue platform credits in lieu of a refund unless both parties agree." })] })),
34
+ content: (_jsxs(Stack, { gap: "3", children: [_jsx(Text, { className: GC.textMuted, children: "After the seller accepts your return and confirms receipt of the item:" }), _jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Credit/debit card" }), " \u2014 3\u20137 business days back to your card via Razorpay."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "UPI" }), " \u2014 typically 1\u20132 business days."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Net banking" }), " \u2014 3\u20135 business days."] })] }), _jsx(Text, { className: GC.textMuted, children: "Refunds go back to the original payment method. LetItRip does not issue platform credits in lieu of a refund unless both parties agree." })] })),
35
35
  },
36
36
  {
37
37
  Icon: Headphones, title: "Opening a Support Ticket",
38
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text)]", children: "When to use a support ticket:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsx("li", { children: "Seller is unresponsive to your return request for more than 3 days" }), _jsx("li", { children: "Tracking has not updated in 7+ days" }), _jsx("li", { children: "Item is significantly not as described" })] }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text)]", children: "What to include:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsxs("li", { children: ["Your order ID (e.g. ", _jsx("code", { className: GC.code, children: "order-2-20260508-a1b2c3" }), ")"] }), _jsx("li", { children: "Photos of the item and packaging" }), _jsx("li", { children: "A clear timeline of events" })] }), _jsx(Text, { className: GC.textMuted, children: "Response SLA: 24\u201348 hours. You can have up to 2 active general tickets and 1 additional ticket per active order." })] })),
38
+ content: (_jsxs(Stack, { gap: "3", children: [_jsx(Text, { className: "text-[var(--appkit-color-text)]", size: "sm", weight: "semibold", children: "When to use a support ticket:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsx(Li, { children: "Seller is unresponsive to your return request for more than 3 days" }), _jsx(Li, { children: "Tracking has not updated in 7+ days" }), _jsx(Li, { children: "Item is significantly not as described" })] }), _jsx(Text, { className: "text-[var(--appkit-color-text)]", size: "sm", weight: "semibold", children: "What to include:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsxs(Li, { children: ["Your order ID (e.g. ", _jsx(Code, { className: GC.code, children: "order-2-20260508-a1b2c3" }), ")"] }), _jsx(Li, { children: "Photos of the item and packaging" }), _jsx(Li, { children: "A clear timeline of events" })] }), _jsx(Text, { className: GC.textMuted, children: "Response SLA: 24\u201348 hours. You can have up to 2 active general tickets and 1 additional ticket per active order." })] })),
39
39
  },
40
40
  {
41
41
  Icon: Scale, title: "Dispute Escalation",
42
- content: (_jsxs(Div, { className: "space-y-3", children: [_jsxs(Text, { className: GC.textMuted, children: ["If the seller does not respond to your return request within ", _jsx(Span, { weight: "bold", children: "3 days" }), ", LetItRip's support team steps in to mediate."] }), _jsxs(Text, { className: GC.textMuted, children: ["If mediation cannot resolve the dispute, LetItRip issues a ", _jsx(Span, { weight: "bold", children: "full platform-funded refund" }), " to the buyer. The seller's payout for that order is withheld."] }), _jsx(Alert, { variant: "info", children: "All dispute decisions are final. False dispute claims may result in account restrictions. Always provide accurate, photographic evidence when raising a dispute." })] })),
42
+ content: (_jsxs(Stack, { gap: "3", children: [_jsxs(Text, { className: GC.textMuted, children: ["If the seller does not respond to your return request within ", _jsx(Span, { weight: "bold", children: "3 days" }), ", LetItRip's support team steps in to mediate."] }), _jsxs(Text, { className: GC.textMuted, children: ["If mediation cannot resolve the dispute, LetItRip issues a ", _jsx(Span, { weight: "bold", children: "full platform-funded refund" }), " to the buyer. The seller's payout for that order is withheld."] }), _jsx(Alert, { variant: "info", children: "All dispute decisions are final. False dispute claims may result in account restrictions. Always provide accurate, photographic evidence when raising a dispute." })] })),
43
43
  },
44
44
  ];
45
45
  // ─── Component ────────────────────────────────────────────────────────────────
46
46
  export function BuyerOrdersGuideView() {
47
- return (_jsxs(Div, { className: "space-y-8 pb-10 max-w-3xl mx-auto", children: [_jsxs(Section, { children: [_jsxs(Div, { className: "flex items-center gap-3 mb-2", children: [_jsx(Div, { className: "flex-shrink-0 w-10 h-10 rounded-xl flex items-center justify-center", style: { background: GC.pageHeaderGradient }, children: _jsx(PackageCheck, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text-muted)] uppercase tracking-widest", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-2xl md:text-3xl font-bold text-[var(--appkit-color-text)] mb-2", children: "Orders, Returns & Support" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "From placing an order to getting a refund \u2014 everything you need to know about managing your orders on LetItRip." })] }), SECTIONS.map(({ Icon, iconCls, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: iconCls ?? GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
47
+ return (_jsxs(Stack, { className: "max-w-3xl mx-auto", padding: "b-2xl", gap: "xl", children: [_jsxs(Section, { children: [_jsxs(Row, { className: "mb-2", align: "center", gap: "3", children: [_jsx(Row, { className: "flex-shrink-0 w-10 h-10", align: "center", justify: "center", rounded: "xl", style: { background: GC.pageHeaderGradient }, children: _jsx(PackageCheck, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)] tracking-widest", size: "sm", weight: "semibold", transform: "uppercase", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-[var(--appkit-color-text)] mb-2", mdSize: "3xl", size: "2xl", weight: "bold", children: "Orders, Returns & Support" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "From placing an order to getting a refund \u2014 everything you need to know about managing your orders on LetItRip." })] }), SECTIONS.map(({ Icon, iconCls, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: iconCls ?? GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
48
48
  }
@@ -1,31 +1,31 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
2
  import { ShoppingBag, ShoppingCart, CreditCard, Tag, CheckCircle, UserX } from "lucide-react";
3
- import { Div, Heading, Span, Text, Section, Alert } from "../../../ui";
3
+ import { Alert, Div, Heading, Li, Row, Section, Span, Stack, Text, Ul } from "../../../ui";
4
4
  import { GC } from "../../_guide-cls";
5
5
  const SECTIONS = [
6
6
  {
7
7
  Icon: ShoppingBag, title: "Browsing & Search",
8
- content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "Use the search bar at the top of any page to find items by keyword \u2014 e.g. \"Charizard Base Set\", \"Hot Wheels Redline\", or \"Beyblade Burst\". Combine keywords for best results." }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text)] mb-2", children: "Available filters:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "Category" }), " \u2014 Trading Cards, Action Figures, Diecast, Spinning Tops, Model Kits, Vintage & Rare"] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "Brand" }), " \u2014 Pok\u00E9mon Company, Bandai, Hot Wheels, Hasbro, Funko, and more"] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "Price range" }), " \u2014 set a minimum and maximum in rupees"] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "Condition" }), " \u2014 grades 1\u201310 (10 = Gem Mint, 1 = Poor)"] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", children: "Listing type" }), " \u2014 Standard / Auction / Pre-order"] })] }), _jsx(Text, { className: `${GC.textMuted} mt-3`, children: "Sort options: Relevance, Price (Low to High), Price (High to Low), Newest First. On mobile, tap the Filter icon to open the filter drawer." })] })),
8
+ content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "Use the search bar at the top of any page to find items by keyword \u2014 e.g. \"Charizard Base Set\", \"Hot Wheels Redline\", or \"Beyblade Burst\". Combine keywords for best results." }), _jsx(Text, { className: "text-[var(--appkit-color-text)] mb-2", size: "sm", weight: "semibold", children: "Available filters:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "Category" }), " \u2014 Trading Cards, Action Figures, Diecast, Spinning Tops, Model Kits, Vintage & Rare"] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "Brand" }), " \u2014 Pok\u00E9mon Company, Bandai, Hot Wheels, Hasbro, Funko, and more"] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "Price range" }), " \u2014 set a minimum and maximum in rupees"] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "Condition" }), " \u2014 grades 1\u201310 (10 = Gem Mint, 1 = Poor)"] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", children: "Listing type" }), " \u2014 Standard / Auction / Pre-order"] })] }), _jsx(Text, { className: `${GC.textMuted} mt-3`, children: "Sort options: Relevance, Price (Low to High), Price (High to Low), Newest First. On mobile, tap the Filter icon to open the filter drawer." })] })),
9
9
  },
10
10
  {
11
11
  Icon: ShoppingBag, title: "Reading a Product Page",
12
- content: (_jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Images" }), " \u2014 tap or click to zoom; swipe left/right to browse all photos."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Condition grade" }), " \u2014 rated 1\u201310: 10 = PSA 10 Gem Mint (flawless), 9 = Mint, 8 = Near Mint\u2013Mint, 7 = Near Mint, 5 = Heavily Played, 3 = Damaged, 1 = Poor."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Seller card" }), " \u2014 shows store name, rating, and total orders delivered. Click the store name to browse all their listings."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Reviews tab" }), " \u2014 verified buyer reviews with star ratings, photos, and seller responses."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Questions?" }), " \u2014 if listing details are unclear, open a support ticket and reference the product URL."] })] })),
12
+ content: (_jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Images" }), " \u2014 tap or click to zoom; swipe left/right to browse all photos."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Condition grade" }), " \u2014 rated 1\u201310: 10 = PSA 10 Gem Mint (flawless), 9 = Mint, 8 = Near Mint\u2013Mint, 7 = Near Mint, 5 = Heavily Played, 3 = Damaged, 1 = Poor."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Seller card" }), " \u2014 shows store name, rating, and total orders delivered. Click the store name to browse all their listings."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Reviews tab" }), " \u2014 verified buyer reviews with star ratings, photos, and seller responses."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Questions?" }), " \u2014 if listing details are unclear, open a support ticket and reference the product URL."] })] })),
13
13
  },
14
14
  {
15
15
  Icon: ShoppingCart, title: "Cart",
16
- content: (_jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Adding items" }), " \u2014 click \"Add to Cart\" on any standard product or pre-order. Auctions have a \"Place Bid\" flow instead."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Guest cart" }), " \u2014 saved in your browser (localStorage); cleared after 30 days of inactivity."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Logged-in cart" }), " \u2014 synced to your account via Firestore; persists across all your devices."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Item limit" }), " \u2014 up to 20 items per cart. Remove items before adding more."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Updating" }), " \u2014 use the quantity selector or click the trash icon to remove. Changes sync instantly."] })] })),
16
+ content: (_jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Adding items" }), " \u2014 click \"Add to Cart\" on any standard product or pre-order. Auctions have a \"Place Bid\" flow instead."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Guest cart" }), " \u2014 saved in your browser (localStorage); cleared after 30 days of inactivity."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Logged-in cart" }), " \u2014 synced to your account via Firestore; persists across all your devices."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Item limit" }), " \u2014 up to 20 items per cart. Remove items before adding more."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Updating" }), " \u2014 use the quantity selector or click the trash icon to remove. Changes sync instantly."] })] })),
17
17
  },
18
18
  {
19
19
  Icon: CreditCard, title: "Checkout",
20
- content: (_jsxs("ul", { className: GC.listMuted, children: [_jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Shipping address" }), " \u2014 enter or select a saved address. All fields required: full name, phone, address line, city, state, pin code."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Payment methods" }), " \u2014 UPI, credit/debit card (Visa, Mastercard, Rupay), net banking \u2014 all processed via Razorpay."] }), _jsxs("li", { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Secure checkout" }), " \u2014 LetItRip never stores your card details. All payment data is handled by Razorpay's PCI-DSS compliant gateway."] })] })),
20
+ content: (_jsxs(Ul, { className: GC.listMuted, children: [_jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Shipping address" }), " \u2014 enter or select a saved address. All fields required: full name, phone, address line, city, state, pin code."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Payment methods" }), " \u2014 UPI, credit/debit card (Visa, Mastercard, Rupay), net banking \u2014 all processed via Razorpay."] }), _jsxs(Li, { children: [_jsx(Span, { weight: "bold", className: GC.textStrong, children: "Secure checkout" }), " \u2014 LetItRip never stores your card details. All payment data is handled by Razorpay's PCI-DSS compliant gateway."] })] })),
21
21
  },
22
22
  {
23
23
  Icon: Tag, title: "Coupons",
24
- content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "Enter your coupon code at step 2 of checkout (Order Summary). The discount is applied immediately and shown in the total." }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text)] mb-2", children: "Why a coupon might not apply:" }), _jsxs("ul", { className: GC.listDiscMuted, children: [_jsx("li", { children: "Your order total is below the coupon's minimum purchase amount" }), _jsx("li", { children: "The coupon has expired or hasn't started yet" }), _jsx("li", { children: "Your cart contains items from categories excluded by the coupon" }), _jsx("li", { children: "The coupon is \"first order only\" but you've placed orders before" }), _jsx("li", { children: "You've already used this coupon the maximum allowed times" })] })] })),
24
+ content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: `${GC.textMuted} mb-3`, children: "Enter your coupon code at step 2 of checkout (Order Summary). The discount is applied immediately and shown in the total." }), _jsx(Text, { className: "text-[var(--appkit-color-text)] mb-2", size: "sm", weight: "semibold", children: "Why a coupon might not apply:" }), _jsxs(Ul, { className: GC.listDiscMuted, children: [_jsx(Li, { children: "Your order total is below the coupon's minimum purchase amount" }), _jsx(Li, { children: "The coupon has expired or hasn't started yet" }), _jsx(Li, { children: "Your cart contains items from categories excluded by the coupon" }), _jsx(Li, { children: "The coupon is \"first order only\" but you've placed orders before" }), _jsx(Li, { children: "You've already used this coupon the maximum allowed times" })] })] })),
25
25
  },
26
26
  {
27
27
  Icon: CheckCircle, title: "Order Confirmation",
28
- content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: GC.textMuted, children: "After a successful payment you'll see an on-screen confirmation with your order ID. You'll also receive:" }), _jsxs("ul", { className: `${GC.listDiscMuted} mt-3`, children: [_jsx("li", { children: "An email confirmation to your registered address" }), _jsx("li", { children: "A WhatsApp message if you've added and verified your phone number" })] }), _jsxs(Text, { className: `${GC.textMuted} mt-3`, children: ["View all your orders at any time under ", _jsx(Span, { weight: "bold", children: "My Account \u2192 My Orders" }), "."] })] })),
28
+ content: (_jsxs(_Fragment, { children: [_jsx(Text, { className: GC.textMuted, children: "After a successful payment you'll see an on-screen confirmation with your order ID. You'll also receive:" }), _jsxs(Ul, { className: `${GC.listDiscMuted} mt-3`, children: [_jsx(Li, { children: "An email confirmation to your registered address" }), _jsx(Li, { children: "A WhatsApp message if you've added and verified your phone number" })] }), _jsxs(Text, { className: `${GC.textMuted} mt-3`, children: ["View all your orders at any time under ", _jsx(Span, { weight: "bold", children: "My Account \u2192 My Orders" }), "."] })] })),
29
29
  },
30
30
  {
31
31
  Icon: UserX, title: "Guest Limitations",
@@ -34,5 +34,5 @@ const SECTIONS = [
34
34
  ];
35
35
  // ─── Component ────────────────────────────────────────────────────────────────
36
36
  export function BuyerShoppingGuideView() {
37
- return (_jsxs(Div, { className: "space-y-8 pb-10 max-w-3xl mx-auto", children: [_jsxs(Section, { children: [_jsxs(Div, { className: "flex items-center gap-3 mb-2", children: [_jsx(Div, { className: "flex-shrink-0 w-10 h-10 rounded-xl flex items-center justify-center", style: { background: GC.pageHeaderGradient }, children: _jsx(ShoppingBag, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-sm font-semibold text-[var(--appkit-color-text-muted)] uppercase tracking-widest", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-2xl md:text-3xl font-bold text-[var(--appkit-color-text)] mb-2", children: "Shopping & Checkout" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "Everything you need to know about finding, evaluating, and buying collectibles on LetItRip." })] }), SECTIONS.map(({ Icon, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
37
+ return (_jsxs(Stack, { className: "max-w-3xl mx-auto", padding: "b-2xl", gap: "xl", children: [_jsxs(Section, { children: [_jsxs(Row, { className: "mb-2", align: "center", gap: "3", children: [_jsx(Row, { className: "flex-shrink-0 w-10 h-10", align: "center", justify: "center", rounded: "xl", style: { background: GC.pageHeaderGradient }, children: _jsx(ShoppingBag, { className: "w-5 h-5 text-white" }) }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)] tracking-widest", size: "sm", weight: "semibold", transform: "uppercase", children: "Buyer Guide" })] }), _jsx(Heading, { level: 1, className: "text-[var(--appkit-color-text)] mb-2", mdSize: "3xl", size: "2xl", weight: "bold", children: "Shopping & Checkout" }), _jsx(Text, { className: "text-[var(--appkit-color-text-muted)]", children: "Everything you need to know about finding, evaluating, and buying collectibles on LetItRip." })] }), SECTIONS.map(({ Icon, title, content }) => (_jsxs(Section, { className: GC.sectionWrap, children: [_jsxs(Div, { className: GC.sectionHeader, children: [_jsx(Icon, { className: GC.iconPrimary }), _jsx(Heading, { level: 2, className: GC.sectionTitle, children: title })] }), _jsx(Div, { className: GC.sectionBody, children: content })] }, title)))] }));
38
38
  }
@@ -1,7 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Div, Heading } from "../../../ui";
3
3
  export function ChatList({ labels = {}, isLoading = false, hasItems, renderLoading, renderEmptyState, renderList, className = "", }) {
4
- return (_jsxs(Div, { className: className, children: [labels.title && (_jsx(Heading, { level: 4, className: "mb-3 font-semibold", children: labels.title })), isLoading
4
+ return (_jsxs(Div, { className: className, children: [labels.title && (_jsx(Heading, { level: 4, className: "mb-3", weight: "semibold", children: labels.title })), isLoading
5
5
  ? (renderLoading?.() ?? null)
6
6
  : hasItems
7
7
  ? renderList()
@@ -1,7 +1,6 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import { Div, Heading, Row, Span } from "../../../ui";
3
- import { THEME_CONSTANTS } from "../../../tokens";
4
- const CLS_DOT_ON = "bg-emerald-500";
3
+ const CLS_DOT_ON = "bg-success-surface";
5
4
  export function ChatWindow({ labels = {}, isConnected = true, isLoading = false, error, renderLoadingIndicator, renderMessages, renderInput, className = "", }) {
6
- return (_jsxs(Div, { className: className, children: [_jsxs(Row, { justify: "between", className: "pb-3 border-b border-neutral-200 dark:border-neutral-700 mb-3", children: [_jsxs(Row, { className: THEME_CONSTANTS.spacing.gap.xs, children: [labels.title && _jsx(Heading, { level: 4, children: labels.title }), _jsx(Span, { className: `w-2 h-2 rounded-full ${isConnected ? CLS_DOT_ON : "bg-zinc-400"}`, "aria-label": isConnected ? labels.connected : labels.disconnected })] }), isLoading && (renderLoadingIndicator?.() ?? null)] }), error ?? null, renderMessages(), renderInput()] }));
5
+ return (_jsxs(Div, { className: className, children: [_jsxs(Row, { justify: "between", className: "border-b border-neutral-200 dark:border-neutral-700 mb-3", padding: "b-sm", children: [_jsxs(Row, { gap: "xs", children: [labels.title && _jsx(Heading, { level: 4, children: labels.title }), _jsx(Span, { className: `w-2 h-2 ${isConnected ? CLS_DOT_ON : "bg-zinc-400"}`, rounded: "full", "aria-label": isConnected ? labels.connected : labels.disconnected })] }), isLoading && (renderLoadingIndicator?.() ?? null)] }), error ?? null, renderMessages(), renderInput()] }));
7
6
  }
@@ -1,6 +1,7 @@
1
1
  import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
- import { Div, Heading, Span } from "../../../ui";
3
- import { THEME_CONSTANTS } from "../../../tokens";
2
+ import { Div, Heading, Span, Stack } from "../../../ui";
4
3
  export function MessagesView({ labels = {}, chatId, renderChatList, renderChatWindow, renderMobileBack, renderEmptyState, className = "", }) {
5
- return (_jsxs(Div, { className: `grid grid-cols-1 md:grid-cols-[280px_1fr] xl:grid-cols-[320px_1fr] 2xl:grid-cols-[360px_1fr] gap-4 h-full min-h-[600px] ${className}`, children: [_jsxs(Div, { className: chatId ? "hidden md:block" : "block", children: [labels.title && (_jsx(Heading, { level: 3, className: "mb-3 font-semibold", children: labels.title })), renderChatList?.()] }), chatId ? (_jsxs(Div, { className: `flex flex-col ${THEME_CONSTANTS.spacing.gap.xs}`, children: [renderMobileBack?.(), renderChatWindow?.()] })) : (_jsx(Div, { className: "hidden md:flex items-center justify-center text-zinc-400 dark:text-zinc-400 border border-dashed border-neutral-200 dark:border-neutral-700 rounded-xl", children: renderEmptyState?.() ?? (_jsx(Span, { children: labels.selectRoom ?? "Select a conversation" })) }))] }));
4
+ return (_jsxs(Div, { layout: "grid", gap: "4", className: `grid-cols-1 md:grid-cols-[280px_1fr] xl:grid-cols-[320px_1fr] 2xl:grid-cols-[360px_1fr] h-full min-h-[600px] ${className}`, children: [_jsxs(Div, { className: chatId ? "hidden md:block" : "block", children: [labels.title && (_jsx(Heading, { level: 3, className: "mb-3", weight: "semibold", children: labels.title })), renderChatList?.()] }), chatId ? (_jsxs(Stack, { gap: "xs", children: [renderMobileBack?.(), renderChatWindow?.()] })) : (
5
+ // audit-variant-ok: empty-state — hidden md:flex breakpoint + dashed border + text-zinc-400 composition
6
+ _jsx(Div, { className: "hidden md:flex items-center justify-center text-zinc-400 dark:text-zinc-400 border border-dashed border-neutral-200 dark:border-neutral-700", rounded: "xl", children: renderEmptyState?.() ?? (_jsx(Span, { children: labels.selectRoom ?? "Select a conversation" })) }))] }));
6
7
  }