@nok-integration/storefront-react 0.19.6 → 0.19.7

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.d.ts CHANGED
@@ -2503,6 +2503,7 @@ declare function createClient(options: ClientOptions): {
2503
2503
  cta: string;
2504
2504
  image?: string | undefined;
2505
2505
  target?: string | undefined;
2506
+ focal_y?: number | undefined;
2506
2507
  }[];
2507
2508
  }>;
2508
2509
  };
package/dist/index.mjs CHANGED
@@ -4391,7 +4391,8 @@ function requireContent() {
4391
4391
  subtitle: zod_1.z.string(),
4392
4392
  cta: zod_1.z.string().min(1),
4393
4393
  target: zod_1.z.string().min(1).optional(),
4394
- image: zod_1.z.string().min(1).optional()
4394
+ image: zod_1.z.string().min(1).optional(),
4395
+ focal_y: zod_1.z.number().int().min(0).max(100).optional()
4395
4396
  });
4396
4397
  exports.HomeContent = zod_1.z.object({
4397
4398
  slides: zod_1.z.array(exports.HomeSlide)
@@ -4599,7 +4600,7 @@ function requireOrders() {
4599
4600
  last4: zod_1.z.string().regex(/^\d{4}$/).optional()
4600
4601
  });
4601
4602
  exports.OrderPlacedRequest = exports.OrderEventEnvelope.extend({
4602
- order_ref: ids_1.OrderRef,
4603
+ order_ref: ids_1.OrderRef.optional(),
4603
4604
  placed_at: common_1.Timestamp,
4604
4605
  currency: money_1.Currency,
4605
4606
  customer: exports.OrderCustomer,
@@ -10563,24 +10564,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
10563
10564
  }
10564
10565
  return unavailable;
10565
10566
  }
10566
- const showcase = "_showcase_12z2a_40";
10567
- const panel = "_panel_12z2a_59";
10568
- const image = "_image_12z2a_69";
10569
- const heroImageBox = "_heroImageBox_12z2a_117";
10570
- const hero = "_hero_12z2a_117";
10571
- const heroContent = "_heroContent_12z2a_188";
10572
- const heroText = "_heroText_12z2a_205";
10573
- const logo = "_logo_12z2a_214";
10574
- const heroTitle = "_heroTitle_12z2a_234";
10575
- const heroSub = "_heroSub_12z2a_258";
10576
- const swipe = "_swipe_12z2a_271";
10577
- const swipeLabel = "_swipeLabel_12z2a_279";
10578
- const chevron$1 = "_chevron_12z2a_285";
10579
- const overlay$1 = "_overlay_12z2a_302";
10580
- const copy = "_copy_12z2a_313";
10581
- const title$2 = "_title_12z2a_318";
10582
- const subtitle$1 = "_subtitle_12z2a_325";
10583
- const cta = "_cta_12z2a_331";
10567
+ const showcase = "_showcase_1y51o_40";
10568
+ const panel = "_panel_1y51o_59";
10569
+ const image = "_image_1y51o_88";
10570
+ const heroImageBox = "_heroImageBox_1y51o_136";
10571
+ const hero = "_hero_1y51o_136";
10572
+ const heroContent = "_heroContent_1y51o_207";
10573
+ const heroText = "_heroText_1y51o_224";
10574
+ const logo = "_logo_1y51o_233";
10575
+ const heroTitle = "_heroTitle_1y51o_253";
10576
+ const heroSub = "_heroSub_1y51o_277";
10577
+ const swipe = "_swipe_1y51o_290";
10578
+ const swipeLabel = "_swipeLabel_1y51o_298";
10579
+ const chevron$1 = "_chevron_1y51o_304";
10580
+ const overlay$1 = "_overlay_1y51o_321";
10581
+ const copy = "_copy_1y51o_332";
10582
+ const title$2 = "_title_1y51o_337";
10583
+ const subtitle$1 = "_subtitle_1y51o_344";
10584
+ const cta = "_cta_1y51o_350";
10584
10585
  const styles$2 = {
10585
10586
  showcase,
10586
10587
  panel,
@@ -10677,6 +10678,11 @@ function CategoryPanel({ panel: panel2 }) {
10677
10678
  return jsxs("section", {
10678
10679
  className: styles$2.panel,
10679
10680
  "aria-label": panel2.title,
10681
+ ...panel2.focalY === void 0 ? {} : {
10682
+ style: {
10683
+ "--slide-focal-y": `${panel2.focalY}%`
10684
+ }
10685
+ },
10680
10686
  children: [jsx(ShopImage, {
10681
10687
  src: panel2.image,
10682
10688
  alt: "",
@@ -10725,7 +10731,10 @@ function useSlides() {
10725
10731
  subtitle: s.subtitle,
10726
10732
  cta: s.cta,
10727
10733
  to: s.target ? `/category/${s.target}` : "/",
10728
- image: s.image ?? ""
10734
+ image: s.image ?? "",
10735
+ ...s.focal_y === void 0 ? {} : {
10736
+ focalY: s.focal_y
10737
+ }
10729
10738
  })));
10730
10739
  }).catch(() => {
10731
10740
  });
@@ -4391,7 +4391,8 @@ function requireContent() {
4391
4391
  subtitle: zod_1.z.string(),
4392
4392
  cta: zod_1.z.string().min(1),
4393
4393
  target: zod_1.z.string().min(1).optional(),
4394
- image: zod_1.z.string().min(1).optional()
4394
+ image: zod_1.z.string().min(1).optional(),
4395
+ focal_y: zod_1.z.number().int().min(0).max(100).optional()
4395
4396
  });
4396
4397
  exports.HomeContent = zod_1.z.object({
4397
4398
  slides: zod_1.z.array(exports.HomeSlide)
@@ -4599,7 +4600,7 @@ function requireOrders() {
4599
4600
  last4: zod_1.z.string().regex(/^\d{4}$/).optional()
4600
4601
  });
4601
4602
  exports.OrderPlacedRequest = exports.OrderEventEnvelope.extend({
4602
- order_ref: ids_1.OrderRef,
4603
+ order_ref: ids_1.OrderRef.optional(),
4603
4604
  placed_at: common_1.Timestamp,
4604
4605
  currency: money_1.Currency,
4605
4606
  customer: exports.OrderCustomer,
@@ -10563,24 +10564,24 @@ function ProductView({ sku, initialData, showRecommendations = true, onNotFound
10563
10564
  }
10564
10565
  return unavailable;
10565
10566
  }
10566
- const showcase = "_showcase_12z2a_40";
10567
- const panel = "_panel_12z2a_59";
10568
- const image = "_image_12z2a_69";
10569
- const heroImageBox = "_heroImageBox_12z2a_117";
10570
- const hero = "_hero_12z2a_117";
10571
- const heroContent = "_heroContent_12z2a_188";
10572
- const heroText = "_heroText_12z2a_205";
10573
- const logo = "_logo_12z2a_214";
10574
- const heroTitle = "_heroTitle_12z2a_234";
10575
- const heroSub = "_heroSub_12z2a_258";
10576
- const swipe = "_swipe_12z2a_271";
10577
- const swipeLabel = "_swipeLabel_12z2a_279";
10578
- const chevron$1 = "_chevron_12z2a_285";
10579
- const overlay$1 = "_overlay_12z2a_302";
10580
- const copy = "_copy_12z2a_313";
10581
- const title$2 = "_title_12z2a_318";
10582
- const subtitle$1 = "_subtitle_12z2a_325";
10583
- const cta = "_cta_12z2a_331";
10567
+ const showcase = "_showcase_1y51o_40";
10568
+ const panel = "_panel_1y51o_59";
10569
+ const image = "_image_1y51o_88";
10570
+ const heroImageBox = "_heroImageBox_1y51o_136";
10571
+ const hero = "_hero_1y51o_136";
10572
+ const heroContent = "_heroContent_1y51o_207";
10573
+ const heroText = "_heroText_1y51o_224";
10574
+ const logo = "_logo_1y51o_233";
10575
+ const heroTitle = "_heroTitle_1y51o_253";
10576
+ const heroSub = "_heroSub_1y51o_277";
10577
+ const swipe = "_swipe_1y51o_290";
10578
+ const swipeLabel = "_swipeLabel_1y51o_298";
10579
+ const chevron$1 = "_chevron_1y51o_304";
10580
+ const overlay$1 = "_overlay_1y51o_321";
10581
+ const copy = "_copy_1y51o_332";
10582
+ const title$2 = "_title_1y51o_337";
10583
+ const subtitle$1 = "_subtitle_1y51o_344";
10584
+ const cta = "_cta_1y51o_350";
10584
10585
  const styles$2 = {
10585
10586
  showcase,
10586
10587
  panel,
@@ -10677,6 +10678,11 @@ function CategoryPanel({ panel: panel2 }) {
10677
10678
  return jsxs("section", {
10678
10679
  className: styles$2.panel,
10679
10680
  "aria-label": panel2.title,
10681
+ ...panel2.focalY === void 0 ? {} : {
10682
+ style: {
10683
+ "--slide-focal-y": `${panel2.focalY}%`
10684
+ }
10685
+ },
10680
10686
  children: [jsx(ShopImage, {
10681
10687
  src: panel2.image,
10682
10688
  alt: "",
@@ -10725,7 +10731,10 @@ function useSlides() {
10725
10731
  subtitle: s.subtitle,
10726
10732
  cta: s.cta,
10727
10733
  to: s.target ? `/category/${s.target}` : "/",
10728
- image: s.image ?? ""
10734
+ image: s.image ?? "",
10735
+ ...s.focal_y === void 0 ? {} : {
10736
+ focalY: s.focal_y
10737
+ }
10729
10738
  })));
10730
10739
  }).catch(() => {
10731
10740
  });
@@ -3390,7 +3390,7 @@
3390
3390
  column-gap: var(--space-12);
3391
3391
  row-gap: var(--space-24);
3392
3392
  }
3393
- ._showcase_12z2a_40 {
3393
+ ._showcase_1y51o_40 {
3394
3394
  height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3395
3395
  overflow-y: auto;
3396
3396
  scroll-snap-type: y mandatory;
@@ -3399,10 +3399,10 @@
3399
3399
  background: #080e12;
3400
3400
  scrollbar-width: none;
3401
3401
  }
3402
- ._showcase_12z2a_40::-webkit-scrollbar {
3402
+ ._showcase_1y51o_40::-webkit-scrollbar {
3403
3403
  display: none;
3404
3404
  }
3405
- ._panel_12z2a_59 {
3405
+ ._panel_1y51o_59 {
3406
3406
  position: relative;
3407
3407
  height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3408
3408
  scroll-snap-align: start;
@@ -3410,11 +3410,11 @@
3410
3410
  overflow: hidden;
3411
3411
  background: #080e12;
3412
3412
  }
3413
- ._image_12z2a_69 {
3413
+ ._image_1y51o_88 {
3414
3414
  object-fit: cover;
3415
- object-position: center;
3415
+ object-position: 50% var(--slide-focal-y, 50%);
3416
3416
  }
3417
- ._heroImageBox_12z2a_117 {
3417
+ ._heroImageBox_1y51o_136 {
3418
3418
  position: absolute;
3419
3419
  top: 31px;
3420
3420
  left: 0;
@@ -3422,7 +3422,7 @@
3422
3422
  aspect-ratio: 750 / 1348;
3423
3423
  overflow: hidden;
3424
3424
  }
3425
- ._hero_12z2a_117::after {
3425
+ ._hero_1y51o_136::after {
3426
3426
  content: "";
3427
3427
  position: absolute;
3428
3428
  inset: 0;
@@ -3437,10 +3437,10 @@
3437
3437
  rgba(8, 14, 18, 1) 90%);
3438
3438
  pointer-events: none;
3439
3439
  }
3440
- ._hero_12z2a_117 ._image_12z2a_69 {
3440
+ ._hero_1y51o_136 ._image_1y51o_88 {
3441
3441
  object-position: top;
3442
3442
  }
3443
- ._hero_12z2a_117 ._heroContent_12z2a_188 {
3443
+ ._hero_1y51o_136 ._heroContent_1y51o_207 {
3444
3444
  position: absolute;
3445
3445
  bottom: 0;
3446
3446
  left: 0;
@@ -3451,7 +3451,7 @@
3451
3451
  gap: 24px;
3452
3452
  align-items: stretch;
3453
3453
  }
3454
- ._heroText_12z2a_205 {
3454
+ ._heroText_1y51o_224 {
3455
3455
  display: flex;
3456
3456
  flex-direction: column;
3457
3457
  gap: 8px;
@@ -3459,11 +3459,11 @@
3459
3459
  padding: 0 24px;
3460
3460
  text-align: center;
3461
3461
  }
3462
- ._heroText_12z2a_205 ._logo_12z2a_214 {
3462
+ ._heroText_1y51o_224 ._logo_1y51o_233 {
3463
3463
  width: 48px;
3464
3464
  height: 48px;
3465
3465
  }
3466
- ._heroTitle_12z2a_234 {
3466
+ ._heroTitle_1y51o_253 {
3467
3467
  width: 100%;
3468
3468
  margin: 0;
3469
3469
  font-family:
@@ -3478,14 +3478,14 @@
3478
3478
  letter-spacing: -1.12px;
3479
3479
  color: #f9fafa;
3480
3480
  }
3481
- ._heroSub_12z2a_258 {
3481
+ ._heroSub_1y51o_277 {
3482
3482
  margin: 0;
3483
3483
  font-size: 16px;
3484
3484
  line-height: 1.55;
3485
3485
  color: #f9fafa;
3486
3486
  max-width: 327px;
3487
3487
  }
3488
- ._swipe_12z2a_271 {
3488
+ ._swipe_1y51o_290 {
3489
3489
  display: flex;
3490
3490
  flex-direction: column;
3491
3491
  align-items: center;
@@ -3493,19 +3493,19 @@
3493
3493
  padding: 8px 0;
3494
3494
  background: #080e12;
3495
3495
  }
3496
- ._swipeLabel_12z2a_279 {
3496
+ ._swipeLabel_1y51o_298 {
3497
3497
  margin: 0;
3498
3498
  font-size: 14px;
3499
3499
  line-height: 1;
3500
3500
  color: rgba(255, 255, 255, 0.54);
3501
3501
  }
3502
- ._chevron_12z2a_285 {
3502
+ ._chevron_1y51o_304 {
3503
3503
  width: 24px;
3504
3504
  height: 24px;
3505
3505
  color: rgba(255, 255, 255, 0.54);
3506
- animation: _bob_12z2a_1 1.8s ease-in-out infinite;
3506
+ animation: _bob_1y51o_1 1.8s ease-in-out infinite;
3507
3507
  }
3508
- @keyframes _bob_12z2a_1 {
3508
+ @keyframes _bob_1y51o_1 {
3509
3509
  0%, 100% {
3510
3510
  transform: translateY(0);
3511
3511
  }
@@ -3513,7 +3513,7 @@
3513
3513
  transform: translateY(4px);
3514
3514
  }
3515
3515
  }
3516
- ._overlay_12z2a_302 {
3516
+ ._overlay_1y51o_321 {
3517
3517
  position: absolute;
3518
3518
  inset: 0;
3519
3519
  z-index: 1;
@@ -3524,25 +3524,25 @@
3524
3524
  align-items: flex-start;
3525
3525
  padding: 0 24px 24px;
3526
3526
  }
3527
- ._copy_12z2a_313 {
3527
+ ._copy_1y51o_332 {
3528
3528
  display: flex;
3529
3529
  flex-direction: column;
3530
3530
  gap: 8px;
3531
3531
  }
3532
- ._title_12z2a_318 {
3532
+ ._title_1y51o_337 {
3533
3533
  margin: 0;
3534
3534
  font-size: 32px;
3535
3535
  line-height: 1.2;
3536
3536
  font-weight: 700;
3537
3537
  color: #f9fafa;
3538
3538
  }
3539
- ._subtitle_12z2a_325 {
3539
+ ._subtitle_1y51o_344 {
3540
3540
  margin: 0;
3541
3541
  font-size: 16px;
3542
3542
  line-height: 1.55;
3543
3543
  color: #f9fafa;
3544
3544
  }
3545
- ._cta_12z2a_331 {
3545
+ ._cta_1y51o_350 {
3546
3546
  display: inline-flex;
3547
3547
  align-items: center;
3548
3548
  justify-content: center;
@@ -3556,15 +3556,15 @@
3556
3556
  font-weight: 700;
3557
3557
  text-decoration: none;
3558
3558
  }
3559
- ._cta_12z2a_331::after {
3559
+ ._cta_1y51o_350::after {
3560
3560
  content: "";
3561
3561
  position: absolute;
3562
3562
  inset: 0;
3563
3563
  }
3564
- ._cta_12z2a_331:active {
3564
+ ._cta_1y51o_350:active {
3565
3565
  background: rgba(249, 250, 250, 0.12);
3566
3566
  }
3567
- ._cta_12z2a_331:focus-visible {
3567
+ ._cta_1y51o_350:focus-visible {
3568
3568
  outline: none;
3569
3569
  box-shadow: var(--focus-ring);
3570
3570
  }
package/dist/styles.css CHANGED
@@ -3390,7 +3390,7 @@
3390
3390
  column-gap: var(--space-12);
3391
3391
  row-gap: var(--space-24);
3392
3392
  }
3393
- ._showcase_12z2a_40 {
3393
+ ._showcase_1y51o_40 {
3394
3394
  height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3395
3395
  overflow-y: auto;
3396
3396
  scroll-snap-type: y mandatory;
@@ -3399,10 +3399,10 @@
3399
3399
  background: #080e12;
3400
3400
  scrollbar-width: none;
3401
3401
  }
3402
- ._showcase_12z2a_40::-webkit-scrollbar {
3402
+ ._showcase_1y51o_40::-webkit-scrollbar {
3403
3403
  display: none;
3404
3404
  }
3405
- ._panel_12z2a_59 {
3405
+ ._panel_1y51o_59 {
3406
3406
  position: relative;
3407
3407
  height: calc(var(--showcase-vh, 100svh) - var(--showcase-top, 0px));
3408
3408
  scroll-snap-align: start;
@@ -3410,11 +3410,11 @@
3410
3410
  overflow: hidden;
3411
3411
  background: #080e12;
3412
3412
  }
3413
- ._image_12z2a_69 {
3413
+ ._image_1y51o_88 {
3414
3414
  object-fit: cover;
3415
- object-position: center;
3415
+ object-position: 50% var(--slide-focal-y, 50%);
3416
3416
  }
3417
- ._heroImageBox_12z2a_117 {
3417
+ ._heroImageBox_1y51o_136 {
3418
3418
  position: absolute;
3419
3419
  top: 31px;
3420
3420
  left: 0;
@@ -3422,7 +3422,7 @@
3422
3422
  aspect-ratio: 750 / 1348;
3423
3423
  overflow: hidden;
3424
3424
  }
3425
- ._hero_12z2a_117::after {
3425
+ ._hero_1y51o_136::after {
3426
3426
  content: "";
3427
3427
  position: absolute;
3428
3428
  inset: 0;
@@ -3437,10 +3437,10 @@
3437
3437
  rgba(8, 14, 18, 1) 90%);
3438
3438
  pointer-events: none;
3439
3439
  }
3440
- ._hero_12z2a_117 ._image_12z2a_69 {
3440
+ ._hero_1y51o_136 ._image_1y51o_88 {
3441
3441
  object-position: top;
3442
3442
  }
3443
- ._hero_12z2a_117 ._heroContent_12z2a_188 {
3443
+ ._hero_1y51o_136 ._heroContent_1y51o_207 {
3444
3444
  position: absolute;
3445
3445
  bottom: 0;
3446
3446
  left: 0;
@@ -3451,7 +3451,7 @@
3451
3451
  gap: 24px;
3452
3452
  align-items: stretch;
3453
3453
  }
3454
- ._heroText_12z2a_205 {
3454
+ ._heroText_1y51o_224 {
3455
3455
  display: flex;
3456
3456
  flex-direction: column;
3457
3457
  gap: 8px;
@@ -3459,11 +3459,11 @@
3459
3459
  padding: 0 24px;
3460
3460
  text-align: center;
3461
3461
  }
3462
- ._heroText_12z2a_205 ._logo_12z2a_214 {
3462
+ ._heroText_1y51o_224 ._logo_1y51o_233 {
3463
3463
  width: 48px;
3464
3464
  height: 48px;
3465
3465
  }
3466
- ._heroTitle_12z2a_234 {
3466
+ ._heroTitle_1y51o_253 {
3467
3467
  width: 100%;
3468
3468
  margin: 0;
3469
3469
  font-family:
@@ -3478,14 +3478,14 @@
3478
3478
  letter-spacing: -1.12px;
3479
3479
  color: #f9fafa;
3480
3480
  }
3481
- ._heroSub_12z2a_258 {
3481
+ ._heroSub_1y51o_277 {
3482
3482
  margin: 0;
3483
3483
  font-size: 16px;
3484
3484
  line-height: 1.55;
3485
3485
  color: #f9fafa;
3486
3486
  max-width: 327px;
3487
3487
  }
3488
- ._swipe_12z2a_271 {
3488
+ ._swipe_1y51o_290 {
3489
3489
  display: flex;
3490
3490
  flex-direction: column;
3491
3491
  align-items: center;
@@ -3493,19 +3493,19 @@
3493
3493
  padding: 8px 0;
3494
3494
  background: #080e12;
3495
3495
  }
3496
- ._swipeLabel_12z2a_279 {
3496
+ ._swipeLabel_1y51o_298 {
3497
3497
  margin: 0;
3498
3498
  font-size: 14px;
3499
3499
  line-height: 1;
3500
3500
  color: rgba(255, 255, 255, 0.54);
3501
3501
  }
3502
- ._chevron_12z2a_285 {
3502
+ ._chevron_1y51o_304 {
3503
3503
  width: 24px;
3504
3504
  height: 24px;
3505
3505
  color: rgba(255, 255, 255, 0.54);
3506
- animation: _bob_12z2a_1 1.8s ease-in-out infinite;
3506
+ animation: _bob_1y51o_1 1.8s ease-in-out infinite;
3507
3507
  }
3508
- @keyframes _bob_12z2a_1 {
3508
+ @keyframes _bob_1y51o_1 {
3509
3509
  0%, 100% {
3510
3510
  transform: translateY(0);
3511
3511
  }
@@ -3513,7 +3513,7 @@
3513
3513
  transform: translateY(4px);
3514
3514
  }
3515
3515
  }
3516
- ._overlay_12z2a_302 {
3516
+ ._overlay_1y51o_321 {
3517
3517
  position: absolute;
3518
3518
  inset: 0;
3519
3519
  z-index: 1;
@@ -3524,25 +3524,25 @@
3524
3524
  align-items: flex-start;
3525
3525
  padding: 0 24px 24px;
3526
3526
  }
3527
- ._copy_12z2a_313 {
3527
+ ._copy_1y51o_332 {
3528
3528
  display: flex;
3529
3529
  flex-direction: column;
3530
3530
  gap: 8px;
3531
3531
  }
3532
- ._title_12z2a_318 {
3532
+ ._title_1y51o_337 {
3533
3533
  margin: 0;
3534
3534
  font-size: 32px;
3535
3535
  line-height: 1.2;
3536
3536
  font-weight: 700;
3537
3537
  color: #f9fafa;
3538
3538
  }
3539
- ._subtitle_12z2a_325 {
3539
+ ._subtitle_1y51o_344 {
3540
3540
  margin: 0;
3541
3541
  font-size: 16px;
3542
3542
  line-height: 1.55;
3543
3543
  color: #f9fafa;
3544
3544
  }
3545
- ._cta_12z2a_331 {
3545
+ ._cta_1y51o_350 {
3546
3546
  display: inline-flex;
3547
3547
  align-items: center;
3548
3548
  justify-content: center;
@@ -3556,15 +3556,15 @@
3556
3556
  font-weight: 700;
3557
3557
  text-decoration: none;
3558
3558
  }
3559
- ._cta_12z2a_331::after {
3559
+ ._cta_1y51o_350::after {
3560
3560
  content: "";
3561
3561
  position: absolute;
3562
3562
  inset: 0;
3563
3563
  }
3564
- ._cta_12z2a_331:active {
3564
+ ._cta_1y51o_350:active {
3565
3565
  background: rgba(249, 250, 250, 0.12);
3566
3566
  }
3567
- ._cta_12z2a_331:focus-visible {
3567
+ ._cta_1y51o_350:focus-visible {
3568
3568
  outline: none;
3569
3569
  box-shadow: var(--focus-ring);
3570
3570
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nok-integration/storefront-react",
3
- "version": "0.19.6",
3
+ "version": "0.19.7",
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": {