@paypal/checkout-components 5.0.203 → 5.0.204

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## <small>5.0.204 (2022-03-25)</small>
2
+
3
+ * Keep inlinexo internally (#1895) ([302376e](https://github.com/paypal/paypal-checkout-components/commit/302376e)), closes [#1895](https://github.com/paypal/paypal-checkout-components/issues/1895)
4
+
5
+
6
+
1
7
  ## <small>5.0.203 (2022-03-23)</small>
2
8
 
3
9
  * Change inlinexo to inline (#1894) ([d9a9096](https://github.com/paypal/paypal-checkout-components/commit/d9a9096)), closes [#1894](https://github.com/paypal/paypal-checkout-components/issues/1894)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paypal/checkout-components",
3
- "version": "5.0.203",
3
+ "version": "5.0.204",
4
4
  "description": "PayPal Checkout components, for integrating checkout products.",
5
5
  "main": "index.js",
6
6
  "engines": {
@@ -50,7 +50,7 @@ export function getCheckoutComponent() : CheckoutComponent {
50
50
  },
51
51
 
52
52
  containerTemplate: ({ context, close, focus, doc, event, frame, prerenderFrame, props }) => {
53
- const { nonce, locale: { lang }, inline } = props;
53
+ const { nonce, locale: { lang }, inlinexo } = props;
54
54
  const content = containerContent[lang];
55
55
  return (
56
56
  <Overlay
@@ -62,7 +62,7 @@ export function getCheckoutComponent() : CheckoutComponent {
62
62
  prerenderFrame={ prerenderFrame }
63
63
  content={ content }
64
64
  nonce={ nonce }
65
- fullScreen={ inline === true }
65
+ fullScreen={ inlinexo === true }
66
66
  />
67
67
  ).render(dom({ doc }));
68
68
  },
@@ -232,7 +232,7 @@ export function getCheckoutComponent() : CheckoutComponent {
232
232
  default: () => (window.__test__ || { action: 'checkout' })
233
233
  },
234
234
 
235
- inline: {
235
+ inlinexo: {
236
236
  type: 'boolean',
237
237
  required: false,
238
238
  queryParam: true,
@@ -39,5 +39,5 @@ export type CheckoutPropsType = {|
39
39
  csp : {|
40
40
  nonce : string
41
41
  |},
42
- inline : boolean
42
+ inlinexo : boolean
43
43
  |};