@paypal/checkout-components 5.0.422-alpha-564fa49.0 → 5.0.423

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paypal/checkout-components",
3
- "version": "5.0.422-alpha-564fa49.0",
3
+ "version": "5.0.423",
4
4
  "description": "PayPal Checkout components, for integrating checkout products.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -117,7 +117,7 @@
117
117
  "@krakenjs/jsx-pragmatic": "^3",
118
118
  "@krakenjs/post-robot": "^11.0.0",
119
119
  "@krakenjs/zalgo-promise": "^2.0.0",
120
- "@krakenjs/zoid": "^10.3.1",
120
+ "@krakenjs/zoid": "^10.5.3",
121
121
  "@paypal/fastlane-sdk-loader": "^1.2.1",
122
122
  "@paypal/common-components": "^1.0.35",
123
123
  "@paypal/funding-components": "^1.0.31",
@@ -224,6 +224,31 @@ export function SavedPaymentMethods(
224
224
  gap: 8px;
225
225
  min-width: 124px;
226
226
  max-width: 100%;
227
+ position: relative;
228
+ overflow: hidden;
229
+ }
230
+
231
+ .spm-tag-loading::after {
232
+ content: "";
233
+ display: block;
234
+ background-color: #dddfe2;
235
+ position: absolute;
236
+ top: 0;
237
+ bottom: 0;
238
+ width: 100%;
239
+ height: 100%;
240
+ transform: translateX(0);
241
+ box-shadow: 0px 0px 107px 60px #dddfe2;
242
+ animation: 1.5s loading-placeholder ease-in-out infinite;
243
+ }
244
+
245
+ @keyframes loading-placeholder {
246
+ 0% {
247
+ transform: translateX(-150%);
248
+ }
249
+ 100% {
250
+ transform: translateX(150%);
251
+ }
227
252
  }
228
253
 
229
254
  .spm-tag-loading.spm-tag-loading--hidden {