@nok-integration/storefront-react 0.19.29 → 0.19.31

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
@@ -4341,6 +4341,15 @@ export declare interface OrderTrackingViewProps {
4341
4341
  * "Start a return" row is there for a fan whether you route it or not.
4342
4342
  */
4343
4343
  onStartReturn?: () => void;
4344
+ /**
4345
+ * Open an EXISTING return's progress on a route of your own.
4346
+ *
4347
+ * Optional, and optional in the way every handler here is: it customises where the row
4348
+ * goes, it does not decide whether the row is drawn. The rows follow `order.returns`
4349
+ * from the engine and nothing else. Omit this and the return opens in place, exactly as
4350
+ * starting one does.
4351
+ */
4352
+ onOpenReturn?: (returnRef: string) => void;
4344
4353
  /**
4345
4354
  * Called once the fan has confirmed a cancellation and the engine has accepted it,
4346
4355
  * with the order as it now stands. The screen redraws itself either way; this is for a
package/dist/index.mjs CHANGED
@@ -6810,16 +6810,16 @@ function useModalDialog(open, onClose, ref) {
6810
6810
  };
6811
6811
  }, [open, handleKeyDown, ref]);
6812
6812
  }
6813
- const scrim$5 = "_scrim_7on4q_8";
6814
- const sheet$3 = "_sheet_7on4q_20";
6815
- const body$6 = "_body_7on4q_32";
6816
- const title$l = "_title_7on4q_46";
6817
- const options$1 = "_options_7on4q_54";
6818
- const option$1 = "_option_7on4q_54";
6819
- const radio = "_radio_7on4q_88";
6820
- const label$1 = "_label_7on4q_118";
6821
- const footer$1 = "_footer_7on4q_127";
6822
- const error$1 = "_error_7on4q_135";
6813
+ const scrim$5 = "_scrim_1oaa3_8";
6814
+ const sheet$3 = "_sheet_1oaa3_20";
6815
+ const body$6 = "_body_1oaa3_32";
6816
+ const title$l = "_title_1oaa3_53";
6817
+ const options$1 = "_options_1oaa3_61";
6818
+ const option$1 = "_option_1oaa3_61";
6819
+ const radio = "_radio_1oaa3_95";
6820
+ const label$1 = "_label_1oaa3_125";
6821
+ const footer$1 = "_footer_1oaa3_134";
6822
+ const error$1 = "_error_1oaa3_142";
6823
6823
  const styles$D = {
6824
6824
  scrim: scrim$5,
6825
6825
  sheet: sheet$3,
@@ -7564,11 +7564,14 @@ function ChevronRight$1() {
7564
7564
  });
7565
7565
  }
7566
7566
  function OrderTrackingView(props) {
7567
- const [returning, setReturning] = useState(false);
7568
- if (returning) {
7567
+ const [flow, setFlow] = useState(null);
7568
+ if (flow !== null) {
7569
7569
  return jsx(ReturnFlowView, {
7570
7570
  orderRef: props.orderRef,
7571
- onDone: () => setReturning(false)
7571
+ ...flow ? {
7572
+ returnRef: flow
7573
+ } : {},
7574
+ onDone: () => setFlow(null)
7572
7575
  });
7573
7576
  }
7574
7577
  return jsx(ShopSurface, {
@@ -7576,11 +7579,12 @@ function OrderTrackingView(props) {
7576
7579
  fill: true,
7577
7580
  children: jsx(OrderTrackingContent, {
7578
7581
  ...props,
7579
- onStartReturn: props.onStartReturn ?? (() => setReturning(true))
7582
+ onStartReturn: props.onStartReturn ?? (() => setFlow("")),
7583
+ onOpenReturn: props.onOpenReturn ?? ((returnRef) => setFlow(returnRef))
7580
7584
  })
7581
7585
  });
7582
7586
  }
7583
- function OrderTrackingContent({ orderRef, locale: localeProp, onStartReturn, onContactSupport, onCancelled, onReorder }) {
7587
+ function OrderTrackingContent({ orderRef, locale: localeProp, onStartReturn, onOpenReturn, onContactSupport, onCancelled, onReorder }) {
7584
7588
  const t = useT();
7585
7589
  const { api } = useShop();
7586
7590
  const locale = useLocale(localeProp);
@@ -7757,6 +7761,9 @@ function OrderTrackingContent({ orderRef, locale: localeProp, onStartReturn, onC
7757
7761
  ...onStartReturn ? {
7758
7762
  onStartReturn
7759
7763
  } : {},
7764
+ ...onOpenReturn ? {
7765
+ onOpenReturn
7766
+ } : {},
7760
7767
  ...onContactSupport ? {
7761
7768
  onContactSupport
7762
7769
  } : {}
@@ -7793,9 +7800,10 @@ function placedOn(iso, locale) {
7793
7800
  }).format(d);
7794
7801
  return `${day} ${month}, ${d.getUTCFullYear()}`;
7795
7802
  }
7796
- function NeedHelp({ order, onStartReturn, onContactSupport }) {
7803
+ function NeedHelp({ order, onStartReturn, onOpenReturn, onContactSupport }) {
7797
7804
  const emit = useShopEvent();
7798
7805
  if (order.status !== "delivered") return null;
7806
+ const returns = order.returns ?? [];
7799
7807
  return jsxs("section", {
7800
7808
  className: styles$y.help,
7801
7809
  "aria-labelledby": "order-help",
@@ -7805,7 +7813,10 @@ function NeedHelp({ order, onStartReturn, onContactSupport }) {
7805
7813
  children: "Need help?"
7806
7814
  }), jsxs("div", {
7807
7815
  className: styles$y.helpRows,
7808
- children: [order.can_return && onStartReturn && jsx(HelpRow, {
7816
+ children: [returns.map((ret) => jsx(HelpRow, {
7817
+ label: returns.length > 1 ? `Track return ${ret.return_ref}` : "Track your return",
7818
+ onClick: () => onOpenReturn?.(ret.return_ref)
7819
+ }, ret.return_ref)), order.can_return && onStartReturn && jsx(HelpRow, {
7809
7820
  label: "Start a return",
7810
7821
  onClick: onStartReturn
7811
7822
  }), jsx(HelpRow, {
@@ -8417,11 +8428,11 @@ function ProductGallery({ title: title2, product }) {
8417
8428
  })]
8418
8429
  });
8419
8430
  }
8420
- const bar$1 = "_bar_fn0g9_1";
8421
- const chips$1 = "_chips_fn0g9_8";
8422
- const chip$1 = "_chip_fn0g9_8";
8423
- const on = "_on_fn0g9_29";
8424
- const clear = "_clear_fn0g9_35";
8431
+ const bar$1 = "_bar_6p29u_1";
8432
+ const chips$1 = "_chips_6p29u_8";
8433
+ const chip$1 = "_chip_6p29u_8";
8434
+ const on = "_on_6p29u_36";
8435
+ const clear = "_clear_6p29u_42";
8425
8436
  const styles$r = {
8426
8437
  bar: bar$1,
8427
8438
  chips: chips$1,
@@ -8539,13 +8550,13 @@ function ProductGrid({ category, initialProducts, initialCursor, filters = [] })
8539
8550
  })]
8540
8551
  });
8541
8552
  }
8542
- const rail = "_rail_11l7h_7";
8543
- const header$5 = "_header_11l7h_14";
8544
- const title$d = "_title_11l7h_21";
8545
- const seeAll = "_seeAll_11l7h_27";
8546
- const track$3 = "_track_11l7h_33";
8547
- const item = "_item_11l7h_50";
8548
- const inset = "_inset_11l7h_62";
8553
+ const rail = "_rail_1rll1_7";
8554
+ const header$5 = "_header_1rll1_14";
8555
+ const title$d = "_title_1rll1_21";
8556
+ const seeAll = "_seeAll_1rll1_27";
8557
+ const track$3 = "_track_1rll1_33";
8558
+ const item = "_item_1rll1_67";
8559
+ const inset = "_inset_1rll1_79";
8549
8560
  const styles$p = {
8550
8561
  rail,
8551
8562
  header: header$5,
@@ -8582,16 +8593,16 @@ function RailCarousel({ title: title2, products, seeAllTo, inset: inset2 }) {
8582
8593
  })]
8583
8594
  });
8584
8595
  }
8585
- const overlay$2 = "_overlay_s4eai_1";
8586
- const scrim$4 = "_scrim_s4eai_10";
8587
- const sheet$2 = "_sheet_s4eai_16";
8588
- const grabArea = "_grabArea_s4eai_41";
8589
- const grabber = "_grabber_s4eai_51";
8590
- const header$4 = "_header_s4eai_59";
8591
- const title$c = "_title_s4eai_67";
8592
- const close$1 = "_close_s4eai_71";
8593
- const body$4 = "_body_s4eai_84";
8594
- const footer = "_footer_s4eai_90";
8596
+ const overlay$2 = "_overlay_fszc5_1";
8597
+ const scrim$4 = "_scrim_fszc5_10";
8598
+ const sheet$2 = "_sheet_fszc5_16";
8599
+ const grabArea = "_grabArea_fszc5_41";
8600
+ const grabber = "_grabber_fszc5_51";
8601
+ const header$4 = "_header_fszc5_59";
8602
+ const title$c = "_title_fszc5_67";
8603
+ const close$1 = "_close_fszc5_71";
8604
+ const body$4 = "_body_fszc5_84";
8605
+ const footer = "_footer_fszc5_97";
8595
8606
  const styles$o = {
8596
8607
  overlay: overlay$2,
8597
8608
  scrim: scrim$4,
@@ -9409,31 +9420,31 @@ function MediaGallery({ media: media2, alt, focus }) {
9409
9420
  })]
9410
9421
  });
9411
9422
  }
9412
- const scrim$3 = "_scrim_ddqa4_8";
9413
- const sheet$1 = "_sheet_ddqa4_2";
9414
- const body$2 = "_body_ddqa4_40";
9415
- const titles = "_titles_ddqa4_60";
9416
- const title$a = "_title_ddqa4_60";
9417
- const subtitle$3 = "_subtitle_ddqa4_76";
9418
- const units = "_units_ddqa4_89";
9419
- const unit = "_unit_ddqa4_89";
9420
- const unitOn = "_unitOn_ddqa4_123";
9421
- const unitOff = "_unitOff_ddqa4_131";
9422
- const tableWrap = "_tableWrap_ddqa4_140";
9423
- const table = "_table_ddqa4_140";
9424
- const col = "_col_ddqa4_165";
9425
- const colEdge = "_colEdge_ddqa4_169";
9426
- const note = "_note_ddqa4_237";
9427
- const how = "_how_ddqa4_249";
9428
- const howTitle = "_howTitle_ddqa4_255";
9429
- const howList = "_howList_ddqa4_263";
9430
- const howItem = "_howItem_ddqa4_270";
9431
- const howLabel = "_howLabel_ddqa4_295";
9432
- const howText = "_howText_ddqa4_305";
9433
- const fabric = "_fabric_ddqa4_314";
9434
- const fabricLabel = "_fabricLabel_ddqa4_322";
9435
- const fabricText = "_fabricText_ddqa4_330";
9436
- const notes = "_notes_ddqa4_341";
9423
+ const scrim$3 = "_scrim_r4azu_8";
9424
+ const sheet$1 = "_sheet_r4azu_2";
9425
+ const body$2 = "_body_r4azu_40";
9426
+ const titles = "_titles_r4azu_67";
9427
+ const title$a = "_title_r4azu_67";
9428
+ const subtitle$3 = "_subtitle_r4azu_83";
9429
+ const units = "_units_r4azu_96";
9430
+ const unit = "_unit_r4azu_96";
9431
+ const unitOn = "_unitOn_r4azu_130";
9432
+ const unitOff = "_unitOff_r4azu_138";
9433
+ const tableWrap = "_tableWrap_r4azu_147";
9434
+ const table = "_table_r4azu_147";
9435
+ const col = "_col_r4azu_179";
9436
+ const colEdge = "_colEdge_r4azu_183";
9437
+ const note = "_note_r4azu_251";
9438
+ const how = "_how_r4azu_263";
9439
+ const howTitle = "_howTitle_r4azu_269";
9440
+ const howList = "_howList_r4azu_277";
9441
+ const howItem = "_howItem_r4azu_284";
9442
+ const howLabel = "_howLabel_r4azu_309";
9443
+ const howText = "_howText_r4azu_319";
9444
+ const fabric = "_fabric_r4azu_328";
9445
+ const fabricLabel = "_fabricLabel_r4azu_336";
9446
+ const fabricText = "_fabricText_r4azu_344";
9447
+ const notes = "_notes_r4azu_355";
9437
9448
  const styles$h = {
9438
9449
  scrim: scrim$3,
9439
9450
  sheet: sheet$1,
@@ -11288,18 +11299,18 @@ function ShopBar({ onBack, onMenu, title: title2, showCart, floating: floating2
11288
11299
  })]
11289
11300
  });
11290
11301
  }
11291
- const overlay = "_overlay_1i5ok_5";
11292
- const scrim = "_scrim_1i5ok_21";
11293
- const sheet = "_sheet_1i5ok_31";
11294
- const header = "_header_1i5ok_73";
11295
- const close = "_close_1i5ok_79";
11296
- const list = "_list_1i5ok_98";
11297
- const row = "_row_1i5ok_113";
11298
- const icon = "_icon_1i5ok_142";
11299
- const text = "_text_1i5ok_150";
11300
- const title = "_title_1i5ok_158";
11301
- const subtitle = "_subtitle_1i5ok_165";
11302
- const chevron = "_chevron_1i5ok_171";
11302
+ const overlay = "_overlay_zf09t_5";
11303
+ const scrim = "_scrim_zf09t_21";
11304
+ const sheet = "_sheet_zf09t_31";
11305
+ const header = "_header_zf09t_80";
11306
+ const close = "_close_zf09t_86";
11307
+ const list = "_list_zf09t_105";
11308
+ const row = "_row_zf09t_120";
11309
+ const icon = "_icon_zf09t_149";
11310
+ const text = "_text_zf09t_157";
11311
+ const title = "_title_zf09t_165";
11312
+ const subtitle = "_subtitle_zf09t_172";
11313
+ const chevron = "_chevron_zf09t_178";
11303
11314
  const styles = {
11304
11315
  overlay,
11305
11316
  scrim,
@@ -11573,4 +11584,4 @@ export {
11573
11584
  useToast,
11574
11585
  variantLabel
11575
11586
  };
11576
-
11587
+ //# sourceMappingURL=index.mjs.map
@@ -6810,16 +6810,16 @@ function useModalDialog(open, onClose, ref) {
6810
6810
  };
6811
6811
  }, [open, handleKeyDown, ref]);
6812
6812
  }
6813
- const scrim$5 = "_scrim_7on4q_8";
6814
- const sheet$3 = "_sheet_7on4q_20";
6815
- const body$6 = "_body_7on4q_32";
6816
- const title$l = "_title_7on4q_46";
6817
- const options$1 = "_options_7on4q_54";
6818
- const option$1 = "_option_7on4q_54";
6819
- const radio = "_radio_7on4q_88";
6820
- const label$1 = "_label_7on4q_118";
6821
- const footer$1 = "_footer_7on4q_127";
6822
- const error$1 = "_error_7on4q_135";
6813
+ const scrim$5 = "_scrim_1oaa3_8";
6814
+ const sheet$3 = "_sheet_1oaa3_20";
6815
+ const body$6 = "_body_1oaa3_32";
6816
+ const title$l = "_title_1oaa3_53";
6817
+ const options$1 = "_options_1oaa3_61";
6818
+ const option$1 = "_option_1oaa3_61";
6819
+ const radio = "_radio_1oaa3_95";
6820
+ const label$1 = "_label_1oaa3_125";
6821
+ const footer$1 = "_footer_1oaa3_134";
6822
+ const error$1 = "_error_1oaa3_142";
6823
6823
  const styles$D = {
6824
6824
  scrim: scrim$5,
6825
6825
  sheet: sheet$3,
@@ -7564,11 +7564,14 @@ function ChevronRight$1() {
7564
7564
  });
7565
7565
  }
7566
7566
  function OrderTrackingView(props) {
7567
- const [returning, setReturning] = useState(false);
7568
- if (returning) {
7567
+ const [flow, setFlow] = useState(null);
7568
+ if (flow !== null) {
7569
7569
  return jsx(ReturnFlowView, {
7570
7570
  orderRef: props.orderRef,
7571
- onDone: () => setReturning(false)
7571
+ ...flow ? {
7572
+ returnRef: flow
7573
+ } : {},
7574
+ onDone: () => setFlow(null)
7572
7575
  });
7573
7576
  }
7574
7577
  return jsx(ShopSurface, {
@@ -7576,11 +7579,12 @@ function OrderTrackingView(props) {
7576
7579
  fill: true,
7577
7580
  children: jsx(OrderTrackingContent, {
7578
7581
  ...props,
7579
- onStartReturn: props.onStartReturn ?? (() => setReturning(true))
7582
+ onStartReturn: props.onStartReturn ?? (() => setFlow("")),
7583
+ onOpenReturn: props.onOpenReturn ?? ((returnRef) => setFlow(returnRef))
7580
7584
  })
7581
7585
  });
7582
7586
  }
7583
- function OrderTrackingContent({ orderRef, locale: localeProp, onStartReturn, onContactSupport, onCancelled, onReorder }) {
7587
+ function OrderTrackingContent({ orderRef, locale: localeProp, onStartReturn, onOpenReturn, onContactSupport, onCancelled, onReorder }) {
7584
7588
  const t = useT();
7585
7589
  const { api } = useShop();
7586
7590
  const locale = useLocale(localeProp);
@@ -7757,6 +7761,9 @@ function OrderTrackingContent({ orderRef, locale: localeProp, onStartReturn, onC
7757
7761
  ...onStartReturn ? {
7758
7762
  onStartReturn
7759
7763
  } : {},
7764
+ ...onOpenReturn ? {
7765
+ onOpenReturn
7766
+ } : {},
7760
7767
  ...onContactSupport ? {
7761
7768
  onContactSupport
7762
7769
  } : {}
@@ -7793,9 +7800,10 @@ function placedOn(iso, locale) {
7793
7800
  }).format(d);
7794
7801
  return `${day} ${month}, ${d.getUTCFullYear()}`;
7795
7802
  }
7796
- function NeedHelp({ order, onStartReturn, onContactSupport }) {
7803
+ function NeedHelp({ order, onStartReturn, onOpenReturn, onContactSupport }) {
7797
7804
  const emit = useShopEvent();
7798
7805
  if (order.status !== "delivered") return null;
7806
+ const returns = order.returns ?? [];
7799
7807
  return jsxs("section", {
7800
7808
  className: styles$y.help,
7801
7809
  "aria-labelledby": "order-help",
@@ -7805,7 +7813,10 @@ function NeedHelp({ order, onStartReturn, onContactSupport }) {
7805
7813
  children: "Need help?"
7806
7814
  }), jsxs("div", {
7807
7815
  className: styles$y.helpRows,
7808
- children: [order.can_return && onStartReturn && jsx(HelpRow, {
7816
+ children: [returns.map((ret) => jsx(HelpRow, {
7817
+ label: returns.length > 1 ? `Track return ${ret.return_ref}` : "Track your return",
7818
+ onClick: () => onOpenReturn?.(ret.return_ref)
7819
+ }, ret.return_ref)), order.can_return && onStartReturn && jsx(HelpRow, {
7809
7820
  label: "Start a return",
7810
7821
  onClick: onStartReturn
7811
7822
  }), jsx(HelpRow, {
@@ -8417,11 +8428,11 @@ function ProductGallery({ title: title2, product }) {
8417
8428
  })]
8418
8429
  });
8419
8430
  }
8420
- const bar$1 = "_bar_fn0g9_1";
8421
- const chips$1 = "_chips_fn0g9_8";
8422
- const chip$1 = "_chip_fn0g9_8";
8423
- const on = "_on_fn0g9_29";
8424
- const clear = "_clear_fn0g9_35";
8431
+ const bar$1 = "_bar_6p29u_1";
8432
+ const chips$1 = "_chips_6p29u_8";
8433
+ const chip$1 = "_chip_6p29u_8";
8434
+ const on = "_on_6p29u_36";
8435
+ const clear = "_clear_6p29u_42";
8425
8436
  const styles$r = {
8426
8437
  bar: bar$1,
8427
8438
  chips: chips$1,
@@ -8539,13 +8550,13 @@ function ProductGrid({ category, initialProducts, initialCursor, filters = [] })
8539
8550
  })]
8540
8551
  });
8541
8552
  }
8542
- const rail = "_rail_11l7h_7";
8543
- const header$5 = "_header_11l7h_14";
8544
- const title$d = "_title_11l7h_21";
8545
- const seeAll = "_seeAll_11l7h_27";
8546
- const track$3 = "_track_11l7h_33";
8547
- const item = "_item_11l7h_50";
8548
- const inset = "_inset_11l7h_62";
8553
+ const rail = "_rail_1rll1_7";
8554
+ const header$5 = "_header_1rll1_14";
8555
+ const title$d = "_title_1rll1_21";
8556
+ const seeAll = "_seeAll_1rll1_27";
8557
+ const track$3 = "_track_1rll1_33";
8558
+ const item = "_item_1rll1_67";
8559
+ const inset = "_inset_1rll1_79";
8549
8560
  const styles$p = {
8550
8561
  rail,
8551
8562
  header: header$5,
@@ -8582,16 +8593,16 @@ function RailCarousel({ title: title2, products, seeAllTo, inset: inset2 }) {
8582
8593
  })]
8583
8594
  });
8584
8595
  }
8585
- const overlay$2 = "_overlay_s4eai_1";
8586
- const scrim$4 = "_scrim_s4eai_10";
8587
- const sheet$2 = "_sheet_s4eai_16";
8588
- const grabArea = "_grabArea_s4eai_41";
8589
- const grabber = "_grabber_s4eai_51";
8590
- const header$4 = "_header_s4eai_59";
8591
- const title$c = "_title_s4eai_67";
8592
- const close$1 = "_close_s4eai_71";
8593
- const body$4 = "_body_s4eai_84";
8594
- const footer = "_footer_s4eai_90";
8596
+ const overlay$2 = "_overlay_fszc5_1";
8597
+ const scrim$4 = "_scrim_fszc5_10";
8598
+ const sheet$2 = "_sheet_fszc5_16";
8599
+ const grabArea = "_grabArea_fszc5_41";
8600
+ const grabber = "_grabber_fszc5_51";
8601
+ const header$4 = "_header_fszc5_59";
8602
+ const title$c = "_title_fszc5_67";
8603
+ const close$1 = "_close_fszc5_71";
8604
+ const body$4 = "_body_fszc5_84";
8605
+ const footer = "_footer_fszc5_97";
8595
8606
  const styles$o = {
8596
8607
  overlay: overlay$2,
8597
8608
  scrim: scrim$4,
@@ -9409,31 +9420,31 @@ function MediaGallery({ media: media2, alt, focus }) {
9409
9420
  })]
9410
9421
  });
9411
9422
  }
9412
- const scrim$3 = "_scrim_ddqa4_8";
9413
- const sheet$1 = "_sheet_ddqa4_2";
9414
- const body$2 = "_body_ddqa4_40";
9415
- const titles = "_titles_ddqa4_60";
9416
- const title$a = "_title_ddqa4_60";
9417
- const subtitle$3 = "_subtitle_ddqa4_76";
9418
- const units = "_units_ddqa4_89";
9419
- const unit = "_unit_ddqa4_89";
9420
- const unitOn = "_unitOn_ddqa4_123";
9421
- const unitOff = "_unitOff_ddqa4_131";
9422
- const tableWrap = "_tableWrap_ddqa4_140";
9423
- const table = "_table_ddqa4_140";
9424
- const col = "_col_ddqa4_165";
9425
- const colEdge = "_colEdge_ddqa4_169";
9426
- const note = "_note_ddqa4_237";
9427
- const how = "_how_ddqa4_249";
9428
- const howTitle = "_howTitle_ddqa4_255";
9429
- const howList = "_howList_ddqa4_263";
9430
- const howItem = "_howItem_ddqa4_270";
9431
- const howLabel = "_howLabel_ddqa4_295";
9432
- const howText = "_howText_ddqa4_305";
9433
- const fabric = "_fabric_ddqa4_314";
9434
- const fabricLabel = "_fabricLabel_ddqa4_322";
9435
- const fabricText = "_fabricText_ddqa4_330";
9436
- const notes = "_notes_ddqa4_341";
9423
+ const scrim$3 = "_scrim_r4azu_8";
9424
+ const sheet$1 = "_sheet_r4azu_2";
9425
+ const body$2 = "_body_r4azu_40";
9426
+ const titles = "_titles_r4azu_67";
9427
+ const title$a = "_title_r4azu_67";
9428
+ const subtitle$3 = "_subtitle_r4azu_83";
9429
+ const units = "_units_r4azu_96";
9430
+ const unit = "_unit_r4azu_96";
9431
+ const unitOn = "_unitOn_r4azu_130";
9432
+ const unitOff = "_unitOff_r4azu_138";
9433
+ const tableWrap = "_tableWrap_r4azu_147";
9434
+ const table = "_table_r4azu_147";
9435
+ const col = "_col_r4azu_179";
9436
+ const colEdge = "_colEdge_r4azu_183";
9437
+ const note = "_note_r4azu_251";
9438
+ const how = "_how_r4azu_263";
9439
+ const howTitle = "_howTitle_r4azu_269";
9440
+ const howList = "_howList_r4azu_277";
9441
+ const howItem = "_howItem_r4azu_284";
9442
+ const howLabel = "_howLabel_r4azu_309";
9443
+ const howText = "_howText_r4azu_319";
9444
+ const fabric = "_fabric_r4azu_328";
9445
+ const fabricLabel = "_fabricLabel_r4azu_336";
9446
+ const fabricText = "_fabricText_r4azu_344";
9447
+ const notes = "_notes_r4azu_355";
9437
9448
  const styles$h = {
9438
9449
  scrim: scrim$3,
9439
9450
  sheet: sheet$1,
@@ -11288,18 +11299,18 @@ function ShopBar({ onBack, onMenu, title: title2, showCart, floating: floating2
11288
11299
  })]
11289
11300
  });
11290
11301
  }
11291
- const overlay = "_overlay_1i5ok_5";
11292
- const scrim = "_scrim_1i5ok_21";
11293
- const sheet = "_sheet_1i5ok_31";
11294
- const header = "_header_1i5ok_73";
11295
- const close = "_close_1i5ok_79";
11296
- const list = "_list_1i5ok_98";
11297
- const row = "_row_1i5ok_113";
11298
- const icon = "_icon_1i5ok_142";
11299
- const text = "_text_1i5ok_150";
11300
- const title = "_title_1i5ok_158";
11301
- const subtitle = "_subtitle_1i5ok_165";
11302
- const chevron = "_chevron_1i5ok_171";
11302
+ const overlay = "_overlay_zf09t_5";
11303
+ const scrim = "_scrim_zf09t_21";
11304
+ const sheet = "_sheet_zf09t_31";
11305
+ const header = "_header_zf09t_80";
11306
+ const close = "_close_zf09t_86";
11307
+ const list = "_list_zf09t_105";
11308
+ const row = "_row_zf09t_120";
11309
+ const icon = "_icon_zf09t_149";
11310
+ const text = "_text_zf09t_157";
11311
+ const title = "_title_zf09t_165";
11312
+ const subtitle = "_subtitle_zf09t_172";
11313
+ const chevron = "_chevron_zf09t_178";
11303
11314
  const styles = {
11304
11315
  overlay,
11305
11316
  scrim,
@@ -11573,4 +11584,4 @@ export {
11573
11584
  useToast,
11574
11585
  variantLabel
11575
11586
  };
11576
-
11587
+ //# sourceMappingURL=storefront.mjs.map