@nok-integration/storefront-react 0.19.46 → 0.19.48
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 +25 -25
- package/dist/standalone/storefront.mjs +25 -25
- package/dist/standalone/styles.css +26 -23
- package/dist/styles.css +26 -23
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5108,6 +5108,12 @@ function requireClient() {
|
|
|
5108
5108
|
return client;
|
|
5109
5109
|
}
|
|
5110
5110
|
var clientExports = requireClient();
|
|
5111
|
+
function anchorToTop() {
|
|
5112
|
+
if (typeof window === "undefined") return;
|
|
5113
|
+
const top2 = () => window.scrollTo(0, 0);
|
|
5114
|
+
top2();
|
|
5115
|
+
if (typeof window.requestAnimationFrame === "function") window.requestAnimationFrame(top2);
|
|
5116
|
+
}
|
|
5111
5117
|
function resolveAssetUrl(src, base) {
|
|
5112
5118
|
if (!base) return src;
|
|
5113
5119
|
if (!src.startsWith("/") || src.startsWith("//")) return src;
|
|
@@ -5301,6 +5307,7 @@ function DaznShopProvider({ children, ...config }) {
|
|
|
5301
5307
|
to
|
|
5302
5308
|
});
|
|
5303
5309
|
hostNavigate?.(to);
|
|
5310
|
+
anchorToTop();
|
|
5304
5311
|
}, [emit, hostNavigate]);
|
|
5305
5312
|
const announced = useRef(false);
|
|
5306
5313
|
useEffect(() => {
|
|
@@ -5395,18 +5402,11 @@ function ShopLink({ to, children, ...rest }) {
|
|
|
5395
5402
|
}
|
|
5396
5403
|
event.preventDefault();
|
|
5397
5404
|
navigate(to);
|
|
5398
|
-
anchorToTop();
|
|
5399
5405
|
},
|
|
5400
5406
|
...rest,
|
|
5401
5407
|
children
|
|
5402
5408
|
});
|
|
5403
5409
|
}
|
|
5404
|
-
function anchorToTop() {
|
|
5405
|
-
if (typeof window === "undefined") return;
|
|
5406
|
-
const top2 = () => window.scrollTo(0, 0);
|
|
5407
|
-
top2();
|
|
5408
|
-
if (typeof window.requestAnimationFrame === "function") window.requestAnimationFrame(top2);
|
|
5409
|
-
}
|
|
5410
5410
|
function ShopImage({ src, alt, fill: fill2 = false, width, height, sizes, className, style, priority = false }) {
|
|
5411
5411
|
const assetUrl = useAssetUrl();
|
|
5412
5412
|
const fillStyle = fill2 ? {
|
|
@@ -10969,24 +10969,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
|
|
|
10969
10969
|
})
|
|
10970
10970
|
});
|
|
10971
10971
|
}
|
|
10972
|
-
const showcase = "
|
|
10973
|
-
const panel = "
|
|
10974
|
-
const image = "
|
|
10975
|
-
const hero = "
|
|
10976
|
-
const heroContent = "
|
|
10977
|
-
const heroText = "
|
|
10978
|
-
const logo = "
|
|
10979
|
-
const heroTitle = "
|
|
10980
|
-
const heroSub = "
|
|
10981
|
-
const swipe = "
|
|
10982
|
-
const swipeLabel = "
|
|
10983
|
-
const chevron$1 = "
|
|
10984
|
-
const overlay$1 = "
|
|
10985
|
-
const copy = "
|
|
10986
|
-
const title$2 = "
|
|
10987
|
-
const subtitle$1 = "
|
|
10988
|
-
const cta = "
|
|
10989
|
-
const mosaic = "
|
|
10972
|
+
const showcase = "_showcase_12gts_14";
|
|
10973
|
+
const panel = "_panel_12gts_19";
|
|
10974
|
+
const image = "_image_12gts_65";
|
|
10975
|
+
const hero = "_hero_12gts_105";
|
|
10976
|
+
const heroContent = "_heroContent_12gts_190";
|
|
10977
|
+
const heroText = "_heroText_12gts_214";
|
|
10978
|
+
const logo = "_logo_12gts_223";
|
|
10979
|
+
const heroTitle = "_heroTitle_12gts_243";
|
|
10980
|
+
const heroSub = "_heroSub_12gts_267";
|
|
10981
|
+
const swipe = "_swipe_12gts_286";
|
|
10982
|
+
const swipeLabel = "_swipeLabel_12gts_293";
|
|
10983
|
+
const chevron$1 = "_chevron_12gts_299";
|
|
10984
|
+
const overlay$1 = "_overlay_12gts_11";
|
|
10985
|
+
const copy = "_copy_12gts_334";
|
|
10986
|
+
const title$2 = "_title_12gts_339";
|
|
10987
|
+
const subtitle$1 = "_subtitle_12gts_346";
|
|
10988
|
+
const cta = "_cta_12gts_352";
|
|
10989
|
+
const mosaic = "_mosaic_12gts_396";
|
|
10990
10990
|
const styles$2 = {
|
|
10991
10991
|
showcase,
|
|
10992
10992
|
panel,
|
|
@@ -5108,6 +5108,12 @@ function requireClient() {
|
|
|
5108
5108
|
return client;
|
|
5109
5109
|
}
|
|
5110
5110
|
var clientExports = requireClient();
|
|
5111
|
+
function anchorToTop() {
|
|
5112
|
+
if (typeof window === "undefined") return;
|
|
5113
|
+
const top2 = () => window.scrollTo(0, 0);
|
|
5114
|
+
top2();
|
|
5115
|
+
if (typeof window.requestAnimationFrame === "function") window.requestAnimationFrame(top2);
|
|
5116
|
+
}
|
|
5111
5117
|
function resolveAssetUrl(src, base) {
|
|
5112
5118
|
if (!base) return src;
|
|
5113
5119
|
if (!src.startsWith("/") || src.startsWith("//")) return src;
|
|
@@ -5301,6 +5307,7 @@ function DaznShopProvider({ children, ...config }) {
|
|
|
5301
5307
|
to
|
|
5302
5308
|
});
|
|
5303
5309
|
hostNavigate?.(to);
|
|
5310
|
+
anchorToTop();
|
|
5304
5311
|
}, [emit, hostNavigate]);
|
|
5305
5312
|
const announced = useRef(false);
|
|
5306
5313
|
useEffect(() => {
|
|
@@ -5395,18 +5402,11 @@ function ShopLink({ to, children, ...rest }) {
|
|
|
5395
5402
|
}
|
|
5396
5403
|
event.preventDefault();
|
|
5397
5404
|
navigate(to);
|
|
5398
|
-
anchorToTop();
|
|
5399
5405
|
},
|
|
5400
5406
|
...rest,
|
|
5401
5407
|
children
|
|
5402
5408
|
});
|
|
5403
5409
|
}
|
|
5404
|
-
function anchorToTop() {
|
|
5405
|
-
if (typeof window === "undefined") return;
|
|
5406
|
-
const top2 = () => window.scrollTo(0, 0);
|
|
5407
|
-
top2();
|
|
5408
|
-
if (typeof window.requestAnimationFrame === "function") window.requestAnimationFrame(top2);
|
|
5409
|
-
}
|
|
5410
5410
|
function ShopImage({ src, alt, fill: fill2 = false, width, height, sizes, className, style, priority = false }) {
|
|
5411
5411
|
const assetUrl = useAssetUrl();
|
|
5412
5412
|
const fillStyle = fill2 ? {
|
|
@@ -10969,24 +10969,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
|
|
|
10969
10969
|
})
|
|
10970
10970
|
});
|
|
10971
10971
|
}
|
|
10972
|
-
const showcase = "
|
|
10973
|
-
const panel = "
|
|
10974
|
-
const image = "
|
|
10975
|
-
const hero = "
|
|
10976
|
-
const heroContent = "
|
|
10977
|
-
const heroText = "
|
|
10978
|
-
const logo = "
|
|
10979
|
-
const heroTitle = "
|
|
10980
|
-
const heroSub = "
|
|
10981
|
-
const swipe = "
|
|
10982
|
-
const swipeLabel = "
|
|
10983
|
-
const chevron$1 = "
|
|
10984
|
-
const overlay$1 = "
|
|
10985
|
-
const copy = "
|
|
10986
|
-
const title$2 = "
|
|
10987
|
-
const subtitle$1 = "
|
|
10988
|
-
const cta = "
|
|
10989
|
-
const mosaic = "
|
|
10972
|
+
const showcase = "_showcase_12gts_14";
|
|
10973
|
+
const panel = "_panel_12gts_19";
|
|
10974
|
+
const image = "_image_12gts_65";
|
|
10975
|
+
const hero = "_hero_12gts_105";
|
|
10976
|
+
const heroContent = "_heroContent_12gts_190";
|
|
10977
|
+
const heroText = "_heroText_12gts_214";
|
|
10978
|
+
const logo = "_logo_12gts_223";
|
|
10979
|
+
const heroTitle = "_heroTitle_12gts_243";
|
|
10980
|
+
const heroSub = "_heroSub_12gts_267";
|
|
10981
|
+
const swipe = "_swipe_12gts_286";
|
|
10982
|
+
const swipeLabel = "_swipeLabel_12gts_293";
|
|
10983
|
+
const chevron$1 = "_chevron_12gts_299";
|
|
10984
|
+
const overlay$1 = "_overlay_12gts_11";
|
|
10985
|
+
const copy = "_copy_12gts_334";
|
|
10986
|
+
const title$2 = "_title_12gts_339";
|
|
10987
|
+
const subtitle$1 = "_subtitle_12gts_346";
|
|
10988
|
+
const cta = "_cta_12gts_352";
|
|
10989
|
+
const mosaic = "_mosaic_12gts_396";
|
|
10990
10990
|
const styles$2 = {
|
|
10991
10991
|
showcase,
|
|
10992
10992
|
panel,
|
|
@@ -3487,11 +3487,11 @@
|
|
|
3487
3487
|
column-gap: var(--space-12);
|
|
3488
3488
|
row-gap: var(--space-12);
|
|
3489
3489
|
}
|
|
3490
|
-
.
|
|
3490
|
+
._showcase_12gts_14 {
|
|
3491
3491
|
--chrome-bleed: calc(3 * (100lvh - 100svh));
|
|
3492
3492
|
background: #080e12;
|
|
3493
3493
|
}
|
|
3494
|
-
.
|
|
3494
|
+
._panel_12gts_19 {
|
|
3495
3495
|
position: relative;
|
|
3496
3496
|
height: 100lvh;
|
|
3497
3497
|
height: calc(100lvh + var(--chrome-bleed, 0px));
|
|
@@ -3500,11 +3500,14 @@
|
|
|
3500
3500
|
overflow: hidden;
|
|
3501
3501
|
background: #080e12;
|
|
3502
3502
|
}
|
|
3503
|
-
.
|
|
3503
|
+
._panel_12gts_19:last-child {
|
|
3504
|
+
height: 100dvh;
|
|
3505
|
+
}
|
|
3506
|
+
._image_12gts_65 {
|
|
3504
3507
|
object-fit: cover;
|
|
3505
3508
|
object-position: 50% var(--slide-focal-y, 50%);
|
|
3506
3509
|
}
|
|
3507
|
-
.
|
|
3510
|
+
._hero_12gts_105::after {
|
|
3508
3511
|
content: "";
|
|
3509
3512
|
position: absolute;
|
|
3510
3513
|
inset: 0;
|
|
@@ -3519,7 +3522,7 @@
|
|
|
3519
3522
|
rgba(8, 14, 18, 0) calc(520px + var(--chrome-bleed, 0px)));
|
|
3520
3523
|
pointer-events: none;
|
|
3521
3524
|
}
|
|
3522
|
-
.
|
|
3525
|
+
._hero_12gts_105 ._heroContent_12gts_190 {
|
|
3523
3526
|
position: absolute;
|
|
3524
3527
|
bottom: 32px;
|
|
3525
3528
|
bottom: calc(32px + var(--chrome-bleed, 0px) + 100lvh - 100dvh);
|
|
@@ -3531,7 +3534,7 @@
|
|
|
3531
3534
|
gap: 24px;
|
|
3532
3535
|
align-items: stretch;
|
|
3533
3536
|
}
|
|
3534
|
-
.
|
|
3537
|
+
._heroText_12gts_214 {
|
|
3535
3538
|
display: flex;
|
|
3536
3539
|
flex-direction: column;
|
|
3537
3540
|
gap: 8px;
|
|
@@ -3539,11 +3542,11 @@
|
|
|
3539
3542
|
padding: 0 24px;
|
|
3540
3543
|
text-align: center;
|
|
3541
3544
|
}
|
|
3542
|
-
.
|
|
3545
|
+
._heroText_12gts_214 ._logo_12gts_223 {
|
|
3543
3546
|
width: 48px;
|
|
3544
3547
|
height: 48px;
|
|
3545
3548
|
}
|
|
3546
|
-
.
|
|
3549
|
+
._heroTitle_12gts_243 {
|
|
3547
3550
|
width: 100%;
|
|
3548
3551
|
margin: 0;
|
|
3549
3552
|
font-family:
|
|
@@ -3558,33 +3561,33 @@
|
|
|
3558
3561
|
letter-spacing: -1.12px;
|
|
3559
3562
|
color: #f9fafa;
|
|
3560
3563
|
}
|
|
3561
|
-
.
|
|
3564
|
+
._heroSub_12gts_267 {
|
|
3562
3565
|
margin: 0;
|
|
3563
3566
|
font-size: 16px;
|
|
3564
3567
|
line-height: 1.55;
|
|
3565
3568
|
color: #f9fafa;
|
|
3566
3569
|
max-width: 327px;
|
|
3567
3570
|
}
|
|
3568
|
-
.
|
|
3571
|
+
._swipe_12gts_286 {
|
|
3569
3572
|
display: flex;
|
|
3570
3573
|
flex-direction: column;
|
|
3571
3574
|
align-items: center;
|
|
3572
3575
|
gap: 6px;
|
|
3573
3576
|
padding: 8px 0;
|
|
3574
3577
|
}
|
|
3575
|
-
.
|
|
3578
|
+
._swipeLabel_12gts_293 {
|
|
3576
3579
|
margin: 0;
|
|
3577
3580
|
font-size: 14px;
|
|
3578
3581
|
line-height: 1;
|
|
3579
3582
|
color: rgba(255, 255, 255, 0.54);
|
|
3580
3583
|
}
|
|
3581
|
-
.
|
|
3584
|
+
._chevron_12gts_299 {
|
|
3582
3585
|
width: 24px;
|
|
3583
3586
|
height: 24px;
|
|
3584
3587
|
color: rgba(255, 255, 255, 0.54);
|
|
3585
|
-
animation:
|
|
3588
|
+
animation: _bob_12gts_1 1.8s ease-in-out infinite;
|
|
3586
3589
|
}
|
|
3587
|
-
@keyframes
|
|
3590
|
+
@keyframes _bob_12gts_1 {
|
|
3588
3591
|
0%, 100% {
|
|
3589
3592
|
transform: translateY(0);
|
|
3590
3593
|
}
|
|
@@ -3592,7 +3595,7 @@
|
|
|
3592
3595
|
transform: translateY(4px);
|
|
3593
3596
|
}
|
|
3594
3597
|
}
|
|
3595
|
-
.
|
|
3598
|
+
._overlay_12gts_11 {
|
|
3596
3599
|
position: absolute;
|
|
3597
3600
|
inset: 0;
|
|
3598
3601
|
z-index: 1;
|
|
@@ -3609,25 +3612,25 @@
|
|
|
3609
3612
|
padding: 0 24px 24px;
|
|
3610
3613
|
padding-bottom: calc(24px + var(--chrome-bleed, 0px) + 100lvh - 100dvh);
|
|
3611
3614
|
}
|
|
3612
|
-
.
|
|
3615
|
+
._copy_12gts_334 {
|
|
3613
3616
|
display: flex;
|
|
3614
3617
|
flex-direction: column;
|
|
3615
3618
|
gap: 8px;
|
|
3616
3619
|
}
|
|
3617
|
-
.
|
|
3620
|
+
._title_12gts_339 {
|
|
3618
3621
|
margin: 0;
|
|
3619
3622
|
font-size: 32px;
|
|
3620
3623
|
line-height: 1.2;
|
|
3621
3624
|
font-weight: 700;
|
|
3622
3625
|
color: #f9fafa;
|
|
3623
3626
|
}
|
|
3624
|
-
.
|
|
3627
|
+
._subtitle_12gts_346 {
|
|
3625
3628
|
margin: 0;
|
|
3626
3629
|
font-size: 16px;
|
|
3627
3630
|
line-height: 1.55;
|
|
3628
3631
|
color: #f9fafa;
|
|
3629
3632
|
}
|
|
3630
|
-
.
|
|
3633
|
+
._cta_12gts_352 {
|
|
3631
3634
|
display: inline-flex;
|
|
3632
3635
|
align-items: center;
|
|
3633
3636
|
justify-content: center;
|
|
@@ -3641,19 +3644,19 @@
|
|
|
3641
3644
|
font-weight: 700;
|
|
3642
3645
|
text-decoration: none;
|
|
3643
3646
|
}
|
|
3644
|
-
.
|
|
3647
|
+
._cta_12gts_352::after {
|
|
3645
3648
|
content: "";
|
|
3646
3649
|
position: absolute;
|
|
3647
3650
|
inset: 0;
|
|
3648
3651
|
}
|
|
3649
|
-
.
|
|
3652
|
+
._cta_12gts_352:active {
|
|
3650
3653
|
background: rgba(249, 250, 250, 0.12);
|
|
3651
3654
|
}
|
|
3652
|
-
.
|
|
3655
|
+
._cta_12gts_352:focus-visible {
|
|
3653
3656
|
outline: none;
|
|
3654
3657
|
box-shadow: var(--focus-ring);
|
|
3655
3658
|
}
|
|
3656
|
-
.
|
|
3659
|
+
._mosaic_12gts_396 {
|
|
3657
3660
|
background: #080e12;
|
|
3658
3661
|
}
|
|
3659
3662
|
._header_r9jjq_14 {
|
package/dist/styles.css
CHANGED
|
@@ -3487,11 +3487,11 @@
|
|
|
3487
3487
|
column-gap: var(--space-12);
|
|
3488
3488
|
row-gap: var(--space-12);
|
|
3489
3489
|
}
|
|
3490
|
-
.
|
|
3490
|
+
._showcase_12gts_14 {
|
|
3491
3491
|
--chrome-bleed: calc(3 * (100lvh - 100svh));
|
|
3492
3492
|
background: #080e12;
|
|
3493
3493
|
}
|
|
3494
|
-
.
|
|
3494
|
+
._panel_12gts_19 {
|
|
3495
3495
|
position: relative;
|
|
3496
3496
|
height: 100lvh;
|
|
3497
3497
|
height: calc(100lvh + var(--chrome-bleed, 0px));
|
|
@@ -3500,11 +3500,14 @@
|
|
|
3500
3500
|
overflow: hidden;
|
|
3501
3501
|
background: #080e12;
|
|
3502
3502
|
}
|
|
3503
|
-
.
|
|
3503
|
+
._panel_12gts_19:last-child {
|
|
3504
|
+
height: 100dvh;
|
|
3505
|
+
}
|
|
3506
|
+
._image_12gts_65 {
|
|
3504
3507
|
object-fit: cover;
|
|
3505
3508
|
object-position: 50% var(--slide-focal-y, 50%);
|
|
3506
3509
|
}
|
|
3507
|
-
.
|
|
3510
|
+
._hero_12gts_105::after {
|
|
3508
3511
|
content: "";
|
|
3509
3512
|
position: absolute;
|
|
3510
3513
|
inset: 0;
|
|
@@ -3519,7 +3522,7 @@
|
|
|
3519
3522
|
rgba(8, 14, 18, 0) calc(520px + var(--chrome-bleed, 0px)));
|
|
3520
3523
|
pointer-events: none;
|
|
3521
3524
|
}
|
|
3522
|
-
.
|
|
3525
|
+
._hero_12gts_105 ._heroContent_12gts_190 {
|
|
3523
3526
|
position: absolute;
|
|
3524
3527
|
bottom: 32px;
|
|
3525
3528
|
bottom: calc(32px + var(--chrome-bleed, 0px) + 100lvh - 100dvh);
|
|
@@ -3531,7 +3534,7 @@
|
|
|
3531
3534
|
gap: 24px;
|
|
3532
3535
|
align-items: stretch;
|
|
3533
3536
|
}
|
|
3534
|
-
.
|
|
3537
|
+
._heroText_12gts_214 {
|
|
3535
3538
|
display: flex;
|
|
3536
3539
|
flex-direction: column;
|
|
3537
3540
|
gap: 8px;
|
|
@@ -3539,11 +3542,11 @@
|
|
|
3539
3542
|
padding: 0 24px;
|
|
3540
3543
|
text-align: center;
|
|
3541
3544
|
}
|
|
3542
|
-
.
|
|
3545
|
+
._heroText_12gts_214 ._logo_12gts_223 {
|
|
3543
3546
|
width: 48px;
|
|
3544
3547
|
height: 48px;
|
|
3545
3548
|
}
|
|
3546
|
-
.
|
|
3549
|
+
._heroTitle_12gts_243 {
|
|
3547
3550
|
width: 100%;
|
|
3548
3551
|
margin: 0;
|
|
3549
3552
|
font-family:
|
|
@@ -3558,33 +3561,33 @@
|
|
|
3558
3561
|
letter-spacing: -1.12px;
|
|
3559
3562
|
color: #f9fafa;
|
|
3560
3563
|
}
|
|
3561
|
-
.
|
|
3564
|
+
._heroSub_12gts_267 {
|
|
3562
3565
|
margin: 0;
|
|
3563
3566
|
font-size: 16px;
|
|
3564
3567
|
line-height: 1.55;
|
|
3565
3568
|
color: #f9fafa;
|
|
3566
3569
|
max-width: 327px;
|
|
3567
3570
|
}
|
|
3568
|
-
.
|
|
3571
|
+
._swipe_12gts_286 {
|
|
3569
3572
|
display: flex;
|
|
3570
3573
|
flex-direction: column;
|
|
3571
3574
|
align-items: center;
|
|
3572
3575
|
gap: 6px;
|
|
3573
3576
|
padding: 8px 0;
|
|
3574
3577
|
}
|
|
3575
|
-
.
|
|
3578
|
+
._swipeLabel_12gts_293 {
|
|
3576
3579
|
margin: 0;
|
|
3577
3580
|
font-size: 14px;
|
|
3578
3581
|
line-height: 1;
|
|
3579
3582
|
color: rgba(255, 255, 255, 0.54);
|
|
3580
3583
|
}
|
|
3581
|
-
.
|
|
3584
|
+
._chevron_12gts_299 {
|
|
3582
3585
|
width: 24px;
|
|
3583
3586
|
height: 24px;
|
|
3584
3587
|
color: rgba(255, 255, 255, 0.54);
|
|
3585
|
-
animation:
|
|
3588
|
+
animation: _bob_12gts_1 1.8s ease-in-out infinite;
|
|
3586
3589
|
}
|
|
3587
|
-
@keyframes
|
|
3590
|
+
@keyframes _bob_12gts_1 {
|
|
3588
3591
|
0%, 100% {
|
|
3589
3592
|
transform: translateY(0);
|
|
3590
3593
|
}
|
|
@@ -3592,7 +3595,7 @@
|
|
|
3592
3595
|
transform: translateY(4px);
|
|
3593
3596
|
}
|
|
3594
3597
|
}
|
|
3595
|
-
.
|
|
3598
|
+
._overlay_12gts_11 {
|
|
3596
3599
|
position: absolute;
|
|
3597
3600
|
inset: 0;
|
|
3598
3601
|
z-index: 1;
|
|
@@ -3609,25 +3612,25 @@
|
|
|
3609
3612
|
padding: 0 24px 24px;
|
|
3610
3613
|
padding-bottom: calc(24px + var(--chrome-bleed, 0px) + 100lvh - 100dvh);
|
|
3611
3614
|
}
|
|
3612
|
-
.
|
|
3615
|
+
._copy_12gts_334 {
|
|
3613
3616
|
display: flex;
|
|
3614
3617
|
flex-direction: column;
|
|
3615
3618
|
gap: 8px;
|
|
3616
3619
|
}
|
|
3617
|
-
.
|
|
3620
|
+
._title_12gts_339 {
|
|
3618
3621
|
margin: 0;
|
|
3619
3622
|
font-size: 32px;
|
|
3620
3623
|
line-height: 1.2;
|
|
3621
3624
|
font-weight: 700;
|
|
3622
3625
|
color: #f9fafa;
|
|
3623
3626
|
}
|
|
3624
|
-
.
|
|
3627
|
+
._subtitle_12gts_346 {
|
|
3625
3628
|
margin: 0;
|
|
3626
3629
|
font-size: 16px;
|
|
3627
3630
|
line-height: 1.55;
|
|
3628
3631
|
color: #f9fafa;
|
|
3629
3632
|
}
|
|
3630
|
-
.
|
|
3633
|
+
._cta_12gts_352 {
|
|
3631
3634
|
display: inline-flex;
|
|
3632
3635
|
align-items: center;
|
|
3633
3636
|
justify-content: center;
|
|
@@ -3641,19 +3644,19 @@
|
|
|
3641
3644
|
font-weight: 700;
|
|
3642
3645
|
text-decoration: none;
|
|
3643
3646
|
}
|
|
3644
|
-
.
|
|
3647
|
+
._cta_12gts_352::after {
|
|
3645
3648
|
content: "";
|
|
3646
3649
|
position: absolute;
|
|
3647
3650
|
inset: 0;
|
|
3648
3651
|
}
|
|
3649
|
-
.
|
|
3652
|
+
._cta_12gts_352:active {
|
|
3650
3653
|
background: rgba(249, 250, 250, 0.12);
|
|
3651
3654
|
}
|
|
3652
|
-
.
|
|
3655
|
+
._cta_12gts_352:focus-visible {
|
|
3653
3656
|
outline: none;
|
|
3654
3657
|
box-shadow: var(--focus-ring);
|
|
3655
3658
|
}
|
|
3656
|
-
.
|
|
3659
|
+
._mosaic_12gts_396 {
|
|
3657
3660
|
background: #080e12;
|
|
3658
3661
|
}
|
|
3659
3662
|
._header_r9jjq_14 {
|
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.48",
|
|
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",
|