@asdp/ferryui 0.1.22-dev.8653 → 0.1.22-dev.8663
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 +43 -0
- package/dist/index.d.ts +43 -0
- package/dist/index.js +245 -124
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +245 -124
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -245,6 +245,9 @@ declare const CarouselWithCustomNav: React$1.FC<CarouselWithCustomNavProps>;
|
|
|
245
245
|
interface CardPromoLabels {
|
|
246
246
|
defaultImageAlt: string;
|
|
247
247
|
defaultButtonText: string;
|
|
248
|
+
promoAriaLabel: string;
|
|
249
|
+
promoAriaLabelSingle: string;
|
|
250
|
+
loadingContent: string;
|
|
248
251
|
}
|
|
249
252
|
interface CardPromoProps {
|
|
250
253
|
/**
|
|
@@ -371,6 +374,7 @@ interface CardTicketLabels {
|
|
|
371
374
|
selectTicketButton: string;
|
|
372
375
|
timezoneLabel: string;
|
|
373
376
|
currencySymbol: string;
|
|
377
|
+
logoAlt: string;
|
|
374
378
|
}
|
|
375
379
|
interface CardTicketProps {
|
|
376
380
|
/**
|
|
@@ -486,6 +490,7 @@ interface CardServiceMenuLabels {
|
|
|
486
490
|
hotelDescription: string;
|
|
487
491
|
otherLabel: string;
|
|
488
492
|
otherDescription: string;
|
|
493
|
+
serviceAriaLabel: string;
|
|
489
494
|
}
|
|
490
495
|
interface CardServiceMenuProps {
|
|
491
496
|
/**
|
|
@@ -546,6 +551,11 @@ interface CardTicketSearchLabels {
|
|
|
546
551
|
roundTripLabel: string;
|
|
547
552
|
searchButton: string;
|
|
548
553
|
placeholderPort: string;
|
|
554
|
+
ferryDescription: string;
|
|
555
|
+
ifcsDescription: string;
|
|
556
|
+
skptDescription: string;
|
|
557
|
+
hotelDescription: string;
|
|
558
|
+
otherDescription: string;
|
|
549
559
|
placeholderDestinationPort: string;
|
|
550
560
|
placeholderDepartureDate: string;
|
|
551
561
|
placeholderReturnDate: string;
|
|
@@ -556,6 +566,7 @@ interface CardTicketSearchLabels {
|
|
|
556
566
|
errorDestinationRequired: string;
|
|
557
567
|
errorDepartureDateRequired: string;
|
|
558
568
|
errorReturnDateRequired: string;
|
|
569
|
+
switchAriaLabel: string;
|
|
559
570
|
}
|
|
560
571
|
interface CardTicketSearchProps {
|
|
561
572
|
/**
|
|
@@ -647,6 +658,7 @@ interface CardTicketSearchSummaryLabels {
|
|
|
647
658
|
typeOfService: string;
|
|
648
659
|
totalPassengers: string;
|
|
649
660
|
changeSearchButton: string;
|
|
661
|
+
swapAriaLabel: string;
|
|
650
662
|
}
|
|
651
663
|
interface CardTicketSearchSummaryProps {
|
|
652
664
|
/**
|
|
@@ -796,6 +808,13 @@ interface InputDynamicLabels {
|
|
|
796
808
|
identityPlaceholder: string;
|
|
797
809
|
identityPhonePlaceholder: string;
|
|
798
810
|
identityIdPlaceholder: string;
|
|
811
|
+
showPasswordAriaLabel: string;
|
|
812
|
+
hidePasswordAriaLabel: string;
|
|
813
|
+
datePickerPlaceholder: string;
|
|
814
|
+
phoneDefaultPlaceholder: string;
|
|
815
|
+
requiredFieldError: string;
|
|
816
|
+
invalidEmailError: string;
|
|
817
|
+
emailOrPhoneRequiredError: string;
|
|
799
818
|
}
|
|
800
819
|
|
|
801
820
|
declare const InputDynamic: React$1.FC<InputDynamicProps>;
|
|
@@ -826,6 +845,7 @@ interface ModalSearchHarborLabels {
|
|
|
826
845
|
allHarborsHeader: string;
|
|
827
846
|
loadingData: string;
|
|
828
847
|
harborNotFound: string;
|
|
848
|
+
closeAriaLabel: string;
|
|
829
849
|
}
|
|
830
850
|
/**
|
|
831
851
|
* Props for ModalSearchHarbor component
|
|
@@ -945,6 +965,7 @@ interface ModalSelectDateLabels {
|
|
|
945
965
|
title: string;
|
|
946
966
|
oneWay: string;
|
|
947
967
|
roundTrip: string;
|
|
968
|
+
closeAriaLabel: string;
|
|
948
969
|
}
|
|
949
970
|
/**
|
|
950
971
|
* Props for ModalSelectDate component
|
|
@@ -1074,6 +1095,7 @@ interface ModalServiceLabels {
|
|
|
1074
1095
|
error: string;
|
|
1075
1096
|
selectAll: string;
|
|
1076
1097
|
saveButton: string;
|
|
1098
|
+
closeAriaLabel: string;
|
|
1077
1099
|
}
|
|
1078
1100
|
/**
|
|
1079
1101
|
* Props for ModalService component
|
|
@@ -1182,6 +1204,7 @@ interface ModalTotalPassengersLabels {
|
|
|
1182
1204
|
economy: string;
|
|
1183
1205
|
business: string;
|
|
1184
1206
|
executive: string;
|
|
1207
|
+
closeAriaLabel: string;
|
|
1185
1208
|
}
|
|
1186
1209
|
/**
|
|
1187
1210
|
* Passenger object structure
|
|
@@ -1335,6 +1358,7 @@ interface ModalTypeOfServiceLabels {
|
|
|
1335
1358
|
cancelButton: string;
|
|
1336
1359
|
saveButton: string;
|
|
1337
1360
|
vehiclesAlt: string;
|
|
1361
|
+
closeAriaLabel: string;
|
|
1338
1362
|
}
|
|
1339
1363
|
/**
|
|
1340
1364
|
* Props for ModalTypeOfService component
|
|
@@ -1446,6 +1470,7 @@ interface SortMenuLabels {
|
|
|
1446
1470
|
lowestPrice: string;
|
|
1447
1471
|
earliestDeparture: string;
|
|
1448
1472
|
latestDeparture: string;
|
|
1473
|
+
resetSortAriaLabel: string;
|
|
1449
1474
|
}
|
|
1450
1475
|
interface SortMenuProps {
|
|
1451
1476
|
/**
|
|
@@ -1631,6 +1656,7 @@ interface ModalFilterTicketLabels {
|
|
|
1631
1656
|
applyButton: string;
|
|
1632
1657
|
hourUnit: string;
|
|
1633
1658
|
currencySymbol: string;
|
|
1659
|
+
closeAriaLabel: string;
|
|
1634
1660
|
}
|
|
1635
1661
|
|
|
1636
1662
|
declare const ModalFilterTicket: React$1.FC<ModalFilterTicketProps>;
|
|
@@ -1745,6 +1771,7 @@ interface ModalSearchTicketLabels {
|
|
|
1745
1771
|
passengerLabel: string;
|
|
1746
1772
|
passengerPlaceholder: string;
|
|
1747
1773
|
searchButton: string;
|
|
1774
|
+
closeAriaLabel: string;
|
|
1748
1775
|
}
|
|
1749
1776
|
/**
|
|
1750
1777
|
* Form data structure for search ticket modal
|
|
@@ -2040,6 +2067,13 @@ interface ModalListPassengerLabels {
|
|
|
2040
2067
|
searchPlaceholder: string;
|
|
2041
2068
|
addPassengerButton: string;
|
|
2042
2069
|
cancelButton: string;
|
|
2070
|
+
editPassengerAriaLabel: string;
|
|
2071
|
+
categories: {
|
|
2072
|
+
adult: string;
|
|
2073
|
+
child: string;
|
|
2074
|
+
infant: string;
|
|
2075
|
+
elderly: string;
|
|
2076
|
+
};
|
|
2043
2077
|
}
|
|
2044
2078
|
interface PassengerItem {
|
|
2045
2079
|
/**
|
|
@@ -2569,6 +2603,9 @@ interface CardVehicleOwnerFormLabels {
|
|
|
2569
2603
|
};
|
|
2570
2604
|
pricePlaceholder: string;
|
|
2571
2605
|
currencySymbol: string;
|
|
2606
|
+
deleteOwnerAriaLabel: string;
|
|
2607
|
+
decrementQuantityAriaLabel: string;
|
|
2608
|
+
incrementQuantityAriaLabel: string;
|
|
2572
2609
|
}
|
|
2573
2610
|
|
|
2574
2611
|
declare const CardVehicleOwnerForm: React$1.FC<CardVehicleOwnerFormProps>;
|
|
@@ -2799,6 +2836,8 @@ declare const CardAddon: React$1.FC<CardAddonProps>;
|
|
|
2799
2836
|
interface CardMealCatalogLabels {
|
|
2800
2837
|
addButton: string;
|
|
2801
2838
|
currencySymbol: string;
|
|
2839
|
+
decrementAriaLabel: string;
|
|
2840
|
+
incrementAriaLabel: string;
|
|
2802
2841
|
}
|
|
2803
2842
|
interface MealItem {
|
|
2804
2843
|
id: number;
|
|
@@ -2872,6 +2911,7 @@ interface ReviewItem {
|
|
|
2872
2911
|
valueClassName?: string;
|
|
2873
2912
|
}
|
|
2874
2913
|
interface CardReviewLabels {
|
|
2914
|
+
defaultTitle: string;
|
|
2875
2915
|
}
|
|
2876
2916
|
interface CardReviewProps {
|
|
2877
2917
|
/**
|
|
@@ -3017,6 +3057,7 @@ interface PaymentMethodCategory {
|
|
|
3017
3057
|
options: PaymentOption[];
|
|
3018
3058
|
}
|
|
3019
3059
|
interface CardPaymentMethodListLabels {
|
|
3060
|
+
selectAriaLabel: string;
|
|
3020
3061
|
}
|
|
3021
3062
|
interface CardPaymentMethodListProps {
|
|
3022
3063
|
/**
|
|
@@ -3105,6 +3146,7 @@ interface CardStatusOrderLabels {
|
|
|
3105
3146
|
defaultStatus: string;
|
|
3106
3147
|
defaultTitle: string;
|
|
3107
3148
|
defaultDescription: string;
|
|
3149
|
+
illustrationAlt: string;
|
|
3108
3150
|
}
|
|
3109
3151
|
interface CardStatusOrderProps {
|
|
3110
3152
|
/**
|
|
@@ -3151,6 +3193,7 @@ interface ModalPriceDetailLabels {
|
|
|
3151
3193
|
grandTotalLabel: string;
|
|
3152
3194
|
currencyPrefix: string;
|
|
3153
3195
|
currencyCode: string;
|
|
3196
|
+
closeAriaLabel: string;
|
|
3154
3197
|
}
|
|
3155
3198
|
interface PriceDetailItem {
|
|
3156
3199
|
key: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -245,6 +245,9 @@ declare const CarouselWithCustomNav: React$1.FC<CarouselWithCustomNavProps>;
|
|
|
245
245
|
interface CardPromoLabels {
|
|
246
246
|
defaultImageAlt: string;
|
|
247
247
|
defaultButtonText: string;
|
|
248
|
+
promoAriaLabel: string;
|
|
249
|
+
promoAriaLabelSingle: string;
|
|
250
|
+
loadingContent: string;
|
|
248
251
|
}
|
|
249
252
|
interface CardPromoProps {
|
|
250
253
|
/**
|
|
@@ -371,6 +374,7 @@ interface CardTicketLabels {
|
|
|
371
374
|
selectTicketButton: string;
|
|
372
375
|
timezoneLabel: string;
|
|
373
376
|
currencySymbol: string;
|
|
377
|
+
logoAlt: string;
|
|
374
378
|
}
|
|
375
379
|
interface CardTicketProps {
|
|
376
380
|
/**
|
|
@@ -486,6 +490,7 @@ interface CardServiceMenuLabels {
|
|
|
486
490
|
hotelDescription: string;
|
|
487
491
|
otherLabel: string;
|
|
488
492
|
otherDescription: string;
|
|
493
|
+
serviceAriaLabel: string;
|
|
489
494
|
}
|
|
490
495
|
interface CardServiceMenuProps {
|
|
491
496
|
/**
|
|
@@ -546,6 +551,11 @@ interface CardTicketSearchLabels {
|
|
|
546
551
|
roundTripLabel: string;
|
|
547
552
|
searchButton: string;
|
|
548
553
|
placeholderPort: string;
|
|
554
|
+
ferryDescription: string;
|
|
555
|
+
ifcsDescription: string;
|
|
556
|
+
skptDescription: string;
|
|
557
|
+
hotelDescription: string;
|
|
558
|
+
otherDescription: string;
|
|
549
559
|
placeholderDestinationPort: string;
|
|
550
560
|
placeholderDepartureDate: string;
|
|
551
561
|
placeholderReturnDate: string;
|
|
@@ -556,6 +566,7 @@ interface CardTicketSearchLabels {
|
|
|
556
566
|
errorDestinationRequired: string;
|
|
557
567
|
errorDepartureDateRequired: string;
|
|
558
568
|
errorReturnDateRequired: string;
|
|
569
|
+
switchAriaLabel: string;
|
|
559
570
|
}
|
|
560
571
|
interface CardTicketSearchProps {
|
|
561
572
|
/**
|
|
@@ -647,6 +658,7 @@ interface CardTicketSearchSummaryLabels {
|
|
|
647
658
|
typeOfService: string;
|
|
648
659
|
totalPassengers: string;
|
|
649
660
|
changeSearchButton: string;
|
|
661
|
+
swapAriaLabel: string;
|
|
650
662
|
}
|
|
651
663
|
interface CardTicketSearchSummaryProps {
|
|
652
664
|
/**
|
|
@@ -796,6 +808,13 @@ interface InputDynamicLabels {
|
|
|
796
808
|
identityPlaceholder: string;
|
|
797
809
|
identityPhonePlaceholder: string;
|
|
798
810
|
identityIdPlaceholder: string;
|
|
811
|
+
showPasswordAriaLabel: string;
|
|
812
|
+
hidePasswordAriaLabel: string;
|
|
813
|
+
datePickerPlaceholder: string;
|
|
814
|
+
phoneDefaultPlaceholder: string;
|
|
815
|
+
requiredFieldError: string;
|
|
816
|
+
invalidEmailError: string;
|
|
817
|
+
emailOrPhoneRequiredError: string;
|
|
799
818
|
}
|
|
800
819
|
|
|
801
820
|
declare const InputDynamic: React$1.FC<InputDynamicProps>;
|
|
@@ -826,6 +845,7 @@ interface ModalSearchHarborLabels {
|
|
|
826
845
|
allHarborsHeader: string;
|
|
827
846
|
loadingData: string;
|
|
828
847
|
harborNotFound: string;
|
|
848
|
+
closeAriaLabel: string;
|
|
829
849
|
}
|
|
830
850
|
/**
|
|
831
851
|
* Props for ModalSearchHarbor component
|
|
@@ -945,6 +965,7 @@ interface ModalSelectDateLabels {
|
|
|
945
965
|
title: string;
|
|
946
966
|
oneWay: string;
|
|
947
967
|
roundTrip: string;
|
|
968
|
+
closeAriaLabel: string;
|
|
948
969
|
}
|
|
949
970
|
/**
|
|
950
971
|
* Props for ModalSelectDate component
|
|
@@ -1074,6 +1095,7 @@ interface ModalServiceLabels {
|
|
|
1074
1095
|
error: string;
|
|
1075
1096
|
selectAll: string;
|
|
1076
1097
|
saveButton: string;
|
|
1098
|
+
closeAriaLabel: string;
|
|
1077
1099
|
}
|
|
1078
1100
|
/**
|
|
1079
1101
|
* Props for ModalService component
|
|
@@ -1182,6 +1204,7 @@ interface ModalTotalPassengersLabels {
|
|
|
1182
1204
|
economy: string;
|
|
1183
1205
|
business: string;
|
|
1184
1206
|
executive: string;
|
|
1207
|
+
closeAriaLabel: string;
|
|
1185
1208
|
}
|
|
1186
1209
|
/**
|
|
1187
1210
|
* Passenger object structure
|
|
@@ -1335,6 +1358,7 @@ interface ModalTypeOfServiceLabels {
|
|
|
1335
1358
|
cancelButton: string;
|
|
1336
1359
|
saveButton: string;
|
|
1337
1360
|
vehiclesAlt: string;
|
|
1361
|
+
closeAriaLabel: string;
|
|
1338
1362
|
}
|
|
1339
1363
|
/**
|
|
1340
1364
|
* Props for ModalTypeOfService component
|
|
@@ -1446,6 +1470,7 @@ interface SortMenuLabels {
|
|
|
1446
1470
|
lowestPrice: string;
|
|
1447
1471
|
earliestDeparture: string;
|
|
1448
1472
|
latestDeparture: string;
|
|
1473
|
+
resetSortAriaLabel: string;
|
|
1449
1474
|
}
|
|
1450
1475
|
interface SortMenuProps {
|
|
1451
1476
|
/**
|
|
@@ -1631,6 +1656,7 @@ interface ModalFilterTicketLabels {
|
|
|
1631
1656
|
applyButton: string;
|
|
1632
1657
|
hourUnit: string;
|
|
1633
1658
|
currencySymbol: string;
|
|
1659
|
+
closeAriaLabel: string;
|
|
1634
1660
|
}
|
|
1635
1661
|
|
|
1636
1662
|
declare const ModalFilterTicket: React$1.FC<ModalFilterTicketProps>;
|
|
@@ -1745,6 +1771,7 @@ interface ModalSearchTicketLabels {
|
|
|
1745
1771
|
passengerLabel: string;
|
|
1746
1772
|
passengerPlaceholder: string;
|
|
1747
1773
|
searchButton: string;
|
|
1774
|
+
closeAriaLabel: string;
|
|
1748
1775
|
}
|
|
1749
1776
|
/**
|
|
1750
1777
|
* Form data structure for search ticket modal
|
|
@@ -2040,6 +2067,13 @@ interface ModalListPassengerLabels {
|
|
|
2040
2067
|
searchPlaceholder: string;
|
|
2041
2068
|
addPassengerButton: string;
|
|
2042
2069
|
cancelButton: string;
|
|
2070
|
+
editPassengerAriaLabel: string;
|
|
2071
|
+
categories: {
|
|
2072
|
+
adult: string;
|
|
2073
|
+
child: string;
|
|
2074
|
+
infant: string;
|
|
2075
|
+
elderly: string;
|
|
2076
|
+
};
|
|
2043
2077
|
}
|
|
2044
2078
|
interface PassengerItem {
|
|
2045
2079
|
/**
|
|
@@ -2569,6 +2603,9 @@ interface CardVehicleOwnerFormLabels {
|
|
|
2569
2603
|
};
|
|
2570
2604
|
pricePlaceholder: string;
|
|
2571
2605
|
currencySymbol: string;
|
|
2606
|
+
deleteOwnerAriaLabel: string;
|
|
2607
|
+
decrementQuantityAriaLabel: string;
|
|
2608
|
+
incrementQuantityAriaLabel: string;
|
|
2572
2609
|
}
|
|
2573
2610
|
|
|
2574
2611
|
declare const CardVehicleOwnerForm: React$1.FC<CardVehicleOwnerFormProps>;
|
|
@@ -2799,6 +2836,8 @@ declare const CardAddon: React$1.FC<CardAddonProps>;
|
|
|
2799
2836
|
interface CardMealCatalogLabels {
|
|
2800
2837
|
addButton: string;
|
|
2801
2838
|
currencySymbol: string;
|
|
2839
|
+
decrementAriaLabel: string;
|
|
2840
|
+
incrementAriaLabel: string;
|
|
2802
2841
|
}
|
|
2803
2842
|
interface MealItem {
|
|
2804
2843
|
id: number;
|
|
@@ -2872,6 +2911,7 @@ interface ReviewItem {
|
|
|
2872
2911
|
valueClassName?: string;
|
|
2873
2912
|
}
|
|
2874
2913
|
interface CardReviewLabels {
|
|
2914
|
+
defaultTitle: string;
|
|
2875
2915
|
}
|
|
2876
2916
|
interface CardReviewProps {
|
|
2877
2917
|
/**
|
|
@@ -3017,6 +3057,7 @@ interface PaymentMethodCategory {
|
|
|
3017
3057
|
options: PaymentOption[];
|
|
3018
3058
|
}
|
|
3019
3059
|
interface CardPaymentMethodListLabels {
|
|
3060
|
+
selectAriaLabel: string;
|
|
3020
3061
|
}
|
|
3021
3062
|
interface CardPaymentMethodListProps {
|
|
3022
3063
|
/**
|
|
@@ -3105,6 +3146,7 @@ interface CardStatusOrderLabels {
|
|
|
3105
3146
|
defaultStatus: string;
|
|
3106
3147
|
defaultTitle: string;
|
|
3107
3148
|
defaultDescription: string;
|
|
3149
|
+
illustrationAlt: string;
|
|
3108
3150
|
}
|
|
3109
3151
|
interface CardStatusOrderProps {
|
|
3110
3152
|
/**
|
|
@@ -3151,6 +3193,7 @@ interface ModalPriceDetailLabels {
|
|
|
3151
3193
|
grandTotalLabel: string;
|
|
3152
3194
|
currencyPrefix: string;
|
|
3153
3195
|
currencyCode: string;
|
|
3196
|
+
closeAriaLabel: string;
|
|
3154
3197
|
}
|
|
3155
3198
|
interface PriceDetailItem {
|
|
3156
3199
|
key: string;
|