@qite/tide-booking-component 1.4.82 → 1.4.84

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