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