@asdp/ferryui 0.1.22-dev.10162 → 0.1.22-dev.10167
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.css +4 -4
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +73 -2
- package/dist/index.d.ts +73 -2
- package/dist/index.js +281 -198
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +281 -199
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.css
CHANGED
|
@@ -23,9 +23,9 @@
|
|
|
23
23
|
color: var(--colorNeutralForegroundOnBrand) !important;
|
|
24
24
|
}
|
|
25
25
|
.fui-CalendarDayGrid__dayButton {
|
|
26
|
-
background-color: transparent
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
26
|
+
background-color: transparent;
|
|
27
|
+
}
|
|
28
|
+
.fui-CalendarDayGrid__dayButton:hover {
|
|
29
|
+
background-color: transparent;
|
|
30
30
|
}
|
|
31
31
|
/*# sourceMappingURL=index.css.map */
|
package/dist/index.css.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/components/ModalSelectDate/modalSelectDate.css"],"sourcesContent":[".fui-Calendar {\n width: 100% !important;\n}\n\n.fui-CalendarDay {\n width: 100% !important;\n}\n\n.fui-CalendarDayGrid__table {\n width: 100% !important;\n}\n\n.fui-Calendar__monthPickerWrapper {\n width: 100% !important;\n}\n\n.fui-CalendarPicker {\n width: 100% !important;\n}\n\n.fui-CalendarPicker__buttonRow {\n justify-content: space-between !important;\n display: flex !important;\n}\n.fui-CalendarPicker__selected{\n background-color: var(--colorBrandBackground) !important;\n color: var(--colorNeutralForegroundOnBrand) !important;\n}\n.fui-CalendarDayGrid__dayButton{\n background-color: transparent
|
|
1
|
+
{"version":3,"sources":["../src/components/ModalSelectDate/modalSelectDate.css"],"sourcesContent":[".fui-Calendar {\n width: 100% !important;\n}\n\n.fui-CalendarDay {\n width: 100% !important;\n}\n\n.fui-CalendarDayGrid__table {\n width: 100% !important;\n}\n\n.fui-Calendar__monthPickerWrapper {\n width: 100% !important;\n}\n\n.fui-CalendarPicker {\n width: 100% !important;\n}\n\n.fui-CalendarPicker__buttonRow {\n justify-content: space-between !important;\n display: flex !important;\n}\n.fui-CalendarPicker__selected{\n background-color: var(--colorBrandBackground) !important;\n color: var(--colorNeutralForegroundOnBrand) !important;\n}\n.fui-CalendarDayGrid__dayButton{\n background-color: transparent;\n}\n.fui-CalendarDayGrid__dayButton:hover{\n background-color: transparent;\n}"],"mappings":";AAAA,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,SAAO;AACT;AAEA,CAAC;AACC,mBAAiB;AACjB,WAAS;AACX;AACA,CAAC;AACC,oBAAkB,IAAI;AACtB,SAAO,IAAI;AACb;AACA,CAAC;AACC,oBAAkB;AACpB;AACA,CAHC,8BAG8B;AAC7B,oBAAkB;AACpB;","names":[]}
|
package/dist/index.d.mts
CHANGED
|
@@ -750,6 +750,7 @@ interface CardTicketSearchSummaryLabels {
|
|
|
750
750
|
originHarbor: string;
|
|
751
751
|
destinationHarbor: string;
|
|
752
752
|
departureDate: string;
|
|
753
|
+
returnDate: string;
|
|
753
754
|
serviceClass: string;
|
|
754
755
|
typeOfService: string;
|
|
755
756
|
totalPassengers: string;
|
|
@@ -757,6 +758,11 @@ interface CardTicketSearchSummaryLabels {
|
|
|
757
758
|
swapAriaLabel: string;
|
|
758
759
|
}
|
|
759
760
|
interface CardTicketSearchSummaryProps {
|
|
761
|
+
/**
|
|
762
|
+
* Show return date field
|
|
763
|
+
* @default false
|
|
764
|
+
*/
|
|
765
|
+
showReturnDate?: boolean;
|
|
760
766
|
/**
|
|
761
767
|
* Language for labels (Indonesian or English)
|
|
762
768
|
* @default 'id'
|
|
@@ -774,6 +780,10 @@ interface CardTicketSearchSummaryProps {
|
|
|
774
780
|
* Departure date
|
|
775
781
|
*/
|
|
776
782
|
departureDate: string;
|
|
783
|
+
/**
|
|
784
|
+
* Return date
|
|
785
|
+
*/
|
|
786
|
+
returnDate?: string;
|
|
777
787
|
/**
|
|
778
788
|
* Service type text (e.g., "3 Service Types")
|
|
779
789
|
*/
|
|
@@ -1314,7 +1324,7 @@ interface ModalSelectDateProps {
|
|
|
1314
1324
|
* <ModalSelectDate
|
|
1315
1325
|
* open={isOpen}
|
|
1316
1326
|
* onClose={() => setIsOpen(false)}
|
|
1317
|
-
* title="Pilih Tanggal
|
|
1327
|
+
* title="Pilih Tanggal Pergi"
|
|
1318
1328
|
* selectedDepartureDate={departureDate}
|
|
1319
1329
|
* selectedReturnDate={returnDate}
|
|
1320
1330
|
* onSelectDepartureDate={setDepartureDate}
|
|
@@ -3332,6 +3342,11 @@ interface MealData {
|
|
|
3332
3342
|
items: MealItem$1[];
|
|
3333
3343
|
onUpdateQuantity: (id: number, delta: number) => void;
|
|
3334
3344
|
onDelete: (id: number) => void;
|
|
3345
|
+
/**
|
|
3346
|
+
* Show/hide action buttons (add, subtract, delete)
|
|
3347
|
+
* @default true
|
|
3348
|
+
*/
|
|
3349
|
+
showActions?: boolean;
|
|
3335
3350
|
}
|
|
3336
3351
|
interface CardAddonLabels {
|
|
3337
3352
|
viewDetail: string;
|
|
@@ -3560,6 +3575,62 @@ interface CardReviewPassengerProps {
|
|
|
3560
3575
|
|
|
3561
3576
|
declare const CardReviewPassenger: React$1.FC<CardReviewPassengerProps>;
|
|
3562
3577
|
|
|
3578
|
+
interface CardReviewDetailLabels {
|
|
3579
|
+
title: string;
|
|
3580
|
+
fromLabel: string;
|
|
3581
|
+
toLabel: string;
|
|
3582
|
+
scheduleLabel: string;
|
|
3583
|
+
bookingNameLabel: string;
|
|
3584
|
+
passengerTypeLabel: string;
|
|
3585
|
+
addOnLabel: string;
|
|
3586
|
+
viewDetail: string;
|
|
3587
|
+
}
|
|
3588
|
+
interface CardReviewDetailProps {
|
|
3589
|
+
/**
|
|
3590
|
+
* Language for labels
|
|
3591
|
+
* @default 'id'
|
|
3592
|
+
*/
|
|
3593
|
+
language?: Language;
|
|
3594
|
+
/**
|
|
3595
|
+
* Custom labels override
|
|
3596
|
+
*/
|
|
3597
|
+
labels?: Partial<CardReviewDetailLabels>;
|
|
3598
|
+
/**
|
|
3599
|
+
* Origin location (e.g., "Merak, Banten")
|
|
3600
|
+
*/
|
|
3601
|
+
from: string;
|
|
3602
|
+
/**
|
|
3603
|
+
* Destination location (e.g., "Bakehuni, Lampung")
|
|
3604
|
+
*/
|
|
3605
|
+
to: string;
|
|
3606
|
+
/**
|
|
3607
|
+
* Schedule entry time (e.g., "Kam, 27 Nov 2025, 18:15")
|
|
3608
|
+
*/
|
|
3609
|
+
scheduleTime: string;
|
|
3610
|
+
/**
|
|
3611
|
+
* Booking name
|
|
3612
|
+
*/
|
|
3613
|
+
bookingName: string;
|
|
3614
|
+
/**
|
|
3615
|
+
* Passenger type/vehicle info (e.g., "Golongan VIB • Mobil Pickup • B 1234 CD")
|
|
3616
|
+
*/
|
|
3617
|
+
passengerType: string;
|
|
3618
|
+
/**
|
|
3619
|
+
* Number of add-ons/services
|
|
3620
|
+
*/
|
|
3621
|
+
addOnsCount: number;
|
|
3622
|
+
/**
|
|
3623
|
+
* Callback when "View Detail" button is clicked
|
|
3624
|
+
*/
|
|
3625
|
+
onViewAddOns?: () => void;
|
|
3626
|
+
/**
|
|
3627
|
+
* Optional class name
|
|
3628
|
+
*/
|
|
3629
|
+
className?: string;
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
declare const CardReviewDetail: React$1.FC<CardReviewDetailProps>;
|
|
3633
|
+
|
|
3563
3634
|
interface PriceItem {
|
|
3564
3635
|
name: string;
|
|
3565
3636
|
price: number;
|
|
@@ -3921,4 +3992,4 @@ interface ModalListMenuServiceProps {
|
|
|
3921
3992
|
|
|
3922
3993
|
declare const ModalListMenuService: React$1.FC<ModalListMenuServiceProps>;
|
|
3923
3994
|
|
|
3924
|
-
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, 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 };
|
|
3995
|
+
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 };
|
package/dist/index.d.ts
CHANGED
|
@@ -750,6 +750,7 @@ interface CardTicketSearchSummaryLabels {
|
|
|
750
750
|
originHarbor: string;
|
|
751
751
|
destinationHarbor: string;
|
|
752
752
|
departureDate: string;
|
|
753
|
+
returnDate: string;
|
|
753
754
|
serviceClass: string;
|
|
754
755
|
typeOfService: string;
|
|
755
756
|
totalPassengers: string;
|
|
@@ -757,6 +758,11 @@ interface CardTicketSearchSummaryLabels {
|
|
|
757
758
|
swapAriaLabel: string;
|
|
758
759
|
}
|
|
759
760
|
interface CardTicketSearchSummaryProps {
|
|
761
|
+
/**
|
|
762
|
+
* Show return date field
|
|
763
|
+
* @default false
|
|
764
|
+
*/
|
|
765
|
+
showReturnDate?: boolean;
|
|
760
766
|
/**
|
|
761
767
|
* Language for labels (Indonesian or English)
|
|
762
768
|
* @default 'id'
|
|
@@ -774,6 +780,10 @@ interface CardTicketSearchSummaryProps {
|
|
|
774
780
|
* Departure date
|
|
775
781
|
*/
|
|
776
782
|
departureDate: string;
|
|
783
|
+
/**
|
|
784
|
+
* Return date
|
|
785
|
+
*/
|
|
786
|
+
returnDate?: string;
|
|
777
787
|
/**
|
|
778
788
|
* Service type text (e.g., "3 Service Types")
|
|
779
789
|
*/
|
|
@@ -1314,7 +1324,7 @@ interface ModalSelectDateProps {
|
|
|
1314
1324
|
* <ModalSelectDate
|
|
1315
1325
|
* open={isOpen}
|
|
1316
1326
|
* onClose={() => setIsOpen(false)}
|
|
1317
|
-
* title="Pilih Tanggal
|
|
1327
|
+
* title="Pilih Tanggal Pergi"
|
|
1318
1328
|
* selectedDepartureDate={departureDate}
|
|
1319
1329
|
* selectedReturnDate={returnDate}
|
|
1320
1330
|
* onSelectDepartureDate={setDepartureDate}
|
|
@@ -3332,6 +3342,11 @@ interface MealData {
|
|
|
3332
3342
|
items: MealItem$1[];
|
|
3333
3343
|
onUpdateQuantity: (id: number, delta: number) => void;
|
|
3334
3344
|
onDelete: (id: number) => void;
|
|
3345
|
+
/**
|
|
3346
|
+
* Show/hide action buttons (add, subtract, delete)
|
|
3347
|
+
* @default true
|
|
3348
|
+
*/
|
|
3349
|
+
showActions?: boolean;
|
|
3335
3350
|
}
|
|
3336
3351
|
interface CardAddonLabels {
|
|
3337
3352
|
viewDetail: string;
|
|
@@ -3560,6 +3575,62 @@ interface CardReviewPassengerProps {
|
|
|
3560
3575
|
|
|
3561
3576
|
declare const CardReviewPassenger: React$1.FC<CardReviewPassengerProps>;
|
|
3562
3577
|
|
|
3578
|
+
interface CardReviewDetailLabels {
|
|
3579
|
+
title: string;
|
|
3580
|
+
fromLabel: string;
|
|
3581
|
+
toLabel: string;
|
|
3582
|
+
scheduleLabel: string;
|
|
3583
|
+
bookingNameLabel: string;
|
|
3584
|
+
passengerTypeLabel: string;
|
|
3585
|
+
addOnLabel: string;
|
|
3586
|
+
viewDetail: string;
|
|
3587
|
+
}
|
|
3588
|
+
interface CardReviewDetailProps {
|
|
3589
|
+
/**
|
|
3590
|
+
* Language for labels
|
|
3591
|
+
* @default 'id'
|
|
3592
|
+
*/
|
|
3593
|
+
language?: Language;
|
|
3594
|
+
/**
|
|
3595
|
+
* Custom labels override
|
|
3596
|
+
*/
|
|
3597
|
+
labels?: Partial<CardReviewDetailLabels>;
|
|
3598
|
+
/**
|
|
3599
|
+
* Origin location (e.g., "Merak, Banten")
|
|
3600
|
+
*/
|
|
3601
|
+
from: string;
|
|
3602
|
+
/**
|
|
3603
|
+
* Destination location (e.g., "Bakehuni, Lampung")
|
|
3604
|
+
*/
|
|
3605
|
+
to: string;
|
|
3606
|
+
/**
|
|
3607
|
+
* Schedule entry time (e.g., "Kam, 27 Nov 2025, 18:15")
|
|
3608
|
+
*/
|
|
3609
|
+
scheduleTime: string;
|
|
3610
|
+
/**
|
|
3611
|
+
* Booking name
|
|
3612
|
+
*/
|
|
3613
|
+
bookingName: string;
|
|
3614
|
+
/**
|
|
3615
|
+
* Passenger type/vehicle info (e.g., "Golongan VIB • Mobil Pickup • B 1234 CD")
|
|
3616
|
+
*/
|
|
3617
|
+
passengerType: string;
|
|
3618
|
+
/**
|
|
3619
|
+
* Number of add-ons/services
|
|
3620
|
+
*/
|
|
3621
|
+
addOnsCount: number;
|
|
3622
|
+
/**
|
|
3623
|
+
* Callback when "View Detail" button is clicked
|
|
3624
|
+
*/
|
|
3625
|
+
onViewAddOns?: () => void;
|
|
3626
|
+
/**
|
|
3627
|
+
* Optional class name
|
|
3628
|
+
*/
|
|
3629
|
+
className?: string;
|
|
3630
|
+
}
|
|
3631
|
+
|
|
3632
|
+
declare const CardReviewDetail: React$1.FC<CardReviewDetailProps>;
|
|
3633
|
+
|
|
3563
3634
|
interface PriceItem {
|
|
3564
3635
|
name: string;
|
|
3565
3636
|
price: number;
|
|
@@ -3921,4 +3992,4 @@ interface ModalListMenuServiceProps {
|
|
|
3921
3992
|
|
|
3922
3993
|
declare const ModalListMenuService: React$1.FC<ModalListMenuServiceProps>;
|
|
3923
3994
|
|
|
3924
|
-
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, 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 };
|
|
3995
|
+
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 };
|