@tabres/react 1.0.45 → 1.0.46
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.
|
@@ -19,9 +19,10 @@ interface Props {
|
|
|
19
19
|
* the tip line and the tip-inclusive grand total. Defaults to 0 (no tip).
|
|
20
20
|
*/
|
|
21
21
|
tipAmount?: number;
|
|
22
|
+
itemsCount?: number;
|
|
22
23
|
currency: string;
|
|
23
24
|
language: string;
|
|
24
25
|
orderType: orderModels.OrderType;
|
|
25
26
|
}
|
|
26
|
-
declare const OrderPaymentSummary: ({ textSize, totalPriceWithoutTax, totalPriceWithTaxAndFees, deliveryFee, serviceFee, serviceFeePercentage, serviceFeeEnabled, totalTax, discountAmount, discountType, discountRate, tipAmount, currency, language, orderType, }: Props) => import("react").JSX.Element;
|
|
27
|
+
declare const OrderPaymentSummary: ({ textSize, totalPriceWithoutTax, totalPriceWithTaxAndFees, deliveryFee, serviceFee, serviceFeePercentage, serviceFeeEnabled, totalTax, discountAmount, discountType, discountRate, tipAmount, itemsCount, currency, language, orderType, }: Props) => import("react").JSX.Element;
|
|
27
28
|
export default OrderPaymentSummary;
|