@nok-integration/storefront-react 0.19.40 → 0.19.41
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 +22 -38
- package/dist/standalone/storefront.mjs +22 -38
- package/dist/standalone/styles.css +24 -24
- package/dist/styles.css +24 -24
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5529,7 +5529,7 @@ const styles$O = {
|
|
|
5529
5529
|
surface: surface$1,
|
|
5530
5530
|
fill
|
|
5531
5531
|
};
|
|
5532
|
-
const SETTLE_MS
|
|
5532
|
+
const SETTLE_MS = 150;
|
|
5533
5533
|
function scrolledOffOrigin(el) {
|
|
5534
5534
|
for (let node = el.parentElement; node; node = node.parentElement) {
|
|
5535
5535
|
if (node.scrollTop > 0) return true;
|
|
@@ -5553,11 +5553,11 @@ function useTopOffset(ref, property, enabled = true) {
|
|
|
5553
5553
|
};
|
|
5554
5554
|
const settle = () => {
|
|
5555
5555
|
if (timer2) clearTimeout(timer2);
|
|
5556
|
-
timer2 = setTimeout(measure, SETTLE_MS
|
|
5556
|
+
timer2 = setTimeout(measure, SETTLE_MS);
|
|
5557
5557
|
};
|
|
5558
5558
|
measure();
|
|
5559
5559
|
const frame2 = typeof requestAnimationFrame === "undefined" ? void 0 : requestAnimationFrame(measure);
|
|
5560
|
-
const settleAfterMount = setTimeout(measure, SETTLE_MS
|
|
5560
|
+
const settleAfterMount = setTimeout(measure, SETTLE_MS);
|
|
5561
5561
|
window.addEventListener("resize", measure);
|
|
5562
5562
|
window.addEventListener("orientationchange", measure);
|
|
5563
5563
|
document.addEventListener("scroll", settle, {
|
|
@@ -10924,24 +10924,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
|
|
|
10924
10924
|
})
|
|
10925
10925
|
});
|
|
10926
10926
|
}
|
|
10927
|
-
const showcase = "
|
|
10928
|
-
const panel = "
|
|
10929
|
-
const image = "
|
|
10930
|
-
const hero = "
|
|
10931
|
-
const heroContent = "
|
|
10932
|
-
const heroText = "
|
|
10933
|
-
const logo = "
|
|
10934
|
-
const heroTitle = "
|
|
10935
|
-
const heroSub = "
|
|
10936
|
-
const swipe = "
|
|
10937
|
-
const swipeLabel = "
|
|
10938
|
-
const chevron$1 = "
|
|
10939
|
-
const overlay$1 = "
|
|
10940
|
-
const copy = "
|
|
10941
|
-
const title$2 = "
|
|
10942
|
-
const subtitle$1 = "
|
|
10943
|
-
const cta = "
|
|
10944
|
-
const mosaic = "
|
|
10927
|
+
const showcase = "_showcase_c2hqd_59";
|
|
10928
|
+
const panel = "_panel_c2hqd_63";
|
|
10929
|
+
const image = "_image_c2hqd_91";
|
|
10930
|
+
const hero = "_hero_c2hqd_131";
|
|
10931
|
+
const heroContent = "_heroContent_c2hqd_212";
|
|
10932
|
+
const heroText = "_heroText_c2hqd_236";
|
|
10933
|
+
const logo = "_logo_c2hqd_245";
|
|
10934
|
+
const heroTitle = "_heroTitle_c2hqd_265";
|
|
10935
|
+
const heroSub = "_heroSub_c2hqd_289";
|
|
10936
|
+
const swipe = "_swipe_c2hqd_308";
|
|
10937
|
+
const swipeLabel = "_swipeLabel_c2hqd_315";
|
|
10938
|
+
const chevron$1 = "_chevron_c2hqd_321";
|
|
10939
|
+
const overlay$1 = "_overlay_c2hqd_11";
|
|
10940
|
+
const copy = "_copy_c2hqd_356";
|
|
10941
|
+
const title$2 = "_title_c2hqd_361";
|
|
10942
|
+
const subtitle$1 = "_subtitle_c2hqd_368";
|
|
10943
|
+
const cta = "_cta_c2hqd_374";
|
|
10944
|
+
const mosaic = "_mosaic_c2hqd_418";
|
|
10945
10945
|
const styles$2 = {
|
|
10946
10946
|
showcase,
|
|
10947
10947
|
panel,
|
|
@@ -10962,7 +10962,6 @@ const styles$2 = {
|
|
|
10962
10962
|
cta,
|
|
10963
10963
|
mosaic
|
|
10964
10964
|
};
|
|
10965
|
-
const SETTLE_MS = 150;
|
|
10966
10965
|
function useDocumentSnap(ref, enabled = true) {
|
|
10967
10966
|
useEffect(() => {
|
|
10968
10967
|
const el = ref.current;
|
|
@@ -10970,23 +10969,9 @@ function useDocumentSnap(ref, enabled = true) {
|
|
|
10970
10969
|
const root2 = document.documentElement;
|
|
10971
10970
|
const previousType = root2.style.scrollSnapType;
|
|
10972
10971
|
const previousPadding = root2.style.scrollPaddingTop;
|
|
10973
|
-
let timer2;
|
|
10974
|
-
const syncPadding = () => {
|
|
10975
|
-
const top2 = getComputedStyle(el).getPropertyValue("--showcase-top").trim();
|
|
10976
|
-
root2.style.scrollPaddingTop = top2 === "" ? "0px" : top2;
|
|
10977
|
-
};
|
|
10978
|
-
const schedule = () => {
|
|
10979
|
-
if (timer2) clearTimeout(timer2);
|
|
10980
|
-
timer2 = setTimeout(syncPadding, SETTLE_MS);
|
|
10981
|
-
};
|
|
10982
10972
|
root2.style.scrollSnapType = "y mandatory";
|
|
10983
|
-
|
|
10984
|
-
window.addEventListener("resize", schedule);
|
|
10985
|
-
window.addEventListener("orientationchange", schedule);
|
|
10973
|
+
root2.style.scrollPaddingTop = "0px";
|
|
10986
10974
|
return () => {
|
|
10987
|
-
if (timer2) clearTimeout(timer2);
|
|
10988
|
-
window.removeEventListener("resize", schedule);
|
|
10989
|
-
window.removeEventListener("orientationchange", schedule);
|
|
10990
10975
|
root2.style.scrollSnapType = previousType;
|
|
10991
10976
|
root2.style.scrollPaddingTop = previousPadding;
|
|
10992
10977
|
};
|
|
@@ -11113,7 +11098,6 @@ function HomeShowcase() {
|
|
|
11113
11098
|
const assetUrl = useAssetUrl();
|
|
11114
11099
|
const panels = useSlides();
|
|
11115
11100
|
const showcaseRef = useRef(null);
|
|
11116
|
-
useTopOffset(showcaseRef, "--showcase-top");
|
|
11117
11101
|
useDocumentSnap(showcaseRef);
|
|
11118
11102
|
return jsx(ShopSurface, {
|
|
11119
11103
|
tone: "dark",
|
|
@@ -5529,7 +5529,7 @@ const styles$O = {
|
|
|
5529
5529
|
surface: surface$1,
|
|
5530
5530
|
fill
|
|
5531
5531
|
};
|
|
5532
|
-
const SETTLE_MS
|
|
5532
|
+
const SETTLE_MS = 150;
|
|
5533
5533
|
function scrolledOffOrigin(el) {
|
|
5534
5534
|
for (let node = el.parentElement; node; node = node.parentElement) {
|
|
5535
5535
|
if (node.scrollTop > 0) return true;
|
|
@@ -5553,11 +5553,11 @@ function useTopOffset(ref, property, enabled = true) {
|
|
|
5553
5553
|
};
|
|
5554
5554
|
const settle = () => {
|
|
5555
5555
|
if (timer2) clearTimeout(timer2);
|
|
5556
|
-
timer2 = setTimeout(measure, SETTLE_MS
|
|
5556
|
+
timer2 = setTimeout(measure, SETTLE_MS);
|
|
5557
5557
|
};
|
|
5558
5558
|
measure();
|
|
5559
5559
|
const frame2 = typeof requestAnimationFrame === "undefined" ? void 0 : requestAnimationFrame(measure);
|
|
5560
|
-
const settleAfterMount = setTimeout(measure, SETTLE_MS
|
|
5560
|
+
const settleAfterMount = setTimeout(measure, SETTLE_MS);
|
|
5561
5561
|
window.addEventListener("resize", measure);
|
|
5562
5562
|
window.addEventListener("orientationchange", measure);
|
|
5563
5563
|
document.addEventListener("scroll", settle, {
|
|
@@ -10924,24 +10924,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
|
|
|
10924
10924
|
})
|
|
10925
10925
|
});
|
|
10926
10926
|
}
|
|
10927
|
-
const showcase = "
|
|
10928
|
-
const panel = "
|
|
10929
|
-
const image = "
|
|
10930
|
-
const hero = "
|
|
10931
|
-
const heroContent = "
|
|
10932
|
-
const heroText = "
|
|
10933
|
-
const logo = "
|
|
10934
|
-
const heroTitle = "
|
|
10935
|
-
const heroSub = "
|
|
10936
|
-
const swipe = "
|
|
10937
|
-
const swipeLabel = "
|
|
10938
|
-
const chevron$1 = "
|
|
10939
|
-
const overlay$1 = "
|
|
10940
|
-
const copy = "
|
|
10941
|
-
const title$2 = "
|
|
10942
|
-
const subtitle$1 = "
|
|
10943
|
-
const cta = "
|
|
10944
|
-
const mosaic = "
|
|
10927
|
+
const showcase = "_showcase_c2hqd_59";
|
|
10928
|
+
const panel = "_panel_c2hqd_63";
|
|
10929
|
+
const image = "_image_c2hqd_91";
|
|
10930
|
+
const hero = "_hero_c2hqd_131";
|
|
10931
|
+
const heroContent = "_heroContent_c2hqd_212";
|
|
10932
|
+
const heroText = "_heroText_c2hqd_236";
|
|
10933
|
+
const logo = "_logo_c2hqd_245";
|
|
10934
|
+
const heroTitle = "_heroTitle_c2hqd_265";
|
|
10935
|
+
const heroSub = "_heroSub_c2hqd_289";
|
|
10936
|
+
const swipe = "_swipe_c2hqd_308";
|
|
10937
|
+
const swipeLabel = "_swipeLabel_c2hqd_315";
|
|
10938
|
+
const chevron$1 = "_chevron_c2hqd_321";
|
|
10939
|
+
const overlay$1 = "_overlay_c2hqd_11";
|
|
10940
|
+
const copy = "_copy_c2hqd_356";
|
|
10941
|
+
const title$2 = "_title_c2hqd_361";
|
|
10942
|
+
const subtitle$1 = "_subtitle_c2hqd_368";
|
|
10943
|
+
const cta = "_cta_c2hqd_374";
|
|
10944
|
+
const mosaic = "_mosaic_c2hqd_418";
|
|
10945
10945
|
const styles$2 = {
|
|
10946
10946
|
showcase,
|
|
10947
10947
|
panel,
|
|
@@ -10962,7 +10962,6 @@ const styles$2 = {
|
|
|
10962
10962
|
cta,
|
|
10963
10963
|
mosaic
|
|
10964
10964
|
};
|
|
10965
|
-
const SETTLE_MS = 150;
|
|
10966
10965
|
function useDocumentSnap(ref, enabled = true) {
|
|
10967
10966
|
useEffect(() => {
|
|
10968
10967
|
const el = ref.current;
|
|
@@ -10970,23 +10969,9 @@ function useDocumentSnap(ref, enabled = true) {
|
|
|
10970
10969
|
const root2 = document.documentElement;
|
|
10971
10970
|
const previousType = root2.style.scrollSnapType;
|
|
10972
10971
|
const previousPadding = root2.style.scrollPaddingTop;
|
|
10973
|
-
let timer2;
|
|
10974
|
-
const syncPadding = () => {
|
|
10975
|
-
const top2 = getComputedStyle(el).getPropertyValue("--showcase-top").trim();
|
|
10976
|
-
root2.style.scrollPaddingTop = top2 === "" ? "0px" : top2;
|
|
10977
|
-
};
|
|
10978
|
-
const schedule = () => {
|
|
10979
|
-
if (timer2) clearTimeout(timer2);
|
|
10980
|
-
timer2 = setTimeout(syncPadding, SETTLE_MS);
|
|
10981
|
-
};
|
|
10982
10972
|
root2.style.scrollSnapType = "y mandatory";
|
|
10983
|
-
|
|
10984
|
-
window.addEventListener("resize", schedule);
|
|
10985
|
-
window.addEventListener("orientationchange", schedule);
|
|
10973
|
+
root2.style.scrollPaddingTop = "0px";
|
|
10986
10974
|
return () => {
|
|
10987
|
-
if (timer2) clearTimeout(timer2);
|
|
10988
|
-
window.removeEventListener("resize", schedule);
|
|
10989
|
-
window.removeEventListener("orientationchange", schedule);
|
|
10990
10975
|
root2.style.scrollSnapType = previousType;
|
|
10991
10976
|
root2.style.scrollPaddingTop = previousPadding;
|
|
10992
10977
|
};
|
|
@@ -11113,7 +11098,6 @@ function HomeShowcase() {
|
|
|
11113
11098
|
const assetUrl = useAssetUrl();
|
|
11114
11099
|
const panels = useSlides();
|
|
11115
11100
|
const showcaseRef = useRef(null);
|
|
11116
|
-
useTopOffset(showcaseRef, "--showcase-top");
|
|
11117
11101
|
useDocumentSnap(showcaseRef);
|
|
11118
11102
|
return jsx(ShopSurface, {
|
|
11119
11103
|
tone: "dark",
|
|
@@ -3487,22 +3487,22 @@
|
|
|
3487
3487
|
column-gap: var(--space-12);
|
|
3488
3488
|
row-gap: var(--space-12);
|
|
3489
3489
|
}
|
|
3490
|
-
.
|
|
3490
|
+
._showcase_c2hqd_59 {
|
|
3491
3491
|
background: #080e12;
|
|
3492
3492
|
}
|
|
3493
|
-
.
|
|
3493
|
+
._panel_c2hqd_63 {
|
|
3494
3494
|
position: relative;
|
|
3495
|
-
height:
|
|
3495
|
+
height: 100lvh;
|
|
3496
3496
|
scroll-snap-align: start;
|
|
3497
3497
|
scroll-snap-stop: always;
|
|
3498
3498
|
overflow: hidden;
|
|
3499
3499
|
background: #080e12;
|
|
3500
3500
|
}
|
|
3501
|
-
.
|
|
3501
|
+
._image_c2hqd_91 {
|
|
3502
3502
|
object-fit: cover;
|
|
3503
3503
|
object-position: 50% var(--slide-focal-y, 50%);
|
|
3504
3504
|
}
|
|
3505
|
-
.
|
|
3505
|
+
._hero_c2hqd_131::after {
|
|
3506
3506
|
content: "";
|
|
3507
3507
|
position: absolute;
|
|
3508
3508
|
inset: 0;
|
|
@@ -3517,7 +3517,7 @@
|
|
|
3517
3517
|
rgba(8, 14, 18, 0) 520px);
|
|
3518
3518
|
pointer-events: none;
|
|
3519
3519
|
}
|
|
3520
|
-
.
|
|
3520
|
+
._hero_c2hqd_131 ._heroContent_c2hqd_212 {
|
|
3521
3521
|
position: absolute;
|
|
3522
3522
|
bottom: 32px;
|
|
3523
3523
|
bottom: calc(32px + 100lvh - 100dvh);
|
|
@@ -3529,7 +3529,7 @@
|
|
|
3529
3529
|
gap: 24px;
|
|
3530
3530
|
align-items: stretch;
|
|
3531
3531
|
}
|
|
3532
|
-
.
|
|
3532
|
+
._heroText_c2hqd_236 {
|
|
3533
3533
|
display: flex;
|
|
3534
3534
|
flex-direction: column;
|
|
3535
3535
|
gap: 8px;
|
|
@@ -3537,11 +3537,11 @@
|
|
|
3537
3537
|
padding: 0 24px;
|
|
3538
3538
|
text-align: center;
|
|
3539
3539
|
}
|
|
3540
|
-
.
|
|
3540
|
+
._heroText_c2hqd_236 ._logo_c2hqd_245 {
|
|
3541
3541
|
width: 48px;
|
|
3542
3542
|
height: 48px;
|
|
3543
3543
|
}
|
|
3544
|
-
.
|
|
3544
|
+
._heroTitle_c2hqd_265 {
|
|
3545
3545
|
width: 100%;
|
|
3546
3546
|
margin: 0;
|
|
3547
3547
|
font-family:
|
|
@@ -3556,33 +3556,33 @@
|
|
|
3556
3556
|
letter-spacing: -1.12px;
|
|
3557
3557
|
color: #f9fafa;
|
|
3558
3558
|
}
|
|
3559
|
-
.
|
|
3559
|
+
._heroSub_c2hqd_289 {
|
|
3560
3560
|
margin: 0;
|
|
3561
3561
|
font-size: 16px;
|
|
3562
3562
|
line-height: 1.55;
|
|
3563
3563
|
color: #f9fafa;
|
|
3564
3564
|
max-width: 327px;
|
|
3565
3565
|
}
|
|
3566
|
-
.
|
|
3566
|
+
._swipe_c2hqd_308 {
|
|
3567
3567
|
display: flex;
|
|
3568
3568
|
flex-direction: column;
|
|
3569
3569
|
align-items: center;
|
|
3570
3570
|
gap: 6px;
|
|
3571
3571
|
padding: 8px 0;
|
|
3572
3572
|
}
|
|
3573
|
-
.
|
|
3573
|
+
._swipeLabel_c2hqd_315 {
|
|
3574
3574
|
margin: 0;
|
|
3575
3575
|
font-size: 14px;
|
|
3576
3576
|
line-height: 1;
|
|
3577
3577
|
color: rgba(255, 255, 255, 0.54);
|
|
3578
3578
|
}
|
|
3579
|
-
.
|
|
3579
|
+
._chevron_c2hqd_321 {
|
|
3580
3580
|
width: 24px;
|
|
3581
3581
|
height: 24px;
|
|
3582
3582
|
color: rgba(255, 255, 255, 0.54);
|
|
3583
|
-
animation:
|
|
3583
|
+
animation: _bob_c2hqd_1 1.8s ease-in-out infinite;
|
|
3584
3584
|
}
|
|
3585
|
-
@keyframes
|
|
3585
|
+
@keyframes _bob_c2hqd_1 {
|
|
3586
3586
|
0%, 100% {
|
|
3587
3587
|
transform: translateY(0);
|
|
3588
3588
|
}
|
|
@@ -3590,7 +3590,7 @@
|
|
|
3590
3590
|
transform: translateY(4px);
|
|
3591
3591
|
}
|
|
3592
3592
|
}
|
|
3593
|
-
.
|
|
3593
|
+
._overlay_c2hqd_11 {
|
|
3594
3594
|
position: absolute;
|
|
3595
3595
|
inset: 0;
|
|
3596
3596
|
z-index: 1;
|
|
@@ -3607,25 +3607,25 @@
|
|
|
3607
3607
|
padding: 0 24px 24px;
|
|
3608
3608
|
padding-bottom: calc(24px + 100lvh - 100dvh);
|
|
3609
3609
|
}
|
|
3610
|
-
.
|
|
3610
|
+
._copy_c2hqd_356 {
|
|
3611
3611
|
display: flex;
|
|
3612
3612
|
flex-direction: column;
|
|
3613
3613
|
gap: 8px;
|
|
3614
3614
|
}
|
|
3615
|
-
.
|
|
3615
|
+
._title_c2hqd_361 {
|
|
3616
3616
|
margin: 0;
|
|
3617
3617
|
font-size: 32px;
|
|
3618
3618
|
line-height: 1.2;
|
|
3619
3619
|
font-weight: 700;
|
|
3620
3620
|
color: #f9fafa;
|
|
3621
3621
|
}
|
|
3622
|
-
.
|
|
3622
|
+
._subtitle_c2hqd_368 {
|
|
3623
3623
|
margin: 0;
|
|
3624
3624
|
font-size: 16px;
|
|
3625
3625
|
line-height: 1.55;
|
|
3626
3626
|
color: #f9fafa;
|
|
3627
3627
|
}
|
|
3628
|
-
.
|
|
3628
|
+
._cta_c2hqd_374 {
|
|
3629
3629
|
display: inline-flex;
|
|
3630
3630
|
align-items: center;
|
|
3631
3631
|
justify-content: center;
|
|
@@ -3639,19 +3639,19 @@
|
|
|
3639
3639
|
font-weight: 700;
|
|
3640
3640
|
text-decoration: none;
|
|
3641
3641
|
}
|
|
3642
|
-
.
|
|
3642
|
+
._cta_c2hqd_374::after {
|
|
3643
3643
|
content: "";
|
|
3644
3644
|
position: absolute;
|
|
3645
3645
|
inset: 0;
|
|
3646
3646
|
}
|
|
3647
|
-
.
|
|
3647
|
+
._cta_c2hqd_374:active {
|
|
3648
3648
|
background: rgba(249, 250, 250, 0.12);
|
|
3649
3649
|
}
|
|
3650
|
-
.
|
|
3650
|
+
._cta_c2hqd_374:focus-visible {
|
|
3651
3651
|
outline: none;
|
|
3652
3652
|
box-shadow: var(--focus-ring);
|
|
3653
3653
|
}
|
|
3654
|
-
.
|
|
3654
|
+
._mosaic_c2hqd_418 {
|
|
3655
3655
|
background: #080e12;
|
|
3656
3656
|
}
|
|
3657
3657
|
._header_8o3d7_25 {
|
package/dist/styles.css
CHANGED
|
@@ -3487,22 +3487,22 @@
|
|
|
3487
3487
|
column-gap: var(--space-12);
|
|
3488
3488
|
row-gap: var(--space-12);
|
|
3489
3489
|
}
|
|
3490
|
-
.
|
|
3490
|
+
._showcase_c2hqd_59 {
|
|
3491
3491
|
background: #080e12;
|
|
3492
3492
|
}
|
|
3493
|
-
.
|
|
3493
|
+
._panel_c2hqd_63 {
|
|
3494
3494
|
position: relative;
|
|
3495
|
-
height:
|
|
3495
|
+
height: 100lvh;
|
|
3496
3496
|
scroll-snap-align: start;
|
|
3497
3497
|
scroll-snap-stop: always;
|
|
3498
3498
|
overflow: hidden;
|
|
3499
3499
|
background: #080e12;
|
|
3500
3500
|
}
|
|
3501
|
-
.
|
|
3501
|
+
._image_c2hqd_91 {
|
|
3502
3502
|
object-fit: cover;
|
|
3503
3503
|
object-position: 50% var(--slide-focal-y, 50%);
|
|
3504
3504
|
}
|
|
3505
|
-
.
|
|
3505
|
+
._hero_c2hqd_131::after {
|
|
3506
3506
|
content: "";
|
|
3507
3507
|
position: absolute;
|
|
3508
3508
|
inset: 0;
|
|
@@ -3517,7 +3517,7 @@
|
|
|
3517
3517
|
rgba(8, 14, 18, 0) 520px);
|
|
3518
3518
|
pointer-events: none;
|
|
3519
3519
|
}
|
|
3520
|
-
.
|
|
3520
|
+
._hero_c2hqd_131 ._heroContent_c2hqd_212 {
|
|
3521
3521
|
position: absolute;
|
|
3522
3522
|
bottom: 32px;
|
|
3523
3523
|
bottom: calc(32px + 100lvh - 100dvh);
|
|
@@ -3529,7 +3529,7 @@
|
|
|
3529
3529
|
gap: 24px;
|
|
3530
3530
|
align-items: stretch;
|
|
3531
3531
|
}
|
|
3532
|
-
.
|
|
3532
|
+
._heroText_c2hqd_236 {
|
|
3533
3533
|
display: flex;
|
|
3534
3534
|
flex-direction: column;
|
|
3535
3535
|
gap: 8px;
|
|
@@ -3537,11 +3537,11 @@
|
|
|
3537
3537
|
padding: 0 24px;
|
|
3538
3538
|
text-align: center;
|
|
3539
3539
|
}
|
|
3540
|
-
.
|
|
3540
|
+
._heroText_c2hqd_236 ._logo_c2hqd_245 {
|
|
3541
3541
|
width: 48px;
|
|
3542
3542
|
height: 48px;
|
|
3543
3543
|
}
|
|
3544
|
-
.
|
|
3544
|
+
._heroTitle_c2hqd_265 {
|
|
3545
3545
|
width: 100%;
|
|
3546
3546
|
margin: 0;
|
|
3547
3547
|
font-family:
|
|
@@ -3556,33 +3556,33 @@
|
|
|
3556
3556
|
letter-spacing: -1.12px;
|
|
3557
3557
|
color: #f9fafa;
|
|
3558
3558
|
}
|
|
3559
|
-
.
|
|
3559
|
+
._heroSub_c2hqd_289 {
|
|
3560
3560
|
margin: 0;
|
|
3561
3561
|
font-size: 16px;
|
|
3562
3562
|
line-height: 1.55;
|
|
3563
3563
|
color: #f9fafa;
|
|
3564
3564
|
max-width: 327px;
|
|
3565
3565
|
}
|
|
3566
|
-
.
|
|
3566
|
+
._swipe_c2hqd_308 {
|
|
3567
3567
|
display: flex;
|
|
3568
3568
|
flex-direction: column;
|
|
3569
3569
|
align-items: center;
|
|
3570
3570
|
gap: 6px;
|
|
3571
3571
|
padding: 8px 0;
|
|
3572
3572
|
}
|
|
3573
|
-
.
|
|
3573
|
+
._swipeLabel_c2hqd_315 {
|
|
3574
3574
|
margin: 0;
|
|
3575
3575
|
font-size: 14px;
|
|
3576
3576
|
line-height: 1;
|
|
3577
3577
|
color: rgba(255, 255, 255, 0.54);
|
|
3578
3578
|
}
|
|
3579
|
-
.
|
|
3579
|
+
._chevron_c2hqd_321 {
|
|
3580
3580
|
width: 24px;
|
|
3581
3581
|
height: 24px;
|
|
3582
3582
|
color: rgba(255, 255, 255, 0.54);
|
|
3583
|
-
animation:
|
|
3583
|
+
animation: _bob_c2hqd_1 1.8s ease-in-out infinite;
|
|
3584
3584
|
}
|
|
3585
|
-
@keyframes
|
|
3585
|
+
@keyframes _bob_c2hqd_1 {
|
|
3586
3586
|
0%, 100% {
|
|
3587
3587
|
transform: translateY(0);
|
|
3588
3588
|
}
|
|
@@ -3590,7 +3590,7 @@
|
|
|
3590
3590
|
transform: translateY(4px);
|
|
3591
3591
|
}
|
|
3592
3592
|
}
|
|
3593
|
-
.
|
|
3593
|
+
._overlay_c2hqd_11 {
|
|
3594
3594
|
position: absolute;
|
|
3595
3595
|
inset: 0;
|
|
3596
3596
|
z-index: 1;
|
|
@@ -3607,25 +3607,25 @@
|
|
|
3607
3607
|
padding: 0 24px 24px;
|
|
3608
3608
|
padding-bottom: calc(24px + 100lvh - 100dvh);
|
|
3609
3609
|
}
|
|
3610
|
-
.
|
|
3610
|
+
._copy_c2hqd_356 {
|
|
3611
3611
|
display: flex;
|
|
3612
3612
|
flex-direction: column;
|
|
3613
3613
|
gap: 8px;
|
|
3614
3614
|
}
|
|
3615
|
-
.
|
|
3615
|
+
._title_c2hqd_361 {
|
|
3616
3616
|
margin: 0;
|
|
3617
3617
|
font-size: 32px;
|
|
3618
3618
|
line-height: 1.2;
|
|
3619
3619
|
font-weight: 700;
|
|
3620
3620
|
color: #f9fafa;
|
|
3621
3621
|
}
|
|
3622
|
-
.
|
|
3622
|
+
._subtitle_c2hqd_368 {
|
|
3623
3623
|
margin: 0;
|
|
3624
3624
|
font-size: 16px;
|
|
3625
3625
|
line-height: 1.55;
|
|
3626
3626
|
color: #f9fafa;
|
|
3627
3627
|
}
|
|
3628
|
-
.
|
|
3628
|
+
._cta_c2hqd_374 {
|
|
3629
3629
|
display: inline-flex;
|
|
3630
3630
|
align-items: center;
|
|
3631
3631
|
justify-content: center;
|
|
@@ -3639,19 +3639,19 @@
|
|
|
3639
3639
|
font-weight: 700;
|
|
3640
3640
|
text-decoration: none;
|
|
3641
3641
|
}
|
|
3642
|
-
.
|
|
3642
|
+
._cta_c2hqd_374::after {
|
|
3643
3643
|
content: "";
|
|
3644
3644
|
position: absolute;
|
|
3645
3645
|
inset: 0;
|
|
3646
3646
|
}
|
|
3647
|
-
.
|
|
3647
|
+
._cta_c2hqd_374:active {
|
|
3648
3648
|
background: rgba(249, 250, 250, 0.12);
|
|
3649
3649
|
}
|
|
3650
|
-
.
|
|
3650
|
+
._cta_c2hqd_374:focus-visible {
|
|
3651
3651
|
outline: none;
|
|
3652
3652
|
box-shadow: var(--focus-ring);
|
|
3653
3653
|
}
|
|
3654
|
-
.
|
|
3654
|
+
._mosaic_c2hqd_418 {
|
|
3655
3655
|
background: #080e12;
|
|
3656
3656
|
}
|
|
3657
3657
|
._header_8o3d7_25 {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nok-integration/storefront-react",
|
|
3
|
-
"version": "0.19.
|
|
3
|
+
"version": "0.19.41",
|
|
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
|
"publishConfig": {
|