@asdp/ferryui 0.1.22-dev.10665 → 0.1.22-dev.10687
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 +31 -0
- package/dist/index.d.ts +31 -0
- package/dist/index.js +867 -123
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +868 -124
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -3151,6 +3151,10 @@ interface CardVehicleOwnerFormLabels {
|
|
|
3151
3151
|
industryTypeOthersLabel: string;
|
|
3152
3152
|
industryTypeOthersPlaceholder: string;
|
|
3153
3153
|
cargoCategoryLabel: string;
|
|
3154
|
+
estimatedLooseCargoLabel: string;
|
|
3155
|
+
estimatedLooseCargoWeightPlaceholder: string;
|
|
3156
|
+
estimatedLooseCargoQuantityLabel: string;
|
|
3157
|
+
estimatedLooseCargoUnitLabel: string;
|
|
3154
3158
|
deleteCargoButton: string;
|
|
3155
3159
|
addCargoButton: string;
|
|
3156
3160
|
loadTypeOptions: {
|
|
@@ -3935,8 +3939,11 @@ declare const CardStatusOrder: React$1.FC<CardStatusOrderProps>;
|
|
|
3935
3939
|
|
|
3936
3940
|
interface ModalPriceDetailLabels {
|
|
3937
3941
|
title: string;
|
|
3942
|
+
passengerDetailHeader: string;
|
|
3938
3943
|
addonHeader: string;
|
|
3944
|
+
departureFareHeader: string;
|
|
3939
3945
|
subTotalLabel: string;
|
|
3946
|
+
discountLabel: string;
|
|
3940
3947
|
totalTagihanLabel: string;
|
|
3941
3948
|
ppnLabel: string;
|
|
3942
3949
|
ppnNote: string;
|
|
@@ -3952,14 +3959,38 @@ interface PriceDetailItem {
|
|
|
3952
3959
|
badge?: string;
|
|
3953
3960
|
list?: PriceDetailItem[];
|
|
3954
3961
|
}
|
|
3962
|
+
interface ModalPriceDetailHeaderInfo {
|
|
3963
|
+
logoUrl?: string;
|
|
3964
|
+
logoAlt?: string;
|
|
3965
|
+
vesselName?: string;
|
|
3966
|
+
vesselType?: string;
|
|
3967
|
+
vesselTypeColor?: string;
|
|
3968
|
+
departureHarbor?: string;
|
|
3969
|
+
arrivalHarbor?: string;
|
|
3970
|
+
vehicleGroupLabel?: string;
|
|
3971
|
+
}
|
|
3955
3972
|
interface ModalPriceDetailProps {
|
|
3956
3973
|
isOpen: boolean;
|
|
3957
3974
|
onOpenChange: (open: boolean) => void;
|
|
3975
|
+
isRoundTrip?: boolean;
|
|
3976
|
+
vesselType?: string;
|
|
3977
|
+
vesselTypeColor?: string;
|
|
3958
3978
|
detailItems: PriceDetailItem[];
|
|
3979
|
+
departureItems?: PriceDetailItem[];
|
|
3959
3980
|
addonItems: PriceDetailItem[];
|
|
3960
3981
|
subTotal: number;
|
|
3982
|
+
discountAmount?: number;
|
|
3961
3983
|
taxAmount: number;
|
|
3962
3984
|
grandTotal: number;
|
|
3985
|
+
headerInfo?: ModalPriceDetailHeaderInfo;
|
|
3986
|
+
roundTripHeaderInfo?: ModalPriceDetailHeaderInfo;
|
|
3987
|
+
roundTripDetailItems?: PriceDetailItem[];
|
|
3988
|
+
roundTripDepartureItems?: PriceDetailItem[];
|
|
3989
|
+
roundTripAddonItems?: PriceDetailItem[];
|
|
3990
|
+
roundTripSubTotal?: number;
|
|
3991
|
+
roundTripDiscountAmount?: number;
|
|
3992
|
+
roundTripTaxAmount?: number;
|
|
3993
|
+
roundTripGrandTotal?: number;
|
|
3963
3994
|
/**
|
|
3964
3995
|
* Language for labels
|
|
3965
3996
|
* @default 'id'
|
package/dist/index.d.ts
CHANGED
|
@@ -3151,6 +3151,10 @@ interface CardVehicleOwnerFormLabels {
|
|
|
3151
3151
|
industryTypeOthersLabel: string;
|
|
3152
3152
|
industryTypeOthersPlaceholder: string;
|
|
3153
3153
|
cargoCategoryLabel: string;
|
|
3154
|
+
estimatedLooseCargoLabel: string;
|
|
3155
|
+
estimatedLooseCargoWeightPlaceholder: string;
|
|
3156
|
+
estimatedLooseCargoQuantityLabel: string;
|
|
3157
|
+
estimatedLooseCargoUnitLabel: string;
|
|
3154
3158
|
deleteCargoButton: string;
|
|
3155
3159
|
addCargoButton: string;
|
|
3156
3160
|
loadTypeOptions: {
|
|
@@ -3935,8 +3939,11 @@ declare const CardStatusOrder: React$1.FC<CardStatusOrderProps>;
|
|
|
3935
3939
|
|
|
3936
3940
|
interface ModalPriceDetailLabels {
|
|
3937
3941
|
title: string;
|
|
3942
|
+
passengerDetailHeader: string;
|
|
3938
3943
|
addonHeader: string;
|
|
3944
|
+
departureFareHeader: string;
|
|
3939
3945
|
subTotalLabel: string;
|
|
3946
|
+
discountLabel: string;
|
|
3940
3947
|
totalTagihanLabel: string;
|
|
3941
3948
|
ppnLabel: string;
|
|
3942
3949
|
ppnNote: string;
|
|
@@ -3952,14 +3959,38 @@ interface PriceDetailItem {
|
|
|
3952
3959
|
badge?: string;
|
|
3953
3960
|
list?: PriceDetailItem[];
|
|
3954
3961
|
}
|
|
3962
|
+
interface ModalPriceDetailHeaderInfo {
|
|
3963
|
+
logoUrl?: string;
|
|
3964
|
+
logoAlt?: string;
|
|
3965
|
+
vesselName?: string;
|
|
3966
|
+
vesselType?: string;
|
|
3967
|
+
vesselTypeColor?: string;
|
|
3968
|
+
departureHarbor?: string;
|
|
3969
|
+
arrivalHarbor?: string;
|
|
3970
|
+
vehicleGroupLabel?: string;
|
|
3971
|
+
}
|
|
3955
3972
|
interface ModalPriceDetailProps {
|
|
3956
3973
|
isOpen: boolean;
|
|
3957
3974
|
onOpenChange: (open: boolean) => void;
|
|
3975
|
+
isRoundTrip?: boolean;
|
|
3976
|
+
vesselType?: string;
|
|
3977
|
+
vesselTypeColor?: string;
|
|
3958
3978
|
detailItems: PriceDetailItem[];
|
|
3979
|
+
departureItems?: PriceDetailItem[];
|
|
3959
3980
|
addonItems: PriceDetailItem[];
|
|
3960
3981
|
subTotal: number;
|
|
3982
|
+
discountAmount?: number;
|
|
3961
3983
|
taxAmount: number;
|
|
3962
3984
|
grandTotal: number;
|
|
3985
|
+
headerInfo?: ModalPriceDetailHeaderInfo;
|
|
3986
|
+
roundTripHeaderInfo?: ModalPriceDetailHeaderInfo;
|
|
3987
|
+
roundTripDetailItems?: PriceDetailItem[];
|
|
3988
|
+
roundTripDepartureItems?: PriceDetailItem[];
|
|
3989
|
+
roundTripAddonItems?: PriceDetailItem[];
|
|
3990
|
+
roundTripSubTotal?: number;
|
|
3991
|
+
roundTripDiscountAmount?: number;
|
|
3992
|
+
roundTripTaxAmount?: number;
|
|
3993
|
+
roundTripGrandTotal?: number;
|
|
3963
3994
|
/**
|
|
3964
3995
|
* Language for labels
|
|
3965
3996
|
* @default 'id'
|