@qite/tide-booking-component 1.4.96 → 1.4.98
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 +382 -385
- package/build/build-cjs/src/search-results/types.d.ts +2 -1
- package/build/build-esm/index.js +378 -375
- package/build/build-esm/src/search-results/types.d.ts +2 -1
- package/package.json +1 -1
- package/src/booking-wizard/features/sidebar/sidebar.tsx +2 -2
- package/src/search-results/components/itinerary/index.tsx +270 -235
- package/src/search-results/types.ts +2 -1
- package/styles/components/_search.scss +2 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BookingPackage, FlightSearchResponseItem, WebsiteConfigurationSearchConfiguration } from '@qite/tide-client';
|
|
1
|
+
import { BookingPackage, FlightSearchResponseItem, PackagingEntry, WebsiteConfigurationSearchConfiguration } from '@qite/tide-client';
|
|
2
2
|
import { ReactNode } from 'react';
|
|
3
3
|
|
|
4
4
|
export type FlightSelectionMode = 'paired' | 'independent';
|
|
@@ -53,6 +53,7 @@ export interface SearchResultsConfiguration {
|
|
|
53
53
|
|
|
54
54
|
destinationImage?: { url: string; alt: string };
|
|
55
55
|
onBook?: (result: BookingPackage) => void;
|
|
56
|
+
packagingEntry?: PackagingEntry;
|
|
56
57
|
}
|
|
57
58
|
|
|
58
59
|
export type FilterType = 'checkbox' | 'toggle' | 'slider' | 'star-rating';
|
|
@@ -493,6 +493,7 @@
|
|
|
493
493
|
}
|
|
494
494
|
|
|
495
495
|
&-date {
|
|
496
|
+
min-width: 26px;
|
|
496
497
|
p {
|
|
497
498
|
margin: 0px;
|
|
498
499
|
color: var(--tide-booking-search-itinerary-filter-transport-date-month-color);
|
|
@@ -670,6 +671,7 @@
|
|
|
670
671
|
display: flex;
|
|
671
672
|
align-items: center;
|
|
672
673
|
flex-flow: row nowrap;
|
|
674
|
+
min-width: 26px;
|
|
673
675
|
max-width: 26px;
|
|
674
676
|
|
|
675
677
|
svg {
|