@qite/tide-booking-component 1.4.105 → 1.4.107

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 (97) hide show
  1. package/build/build-cjs/index.js +18288 -20939
  2. package/build/build-cjs/src/qsm/store/qsm-slice.d.ts +2 -1
  3. package/build/build-cjs/src/shared/components/icon.d.ts +1 -0
  4. package/build/build-cjs/src/shared/utils/localization-util.d.ts +4 -0
  5. package/build/build-esm/index.js +18234 -20846
  6. package/build/build-esm/src/qsm/store/qsm-slice.d.ts +2 -1
  7. package/build/build-esm/src/shared/components/icon.d.ts +1 -0
  8. package/build/build-esm/src/shared/utils/localization-util.d.ts +4 -0
  9. package/package.json +2 -2
  10. package/src/booking-product/components/amount-input.tsx +1 -1
  11. package/src/booking-product/components/date-range-picker/calendar.tsx +1 -1
  12. package/src/booking-product/components/dates.tsx +1 -1
  13. package/src/booking-product/components/header.tsx +1 -1
  14. package/src/booking-product/components/rating.tsx +1 -1
  15. package/src/booking-product/components/rooms.tsx +1 -1
  16. package/src/booking-wizard/components/message.tsx +1 -1
  17. package/src/booking-wizard/features/confirmation/confirmation.tsx +1 -1
  18. package/src/booking-wizard/features/flight-options/flight-filter.tsx +1 -1
  19. package/src/booking-wizard/features/flight-options/flight-option-flight.tsx +1 -1
  20. package/src/booking-wizard/features/flight-options/flight-option-modal.tsx +1 -1
  21. package/src/booking-wizard/features/summary/summary.tsx +1 -1
  22. package/src/booking-wizard/features/travelers-form/type-ahead-input.tsx +1 -1
  23. package/src/content/components/accordion.tsx +1 -1
  24. package/src/content/components/contact.tsx +0 -1
  25. package/src/content/components/gallery.tsx +3 -3
  26. package/src/content/components/login.tsx +1 -2
  27. package/src/content/components/personal-contact-form.tsx +1 -1
  28. package/src/content/components/slider.tsx +1 -1
  29. package/src/content/featured-trips/featured-trip-card.tsx +1 -1
  30. package/src/content/features/content-page/content-page-self-contained.tsx +1 -1
  31. package/src/content/footer/index.tsx +1 -1
  32. package/src/content/navbar/index.tsx +1 -1
  33. package/src/qsm/components/QSMContainer/qsm-container.tsx +58 -5
  34. package/src/qsm/components/search-input/index.tsx +1 -1
  35. package/src/qsm/components/search-input-group/index.tsx +13 -2
  36. package/src/qsm/components/travel-input/index.tsx +1 -3
  37. package/src/qsm/components/travel-input-group/index.tsx +1 -1
  38. package/src/qsm/store/qsm-slice.ts +10 -3
  39. package/src/search-results/components/excursions/day-by-day-excursions.tsx +4 -9
  40. package/src/search-results/components/filters/filters.tsx +1 -1
  41. package/src/search-results/components/filters/flight-filters.tsx +1 -1
  42. package/src/search-results/components/flight/flight-results.tsx +1 -1
  43. package/src/search-results/components/flight/flight-selection/independent-flight-option.tsx +1 -1
  44. package/src/search-results/components/flight/flight-selection/independent-flight-selection.tsx +1 -1
  45. package/src/search-results/components/flight/flight-selection/paired-flight-option.tsx +1 -1
  46. package/src/search-results/components/flight/flight-selection/paired-flight-selection.tsx +1 -1
  47. package/src/search-results/components/group-tour/group-tour-card.tsx +1 -1
  48. package/src/search-results/components/hotel/hotel-accommodation-results.tsx +1 -1
  49. package/src/search-results/components/hotel/hotel-card.tsx +1 -1
  50. package/src/search-results/components/itinerary/full-itinerary.tsx +161 -53
  51. package/src/search-results/components/itinerary/index.tsx +32 -8
  52. package/src/search-results/components/round-trip/round-trip-results.tsx +1 -1
  53. package/src/search-results/components/search-results-container/flight-search-results.tsx +1 -1
  54. package/src/search-results/components/search-results-container/search-results-container.tsx +5 -6
  55. package/src/search-results/components/tab-views/index.tsx +1 -1
  56. package/src/search-results/features/flights/flight-search-results-self-contained.tsx +1 -1
  57. package/src/search-results/features/hotels/hotel-flight-search-results-self-contained.tsx +1 -1
  58. package/src/search-results/features/hotels/hotel-search-results-self-contained.tsx +1 -1
  59. package/src/shared/components/flyin/flyin.tsx +1 -1
  60. package/src/shared/components/icon.tsx +349 -88
  61. package/src/shared/translations/ar-SA.json +4 -0
  62. package/src/shared/translations/da-DK.json +4 -0
  63. package/src/shared/translations/de-DE.json +4 -0
  64. package/src/shared/translations/en-GB.json +4 -0
  65. package/src/shared/translations/es-ES.json +4 -0
  66. package/src/shared/translations/fr-BE.json +4 -0
  67. package/src/shared/translations/fr-FR.json +4 -0
  68. package/src/shared/translations/is-IS.json +4 -0
  69. package/src/shared/translations/it-IT.json +4 -0
  70. package/src/shared/translations/ja-JP.json +4 -0
  71. package/src/shared/translations/nl-BE.json +4 -0
  72. package/src/shared/translations/nl-NL.json +4 -0
  73. package/src/shared/translations/no-NO.json +4 -0
  74. package/src/shared/translations/pl-PL.json +4 -0
  75. package/src/shared/translations/pt-PT.json +4 -0
  76. package/src/shared/translations/sv-SE.json +4 -0
  77. package/src/shared/utils/tide-api-utils.ts +2 -2
  78. package/styles/booking-qsm-variables.scss +2 -2
  79. package/styles/booking-search-results-variables.scss +17 -17
  80. package/styles/components/_faq.scss +2 -0
  81. package/styles/components/_flyin.scss +19 -0
  82. package/styles/components/_gallery.scss +5 -2
  83. package/build/build-cjs/src/booking-product/components/icon.d.ts +0 -10
  84. package/build/build-cjs/src/booking-wizard/components/icon.d.ts +0 -10
  85. package/build/build-cjs/src/content/components/icon.d.ts +0 -10
  86. package/build/build-cjs/src/qsm/components/icon.d.ts +0 -10
  87. package/build/build-cjs/src/search-results/components/icon.d.ts +0 -11
  88. package/build/build-esm/src/booking-product/components/icon.d.ts +0 -10
  89. package/build/build-esm/src/booking-wizard/components/icon.d.ts +0 -10
  90. package/build/build-esm/src/content/components/icon.d.ts +0 -10
  91. package/build/build-esm/src/qsm/components/icon.d.ts +0 -10
  92. package/build/build-esm/src/search-results/components/icon.d.ts +0 -11
  93. package/src/booking-product/components/icon.tsx +0 -200
  94. package/src/booking-wizard/components/icon.tsx +0 -398
  95. package/src/content/components/icon.tsx +0 -695
  96. package/src/qsm/components/icon.tsx +0 -354
  97. package/src/search-results/components/icon.tsx +0 -677
@@ -121,6 +121,7 @@ export declare const setSelectedQsmType: import('@reduxjs/toolkit').ActionCreato
121
121
  value: any;
122
122
  },
123
123
  'qsm/setFieldValue'
124
- >;
124
+ >,
125
+ hydrateQsmState: import('@reduxjs/toolkit').ActionCreatorWithPayload<Partial<QSMState>, 'qsm/hydrateQsmState'>;
125
126
  declare const _default: import('@reduxjs/toolkit').Reducer<QSMState>;
126
127
  export default _default;
@@ -5,6 +5,7 @@ interface IconProps {
5
5
  title?: string;
6
6
  width?: number;
7
7
  height?: number;
8
+ fill?: string;
8
9
  }
9
10
  declare const Icon: React.FC<IconProps>;
10
11
  export default Icon;
@@ -389,6 +389,10 @@ export declare const getTranslations: (language: string) => {
389
389
  TRAVEL_GROUP: string;
390
390
  EXCURSION: string;
391
391
  };
392
+ ITINERARY: {
393
+ DAY: string;
394
+ NO_ITEMS: string;
395
+ };
392
396
  };
393
397
  export declare const locales: {
394
398
  'ar-SA': import('date-fns').Locale;