@asdp/ferryui 0.1.22-dev.10665 → 0.1.22-dev.10685
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 +27 -0
- package/dist/index.d.ts +27 -0
- package/dist/index.js +527 -100
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +528 -101
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3935,8 +3935,11 @@ declare const CardStatusOrder: React$1.FC<CardStatusOrderProps>;
|
|
|
3935
3935
|
|
|
3936
3936
|
interface ModalPriceDetailLabels {
|
|
3937
3937
|
title: string;
|
|
3938
|
+
passengerDetailHeader: string;
|
|
3938
3939
|
addonHeader: string;
|
|
3940
|
+
departureFareHeader: string;
|
|
3939
3941
|
subTotalLabel: string;
|
|
3942
|
+
discountLabel: string;
|
|
3940
3943
|
totalTagihanLabel: string;
|
|
3941
3944
|
ppnLabel: string;
|
|
3942
3945
|
ppnNote: string;
|
|
@@ -3952,14 +3955,38 @@ interface PriceDetailItem {
|
|
|
3952
3955
|
badge?: string;
|
|
3953
3956
|
list?: PriceDetailItem[];
|
|
3954
3957
|
}
|
|
3958
|
+
interface ModalPriceDetailHeaderInfo {
|
|
3959
|
+
logoUrl?: string;
|
|
3960
|
+
logoAlt?: string;
|
|
3961
|
+
vesselName?: string;
|
|
3962
|
+
vesselType?: string;
|
|
3963
|
+
vesselTypeColor?: string;
|
|
3964
|
+
departureHarbor?: string;
|
|
3965
|
+
arrivalHarbor?: string;
|
|
3966
|
+
vehicleGroupLabel?: string;
|
|
3967
|
+
}
|
|
3955
3968
|
interface ModalPriceDetailProps {
|
|
3956
3969
|
isOpen: boolean;
|
|
3957
3970
|
onOpenChange: (open: boolean) => void;
|
|
3971
|
+
isRoundTrip?: boolean;
|
|
3972
|
+
vesselType?: string;
|
|
3973
|
+
vesselTypeColor?: string;
|
|
3958
3974
|
detailItems: PriceDetailItem[];
|
|
3975
|
+
departureItems?: PriceDetailItem[];
|
|
3959
3976
|
addonItems: PriceDetailItem[];
|
|
3960
3977
|
subTotal: number;
|
|
3978
|
+
discountAmount?: number;
|
|
3961
3979
|
taxAmount: number;
|
|
3962
3980
|
grandTotal: number;
|
|
3981
|
+
headerInfo?: ModalPriceDetailHeaderInfo;
|
|
3982
|
+
roundTripHeaderInfo?: ModalPriceDetailHeaderInfo;
|
|
3983
|
+
roundTripDetailItems?: PriceDetailItem[];
|
|
3984
|
+
roundTripDepartureItems?: PriceDetailItem[];
|
|
3985
|
+
roundTripAddonItems?: PriceDetailItem[];
|
|
3986
|
+
roundTripSubTotal?: number;
|
|
3987
|
+
roundTripDiscountAmount?: number;
|
|
3988
|
+
roundTripTaxAmount?: number;
|
|
3989
|
+
roundTripGrandTotal?: number;
|
|
3963
3990
|
/**
|
|
3964
3991
|
* Language for labels
|
|
3965
3992
|
* @default 'id'
|
package/dist/index.d.ts
CHANGED
|
@@ -3935,8 +3935,11 @@ declare const CardStatusOrder: React$1.FC<CardStatusOrderProps>;
|
|
|
3935
3935
|
|
|
3936
3936
|
interface ModalPriceDetailLabels {
|
|
3937
3937
|
title: string;
|
|
3938
|
+
passengerDetailHeader: string;
|
|
3938
3939
|
addonHeader: string;
|
|
3940
|
+
departureFareHeader: string;
|
|
3939
3941
|
subTotalLabel: string;
|
|
3942
|
+
discountLabel: string;
|
|
3940
3943
|
totalTagihanLabel: string;
|
|
3941
3944
|
ppnLabel: string;
|
|
3942
3945
|
ppnNote: string;
|
|
@@ -3952,14 +3955,38 @@ interface PriceDetailItem {
|
|
|
3952
3955
|
badge?: string;
|
|
3953
3956
|
list?: PriceDetailItem[];
|
|
3954
3957
|
}
|
|
3958
|
+
interface ModalPriceDetailHeaderInfo {
|
|
3959
|
+
logoUrl?: string;
|
|
3960
|
+
logoAlt?: string;
|
|
3961
|
+
vesselName?: string;
|
|
3962
|
+
vesselType?: string;
|
|
3963
|
+
vesselTypeColor?: string;
|
|
3964
|
+
departureHarbor?: string;
|
|
3965
|
+
arrivalHarbor?: string;
|
|
3966
|
+
vehicleGroupLabel?: string;
|
|
3967
|
+
}
|
|
3955
3968
|
interface ModalPriceDetailProps {
|
|
3956
3969
|
isOpen: boolean;
|
|
3957
3970
|
onOpenChange: (open: boolean) => void;
|
|
3971
|
+
isRoundTrip?: boolean;
|
|
3972
|
+
vesselType?: string;
|
|
3973
|
+
vesselTypeColor?: string;
|
|
3958
3974
|
detailItems: PriceDetailItem[];
|
|
3975
|
+
departureItems?: PriceDetailItem[];
|
|
3959
3976
|
addonItems: PriceDetailItem[];
|
|
3960
3977
|
subTotal: number;
|
|
3978
|
+
discountAmount?: number;
|
|
3961
3979
|
taxAmount: number;
|
|
3962
3980
|
grandTotal: number;
|
|
3981
|
+
headerInfo?: ModalPriceDetailHeaderInfo;
|
|
3982
|
+
roundTripHeaderInfo?: ModalPriceDetailHeaderInfo;
|
|
3983
|
+
roundTripDetailItems?: PriceDetailItem[];
|
|
3984
|
+
roundTripDepartureItems?: PriceDetailItem[];
|
|
3985
|
+
roundTripAddonItems?: PriceDetailItem[];
|
|
3986
|
+
roundTripSubTotal?: number;
|
|
3987
|
+
roundTripDiscountAmount?: number;
|
|
3988
|
+
roundTripTaxAmount?: number;
|
|
3989
|
+
roundTripGrandTotal?: number;
|
|
3963
3990
|
/**
|
|
3964
3991
|
* Language for labels
|
|
3965
3992
|
* @default 'id'
|