@raxonltd/raxon-core 1.1.7 → 1.1.13

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 (89) hide show
  1. package/core/component/general.image.tsx +86 -0
  2. package/core/context/cart.context.tsx +446 -0
  3. package/core/context/security.context.tsx +151 -0
  4. package/core/feature/address/api/places.api.ts +92 -0
  5. package/core/feature/address/form/address-search-input.tsx +125 -0
  6. package/core/feature/address/hook/use.addres.tsx +63 -0
  7. package/core/feature/address/hook/use.address-autocomplete.ts +116 -0
  8. package/core/feature/address/util/address.types.ts +38 -0
  9. package/core/feature/address/util/parse-google-place.ts +66 -0
  10. package/core/feature/analytic-event/analytic.event.api.ts +27 -0
  11. package/core/feature/analytic-event/analytic.event.context.tsx +180 -0
  12. package/core/feature/analytic-event/analytic.event.util.ts +42 -0
  13. package/core/feature/analytic-event/use.analytic.auto.tsx +114 -0
  14. package/core/feature/article/hook/use.article.tsx +33 -0
  15. package/core/feature/attribute/hook/use.attribute.tsx +24 -0
  16. package/core/feature/auth/hook/use.auth.tsx +141 -0
  17. package/core/feature/auth/modal/modal.auth.tsx +80 -0
  18. package/core/feature/auth/view/view.login.tsx +199 -0
  19. package/core/feature/auth/view/view.register.tsx +333 -0
  20. package/core/feature/bank-account/hook/use.bank.account.tsx +47 -0
  21. package/core/feature/brand/hook/use.brand.tsx +24 -0
  22. package/core/feature/cart/component/cart.order.summary.tsx +89 -0
  23. package/core/feature/cart/component/cart.promo.code.section.tsx +208 -0
  24. package/core/feature/cart/hook/use.cart.tsx +267 -0
  25. package/core/feature/cart/util/basket-pay.response.ts +67 -0
  26. package/core/feature/cart/util/cart-optimistic.ts +425 -0
  27. package/core/feature/cart/util/garanti-payment.ts +27 -0
  28. package/core/feature/collection/hook/use.collection.tsx +32 -0
  29. package/core/feature/delivery-method/hook/use.delivery.method.tsx +40 -0
  30. package/core/feature/delivery-method/util/checkout.delivery.method.ts +11 -0
  31. package/core/feature/faq/hook/use.faq.tsx +23 -0
  32. package/core/feature/favorite/hook/use.favorite.tsx +48 -0
  33. package/core/feature/form-submit/form/form.contact.tsx +118 -0
  34. package/core/feature/form-submit/hook/use.form.submit.tsx +16 -0
  35. package/core/feature/invoice/hook/use.invoice.tsx +51 -0
  36. package/core/feature/newsletter/hook/use.newsletter.tsx +124 -0
  37. package/core/feature/newsletter/modal/modal.newsletter.product.tsx +163 -0
  38. package/core/feature/order/hook/use.order.tsx +31 -0
  39. package/core/feature/payment-method/checkout.payment.options.ts +117 -0
  40. package/core/feature/payment-method/hook/use.payment.method.tsx +44 -0
  41. package/core/feature/product/hook/use.product.tsx +122 -0
  42. package/core/feature/profile/hook/use.profile.tsx +126 -0
  43. package/core/feature/promo-code/hook/use.promo.code.tsx +27 -0
  44. package/core/interface/basket.interface.ts +360 -0
  45. package/core/interface/bootstrap.interface.ts +39 -0
  46. package/core/interface/context.interface.ts +9 -0
  47. package/core/interface/inventory.interface.ts +88 -0
  48. package/core/interface/nexine.interface.ts +4 -0
  49. package/core/interface/prisma.interface.ts +8844 -0
  50. package/core/interface/product.interface.ts +111 -0
  51. package/core/raxon.context.tsx +256 -0
  52. package/core/schema/checkout.schema.ts +103 -0
  53. package/core/server/places.proxy.ts +35 -0
  54. package/core/server/raxon.bootstrap.route.ts +39 -0
  55. package/core/server/raxon.server.ts +80 -0
  56. package/core/util/basket.item.display.ts +19 -0
  57. package/core/util/category.nav.ts +46 -0
  58. package/core/util/client-ip.ts +35 -0
  59. package/core/util/collection.util.ts +433 -0
  60. package/core/util/fetch.bootstrap.ts +21 -0
  61. package/core/util/garanti-payment.ts +5 -0
  62. package/core/util/nexine.axios.tsx +104 -0
  63. package/core/util/no-cache.ts +6 -0
  64. package/core/util/util.ts +191 -0
  65. package/core/view/view.checkout.tsx +1964 -0
  66. package/dist/core/feature/address/api/places.api.d.ts.map +1 -1
  67. package/dist/core/feature/address/api/places.api.js +18 -4
  68. package/dist/core/server/places.proxy.d.ts +10 -0
  69. package/dist/core/server/places.proxy.d.ts.map +1 -0
  70. package/dist/core/server/places.proxy.js +24 -0
  71. package/dist/core/server/raxon.bootstrap.route.d.ts +7 -0
  72. package/dist/core/server/raxon.bootstrap.route.d.ts.map +1 -0
  73. package/dist/core/server/raxon.bootstrap.route.js +27 -0
  74. package/dist/core/server/raxon.server.d.ts +24 -0
  75. package/dist/core/server/raxon.server.d.ts.map +1 -0
  76. package/dist/core/server/raxon.server.js +59 -0
  77. package/dist/core/view/view.checkout.js +2 -2
  78. package/dist/middleware.d.ts +6 -0
  79. package/dist/middleware.d.ts.map +1 -0
  80. package/dist/middleware.js +5 -0
  81. package/dist/server-bootstrap.d.ts +2 -0
  82. package/dist/server-bootstrap.d.ts.map +1 -0
  83. package/dist/server-bootstrap.js +1 -0
  84. package/dist/server.d.ts +3 -0
  85. package/dist/server.d.ts.map +1 -0
  86. package/dist/server.js +1 -0
  87. package/dist/tsconfig.tsbuildinfo +1 -1
  88. package/package.json +22 -3
  89. package/tailwind.css +11 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.