@nok-integration/storefront-react 0.19.9 → 0.19.10

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.mjs CHANGED
@@ -10567,24 +10567,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
10567
10567
  }
10568
10568
  return unavailable;
10569
10569
  }
10570
- const showcase = "_showcase_1y51o_40";
10571
- const panel = "_panel_1y51o_59";
10572
- const image = "_image_1y51o_88";
10573
- const heroImageBox = "_heroImageBox_1y51o_136";
10574
- const hero = "_hero_1y51o_136";
10575
- const heroContent = "_heroContent_1y51o_207";
10576
- const heroText = "_heroText_1y51o_224";
10577
- const logo = "_logo_1y51o_233";
10578
- const heroTitle = "_heroTitle_1y51o_253";
10579
- const heroSub = "_heroSub_1y51o_277";
10580
- const swipe = "_swipe_1y51o_290";
10581
- const swipeLabel = "_swipeLabel_1y51o_298";
10582
- const chevron$1 = "_chevron_1y51o_304";
10583
- const overlay$1 = "_overlay_1y51o_321";
10584
- const copy = "_copy_1y51o_332";
10585
- const title$2 = "_title_1y51o_337";
10586
- const subtitle$1 = "_subtitle_1y51o_344";
10587
- const cta = "_cta_1y51o_350";
10570
+ const showcase = "_showcase_a0wva_39";
10571
+ const panel = "_panel_a0wva_43";
10572
+ const image = "_image_a0wva_71";
10573
+ const heroImageBox = "_heroImageBox_a0wva_119";
10574
+ const hero = "_hero_a0wva_119";
10575
+ const heroContent = "_heroContent_a0wva_190";
10576
+ const heroText = "_heroText_a0wva_207";
10577
+ const logo = "_logo_a0wva_216";
10578
+ const heroTitle = "_heroTitle_a0wva_236";
10579
+ const heroSub = "_heroSub_a0wva_260";
10580
+ const swipe = "_swipe_a0wva_273";
10581
+ const swipeLabel = "_swipeLabel_a0wva_281";
10582
+ const chevron$1 = "_chevron_a0wva_287";
10583
+ const overlay$1 = "_overlay_a0wva_304";
10584
+ const copy = "_copy_a0wva_315";
10585
+ const title$2 = "_title_a0wva_320";
10586
+ const subtitle$1 = "_subtitle_a0wva_327";
10587
+ const cta = "_cta_a0wva_333";
10588
10588
  const styles$2 = {
10589
10589
  showcase,
10590
10590
  panel,
@@ -10605,41 +10605,35 @@ const styles$2 = {
10605
10605
  subtitle: subtitle$1,
10606
10606
  cta
10607
10607
  };
10608
- const SETTLE_MS = 250;
10609
- function useViewportHeight(ref, property, enabled = true) {
10608
+ const SETTLE_MS = 150;
10609
+ function useDocumentSnap(ref, enabled = true) {
10610
10610
  useEffect(() => {
10611
10611
  const el = ref.current;
10612
- if (!el || !enabled) return;
10612
+ if (!el || !enabled || typeof document === "undefined") return;
10613
+ const root2 = document.documentElement;
10614
+ const previousType = root2.style.scrollSnapType;
10615
+ const previousPadding = root2.style.scrollPaddingTop;
10613
10616
  let timer2;
10614
- const read = () => Math.round(window.visualViewport?.height ?? window.innerHeight);
10615
- const apply = () => {
10616
- const height = read();
10617
- if (height > 0) el.style.setProperty(property, `${height}px`);
10618
- };
10619
- const applySettled = () => {
10620
- const previous = el.clientHeight;
10621
- const index = previous > 0 ? Math.round(el.scrollTop / previous) : 0;
10622
- apply();
10623
- if (el.clientHeight > 0) el.scrollTo({
10624
- top: index * el.clientHeight,
10625
- behavior: "auto"
10626
- });
10617
+ const syncPadding = () => {
10618
+ const top = getComputedStyle(el).getPropertyValue("--showcase-top").trim();
10619
+ root2.style.scrollPaddingTop = top === "" ? "0px" : top;
10627
10620
  };
10628
10621
  const schedule = () => {
10629
10622
  if (timer2) clearTimeout(timer2);
10630
- timer2 = setTimeout(applySettled, SETTLE_MS);
10623
+ timer2 = setTimeout(syncPadding, SETTLE_MS);
10631
10624
  };
10632
- apply();
10625
+ root2.style.scrollSnapType = "y mandatory";
10626
+ syncPadding();
10633
10627
  window.addEventListener("resize", schedule);
10634
10628
  window.addEventListener("orientationchange", schedule);
10635
- window.visualViewport?.addEventListener("resize", schedule);
10636
10629
  return () => {
10637
10630
  if (timer2) clearTimeout(timer2);
10638
10631
  window.removeEventListener("resize", schedule);
10639
10632
  window.removeEventListener("orientationchange", schedule);
10640
- window.visualViewport?.removeEventListener("resize", schedule);
10633
+ root2.style.scrollSnapType = previousType;
10634
+ root2.style.scrollPaddingTop = previousPadding;
10641
10635
  };
10642
- }, [ref, property, enabled]);
10636
+ }, [ref, enabled]);
10643
10637
  }
10644
10638
  const FALLBACK_PANELS = [{
10645
10639
  key: "all-items",
@@ -10753,7 +10747,7 @@ function HomeShowcase() {
10753
10747
  const panels = useSlides();
10754
10748
  const showcaseRef = useRef(null);
10755
10749
  useTopOffset(showcaseRef, "--showcase-top");
10756
- useViewportHeight(showcaseRef, "--showcase-vh");
10750
+ useDocumentSnap(showcaseRef);
10757
10751
  return jsx(ShopSurface, {
10758
10752
  tone: "dark",
10759
10753
  children: jsxs("div", {
@@ -10567,24 +10567,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
10567
10567
  }
10568
10568
  return unavailable;
10569
10569
  }
10570
- const showcase = "_showcase_1y51o_40";
10571
- const panel = "_panel_1y51o_59";
10572
- const image = "_image_1y51o_88";
10573
- const heroImageBox = "_heroImageBox_1y51o_136";
10574
- const hero = "_hero_1y51o_136";
10575
- const heroContent = "_heroContent_1y51o_207";
10576
- const heroText = "_heroText_1y51o_224";
10577
- const logo = "_logo_1y51o_233";
10578
- const heroTitle = "_heroTitle_1y51o_253";
10579
- const heroSub = "_heroSub_1y51o_277";
10580
- const swipe = "_swipe_1y51o_290";
10581
- const swipeLabel = "_swipeLabel_1y51o_298";
10582
- const chevron$1 = "_chevron_1y51o_304";
10583
- const overlay$1 = "_overlay_1y51o_321";
10584
- const copy = "_copy_1y51o_332";
10585
- const title$2 = "_title_1y51o_337";
10586
- const subtitle$1 = "_subtitle_1y51o_344";
10587
- const cta = "_cta_1y51o_350";
10570
+ const showcase = "_showcase_a0wva_39";
10571
+ const panel = "_panel_a0wva_43";
10572
+ const image = "_image_a0wva_71";
10573
+ const heroImageBox = "_heroImageBox_a0wva_119";
10574
+ const hero = "_hero_a0wva_119";
10575
+ const heroContent = "_heroContent_a0wva_190";
10576
+ const heroText = "_heroText_a0wva_207";
10577
+ const logo = "_logo_a0wva_216";
10578
+ const heroTitle = "_heroTitle_a0wva_236";
10579
+ const heroSub = "_heroSub_a0wva_260";
10580
+ const swipe = "_swipe_a0wva_273";
10581
+ const swipeLabel = "_swipeLabel_a0wva_281";
10582
+ const chevron$1 = "_chevron_a0wva_287";
10583
+ const overlay$1 = "_overlay_a0wva_304";
10584
+ const copy = "_copy_a0wva_315";
10585
+ const title$2 = "_title_a0wva_320";
10586
+ const subtitle$1 = "_subtitle_a0wva_327";
10587
+ const cta = "_cta_a0wva_333";
10588
10588
  const styles$2 = {
10589
10589
  showcase,
10590
10590
  panel,
@@ -10605,41 +10605,35 @@ const styles$2 = {
10605
10605
  subtitle: subtitle$1,
10606
10606
  cta
10607
10607
  };
10608
- const SETTLE_MS = 250;
10609
- function useViewportHeight(ref, property, enabled = true) {
10608
+ const SETTLE_MS = 150;
10609
+ function useDocumentSnap(ref, enabled = true) {
10610
10610
  useEffect(() => {
10611
10611
  const el = ref.current;
10612
- if (!el || !enabled) return;
10612
+ if (!el || !enabled || typeof document === "undefined") return;
10613
+ const root2 = document.documentElement;
10614
+ const previousType = root2.style.scrollSnapType;
10615
+ const previousPadding = root2.style.scrollPaddingTop;
10613
10616
  let timer2;
10614
- const read = () => Math.round(window.visualViewport?.height ?? window.innerHeight);
10615
- const apply = () => {
10616
- const height = read();
10617
- if (height > 0) el.style.setProperty(property, `${height}px`);
10618
- };
10619
- const applySettled = () => {
10620
- const previous = el.clientHeight;
10621
- const index = previous > 0 ? Math.round(el.scrollTop / previous) : 0;
10622
- apply();
10623
- if (el.clientHeight > 0) el.scrollTo({
10624
- top: index * el.clientHeight,
10625
- behavior: "auto"
10626
- });
10617
+ const syncPadding = () => {
10618
+ const top = getComputedStyle(el).getPropertyValue("--showcase-top").trim();
10619
+ root2.style.scrollPaddingTop = top === "" ? "0px" : top;
10627
10620
  };
10628
10621
  const schedule = () => {
10629
10622
  if (timer2) clearTimeout(timer2);
10630
- timer2 = setTimeout(applySettled, SETTLE_MS);
10623
+ timer2 = setTimeout(syncPadding, SETTLE_MS);
10631
10624
  };
10632
- apply();
10625
+ root2.style.scrollSnapType = "y mandatory";
10626
+ syncPadding();
10633
10627
  window.addEventListener("resize", schedule);
10634
10628
  window.addEventListener("orientationchange", schedule);
10635
- window.visualViewport?.addEventListener("resize", schedule);
10636
10629
  return () => {
10637
10630
  if (timer2) clearTimeout(timer2);
10638
10631
  window.removeEventListener("resize", schedule);
10639
10632
  window.removeEventListener("orientationchange", schedule);
10640
- window.visualViewport?.removeEventListener("resize", schedule);
10633
+ root2.style.scrollSnapType = previousType;
10634
+ root2.style.scrollPaddingTop = previousPadding;
10641
10635
  };
10642
- }, [ref, property, enabled]);
10636
+ }, [ref, enabled]);
10643
10637
  }
10644
10638
  const FALLBACK_PANELS = [{
10645
10639
  key: "all-items",
@@ -10753,7 +10747,7 @@ function HomeShowcase() {
10753
10747
  const panels = useSlides();
10754
10748
  const showcaseRef = useRef(null);
10755
10749
  useTopOffset(showcaseRef, "--showcase-top");
10756
- useViewportHeight(showcaseRef, "--showcase-vh");
10750
+ useDocumentSnap(showcaseRef);
10757
10751
  return jsx(ShopSurface, {
10758
10752
  tone: "dark",
10759
10753
  children: jsxs("div", {
@@ -3399,31 +3399,22 @@
3399
3399
  column-gap: var(--space-12);
3400
3400
  row-gap: var(--space-24);
3401
3401
  }
3402
- ._showcase_1y51o_40 {
3403
- height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3404
- overflow-y: auto;
3405
- scroll-snap-type: y mandatory;
3406
- overscroll-behavior-y: contain;
3407
- -webkit-overflow-scrolling: touch;
3402
+ ._showcase_a0wva_39 {
3408
3403
  background: #080e12;
3409
- scrollbar-width: none;
3410
- }
3411
- ._showcase_1y51o_40::-webkit-scrollbar {
3412
- display: none;
3413
3404
  }
3414
- ._panel_1y51o_59 {
3405
+ ._panel_a0wva_43 {
3415
3406
  position: relative;
3416
- height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3407
+ height: calc(100lvh - var(--showcase-top, 0px));
3417
3408
  scroll-snap-align: start;
3418
3409
  scroll-snap-stop: always;
3419
3410
  overflow: hidden;
3420
3411
  background: #080e12;
3421
3412
  }
3422
- ._image_1y51o_88 {
3413
+ ._image_a0wva_71 {
3423
3414
  object-fit: cover;
3424
3415
  object-position: 50% var(--slide-focal-y, 50%);
3425
3416
  }
3426
- ._heroImageBox_1y51o_136 {
3417
+ ._heroImageBox_a0wva_119 {
3427
3418
  position: absolute;
3428
3419
  top: 31px;
3429
3420
  left: 0;
@@ -3431,7 +3422,7 @@
3431
3422
  aspect-ratio: 750 / 1348;
3432
3423
  overflow: hidden;
3433
3424
  }
3434
- ._hero_1y51o_136::after {
3425
+ ._hero_a0wva_119::after {
3435
3426
  content: "";
3436
3427
  position: absolute;
3437
3428
  inset: 0;
@@ -3446,10 +3437,10 @@
3446
3437
  rgba(8, 14, 18, 1) 90%);
3447
3438
  pointer-events: none;
3448
3439
  }
3449
- ._hero_1y51o_136 ._image_1y51o_88 {
3440
+ ._hero_a0wva_119 ._image_a0wva_71 {
3450
3441
  object-position: top;
3451
3442
  }
3452
- ._hero_1y51o_136 ._heroContent_1y51o_207 {
3443
+ ._hero_a0wva_119 ._heroContent_a0wva_190 {
3453
3444
  position: absolute;
3454
3445
  bottom: 0;
3455
3446
  left: 0;
@@ -3460,7 +3451,7 @@
3460
3451
  gap: 24px;
3461
3452
  align-items: stretch;
3462
3453
  }
3463
- ._heroText_1y51o_224 {
3454
+ ._heroText_a0wva_207 {
3464
3455
  display: flex;
3465
3456
  flex-direction: column;
3466
3457
  gap: 8px;
@@ -3468,11 +3459,11 @@
3468
3459
  padding: 0 24px;
3469
3460
  text-align: center;
3470
3461
  }
3471
- ._heroText_1y51o_224 ._logo_1y51o_233 {
3462
+ ._heroText_a0wva_207 ._logo_a0wva_216 {
3472
3463
  width: 48px;
3473
3464
  height: 48px;
3474
3465
  }
3475
- ._heroTitle_1y51o_253 {
3466
+ ._heroTitle_a0wva_236 {
3476
3467
  width: 100%;
3477
3468
  margin: 0;
3478
3469
  font-family:
@@ -3487,14 +3478,14 @@
3487
3478
  letter-spacing: -1.12px;
3488
3479
  color: #f9fafa;
3489
3480
  }
3490
- ._heroSub_1y51o_277 {
3481
+ ._heroSub_a0wva_260 {
3491
3482
  margin: 0;
3492
3483
  font-size: 16px;
3493
3484
  line-height: 1.55;
3494
3485
  color: #f9fafa;
3495
3486
  max-width: 327px;
3496
3487
  }
3497
- ._swipe_1y51o_290 {
3488
+ ._swipe_a0wva_273 {
3498
3489
  display: flex;
3499
3490
  flex-direction: column;
3500
3491
  align-items: center;
@@ -3502,19 +3493,19 @@
3502
3493
  padding: 8px 0;
3503
3494
  background: #080e12;
3504
3495
  }
3505
- ._swipeLabel_1y51o_298 {
3496
+ ._swipeLabel_a0wva_281 {
3506
3497
  margin: 0;
3507
3498
  font-size: 14px;
3508
3499
  line-height: 1;
3509
3500
  color: rgba(255, 255, 255, 0.54);
3510
3501
  }
3511
- ._chevron_1y51o_304 {
3502
+ ._chevron_a0wva_287 {
3512
3503
  width: 24px;
3513
3504
  height: 24px;
3514
3505
  color: rgba(255, 255, 255, 0.54);
3515
- animation: _bob_1y51o_1 1.8s ease-in-out infinite;
3506
+ animation: _bob_a0wva_1 1.8s ease-in-out infinite;
3516
3507
  }
3517
- @keyframes _bob_1y51o_1 {
3508
+ @keyframes _bob_a0wva_1 {
3518
3509
  0%, 100% {
3519
3510
  transform: translateY(0);
3520
3511
  }
@@ -3522,7 +3513,7 @@
3522
3513
  transform: translateY(4px);
3523
3514
  }
3524
3515
  }
3525
- ._overlay_1y51o_321 {
3516
+ ._overlay_a0wva_304 {
3526
3517
  position: absolute;
3527
3518
  inset: 0;
3528
3519
  z-index: 1;
@@ -3533,25 +3524,25 @@
3533
3524
  align-items: flex-start;
3534
3525
  padding: 0 24px 24px;
3535
3526
  }
3536
- ._copy_1y51o_332 {
3527
+ ._copy_a0wva_315 {
3537
3528
  display: flex;
3538
3529
  flex-direction: column;
3539
3530
  gap: 8px;
3540
3531
  }
3541
- ._title_1y51o_337 {
3532
+ ._title_a0wva_320 {
3542
3533
  margin: 0;
3543
3534
  font-size: 32px;
3544
3535
  line-height: 1.2;
3545
3536
  font-weight: 700;
3546
3537
  color: #f9fafa;
3547
3538
  }
3548
- ._subtitle_1y51o_344 {
3539
+ ._subtitle_a0wva_327 {
3549
3540
  margin: 0;
3550
3541
  font-size: 16px;
3551
3542
  line-height: 1.55;
3552
3543
  color: #f9fafa;
3553
3544
  }
3554
- ._cta_1y51o_350 {
3545
+ ._cta_a0wva_333 {
3555
3546
  display: inline-flex;
3556
3547
  align-items: center;
3557
3548
  justify-content: center;
@@ -3565,15 +3556,15 @@
3565
3556
  font-weight: 700;
3566
3557
  text-decoration: none;
3567
3558
  }
3568
- ._cta_1y51o_350::after {
3559
+ ._cta_a0wva_333::after {
3569
3560
  content: "";
3570
3561
  position: absolute;
3571
3562
  inset: 0;
3572
3563
  }
3573
- ._cta_1y51o_350:active {
3564
+ ._cta_a0wva_333:active {
3574
3565
  background: rgba(249, 250, 250, 0.12);
3575
3566
  }
3576
- ._cta_1y51o_350:focus-visible {
3567
+ ._cta_a0wva_333:focus-visible {
3577
3568
  outline: none;
3578
3569
  box-shadow: var(--focus-ring);
3579
3570
  }
package/dist/styles.css CHANGED
@@ -3399,31 +3399,22 @@
3399
3399
  column-gap: var(--space-12);
3400
3400
  row-gap: var(--space-24);
3401
3401
  }
3402
- ._showcase_1y51o_40 {
3403
- height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3404
- overflow-y: auto;
3405
- scroll-snap-type: y mandatory;
3406
- overscroll-behavior-y: contain;
3407
- -webkit-overflow-scrolling: touch;
3402
+ ._showcase_a0wva_39 {
3408
3403
  background: #080e12;
3409
- scrollbar-width: none;
3410
- }
3411
- ._showcase_1y51o_40::-webkit-scrollbar {
3412
- display: none;
3413
3404
  }
3414
- ._panel_1y51o_59 {
3405
+ ._panel_a0wva_43 {
3415
3406
  position: relative;
3416
- height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3407
+ height: calc(100lvh - var(--showcase-top, 0px));
3417
3408
  scroll-snap-align: start;
3418
3409
  scroll-snap-stop: always;
3419
3410
  overflow: hidden;
3420
3411
  background: #080e12;
3421
3412
  }
3422
- ._image_1y51o_88 {
3413
+ ._image_a0wva_71 {
3423
3414
  object-fit: cover;
3424
3415
  object-position: 50% var(--slide-focal-y, 50%);
3425
3416
  }
3426
- ._heroImageBox_1y51o_136 {
3417
+ ._heroImageBox_a0wva_119 {
3427
3418
  position: absolute;
3428
3419
  top: 31px;
3429
3420
  left: 0;
@@ -3431,7 +3422,7 @@
3431
3422
  aspect-ratio: 750 / 1348;
3432
3423
  overflow: hidden;
3433
3424
  }
3434
- ._hero_1y51o_136::after {
3425
+ ._hero_a0wva_119::after {
3435
3426
  content: "";
3436
3427
  position: absolute;
3437
3428
  inset: 0;
@@ -3446,10 +3437,10 @@
3446
3437
  rgba(8, 14, 18, 1) 90%);
3447
3438
  pointer-events: none;
3448
3439
  }
3449
- ._hero_1y51o_136 ._image_1y51o_88 {
3440
+ ._hero_a0wva_119 ._image_a0wva_71 {
3450
3441
  object-position: top;
3451
3442
  }
3452
- ._hero_1y51o_136 ._heroContent_1y51o_207 {
3443
+ ._hero_a0wva_119 ._heroContent_a0wva_190 {
3453
3444
  position: absolute;
3454
3445
  bottom: 0;
3455
3446
  left: 0;
@@ -3460,7 +3451,7 @@
3460
3451
  gap: 24px;
3461
3452
  align-items: stretch;
3462
3453
  }
3463
- ._heroText_1y51o_224 {
3454
+ ._heroText_a0wva_207 {
3464
3455
  display: flex;
3465
3456
  flex-direction: column;
3466
3457
  gap: 8px;
@@ -3468,11 +3459,11 @@
3468
3459
  padding: 0 24px;
3469
3460
  text-align: center;
3470
3461
  }
3471
- ._heroText_1y51o_224 ._logo_1y51o_233 {
3462
+ ._heroText_a0wva_207 ._logo_a0wva_216 {
3472
3463
  width: 48px;
3473
3464
  height: 48px;
3474
3465
  }
3475
- ._heroTitle_1y51o_253 {
3466
+ ._heroTitle_a0wva_236 {
3476
3467
  width: 100%;
3477
3468
  margin: 0;
3478
3469
  font-family:
@@ -3487,14 +3478,14 @@
3487
3478
  letter-spacing: -1.12px;
3488
3479
  color: #f9fafa;
3489
3480
  }
3490
- ._heroSub_1y51o_277 {
3481
+ ._heroSub_a0wva_260 {
3491
3482
  margin: 0;
3492
3483
  font-size: 16px;
3493
3484
  line-height: 1.55;
3494
3485
  color: #f9fafa;
3495
3486
  max-width: 327px;
3496
3487
  }
3497
- ._swipe_1y51o_290 {
3488
+ ._swipe_a0wva_273 {
3498
3489
  display: flex;
3499
3490
  flex-direction: column;
3500
3491
  align-items: center;
@@ -3502,19 +3493,19 @@
3502
3493
  padding: 8px 0;
3503
3494
  background: #080e12;
3504
3495
  }
3505
- ._swipeLabel_1y51o_298 {
3496
+ ._swipeLabel_a0wva_281 {
3506
3497
  margin: 0;
3507
3498
  font-size: 14px;
3508
3499
  line-height: 1;
3509
3500
  color: rgba(255, 255, 255, 0.54);
3510
3501
  }
3511
- ._chevron_1y51o_304 {
3502
+ ._chevron_a0wva_287 {
3512
3503
  width: 24px;
3513
3504
  height: 24px;
3514
3505
  color: rgba(255, 255, 255, 0.54);
3515
- animation: _bob_1y51o_1 1.8s ease-in-out infinite;
3506
+ animation: _bob_a0wva_1 1.8s ease-in-out infinite;
3516
3507
  }
3517
- @keyframes _bob_1y51o_1 {
3508
+ @keyframes _bob_a0wva_1 {
3518
3509
  0%, 100% {
3519
3510
  transform: translateY(0);
3520
3511
  }
@@ -3522,7 +3513,7 @@
3522
3513
  transform: translateY(4px);
3523
3514
  }
3524
3515
  }
3525
- ._overlay_1y51o_321 {
3516
+ ._overlay_a0wva_304 {
3526
3517
  position: absolute;
3527
3518
  inset: 0;
3528
3519
  z-index: 1;
@@ -3533,25 +3524,25 @@
3533
3524
  align-items: flex-start;
3534
3525
  padding: 0 24px 24px;
3535
3526
  }
3536
- ._copy_1y51o_332 {
3527
+ ._copy_a0wva_315 {
3537
3528
  display: flex;
3538
3529
  flex-direction: column;
3539
3530
  gap: 8px;
3540
3531
  }
3541
- ._title_1y51o_337 {
3532
+ ._title_a0wva_320 {
3542
3533
  margin: 0;
3543
3534
  font-size: 32px;
3544
3535
  line-height: 1.2;
3545
3536
  font-weight: 700;
3546
3537
  color: #f9fafa;
3547
3538
  }
3548
- ._subtitle_1y51o_344 {
3539
+ ._subtitle_a0wva_327 {
3549
3540
  margin: 0;
3550
3541
  font-size: 16px;
3551
3542
  line-height: 1.55;
3552
3543
  color: #f9fafa;
3553
3544
  }
3554
- ._cta_1y51o_350 {
3545
+ ._cta_a0wva_333 {
3555
3546
  display: inline-flex;
3556
3547
  align-items: center;
3557
3548
  justify-content: center;
@@ -3565,15 +3556,15 @@
3565
3556
  font-weight: 700;
3566
3557
  text-decoration: none;
3567
3558
  }
3568
- ._cta_1y51o_350::after {
3559
+ ._cta_a0wva_333::after {
3569
3560
  content: "";
3570
3561
  position: absolute;
3571
3562
  inset: 0;
3572
3563
  }
3573
- ._cta_1y51o_350:active {
3564
+ ._cta_a0wva_333:active {
3574
3565
  background: rgba(249, 250, 250, 0.12);
3575
3566
  }
3576
- ._cta_1y51o_350:focus-visible {
3567
+ ._cta_a0wva_333:focus-visible {
3577
3568
  outline: none;
3578
3569
  box-shadow: var(--focus-ring);
3579
3570
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nok-integration/storefront-react",
3
- "version": "0.19.9",
3
+ "version": "0.19.10",
4
4
  "description": "Mountable React storefront components: catalogue, product detail and cart, mounted directly into a host DOM tree. No iframe.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",