@asdp/ferryui 0.1.22-dev.10171 → 0.1.22-dev.10189
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/dist/index.d.mts +64 -1
- package/dist/index.d.ts +64 -1
- package/dist/index.js +465 -177
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +465 -178
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1480,6 +1480,8 @@ interface ModalTotalPassengersLabels {
|
|
|
1480
1480
|
saveButton: string;
|
|
1481
1481
|
closeAriaLabel: string;
|
|
1482
1482
|
emptyContent: string;
|
|
1483
|
+
childCompanionWarning: string;
|
|
1484
|
+
infantCompanionWarning: string;
|
|
1483
1485
|
}
|
|
1484
1486
|
/**
|
|
1485
1487
|
* Passenger object structure
|
|
@@ -3282,6 +3284,65 @@ interface CardBookingTicketProps {
|
|
|
3282
3284
|
|
|
3283
3285
|
declare const CardBookingTicket: React$1.FC<CardBookingTicketProps>;
|
|
3284
3286
|
|
|
3287
|
+
interface CardBookingAddOnItem {
|
|
3288
|
+
price: string;
|
|
3289
|
+
label?: string;
|
|
3290
|
+
}
|
|
3291
|
+
interface CardBookingAddOnData {
|
|
3292
|
+
lounge?: CardBookingAddOnItem;
|
|
3293
|
+
assurance?: CardBookingAddOnItem;
|
|
3294
|
+
meal?: CardBookingAddOnItem;
|
|
3295
|
+
}
|
|
3296
|
+
interface CardBookingAddOnLabels {
|
|
3297
|
+
bookingDetails: string;
|
|
3298
|
+
totalPriceLabel: string;
|
|
3299
|
+
currencySymbol: string;
|
|
3300
|
+
notIncludedLabel: string;
|
|
3301
|
+
backToReviewButton: string;
|
|
3302
|
+
changeAddOnButton: string;
|
|
3303
|
+
loungeLabel: string;
|
|
3304
|
+
assuranceLabel: string;
|
|
3305
|
+
mealLabel: string;
|
|
3306
|
+
addOnPrice: string;
|
|
3307
|
+
}
|
|
3308
|
+
interface CardBookingAddOnProps {
|
|
3309
|
+
/**
|
|
3310
|
+
* Language for labels
|
|
3311
|
+
* @default 'id'
|
|
3312
|
+
*/
|
|
3313
|
+
language?: Language;
|
|
3314
|
+
/**
|
|
3315
|
+
* Custom labels override
|
|
3316
|
+
*/
|
|
3317
|
+
labels?: Partial<CardBookingAddOnLabels>;
|
|
3318
|
+
/**
|
|
3319
|
+
* Add-on prices from API response
|
|
3320
|
+
*/
|
|
3321
|
+
addOnData?: CardBookingAddOnData;
|
|
3322
|
+
/**
|
|
3323
|
+
* Total price formatted string (e.g. 50.000)
|
|
3324
|
+
*/
|
|
3325
|
+
totalPrice: string;
|
|
3326
|
+
/**
|
|
3327
|
+
* Callback for price detail click
|
|
3328
|
+
*/
|
|
3329
|
+
onPriceDetailClick: () => void;
|
|
3330
|
+
/**
|
|
3331
|
+
* Callback for primary button
|
|
3332
|
+
*/
|
|
3333
|
+
onBackToReviewClick?: () => void;
|
|
3334
|
+
/**
|
|
3335
|
+
* Callback for secondary button
|
|
3336
|
+
*/
|
|
3337
|
+
onChangeAddOnClick?: () => void;
|
|
3338
|
+
/**
|
|
3339
|
+
* Optional class name
|
|
3340
|
+
*/
|
|
3341
|
+
className?: string;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
declare const CardBookingAddOn: React$1.FC<CardBookingAddOnProps>;
|
|
3345
|
+
|
|
3285
3346
|
interface FAQItem {
|
|
3286
3347
|
id: number;
|
|
3287
3348
|
question: string;
|
|
@@ -3585,6 +3646,8 @@ interface CardReviewDetailLabels {
|
|
|
3585
3646
|
passengerTypeLabel: string;
|
|
3586
3647
|
addOnLabel: string;
|
|
3587
3648
|
viewDetail: string;
|
|
3649
|
+
noAddOnsLabel: string;
|
|
3650
|
+
serviceLabel: string;
|
|
3588
3651
|
}
|
|
3589
3652
|
interface CardReviewDetailProps {
|
|
3590
3653
|
/**
|
|
@@ -3993,4 +4056,4 @@ interface ModalListMenuServiceProps {
|
|
|
3993
4056
|
|
|
3994
4057
|
declare const ModalListMenuService: React$1.FC<ModalListMenuServiceProps>;
|
|
3995
4058
|
|
|
3996
|
-
export { API_CONFIG, API_ENDPOINTS, API_ERROR_MESSAGES, BackgroundTicketCard, BackgroundTicketCardVertical, type BadgeConfig, type BillingDetail, COUNTRIES, CardAddon, type CardAddonProps, CardBanner, type CardBannerProps, CardBookingTicket, type CardBookingTicketProps, CardFAQ, type CardFAQProps, CardMealCatalog, type CardMealCatalogProps, CardOrdererInfo, type CardOrdererInfoProps, CardPassengerList, type CardPassengerListProps, CardPaymentGuide, type CardPaymentGuideProps, CardPaymentInfo, type CardPaymentInfoProps, CardPaymentMethodList, type CardPaymentMethodListProps, CardPriceDetails, type CardPriceDetailsProps, CardProfileMenu, type CardProfileMenuLabels, type CardProfileMenuProps, CardPromo, type CardPromoProps, CardReview, CardReviewDetail, type CardReviewDetailProps, CardReviewPassenger, type CardReviewPassengerProps, type CardReviewProps, CardServiceMenu, type CardServiceMenuProps, CardStatusOrder, type CardStatusOrderProps, CardTicket, type CardTicketProps, CardTicketSearch, DEFAULT_LABELS$4 as CardTicketSearchDefaultLabels, type CardTicketSearchFormData, type CardTicketSearchLabels, type CardTicketSearchProps, type ServiceMenuItem as CardTicketSearchServiceMenuItem, CardTicketSearchSummary, DEFAULT_LABELS$3 as CardTicketSearchSummaryDefaultLabels, type CardTicketSearchSummaryProps, CardVehicleDetail, type CardVehicleDetailProps, CardVehicleOwnerForm, type CardVehicleOwnerFormProps, type CargoItem, CarouselWithCustomNav, type CarouselWithCustomNavProps, type CountryOption, DEFAULT_DURATION_RANGE, DEFAULT_PRICE_RANGE, DEFAULT_SCROLL_AMOUNT, DEFAULT_SERVICE_TYPES, DEFAULT_SORT_OPTIONS, DEFAULT_TIME_SLOTS, DEFAULT_VEHICLE_ICONS, DateFilter, DEFAULT_LABELS as DateFilterDefaultLabels, type DateFilterLabels, type DateFilterProps, type DateItem, type DepartureItem, EmptyContent, type EmptyContentButton, DEFAULT_LABELS$2 as EmptyContentDefaultLabels, type EmptyContentLabels, type EmptyContentProps, FileUpload, type FileUploadProps, type FilterCount, GENDER, type GENDER_TYPE, HARDCODED_ID, HTTP_STATUS, type HarborItem, IDENTITY_TYPE, type IDENTITY_TYPE_TYPE, type IdentityType, InputDynamic, type InputDynamicProps, type InputType, LOAD_TYPE, type LOAD_TYPE_TYPE, type LoadType, MANIFEST_ENTITY, type MANIFEST_ENTITY_TYPE, MODAL_PRESETS, MY_TICKET_STATUS, type MY_TICKET_STATUS_TYPE, MY_TICKET_TAB, type MY_TICKET_TAB_TYPE, type MealCategory, type MealItem, ModalFilterTicket, DEFAULT_LABELS$1 as ModalFilterTicketDefaultLabels, type ModalFilterTicketLabels, type ModalFilterTicketProps, ModalIllustration, type ModalIllustrationButton, type ModalIllustrationProps, ModalListMenuService, type ModalListMenuServiceProps, ModalListPassenger, type ModalListPassengerProps, ModalPassengerForm, type ModalPassengerFormProps, type ModalPresetKey, ModalPreviewImage, type ModalPreviewImageProps, ModalPriceDetail, type ModalPriceDetailProps, ModalSearchHarbor, type ModalSearchHarborProps, ModalSearchTicket, type ModalSearchTicketProps, ModalSelectDate, type ModalSelectDateProps, ModalService, type CardServiceMenuItem as ModalServiceItem, type ModalServiceProps, ModalTotalPassengers, type ModalTotalPassengersProps, ModalTypeOfService, type ModalTypeOfServiceProps, PASSENGER_TYPE, type PASSENGER_TYPE_TYPE, type Passenger, type PassengerClass, type PassengerFormData, type PassengerService, type PassengerType, type PaymentGuideStep, type PaymentMethodCategory, type PaymentStep, type PriceDetailItem, type ProfileMenuSection, type ProfileMenuTab, type Provider, type RadioOption, type ReservationStep, type ReviewPassengerItem, type RouteItem, type SearchSummaryField, type SearchTicketFormData, type SelectOption, type SelectedPassengerItem, type ServiceId, type ServiceItem, SortMenu, type SortMenuProps, type SortOption, type StepStatus, Stepper, type StepperProps, type StepperStep, type TabType, type TypeOfService, type VehicleOwner, calculateAge, getBadgeConfig, getModalPreset, getSortLabel, hexToRgba };
|
|
4059
|
+
export { API_CONFIG, API_ENDPOINTS, API_ERROR_MESSAGES, BackgroundTicketCard, BackgroundTicketCardVertical, type BadgeConfig, type BillingDetail, COUNTRIES, CardAddon, type CardAddonProps, CardBanner, type CardBannerProps, CardBookingAddOn, type CardBookingAddOnData, type CardBookingAddOnItem, type CardBookingAddOnLabels, type CardBookingAddOnProps, CardBookingTicket, type CardBookingTicketProps, CardFAQ, type CardFAQProps, CardMealCatalog, type CardMealCatalogProps, CardOrdererInfo, type CardOrdererInfoProps, CardPassengerList, type CardPassengerListProps, CardPaymentGuide, type CardPaymentGuideProps, CardPaymentInfo, type CardPaymentInfoProps, CardPaymentMethodList, type CardPaymentMethodListProps, CardPriceDetails, type CardPriceDetailsProps, CardProfileMenu, type CardProfileMenuLabels, type CardProfileMenuProps, CardPromo, type CardPromoProps, CardReview, CardReviewDetail, type CardReviewDetailProps, CardReviewPassenger, type CardReviewPassengerProps, type CardReviewProps, CardServiceMenu, type CardServiceMenuProps, CardStatusOrder, type CardStatusOrderProps, CardTicket, type CardTicketProps, CardTicketSearch, DEFAULT_LABELS$4 as CardTicketSearchDefaultLabels, type CardTicketSearchFormData, type CardTicketSearchLabels, type CardTicketSearchProps, type ServiceMenuItem as CardTicketSearchServiceMenuItem, CardTicketSearchSummary, DEFAULT_LABELS$3 as CardTicketSearchSummaryDefaultLabels, type CardTicketSearchSummaryProps, CardVehicleDetail, type CardVehicleDetailProps, CardVehicleOwnerForm, type CardVehicleOwnerFormProps, type CargoItem, CarouselWithCustomNav, type CarouselWithCustomNavProps, type CountryOption, DEFAULT_DURATION_RANGE, DEFAULT_PRICE_RANGE, DEFAULT_SCROLL_AMOUNT, DEFAULT_SERVICE_TYPES, DEFAULT_SORT_OPTIONS, DEFAULT_TIME_SLOTS, DEFAULT_VEHICLE_ICONS, DateFilter, DEFAULT_LABELS as DateFilterDefaultLabels, type DateFilterLabels, type DateFilterProps, type DateItem, type DepartureItem, EmptyContent, type EmptyContentButton, DEFAULT_LABELS$2 as EmptyContentDefaultLabels, type EmptyContentLabels, type EmptyContentProps, FileUpload, type FileUploadProps, type FilterCount, GENDER, type GENDER_TYPE, HARDCODED_ID, HTTP_STATUS, type HarborItem, IDENTITY_TYPE, type IDENTITY_TYPE_TYPE, type IdentityType, InputDynamic, type InputDynamicProps, type InputType, LOAD_TYPE, type LOAD_TYPE_TYPE, type LoadType, MANIFEST_ENTITY, type MANIFEST_ENTITY_TYPE, MODAL_PRESETS, MY_TICKET_STATUS, type MY_TICKET_STATUS_TYPE, MY_TICKET_TAB, type MY_TICKET_TAB_TYPE, type MealCategory, type MealItem, ModalFilterTicket, DEFAULT_LABELS$1 as ModalFilterTicketDefaultLabels, type ModalFilterTicketLabels, type ModalFilterTicketProps, ModalIllustration, type ModalIllustrationButton, type ModalIllustrationProps, ModalListMenuService, type ModalListMenuServiceProps, ModalListPassenger, type ModalListPassengerProps, ModalPassengerForm, type ModalPassengerFormProps, type ModalPresetKey, ModalPreviewImage, type ModalPreviewImageProps, ModalPriceDetail, type ModalPriceDetailProps, ModalSearchHarbor, type ModalSearchHarborProps, ModalSearchTicket, type ModalSearchTicketProps, ModalSelectDate, type ModalSelectDateProps, ModalService, type CardServiceMenuItem as ModalServiceItem, type ModalServiceProps, ModalTotalPassengers, type ModalTotalPassengersProps, ModalTypeOfService, type ModalTypeOfServiceProps, PASSENGER_TYPE, type PASSENGER_TYPE_TYPE, type Passenger, type PassengerClass, type PassengerFormData, type PassengerService, type PassengerType, type PaymentGuideStep, type PaymentMethodCategory, type PaymentStep, type PriceDetailItem, type ProfileMenuSection, type ProfileMenuTab, type Provider, type RadioOption, type ReservationStep, type ReviewPassengerItem, type RouteItem, type SearchSummaryField, type SearchTicketFormData, type SelectOption, type SelectedPassengerItem, type ServiceId, type ServiceItem, SortMenu, type SortMenuProps, type SortOption, type StepStatus, Stepper, type StepperProps, type StepperStep, type TabType, type TypeOfService, type VehicleOwner, calculateAge, getBadgeConfig, getModalPreset, getSortLabel, hexToRgba };
|
package/dist/index.d.ts
CHANGED
|
@@ -1480,6 +1480,8 @@ interface ModalTotalPassengersLabels {
|
|
|
1480
1480
|
saveButton: string;
|
|
1481
1481
|
closeAriaLabel: string;
|
|
1482
1482
|
emptyContent: string;
|
|
1483
|
+
childCompanionWarning: string;
|
|
1484
|
+
infantCompanionWarning: string;
|
|
1483
1485
|
}
|
|
1484
1486
|
/**
|
|
1485
1487
|
* Passenger object structure
|
|
@@ -3282,6 +3284,65 @@ interface CardBookingTicketProps {
|
|
|
3282
3284
|
|
|
3283
3285
|
declare const CardBookingTicket: React$1.FC<CardBookingTicketProps>;
|
|
3284
3286
|
|
|
3287
|
+
interface CardBookingAddOnItem {
|
|
3288
|
+
price: string;
|
|
3289
|
+
label?: string;
|
|
3290
|
+
}
|
|
3291
|
+
interface CardBookingAddOnData {
|
|
3292
|
+
lounge?: CardBookingAddOnItem;
|
|
3293
|
+
assurance?: CardBookingAddOnItem;
|
|
3294
|
+
meal?: CardBookingAddOnItem;
|
|
3295
|
+
}
|
|
3296
|
+
interface CardBookingAddOnLabels {
|
|
3297
|
+
bookingDetails: string;
|
|
3298
|
+
totalPriceLabel: string;
|
|
3299
|
+
currencySymbol: string;
|
|
3300
|
+
notIncludedLabel: string;
|
|
3301
|
+
backToReviewButton: string;
|
|
3302
|
+
changeAddOnButton: string;
|
|
3303
|
+
loungeLabel: string;
|
|
3304
|
+
assuranceLabel: string;
|
|
3305
|
+
mealLabel: string;
|
|
3306
|
+
addOnPrice: string;
|
|
3307
|
+
}
|
|
3308
|
+
interface CardBookingAddOnProps {
|
|
3309
|
+
/**
|
|
3310
|
+
* Language for labels
|
|
3311
|
+
* @default 'id'
|
|
3312
|
+
*/
|
|
3313
|
+
language?: Language;
|
|
3314
|
+
/**
|
|
3315
|
+
* Custom labels override
|
|
3316
|
+
*/
|
|
3317
|
+
labels?: Partial<CardBookingAddOnLabels>;
|
|
3318
|
+
/**
|
|
3319
|
+
* Add-on prices from API response
|
|
3320
|
+
*/
|
|
3321
|
+
addOnData?: CardBookingAddOnData;
|
|
3322
|
+
/**
|
|
3323
|
+
* Total price formatted string (e.g. 50.000)
|
|
3324
|
+
*/
|
|
3325
|
+
totalPrice: string;
|
|
3326
|
+
/**
|
|
3327
|
+
* Callback for price detail click
|
|
3328
|
+
*/
|
|
3329
|
+
onPriceDetailClick: () => void;
|
|
3330
|
+
/**
|
|
3331
|
+
* Callback for primary button
|
|
3332
|
+
*/
|
|
3333
|
+
onBackToReviewClick?: () => void;
|
|
3334
|
+
/**
|
|
3335
|
+
* Callback for secondary button
|
|
3336
|
+
*/
|
|
3337
|
+
onChangeAddOnClick?: () => void;
|
|
3338
|
+
/**
|
|
3339
|
+
* Optional class name
|
|
3340
|
+
*/
|
|
3341
|
+
className?: string;
|
|
3342
|
+
}
|
|
3343
|
+
|
|
3344
|
+
declare const CardBookingAddOn: React$1.FC<CardBookingAddOnProps>;
|
|
3345
|
+
|
|
3285
3346
|
interface FAQItem {
|
|
3286
3347
|
id: number;
|
|
3287
3348
|
question: string;
|
|
@@ -3585,6 +3646,8 @@ interface CardReviewDetailLabels {
|
|
|
3585
3646
|
passengerTypeLabel: string;
|
|
3586
3647
|
addOnLabel: string;
|
|
3587
3648
|
viewDetail: string;
|
|
3649
|
+
noAddOnsLabel: string;
|
|
3650
|
+
serviceLabel: string;
|
|
3588
3651
|
}
|
|
3589
3652
|
interface CardReviewDetailProps {
|
|
3590
3653
|
/**
|
|
@@ -3993,4 +4056,4 @@ interface ModalListMenuServiceProps {
|
|
|
3993
4056
|
|
|
3994
4057
|
declare const ModalListMenuService: React$1.FC<ModalListMenuServiceProps>;
|
|
3995
4058
|
|
|
3996
|
-
export { API_CONFIG, API_ENDPOINTS, API_ERROR_MESSAGES, BackgroundTicketCard, BackgroundTicketCardVertical, type BadgeConfig, type BillingDetail, COUNTRIES, CardAddon, type CardAddonProps, CardBanner, type CardBannerProps, CardBookingTicket, type CardBookingTicketProps, CardFAQ, type CardFAQProps, CardMealCatalog, type CardMealCatalogProps, CardOrdererInfo, type CardOrdererInfoProps, CardPassengerList, type CardPassengerListProps, CardPaymentGuide, type CardPaymentGuideProps, CardPaymentInfo, type CardPaymentInfoProps, CardPaymentMethodList, type CardPaymentMethodListProps, CardPriceDetails, type CardPriceDetailsProps, CardProfileMenu, type CardProfileMenuLabels, type CardProfileMenuProps, CardPromo, type CardPromoProps, CardReview, CardReviewDetail, type CardReviewDetailProps, CardReviewPassenger, type CardReviewPassengerProps, type CardReviewProps, CardServiceMenu, type CardServiceMenuProps, CardStatusOrder, type CardStatusOrderProps, CardTicket, type CardTicketProps, CardTicketSearch, DEFAULT_LABELS$4 as CardTicketSearchDefaultLabels, type CardTicketSearchFormData, type CardTicketSearchLabels, type CardTicketSearchProps, type ServiceMenuItem as CardTicketSearchServiceMenuItem, CardTicketSearchSummary, DEFAULT_LABELS$3 as CardTicketSearchSummaryDefaultLabels, type CardTicketSearchSummaryProps, CardVehicleDetail, type CardVehicleDetailProps, CardVehicleOwnerForm, type CardVehicleOwnerFormProps, type CargoItem, CarouselWithCustomNav, type CarouselWithCustomNavProps, type CountryOption, DEFAULT_DURATION_RANGE, DEFAULT_PRICE_RANGE, DEFAULT_SCROLL_AMOUNT, DEFAULT_SERVICE_TYPES, DEFAULT_SORT_OPTIONS, DEFAULT_TIME_SLOTS, DEFAULT_VEHICLE_ICONS, DateFilter, DEFAULT_LABELS as DateFilterDefaultLabels, type DateFilterLabels, type DateFilterProps, type DateItem, type DepartureItem, EmptyContent, type EmptyContentButton, DEFAULT_LABELS$2 as EmptyContentDefaultLabels, type EmptyContentLabels, type EmptyContentProps, FileUpload, type FileUploadProps, type FilterCount, GENDER, type GENDER_TYPE, HARDCODED_ID, HTTP_STATUS, type HarborItem, IDENTITY_TYPE, type IDENTITY_TYPE_TYPE, type IdentityType, InputDynamic, type InputDynamicProps, type InputType, LOAD_TYPE, type LOAD_TYPE_TYPE, type LoadType, MANIFEST_ENTITY, type MANIFEST_ENTITY_TYPE, MODAL_PRESETS, MY_TICKET_STATUS, type MY_TICKET_STATUS_TYPE, MY_TICKET_TAB, type MY_TICKET_TAB_TYPE, type MealCategory, type MealItem, ModalFilterTicket, DEFAULT_LABELS$1 as ModalFilterTicketDefaultLabels, type ModalFilterTicketLabels, type ModalFilterTicketProps, ModalIllustration, type ModalIllustrationButton, type ModalIllustrationProps, ModalListMenuService, type ModalListMenuServiceProps, ModalListPassenger, type ModalListPassengerProps, ModalPassengerForm, type ModalPassengerFormProps, type ModalPresetKey, ModalPreviewImage, type ModalPreviewImageProps, ModalPriceDetail, type ModalPriceDetailProps, ModalSearchHarbor, type ModalSearchHarborProps, ModalSearchTicket, type ModalSearchTicketProps, ModalSelectDate, type ModalSelectDateProps, ModalService, type CardServiceMenuItem as ModalServiceItem, type ModalServiceProps, ModalTotalPassengers, type ModalTotalPassengersProps, ModalTypeOfService, type ModalTypeOfServiceProps, PASSENGER_TYPE, type PASSENGER_TYPE_TYPE, type Passenger, type PassengerClass, type PassengerFormData, type PassengerService, type PassengerType, type PaymentGuideStep, type PaymentMethodCategory, type PaymentStep, type PriceDetailItem, type ProfileMenuSection, type ProfileMenuTab, type Provider, type RadioOption, type ReservationStep, type ReviewPassengerItem, type RouteItem, type SearchSummaryField, type SearchTicketFormData, type SelectOption, type SelectedPassengerItem, type ServiceId, type ServiceItem, SortMenu, type SortMenuProps, type SortOption, type StepStatus, Stepper, type StepperProps, type StepperStep, type TabType, type TypeOfService, type VehicleOwner, calculateAge, getBadgeConfig, getModalPreset, getSortLabel, hexToRgba };
|
|
4059
|
+
export { API_CONFIG, API_ENDPOINTS, API_ERROR_MESSAGES, BackgroundTicketCard, BackgroundTicketCardVertical, type BadgeConfig, type BillingDetail, COUNTRIES, CardAddon, type CardAddonProps, CardBanner, type CardBannerProps, CardBookingAddOn, type CardBookingAddOnData, type CardBookingAddOnItem, type CardBookingAddOnLabels, type CardBookingAddOnProps, CardBookingTicket, type CardBookingTicketProps, CardFAQ, type CardFAQProps, CardMealCatalog, type CardMealCatalogProps, CardOrdererInfo, type CardOrdererInfoProps, CardPassengerList, type CardPassengerListProps, CardPaymentGuide, type CardPaymentGuideProps, CardPaymentInfo, type CardPaymentInfoProps, CardPaymentMethodList, type CardPaymentMethodListProps, CardPriceDetails, type CardPriceDetailsProps, CardProfileMenu, type CardProfileMenuLabels, type CardProfileMenuProps, CardPromo, type CardPromoProps, CardReview, CardReviewDetail, type CardReviewDetailProps, CardReviewPassenger, type CardReviewPassengerProps, type CardReviewProps, CardServiceMenu, type CardServiceMenuProps, CardStatusOrder, type CardStatusOrderProps, CardTicket, type CardTicketProps, CardTicketSearch, DEFAULT_LABELS$4 as CardTicketSearchDefaultLabels, type CardTicketSearchFormData, type CardTicketSearchLabels, type CardTicketSearchProps, type ServiceMenuItem as CardTicketSearchServiceMenuItem, CardTicketSearchSummary, DEFAULT_LABELS$3 as CardTicketSearchSummaryDefaultLabels, type CardTicketSearchSummaryProps, CardVehicleDetail, type CardVehicleDetailProps, CardVehicleOwnerForm, type CardVehicleOwnerFormProps, type CargoItem, CarouselWithCustomNav, type CarouselWithCustomNavProps, type CountryOption, DEFAULT_DURATION_RANGE, DEFAULT_PRICE_RANGE, DEFAULT_SCROLL_AMOUNT, DEFAULT_SERVICE_TYPES, DEFAULT_SORT_OPTIONS, DEFAULT_TIME_SLOTS, DEFAULT_VEHICLE_ICONS, DateFilter, DEFAULT_LABELS as DateFilterDefaultLabels, type DateFilterLabels, type DateFilterProps, type DateItem, type DepartureItem, EmptyContent, type EmptyContentButton, DEFAULT_LABELS$2 as EmptyContentDefaultLabels, type EmptyContentLabels, type EmptyContentProps, FileUpload, type FileUploadProps, type FilterCount, GENDER, type GENDER_TYPE, HARDCODED_ID, HTTP_STATUS, type HarborItem, IDENTITY_TYPE, type IDENTITY_TYPE_TYPE, type IdentityType, InputDynamic, type InputDynamicProps, type InputType, LOAD_TYPE, type LOAD_TYPE_TYPE, type LoadType, MANIFEST_ENTITY, type MANIFEST_ENTITY_TYPE, MODAL_PRESETS, MY_TICKET_STATUS, type MY_TICKET_STATUS_TYPE, MY_TICKET_TAB, type MY_TICKET_TAB_TYPE, type MealCategory, type MealItem, ModalFilterTicket, DEFAULT_LABELS$1 as ModalFilterTicketDefaultLabels, type ModalFilterTicketLabels, type ModalFilterTicketProps, ModalIllustration, type ModalIllustrationButton, type ModalIllustrationProps, ModalListMenuService, type ModalListMenuServiceProps, ModalListPassenger, type ModalListPassengerProps, ModalPassengerForm, type ModalPassengerFormProps, type ModalPresetKey, ModalPreviewImage, type ModalPreviewImageProps, ModalPriceDetail, type ModalPriceDetailProps, ModalSearchHarbor, type ModalSearchHarborProps, ModalSearchTicket, type ModalSearchTicketProps, ModalSelectDate, type ModalSelectDateProps, ModalService, type CardServiceMenuItem as ModalServiceItem, type ModalServiceProps, ModalTotalPassengers, type ModalTotalPassengersProps, ModalTypeOfService, type ModalTypeOfServiceProps, PASSENGER_TYPE, type PASSENGER_TYPE_TYPE, type Passenger, type PassengerClass, type PassengerFormData, type PassengerService, type PassengerType, type PaymentGuideStep, type PaymentMethodCategory, type PaymentStep, type PriceDetailItem, type ProfileMenuSection, type ProfileMenuTab, type Provider, type RadioOption, type ReservationStep, type ReviewPassengerItem, type RouteItem, type SearchSummaryField, type SearchTicketFormData, type SelectOption, type SelectedPassengerItem, type ServiceId, type ServiceItem, SortMenu, type SortMenuProps, type SortOption, type StepStatus, Stepper, type StepperProps, type StepperStep, type TabType, type TypeOfService, type VehicleOwner, calculateAge, getBadgeConfig, getModalPreset, getSortLabel, hexToRgba };
|