@easypayment/medusa-paypal-ui 1.0.16 → 1.0.18

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.cts CHANGED
@@ -13,6 +13,7 @@ type PayPalConfig = {
13
13
  paypal_enabled?: boolean;
14
14
  paypal_title?: string;
15
15
  card_enabled?: boolean;
16
+ card_title?: string;
16
17
  button_color?: "gold" | "blue" | "silver" | "black" | "white";
17
18
  button_shape?: "rect" | "pill" | "sharp";
18
19
  button_width?: string;
package/dist/index.d.ts CHANGED
@@ -13,6 +13,7 @@ type PayPalConfig = {
13
13
  paypal_enabled?: boolean;
14
14
  paypal_title?: string;
15
15
  card_enabled?: boolean;
16
+ card_title?: string;
16
17
  button_color?: "gold" | "blue" | "silver" | "black" | "white";
17
18
  button_shape?: "rect" | "pill" | "sharp";
18
19
  button_width?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easypayment/medusa-paypal-ui",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "Enterprise Gold PayPal UI module for Medusa v2 storefront (Next.js)",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -9,7 +9,8 @@ export type PayPalConfig = {
9
9
  intent?: "capture" | "authorize"
10
10
  paypal_enabled?: boolean
11
11
  paypal_title?: string
12
- card_enabled?: boolean
12
+ card_enabled?: boolean
13
+ card_title?: string
13
14
  button_color?: "gold" | "blue" | "silver" | "black" | "white"
14
15
  button_shape?: "rect" | "pill" | "sharp"
15
16
  button_width?: string