@qite/tide-booking-component 1.4.112 → 1.4.114
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.
- package/build/build-cjs/index.js +425 -263
- package/build/build-cjs/src/search-results/components/book-packaging-entry/index.d.ts +1 -0
- package/build/build-cjs/src/search-results/components/book-packaging-entry/wl-sidebar.d.ts +2 -0
- package/build/build-cjs/src/search-results/components/search-results-container/search-results-container.d.ts +4 -1
- package/build/build-cjs/src/search-results/index.d.ts +1 -0
- package/build/build-cjs/src/shared/booking/summary.d.ts +1 -0
- package/build/build-cjs/src/shared/utils/booking-summary.d.ts +1 -0
- package/build/build-esm/index.js +424 -263
- package/build/build-esm/src/search-results/components/book-packaging-entry/index.d.ts +1 -0
- package/build/build-esm/src/search-results/components/book-packaging-entry/wl-sidebar.d.ts +2 -0
- package/build/build-esm/src/search-results/components/search-results-container/search-results-container.d.ts +4 -1
- package/build/build-esm/src/search-results/index.d.ts +1 -0
- package/build/build-esm/src/shared/booking/summary.d.ts +1 -0
- package/build/build-esm/src/shared/utils/booking-summary.d.ts +1 -0
- package/package.json +2 -2
- package/src/search-results/components/book-packaging-entry/index.tsx +60 -22
- package/src/search-results/components/book-packaging-entry/wl-sidebar.tsx +27 -16
- package/src/search-results/components/flight/flight-selection/independent-flight-selection.tsx +5 -2
- package/src/search-results/components/hotel/hotel-accommodation-results.tsx +11 -2
- package/src/search-results/components/search-results-container/search-results-container.tsx +22 -8
- package/src/search-results/index.tsx +3 -2
- package/src/shared/booking/summary.tsx +4 -2
- package/src/shared/booking/travelers-form.tsx +12 -6
- package/src/shared/components/flyin/flyin.tsx +10 -1
- package/src/shared/translations/ar-SA.json +3 -1
- package/src/shared/translations/da-DK.json +3 -1
- package/src/shared/translations/de-DE.json +3 -1
- package/src/shared/translations/en-GB.json +3 -1
- package/src/shared/translations/es-ES.json +3 -1
- package/src/shared/translations/fr-BE.json +3 -1
- package/src/shared/translations/fr-FR.json +3 -1
- package/src/shared/translations/is-IS.json +3 -1
- package/src/shared/translations/it-IT.json +3 -1
- package/src/shared/translations/ja-JP.json +3 -1
- package/src/shared/translations/nl-BE.json +3 -1
- package/src/shared/translations/nl-NL.json +3 -1
- package/src/shared/translations/no-NO.json +3 -1
- package/src/shared/translations/pl-PL.json +3 -1
- package/src/shared/translations/pt-PT.json +3 -1
- package/src/shared/translations/sv-SE.json +3 -1
- package/src/shared/utils/booking-summary.tsx +11 -0
- package/styles/components/_booking.scss +10 -0
- package/styles/components/_select-wrapper.scss +5 -0
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { SearchSeed } from '../../types';
|
|
3
3
|
interface BookPackagingEntryProps {
|
|
4
4
|
activeSearchSeed: SearchSeed | null;
|
|
5
|
+
isLoading: boolean;
|
|
5
6
|
isConfirmationPage?: boolean;
|
|
6
7
|
}
|
|
7
8
|
declare const BookPackagingEntry: React.FC<BookPackagingEntryProps>;
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
2
|
import { SearchSeed } from '../../types';
|
|
3
|
+
import { PackagingAccommodationResponse } from '@qite/tide-client';
|
|
3
4
|
interface WLSidebarProps {
|
|
4
5
|
activeSearchSeed: SearchSeed | null;
|
|
6
|
+
packagingAccoResult: PackagingAccommodationResponse | null;
|
|
5
7
|
}
|
|
6
8
|
declare const WLSidebar: React.FC<WLSidebarProps>;
|
|
7
9
|
export default WLSidebar;
|
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
2
|
+
interface SearchResultsContainerProps {
|
|
3
|
+
onBookingStarted?: () => void;
|
|
4
|
+
}
|
|
5
|
+
declare const SearchResultsContainer: React.FC<SearchResultsContainerProps>;
|
|
3
6
|
export default SearchResultsContainer;
|
|
@@ -2,6 +2,7 @@ import React from 'react';
|
|
|
2
2
|
import { SearchResultsConfiguration } from './types';
|
|
3
3
|
interface SearchResultsProps {
|
|
4
4
|
configuration: SearchResultsConfiguration;
|
|
5
|
+
onBookingStarted?: () => void;
|
|
5
6
|
}
|
|
6
7
|
declare const SearchResults: React.FC<SearchResultsProps>;
|
|
7
8
|
export default SearchResults;
|