@qite/tide-booking-component 1.4.81 → 1.4.83

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 (58) hide show
  1. package/.husky/pre-commit +1 -2
  2. package/build/build-cjs/index.js +4799 -260
  3. package/build/build-cjs/src/search-results/components/item-picker/index.d.ts +1 -1
  4. package/build/build-cjs/src/search-results/store/search-results-slice.d.ts +3 -3
  5. package/build/build-cjs/src/search-results/types.d.ts +1 -0
  6. package/build/build-cjs/src/search-results/utils/flight-utils.d.ts +1 -2
  7. package/build/build-cjs/src/search-results/utils/search-results-utils.d.ts +7 -3
  8. package/build/build-cjs/src/shared/utils/localization-util.d.ts +5 -0
  9. package/build/build-esm/index.js +4803 -254
  10. package/build/build-esm/src/search-results/components/item-picker/index.d.ts +1 -1
  11. package/build/build-esm/src/search-results/store/search-results-slice.d.ts +3 -3
  12. package/build/build-esm/src/search-results/types.d.ts +1 -0
  13. package/build/build-esm/src/search-results/utils/flight-utils.d.ts +1 -2
  14. package/build/build-esm/src/search-results/utils/search-results-utils.d.ts +7 -3
  15. package/build/build-esm/src/shared/utils/localization-util.d.ts +5 -0
  16. package/package.json +4 -2
  17. package/src/booking-wizard/features/confirmation/confirmation.tsx +1 -1
  18. package/src/booking-wizard/features/error/error.tsx +2 -1
  19. package/src/booking-wizard/features/flight-options/index.tsx +1 -1
  20. package/src/booking-wizard/features/product-options/options-form.tsx +2 -2
  21. package/src/booking-wizard/features/room-options/index.tsx +1 -1
  22. package/src/booking-wizard/features/summary/summary.tsx +1 -1
  23. package/src/booking-wizard/features/travelers-form/travelers-form.tsx +1 -1
  24. package/src/content/featured-trips/featured-trip-card.tsx +18 -16
  25. package/src/search-results/components/group-tour/group-tour-results.tsx +11 -3
  26. package/src/search-results/components/hotel/hotel-accommodation-results.tsx +114 -131
  27. package/src/search-results/components/hotel/hotel-card.tsx +3 -2
  28. package/src/search-results/components/item-picker/index.tsx +1 -1
  29. package/src/search-results/components/round-trip/round-trip-results.tsx +27 -3
  30. package/src/search-results/components/search-results-container/flight-search-results.tsx +4 -9
  31. package/src/search-results/components/search-results-container/search-results-container.tsx +70 -24
  32. package/src/search-results/components/tab-views/index.tsx +10 -7
  33. package/src/search-results/store/search-results-slice.ts +7 -7
  34. package/src/search-results/types.ts +1 -0
  35. package/src/search-results/utils/flight-utils.ts +0 -13
  36. package/src/search-results/utils/search-results-utils.ts +31 -5
  37. package/src/shared/components/flyin/accommodation-flyin.tsx +169 -3
  38. package/src/shared/translations/ar-SA.json +3 -1
  39. package/src/shared/translations/da-DK.json +3 -1
  40. package/src/shared/translations/de-DE.json +3 -1
  41. package/src/shared/translations/en-GB.json +3 -1
  42. package/src/shared/translations/es-ES.json +3 -1
  43. package/src/shared/translations/fr-BE.json +3 -1
  44. package/src/shared/translations/fr-FR.json +3 -1
  45. package/src/shared/translations/is-IS.json +3 -1
  46. package/src/shared/translations/it-IT.json +3 -1
  47. package/src/shared/translations/ja-JP.json +3 -1
  48. package/src/shared/translations/nl-BE.json +3 -1
  49. package/src/shared/translations/nl-NL.json +3 -1
  50. package/src/shared/translations/no-NO.json +3 -1
  51. package/src/shared/translations/pl-PL.json +3 -1
  52. package/src/shared/translations/pt-PT.json +3 -1
  53. package/src/shared/translations/sv-SE.json +3 -1
  54. package/src/shared/utils/localization-util.ts +18 -0
  55. package/styles/booking-search-results-variables.scss +1 -1
  56. package/styles/components/_content.scss +7 -0
  57. package/styles/components/_flyin.scss +121 -1
  58. package/styles/components/_search.scss +134 -441
package/.husky/pre-commit CHANGED
@@ -1,2 +1 @@
1
- npx prettier --write .
2
- git add -A
1
+ npx prettier --write .