@sonic-equipment/ui 0.0.68 → 0.0.70

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.js CHANGED
@@ -12,13 +12,14 @@ import { simple } from 'instantsearch.js/es/lib/stateMappings/index.js';
12
12
  import algoliasearch from 'algoliasearch';
13
13
  import aa from 'search-insights';
14
14
  import ReactDOM from 'react-dom';
15
+ import { Transition, TransitionGroup } from 'react-transition-group';
15
16
  import { createAutocomplete } from '@algolia/autocomplete-core';
16
17
  import { getAlgoliaResults, parseAlgoliaHitHighlight } from '@algolia/autocomplete-preset-algolia';
17
18
  import { createQuerySuggestionsPlugin } from '@algolia/autocomplete-plugin-query-suggestions';
18
19
  import { createLocalStorageRecentSearchesPlugin, search } from '@algolia/autocomplete-plugin-recent-searches';
19
- import { TransitionGroup, Transition } from 'react-transition-group';
20
20
 
21
- const localUrls = /sonic.local.com/i;
21
+ const environments = ['sandbox', 'production', 'local'];
22
+ const localUrls = /local.com/i;
22
23
  const sandboxUrls = /local|insitesandbox.com|azurestaticapps|ui.sonic-equipment.com|sandbox|accept|test/i;
23
24
  const productionUrls = /sonic-equipment.com|production/i;
24
25
  let environmentUrl;
@@ -567,11 +568,11 @@ async function addProductToCurrentCart(productOrderData) {
567
568
  return body;
568
569
  }
569
570
 
570
- async function fetchTranslations() {
571
+ async function fetchTranslations(languageCode) {
571
572
  const translations = {};
572
573
  const { body } = await request({
573
574
  credentials: 'include',
574
- url: `${config.SHOP_API_URL}/api/v1/translationdictionaries?page=1&pageSize=9999`,
575
+ url: `${config.SHOP_API_URL}/api/v1/translationdictionaries?page=1&pageSize=9999&languageCode=${languageCode || 'en'}`,
575
576
  });
576
577
  body.translationDictionaries?.forEach(dictionary => {
577
578
  translations[dictionary.keyword] = dictionary.translation;
@@ -579,32 +580,17 @@ async function fetchTranslations() {
579
580
  return translations;
580
581
  }
581
582
 
582
- async function createWishList() {
583
+ async function getWishList({ wishListId, }) {
583
584
  const { body } = await request({
584
- body: '{}',
585
- headers: {
586
- 'Content-Type': 'application/json',
587
- },
588
- method: 'POST',
589
- url: `${config.SHOP_API_URL}/api/v1/wishlists`,
585
+ url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}`,
590
586
  });
591
587
  return body;
592
588
  }
593
- async function addWishListItemToWishList({ productId, wishListId, }) {
594
- await request({
595
- body: { productId, qtyOrdered: 1, unitOfMeasure: '' },
596
- headers: {
597
- 'Content-Type': 'application/json',
598
- },
599
- method: 'POST',
600
- url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}/wishlistlines`,
601
- });
602
- }
603
- async function removeWishListItemFromWishList({ wishListId, wishListItemId, }) {
604
- await request({
605
- method: 'DELETE',
606
- url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}/wishlistlines/${wishListItemId}`,
589
+ async function getWishLists() {
590
+ const { body } = await request({
591
+ url: `${config.SHOP_API_URL}/api/v1/wishlists?page=1&pageSize=999`,
607
592
  });
593
+ return body;
608
594
  }
609
595
  class WishListNameAlreadyExistsError extends Error {
610
596
  constructor() {
@@ -612,10 +598,10 @@ class WishListNameAlreadyExistsError extends Error {
612
598
  this.name = 'AddWishListError';
613
599
  }
614
600
  }
615
- async function addWishList({ name, }) {
601
+ async function createWishList(args) {
616
602
  try {
617
603
  const { body } = await request({
618
- body: { name },
604
+ body: args ? { name: args.name } : {},
619
605
  headers: {
620
606
  'Content-Type': 'application/json',
621
607
  },
@@ -632,29 +618,28 @@ async function addWishList({ name, }) {
632
618
  throw error;
633
619
  }
634
620
  }
635
- async function deleteWishListItemFromWishList({ wishListId, wishListItemId, }) {
636
- await request({
637
- method: 'DELETE',
638
- url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}/wishlistlines/${wishListItemId}`,
639
- });
640
- }
641
621
  async function deleteWishList({ wishListId, }) {
642
622
  await request({
643
623
  method: 'DELETE',
644
624
  url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}`,
645
625
  });
646
626
  }
647
- async function getWishLists() {
627
+ async function addWishListItemToWishList({ productId, wishListId, }) {
648
628
  const { body } = await request({
649
- url: `${config.SHOP_API_URL}/api/v1/wishlists?page=1&pageSize=999`,
629
+ body: { productId, qtyOrdered: 1, unitOfMeasure: '' },
630
+ headers: {
631
+ 'Content-Type': 'application/json',
632
+ },
633
+ method: 'POST',
634
+ url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}/wishlistlines`,
650
635
  });
651
636
  return body;
652
637
  }
653
- async function getWishList({ wishListId, }) {
654
- const { body } = await request({
655
- url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}`,
638
+ async function deleteWishListItemFromWishList({ wishListId, wishListItemId, }) {
639
+ await request({
640
+ method: 'DELETE',
641
+ url: `${config.SHOP_API_URL}/api/v1/wishlists/${wishListId}/wishlistlines/${wishListItemId}`,
656
642
  });
657
- return body;
658
643
  }
659
644
  async function getWishListItemsByWishListId({ wishListId, }) {
660
645
  const { body } = await request({
@@ -791,10 +776,10 @@ function useUpdateCartLineById() {
791
776
  });
792
777
  }
793
778
 
794
- function useFetchTranslations() {
779
+ function useFetchTranslations(languagCode) {
795
780
  return useQuery({
796
781
  gcTime: 1 * TIME.DAY,
797
- queryFn: fetchTranslations,
782
+ queryFn: () => fetchTranslations(languagCode),
798
783
  queryKey: ['translations'],
799
784
  staleTime: 1 * TIME.DAY,
800
785
  });
@@ -804,22 +789,24 @@ function useAddWishListItemToCurrentWishList() {
804
789
  const queryClient = useQueryClient();
805
790
  return useMutation({
806
791
  mutationFn: async ({ productId }) => {
807
- let wishList = queryClient.getQueryData([
808
- 'wishlist',
809
- 'current',
810
- ]);
792
+ const wishLists = queryClient.getQueryData(['wishlists']) || [];
793
+ let wishList = wishLists[0];
811
794
  if (!wishList) {
812
795
  wishList = await createWishList();
813
- queryClient.removeQueries({ queryKey: ['wishlists'] });
814
- queryClient.setQueryData(['wishlist', 'current'], wishList);
796
+ queryClient.setQueryData(['wishlists'], [...wishLists, wishList]);
815
797
  }
816
- await addWishListItemToWishList({
798
+ const wishListItem = await addWishListItemToWishList({
817
799
  productId,
818
800
  wishListId: wishList.id,
819
801
  });
820
- queryClient.removeQueries({
821
- queryKey: ['wishlists', '*', 'wishlistlines'],
822
- });
802
+ const wishListLines = queryClient.getQueryData(['wishlistlines']) || [];
803
+ queryClient.setQueryData(['wishlistlines'], [
804
+ ...wishListLines,
805
+ {
806
+ wishList,
807
+ wishListItem,
808
+ },
809
+ ]);
823
810
  },
824
811
  });
825
812
  }
@@ -828,37 +815,39 @@ function useAddWishListItemToWishList() {
828
815
  const queryClient = useQueryClient();
829
816
  return useMutation({
830
817
  mutationFn: async ({ productId, wishListId }) => {
831
- await addWishListItemToWishList({ productId, wishListId });
832
- queryClient.removeQueries({ queryKey: ['wishlists'] });
818
+ let wishLists = queryClient.getQueryData(['wishlists']);
819
+ if (!wishLists) {
820
+ wishLists = (await getWishLists()).wishListCollection || [];
821
+ queryClient.setQueryData(['wishlists'], wishLists);
822
+ }
823
+ const wishList = wishLists.find(wishList => wishList.id === wishListId);
824
+ if (!wishList)
825
+ throw new Error();
826
+ const wishListItem = await addWishListItemToWishList({
827
+ productId,
828
+ wishListId,
829
+ });
830
+ const wishListLines = queryClient.getQueryData(['wishlistlines']) || [];
831
+ queryClient.setQueryData(['wishlistlines'], [
832
+ ...wishListLines,
833
+ {
834
+ wishList,
835
+ wishListItem,
836
+ },
837
+ ]);
833
838
  },
834
839
  });
835
840
  }
836
841
 
837
- function useAddWishList() {
842
+ function useCreateWishList() {
838
843
  const queryClient = useQueryClient();
839
844
  return useMutation({
840
845
  mutationFn: async ({ name }) => {
841
- const wishList = await addWishList({ name });
842
- queryClient.removeQueries({ queryKey: ['wishlists'] });
843
- return wishList.id;
844
- },
845
- });
846
- }
847
-
848
- function useCreateCurrentWishList() {
849
- const queryClient = useQueryClient();
850
- return useMutation({
851
- mutationFn: async () => {
852
- const currentWishList = queryClient.getQueryData([
853
- 'wishlist',
854
- 'current',
855
- ]);
856
- if (currentWishList)
857
- return currentWishList.id;
858
- const wishList = await createWishList();
859
- queryClient.removeQueries({ queryKey: ['wishlists'] });
860
- queryClient.setQueryData(['wishlist', 'current'], wishList);
861
- return wishList.id;
846
+ const createdWishList = await createWishList({ name });
847
+ // Add to cache
848
+ const wishLists = queryClient.getQueryData(['wishlists']) || [];
849
+ queryClient.setQueryData(['wishlists'], [...wishLists, createdWishList]);
850
+ return createdWishList.id;
862
851
  },
863
852
  });
864
853
  }
@@ -868,7 +857,10 @@ function useDeleteWishListItemFromWishList() {
868
857
  return useMutation({
869
858
  mutationFn: async ({ wishListId, wishListItemId }) => {
870
859
  await deleteWishListItemFromWishList({ wishListId, wishListItemId });
871
- queryClient.removeQueries({ queryKey: ['wishlists'] });
860
+ const wishListLines = queryClient.getQueryData(['wishlistlines']) || [];
861
+ if (wishListLines.find(item => item.wishListItem.id === wishListItemId)) {
862
+ queryClient.setQueryData(['wishlistlines'], wishListLines.filter(line => line.wishListItem.id !== wishListItemId));
863
+ }
872
864
  },
873
865
  });
874
866
  }
@@ -878,14 +870,17 @@ function useFetchAllWishListsItems({ enabled = true } = { enabled: true }) {
878
870
  return useQuery({
879
871
  enabled,
880
872
  queryFn: async () => {
881
- const body =
873
+ let wishLists =
882
874
  // Reuse existing data if available
883
- queryClient.getQueryData(['wishlists']) ||
884
- // Otherwise fetch the data
885
- (await getWishLists());
886
- // Update the cache with the new or existing data
887
- queryClient.setQueryData(['wishlists'], body);
888
- const wishListLines = await Promise.all((body.wishListCollection || []).map(async (wishList) => {
875
+ queryClient.getQueryData(['wishlists']);
876
+ if (wishLists === undefined) {
877
+ wishLists = (await getWishLists()).wishListCollection || [];
878
+ // Update the cache with the new or existing data
879
+ queryClient.setQueryData(['wishlists'], wishLists);
880
+ }
881
+ if (wishLists.length === 0)
882
+ return [];
883
+ const wishListLines = await Promise.all(wishLists.map(async (wishList) => {
889
884
  return ((await getWishListItemsByWishListId({ wishListId: wishList.id }))
890
885
  .wishListLines || []).map(wishListItem => ({
891
886
  wishList,
@@ -894,7 +889,7 @@ function useFetchAllWishListsItems({ enabled = true } = { enabled: true }) {
894
889
  }));
895
890
  return wishListLines.flatMap(wishListDetails => wishListDetails);
896
891
  },
897
- queryKey: ['wishlists', '*', 'wishlistlines'],
892
+ queryKey: ['wishlistlines'],
898
893
  });
899
894
  }
900
895
 
@@ -905,17 +900,6 @@ function useFetchWishLists() {
905
900
  });
906
901
  }
907
902
 
908
- function useRemoveWishListItemFromCurrentWishList() {
909
- const queryClient = useQueryClient();
910
- return useMutation({
911
- mutationFn: async ({ wishListId, wishListItemId }) => {
912
- await removeWishListItemFromWishList({ wishListId, wishListItemId });
913
- queryClient.removeQueries({ queryKey: ['wishlists'] });
914
- queryClient.removeQueries({ queryKey: ['wishlist'] });
915
- },
916
- });
917
- }
918
-
919
903
  /* eslint-disable sort-keys-fix/sort-keys-fix */
920
904
  const breakpoints$1 = {
921
905
  sm: 0,
@@ -986,15 +970,16 @@ function useIsBreakpoint(breakpoint) {
986
970
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
987
971
  function useDebouncedCallback(func, delay) {
988
972
  const timeoutId = useRef();
989
- const debouncedCallback = useCallback(function debounced(...args) {
990
- if (typeof window === 'undefined')
991
- return func(...args);
992
- clearTimeout(timeoutId.current);
993
- timeoutId.current = setTimeout(() => {
994
- func(...args);
995
- }, delay);
973
+ return useCallback(function debounced(...args) {
974
+ return new Promise(resolve => {
975
+ if (typeof window === 'undefined')
976
+ return resolve(func(...args));
977
+ clearTimeout(timeoutId.current);
978
+ timeoutId.current = setTimeout(() => {
979
+ resolve(func(...args));
980
+ }, delay);
981
+ });
996
982
  }, [delay, func]);
997
- return debouncedCallback;
998
983
  }
999
984
 
1000
985
  const useDisclosure = (initialState = false) => {
@@ -1195,7 +1180,7 @@ function useNavigate() {
1195
1180
  };
1196
1181
  }
1197
1182
 
1198
- var styles$S = {"link":"link-module-xLqBn","primary":"link-module-bGD6u","secondary":"link-module-v31wH","has-underline":"link-module-UuCEp"};
1183
+ var styles$R = {"link":"link-module-xLqBn","primary":"link-module-bGD6u","secondary":"link-module-v31wH","has-underline":"link-module-UuCEp"};
1199
1184
 
1200
1185
  function Link({ children, className, color = 'primary', hasUnderline, onClick: _onClick, ...props }) {
1201
1186
  function onClick(e) {
@@ -1204,7 +1189,7 @@ function Link({ children, className, color = 'primary', hasUnderline, onClick: _
1204
1189
  return;
1205
1190
  e.preventDefault();
1206
1191
  }
1207
- return (jsx(Link$1, { className: clsx({ [styles$S['has-underline']]: hasUnderline }, styles$S['link'], styles$S[color], className),
1192
+ return (jsx(Link$1, { className: clsx({ [styles$R['has-underline']]: hasUnderline }, styles$R['link'], styles$R[color], className),
1208
1193
  // Workaround for adobe/react-spectrum #963
1209
1194
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1210
1195
  // @ts-ignore
@@ -1299,22 +1284,22 @@ function SolidHomeIcon(props) {
1299
1284
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M15.039782,22 C14.6690193,22 14.3684378,21.6994185 14.3684378,21.3286559 L14.3684378,15.6029043 L9.34495251,15.6029043 L9.34495251,21.3286559 C9.34495251,21.6994185 9.04437101,22 8.67345678,22 L3.67134415,22 C3.3005815,22 3,21.6994185 3,21.3286559 L3,9.79560307 C3,9.60127857 3.08412644,9.41665514 3.23055192,9.28917706 L11.4158271,2.16495603 C11.6686612,1.94501466 12.0447291,1.94501466 12.2975632,2.16495603 L20.4828384,9.28917706 C20.6292639,9.41665514 20.7133903,9.60127857 20.7133903,9.79560307 L20.7133903,21.3286559 C20.7133903,21.6994185 20.4128088,22 20.0418946,22 L15.039782,22 Z", fillRule: "evenodd" }) }));
1300
1285
  }
1301
1286
 
1302
- var styles$R = {"breadcrumbs":"breadcrumb-module-CQGse","breadcrumb":"breadcrumb-module-hxhDY","link":"breadcrumb-module-fp2Q6","icon":"breadcrumb-module-uIn3w","previous-icon":"breadcrumb-module-K-wMJ"};
1287
+ var styles$Q = {"breadcrumbs":"breadcrumb-module-CQGse","breadcrumb":"breadcrumb-module-hxhDY","link":"breadcrumb-module-fp2Q6","icon":"breadcrumb-module-uIn3w","previous-icon":"breadcrumb-module-K-wMJ"};
1303
1288
 
1304
1289
  function BreadcrumbShort({ links }) {
1305
1290
  const homeLink = links[0];
1306
1291
  const previousLink = links[links.length - 2];
1307
- return (jsx(Breadcrumbs, { className: styles$R.breadcrumbs, children: jsx(Breadcrumb$1, { className: styles$R.breadcrumb, children: jsxs(RouteLink, { className: styles$R.link, isDisabled: false, children: [jsx(GlyphsChevronsSlimLeftIcon, { className: styles$R.icon }), previousLink === undefined || previousLink === homeLink ? (jsx(SolidHomeIcon, { className: styles$R.icon })) : (jsx("span", { children: previousLink.label }))] }) }) }));
1292
+ return (jsx(Breadcrumbs, { className: styles$Q.breadcrumbs, children: jsx(Breadcrumb$1, { className: styles$Q.breadcrumb, children: jsxs(RouteLink, { className: styles$Q.link, isDisabled: false, children: [jsx(GlyphsChevronsSlimLeftIcon, { className: styles$Q.icon }), previousLink === undefined || previousLink === homeLink ? (jsx(SolidHomeIcon, { className: styles$Q.icon })) : (jsx("span", { children: previousLink.label }))] }) }) }));
1308
1293
  }
1309
1294
  function BreadcrumbLongItem({ index, isDisabled, link, }) {
1310
- return (jsx(Breadcrumb$1, { className: styles$R.breadcrumb, children: jsxs(RouteLink, { className: styles$R.link, color: "secondary", href: link.href, isDisabled: isDisabled, children: [jsx(GlyphsChevronsSlimLeftIcon, { className: clsx(styles$R['previous-icon'], styles$R.icon) }), link.label] }) }, index));
1295
+ return (jsx(Breadcrumb$1, { className: styles$Q.breadcrumb, children: jsxs(RouteLink, { className: styles$Q.link, color: "secondary", href: link.href, isDisabled: isDisabled, children: [jsx(GlyphsChevronsSlimLeftIcon, { className: clsx(styles$Q['previous-icon'], styles$Q.icon) }), link.label] }) }, index));
1311
1296
  }
1312
1297
  function BreadcrumbLong({ links }) {
1313
1298
  const linksWithoutFirst = links.slice(1);
1314
1299
  const homeLink = links[0];
1315
1300
  if (!homeLink)
1316
1301
  return null;
1317
- return (jsxs(Breadcrumbs, { className: styles$R.breadcrumbs, children: [jsx(Breadcrumb$1, { className: styles$R.breadcrumb, children: jsx(RouteLink, { className: styles$R.link, href: homeLink.href, children: jsx(SolidHomeIcon, { className: clsx(styles$R['home-icon'], styles$R.icon) }) }) }), linksWithoutFirst.map((link, index) => (jsx(BreadcrumbLongItem, { index: index, isDisabled: linksWithoutFirst.length - 1 === index, link: link }, index)))] }));
1302
+ return (jsxs(Breadcrumbs, { className: styles$Q.breadcrumbs, children: [jsx(Breadcrumb$1, { className: styles$Q.breadcrumb, children: jsx(RouteLink, { className: styles$Q.link, href: homeLink.href, children: jsx(SolidHomeIcon, { className: clsx(styles$Q['home-icon'], styles$Q.icon) }) }) }), linksWithoutFirst.map((link, index) => (jsx(BreadcrumbLongItem, { index: index, isDisabled: linksWithoutFirst.length - 1 === index, link: link }, index)))] }));
1318
1303
  }
1319
1304
  function Breadcrumb({ links }) {
1320
1305
  const { lg } = useBreakpoint();
@@ -1323,10 +1308,10 @@ function Breadcrumb({ links }) {
1323
1308
  return lg ? BreadcrumbLong({ links }) : BreadcrumbShort({ links });
1324
1309
  }
1325
1310
 
1326
- var styles$Q = {"icon-button":"icon-button-module-4PDK-","md":"icon-button-module-k3s9J","lg":"icon-button-module-agk6Y","primary":"icon-button-module-fTeP4","secondary":"icon-button-module-dM0eo"};
1311
+ var styles$P = {"icon-button":"icon-button-module-4PDK-","md":"icon-button-module-k3s9J","lg":"icon-button-module-agk6Y","primary":"icon-button-module-fTeP4","secondary":"icon-button-module-dM0eo"};
1327
1312
 
1328
1313
  function IconButton({ children, className, color = 'primary', isDisabled, onPress, size = 'md', type = 'button', }) {
1329
- return (jsx(Button$1, { className: clsx(styles$Q['icon-button'], styles$Q[size], styles$Q[color], className), isDisabled: isDisabled,
1314
+ return (jsx(Button$1, { className: clsx(styles$P['icon-button'], styles$P[size], styles$P[color], className), isDisabled: isDisabled,
1330
1315
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1331
1316
  // @ts-expect-error
1332
1317
  onClick: e => e.preventDefault(), onPress: onPress, type: type, children: children }));
@@ -1340,21 +1325,21 @@ function StrokeFavoriteIcon(props) {
1340
1325
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M7.33319295,3.33090958 C5.12714802,3.33090958 3.33232058,5.12348359 3.33232058,7.32679321 C3.33232058,8.18447047 3.64878056,9.03643889 4.29989998,9.93107334 L11.9997744,20.2227497 L19.7053643,9.92401241 C20.351069,9.03643889 20.6673786,8.1846207 20.6673786,7.32679321 C20.6673786,5.12348359 18.8727016,3.33090958 16.6666566,3.33090958 C14.8537801,3.33090958 13.1222748,4.56251549 12.6388611,6.19569283 C12.5552338,6.47843037 12.2951771,6.67253074 11.9999248,6.67253074 C11.7046724,6.67253074 11.4447662,6.47843037 11.3609885,6.19569283 C10.8775748,4.56251549 9.14606944,3.33090958 7.33319295,3.33090958 M11.9997744,22 L11.9997744,22 C11.7898038,22 11.5918659,21.9008466 11.4662746,21.7327364 L3.22718487,10.720545 C2.41106707,9.59905954 2,8.45954615 2,7.32679321 C2,4.3895979 4.39240135,2 7.33319295,2 C9.22488362,2 11.0018124,2.98206975 11.9999248,4.46786903 C12.9978868,2.98206975 14.774966,2 16.6666566,2 C19.6072978,2 22,4.3895979 22,7.32679321 C22,8.45969638 21.5887825,9.59920978 20.777929,10.7136343 L12.5334246,21.7327364 C12.4076829,21.9008466 12.2098954,22 11.9997744,22", fillRule: "evenodd" }) }));
1341
1326
  }
1342
1327
 
1343
- var styles$P = {"favorite-button":"favorite-button-module-tXSS3","is-favorite":"favorite-button-module-l557q","favorite-on":"favorite-button-module-6Tsmy","favorite-off":"favorite-button-module-LQauU"};
1328
+ var styles$O = {"favorite-button":"favorite-button-module-tXSS3","is-favorite":"favorite-button-module-l557q","favorite-on":"favorite-button-module-6Tsmy","favorite-off":"favorite-button-module-LQauU"};
1344
1329
 
1345
1330
  function FavoriteButton({ isDisabled, isFavorite, onPress, }) {
1346
- return (jsx(IconButton, { className: clsx(styles$P['favorite-button'], {
1347
- [styles$P['is-favorite']]: isFavorite,
1331
+ return (jsx(IconButton, { className: clsx(styles$O['favorite-button'], {
1332
+ [styles$O['is-favorite']]: isFavorite,
1348
1333
  }), color: "secondary", isDisabled: isDisabled, onPress: onPress, children: isFavorite ? jsx(SolidFavoriteIcon, {}) : jsx(StrokeFavoriteIcon, {}) }));
1349
1334
  }
1350
1335
 
1351
- var styles$O = {"field-error":"field-error-module-FXnIg"};
1336
+ var styles$N = {"field-error":"field-error-module-FXnIg"};
1352
1337
 
1353
1338
  function FieldError({ children }) {
1354
- return (jsx(FieldError$1, { className: styles$O['field-error'], children: children }));
1339
+ return (jsx(FieldError$1, { className: styles$N['field-error'], children: children }));
1355
1340
  }
1356
1341
 
1357
- var styles$N = {"input-container":"input-module-2woJR","shadow-input":"input-module-pNKEt","lg":"input-module-Dx2qC","md":"input-module-sH6e7","focus":"input-module-hEEuy","growing-input":"input-module-6HwY4"};
1342
+ var styles$M = {"input-container":"input-module-2woJR","shadow-input":"input-module-pNKEt","lg":"input-module-Dx2qC","md":"input-module-sH6e7","focus":"input-module-hEEuy","growing-input":"input-module-6HwY4"};
1358
1343
 
1359
1344
  /**
1360
1345
  * This component is used to create an input that grows as the user types.
@@ -1370,20 +1355,20 @@ const Input = forwardRef(({ _pseudo = 'none', autoGrow, size = 'lg', ...inputPro
1370
1355
  ? onChange?.(event)
1371
1356
  : setUncontrolledValue(event.target.value);
1372
1357
  const { pressProps } = usePress({});
1373
- return (jsx("div", { className: clsx(styles$N['input-container'], styles$N[size], styles$N[_pseudo]), children: jsxs("div", { className: clsx({ [styles$N['growing-input']]: autoGrow }), children: [jsx(Input$1, { size: autoGrow ? 1 : undefined, ...props, ...pressProps, ref: ref, onChange: handleChange, onClick: e => {
1358
+ return (jsx("div", { className: clsx(styles$M['input-container'], styles$M[size], styles$M[_pseudo]), children: jsxs("div", { className: clsx({ [styles$M['growing-input']]: autoGrow }), children: [jsx(Input$1, { size: autoGrow ? 1 : undefined, ...props, ...pressProps, ref: ref, onChange: handleChange, onClick: e => {
1374
1359
  e.preventDefault();
1375
1360
  e.stopPropagation();
1376
1361
  e.target.focus();
1377
- } }), autoGrow && jsx("span", { className: styles$N['shadow-input'], children: value })] }) }));
1362
+ } }), autoGrow && jsx("span", { className: styles$M['shadow-input'], children: value })] }) }));
1378
1363
  });
1379
1364
  Input.displayName = 'Input';
1380
1365
 
1381
- var styles$M = {"label":"label-module-LGfJt","required":"label-module-oTWaS"};
1366
+ var styles$L = {"label":"label-module-LGfJt","required":"label-module-oTWaS"};
1382
1367
 
1383
1368
  function Label({ children, isRequired }) {
1384
1369
  if (!children)
1385
1370
  return null;
1386
- return (jsxs(Label$1, { className: styles$M.label, children: [children, isRequired && jsx("span", { className: styles$M.required, children: "*" })] }));
1371
+ return (jsxs(Label$1, { className: styles$L.label, children: [children, isRequired && jsx("span", { className: styles$L.required, children: "*" })] }));
1387
1372
  }
1388
1373
 
1389
1374
  function StrokeCollapseIcon(props) {
@@ -1398,7 +1383,7 @@ function StrokeTrashIcon(props) {
1398
1383
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M7.77273912,6.04398453 L9.07201126,6.04398453 L9.07201126,4.11757519 C9.07201126,3.84748949 9.15880324,3.63104347 9.33238719,3.46823712 C9.50597114,3.30543077 9.73570292,3.22402759 10.0215825,3.22402759 L13.3263825,3.22402759 C13.6186194,3.22402759 13.850313,3.30543077 14.0214633,3.46823712 C14.1926136,3.63104347 14.2781888,3.84748949 14.2781888,4.11757519 L14.2781888,6.04398453 L15.5846129,6.04398453 L15.5846129,4.04352264 C15.5846129,3.40769382 15.3900697,2.90814951 15.0009834,2.5448897 C14.6118971,2.1816299 14.0799703,2 13.405203,2 L9.942762,2 C9.26869007,2 8.73850162,2.1816299 8.35219662,2.5448897 C7.96589162,2.90814951 7.77273912,3.40769382 7.77273912,4.04352264 L7.77273912,6.04398453 Z M3.60955531,6.6940676 L19.7561406,6.6940676 C19.9248076,6.6940676 20.0683931,6.6332263 20.186897,6.51154371 C20.305401,6.38986111 20.3646529,6.242352 20.3646529,6.06901638 C20.3646529,5.9003494 20.3052023,5.75537328 20.186301,5.63408801 C20.0673997,5.51280275 19.9240129,5.45216011 19.7561406,5.45216011 L3.60955531,5.45216011 C3.44734496,5.45216011 3.30519982,5.51300141 3.18311989,5.63468401 C3.06103996,5.75636661 3,5.90114406 3,6.06901638 C3,6.24314666 3.06103996,6.39085444 3.18311989,6.5121397 C3.30519982,6.63342497 3.44734496,6.6940676 3.60955531,6.6940676 Z M7.56920636,22 L15.8049825,22 C16.4210441,22 16.9252074,21.8108208 17.3174724,21.4324624 C17.7097373,21.0541041 17.9209684,20.5545101 17.9511655,19.9336805 L18.6066126,6.5283806 L17.2870766,6.5283806 L16.6578534,19.8059883 C16.6444435,20.0808419 16.5455825,20.3084381 16.3612707,20.4887766 C16.1769588,20.6691152 15.9469787,20.7592845 15.6713303,20.7592845 L7.68497866,20.7592845 C7.41479362,20.7592845 7.18757,20.6677246 7.00330778,20.4846047 C6.81904556,20.3014848 6.72015983,20.0752793 6.70665057,19.8059883 L6.05358753,6.5295726 L4.76996029,6.5295726 L5.41587138,19.9420245 C5.4468632,20.562854 5.65806942,21.0610573 6.04949005,21.4366344 C6.44091068,21.8122115 6.94748278,22 7.56920636,22 Z M9.00213069,19.1375783 C9.15957307,19.1375783 9.2862223,19.0920591 9.38207839,19.0010206 C9.47793448,18.9099822 9.5230812,18.7917017 9.51751857,18.6461793 L9.2314403,8.86811345 C9.22587767,8.72338566 9.17618647,8.60729053 9.0823667,8.51982806 C8.98854694,8.43236558 8.86649184,8.38863435 8.71620142,8.38863435 C8.55945437,8.38863435 8.43436962,8.43395491 8.34094719,8.52459603 C8.24752475,8.61523714 8.20081354,8.73371626 8.20081354,8.88003338 L8.48555081,18.6485633 C8.49121278,18.7988537 8.54055631,18.9179288 8.63358142,19.0057886 C8.72660652,19.0936484 8.84945628,19.1375783 9.00213069,19.1375783 Z M11.6876904,19.1375783 C11.8451328,19.1375783 11.9717821,19.0922578 12.0676381,19.0016166 C12.1634942,18.9109755 12.2114223,18.7924964 12.2114223,18.6461793 L12.2114223,8.88003338 C12.2114223,8.73451092 12.1634942,8.61623047 12.0676381,8.52519202 C11.9717821,8.43415357 11.8451328,8.38863435 11.6876904,8.38863435 C11.5310427,8.38863435 11.4032015,8.43415357 11.3041668,8.52519202 C11.205132,8.61623047 11.1556147,8.73451092 11.1556147,8.88003338 L11.1556147,18.6461793 C11.1556147,18.7924964 11.205132,18.9109755 11.3041668,19.0016166 C11.4032015,19.0922578 11.5310427,19.1375783 11.6876904,19.1375783 Z M14.3635653,19.1387703 C14.516339,19.1387703 14.6392384,19.0948404 14.7322635,19.0069806 C14.8252886,18.9191208 14.8745825,18.802827 14.8801451,18.6580992 L15.1662234,8.88122537 C15.1662234,8.73490825 15.1194873,8.6166278 15.0260152,8.52638402 C14.9325431,8.43614023 14.8070859,8.39101833 14.6496435,8.39101833 C14.4993531,8.39101833 14.3772732,8.4345509 14.2834037,8.52161604 C14.1895343,8.60868118 14.1398183,8.7277563 14.1342556,8.87884138 L13.8483264,18.6485633 C13.8483264,18.7932911 13.8948389,18.9111742 13.987864,19.0022126 C14.0808891,19.0932511 14.2061229,19.1387703 14.3635653,19.1387703 Z" }) }));
1399
1384
  }
1400
1385
 
1401
- var styles$L = {"field":"number-field-module-gmnog","button-input-container":"number-field-module-8Lvgh","zoom-in-text":"number-field-module-OlEoa"};
1386
+ var styles$K = {"field":"number-field-module-gmnog","button-input-container":"number-field-module-8Lvgh","zoom-in-text":"number-field-module-OlEoa"};
1402
1387
 
1403
1388
  /**
1404
1389
  * This component is used to create a number field.
@@ -1406,7 +1391,7 @@ var styles$L = {"field":"number-field-module-gmnog","button-input-container":"nu
1406
1391
  */
1407
1392
  function NumberField({ autoFocus, autoGrow, defaultValue, formatOptions = { style: 'decimal', useGrouping: false }, isDisabled, isInvalid, isReadOnly, isRequired, label, maxLength, maxValue, minValue, name, onChange, onInput, onKeyUp, placeholder, showLabel = false, size = 'lg', value, withButtons, }) {
1408
1393
  const inputRef = useRef(null);
1409
- return (jsxs(NumberField$1, { "aria-label": label, autoFocus: autoFocus, className: clsx(styles$L.field, styles$L[size]), defaultValue: defaultValue, formatOptions: formatOptions, isDisabled: isDisabled, isInvalid: isInvalid, isReadOnly: isReadOnly, isRequired: isRequired, maxValue: maxValue, minValue: minValue, name: name, onChange: onChange, onInput: onInput, value: value, children: [showLabel && jsx(Label, { isRequired: isRequired, children: label }), jsxs("div", { className: styles$L['button-input-container'], children: [withButtons && (jsx(Button$1, { isDisabled: isDisabled,
1394
+ return (jsxs(NumberField$1, { "aria-label": label, autoFocus: autoFocus, className: clsx(styles$K.field, styles$K[size]), defaultValue: defaultValue, formatOptions: formatOptions, isDisabled: isDisabled, isInvalid: isInvalid, isReadOnly: isReadOnly, isRequired: isRequired, maxValue: maxValue, minValue: minValue, name: name, onChange: onChange, onInput: onInput, value: value, children: [showLabel && jsx(Label, { isRequired: isRequired, children: label }), jsxs("div", { className: styles$K['button-input-container'], children: [withButtons && (jsx(Button$1, { isDisabled: isDisabled,
1410
1395
  // eslint-disable-next-line @typescript-eslint/ban-ts-comment
1411
1396
  // @ts-expect-error
1412
1397
  onClick: e => e.preventDefault(), onPressStart: e => e.target.focus(), slot: "decrement", children: (value || 0) <= 1 ? jsx(StrokeTrashIcon, {}) : jsx(StrokeCollapseIcon, {}) })), jsx(Input, { ref: inputRef, autoGrow: autoGrow, maxLength: maxLength, onFocus: e => (e.target.selectionStart = e.target.value.length || 0), onKeyUp: e => onKeyUp?.(e), placeholder: placeholder, size: size }), withButtons && (jsx(Button$1, { isDisabled: isDisabled,
@@ -1419,7 +1404,7 @@ function SolidCartIcon(props) {
1419
1404
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M7.89619008,16.6656848 C9.33405626,16.6656848 10.4996925,17.831321 10.4996925,19.2690253 C10.4996925,20.7068915 9.33405626,21.8725278 7.89619008,21.8725278 C6.45832389,21.8725278 5.29268766,20.7068915 5.29268766,19.2690253 C5.29268766,17.831321 6.45832389,16.6656848 7.89619008,16.6656848 Z M16.8207199,16.6656848 C18.2585861,16.6656848 19.4242223,17.831321 19.4242223,19.2690253 C19.4242223,20.7068915 18.2585861,21.8725278 16.8207199,21.8725278 C15.3828537,21.8725278 14.2172175,20.7068915 14.2172175,19.2690253 C14.2172175,17.831321 15.3828537,16.6656848 16.8207199,16.6656848 Z M7.89619008,18.0995047 C7.25122196,18.0995047 6.72650762,18.6242191 6.72650762,19.2690253 C6.72650762,19.9139935 7.25122196,20.4387078 7.89619008,20.4387078 C8.54115819,20.4387078 9.06587253,19.9139935 9.06587253,19.2690253 C9.06587253,18.6242191 8.54115819,18.0995047 7.89619008,18.0995047 Z M16.8207199,18.0995047 C16.1757518,18.0995047 15.6510375,18.6242191 15.6510375,19.2690253 C15.6510375,19.9139935 16.1757518,20.4387078 16.8207199,20.4387078 C17.465688,20.4387078 17.9904024,19.9139935 17.9904024,19.2690253 C17.9904024,18.6242191 17.465688,18.0995047 16.8207199,18.0995047 Z M4.58909785,3 C4.6054446,3 4.6206584,3.00372253 4.63668145,3.00485547 C4.65869291,3.00631211 4.68038067,3.0079306 4.70174473,3.01132943 C4.72958275,3.0158612 4.75628783,3.02233516 4.78299291,3.02994206 C4.8001489,3.03479753 4.81698119,3.03949115 4.83365164,3.04564141 C4.8622989,3.05616159 4.88948953,3.06862396 4.91619461,3.08254297 L4.956495,3.10439258 C4.98287638,3.12025378 5.00763927,3.13789532 5.03175477,3.15699349 L5.06736154,3.18645 C5.08921115,3.20603373 5.10911857,3.22707409 5.1283786,3.2492474 C5.13986987,3.26251902 5.1511993,3.27562878 5.16171948,3.28970964 C5.17806623,3.31155925 5.19230894,3.33421811 5.2060661,3.35768621 C5.21626258,3.37500405 5.22597352,3.39216004 5.23455152,3.41028712 C5.24555725,3.43326967 5.25462079,3.45706147 5.26319878,3.48150066 C5.27032014,3.50205548 5.27711779,3.52244845 5.28245881,3.54381251 C5.28860907,3.56825171 5.29249345,3.59317645 5.29605412,3.61858673 C5.29799631,3.63299129 5.30252808,3.64642476 5.30382287,3.66115301 L5.510504,6.30738355 L21.2869744,6.30772748 C21.3139222,6.30835464 21.3370666,6.31256272 21.3603729,6.3151523 C21.3861069,6.31790373 21.4120027,6.31936037 21.4369275,6.32486324 C21.4591008,6.32923316 21.4726961,6.33603082 21.4875862,6.34056259 C21.5163953,6.34914058 21.5452044,6.35723303 21.5722332,6.36920985 C21.5918169,6.37778785 21.6092966,6.38911728 21.6275855,6.39931376 C21.6497588,6.41145243 21.6722559,6.42278186 21.6928107,6.43718642 C21.711747,6.45029618 21.7280937,6.46583368 21.7455734,6.48072379 C21.763215,6.49577574 21.7815039,6.51001845 21.7976888,6.52668889 C21.8132263,6.54287379 21.8261742,6.56067718 21.8400932,6.57815686 C21.8551452,6.59676949 21.8706827,6.61473473 21.8836306,6.634804 C21.8954456,6.65293108 21.9043473,6.67251481 21.9145437,6.69161299 C21.9258732,6.71330075 21.9381737,6.73434111 21.9473991,6.75716182 C21.9559771,6.77868773 21.9614799,6.80134658 21.9679539,6.82368174 C21.9744279,6.8456932 21.9820348,6.86705726 21.9864047,6.89003981 C21.9915839,6.91658304 21.9925549,6.94393552 21.994659,6.97128799 C21.9959538,6.98909138 22,7.00608552 22,7.0242126 C21.9988671,7.05496391 21.994659,7.07794646 21.9922312,7.10109086 C21.9894798,7.1269867 21.9880232,7.15320623 21.9825203,7.17813097 L20.5915903,13.2322533 L20.587706,13.2487619 C20.5797754,13.2835594 20.5681222,13.3164147 20.555498,13.3486227 C20.5524229,13.3567151 20.5499951,13.3651313 20.5465963,13.3730619 C20.5299259,13.4117438 20.5096948,13.4483216 20.4870359,13.4827955 C20.4797527,13.4938012 20.4710129,13.5031884 20.4632441,13.5137086 C20.445117,13.5381478 20.4265044,13.5619396 20.4056259,13.5836274 C20.3944583,13.5952805 20.3823196,13.605477 20.3705046,13.6163208 C20.3505972,13.6344479 20.3302043,13.6517658 20.3083546,13.6674651 C20.2941119,13.6778235 20.2795455,13.6872107 20.2646554,13.6964361 C20.2424821,13.7101932 20.2198233,13.7223319 20.1963552,13.7334995 L20.148286,13.7550254 C20.1214191,13.7655456 20.0935811,13.7734762 20.0654194,13.7807594 C20.0513385,13.7843201 20.037905,13.7888518 20.0235005,13.7916033 C19.9798012,13.8000194 19.9351309,13.8053604 19.8898132,13.8053604 L6.09623539,13.8051986 L6.20774933,15.2317353 L19.411064,15.2317353 C19.8069466,15.2317353 20.1278931,15.5528437 20.1278931,15.9487262 C20.1278931,16.3446088 19.8069466,16.6657172 19.411064,16.6657172 L5.54384488,16.6657172 C5.49593759,16.6657172 5.44932509,16.660538 5.40384553,16.6514744 C5.38863173,16.6483993 5.37471272,16.6425728 5.35998446,16.6386884 C5.33052795,16.6307578 5.30090959,16.6231509 5.27290972,16.6116596 C5.25543003,16.6043764 5.23940699,16.5945036 5.22257469,16.5859256 C5.19910659,16.5741106 5.17547665,16.5627812 5.15362704,16.5485385 C5.13711844,16.5376946 5.12255203,16.5249086 5.10701453,16.5127699 C5.08694526,16.4972324 5.06687599,16.4821804 5.04874891,16.4647007 C5.03434435,16.4509436 5.02204383,16.4357298 5.00893406,16.4208397 C4.99226362,16.4019033 4.97575503,16.3834526 4.96118862,16.3628977 C4.94937364,16.3463891 4.93966271,16.3285858 4.92930437,16.3111061 C4.91668015,16.2899039 4.90437963,16.2688635 4.8940213,16.2462046 C4.88511961,16.2267828 4.87832195,16.2065516 4.87103875,16.1861587 C4.86310815,16.163338 4.8553394,16.1406791 4.84967468,16.1168873 C4.84433367,16.0950377 4.84109669,16.0728644 4.83785971,16.0502055 L4.82992911,16.0045641 L3.92600265,4.43381996 L2.7169909,4.43381996 C2.32110834,4.43381996 2,4.11287347 2,3.7169909 C2,3.32094649 2.32110834,3 2.7169909,3 Z", fillRule: "evenodd" }) }));
1420
1405
  }
1421
1406
 
1422
- var styles$K = {"manual-input-container":"add-to-cart-button-module-AWFvQ","left-button-spacer":"add-to-cart-button-module-SS7WM"};
1407
+ var styles$J = {"manual-input-container":"add-to-cart-button-module-AWFvQ","left-button-spacer":"add-to-cart-button-module-SS7WM"};
1423
1408
 
1424
1409
  function AddToCartButton({ initialState = 'initial', isDisabled = false, onChange, quantity, }) {
1425
1410
  const [currentState, setState] = useState(initialState);
@@ -1507,7 +1492,7 @@ function ManualInputState({ isDisabled, onCancel, onConfirm, quantity, }) {
1507
1492
  e.key === 'Enter' && onConfirm(ensureNumber(updatedQuantity));
1508
1493
  e.key === 'Escape' && onCancel();
1509
1494
  };
1510
- return (jsxs("div", { className: styles$K['manual-input-container'], children: [jsx("div", { className: styles$K['left-button-spacer'] }), jsx(NumberField, { autoFocus: true, autoGrow: true, defaultValue: quantity ? ensureNumber(quantity) : undefined, formatOptions: {
1495
+ return (jsxs("div", { className: styles$J['manual-input-container'], children: [jsx("div", { className: styles$J['left-button-spacer'] }), jsx(NumberField, { autoFocus: true, autoGrow: true, defaultValue: quantity ? ensureNumber(quantity) : undefined, formatOptions: {
1511
1496
  maximumFractionDigits: 0,
1512
1497
  style: 'decimal',
1513
1498
  useGrouping: false,
@@ -1557,12 +1542,12 @@ const ConnectedAddToCartButton = ({ onAddToCart, productId }) => {
1557
1542
  return (jsx(AddToCartButton, { isDisabled: isPendingDeleteCartLine || isLoadingCartLines || isPendingAddToCart, onChange: handleChange, quantity: quantity }));
1558
1543
  };
1559
1544
 
1560
- var styles$J = {"tag":"tag-module-B7r15","body":"tag-module-4cfCf","shape":"tag-module-c7CRb"};
1545
+ var styles$I = {"tag":"tag-module-B7r15","body":"tag-module-4cfCf","shape":"tag-module-c7CRb"};
1561
1546
 
1562
1547
  function Tag({ children }) {
1563
1548
  if (!children)
1564
1549
  return null;
1565
- return (jsxs("div", { className: styles$J.tag, children: [jsx("div", { className: styles$J.body, children: children }), jsx("svg", { className: styles$J.shape, height: "16", viewBox: "0 0 9 16", width: "9", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M1.92461763,0 L0,0 L0,16 L1.92461763,16 L6.4117887,16 L8.87489381,7.57121588 C9.23711515,6.3325062 8.79482383,4.99454094 7.78060408,4.2560794 L1.92461763,0 Z", fill: "currentColor" }) })] }));
1550
+ return (jsxs("div", { className: styles$I.tag, children: [jsx("div", { className: styles$I.body, children: children }), jsx("svg", { className: styles$I.shape, height: "16", viewBox: "0 0 9 16", width: "9", xmlns: "http://www.w3.org/2000/svg", children: jsx("path", { d: "M1.92461763,0 L0,0 L0,16 L1.92461763,16 L6.4117887,16 L8.87489381,7.57121588 C9.23711515,6.3325062 8.79482383,4.99454094 7.78060408,4.2560794 L1.92461763,0 Z", fill: "currentColor" }) })] }));
1566
1551
  }
1567
1552
 
1568
1553
  const IntlContext = createContext({
@@ -1598,7 +1583,7 @@ function useFormattedMessage() {
1598
1583
 
1599
1584
  const FormattedMessage = ({ fallbackValue, id, optional, replacementValues, }) => useFormattedMessage()(id, { fallbackValue, optional, replacementValues });
1600
1585
 
1601
- var styles$I = {"product-price":"product-price-module-oIU1K","original-price":"product-price-module-til0s","is-hidden":"product-price-module-V1NCf","current-price-wrapper":"product-price-module-FfVhl","current-price":"product-price-module-pvy2w","wholes":"product-price-module-GCw07","dot":"product-price-module-N56iV","decimals":"product-price-module-eWOOF","vat":"product-price-module-96DoG"};
1586
+ var styles$H = {"product-price":"product-price-module-oIU1K","original-price":"product-price-module-til0s","is-hidden":"product-price-module-V1NCf","current-price-wrapper":"product-price-module-FfVhl","current-price":"product-price-module-pvy2w","wholes":"product-price-module-GCw07","dot":"product-price-module-N56iV","decimals":"product-price-module-eWOOF","vat":"product-price-module-96DoG"};
1602
1587
 
1603
1588
  const formatPrice = (price) => new Intl.NumberFormat('en-US', {
1604
1589
  maximumFractionDigits: 2,
@@ -1611,22 +1596,22 @@ function ProductPrice({ className, isVatIncluded, originalPrice, price, }) {
1611
1596
  const priceWithCurrency = formatPrice(price);
1612
1597
  const [wholes, decimals] = priceWithCurrency.split('.');
1613
1598
  const showOriginalPrice = priceWithCurrency !== originalPriceWithCurrency;
1614
- return (jsxs("div", { className: clsx(className, styles$I['product-price']), children: [jsx("span", { className: clsx(styles$I['original-price'], {
1615
- [styles$I['is-hidden']]: !showOriginalPrice,
1616
- }), children: originalPriceWithCurrency }), jsxs("div", { className: styles$I['current-price-wrapper'], children: [jsxs("div", { className: styles$I['current-price'], children: [jsx("span", { className: styles$I.wholes, children: wholes }), jsx("span", { className: styles$I.dot, children: "." }), jsx("span", { className: styles$I.decimals, children: decimals })] }), jsx("span", { className: styles$I.vat, children: isVatIncluded ? (jsx(FormattedMessage, { id: "Incl. VAT" })) : (jsx(FormattedMessage, { id: "Excl. VAT" })) })] })] }));
1599
+ return (jsxs("div", { className: clsx(className, styles$H['product-price']), children: [jsx("span", { className: clsx(styles$H['original-price'], {
1600
+ [styles$H['is-hidden']]: !showOriginalPrice,
1601
+ }), children: originalPriceWithCurrency }), jsxs("div", { className: styles$H['current-price-wrapper'], children: [jsxs("div", { className: styles$H['current-price'], children: [jsx("span", { className: styles$H.wholes, children: wholes }), jsx("span", { className: styles$H.dot, children: "." }), jsx("span", { className: styles$H.decimals, children: decimals })] }), jsx("span", { className: styles$H.vat, children: isVatIncluded ? (jsx(FormattedMessage, { id: "Incl. VAT" })) : (jsx(FormattedMessage, { id: "Excl. VAT" })) })] })] }));
1617
1602
  }
1618
1603
 
1619
- var styles$H = {"product-sku":"product-sku-module-ITb8x"};
1604
+ var styles$G = {"product-sku":"product-sku-module-ITb8x"};
1620
1605
 
1621
1606
  function ProductSku({ sku }) {
1622
- return (jsx("p", { className: styles$H['product-sku'], "data-test-selector": "productNumber", children: sku }));
1607
+ return (jsx("p", { className: styles$G['product-sku'], "data-test-selector": "productNumber", children: sku }));
1623
1608
  }
1624
1609
 
1625
1610
  function isResponsiveImage(image) {
1626
1611
  return Boolean(image.lg);
1627
1612
  }
1628
1613
 
1629
- var styles$G = {"image":"image-module-lg7Kj","contain":"image-module-KFEgG","cover":"image-module-tVKFe","has-error":"image-module-LM93B","picture":"image-module-pNYjR"};
1614
+ var styles$F = {"image":"image-module-lg7Kj","contain":"image-module-KFEgG","cover":"image-module-tVKFe","has-error":"image-module-LM93B","picture":"image-module-pNYjR"};
1630
1615
 
1631
1616
  function Image({ className, fallbackSrc = 'https://res.cloudinary.com/dkz9eknwh/image/upload/v1716545808/images/product-card/fallback_p6ngjz.svg', fit = 'cover', height, image, loading = 'eager', title, width, }) {
1632
1617
  const [hasError, setHasError] = useState(false);
@@ -1653,22 +1638,22 @@ function ImageComponent({ className, fallbackSrc, fit = 'cover', hasError, image
1653
1638
  const srcSet = !hasError
1654
1639
  ? `${image[1]} 1x, ${image[2]} 2x, ${image[3]} 3x`
1655
1640
  : undefined;
1656
- return (jsx("img", { alt: image.altText, className: clsx(styles$G.image, className, styles$G[fit], {
1657
- [styles$G['has-error']]: hasError,
1641
+ return (jsx("img", { alt: image.altText, className: clsx(styles$F.image, className, styles$F[fit], {
1642
+ [styles$F['has-error']]: hasError,
1658
1643
  }), src: !hasError ? image[3] : fallbackSrc, srcSet: srcSet, ...rest }));
1659
1644
  }
1660
1645
  function PictureComponent({ className, fallbackSrc, fit = 'cover', hasError, image, ...rest }) {
1661
1646
  if (!isResponsiveImage(image))
1662
1647
  return null;
1663
- return (jsxs("picture", { className: clsx(styles$G.picture, className), children: [jsx("source", { media: "(max-width: 768px)", srcSet: `${image.sm[1]} 1x, ${image.sm[2]} 2x, ${image.sm[3]} 3x` }), jsx("source", { media: "(max-width: 1439px)", srcSet: `${image.md[1]} 1x, ${image.md[2]} 2x, ${image.md[3]} 3x` }), jsx("source", { media: "(min-width: 1440px)", srcSet: `${image.lg[1]} 1x, ${image.lg[2]} 2x, ${image.lg[3]} 3x` }), jsx("img", { className: clsx(styles$G[fit], {
1664
- [styles$G['has-error']]: hasError,
1648
+ return (jsxs("picture", { className: clsx(styles$F.picture, className), children: [jsx("source", { media: "(max-width: 768px)", srcSet: `${image.sm[1]} 1x, ${image.sm[2]} 2x, ${image.sm[3]} 3x` }), jsx("source", { media: "(max-width: 1439px)", srcSet: `${image.md[1]} 1x, ${image.md[2]} 2x, ${image.md[3]} 3x` }), jsx("source", { media: "(min-width: 1440px)", srcSet: `${image.lg[1]} 1x, ${image.lg[2]} 2x, ${image.lg[3]} 3x` }), jsx("img", { className: clsx(styles$F[fit], {
1649
+ [styles$F['has-error']]: hasError,
1665
1650
  }), src: !hasError ? image.lg[3] : fallbackSrc, ...rest })] }));
1666
1651
  }
1667
1652
 
1668
- var styles$F = {"product-card":"product-card-module-pLaiB","favorite-button":"product-card-module-tvEdz","content":"product-card-module-e0kMu","top":"product-card-module-Q0VvF","tag":"product-card-module-HkWBE","title":"product-card-module-CStNi","bottom":"product-card-module-kD2tU","image":"product-card-module-p-zoi","price":"product-card-module-irW0D","add-to-cart-button":"product-card-module-SnCvX"};
1653
+ var styles$E = {"product-card":"product-card-module-pLaiB","favorite-button":"product-card-module-tvEdz","content":"product-card-module-e0kMu","top":"product-card-module-Q0VvF","tag":"product-card-module-HkWBE","title":"product-card-module-CStNi","bottom":"product-card-module-kD2tU","image":"product-card-module-p-zoi","price":"product-card-module-irW0D","add-to-cart-button":"product-card-module-SnCvX"};
1669
1654
 
1670
1655
  function ProductCard({ addToCartButton: AddToCartButton, areaSelected, favoriteButton: FavoriteButton, href, id, image, onClick, onMouseDown, onMouseMove, onPress, price, role, sku, tags, title, }) {
1671
- return (jsxs(RouteLink, { "aria-selected": areaSelected, className: styles$F['product-card'], "data-product-id": sku, href: href, id: id, onClick: onClick, onMouseDown: onMouseDown, onMouseMove: onMouseMove, onPress: onPress, role: role, children: [jsx("div", { className: styles$F.image, children: jsx(Image, { ...image }) }), jsx("div", { className: styles$F['favorite-button'], children: FavoriteButton && FavoriteButton }), jsxs("div", { className: styles$F.content, children: [jsxs("div", { className: styles$F.top, children: [jsx("div", { className: styles$F.tag, children: tags?.map(tag => (jsx(Tag, { children: jsx(FormattedMessage, { optional: true, fallbackValue: tag, id: `tag.${tag.toLowerCase()}` }) }, tag))) }), jsx("h2", { className: styles$F.title, children: title }), jsx(ProductSku, { sku: sku })] }), jsxs("div", { className: styles$F.bottom, children: [jsx("div", { className: styles$F.price, children: jsx(ProductPrice, { isVatIncluded: price.isVatIncluded, originalPrice: price.originalPrice, price: price.price }) }), jsx("div", { className: styles$F['add-to-cart-button'], children: AddToCartButton })] })] })] }));
1656
+ return (jsxs(RouteLink, { "aria-selected": areaSelected, className: styles$E['product-card'], "data-product-id": sku, href: href, id: id, onClick: onClick, onMouseDown: onMouseDown, onMouseMove: onMouseMove, onPress: onPress, role: role, children: [jsx("div", { className: styles$E.image, children: jsx(Image, { ...image }) }), jsx("div", { className: styles$E['favorite-button'], children: FavoriteButton && FavoriteButton }), jsxs("div", { className: styles$E.content, children: [jsxs("div", { className: styles$E.top, children: [jsx("div", { className: styles$E.tag, children: tags?.map(tag => (jsx(Tag, { children: jsx(FormattedMessage, { optional: true, fallbackValue: tag, id: `tag.${tag.toLowerCase()}` }) }, tag))) }), jsx("h2", { className: styles$E.title, children: title }), jsx(ProductSku, { sku: sku })] }), jsxs("div", { className: styles$E.bottom, children: [jsx("div", { className: styles$E.price, children: jsx(ProductPrice, { isVatIncluded: price.isVatIncluded, originalPrice: price.originalPrice, price: price.price }) }), jsx("div", { className: styles$E['add-to-cart-button'], children: AddToCartButton })] })] })] }));
1672
1657
  }
1673
1658
 
1674
1659
  /**
@@ -6980,7 +6965,7 @@ function GlyphsArrowBoldCapsLeftIcon(props) {
6980
6965
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "11", viewBox: "0 0 11 11", width: "11", children: jsx("path", { d: "M2.31124163,11 C2.06716529,11 1.91839241,10.7730596 2.04771379,10.5980857 L6.08820761,5.13116556 C6.42092595,4.68081431 6.37243043,4.10595375 5.96732409,3.70073526 L2.70240329,0.432177991 C2.53178078,0.261409485 2.67540212,0 2.93972934,0 L5.48361239,0 C5.57518542,0 5.6619622,0.0340936243 5.72102726,0.0931942463 L8.14882304,2.52367916 C9.1607451,3.53657521 9.28198389,4.9729381 8.45036569,6.09787751 L4.91836426,10.876542 C4.86160851,10.9533653 4.7620417,11 4.65492523,11 L2.31124163,11 Z", fillRule: "evenodd", transform: "matrix(-1 0 0 1 11 0)" }) }));
6981
6966
  }
6982
6967
 
6983
- var styles$E = {"carousel":"carousel-module-ealh-","swiper":"carousel-module-IftbN","has-overflow":"carousel-module-tPg7k","slide":"carousel-module-bUMlb","navigation-button":"carousel-module-kcqEE","is-locked":"carousel-module-uCrOA","navigation-button-next":"carousel-module-T7bTr","is-dragging":"carousel-module-34OWD","navigation-button-prev":"carousel-module-984Rr","navigation-buttons":"carousel-module-k7Z4S","navigation-button-wrapper":"carousel-module-Hi-0z","top":"carousel-module-nL-O8","center":"carousel-module-5SGYn"};
6968
+ var styles$D = {"carousel":"carousel-module-ealh-","swiper":"carousel-module-IftbN","has-overflow":"carousel-module-tPg7k","slide":"carousel-module-bUMlb","navigation-button":"carousel-module-kcqEE","is-locked":"carousel-module-uCrOA","navigation-button-next":"carousel-module-T7bTr","is-dragging":"carousel-module-34OWD","navigation-button-prev":"carousel-module-984Rr","navigation-buttons":"carousel-module-k7Z4S","navigation-button-wrapper":"carousel-module-Hi-0z","top":"carousel-module-nL-O8","center":"carousel-module-5SGYn"};
6984
6969
 
6985
6970
  function CarouselNavigationButton({ direction, isDisabled = false, }) {
6986
6971
  const swiper = useSwiper();
@@ -6992,8 +6977,8 @@ function CarouselNavigationButton({ direction, isDisabled = false, }) {
6992
6977
  swiper.slidePrev();
6993
6978
  }
6994
6979
  }
6995
- return (jsx(Button$1, { className: clsx(styles$E['navigation-button'], {
6996
- [styles$E['is-locked']]: swiper.isLocked,
6980
+ return (jsx(Button$1, { className: clsx(styles$D['navigation-button'], {
6981
+ [styles$D['is-locked']]: swiper.isLocked,
6997
6982
  }), isDisabled: isDisabled, onPress: handleNavigation, children: direction === 'previous' ? (jsx(GlyphsArrowBoldCapsLeftIcon, {})) : (jsx(GlyphsArrowBoldCapsRightIcon, {})) }));
6998
6983
  }
6999
6984
 
@@ -7010,13 +6995,13 @@ function Carousel({ breakpoints, className, hasNavigation = true, hasOverflow =
7010
6995
  const showNavigation = hasNavigation && !isLocked;
7011
6996
  if (slides.length === 0)
7012
6997
  return null;
7013
- return (jsx("div", { className: clsx(styles$E.carousel, className), children: jsxs(Swiper, { breakpoints: breakpoints, className: clsx(styles$E.swiper, {
7014
- [styles$E['is-dragging']]: isDragging,
7015
- [styles$E['has-overflow']]: hasOverflow,
6998
+ return (jsx("div", { className: clsx(styles$D.carousel, className), children: jsxs(Swiper, { breakpoints: breakpoints, className: clsx(styles$D.swiper, {
6999
+ [styles$D['is-dragging']]: isDragging,
7000
+ [styles$D['has-overflow']]: hasOverflow,
7016
7001
  }), freeMode: {
7017
7002
  enabled: true,
7018
7003
  sticky: true,
7019
- }, modules: [freeMode], onSlideChange: swiper => handleSlideChange(swiper), onSliderMove: () => setIsDragging(true), onSwiper: swiper => setIsLocked(swiper.isLocked), onTouchEnd: () => setIsDragging(false), onUpdate: swiper => handleSlideChange(swiper), slidesPerView: slidesPerView, spaceBetween: spaceBetween, children: [slides.map((slide, index) => (jsx(SwiperSlide, { className: clsx(styles$E.slide, slideClasses), children: slide }, index))), showNavigation && (jsxs("div", { className: clsx(styles$E['navigation-buttons'], styles$E[navigationButtonsPosition]), children: [jsx("div", { className: clsx(styles$E['navigation-button-wrapper'], styles$E['navigation-button-prev']), children: jsx(CarouselNavigationButton, { direction: "previous", isDisabled: isBeginning }) }), jsx("div", { className: clsx(styles$E['navigation-button-wrapper'], styles$E['navigation-button-next']), children: jsx(CarouselNavigationButton, { direction: "next", isDisabled: isEnd }) })] }))] }) }));
7004
+ }, modules: [freeMode], onSlideChange: swiper => handleSlideChange(swiper), onSliderMove: () => setIsDragging(true), onSwiper: swiper => setIsLocked(swiper.isLocked), onTouchEnd: () => setIsDragging(false), onUpdate: swiper => handleSlideChange(swiper), slidesPerView: slidesPerView, spaceBetween: spaceBetween, children: [slides.map((slide, index) => (jsx(SwiperSlide, { className: clsx(styles$D.slide, slideClasses), children: slide }, index))), showNavigation && (jsxs("div", { className: clsx(styles$D['navigation-buttons'], styles$D[navigationButtonsPosition]), children: [jsx("div", { className: clsx(styles$D['navigation-button-wrapper'], styles$D['navigation-button-prev']), children: jsx(CarouselNavigationButton, { direction: "previous", isDisabled: isBeginning }) }), jsx("div", { className: clsx(styles$D['navigation-button-wrapper'], styles$D['navigation-button-next']), children: jsx(CarouselNavigationButton, { direction: "next", isDisabled: isEnd }) })] }))] }) }));
7020
7005
  }
7021
7006
 
7022
7007
  function CategoryCarousel({ categoryCards }) {
@@ -7030,10 +7015,10 @@ function CategoryCarousel({ categoryCards }) {
7030
7015
  }, slides: categoryCards, spaceBetween: 8 }));
7031
7016
  }
7032
7017
 
7033
- var styles$D = {"accordion":"accordion-module-9WvAH","white":"accordion-module-CaVdG","accordion-item":"accordion-module-lf9d-","lg":"accordion-module-0qnae","with-seperators":"accordion-module-yOLrW","border-top":"accordion-module-J1-Eb","border-bottom":"accordion-module-4LI1K","indented":"accordion-module-6CcEH","button":"accordion-module--Rwpb","icon":"accordion-module-Y50uq","focus":"accordion-module-M4BZs","panel":"accordion-module-KZjMo","content":"accordion-module-ejMH3","is-open":"accordion-module-W0F1z"};
7018
+ var styles$C = {"accordion":"accordion-module-9WvAH","white":"accordion-module-CaVdG","accordion-item":"accordion-module-lf9d-","lg":"accordion-module-0qnae","with-seperators":"accordion-module-yOLrW","border-top":"accordion-module-J1-Eb","border-bottom":"accordion-module-4LI1K","indented":"accordion-module-6CcEH","button":"accordion-module--Rwpb","icon":"accordion-module-Y50uq","focus":"accordion-module-M4BZs","panel":"accordion-module-KZjMo","content":"accordion-module-ejMH3","is-open":"accordion-module-W0F1z"};
7034
7019
 
7035
7020
  function Accordion({ borderPosition = 'bottom', children, color = 'black', hasLineSeparator = true, indented, size = 'md', }) {
7036
- return (jsx("div", { className: clsx({ [styles$D.indented]: indented }, styles$D.accordion, styles$D[color], styles$D[size], styles$D[`border-${borderPosition}`], hasLineSeparator && styles$D['with-seperators']), children: children &&
7021
+ return (jsx("div", { className: clsx({ [styles$C.indented]: indented }, styles$C.accordion, styles$C[color], styles$C[size], styles$C[`border-${borderPosition}`], hasLineSeparator && styles$C['with-seperators']), children: children &&
7037
7022
  Children.map(children, child => {
7038
7023
  return cloneElement(child, { size });
7039
7024
  }) }));
@@ -7043,7 +7028,7 @@ function GlyphsChevronsSlimDownIcon(props) {
7043
7028
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "12", viewBox: "0 0 12 12", width: "12", children: jsx("path", { d: "M6,9 L1,4.06645029 C1.08169007,3.87890406 1.19817561,3.69487412 1.34945663,3.51436046 C1.50073764,3.3338468 1.68216803,3.16239331 1.89374779,3 L5.98800959,7.08347812 L9.9960307,3 C10.2121071,3.16649238 10.4031847,3.33794587 10.5692635,3.51436046 C10.7353424,3.69077505 10.8789212,3.87480499 11,4.06645029 L6,9 Z", fillRule: "evenodd" }) }));
7044
7029
  }
7045
7030
 
7046
- var styles$C = {"show-all":"show-all-module-BDp21","panel":"show-all-module-bEdda","content":"show-all-module-RF--F","has-transparency":"show-all-module-30y7l","button":"show-all-module-58e7Q","icon":"show-all-module-fqncI","is-open":"show-all-module-hQeGI"};
7031
+ var styles$B = {"show-all":"show-all-module-BDp21","panel":"show-all-module-bEdda","content":"show-all-module-RF--F","has-transparency":"show-all-module-30y7l","button":"show-all-module-58e7Q","icon":"show-all-module-fqncI","is-open":"show-all-module-hQeGI"};
7047
7032
 
7048
7033
  const ShowAll = ({ children, hasTransparency = true, initialHeight = 0, isOpen, onToggle, }) => {
7049
7034
  const showAllRef = useRef(null);
@@ -7052,14 +7037,14 @@ const ShowAll = ({ children, hasTransparency = true, initialHeight = 0, isOpen,
7052
7037
  return;
7053
7038
  showAllRef.current.style.setProperty('--initital-height', `${initialHeight}px`);
7054
7039
  }, [initialHeight]);
7055
- return (jsxs("div", { ref: showAllRef, className: clsx(styles$C['show-all'], {
7056
- [styles$C['is-open']]: isOpen,
7057
- }), children: [jsx("div", { className: styles$C.panel, children: jsx("div", { className: clsx(styles$C.content, {
7058
- [styles$C['has-transparency']]: hasTransparency,
7059
- }), children: children }) }), jsxs(RouteLink, { className: styles$C.button, color: "secondary", onPress: () => onToggle(!isOpen), children: [jsx(GlyphsChevronsSlimDownIcon, { className: styles$C.icon }), isOpen ? (jsx(FormattedMessage, { id: "Show less" })) : (jsx(FormattedMessage, { id: "Show all" }))] })] }));
7040
+ return (jsxs("div", { ref: showAllRef, className: clsx(styles$B['show-all'], {
7041
+ [styles$B['is-open']]: isOpen,
7042
+ }), children: [jsx("div", { className: styles$B.panel, children: jsx("div", { className: clsx(styles$B.content, {
7043
+ [styles$B['has-transparency']]: hasTransparency,
7044
+ }), children: children }) }), jsxs(RouteLink, { className: styles$B.button, color: "secondary", onPress: () => onToggle(!isOpen), children: [jsx(GlyphsChevronsSlimDownIcon, { className: styles$B.icon }), isOpen ? (jsx(FormattedMessage, { id: "Show less" })) : (jsx(FormattedMessage, { id: "Show all" }))] })] }));
7060
7045
  };
7061
7046
 
7062
- var styles$B = {"multi-select":"multi-select-module-DC7Ix","filter-items":"multi-select-module-cwVFb","hidden":"multi-select-module-o7yHU","filter-item":"multi-select-module-OW-NK"};
7047
+ var styles$A = {"multi-select":"multi-select-module-DC7Ix","filter-items":"multi-select-module-cwVFb","hidden":"multi-select-module-o7yHU","filter-item":"multi-select-module-OW-NK"};
7063
7048
 
7064
7049
  function MultiSelect({ amountShown = 3, onChange, options, render, }) {
7065
7050
  const shownOptions = options.slice(0, amountShown);
@@ -7070,28 +7055,28 @@ function MultiSelect({ amountShown = 3, onChange, options, render, }) {
7070
7055
  options.filter(option => option.isSelected).length === 0) {
7071
7056
  return null;
7072
7057
  }
7073
- return (jsxs("div", { className: styles$B['multi-select'], children: [jsx("div", { className: styles$B['filter-items'], children: shownOptions
7058
+ return (jsxs("div", { className: styles$A['multi-select'], children: [jsx("div", { className: styles$A['filter-items'], children: shownOptions
7074
7059
  .concat(isOpen ? [] : hiddenSelectedOptions)
7075
- .map(option => (jsxs("div", { className: styles$B['filter-item'], children: [render({ onChange: () => onChange(option), option }), jsxs("span", { children: ["(", option.amount, ")"] })] }, option.value))) }), hiddenOptions.length > 0 && (jsx(ShowAll, { hasTransparency: false, isOpen: isOpen, onToggle: toggle, children: jsx("div", { className: clsx(styles$B['filter-items'], styles$B['hidden']), children: hiddenOptions.map(option => (jsxs("div", { className: styles$B['filter-item'], children: [render({ onChange: () => onChange(option), option }), jsxs("span", { children: ["(", option.amount, ")"] })] }, option.value))) }) }))] }));
7060
+ .map(option => (jsxs("div", { className: styles$A['filter-item'], children: [render({ onChange: () => onChange(option), option }), jsxs("span", { children: ["(", option.amount, ")"] })] }, option.value))) }), hiddenOptions.length > 0 && (jsx(ShowAll, { hasTransparency: false, isOpen: isOpen, onToggle: toggle, children: jsx("div", { className: clsx(styles$A['filter-items'], styles$A['hidden']), children: hiddenOptions.map(option => (jsxs("div", { className: styles$A['filter-item'], children: [render({ onChange: () => onChange(option), option }), jsxs("span", { children: ["(", option.amount, ")"] })] }, option.value))) }) }))] }));
7076
7061
  }
7077
7062
 
7078
- var styles$A = {"checkbox":"checkbox-module-YNVdd","box":"checkbox-module-UKoyf","checkmark":"checkbox-module-pHIwh","focus":"checkbox-module-v23jy","active":"checkbox-module-7UG-b","color-checkbox":"checkbox-module-nEhvW"};
7063
+ var styles$z = {"checkbox":"checkbox-module-YNVdd","box":"checkbox-module-UKoyf","checkmark":"checkbox-module-pHIwh","focus":"checkbox-module-v23jy","active":"checkbox-module-7UG-b","color-checkbox":"checkbox-module-nEhvW"};
7079
7064
 
7080
7065
  function Checkbox({ _pseudo = 'none', children, className, isDisabled, isSelected, onChange, value, }) {
7081
- return (jsxs(Checkbox$1, { className: clsx(className, styles$A.checkbox, styles$A[_pseudo]), isDisabled: isDisabled, isSelected: isSelected, onChange: onChange, value: value, children: [jsx("div", { className: styles$A.box, children: jsx("svg", { "aria-hidden": "true", className: styles$A.checkmark, viewBox: "0 0 18 18", children: jsx("polyline", { points: "1 9 7 14 15 4" }) }) }), children] }));
7066
+ return (jsxs(Checkbox$1, { className: clsx(className, styles$z.checkbox, styles$z[_pseudo]), isDisabled: isDisabled, isSelected: isSelected, onChange: onChange, value: value, children: [jsx("div", { className: styles$z.box, children: jsx("svg", { "aria-hidden": "true", className: styles$z.checkmark, viewBox: "0 0 18 18", children: jsx("polyline", { points: "1 9 7 14 15 4" }) }) }), children] }));
7082
7067
  }
7083
7068
 
7084
7069
  function ColorCheckbox({ _pseudo = 'none', children, className, color, isDisabled, isSelected, onChange, value, }) {
7085
- return (jsxs(Checkbox$1, { className: clsx(className, styles$A.checkbox, styles$A['color-checkbox'], styles$A[_pseudo]), isDisabled: isDisabled, isSelected: isSelected, onChange: onChange, style: {
7070
+ return (jsxs(Checkbox$1, { className: clsx(className, styles$z.checkbox, styles$z['color-checkbox'], styles$z[_pseudo]), isDisabled: isDisabled, isSelected: isSelected, onChange: onChange, style: {
7086
7071
  '--selected-color': color,
7087
- }, value: value, children: [jsx("div", { className: styles$A.box }), children] }));
7072
+ }, value: value, children: [jsx("div", { className: styles$z.box }), children] }));
7088
7073
  }
7089
7074
 
7090
7075
  function StrokeCheckmarkIcon(props) {
7091
7076
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M10.8641425,17 C10.6636971,17 10.4855234,16.9548533 10.3296214,16.8645598 C10.1737194,16.7742664 10.0252413,16.6388262 9.88418708,16.4582393 L6.27839644,12.2189616 C6.09279881,11.9857035 6,11.744921 6,11.496614 C6,11.2332581 6.08723088,11.0094056 6.26169265,10.8250564 C6.43615442,10.6407073 6.65330364,10.5485327 6.91314031,10.5485327 C7.06904232,10.5485327 7.21195249,10.5823928 7.34187082,10.6501129 C7.47178916,10.717833 7.59985152,10.8382242 7.72605791,11.0112867 L10.8195991,14.7200903 L16.2405345,6.53047404 C16.4558278,6.17682468 16.7230883,6 17.0423163,6 C17.2873051,6 17.5081663,6.08088789 17.7048998,6.24266366 C17.9016333,6.40443943 18,6.61700527 18,6.88036117 C18,7.00075245 17.9721604,7.12302483 17.9164811,7.24717833 C17.8608018,7.37133183 17.7958426,7.48984199 17.7216036,7.6027088 L11.7884187,16.4469526 C11.5582777,16.8156509 11.2501856,17 10.8641425,17 Z", fillRule: "evenodd" }) }));
7092
7077
  }
7093
7078
 
7094
- var styles$z = {"select":"select-module-ui-Wc","sm":"select-module-44a1l","md":"select-module-QUm-8","solid":"select-module-IRd4F","button":"select-module-aMQIQ","chevron":"select-module-00uRU","focus":"select-module-XMc0P","popover":"select-module-z8cWq","listbox":"select-module-S21ba","header":"select-module-4Bm2j","item":"select-module-LgEJO","check":"select-module-lQFw3"};
7079
+ var styles$y = {"select":"select-module-ui-Wc","sm":"select-module-44a1l","md":"select-module-QUm-8","solid":"select-module-IRd4F","button":"select-module-aMQIQ","chevron":"select-module-00uRU","focus":"select-module-XMc0P","popover":"select-module-z8cWq","listbox":"select-module-S21ba","header":"select-module-4Bm2j","item":"select-module-LgEJO","check":"select-module-lQFw3"};
7095
7080
 
7096
7081
  function Select({ isDisabled = false, label, onChange, options, placeholder, selectedOption, showLabel = true, size = 'md', variant = 'outline', }) {
7097
7082
  const selectRef = useRef(null);
@@ -7108,12 +7093,12 @@ function Select({ isDisabled = false, label, onChange, options, placeholder, sel
7108
7093
  window.addEventListener('resize', updateWidth);
7109
7094
  return () => window.removeEventListener('resize', updateWidth);
7110
7095
  }, []);
7111
- return (jsxs(Select$1, { ref: selectRef, "aria-label": label, className: clsx(styles$z.select, styles$z[size], styles$z[variant]), isDisabled: isDisabled, onSelectionChange: selected => onChange(selected), placeholder: placeholder || label, selectedKey: String(selectedOption), children: [showLabel && jsx(Label, { children: label }), jsxs(Button$1, { className: styles$z.button, children: [jsx(SelectValue, {}), jsx(GlyphsChevronsSlimDownIcon, { "aria-hidden": "true", className: styles$z.chevron })] }), jsx(Popover, { ref: ref =>
7096
+ return (jsxs(Select$1, { ref: selectRef, "aria-label": label, className: clsx(styles$y.select, styles$y[size], styles$y[variant]), isDisabled: isDisabled, onSelectionChange: selected => onChange(selected), placeholder: placeholder || label, selectedKey: String(selectedOption), children: [showLabel && jsx(Label, { children: label }), jsxs(Button$1, { className: styles$y.button, children: [jsx(SelectValue, {}), jsx(GlyphsChevronsSlimDownIcon, { "aria-hidden": "true", className: styles$y.chevron })] }), jsx(Popover, { ref: ref =>
7112
7097
  // Workaround for react/react-aria #1513
7113
- ref?.addEventListener('touchend', e => e.preventDefault()), className: clsx(styles$z.popover, styles$z[variant]), placement: "bottom left", triggerRef: selectRef, children: jsx(ListBox, { className: styles$z.listbox, children: jsxs(Section, { children: [jsx(Header, { className: styles$z.header, children: placeholder || label }), Object.entries(options).map(([key, value]) => (jsxs(ListBoxItem, { "aria-label": value, className: styles$z.item, id: key, textValue: value, children: [selectedOption === key && (jsx("span", { slot: "description", children: jsx(StrokeCheckmarkIcon, { className: styles$z.check }) })), jsx("span", { slot: "label", children: value })] }, key)))] }) }) })] }));
7098
+ ref?.addEventListener('touchend', e => e.preventDefault()), className: clsx(styles$y.popover, styles$y[variant]), placement: "bottom left", triggerRef: selectRef, children: jsx(ListBox, { className: styles$y.listbox, children: jsxs(Section, { children: [jsx(Header, { className: styles$y.header, children: placeholder || label }), Object.entries(options).map(([key, value]) => (jsxs(ListBoxItem, { "aria-label": value, className: styles$y.item, id: key, textValue: value, children: [selectedOption === key && (jsx("span", { slot: "description", children: jsx(StrokeCheckmarkIcon, { className: styles$y.check }) })), jsx("span", { slot: "label", children: value })] }, key)))] }) }) })] }));
7114
7099
  }
7115
7100
 
7116
- var styles$y = {"input-container":"textarea-module-C6Xr1","lg":"textarea-module-vksG-","md":"textarea-module-6JrQJ"};
7101
+ var styles$x = {"input-container":"textarea-module-C6Xr1","lg":"textarea-module-vksG-","md":"textarea-module-6JrQJ"};
7117
7102
 
7118
7103
  /**
7119
7104
  * This component is used to create a textarea that can grow as the user types.
@@ -7148,7 +7133,7 @@ const TextArea = forwardRef(({ autoGrow, size, ...textAreaProps }, _ref) => {
7148
7133
  }
7149
7134
  updateHeight();
7150
7135
  }, [ref, autoGrow, updateHeight, size]);
7151
- return (jsx("div", { className: styles$y['input-container'], children: jsx(TextArea$1, { ...textAreaProps, ref: node => {
7136
+ return (jsx("div", { className: styles$x['input-container'], children: jsx(TextArea$1, { ...textAreaProps, ref: node => {
7152
7137
  ref.current =
7153
7138
  node;
7154
7139
  textAreaRef.current = node;
@@ -7159,7 +7144,7 @@ const TextArea = forwardRef(({ autoGrow, size, ...textAreaProps }, _ref) => {
7159
7144
  });
7160
7145
  TextArea.displayName = 'TextArea';
7161
7146
 
7162
- var styles$x = {"field":"text-field-module-JeaK0"};
7147
+ var styles$w = {"field":"text-field-module-JeaK0"};
7163
7148
 
7164
7149
  /**
7165
7150
  * This component is used to create a text field.
@@ -7167,7 +7152,7 @@ var styles$x = {"field":"text-field-module-JeaK0"};
7167
7152
  * This field can also grow when a user types in text.
7168
7153
  */
7169
7154
  function TextField({ autoFocus, autoGrow, defaultValue, isDisabled, isInvalid, isMultiline, isReadOnly, isRequired, label, maxLength, name, onChange, onInput, onKeyUp, placeholder, rows, showLabel = false, size = 'lg', value, }) {
7170
- return (jsxs(TextField$1, { "aria-label": label, autoFocus: autoFocus, className: clsx(styles$x.field, styles$x[size]), defaultValue: defaultValue, isDisabled: isDisabled, isInvalid: isInvalid, isReadOnly: isReadOnly, isRequired: isRequired, maxLength: maxLength, name: name, onChange: value => {
7155
+ return (jsxs(TextField$1, { "aria-label": label, autoFocus: autoFocus, className: clsx(styles$w.field, styles$w[size]), defaultValue: defaultValue, isDisabled: isDisabled, isInvalid: isInvalid, isReadOnly: isReadOnly, isRequired: isRequired, maxLength: maxLength, name: name, onChange: value => {
7171
7156
  onChange?.(value);
7172
7157
  }, onInput: onInput, onKeyUp: e => onKeyUp?.(e), value: value, children: [showLabel && jsx(Label, { isRequired: isRequired, children: label }), isMultiline ? (jsx(TextArea, { autoGrow: autoGrow, placeholder: placeholder, rows: rows, size: size })) : (jsx(Input, { autoGrow: autoGrow, placeholder: placeholder, size: size })), jsx(FieldError, {})] }));
7173
7158
  }
@@ -7177,31 +7162,31 @@ function IntlProvider({ children, formatMessage, languageCode: _languageCode, })
7177
7162
  return (jsx(IntlContext.Provider, { value: { formatMessage, languageCode, updateLanguageCode }, children: children }));
7178
7163
  }
7179
7164
 
7180
- var styles$w = {"progress-circle":"progress-circle-module-4nweP","spin":"progress-circle-module-kCf7K"};
7165
+ var styles$v = {"progress-circle":"progress-circle-module-4nweP","spin":"progress-circle-module-kCf7K"};
7181
7166
 
7182
7167
  function ProgressCircle({ className }) {
7183
- return (jsxs("svg", { className: clsx(styles$w['progress-circle'], className), viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", children: [jsx("title", { children: "Spinner" }), jsxs("defs", { children: [jsx("pattern", { height: "100%", id: "pattern-1", patternUnits: "objectBoundingBox", width: "100%", children: jsx("use", { xlinkHref: "#image-2" }) }), jsx("image", { height: "24", id: "image-2", width: "24", xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAAGAAAAADiNXWtAAAB7UlEQVRIDZ2VSaoCQQyG01rOoBtBr+YZXXsFL+BGEHcqDuCE89SPL480hdpiGYil3an/S1KDUavViq/Xq1wul8RPp5Ocz2dhPB6PiR8OB42RAHO5XE7D4zgW/PF4CM/u97tks1n1TCYjURSpB2hraALglw8BQGXOuQQSKk68y+fzL9lRBQAqAUIlVkUoxBUKBZ3sC1irbrdbUoX/PgTyAqDXmFVBBVRCFfYuGMBk67UvRCUA2FFAfgKUSiWhFTgQA9ESjLVgC7NWwEPNFYtFFUEICJnigAxCFbvd7jcAFVi/gbDoCALmOzCMAzebzUILEFculxVgOwcIDqRSqaiTBDadToMhziYDwBgNRmW0rdFoSLPZ1PeDwUDHbz+iTqejyv5VYHuekbVggavVqkLq9fq32hqnLTJxdgmijPQeYSqs1Woa3G63g8QJ1haZKMJkjDgLjLi/Nbvd7m8ARCxry9x2jyn2ej2ZTCb28+tRK/Azpy3vrN/vy2azeffq4zM9aLTFP1jPM4bDoWbPH06o6WXn9/lZgDMxGo1kuVwG/5uhlfkkTsB4PJb5fC7b7VYPH89C7P9GS5nBLYr4er2W/X6vhy4lNPXxR8BisdDWkD13Ee0KtVQAgqvVSncO2XNlc3WEWirAxLmmgf0K+ANZ6DTlvO5jwwAAAABJRU5ErkJggg==" })] }), jsx("g", { fill: "none", fillRule: "evenodd", id: "Page-1", stroke: "none", strokeWidth: "1", children: jsx("path", { d: "M12,0 C18.627417,0 24,5.372583 24,12 C24,14.7277828 23.0855773,17.3196292 21.4324752,19.4188392 C19.1717866,22.2895997 15.7255176,24 12,24 C11.2636203,24 10.6666667,23.4030463 10.6666667,22.6666667 C10.6666667,21.930287 11.2636203,21.3333333 12,21.3333333 C14.8994206,21.3333333 17.5771113,20.0043823 19.3374325,17.7690188 C20.6234737,16.1359252 21.3333333,14.1238938 21.3333333,12 C21.3333333,6.84534234 17.1546577,2.66666667 12,2.66666667 C6.84534234,2.66666667 2.66666667,6.84534234 2.66666667,12 C2.66666667,14.4546154 3.61656005,16.756214 5.28844833,18.485859 C5.80023235,19.015323 5.78589988,19.8594213 5.25643588,20.3712053 C4.72697187,20.8829893 3.88287357,20.8686569 3.37108955,20.3391928 C1.22326178,18.1171666 0,15.1531945 0,12 C0,5.372583 5.372583,0 12,0 Z", fill: "url(#pattern-1)", fillRule: "nonzero", id: "Spinner" }) })] }));
7168
+ return (jsxs("svg", { className: clsx(styles$v['progress-circle'], className), viewBox: "0 0 24 24", xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink", children: [jsx("title", { children: "Spinner" }), jsxs("defs", { children: [jsx("pattern", { height: "100%", id: "pattern-1", patternUnits: "objectBoundingBox", width: "100%", children: jsx("use", { xlinkHref: "#image-2" }) }), jsx("image", { height: "24", id: "image-2", width: "24", xlinkHref: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAERlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAA6ABAAMAAAABAAEAAKACAAQAAAABAAAAGKADAAQAAAABAAAAGAAAAADiNXWtAAAB7UlEQVRIDZ2VSaoCQQyG01rOoBtBr+YZXXsFL+BGEHcqDuCE89SPL480hdpiGYil3an/S1KDUavViq/Xq1wul8RPp5Ocz2dhPB6PiR8OB42RAHO5XE7D4zgW/PF4CM/u97tks1n1TCYjURSpB2hraALglw8BQGXOuQQSKk68y+fzL9lRBQAqAUIlVkUoxBUKBZ3sC1irbrdbUoX/PgTyAqDXmFVBBVRCFfYuGMBk67UvRCUA2FFAfgKUSiWhFTgQA9ESjLVgC7NWwEPNFYtFFUEICJnigAxCFbvd7jcAFVi/gbDoCALmOzCMAzebzUILEFculxVgOwcIDqRSqaiTBDadToMhziYDwBgNRmW0rdFoSLPZ1PeDwUDHbz+iTqejyv5VYHuekbVggavVqkLq9fq32hqnLTJxdgmijPQeYSqs1Woa3G63g8QJ1haZKMJkjDgLjLi/Nbvd7m8ARCxry9x2jyn2ej2ZTCb28+tRK/Azpy3vrN/vy2azeffq4zM9aLTFP1jPM4bDoWbPH06o6WXn9/lZgDMxGo1kuVwG/5uhlfkkTsB4PJb5fC7b7VYPH89C7P9GS5nBLYr4er2W/X6vhy4lNPXxR8BisdDWkD13Ee0KtVQAgqvVSncO2XNlc3WEWirAxLmmgf0K+ANZ6DTlvO5jwwAAAABJRU5ErkJggg==" })] }), jsx("g", { fill: "none", fillRule: "evenodd", id: "Page-1", stroke: "none", strokeWidth: "1", children: jsx("path", { d: "M12,0 C18.627417,0 24,5.372583 24,12 C24,14.7277828 23.0855773,17.3196292 21.4324752,19.4188392 C19.1717866,22.2895997 15.7255176,24 12,24 C11.2636203,24 10.6666667,23.4030463 10.6666667,22.6666667 C10.6666667,21.930287 11.2636203,21.3333333 12,21.3333333 C14.8994206,21.3333333 17.5771113,20.0043823 19.3374325,17.7690188 C20.6234737,16.1359252 21.3333333,14.1238938 21.3333333,12 C21.3333333,6.84534234 17.1546577,2.66666667 12,2.66666667 C6.84534234,2.66666667 2.66666667,6.84534234 2.66666667,12 C2.66666667,14.4546154 3.61656005,16.756214 5.28844833,18.485859 C5.80023235,19.015323 5.78589988,19.8594213 5.25643588,20.3712053 C4.72697187,20.8829893 3.88287357,20.8686569 3.37108955,20.3391928 C1.22326178,18.1171666 0,15.1531945 0,12 C0,5.372583 5.372583,0 12,0 Z", fill: "url(#pattern-1)", fillRule: "nonzero", id: "Spinner" }) })] }));
7184
7169
  }
7185
7170
 
7186
- var styles$v = {"product-grid":"product-overview-grid-module-bzys-","loading-panel":"product-overview-grid-module-XikkF","fade-in":"product-overview-grid-module-A6CS7","progress-circle":"product-overview-grid-module-DWnnI","fade-in-spinner":"product-overview-grid-module-r-wvY","grid-item":"product-overview-grid-module-MlUVA"};
7171
+ var styles$u = {"product-grid":"product-overview-grid-module-bzys-","loading-panel":"product-overview-grid-module-XikkF","fade-in":"product-overview-grid-module-A6CS7","progress-circle":"product-overview-grid-module-DWnnI","fade-in-spinner":"product-overview-grid-module-r-wvY","grid-item":"product-overview-grid-module-MlUVA"};
7187
7172
 
7188
7173
  function ProductOverviewGrid({ children, isLoading, }) {
7189
- return (jsxs("div", { className: styles$v['product-grid'], children: [Children.map(children, (child, index) => (jsx("div", { className: styles$v['grid-item'], children: child }, index))), isLoading && (jsx("div", { className: styles$v['loading-panel'], children: jsx(ProgressCircle, { className: styles$v['progress-circle'] }) }))] }));
7174
+ return (jsxs("div", { className: styles$u['product-grid'], children: [Children.map(children, (child, index) => (jsx("div", { className: styles$u['grid-item'], children: child }, index))), isLoading && (jsx("div", { className: styles$u['loading-panel'], children: jsx(ProgressCircle, { className: styles$u['progress-circle'] }) }))] }));
7190
7175
  }
7191
7176
 
7192
- var styles$u = {"loading-overlay":"loading-overlay-module-L67Gy"};
7177
+ var styles$t = {"loading-overlay":"loading-overlay-module-L67Gy"};
7193
7178
 
7194
7179
  function LoadingOverlay() {
7195
- return (jsx("div", { className: styles$u['loading-overlay'], children: jsx(ProgressCircle, {}) }));
7180
+ return (jsx("div", { className: styles$t['loading-overlay'], children: jsx(ProgressCircle, {}) }));
7196
7181
  }
7197
7182
 
7198
- var styles$t = {"page-container":"page-container-module-PYmbC","inner-page-container":"page-container-module-uD8GF"};
7183
+ var styles$s = {"page-container":"page-container-module-PYmbC","inner-page-container":"page-container-module-uD8GF"};
7199
7184
 
7200
7185
  function PageContainer({ children, className, }) {
7201
- return (jsx("div", { className: styles$t['page-container'], children: jsx("div", { className: clsx(styles$t['inner-page-container'], className), children: children }) }));
7186
+ return (jsx("div", { className: styles$s['page-container'], children: jsx("div", { className: clsx(styles$s['inner-page-container'], className), children: children }) }));
7202
7187
  }
7203
7188
 
7204
- var styles$s = {"heading":"heading-module-pMC65","uppercase":"heading-module-6spgX","italic":"heading-module-XXMDM","bold":"heading-module-xvrxo","xxl":"heading-module-Kn3ZN","xl":"heading-module--hZs-","l":"heading-module-WrJRY","m":"heading-module-hTexc","s":"heading-module-7W29m","xs":"heading-module-SgaLB","xxs":"heading-module-33en7"};
7189
+ var styles$r = {"heading":"heading-module-pMC65","uppercase":"heading-module-6spgX","italic":"heading-module-XXMDM","bold":"heading-module-xvrxo","xxl":"heading-module-Kn3ZN","xl":"heading-module--hZs-","l":"heading-module-WrJRY","m":"heading-module-hTexc","s":"heading-module-7W29m","xs":"heading-module-SgaLB","xxs":"heading-module-33en7"};
7205
7190
 
7206
7191
  const sizeToTag = {
7207
7192
  l: 'h3',
@@ -7214,22 +7199,22 @@ const sizeToTag = {
7214
7199
  };
7215
7200
  function Heading({ bold = true, children, className, italic, size = 'xxl', tag, uppercase, }) {
7216
7201
  return createElement$1(tag || sizeToTag[size], {
7217
- className: clsx(className, styles$s.heading, styles$s[size], {
7218
- [styles$s.uppercase]: uppercase,
7219
- [styles$s.italic]: italic,
7220
- [styles$s.bold]: bold,
7202
+ className: clsx(className, styles$r.heading, styles$r[size], {
7203
+ [styles$r.uppercase]: uppercase,
7204
+ [styles$r.italic]: italic,
7205
+ [styles$r.bold]: bold,
7221
7206
  }),
7222
7207
  }, children);
7223
7208
  }
7224
7209
 
7225
- var styles$r = {"page":"page-module-XtZ9Y","breadcrumb":"page-module-ohh9z","title":"page-module-TEmve"};
7210
+ var styles$q = {"page":"page-module-XtZ9Y","breadcrumb":"page-module-ohh9z","title":"page-module-TEmve"};
7226
7211
 
7227
7212
  function PageTitle({ children }) {
7228
7213
  const { lg, xxl } = useBreakpoint();
7229
- return (jsx(Heading, { italic: true, uppercase: true, className: styles$r.title, size: xxl ? 'xl' : lg ? 'm' : 's', tag: "h1", children: children }));
7214
+ return (jsx(Heading, { italic: true, uppercase: true, className: styles$q.title, size: xxl ? 'xl' : lg ? 'm' : 's', tag: "h1", children: children }));
7230
7215
  }
7231
7216
  function Page({ breadCrumb, children, className, title }) {
7232
- return (jsxs(PageContainer, { className: clsx(styles$r.page, className), children: [jsx("div", { className: styles$r.breadcrumb, children: jsx(Breadcrumb, { links: breadCrumb }) }), title && jsx(PageTitle, { children: title }), children] }));
7217
+ return (jsxs(PageContainer, { className: clsx(styles$q.page, className), children: [jsx("div", { className: styles$q.breadcrumb, children: jsx(Breadcrumb, { links: breadCrumb }) }), title && jsx(PageTitle, { children: title }), children] }));
7233
7218
  }
7234
7219
 
7235
7220
  const useSidebar = () => {
@@ -7275,12 +7260,12 @@ function GlyphsChevronsBoldDownIcon(props) {
7275
7260
  function AccordionItem({ _pseudo = 'none', children, className, id, initialIsOpen = false, isDisabled = false, size, title, }) {
7276
7261
  const { isOpen, toggle } = useDisclosure(initialIsOpen);
7277
7262
  const panelId = `panel-${id}`;
7278
- return (jsxs("div", { className: clsx(className, styles$D['accordion-item'], {
7279
- [styles$D['is-open']]: isOpen,
7280
- }), children: [jsx("h3", { children: jsxs("button", { "aria-controls": panelId, "aria-expanded": isOpen, className: clsx(styles$D.button, styles$D[_pseudo]), disabled: isDisabled, id: id, onClick: toggle, type: "button", children: [title, jsx("span", { className: styles$D.icon, children: size === 'lg' ? (jsx(GlyphsChevronsBoldDownIcon, {})) : (jsx(GlyphsChevronsSlimDownIcon, {})) })] }) }), jsx("div", { "aria-labelledby": id, className: styles$D.panel, id: panelId, role: "region", children: jsx("div", { className: styles$D.content, children: children }) })] }));
7263
+ return (jsxs("div", { className: clsx(className, styles$C['accordion-item'], {
7264
+ [styles$C['is-open']]: isOpen,
7265
+ }), children: [jsx("h3", { children: jsxs("button", { "aria-controls": panelId, "aria-expanded": isOpen, className: clsx(styles$C.button, styles$C[_pseudo]), disabled: isDisabled, id: id, onClick: toggle, type: "button", children: [title, jsx("span", { className: styles$C.icon, children: size === 'lg' ? (jsx(GlyphsChevronsBoldDownIcon, {})) : (jsx(GlyphsChevronsSlimDownIcon, {})) })] }) }), jsx("div", { "aria-labelledby": id, className: styles$C.panel, id: panelId, role: "region", children: jsx("div", { className: styles$C.content, children: children }) })] }));
7281
7266
  }
7282
7267
 
7283
- var styles$q = {"filter-section":"filter-section-module-q1Ob8","default":"filter-section-module-JkP09","title":"filter-section-module-hWVv-","with-action":"filter-section-module-9qc6L","header":"filter-section-module-zi2ZE","content":"filter-section-module-15-YW","sm":"filter-section-module-crU-3","md":"filter-section-module-vHRQu","border-top":"filter-section-module-dGcTY"};
7268
+ var styles$p = {"filter-section":"filter-section-module-q1Ob8","default":"filter-section-module-JkP09","title":"filter-section-module-hWVv-","with-action":"filter-section-module-9qc6L","header":"filter-section-module-zi2ZE","content":"filter-section-module-15-YW","sm":"filter-section-module-crU-3","md":"filter-section-module-vHRQu","border-top":"filter-section-module-dGcTY"};
7284
7269
 
7285
7270
  function FilterSection({ ...props }) {
7286
7271
  const variant = props.variant;
@@ -7298,16 +7283,16 @@ function FilterSection({ ...props }) {
7298
7283
  /* eslint-enable @typescript-eslint/no-unnecessary-condition */
7299
7284
  }
7300
7285
  function CollapsibleFilterSection({ children, gap = 'md', initialIsOpen = true, title, variant, }) {
7301
- return (jsx("section", { className: clsx(styles$q['filter-section'], styles$q[variant], styles$q[gap]), children: jsx(Accordion, { borderPosition: "top", children: jsx(AccordionItem, { id: title, initialIsOpen: initialIsOpen, title: jsx("span", { className: styles$q['accordion-title'], children: jsx(FormattedMessage, { optional: true, fallbackValue: title, id: `facet.${title.toLowerCase()}` }) }), children: children }) }) }));
7286
+ return (jsx("section", { className: clsx(styles$p['filter-section'], styles$p[variant], styles$p[gap]), children: jsx(Accordion, { borderPosition: "top", children: jsx(AccordionItem, { id: title, initialIsOpen: initialIsOpen, title: jsx("span", { className: styles$p['accordion-title'], children: jsx(FormattedMessage, { optional: true, fallbackValue: title, id: `facet.${title.toLowerCase()}` }) }), children: children }) }) }));
7302
7287
  }
7303
7288
  function WithActionFilterSection({ button, children, gap = 'md', title, variant, }) {
7304
- return (jsxs("section", { className: clsx(styles$q['filter-section'], styles$q[variant], styles$q[gap]), children: [jsxs("div", { className: styles$q.header, children: [jsx("h3", { className: styles$q.title, children: title }), jsx("div", { children: button })] }), jsx("div", { className: styles$q.content, children: children })] }));
7289
+ return (jsxs("section", { className: clsx(styles$p['filter-section'], styles$p[variant], styles$p[gap]), children: [jsxs("div", { className: styles$p.header, children: [jsx("h3", { className: styles$p.title, children: title }), jsx("div", { children: button })] }), jsx("div", { className: styles$p.content, children: children })] }));
7305
7290
  }
7306
7291
  function DefaultFilterSection({ children, gap = 'md', title, variant, }) {
7307
- return (jsxs("section", { className: clsx(styles$q['filter-section'], styles$q[variant], styles$q[gap]), children: [jsx("h3", { className: styles$q.title, children: title }), jsx("div", { className: styles$q.content, children: children })] }));
7292
+ return (jsxs("section", { className: clsx(styles$p['filter-section'], styles$p[variant], styles$p[gap]), children: [jsx("h3", { className: styles$p.title, children: title }), jsx("div", { className: styles$p.content, children: children })] }));
7308
7293
  }
7309
7294
 
7310
- var styles$p = {"filter-panel":"algolia-filter-panel-module-GfhOO","scroll-container":"algolia-filter-panel-module-4ubB1","category":"algolia-filter-panel-module-LKet3","is-active":"algolia-filter-panel-module-yf8kI","value":"algolia-filter-panel-module-gQzED","count":"algolia-filter-panel-module-uAHPx","button":"algolia-filter-panel-module-ABOYv"};
7295
+ var styles$o = {"filter-panel":"algolia-filter-panel-module-GfhOO","scroll-container":"algolia-filter-panel-module-4ubB1","category":"algolia-filter-panel-module-LKet3","is-active":"algolia-filter-panel-module-yf8kI","value":"algolia-filter-panel-module-gQzED","count":"algolia-filter-panel-module-uAHPx","button":"algolia-filter-panel-module-ABOYv"};
7311
7296
 
7312
7297
  function AlgoliaActiveCategories() {
7313
7298
  const { items: categories } = useHierarchicalMenu({
@@ -7329,8 +7314,8 @@ function Categories({ categories, path: _path, }) {
7329
7314
  const categorySlug = category.label.toLowerCase().replace(/ /g, '-');
7330
7315
  const path = `${_path}/${categorySlug}`;
7331
7316
  const isActive = !category.data || !category.data.some(c => c.isRefined);
7332
- return (jsxs(Fragment, { children: [jsxs(RouteLink, { hasUnderline: true, className: clsx(styles$p.category, {
7333
- [styles$p['is-active']]: isActive,
7317
+ return (jsxs(Fragment, { children: [jsxs(RouteLink, { hasUnderline: true, className: clsx(styles$o.category, {
7318
+ [styles$o['is-active']]: isActive,
7334
7319
  }), href: path, isDisabled: isActive, children: [jsx(StrokeCategoriesIcon, { height: 24, width: 24 }), jsx("span", { children: category.label })] }), category.data && (jsx(Categories, { categories: category.data, path: path }))] }, category.value));
7335
7320
  });
7336
7321
  }
@@ -7339,13 +7324,13 @@ function StrokeCloseboxIcon(props) {
7339
7324
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M8,8 L16,16 M16,8 L8,16", fill: "currentColor", stroke: "currentColor", strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.4" }) }));
7340
7325
  }
7341
7326
 
7342
- var styles$o = {"active-filter-item":"active-filters-module-Rrmhy","category":"active-filters-module-u9TTE","active-filter-value":"active-filters-module-CIuPU"};
7327
+ var styles$n = {"active-filter-item":"active-filters-module-Rrmhy","category":"active-filters-module-u9TTE","active-filter-value":"active-filters-module-CIuPU"};
7343
7328
 
7344
7329
  const ActiveFilters = ({ onClearAllFilters, onClearFilter, selectedFilterCategories, }) => {
7345
7330
  const t = useFormattedMessage();
7346
7331
  if (selectedFilterCategories.length === 0)
7347
7332
  return null;
7348
- return (jsx(FilterSection, { button: jsx(RouteLink, { onPress: onClearAllFilters, children: jsx(FormattedMessage, { id: "Clear filters" }) }), title: t('Chosen filters'), variant: "with-action", children: selectedFilterCategories.map((category, index) => (jsx("section", { className: styles$o.category, children: category.filters.map(filter => (jsxs("div", { className: styles$o['active-filter-item'], children: [jsxs("span", { children: [jsxs("span", { children: [jsx(FormattedMessage, { id: `facet.${category.label.toLowerCase()}` }), jsx("span", { children: ": " })] }), jsx("span", { className: styles$o['active-filter-value'], children: filter.label })] }), jsx(IconButton, { color: "secondary", onPress: () => onClearFilter(category.label, filter), children: jsx(StrokeCloseboxIcon, {}) })] }, `${category.label}-${filter.value}`))) }, `${category.label}-${index}`))) }));
7333
+ return (jsx(FilterSection, { button: jsx(RouteLink, { onPress: onClearAllFilters, children: jsx(FormattedMessage, { id: "Clear filters" }) }), title: t('Chosen filters'), variant: "with-action", children: selectedFilterCategories.map((category, index) => (jsx("section", { className: styles$n.category, children: category.filters.map(filter => (jsxs("div", { className: styles$n['active-filter-item'], children: [jsxs("span", { children: [jsxs("span", { children: [jsx(FormattedMessage, { id: `facet.${category.label.toLowerCase()}` }), jsx("span", { children: ": " })] }), jsx("span", { className: styles$n['active-filter-value'], children: filter.label })] }), jsx(IconButton, { color: "secondary", onPress: () => onClearFilter(category.label, filter), children: jsx(StrokeCloseboxIcon, {}) })] }, `${category.label}-${filter.value}`))) }, `${category.label}-${index}`))) }));
7349
7334
  };
7350
7335
 
7351
7336
  function AlgoliaActiveFilters() {
@@ -7386,9 +7371,9 @@ function AlgoliaCategoriesFilters() {
7386
7371
  const t = useFormattedMessage();
7387
7372
  if (categories.length <= 0)
7388
7373
  return null;
7389
- return (jsx(FilterSection, { title: t('facet.categories'), variant: "default", children: categories.map(({ count, isRefined, value }) => (jsxs(Link, { className: clsx(styles$p.category, {
7390
- [styles$p['is-active']]: isRefined,
7391
- }), isDisabled: isRefined, onClick: () => refine(value), children: [jsx("span", { className: styles$p.value, children: value }), ' ', jsxs("span", { className: styles$p.count, children: ["(", count, ")"] })] }, value))) }));
7374
+ return (jsx(FilterSection, { title: t('facet.categories'), variant: "default", children: categories.map(({ count, isRefined, value }) => (jsxs(Link, { className: clsx(styles$o.category, {
7375
+ [styles$o['is-active']]: isRefined,
7376
+ }), isDisabled: isRefined, onClick: () => refine(value), children: [jsx("span", { className: styles$o.value, children: value }), ' ', jsxs("span", { className: styles$o.count, children: ["(", count, ")"] })] }, value))) }));
7392
7377
  }
7393
7378
 
7394
7379
  function AlgoliaDummyRefinementListConsumer() {
@@ -7440,7 +7425,7 @@ const MULTISELECT_ATTRIBUTE_IGNORE_LIST = [
7440
7425
  ];
7441
7426
  function PanelCloseButton() {
7442
7427
  const { close } = useSidebarActions();
7443
- return (jsx("div", { className: styles$p.button, children: jsxs(Button, { withArrow: true, onPress: close, size: "md", children: [jsx(FormattedMessage, { id: "Show" }), " ", jsx(AlgoliaResultsCount, {})] }) }));
7428
+ return (jsx("div", { className: styles$o.button, children: jsxs(Button, { withArrow: true, onPress: close, size: "md", children: [jsx(FormattedMessage, { id: "Show" }), " ", jsx(AlgoliaResultsCount, {})] }) }));
7444
7429
  }
7445
7430
  function AlgoliaFilterPanel({ showActiveCategories = false, showCategoriesFilters = false, }) {
7446
7431
  /*
@@ -7455,7 +7440,7 @@ function AlgoliaFilterPanel({ showActiveCategories = false, showCategoriesFilter
7455
7440
  facets: ['*'],
7456
7441
  maxValuesPerFacet: 100,
7457
7442
  });
7458
- return (jsx("div", { className: styles$p['filter-panel'], children: jsxs("div", { className: styles$p['scroll-container'], children: [showActiveCategories && jsx(AlgoliaActiveCategories, {}), showCategoriesFilters && jsx(AlgoliaCategoriesFilters, {}), jsx(AlgoliaActiveFilters, {}), attributesToRender.length === 0 ? (jsx(AlgoliaDummyRefinementListConsumer, {})) : (jsx("section", { children: attributesToRender
7443
+ return (jsx("div", { className: styles$o['filter-panel'], children: jsxs("div", { className: styles$o['scroll-container'], children: [showActiveCategories && jsx(AlgoliaActiveCategories, {}), showCategoriesFilters && jsx(AlgoliaCategoriesFilters, {}), jsx(AlgoliaActiveFilters, {}), attributesToRender.length === 0 ? (jsx(AlgoliaDummyRefinementListConsumer, {})) : (jsx("section", { children: attributesToRender
7459
7444
  .filter(attribute => !MULTISELECT_ATTRIBUTE_IGNORE_LIST.includes(attribute))
7460
7445
  .map((attribute, index) => {
7461
7446
  return (jsx(AlgoliaMultiSelectFilterSection, { attribute: attribute }, `attribute-${index}`));
@@ -7466,10 +7451,10 @@ function GlyphsChevronsSlimRightIcon(props) {
7466
7451
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "12", viewBox: "0 0 12 12", width: "12", children: jsx("path", { d: "M9,6 L4.06645029,1 C3.87890406,1.08169007 3.69487412,1.19817561 3.51436046,1.34945663 C3.3338468,1.50073764 3.16239331,1.68216803 3,1.89374779 L7.08347812,5.98800959 L3,9.9960307 C3.16649238,10.2121071 3.33794587,10.4031847 3.51436046,10.5692635 C3.69077505,10.7353424 3.87480499,10.8789212 4.06645029,11 L9,6 Z", fillRule: "evenodd" }) }));
7467
7452
  }
7468
7453
 
7469
- var styles$n = {"pagination":"pagination-module-k4OgY","page-number-container":"pagination-module-oq89A"};
7454
+ var styles$m = {"pagination":"pagination-module-k4OgY","page-number-container":"pagination-module-oq89A"};
7470
7455
 
7471
7456
  function Pagination({ currentPage, onChange, totalPages, }) {
7472
- return (jsxs("div", { className: styles$n.pagination, children: [jsx(IconButton, { isDisabled: currentPage === 1, onPress: () => onChange(currentPage - 1), children: jsx(GlyphsChevronsSlimLeftIcon, {}) }), jsxs("div", { className: styles$n['page-number-container'], children: [jsx(NumberField, { autoGrow: true, label: "current-page", maxValue: totalPages, minValue: 1, onChange: onChange, value: currentPage }), jsx(FormattedMessage, { id: "of" }), jsx("div", { children: totalPages })] }), jsx(IconButton, { isDisabled: currentPage >= totalPages, onPress: () => onChange(currentPage + 1), children: jsx(GlyphsChevronsSlimRightIcon, {}) })] }));
7457
+ return (jsxs("div", { className: styles$m.pagination, children: [jsx(IconButton, { isDisabled: currentPage === 1, onPress: () => onChange(currentPage - 1), children: jsx(GlyphsChevronsSlimLeftIcon, {}) }), jsxs("div", { className: styles$m['page-number-container'], children: [jsx(NumberField, { autoGrow: true, label: "current-page", maxValue: totalPages, minValue: 1, onChange: onChange, value: currentPage }), jsx(FormattedMessage, { id: "of" }), jsx("div", { children: totalPages })] }), jsx(IconButton, { isDisabled: currentPage >= totalPages, onPress: () => onChange(currentPage + 1), children: jsx(GlyphsChevronsSlimRightIcon, {}) })] }));
7473
7458
  }
7474
7459
 
7475
7460
  function AlgoliaPagination({ onChange }) {
@@ -7829,12 +7814,12 @@ function AlgoliaSortBy() {
7829
7814
  return (jsx(Select, { label: t('Sort by'), onChange: value => refine(String(value)), options: options, selectedOption: currentRefinement, showLabel: false, size: "sm" }));
7830
7815
  }
7831
7816
 
7832
- var styles$m = {"category-card":"category-card-module-4NUjH","title":"category-card-module-LEhh3","arrow":"category-card-module-hL4-A","is-selected":"category-card-module-vJ7vB","image-container":"category-card-module-oNTrK"};
7817
+ var styles$l = {"category-card":"category-card-module-4NUjH","title":"category-card-module-LEhh3","arrow":"category-card-module-hL4-A","is-selected":"category-card-module-vJ7vB","image-container":"category-card-module-oNTrK"};
7833
7818
 
7834
7819
  function CategoryCard({ href, image, isSelected = false, onClick, title, withArrow = false, }) {
7835
7820
  return (jsxs(RouteLink, { className: clsx({
7836
- [styles$m['is-selected']]: isSelected,
7837
- }, styles$m['category-card']), href: href, onClick: onClick, children: [jsx("div", { className: styles$m['image-container'], children: jsx(Image, { ...image, fit: "contain" }) }), jsxs("p", { className: styles$m.title, children: [jsx("span", { children: title }), withArrow && jsx(GlyphsArrowBoldCapsRightIcon, { className: styles$m.arrow })] })] }));
7821
+ [styles$l['is-selected']]: isSelected,
7822
+ }, styles$l['category-card']), href: href, onClick: onClick, children: [jsx("div", { className: styles$l['image-container'], children: jsx(Image, { ...image, fit: "contain" }) }), jsxs("p", { className: styles$l.title, children: [jsx("span", { children: title }), withArrow && jsx(GlyphsArrowBoldCapsRightIcon, { className: styles$l.arrow })] })] }));
7838
7823
  }
7839
7824
 
7840
7825
  const ProductListingPageContext = createContext({
@@ -7863,26 +7848,26 @@ function ConnectedCategoryCarousel() {
7863
7848
  }, title: category.title }, index))) }));
7864
7849
  }
7865
7850
 
7866
- var styles$l = {"blank-page-spacer":"blank-page-spacer-module-lXxle","loading-overlay":"blank-page-spacer-module-hbxDP"};
7851
+ var styles$k = {"blank-page-spacer":"blank-page-spacer-module-lXxle","loading-overlay":"blank-page-spacer-module-hbxDP"};
7867
7852
 
7868
7853
  function BlankPageSpacer({ children }) {
7869
- return jsx("div", { className: styles$l['blank-page-spacer'], children: children });
7854
+ return jsx("div", { className: styles$k['blank-page-spacer'], children: children });
7870
7855
  }
7871
7856
 
7872
- var styles$k = {"promo-card":"promo-card-module-e2oii","sm":"promo-card-module-1-jT0","lg":"promo-card-module-zIYDh"};
7857
+ var styles$j = {"promo-card":"promo-card-module-e2oii","sm":"promo-card-module-1-jT0","lg":"promo-card-module-zIYDh"};
7873
7858
 
7874
7859
  function PromoCard({ href, image, variant }) {
7875
- return (jsx(RouteLink, { className: clsx(styles$k['promo-card'], styles$k[variant]), href: href, children: jsx(Image, { fit: "cover", image: image, title: image.altText }) }));
7860
+ return (jsx(RouteLink, { className: clsx(styles$j['promo-card'], styles$j[variant]), href: href, children: jsx(Image, { fit: "cover", image: image, title: image.altText }) }));
7876
7861
  }
7877
7862
 
7878
- var styles$j = {"promos":"promo-cards-module-Dy4p3"};
7863
+ var styles$i = {"promos":"promo-cards-module-Dy4p3"};
7879
7864
 
7880
7865
  function PromoCards({ promoCardsData = [], }) {
7881
7866
  const { lg } = useBreakpoint();
7882
7867
  const promoCards = promoCardsData.map((promoCard, index) => (jsx(PromoCard, { href: promoCard.href, image: promoCard.image, variant: index % 2 === 0 ? 'lg' : 'sm' }, `promo-card-${index}`)));
7883
7868
  if (promoCardsData.length === 0)
7884
7869
  return null;
7885
- return (jsx("div", { className: styles$j.promos, children: lg ? (jsx(Fragment, { children: promoCards })) : (jsx(Carousel, { hasNavigation: false, hasOverflow: false, slides: promoCards, spaceBetween: 16 })) }));
7870
+ return (jsx("div", { className: styles$i.promos, children: lg ? (jsx(Fragment, { children: promoCards })) : (jsx(Carousel, { hasNavigation: false, hasOverflow: false, slides: promoCards, spaceBetween: 16 })) }));
7886
7871
  }
7887
7872
 
7888
7873
  const scrollToTop = (scrollOptions) => {
@@ -7892,17 +7877,17 @@ const scrollToTop = (scrollOptions) => {
7892
7877
  });
7893
7878
  };
7894
7879
 
7895
- var styles$i = {"sidebar":"sidebar-module-fSa9Q","is-docked":"sidebar-module-AIq0M","transition":"sidebar-module-LEZgg","is-open":"sidebar-module-lV7wp","is-closed":"sidebar-module-dGDrr","close":"sidebar-module-2puGC","is-not-docked":"sidebar-module-Scw7D"};
7880
+ var styles$h = {"sidebar":"sidebar-module-fSa9Q","is-docked":"sidebar-module-AIq0M","transition":"sidebar-module-LEZgg","is-open":"sidebar-module-lV7wp","is-closed":"sidebar-module-dGDrr","close":"sidebar-module-2puGC","is-not-docked":"sidebar-module-Scw7D"};
7896
7881
 
7897
7882
  function InnerSidebar({ children }) {
7898
7883
  const { isDocked, isOpen, toggle, transition } = useSidebar();
7899
- return (jsxs("aside", { className: clsx(styles$i.sidebar, {
7900
- [styles$i['transition']]: transition,
7901
- [styles$i['is-open']]: isOpen,
7902
- [styles$i['is-closed']]: !isOpen,
7903
- [styles$i['is-docked']]: isDocked,
7904
- [styles$i['is-not-docked']]: !isDocked,
7905
- }), children: [jsx("div", { className: styles$i.close, children: jsx(IconButton, { color: "secondary", onPress: toggle, children: jsx(StrokeCloseboxIcon, {}) }) }), children] }));
7884
+ return (jsxs("aside", { className: clsx(styles$h.sidebar, {
7885
+ [styles$h['transition']]: transition,
7886
+ [styles$h['is-open']]: isOpen,
7887
+ [styles$h['is-closed']]: !isOpen,
7888
+ [styles$h['is-docked']]: isDocked,
7889
+ [styles$h['is-not-docked']]: !isDocked,
7890
+ }), children: [jsx("div", { className: styles$h.close, children: jsx(IconButton, { color: "secondary", onPress: toggle, children: jsx(StrokeCloseboxIcon, {}) }) }), children] }));
7906
7891
  }
7907
7892
  function Sidebar({ children }) {
7908
7893
  return jsx(InnerSidebar, { children: children });
@@ -7917,11 +7902,11 @@ const ToggleSidebarButton = () => {
7917
7902
  return (jsx(Button, { color: "secondary", icon: jsx(StrokeFilterIcon, {}), onPress: toggle, size: "sm", variant: "outline", children: isOpen ? (jsx(FormattedMessage, { id: "Hide filters" })) : (jsx(FormattedMessage, { id: "Show filters" })) }));
7918
7903
  };
7919
7904
 
7920
- var styles$h = {"no-results":"no-results-module-T1cti","title":"no-results-module-mZ8TQ","body":"no-results-module-FQGhC","buttons":"no-results-module-QGZsD"};
7905
+ var styles$g = {"no-results":"no-results-module-T1cti","title":"no-results-module-mZ8TQ","body":"no-results-module-FQGhC","buttons":"no-results-module-QGZsD"};
7921
7906
 
7922
7907
  function NoResults$1({ content, title }) {
7923
7908
  const { lg } = useBreakpoint();
7924
- return (jsxs("div", { className: styles$h['no-results'], children: [jsx(Heading, { bold: false, className: styles$h.title, size: lg ? 's' : 'xs', tag: "h2", children: title }), jsx("p", { className: styles$h.body, children: content }), jsx("div", { className: styles$h.buttons, children: jsx(RouteButton, { withArrow: true, href: `${config.SHOP_API_URL}`, size: "md", children: jsx(FormattedMessage, { id: "Continue shopping" }) }) })] }));
7909
+ return (jsxs("div", { className: styles$g['no-results'], children: [jsx(Heading, { bold: false, className: styles$g.title, size: lg ? 's' : 'xs', tag: "h2", children: title }), jsx("p", { className: styles$g.body, children: content }), jsx("div", { className: styles$g.buttons, children: jsx(RouteButton, { withArrow: true, href: `${config.SHOP_API_URL}`, size: "md", children: jsx(FormattedMessage, { id: "Continue shopping" }) }) })] }));
7925
7910
  }
7926
7911
 
7927
7912
  function getCookies() {
@@ -8133,19 +8118,19 @@ function useAlgoliaInsights() {
8133
8118
  sendEvents: Parameters<ReturnType<typeof makeSendEvents>>;
8134
8119
  */
8135
8120
 
8136
- var styles$g = {"modal-overlay":"modal-module-rVFJc","modal-fade":"modal-module-63Uyl","modal":"modal-module-6vlFt","modal-zoom":"modal-module-aPJ7X"};
8121
+ var styles$f = {"modal-overlay":"modal-module-rVFJc","modal-fade":"modal-module-63Uyl","modal":"modal-module-6vlFt","modal-zoom":"modal-module-aPJ7X"};
8137
8122
 
8138
8123
  function Modal({ children, className, isDismissable, isKeyboardDismissDisabled, isOpen, onOpenChange, }) {
8139
- return (jsx(ModalOverlay, { className: clsx(styles$g['modal-overlay'], className), isDismissable: isDismissable, isKeyboardDismissDisabled: isKeyboardDismissDisabled, isOpen: isOpen, onOpenChange: onOpenChange, children: jsx(Modal$1, { className: styles$g.modal, children: children }) }));
8124
+ return (jsx(ModalOverlay, { className: clsx(styles$f['modal-overlay'], className), isDismissable: isDismissable, isKeyboardDismissDisabled: isKeyboardDismissDisabled, isOpen: isOpen, onOpenChange: onOpenChange, children: jsx(Modal$1, { className: styles$f.modal, children: children }) }));
8140
8125
  }
8141
8126
 
8142
- var styles$f = {"header":"dialog-module-ZnsAe","heading":"dialog-module-SwpuZ","close":"dialog-module-Y7Tqg","content":"dialog-module-Koqia","footer":"dialog-module-y7Axm"};
8127
+ var styles$e = {"header":"dialog-module-ZnsAe","heading":"dialog-module-SwpuZ","close":"dialog-module-Y7Tqg","content":"dialog-module-Koqia","footer":"dialog-module-y7Axm"};
8143
8128
 
8144
8129
  function Footer({ close }) {
8145
8130
  return (jsx(Button, { onPress: close, size: "md", children: "Close" }));
8146
8131
  }
8147
8132
  function Dialog({ allowClose = true, children, className, footer = Footer, hideTitle, isDismissable, isKeyboardDismissDisabled, isOpen, onOpenChange, onSubmit, title, validationErrors, }) {
8148
- return (jsx(Modal, { className: clsx(styles$f['modal-overlay'], className), isDismissable: isDismissable, isKeyboardDismissDisabled: isKeyboardDismissDisabled, isOpen: isOpen, onOpenChange: onOpenChange, children: jsx(Dialog$1, { "aria-label": title, children: ({ close }) => (jsxs(Form, { onSubmit: onSubmit || (e => e.preventDefault), validationErrors: validationErrors, children: [jsxs("header", { className: styles$f.header, children: [!hideTitle && (jsx(Heading, { className: styles$f.heading, size: "xs", children: title })), jsx("div", { className: styles$f.close, children: jsx(IconButton, { color: "secondary", isDisabled: !allowClose, onPress: close, children: jsx(StrokeCloseboxIcon, {}) }) })] }), jsx("div", { className: styles$f.content, children: children instanceof Function ? children({ close }) : children }), jsx("footer", { className: styles$f.footer, children: footer instanceof Function ? footer({ close }) : footer })] })) }) }));
8133
+ return (jsx(Modal, { className: clsx(styles$e['modal-overlay'], className), isDismissable: isDismissable, isKeyboardDismissDisabled: isKeyboardDismissDisabled, isOpen: isOpen, onOpenChange: onOpenChange, children: jsx(Dialog$1, { "aria-label": title, children: ({ close }) => (jsxs(Form, { onSubmit: onSubmit || (e => e.preventDefault), validationErrors: validationErrors, children: [jsxs("header", { className: styles$e.header, children: [!hideTitle && (jsx(Heading, { className: styles$e.heading, size: "xs", children: title })), jsx("div", { className: styles$e.close, children: jsx(IconButton, { color: "secondary", isDisabled: !allowClose, onPress: close, children: jsx(StrokeCloseboxIcon, {}) }) })] }), jsx("div", { className: styles$e.content, children: children instanceof Function ? children({ close }) : children }), jsx("footer", { className: styles$e.footer, children: footer instanceof Function ? footer({ close }) : footer })] })) }) }));
8149
8134
  }
8150
8135
 
8151
8136
  function SignInDialog({ isOpen, onOpenChange }) {
@@ -8159,13 +8144,13 @@ function ConnectedFavoriteButton({ onFavorite: _onFavorite, productId, }) {
8159
8144
  const isAuthenticated = useIsAuthenticated();
8160
8145
  const [showSignInDialog, setShowSignInDialog] = useState(false);
8161
8146
  const { mutate: addWishListItemToCurrentWishList } = useAddWishListItemToCurrentWishList();
8162
- const { mutate: removeWishListItemFromWishList } = useRemoveWishListItemFromCurrentWishList();
8147
+ const { mutate: deleteWishListItemFromWishList } = useDeleteWishListItemFromWishList();
8163
8148
  function onFavorite() {
8164
8149
  if (!isAuthenticated) {
8165
8150
  return setShowSignInDialog(true);
8166
8151
  }
8167
8152
  if (wishList && wishListItem) {
8168
- removeWishListItemFromWishList({
8153
+ deleteWishListItemFromWishList({
8169
8154
  wishListId: wishList.id,
8170
8155
  wishListItemId: wishListItem.id,
8171
8156
  });
@@ -8206,7 +8191,7 @@ function ProductListingProductOverview() {
8206
8191
  }, productId: product.storefrontId, sku: product.id, tags: product.labels, title: product.name }, product.storefrontId))) }));
8207
8192
  }
8208
8193
 
8209
- var styles$e = {"product-listing":"product-listing-page-module-dmIHF","header":"product-listing-page-module-Oz76Z","promos":"product-listing-page-module-iY1yj","action-bar":"product-listing-page-module-XxGrr","sidebar-toggle":"product-listing-page-module-F7bxy","sort":"product-listing-page-module-aQzHr","count":"product-listing-page-module-zx79v","categories":"product-listing-page-module-R4aOl","product-grid-container":"product-listing-page-module-ICkKg","product-grid":"product-listing-page-module-LHE7z","pagination":"product-listing-page-module-xsRaj"};
8194
+ var styles$d = {"product-listing":"product-listing-page-module-dmIHF","header":"product-listing-page-module-Oz76Z","promos":"product-listing-page-module-iY1yj","action-bar":"product-listing-page-module-XxGrr","sidebar-toggle":"product-listing-page-module-F7bxy","sort":"product-listing-page-module-aQzHr","count":"product-listing-page-module-zx79v","categories":"product-listing-page-module-R4aOl","product-grid-container":"product-listing-page-module-ICkKg","product-grid":"product-listing-page-module-LHE7z","pagination":"product-listing-page-module-xsRaj"};
8210
8195
 
8211
8196
  function ProductListingPage({ pageUrl, searchClient: _searchClient, }) {
8212
8197
  const languageCode = useLanguageCode();
@@ -8230,15 +8215,15 @@ function ProductListingPage({ pageUrl, searchClient: _searchClient, }) {
8230
8215
  return (jsx(BlankPageSpacer, { children: jsx(LoadingOverlay, {}) }));
8231
8216
  }
8232
8217
  const category = data.breadCrumb.slice(1).map(breadCrumb => breadCrumb.label);
8233
- return (jsx(ProductListingPageProvider, { data: data, error: error, isError: isError, isLoading: isFetching, children: jsx(AlgoliaProvider, { categoryPages: data.categoryPages, hierarchicalCategories: data.hierarchicalCategories, languageCode: languageCode, offlineSearchClient: offlineSearchClient, searchClient: searchClient, children: jsx(Page, { breadCrumb: data.breadCrumb, className: styles$e['product-listing'], title: category.slice().pop(), children: jsx(ProductListingPageContent, { promoCards: data.promoCards?.top }) }) }) }));
8218
+ return (jsx(ProductListingPageProvider, { data: data, error: error, isError: isError, isLoading: isFetching, children: jsx(AlgoliaProvider, { categoryPages: data.categoryPages, hierarchicalCategories: data.hierarchicalCategories, languageCode: languageCode, offlineSearchClient: offlineSearchClient, searchClient: searchClient, children: jsx(Page, { breadCrumb: data.breadCrumb, className: styles$d['product-listing'], title: category.slice().pop(), children: jsx(ProductListingPageContent, { promoCards: data.promoCards?.top }) }) }) }));
8234
8219
  }
8235
8220
  function ProductListingPageContent({ promoCards, }) {
8236
8221
  const { isLoading, products } = useAlgoliaProductHits();
8237
8222
  const hasProducts = products.length > 0;
8238
8223
  const t = useFormattedMessage();
8239
- return (jsxs(Fragment, { children: [isLoading !== false && !hasProducts && jsx(LoadingOverlay, {}), isLoading === false && !hasProducts && (jsx(NoResults$1, { content: jsxs("p", { children: [jsx(FormattedMessage, { id: "You could try exploring our products by category" }), ' ', jsx("br", {}), jsx(FormattedMessage, { id: "Try 'Search' and try to find the product you're looking for" })] }), title: t('Sorry, there are no products found') })), jsxs("div", { style: {
8224
+ return (jsxs(Fragment, { children: [isLoading !== false && !hasProducts && (jsx(BlankPageSpacer, { children: jsx(LoadingOverlay, {}) })), isLoading === false && !hasProducts && (jsx(NoResults$1, { content: jsxs("p", { children: [jsx(FormattedMessage, { id: "You could try exploring our products by category" }), ' ', jsx("br", {}), jsx(FormattedMessage, { id: "Try 'Search' and try to find the product you're looking for" })] }), title: t('Sorry, there are no products found') })), jsxs("div", { style: {
8240
8225
  display: !hasProducts ? 'none' : undefined,
8241
- }, children: [promoCards?.length && (jsx("section", { className: styles$e.promos, children: jsx(PromoCards, { promoCardsData: promoCards }) })), jsx("section", { className: styles$e.categories, children: jsx(ConnectedCategoryCarousel, {}) }), jsxs("section", { className: styles$e['action-bar'], children: [jsx("div", { className: styles$e['sidebar-toggle'], children: jsx(ToggleSidebarButton, {}) }), jsx("span", { className: styles$e.count, children: jsx(AlgoliaResultsCount, {}) }), jsx("div", { className: styles$e.sort, children: jsx(AlgoliaSortBy, {}) })] }), jsx("section", { children: jsxs("div", { className: styles$e['product-grid-container'], children: [jsx(Sidebar, { children: jsx(AlgoliaFilterPanel, { showActiveCategories: true }) }), jsxs("div", { className: styles$e['product-grid'], children: [jsx(ProductListingProductOverview, {}), jsx("div", { className: styles$e.pagination, children: jsx(AlgoliaPagination, { onChange: () => {
8226
+ }, children: [promoCards?.length && (jsx("section", { className: styles$d.promos, children: jsx(PromoCards, { promoCardsData: promoCards }) })), jsx("section", { className: styles$d.categories, children: jsx(ConnectedCategoryCarousel, {}) }), jsxs("section", { className: styles$d['action-bar'], children: [jsx("div", { className: styles$d['sidebar-toggle'], children: jsx(ToggleSidebarButton, {}) }), jsx("span", { className: styles$d.count, children: jsx(AlgoliaResultsCount, {}) }), jsx("div", { className: styles$d.sort, children: jsx(AlgoliaSortBy, {}) })] }), jsx("section", { children: jsxs("div", { className: styles$d['product-grid-container'], children: [jsx(Sidebar, { children: jsx(AlgoliaFilterPanel, { showActiveCategories: true }) }), jsxs("div", { className: styles$d['product-grid'], children: [jsx(ProductListingProductOverview, {}), jsx("div", { className: styles$d.pagination, children: jsx(AlgoliaPagination, { onChange: () => {
8242
8227
  setTimeout(() => {
8243
8228
  scrollToTop();
8244
8229
  }, 100);
@@ -8267,7 +8252,7 @@ function SearchResultProductOverview() {
8267
8252
  }, productId: product.storefrontId, sku: product.id, tags: product.labels, title: product.name }, product.storefrontId))) }));
8268
8253
  }
8269
8254
 
8270
- var styles$d = {"search-results":"search-results-page-module-M7SIu","header":"search-results-page-module-DpNT-","action-bar":"search-results-page-module-RJoMk","sidebar-toggle":"search-results-page-module-SzLQb","sort":"search-results-page-module-cgonp","count":"search-results-page-module-hunZp","categories":"search-results-page-module-n2lSj","product-grid-container":"search-results-page-module-TK-iE","product-grid":"search-results-page-module-HWUnk","pagination":"search-results-page-module-SZYiA"};
8255
+ var styles$c = {"search-results":"search-results-page-module-M7SIu","header":"search-results-page-module-DpNT-","action-bar":"search-results-page-module-RJoMk","sidebar-toggle":"search-results-page-module-SzLQb","sort":"search-results-page-module-cgonp","count":"search-results-page-module-hunZp","categories":"search-results-page-module-n2lSj","product-grid-container":"search-results-page-module-TK-iE","product-grid":"search-results-page-module-HWUnk","pagination":"search-results-page-module-SZYiA"};
8271
8256
 
8272
8257
  function SearchResultsPage({ location, searchClient, }) {
8273
8258
  const languageCode = useLanguageCode();
@@ -8276,7 +8261,7 @@ function SearchResultsPage({ location, searchClient, }) {
8276
8261
  const keyword = Array.isArray(keywords) ? keywords.join(' ') : keywords;
8277
8262
  if (!keyword)
8278
8263
  return jsx("h1", { children: "No search results...." });
8279
- return (jsx(AlgoliaProvider, { languageCode: languageCode, query: keyword, searchClient: searchClient, children: jsx(Page, { breadCrumb: [], className: styles$d['search-results'], title: t("'{0}' in all products", {
8264
+ return (jsx(AlgoliaProvider, { languageCode: languageCode, query: keyword, searchClient: searchClient, children: jsx(Page, { breadCrumb: [], className: styles$c['search-results'], title: t("'{0}' in all products", {
8280
8265
  replacementValues: { 0: keyword },
8281
8266
  }), children: jsx(SearchResultsPageContent, { keyword: keyword }) }) }));
8282
8267
  }
@@ -8288,14 +8273,14 @@ function SearchResultsPageContent({ keyword }) {
8288
8273
  replacementValues: { 0: keyword },
8289
8274
  }) })), jsxs("div", { style: {
8290
8275
  display: !hasProducts ? 'none' : undefined,
8291
- }, children: [jsxs("section", { className: styles$d['action-bar'], children: [jsx("div", { className: styles$d['sidebar-toggle'], children: jsx(ToggleSidebarButton, {}) }), jsx("span", { className: styles$d.count, children: jsx(AlgoliaResultsCount, {}) }), jsx("div", { className: styles$d.sort, children: jsx(AlgoliaSortBy, {}) })] }), jsx("section", { children: jsxs("div", { className: styles$d['product-grid-container'], children: [jsx(Sidebar, { children: jsx(AlgoliaFilterPanel, { showCategoriesFilters: true }) }), jsxs("div", { className: styles$d['product-grid'], children: [jsx(SearchResultProductOverview, {}), jsx("div", { className: styles$d.pagination, children: jsx(AlgoliaPagination, { onChange: () => {
8276
+ }, children: [jsxs("section", { className: styles$c['action-bar'], children: [jsx("div", { className: styles$c['sidebar-toggle'], children: jsx(ToggleSidebarButton, {}) }), jsx("span", { className: styles$c.count, children: jsx(AlgoliaResultsCount, {}) }), jsx("div", { className: styles$c.sort, children: jsx(AlgoliaSortBy, {}) })] }), jsx("section", { children: jsxs("div", { className: styles$c['product-grid-container'], children: [jsx(Sidebar, { children: jsx(AlgoliaFilterPanel, { showCategoriesFilters: true }) }), jsxs("div", { className: styles$c['product-grid'], children: [jsx(SearchResultProductOverview, {}), jsx("div", { className: styles$c.pagination, children: jsx(AlgoliaPagination, { onChange: () => {
8292
8277
  setTimeout(() => {
8293
8278
  scrollToTop();
8294
8279
  }, 100);
8295
8280
  } }) })] })] }) })] })] }));
8296
8281
  }
8297
8282
 
8298
- var styles$c = {"overlay-background":"overlay-background-module-j7R7T","open":"overlay-background-module-DZWsP","close":"overlay-background-module-8pcWN"};
8283
+ var styles$b = {"overlay-background":"overlay-background-module-j7R7T","open":"overlay-background-module-DZWsP","close":"overlay-background-module-8pcWN"};
8299
8284
 
8300
8285
  function OverlayBackground({ className, isOpen, onClick, }) {
8301
8286
  const [, setRender] = useState(isOpen);
@@ -8316,13 +8301,13 @@ function OverlayBackground({ className, isOpen, onClick, }) {
8316
8301
  }, [isOpen]);
8317
8302
  if (typeof window === 'undefined')
8318
8303
  return null;
8319
- return ReactDOM.createPortal(jsx("div", { ref: nodeRef, className: clsx(styles$c['overlay-background'], {
8320
- [styles$c['open']]: isOpen,
8321
- [styles$c['close']]: !isOpen,
8304
+ return ReactDOM.createPortal(jsx("div", { ref: nodeRef, className: clsx(styles$b['overlay-background'], {
8305
+ [styles$b['open']]: isOpen,
8306
+ [styles$b['close']]: !isOpen,
8322
8307
  }, className), onClick: onClick }), document.body);
8323
8308
  }
8324
8309
 
8325
- var styles$b = {"sidebar-container":"sidebar-provider-module-rjeCL","transition":"sidebar-provider-module-C0cKR"};
8310
+ var styles$a = {"sidebar-container":"sidebar-provider-module-rjeCL","transition":"sidebar-provider-module-C0cKR"};
8326
8311
 
8327
8312
  function SidebarDetectBreakpoint() {
8328
8313
  const xxl = useIsBreakpoint('xxl');
@@ -8352,10 +8337,10 @@ function SidebarDetectBreakpoint() {
8352
8337
  function SidebarProvider({ children }) {
8353
8338
  const state = useSidebar();
8354
8339
  const { close, isDocked, isOpen, transition } = state;
8355
- return (jsxs("div", { className: clsx(styles$b['sidebar-container'], {
8356
- [styles$b['transition']]: transition,
8357
- [styles$b['docked']]: isDocked,
8358
- [styles$b['open']]: isOpen,
8340
+ return (jsxs("div", { className: clsx(styles$a['sidebar-container'], {
8341
+ [styles$a['transition']]: transition,
8342
+ [styles$a['docked']]: isDocked,
8343
+ [styles$a['open']]: isOpen,
8359
8344
  }), children: [jsx(SidebarDetectBreakpoint, {}), children, isDocked && isOpen && (jsx(OverlayBackground, { isOpen: isOpen, onClick: close }))] }));
8360
8345
  }
8361
8346
 
@@ -8553,11 +8538,30 @@ function AlgoliaSearchProvider({ children, searchClient: _searchClient, }) {
8553
8538
  const productsIndexName = index.default;
8554
8539
  const productsQuerySuggestionsIndexName = index.suggestions;
8555
8540
  const { sendProductClickFromSearchEvent } = useAlgoliaInsights();
8541
+ const getSources = useDebouncedCallback(({ query }) => {
8542
+ return [
8543
+ {
8544
+ getItems() {
8545
+ return getAlgoliaResults({
8546
+ queries: [
8547
+ {
8548
+ indexName: productsIndexName,
8549
+ query,
8550
+ },
8551
+ ],
8552
+ searchClient,
8553
+ });
8554
+ },
8555
+ sourceId: 'productsPlugin',
8556
+ },
8557
+ ];
8558
+ }, 300);
8556
8559
  /**
8557
8560
  * https://www.algolia.com/doc/ui-libraries/autocomplete/guides/creating-a-renderer/#mirror-a-native-mobile-experience
8558
8561
  */
8559
8562
  const autocomplete = useMemo(() => createAutocomplete({
8560
8563
  autoFocus: true,
8564
+ getSources,
8561
8565
  insights: {
8562
8566
  onSelect({ insightsEvents }) {
8563
8567
  insightsEvents.forEach(event => {
@@ -8674,13 +8678,12 @@ function useAlgoliaSearch() {
8674
8678
  };
8675
8679
  }
8676
8680
 
8677
- var styles$a = {"global-search-overlay-background-position":"global-search-module-mmXv1","search-wrapper":"global-search-module-d2g2F","search-root":"global-search-module-Sx8Lx"};
8681
+ var styles$9 = {"global-search-overlay-background-position":"global-search-module-mmXv1","search-wrapper":"global-search-module-d2g2F","search-root":"global-search-module-Sx8Lx","search-container":"global-search-module--orCF","input":"global-search-module-vXnL6","entering":"global-search-module-MYwlp","entered":"global-search-module-Jmt3c","exiting":"global-search-module-gQQfY","exited":"global-search-module-AABcw"};
8678
8682
 
8679
8683
  const GlobalSearchDisclosureContext = createContext(null);
8680
- function GlobalSearchContainer({ children, }) {
8684
+ function GlobalSearchProvider({ children, searchClient, }) {
8681
8685
  const { close, isOpen, open, toggle } = useDisclosure(false);
8682
- const panelRef = useRef(null);
8683
- return (jsx(TransitionGroup, { children: jsxs(GlobalSearchDisclosureContext.Provider, { value: { close, isOpen, open, toggle }, children: [jsx(Transition, { in: isOpen, nodeRef: panelRef, timeout: 300, children: state => (jsx("div", { ref: panelRef, className: state, children: children })) }), jsx(OverlayBackground, { className: styles$a['global-search-overlay-background-position'], isOpen: isOpen, onClick: toggle })] }) }));
8686
+ return (jsx(AlgoliaSearchProvider, { searchClient: searchClient, children: jsxs(GlobalSearchDisclosureContext.Provider, { value: { close, isOpen, open, toggle }, children: [children, jsx(OverlayBackground, { className: styles$9['global-search-overlay-background-position'], isOpen: isOpen, onClick: toggle })] }) }));
8684
8687
  }
8685
8688
 
8686
8689
  const useGlobalSearchDisclosure = () => {
@@ -8699,7 +8702,7 @@ function StrokeSearchIcon(props) {
8699
8702
  return (jsx("svg", { xmlns: "http://www.w3.org/2000/svg", ...props, fill: "currentColor", height: "24", viewBox: "0 0 24 24", width: "24", children: jsx("path", { d: "M10.1044994,16.5738466 C6.53724234,16.5738466 3.63503896,13.6716658 3.63503896,10.1044364 C3.63503896,6.53739167 6.53724234,3.63521084 10.1044994,3.63521084 C13.6717564,3.63521084 16.5737752,6.53739167 16.5737752,10.1044364 C16.5737752,13.6716658 13.6717564,16.5738466 10.1044994,16.5738466 M21.7583512,20.6019769 L16.3655653,15.2505791 C17.5171805,13.8510793 18.2089988,12.0586047 18.2089988,10.1044364 C18.2089988,5.62851052 14.5804601,2 10.1044994,2 C5.62853871,2 2,5.62851052 2,10.1044364 C2,14.5805469 5.62853871,18.2090574 10.1044994,18.2090574 C12.0372712,18.2090574 13.8113014,17.5312728 15.2041671,16.4020009 L20.6065514,21.7628123 C20.7660314,21.9208144 20.9742413,22 21.1824513,22 C21.3925071,22 21.6029321,21.9191531 21.7627812,21.7581977 C22.0808183,21.4377636 22.0787879,20.9200114 21.7583512,20.6019769", fillRule: "evenodd" }) }));
8700
8703
  }
8701
8704
 
8702
- var styles$9 = {"form":"search-input-module-xCCzd","input-container":"search-input-module-okP8k","icon":"search-input-module-GZbhK","label":"search-input-module-vKCm4","reset-btn":"search-input-module-lYseZ","input":"search-input-module-bELFK"};
8705
+ var styles$8 = {"form":"search-input-module-xCCzd","input-container":"search-input-module-okP8k","icon":"search-input-module-GZbhK","label":"search-input-module-vKCm4","reset-btn":"search-input-module-lYseZ","input":"search-input-module-bELFK"};
8703
8706
 
8704
8707
  function SearchInput({ autocomplete, formRef, inputRef, onCancel, onSubmit, placeholder, }) {
8705
8708
  const formProps = autocomplete?.getFormProps({
@@ -8715,10 +8718,10 @@ function SearchInput({ autocomplete, formRef, inputRef, onCancel, onSubmit, plac
8715
8718
  formProps?.onSubmit(e);
8716
8719
  onSubmit?.();
8717
8720
  }
8718
- return (jsx("form", { ref: formRef, className: styles$9.form, ...formProps, onSubmit: handleSubmit, children: jsxs("div", { className: styles$9['input-container'], children: [jsx("label", { className: styles$9.label, ...labelProps, children: jsx(StrokeSearchIcon, { className: clsx(styles$9['icon-search'], styles$9.icon) }) }), jsx("input", { ref: inputRef, onKeyUp: e => {
8721
+ return (jsx("form", { ref: formRef, className: styles$8.form, ...formProps, onSubmit: handleSubmit, children: jsxs("div", { className: styles$8['input-container'], children: [jsx("label", { className: styles$8.label, ...labelProps, children: jsx(StrokeSearchIcon, { className: clsx(styles$8['icon-search'], styles$8.icon) }) }), jsx("input", { ref: inputRef, onKeyUp: e => {
8719
8722
  if (e.key === 'Escape')
8720
8723
  onCancel?.();
8721
- }, ...inputProps, className: styles$9.input, placeholder: placeholder }), inputProps?.value && (jsx(IconButton, { className: styles$9['reset-btn'], color: "secondary", onPress: () => formRef.current?.reset(), type: "reset", children: jsx(SolidCloseIcon, {}) }))] }) }));
8724
+ }, ...inputProps, className: styles$8.input, placeholder: placeholder }), inputProps?.value && (jsx(IconButton, { className: styles$8['reset-btn'], color: "secondary", onPress: () => formRef.current?.reset(), type: "reset", children: jsx(SolidCloseIcon, {}) }))] }) }));
8722
8725
  }
8723
8726
 
8724
8727
  function ConnectedSearchInput() {
@@ -8729,29 +8732,29 @@ function ConnectedSearchInput() {
8729
8732
  return (jsx(SearchInput, { autocomplete: autocomplete, formRef: formRef, inputRef: inputRef, onCancel: close, onSubmit: () => {
8730
8733
  navigate(`/search?keyword=${inputRef.current?.value}`);
8731
8734
  return close();
8732
- }, placeholder: t('Search tools, toolsets, boxes and more') }));
8735
+ }, placeholder: t('What are you searching for?') }));
8733
8736
  }
8734
8737
 
8735
- var styles$8 = {"categories-grid":"categories-grid-module-C751R","category":"categories-grid-module-7OZS1"};
8738
+ var styles$7 = {"categories-grid":"categories-grid-module-C751R","category":"categories-grid-module-7OZS1"};
8736
8739
 
8737
8740
  function CategoriesGrid({ categories, onItemClick, }) {
8738
- return (jsx("div", { className: styles$8['categories-grid'], children: categories.map(category => (jsx("div", { className: styles$8['category'], children: jsx(CategoryCard, { withArrow: true, href: category.href, image: {
8741
+ return (jsx("div", { className: styles$7['categories-grid'], children: categories.map(category => (jsx("div", { className: styles$7['category'], children: jsx(CategoryCard, { withArrow: true, href: category.href, image: {
8739
8742
  fit: 'contain',
8740
8743
  image: category.image,
8741
8744
  title: category.title,
8742
8745
  }, onClick: onItemClick, title: category.title }, category.title) }, category.title))) }));
8743
8746
  }
8744
8747
 
8745
- var styles$7 = {"search-section":"search-section-module-qaTiw","header":"search-section-module-E--U2","title":"search-section-module-AHlDR","content":"search-section-module-VZlvZ"};
8748
+ var styles$6 = {"search-section":"search-section-module-qaTiw","header":"search-section-module-E--U2","title":"search-section-module-AHlDR","content":"search-section-module-VZlvZ"};
8746
8749
 
8747
8750
  function SearchSection({ button, children, className, title, }) {
8748
- return (jsxs("div", { className: clsx(styles$7['search-section'], className), children: [jsxs("div", { className: styles$7.header, children: [title && jsx("h2", { className: styles$7.title, children: title }), button && button] }), jsx("div", { className: styles$7.content, children: children })] }));
8751
+ return (jsxs("div", { className: clsx(styles$6['search-section'], className), children: [jsxs("div", { className: styles$6.header, children: [title && jsx("h2", { className: styles$6.title, children: title }), button && button] }), jsx("div", { className: styles$6.content, children: children })] }));
8749
8752
  }
8750
8753
 
8751
- var styles$6 = {"section-container":"search-content-module-ZMwlB","content":"search-content-module-KIok6","left":"search-content-module-YRLIf","right":"search-content-module-qK5sg","button-container":"search-content-module-w-ORq","show-all-button":"search-content-module-bO1Q0","product-results":"search-content-module-bcFCH","no-results-text":"search-content-module-H-FX2","query":"search-content-module-LbQnK","suggestions":"search-content-module-mhiBZ","list":"search-content-module-coPAt"};
8754
+ var styles$5 = {"section-container":"search-content-module-ZMwlB","content":"search-content-module-KIok6","left":"search-content-module-YRLIf","right":"search-content-module-qK5sg","button-container":"search-content-module-w-ORq","show-all-button":"search-content-module-bO1Q0","product-results":"search-content-module-bcFCH","no-results-text":"search-content-module-H-FX2","query":"search-content-module-LbQnK","suggestions":"search-content-module-mhiBZ","list":"search-content-module-coPAt"};
8752
8755
 
8753
8756
  function SectionContainer({ buttons, leftContent, rightContent, }) {
8754
- return (jsx("div", { className: styles$6['section-container'], children: jsxs("div", { className: styles$6['content'], children: [jsx("div", { className: styles$6['left'], children: leftContent }), jsxs("div", { className: styles$6['right'], children: [rightContent, jsx("div", { className: styles$6['button-container'], children: buttons })] })] }) }));
8757
+ return (jsx("div", { className: styles$5['section-container'], children: jsxs("div", { className: styles$5['content'], children: [jsx("div", { className: styles$5['left'], children: leftContent }), jsxs("div", { className: styles$5['right'], children: [rightContent, jsx("div", { className: styles$5['button-container'], children: buttons })] })] }) }));
8755
8758
  }
8756
8759
 
8757
8760
  function NoResults() {
@@ -8760,7 +8763,7 @@ function NoResults() {
8760
8763
  function NotFound() {
8761
8764
  const { state } = useAlgoliaSearch();
8762
8765
  const t = useFormattedMessage();
8763
- return (jsx(SearchSection, { title: t('Sorry, we could not find matches for'), children: jsx("div", { className: styles$6['no-results-text'], children: jsxs("div", { className: styles$6.section, children: [jsxs("p", { className: styles$6.query, children: ["'", state.query, "'"] }), jsxs("div", { className: styles$6.suggestions, children: [jsx("p", { children: jsx(FormattedMessage, { id: "You could try" }) }), jsxs("ul", { className: styles$6.list, children: [jsx("li", { children: jsx(FormattedMessage, { id: "Searching again using more general terms" }) }), jsx("li", { children: jsx(FormattedMessage, { id: "Double check your spelling" }) }), jsx("li", { children: jsx(FormattedMessage, { id: "Use fewer keywords" }) }), jsx("li", { children: jsx(FormattedMessage, { id: "Exploring our products by category" }) })] })] })] }) }) }));
8766
+ return (jsx(SearchSection, { title: t('Sorry, we could not find matches for'), children: jsx("div", { className: styles$5['no-results-text'], children: jsxs("div", { className: styles$5.section, children: [jsxs("p", { className: styles$5.query, children: ["'", state.query, "'"] }), jsxs("div", { className: styles$5.suggestions, children: [jsx("p", { children: jsx(FormattedMessage, { id: "You could try" }) }), jsxs("ul", { className: styles$5.list, children: [jsx("li", { children: jsx(FormattedMessage, { id: "Searching again using more general terms" }) }), jsx("li", { children: jsx(FormattedMessage, { id: "Double check your spelling" }) }), jsx("li", { children: jsx(FormattedMessage, { id: "Use fewer keywords" }) }), jsx("li", { children: jsx(FormattedMessage, { id: "Exploring our products by category" }) })] })] })] }) }) }));
8764
8767
  }
8765
8768
  function PopularCategoriesSection() {
8766
8769
  const { popularCategories: collection } = useAlgoliaSearch();
@@ -8769,7 +8772,7 @@ function PopularCategoriesSection() {
8769
8772
  if (!collection)
8770
8773
  return null;
8771
8774
  const { items } = collection;
8772
- return (jsx(SearchSection, { title: t('Explore by categories'), children: jsx("div", { className: styles$6['categories-grid-container'], children: jsx(CategoriesGrid, { categories: items, onItemClick: close }) }) }));
8775
+ return (jsx(SearchSection, { title: t('Explore by categories'), children: jsx("div", { className: styles$5['categories-grid-container'], children: jsx(CategoriesGrid, { categories: items, onItemClick: close }) }) }));
8773
8776
  }
8774
8777
 
8775
8778
  function Highlight({ attribute, hit, tagName = 'mark', }) {
@@ -8781,19 +8784,19 @@ function Highlight({ attribute, hit, tagName = 'mark', }) {
8781
8784
  }));
8782
8785
  }
8783
8786
 
8784
- var styles$5 = {"search-list":"search-list-module-vRuMO"};
8787
+ var styles$4 = {"search-list":"search-list-module-vRuMO"};
8785
8788
 
8786
8789
  function SearchList({ ariaLabelledby, children, className, id, }) {
8787
- return (jsx("ul", { "aria-labelledby": ariaLabelledby, className: clsx(styles$5['search-list'], className), id: id, children: children }));
8790
+ return (jsx("ul", { "aria-labelledby": ariaLabelledby, className: clsx(styles$4['search-list'], className), id: id, children: children }));
8788
8791
  }
8789
8792
 
8790
- var styles$4 = {"search-list-item":"search-list-item-module-WXp77","content":"search-list-item-module-CPrhz","text":"search-list-item-module--5uqN"};
8793
+ var styles$3 = {"search-list-item":"search-list-item-module-WXp77","content":"search-list-item-module-CPrhz","text":"search-list-item-module--5uqN"};
8791
8794
 
8792
8795
  function SearchListItem({ icon, isRemovable = false, onClick, onRemove, text, }) {
8793
- return (jsxs("li", { className: styles$4['search-list-item'], onClick: onClick, role: "option", children: [jsxs("div", { className: styles$4.content, children: [icon && icon, text && jsx("span", { className: styles$4.text, children: text })] }), isRemovable && (jsx(IconButton, { color: "secondary", onPress: onRemove, children: jsx(StrokeCloseboxIcon, {}) }))] }));
8796
+ return (jsxs("li", { className: styles$3['search-list-item'], onClick: onClick, role: "option", children: [jsxs("div", { className: styles$3.content, children: [icon && icon, text && jsx("span", { className: styles$3.text, children: text })] }), isRemovable && (jsx(IconButton, { color: "secondary", onPress: onRemove, children: jsx(StrokeCloseboxIcon, {}) }))] }));
8794
8797
  }
8795
8798
 
8796
- var styles$3 = {"quick-access-section":"no-search-module-87NKV","quick-access-carousel":"no-search-module-beCXI","quick-access-card":"no-search-module-dtT5J"};
8799
+ var styles$2 = {"quick-access-section":"no-search-module-87NKV","quick-access-carousel":"no-search-module-beCXI","quick-access-card":"no-search-module-dtT5J"};
8797
8800
 
8798
8801
  function NoSearch() {
8799
8802
  return (jsx(SectionContainer, { leftContent: jsxs("div", { children: [jsx(RecentSearchesSection, {}), jsx(PopularSearchesSection, {})] }), rightContent: jsx(QuickAccessSection, {}) }));
@@ -8830,13 +8833,13 @@ function QuickAccessSection() {
8830
8833
  if (!collection)
8831
8834
  return;
8832
8835
  const { items } = collection;
8833
- return (jsx(SearchSection, { title: t('Quick access'), children: jsx("div", { className: styles$3['quick-access-section'], children: jsx(Carousel, { className: styles$3['quick-access-carousel'], hasNavigation: false, hasOverflow: false, navigationButtonsPosition: "center", slides: items.map((item, index) => (jsx(RouteLink, { className: styles$3['quick-access-card'], href: item.action.url, onClick: close, children: jsx(Image, { height: 343, image: item.image, title: item.image.altText, width: 192 }) }, index))), spaceBetween: 16 }) }) }));
8836
+ return (jsx(SearchSection, { title: t('Quick access'), children: jsx("div", { className: styles$2['quick-access-section'], children: jsx(Carousel, { className: styles$2['quick-access-carousel'], hasNavigation: false, hasOverflow: false, navigationButtonsPosition: "center", slides: items.map((item, index) => (jsx(RouteLink, { className: styles$2['quick-access-card'], href: item.action.url, onClick: close, children: jsx(Image, { height: 343, image: item.image, title: item.image.altText, width: 192 }) }, index))), spaceBetween: 16 }) }) }));
8834
8837
  }
8835
8838
 
8836
- var styles$2 = {"slide":"product-carousel-module-XVTB1"};
8839
+ var styles$1 = {"slide":"product-carousel-module-XVTB1"};
8837
8840
 
8838
8841
  function ProductCarousel({ productCards }) {
8839
- return (jsx(Carousel, { hasOverflow: false, navigationButtonsPosition: "center", slideClasses: styles$2.slide, slides: productCards, spaceBetween: 16 }));
8842
+ return (jsx(Carousel, { hasOverflow: false, navigationButtonsPosition: "center", slideClasses: styles$1.slide, slides: productCards, spaceBetween: 16 }));
8840
8843
  }
8841
8844
 
8842
8845
  function StrokeRecentIcon(props) {
@@ -8846,12 +8849,12 @@ function StrokeRecentIcon(props) {
8846
8849
  function WithResults() {
8847
8850
  const { state } = useAlgoliaSearch();
8848
8851
  const { close } = useGlobalSearchDisclosure();
8849
- return (jsx("div", { children: jsx(SectionContainer, { buttons: jsxs(RouteButton, { className: clsx(styles$6['show-all-button'], buttonStyles.button, buttonStyles.secondary, buttonStyles.outline, buttonStyles.md), href: `/search?keyword=${state.query}`, onPress: close, children: [jsx(FormattedMessage, { id: "See all results" }), jsx(GlyphsArrowBoldCapsRightIcon, { className: buttonStyles['right-arrow-icon'] })] }), leftContent: jsx(SuggestionsSection, {}), rightContent: jsx(ProductResultsSection, {}) }) }));
8852
+ return (jsx("div", { children: jsx(SectionContainer, { buttons: jsxs(RouteButton, { className: clsx(styles$5['show-all-button'], buttonStyles.button, buttonStyles.secondary, buttonStyles.outline, buttonStyles.md), href: `/search?keyword=${state.query}`, onPress: close, children: [jsx(FormattedMessage, { id: "See all results" }), jsx(GlyphsArrowBoldCapsRightIcon, { className: buttonStyles['right-arrow-icon'] })] }), leftContent: jsx(SuggestionsSection, {}), rightContent: jsx(ProductResultsSection, {}) }) }));
8850
8853
  }
8851
8854
  function SuggestionsSection() {
8852
8855
  const { autocomplete, categories, querySuggestions, recentSearches } = useAlgoliaSearch();
8853
8856
  const t = useFormattedMessage();
8854
- return (jsxs(SearchSection, { className: styles$6['product-results-section'], title: t('Suggestions'), children: [recentSearches && (jsx(SearchList, { ...autocomplete.getListProps({
8857
+ return (jsxs(SearchSection, { className: styles$5['product-results-section'], title: t('Suggestions'), children: [recentSearches && (jsx(SearchList, { ...autocomplete.getListProps({
8855
8858
  source: recentSearches.source,
8856
8859
  }), children: recentSearches.items.slice(0, 3).map(item => (jsx(SearchListItem, { ...autocomplete.getItemProps({
8857
8860
  item,
@@ -8881,7 +8884,7 @@ function ProductResultsSection() {
8881
8884
  if (!collection)
8882
8885
  return null;
8883
8886
  const { items, source } = collection;
8884
- return (jsx(SearchSection, { className: styles$6['product-results-section'], title: t('Products'), children: jsx("div", { className: styles$6['product-results'], ...autocomplete.getListProps({ source }), children: jsx(ProductCarousel, { productCards: items.map((product, index) => (createElement$1(ConnectedProductCard, { ...autocomplete.getItemProps({
8887
+ return (jsx(SearchSection, { className: styles$5['product-results-section'], title: t('Products'), children: jsx("div", { className: styles$5['product-results'], ...autocomplete.getListProps({ source }), children: jsx(ProductCarousel, { productCards: items.map((product, index) => (createElement$1(ConnectedProductCard, { ...autocomplete.getItemProps({
8885
8888
  item: product.hit,
8886
8889
  source: source,
8887
8890
  }), key: product.storefrontId, href: product.storefrontSlug, image: {
@@ -8911,17 +8914,15 @@ function PanelContent() {
8911
8914
  return (jsx(Fragment, { children: !state.query.length ? (jsx(NoSearch, {})) : hasResults ? (jsx(WithResults, {})) : (jsx(NoResults, {})) }));
8912
8915
  }
8913
8916
 
8914
- var styles$1 = {"search-result-panel":"search-result-panel-module-KBrc9","entering":"search-result-panel-module-Us8rb","entered":"search-result-panel-module-7UxfH","exiting":"search-result-panel-module-3xEiy","exited":"search-result-panel-module-xSeC-"};
8917
+ var styles = {"search-result-panel":"search-result-panel-module-KBrc9","entering":"search-result-panel-module-Us8rb","entered":"search-result-panel-module-7UxfH","exiting":"search-result-panel-module-3xEiy","exited":"search-result-panel-module-xSeC-"};
8915
8918
 
8916
8919
  function SearchResultPanel() {
8917
8920
  const { autocomplete, panelRef } = useAlgoliaSearch();
8918
8921
  const { isOpen } = useGlobalSearchDisclosure();
8919
8922
  // https://www.algolia.com/doc/ui-libraries/autocomplete/guides/creating-a-renderer/#check-network-status
8920
- return (jsx(Transition, { in: isOpen, nodeRef: panelRef, timeout: 300, children: transitionState => (jsx("div", { ref: panelRef, className: clsx(styles$1['search-result-panel'], styles$1[transitionState]), ...autocomplete.getPanelProps({}), children: jsx(PanelContent, {}) })) }));
8923
+ return (jsx(Transition, { in: isOpen, nodeRef: panelRef, timeout: 300, children: transitionState => (jsx("div", { ref: panelRef, className: clsx(styles['search-result-panel'], styles[transitionState]), ...autocomplete.getPanelProps({}), children: jsx(PanelContent, {}) })) }));
8921
8924
  }
8922
8925
 
8923
- var styles = {"search-container":"search-root-module-g9MP0","input":"search-root-module-X7N83","entering":"search-root-module-dQDFs","entered":"search-root-module-fXUUb","exiting":"search-root-module-ZFQys","exited":"search-root-module-gd9xY"};
8924
-
8925
8926
  function SearchRoot() {
8926
8927
  const { autocomplete, inputRef } = useAlgoliaSearch();
8927
8928
  const { isOpen } = useGlobalSearchDisclosure();
@@ -8935,9 +8936,8 @@ function SearchRoot() {
8935
8936
  inputRef.current.blur();
8936
8937
  }
8937
8938
  }, [inputRef, isOpen]);
8938
- return (jsx(Fragment, { children: jsx(Transition, { in: isOpen, nodeRef: inputRef, timeout: 300, children: transitionState => (jsxs("div", { className: clsx(styles['search-container'], styles[transitionState]), ...autocomplete.getRootProps({}), children: [jsx("div", { className: styles.input, children: jsx(ConnectedSearchInput, {}) }), jsx("div", { className: styles.panel, children: jsx(SearchResultPanel, {}) })] })) }) }));
8939
+ return (jsx("div", { className: styles$9['search-root'], children: jsx(Transition, { in: isOpen, nodeRef: inputRef, timeout: 300, children: transitionState => (jsxs("div", { className: clsx(styles$9['search-container'], styles$9[transitionState]), ...autocomplete.getRootProps({}), children: [jsx("div", { className: styles$9.input, children: jsx(ConnectedSearchInput, {}) }), jsx("div", { className: styles$9.panel, children: jsx(SearchResultPanel, {}) })] })) }) }));
8939
8940
  }
8940
-
8941
8941
  /**
8942
8942
  * Global search using algolia autocomplete with a custom renderer
8943
8943
  * https://www.algolia.com/doc/ui-libraries/autocomplete/guides/creating-a-renderer/
@@ -8946,8 +8946,10 @@ function SearchRoot() {
8946
8946
  * uses the autocomplete widgets
8947
8947
  * https://codesandbox.io/p/sandbox/github/algolia/autocomplete/tree/next/examples/two-column-layout
8948
8948
  */
8949
- function GlobalSearch({ children, searchClient }) {
8950
- return (jsx(GlobalSearchContainer, { children: jsx(AlgoliaSearchProvider, { searchClient: searchClient, children: jsxs("div", { className: styles$a['search-wrapper'], children: [children, jsx("div", { className: styles$a['search-root'], children: jsx(SearchRoot, {}) })] }) }) }));
8949
+ function GlobalSearch() {
8950
+ const panelRef = useRef(null);
8951
+ const { isOpen } = useGlobalSearchDisclosure();
8952
+ return (jsx(TransitionGroup, { children: jsx(Transition, { in: isOpen, nodeRef: panelRef, timeout: 300, children: state => (jsx("div", { ref: panelRef, className: state, children: jsx("div", { className: styles$9['search-wrapper'], children: jsx(SearchRoot, {}) }) })) }) }));
8951
8953
  }
8952
8954
 
8953
8955
  const queryClient = new QueryClient({
@@ -8964,4 +8966,4 @@ function ReactQueryContainer({ children }) {
8964
8966
  return (jsx(QueryClientProvider, { client: queryClient, children: children }));
8965
8967
  }
8966
8968
 
8967
- export { Accordion, AddToCartButton, AlgoliaActiveCategories, AlgoliaCategoriesFilters, AlgoliaFilterPanel, AlgoliaInsightsProvider, AlgoliaInsightsProviderContext, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, AvailabilityMessageType, BadRequestError, BadgeImagePlacementValues, BadgeStyleValues, BadgeTypeValues, Breadcrumb, Button, CartProvider, CategoryCarousel, Checkbox, ColorCheckbox, ConnectedAddToCartButton, CurrencyPositioningType, FavoriteButton, FavoriteProvider, FilterSection, ForbiddenRequestError, FormattedMessage, GlobalSearch, GlobalSearchContainer, GlobalSearchDisclosureContext, GlobalStateProvider, GlobalStateProviderContext, IconButton, Image, InternalServerErrorRequest, IntlProvider, Link, LoadingOverlay, MultiSelect, NotFoundRequestError, NumberField, Page, PageContainer, ProductCard, ProductListingPage, ProductOverviewGrid, ProductPrice, ProductSku, ProgressCircle, ReactQueryContainer, RequestError, RouteButton, RouteLink, RouteProvider, SearchResultsPage, Select, ShowAll, Sidebar, SidebarDetectBreakpoint, SidebarProvider, TextField, TimeoutRequestError, UnauthorizedRequestError, UnprocessableContentRequestError, VariantDisplayTypeValues, WishListNameAlreadyExistsError, addProductToCurrentCart, addWishList, addWishListItemToWishList, config, configPerEnvironment, createSession, createSonicSearchClient, createWishList, deleteCartLineById, deleteWishList, deleteWishListItemFromWishList, fetchCurrentCartLines, fetchTranslations, getSession, getWishList, getWishListItemsByWishListId, getWishLists, isRequestError, removeWishListItemFromWishList, request, signIn, signOut, transformAlgoliaProductHitToProductHit, updateCartLineById, useAddProductToCurrentCart, useAddWishList, useAddWishListItemToCurrentWishList, useAddWishListItemToWishList, useAlgolia, useAlgoliaInsights, useAlgoliaSearch, useBreakpoint, useCartEvents, useCreateCurrentWishList, useDebouncedCallback, useDeleteCartLineById, useDeleteWishListItemFromWishList, useDisclosure, useFavorite, useFavoriteProduct, useFeatureFlags, useFetchAllWishListsItems, useFetchCurrentCartLines, useFetchProductListingPageData, useFetchTranslations, useFetchWishLists, useFormattedMessage, useGlobalSearchDisclosure, useGlobalState, useIsAuthenticated, useIsBreakpoint, useNavigate, useRemoveWishListItemFromCurrentWishList, useScrollLock, useSession, useSignIn, useSignOut, useUpdateCartLineById, userToken };
8969
+ export { Accordion, AddToCartButton, AlgoliaActiveCategories, AlgoliaCategoriesFilters, AlgoliaFilterPanel, AlgoliaInsightsProvider, AlgoliaInsightsProviderContext, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, AvailabilityMessageType, BadRequestError, BadgeImagePlacementValues, BadgeStyleValues, BadgeTypeValues, Breadcrumb, Button, CartProvider, CategoryCarousel, Checkbox, ColorCheckbox, ConnectedAddToCartButton, CurrencyPositioningType, FavoriteButton, FavoriteProvider, FilterSection, ForbiddenRequestError, FormattedMessage, GlobalSearch, GlobalSearchDisclosureContext, GlobalSearchProvider, GlobalStateProvider, GlobalStateProviderContext, IconButton, Image, InternalServerErrorRequest, IntlProvider, Link, LoadingOverlay, MultiSelect, NotFoundRequestError, NumberField, Page, PageContainer, ProductCard, ProductListingPage, ProductOverviewGrid, ProductPrice, ProductSku, ProgressCircle, ReactQueryContainer, RequestError, RouteButton, RouteLink, RouteProvider, SearchResultsPage, SearchRoot, Select, ShowAll, Sidebar, SidebarDetectBreakpoint, SidebarProvider, TextField, TimeoutRequestError, UnauthorizedRequestError, UnprocessableContentRequestError, VariantDisplayTypeValues, WishListNameAlreadyExistsError, addProductToCurrentCart, addWishListItemToWishList, config, configPerEnvironment, createSession, createSonicSearchClient, createWishList, deleteCartLineById, deleteWishList, deleteWishListItemFromWishList, environment, environments, fetchCurrentCartLines, fetchTranslations, getSession, getWishList, getWishListItemsByWishListId, getWishLists, isRequestError, request, signIn, signOut, transformAlgoliaProductHitToProductHit, updateCartLineById, useAddProductToCurrentCart, useAddWishListItemToCurrentWishList, useAddWishListItemToWishList, useAlgolia, useAlgoliaInsights, useAlgoliaSearch, useBreakpoint, useCartEvents, useCreateWishList, useDebouncedCallback, useDeleteCartLineById, useDeleteWishListItemFromWishList, useDisclosure, useFavorite, useFavoriteProduct, useFeatureFlags, useFetchAllWishListsItems, useFetchCurrentCartLines, useFetchProductListingPageData, useFetchTranslations, useFetchWishLists, useFormattedMessage, useGlobalSearchDisclosure, useGlobalState, useIsAuthenticated, useIsBreakpoint, useNavigate, useScrollLock, useSession, useSignIn, useSignOut, useUpdateCartLineById, userToken };