@paypal/checkout-components 5.0.192 → 5.0.197-alpha.0
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 +30 -0
- package/README.md +2 -2
- package/dist/button.js +1 -1
- package/package.json +2 -5
- package/src/funding/common.jsx +2 -1
- package/src/funding/venmo/config.jsx +8 -1
- package/src/funding/venmo/style.scoped.scss +3 -0
- package/src/funding/venmo/template.jsx +28 -1
- package/src/lib/security.js +1 -1
- package/src/types.js +2 -1
- package/src/ui/buttons/button.jsx +1 -0
- package/src/ui/buttons/buttonDesigns/divideLogoAnimation.jsx +5 -0
- package/src/ui/buttons/buttonDesigns/inlineLogoTextDesign.jsx +5 -0
- package/src/ui/buttons/props.js +2 -1
- package/src/ui/buttons/styles/button.js +7 -2
- package/src/zoid/buttons/component.jsx +20 -11
- package/src/zoid/buttons/prerender.jsx +3 -3
- package/src/zoid/buttons/util.js +74 -4
- package/src/zoid/card-fields/component.jsx +1 -1
- package/src/zoid/card-form/component.js +1 -1
- package/src/zoid/payment-fields/component.jsx +7 -1
- package/src/zoid/wallet/component.jsx +10 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
## <small>5.0.197-alpha.0 (2022-02-22)</small>
|
|
2
|
+
|
|
3
|
+
* Export tag before npm version (#1877) ([29e4d4a](https://github.com/paypal/paypal-checkout-components/commit/29e4d4a)), closes [#1877](https://github.com/paypal/paypal-checkout-components/issues/1877)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## <small>5.0.196 (2022-02-18)</small>
|
|
8
|
+
|
|
9
|
+
* use new kraken org prefix for cross-domain-utils (#1875) ([0672f8f](https://github.com/paypal/paypal-checkout-components/commit/0672f8f)), closes [#1875](https://github.com/paypal/paypal-checkout-components/issues/1875)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## <small>5.0.195 (2022-02-09)</small>
|
|
14
|
+
|
|
15
|
+
* Fix failing venmo test (#1867) ([1705795](https://github.com/paypal/paypal-checkout-components/commit/1705795)), closes [#1867](https://github.com/paypal/paypal-checkout-components/issues/1867)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## <small>5.0.194 (2022-01-26)</small>
|
|
20
|
+
|
|
21
|
+
* adding partnerattributionid to payment fields (#1841) ([fb26a01](https://github.com/paypal/paypal-checkout-components/commit/fb26a01)), closes [#1841](https://github.com/paypal/paypal-checkout-components/issues/1841)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
## <small>5.0.193 (2022-01-19)</small>
|
|
26
|
+
|
|
27
|
+
* Revert "Revert "Add button size query param prop (#1836)" (#1840)" (#1846) ([83f31d7](https://github.com/paypal/paypal-checkout-components/commit/83f31d7)), closes [#1836](https://github.com/paypal/paypal-checkout-components/issues/1836) [#1840](https://github.com/paypal/paypal-checkout-components/issues/1840) [#1846](https://github.com/paypal/paypal-checkout-components/issues/1846)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
1
31
|
## <small>5.0.192 (2022-01-14)</small>
|
|
2
32
|
|
|
3
33
|
* Revert "Add button size query param prop (#1836)" (#1840) ([e014242](https://github.com/paypal/paypal-checkout-components/commit/e014242)), closes [#1836](https://github.com/paypal/paypal-checkout-components/issues/1836) [#1840](https://github.com/paypal/paypal-checkout-components/issues/1840)
|
package/README.md
CHANGED
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
[version-badge]: https://img.shields.io/npm/v/@paypal/checkout-components.svg?style=flat-square
|
|
13
13
|
[package]: https://www.npmjs.com/package/@paypal/checkout-components
|
|
14
14
|
[license-badge]: https://img.shields.io/npm/l/@paypal/checkout-components.svg?style=flat-square
|
|
15
|
-
[license]: https://github.com/paypal/paypal-checkout-components/blob/
|
|
15
|
+
[license]: https://github.com/paypal/paypal-checkout-components/blob/main/LICENSE
|
|
16
16
|
|
|
17
17
|
A set of components allowing easy integration of PayPal Buttons and PayPal Checkout into your site, powered by
|
|
18
18
|
[zoid](https://github.com/krakenjs/zoid).
|
|
@@ -73,7 +73,7 @@ npm run lint -- --fix
|
|
|
73
73
|
# attempt to automatically fix any problems
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
-
Runs [eslint](https://eslint.org/) using [definitions](./.eslinter.js) extended from [Grumbler-Scripts](https://github.com/krakenjs/grumbler-scripts/blob/
|
|
76
|
+
Runs [eslint](https://eslint.org/) using [definitions](./.eslinter.js) extended from [Grumbler-Scripts](https://github.com/krakenjs/grumbler-scripts/blob/main/config/.eslintrc-browser.js).
|
|
77
77
|
|
|
78
78
|
### flow
|
|
79
79
|
|