@tabres/react 1.0.28 → 1.0.29

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.
Files changed (63) hide show
  1. package/dist/components/PublicMenu/OrderPaymentSummary/OrderPaymentSummary.d.ts +5 -1
  2. package/dist/index.esm.js +1 -1
  3. package/dist/index.esm.js.map +1 -1
  4. package/dist/index.js +1 -1
  5. package/dist/index.js.map +1 -1
  6. package/dist/models/services/translation/locales/az/index.d.ts +1 -0
  7. package/dist/models/services/translation/locales/az/order.d.ts +1 -0
  8. package/dist/models/services/translation/locales/es/index.d.ts +1 -0
  9. package/dist/models/services/translation/locales/es/order.d.ts +1 -0
  10. package/dist/models/services/translation/locales/et/index.d.ts +1 -0
  11. package/dist/models/services/translation/locales/et/order.d.ts +1 -0
  12. package/dist/models/services/translation/locales/hr/index.d.ts +1 -0
  13. package/dist/models/services/translation/locales/hr/order.d.ts +1 -0
  14. package/dist/models/services/translation/locales/index.d.ts +9 -0
  15. package/dist/models/services/translation/locales/nl/index.d.ts +1 -0
  16. package/dist/models/services/translation/locales/nl/order.d.ts +1 -0
  17. package/dist/models/services/translation/locales/pl/index.d.ts +1 -0
  18. package/dist/models/services/translation/locales/pl/order.d.ts +1 -0
  19. package/dist/models/services/translation/locales/pt/index.d.ts +1 -0
  20. package/dist/models/services/translation/locales/pt/order.d.ts +1 -0
  21. package/dist/models/services/translation/locales/ru/index.d.ts +1 -0
  22. package/dist/models/services/translation/locales/ru/order.d.ts +1 -0
  23. package/dist/models/services/translation/locales/tr/index.d.ts +1 -0
  24. package/dist/models/services/translation/locales/tr/order.d.ts +1 -0
  25. package/dist/services/translation/locales/az/index.d.ts +1 -0
  26. package/dist/services/translation/locales/az/order.d.ts +1 -0
  27. package/dist/services/translation/locales/es/index.d.ts +1 -0
  28. package/dist/services/translation/locales/es/order.d.ts +1 -0
  29. package/dist/services/translation/locales/et/index.d.ts +1 -0
  30. package/dist/services/translation/locales/et/order.d.ts +1 -0
  31. package/dist/services/translation/locales/hr/index.d.ts +1 -0
  32. package/dist/services/translation/locales/hr/order.d.ts +1 -0
  33. package/dist/services/translation/locales/index.d.ts +9 -0
  34. package/dist/services/translation/locales/nl/index.d.ts +1 -0
  35. package/dist/services/translation/locales/nl/order.d.ts +1 -0
  36. package/dist/services/translation/locales/pl/index.d.ts +1 -0
  37. package/dist/services/translation/locales/pl/order.d.ts +1 -0
  38. package/dist/services/translation/locales/pt/index.d.ts +1 -0
  39. package/dist/services/translation/locales/pt/order.d.ts +1 -0
  40. package/dist/services/translation/locales/ru/index.d.ts +1 -0
  41. package/dist/services/translation/locales/ru/order.d.ts +1 -0
  42. package/dist/services/translation/locales/tr/index.d.ts +1 -0
  43. package/dist/services/translation/locales/tr/order.d.ts +1 -0
  44. package/dist/utils/services/translation/locales/az/index.d.ts +1 -0
  45. package/dist/utils/services/translation/locales/az/order.d.ts +1 -0
  46. package/dist/utils/services/translation/locales/es/index.d.ts +1 -0
  47. package/dist/utils/services/translation/locales/es/order.d.ts +1 -0
  48. package/dist/utils/services/translation/locales/et/index.d.ts +1 -0
  49. package/dist/utils/services/translation/locales/et/order.d.ts +1 -0
  50. package/dist/utils/services/translation/locales/hr/index.d.ts +1 -0
  51. package/dist/utils/services/translation/locales/hr/order.d.ts +1 -0
  52. package/dist/utils/services/translation/locales/index.d.ts +9 -0
  53. package/dist/utils/services/translation/locales/nl/index.d.ts +1 -0
  54. package/dist/utils/services/translation/locales/nl/order.d.ts +1 -0
  55. package/dist/utils/services/translation/locales/pl/index.d.ts +1 -0
  56. package/dist/utils/services/translation/locales/pl/order.d.ts +1 -0
  57. package/dist/utils/services/translation/locales/pt/index.d.ts +1 -0
  58. package/dist/utils/services/translation/locales/pt/order.d.ts +1 -0
  59. package/dist/utils/services/translation/locales/ru/index.d.ts +1 -0
  60. package/dist/utils/services/translation/locales/ru/order.d.ts +1 -0
  61. package/dist/utils/services/translation/locales/tr/index.d.ts +1 -0
  62. package/dist/utils/services/translation/locales/tr/order.d.ts +1 -0
  63. package/package.json +1 -1
@@ -4,7 +4,11 @@ interface Props {
4
4
  textSize: SIZE;
5
5
  totalPriceWithoutTax: number;
6
6
  totalPriceWithTax: number;
7
+ totalPriceWithTaxAndFees: number;
7
8
  deliveryFee: number;
9
+ serviceFee: number;
10
+ serviceFeePercentage: number;
11
+ serviceFeeEnabled: boolean;
8
12
  totalTax: number;
9
13
  discountAmount?: number;
10
14
  discountType?: string;
@@ -13,5 +17,5 @@ interface Props {
13
17
  language: string;
14
18
  orderType: orderModels.OrderType;
15
19
  }
16
- declare const OrderPaymentSummary: ({ textSize, totalPriceWithoutTax, totalPriceWithTax, deliveryFee, totalTax, discountAmount, discountType, discountRate, currency, language, orderType, }: Props) => import("react/jsx-runtime").JSX.Element;
20
+ declare const OrderPaymentSummary: ({ textSize, totalPriceWithoutTax, totalPriceWithTaxAndFees, deliveryFee, serviceFee, serviceFeePercentage, serviceFeeEnabled, totalTax, discountAmount, discountType, discountRate, currency, language, orderType, }: Props) => import("react/jsx-runtime").JSX.Element;
17
21
  export default OrderPaymentSummary;