@sonic-equipment/ui 0.0.26 → 0.0.28

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.
Files changed (55) hide show
  1. package/dist/algolia/algolia-pagination.d.ts +5 -1
  2. package/dist/algolia/algolia-provider.d.ts +1 -1
  3. package/dist/algolia/algolia-sonic-searchclient.d.ts +2 -0
  4. package/dist/breadcrumbs/breadcrumb.stories.d.ts +2 -2
  5. package/dist/breadcrumbs/connected-breadcrumb.d.ts +1 -1
  6. package/dist/buttons/icon-button/icon-button.d.ts +2 -1
  7. package/dist/cards/category-card/category-card.d.ts +2 -5
  8. package/dist/cards/product-card/product-card.d.ts +7 -5
  9. package/dist/cards/product-card/product-card.stories.d.ts +2 -1
  10. package/dist/carousel/category-carousel/connected-category-carousel.d.ts +1 -0
  11. package/dist/filters/pagination/pagination.d.ts +2 -2
  12. package/dist/icons/arrows/text-aligned-arrow-icon.d.ts +2 -0
  13. package/dist/icons/magnifying-glass/magnifying-glass-icon.d.ts +2 -0
  14. package/dist/icons/math/minus-filled-icon.d.ts +2 -0
  15. package/dist/icons/math/plus-filled-icon.d.ts +2 -0
  16. package/dist/icons/reset/reset-icon.d.ts +2 -0
  17. package/dist/icons/trash/trash-outlined-icon.d.ts +2 -0
  18. package/dist/index.d.ts +44 -57
  19. package/dist/index.js +328 -151
  20. package/dist/intl/translation-id.d.ts +1 -1
  21. package/dist/media/image/image.d.ts +2 -19
  22. package/dist/pages/product-listing-page/product-listing-page-data-types.d.ts +20 -0
  23. package/dist/pages/product-listing-page/product-listing-page-provider/product-listing-page-context.d.ts +9 -0
  24. package/dist/pages/product-listing-page/product-listing-page-provider/product-listing-page-provider.d.ts +8 -0
  25. package/dist/pages/product-listing-page/product-listing-page-provider/use-breadcrumb.d.ts +4 -0
  26. package/dist/pages/product-listing-page/product-listing-page-provider/use-subcategories.d.ts +4 -0
  27. package/dist/pages/product-listing-page/product-listing-page.d.ts +5 -3
  28. package/dist/pages/product-listing-page/product-listing-page.stories.d.ts +7 -8
  29. package/dist/pages/product-listing-page/types.d.ts +34 -0
  30. package/dist/pages/product-listing-page/use-fetch-product-listing-page/product-listing-page-data-response.d.ts +48 -0
  31. package/dist/pages/product-listing-page/use-fetch-product-listing-page/use-fetch-product-listing-page-data.d.ts +2 -0
  32. package/dist/pages/product-listing-page/use-fetch-product-listing-page/use-fetch-product-listing-page-data.stories.d.ts +20 -0
  33. package/dist/search/global-search/clear-icon.d.ts +2 -0
  34. package/dist/search/global-search/global-search.d.ts +19 -0
  35. package/dist/search/global-search/global-search.stories.d.ts +14 -0
  36. package/dist/search/global-search/highlight.d.ts +21 -0
  37. package/dist/search/global-search/plugins/categories-plugin.d.ts +10 -0
  38. package/dist/search/global-search/plugins/popular-categories-plugin.d.ts +11 -0
  39. package/dist/search/global-search/plugins/popular-searches-plugin.d.ts +12 -0
  40. package/dist/search/global-search/plugins/products-plugin.d.ts +23 -0
  41. package/dist/search/global-search/plugins/query-suggestions-plugin.d.ts +12 -0
  42. package/dist/search/global-search/plugins/quick-access-plugin.d.ts +13 -0
  43. package/dist/search/global-search/plugins/recent-searches-plugin.d.ts +7 -0
  44. package/dist/search/global-search/search-icon.d.ts +2 -0
  45. package/dist/search/global-search/types.d.ts +23 -0
  46. package/dist/search/search-input/search-input.d.ts +5 -0
  47. package/dist/search/search-input/search-input.stories.d.ts +6 -0
  48. package/dist/shared/fetch/ResponseError.d.ts +9 -0
  49. package/dist/shared/hooks/use-scroll-to.d.ts +8 -0
  50. package/dist/shared/types/category.d.ts +6 -0
  51. package/dist/shared/types/image.d.ts +20 -0
  52. package/dist/styles.css +97 -25
  53. package/package.json +34 -29
  54. package/dist/shared/providers/breadcrumb-provider.d.ts +0 -11
  55. /package/dist/shared/hooks/{use-debounce-callback.d.ts → use-debounced-callback.d.ts} +0 -0
@@ -1 +1,5 @@
1
- export declare function AlgoliaPagination(): import("react/jsx-runtime").JSX.Element;
1
+ interface AlgoliaPaginationProps {
2
+ onChange: (pageNumber: number) => void;
3
+ }
4
+ export declare function AlgoliaPagination({ onChange }: AlgoliaPaginationProps): import("react/jsx-runtime").JSX.Element;
5
+ export {};
@@ -8,7 +8,7 @@ interface AlgoliaContextType {
8
8
  toggleOnline: VoidFunction;
9
9
  }
10
10
  interface AlgoliaProviderProps {
11
- category: string[];
11
+ category: string[] | undefined;
12
12
  children: ReactNode;
13
13
  offlineSearchClient?: SearchClient;
14
14
  online?: boolean;
@@ -0,0 +1,2 @@
1
+ import { SearchClient } from 'algoliasearch/lite';
2
+ export declare const createSonicSearchClient: (url: string) => SearchClient;
@@ -1,5 +1,5 @@
1
1
  import type { StoryObj } from '@storybook/react';
2
- import { Link } from 'shared/providers/breadcrumb-provider';
2
+ import { ProductListingPageData } from 'pages/product-listing-page/product-listing-page-data-types';
3
3
  import { Breadcrumb } from './breadcrumb';
4
4
  declare const meta: {
5
5
  component: typeof Breadcrumb;
@@ -15,5 +15,5 @@ export declare const FourLevelsMobile: Story;
15
15
  export declare const TwoLevels: Story;
16
16
  export declare const TwoLevelsMobile: Story;
17
17
  export declare const Connected: StoryObj<{
18
- links: Link[];
18
+ data: ProductListingPageData;
19
19
  }>;
@@ -1 +1 @@
1
- export declare function ConnectedBreadcrumb(): import("react/jsx-runtime").JSX.Element;
1
+ export declare function ConnectedBreadcrumb(): import("react/jsx-runtime").JSX.Element | null;
@@ -6,5 +6,6 @@ export interface IconButtonProps {
6
6
  isDisabled?: boolean;
7
7
  onPress?: VoidFunction;
8
8
  size?: 'md' | 'lg';
9
+ type?: 'button' | 'submit' | 'reset';
9
10
  }
10
- export declare function IconButton({ children, className, color, isDisabled, onPress, size, }: IconButtonProps): import("react/jsx-runtime").JSX.Element;
11
+ export declare function IconButton({ children, className, color, isDisabled, onPress, size, type, }: IconButtonProps): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +1,5 @@
1
- import { type ImageProps } from 'media/image/image';
2
- export interface CategoryCardProps {
3
- href: string;
4
- image: ImageProps;
1
+ import { Category } from 'shared/types/category';
2
+ export interface CategoryCardProps extends Category {
5
3
  isSelected?: boolean;
6
- title: string;
7
4
  }
8
5
  export declare function CategoryCard({ href, image, isSelected, title, }: CategoryCardProps): import("react/jsx-runtime").JSX.Element;
@@ -1,16 +1,18 @@
1
- import { ReactElement } from 'react';
1
+ import { MouseEvent, ReactElement } from 'react';
2
2
  import { PressEvent } from 'react-aria-components';
3
- import { ImageProps } from 'media/image/image';
3
+ import type { ImageSource } from 'shared/types/image';
4
4
  import type { ProductPrice as ProductPriceType } from 'shared/types/price';
5
5
  export interface ProductCardProps {
6
6
  addToCartButton: ReactElement;
7
7
  favoriteButton?: ReactElement;
8
8
  href: string;
9
- image: ImageProps;
10
- onClick?: (e: PressEvent) => void;
9
+ image: ImageSource;
10
+ /** @deprecated Use `onPress` instead */
11
+ onClick?: (e: MouseEvent) => void;
12
+ onPress?: (e: PressEvent) => void;
11
13
  price: ProductPriceType;
12
14
  sku: string;
13
15
  tag?: 'new' | 'sale';
14
16
  title: string;
15
17
  }
16
- export declare function ProductCard({ addToCartButton: AddToCartButton, favoriteButton: FavoriteButton, href, image: { alt, fit, src, title: imageTitle }, onClick, price, sku, tag, title, }: ProductCardProps): import("react/jsx-runtime").JSX.Element;
18
+ export declare function ProductCard({ addToCartButton: AddToCartButton, favoriteButton: FavoriteButton, href, image: { alt, fit, src, title: imageTitle }, onClick, onPress, price, sku, tag, title, }: ProductCardProps): import("react/jsx-runtime").JSX.Element;
@@ -1,3 +1,4 @@
1
+ /// <reference types="react" />
1
2
  import { StoryObj } from '@storybook/react';
2
3
  import { ProductCard } from './product-card';
3
4
  declare const meta: {
@@ -11,7 +12,7 @@ declare const meta: {
11
12
  src: string;
12
13
  title: string;
13
14
  };
14
- onClick: import("@vitest/spy").Mock<[e: import("react-aria").PressEvent], void>;
15
+ onClick: import("@vitest/spy").Mock<[e: React.MouseEvent<Element, MouseEvent>], void>;
15
16
  sku: string;
16
17
  tag: "new";
17
18
  };
@@ -0,0 +1 @@
1
+ export declare function ConnectedCategoryCarousel(): import("react/jsx-runtime").JSX.Element | null;
@@ -1,6 +1,6 @@
1
- export interface Props {
1
+ export interface PaginationProps {
2
2
  currentPage: number;
3
3
  onChange: (pageNumber: number) => void;
4
4
  totalPages: number;
5
5
  }
6
- export declare function Pagination({ currentPage, onChange, totalPages }: Props): import("react/jsx-runtime").JSX.Element;
6
+ export declare function Pagination({ currentPage, onChange, totalPages, }: PaginationProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function TextAlignedArrowIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function MagnifyingGlassIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function MinusFilledIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function PlusFilledIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function ResetIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function TrashOutlinedIcon(props: React.SVGProps<SVGSVGElement>): import("react/jsx-runtime").JSX.Element;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import { ReactElement, MutableRefObject, ReactNode, HTMLAttributeAnchorTarget, FormEventHandler, KeyboardEvent, ComponentType } from 'react';
2
+ import { ReactElement, MutableRefObject, ReactNode, HTMLAttributeAnchorTarget, MouseEvent, FormEventHandler, KeyboardEvent, ComponentType } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { PressEvent } from 'react-aria-components';
5
5
  import { SearchClient } from 'algoliasearch/lite';
@@ -13,9 +13,9 @@ declare const breakpoints: {
13
13
  readonly xl: 1024;
14
14
  readonly xxl: 1440;
15
15
  };
16
- type Breakpoint$2 = keyof typeof breakpoints;
17
- interface UseBreakpointReturnType extends Record<Breakpoint$2, boolean> {
18
- current: Breakpoint$2;
16
+ type Breakpoint$1 = keyof typeof breakpoints;
17
+ interface UseBreakpointReturnType extends Record<Breakpoint$1, boolean> {
18
+ current: Breakpoint$1;
19
19
  }
20
20
  declare const useBreakpoint: () => UseBreakpointReturnType;
21
21
 
@@ -32,17 +32,6 @@ declare const useDisclosure: (initialState?: boolean) => UseDisclosureReturnType
32
32
 
33
33
  declare const useScrollLock: (lock: boolean) => void;
34
34
 
35
- interface Link$1 {
36
- href: string;
37
- label: string;
38
- }
39
- interface Props$3 {
40
- links: Link$1[];
41
- updateLinks: (links: Link$1[]) => void;
42
- }
43
- declare function BreadcrumbProvider(props: Props$3): null;
44
- declare function useBreadcrumb(): Props$3;
45
-
46
35
  interface CartLine$1 {
47
36
  id: string
48
37
  productId: string | null
@@ -173,7 +162,7 @@ interface BreadcrumbProps {
173
162
  }
174
163
  declare function Breadcrumb({ links }: BreadcrumbProps): react_jsx_runtime.JSX.Element | null;
175
164
 
176
- declare function ConnectedBreadcrumb(): react_jsx_runtime.JSX.Element;
165
+ declare function ConnectedBreadcrumb(): react_jsx_runtime.JSX.Element | null;
177
166
 
178
167
  interface ButtonProps {
179
168
  _pseudo?: 'none' | 'focus' | 'hover' | 'active';
@@ -205,8 +194,9 @@ interface IconButtonProps {
205
194
  isDisabled?: boolean;
206
195
  onPress?: VoidFunction;
207
196
  size?: 'md' | 'lg';
197
+ type?: 'button' | 'submit' | 'reset';
208
198
  }
209
- declare function IconButton({ children, className, color, isDisabled, onPress, size, }: IconButtonProps): react_jsx_runtime.JSX.Element;
199
+ declare function IconButton({ children, className, color, isDisabled, onPress, size, type, }: IconButtonProps): react_jsx_runtime.JSX.Element;
210
200
 
211
201
  interface LinkButtonProps {
212
202
  children?: React.ReactNode | string;
@@ -231,25 +221,25 @@ interface Props {
231
221
  }
232
222
  declare const ConnectedAddToCartButton: ({ productId }: Props) => react_jsx_runtime.JSX.Element;
233
223
 
234
- interface Source$1 {
224
+ type Breakpoint = 'lg' | 'md' | 'sm'
225
+
226
+ type Sizes = Record<Breakpoint, number>
227
+
228
+ interface Source {
235
229
  url: string
236
230
  width: number
237
231
  }
238
232
 
239
- type Breakpoint$1 = 'lg' | 'md' | 'sm'
240
-
241
- type Sizes$1 = Record<Breakpoint$1, number>
242
-
243
- interface ImageProps$1 {
233
+ interface ImageSource {
244
234
  alt: string
245
235
  className?: string
246
236
  fallbackSrc?: string
247
237
  fit?: 'contain' | 'cover'
248
238
  height?: number
249
239
  loading?: 'lazy' | 'eager'
250
- sizes?: Sizes$1
240
+ sizes?: Sizes
251
241
  src: string
252
- srcSet?: Source$1[]
242
+ srcSet?: Source[]
253
243
  title: string
254
244
  width?: number
255
245
  }
@@ -264,22 +254,27 @@ interface ProductCardProps {
264
254
  addToCartButton: ReactElement;
265
255
  favoriteButton?: ReactElement;
266
256
  href: string;
267
- image: ImageProps$1;
268
- onClick?: (e: PressEvent) => void;
257
+ image: ImageSource;
258
+ /** @deprecated Use `onPress` instead */
259
+ onClick?: (e: MouseEvent) => void;
260
+ onPress?: (e: PressEvent) => void;
269
261
  price: ProductPrice$1;
270
262
  sku: string;
271
263
  tag?: 'new' | 'sale';
272
264
  title: string;
273
265
  }
274
- declare function ProductCard({ addToCartButton: AddToCartButton, favoriteButton: FavoriteButton, href, image: { alt, fit, src, title: imageTitle }, onClick, price, sku, tag, title, }: ProductCardProps): react_jsx_runtime.JSX.Element;
266
+ declare function ProductCard({ addToCartButton: AddToCartButton, favoriteButton: FavoriteButton, href, image: { alt, fit, src, title: imageTitle }, onClick, onPress, price, sku, tag, title, }: ProductCardProps): react_jsx_runtime.JSX.Element;
275
267
 
276
- interface CategoryCardProps {
268
+ interface Category {
277
269
  href: string
278
- image: ImageProps$1
279
- isSelected?: boolean
270
+ image: ImageSource
280
271
  title: string
281
272
  }
282
273
 
274
+ interface CategoryCardProps extends Category {
275
+ isSelected?: boolean
276
+ }
277
+
283
278
  interface CategoryCarouselProps {
284
279
  categories: CategoryCardProps[];
285
280
  }
@@ -437,6 +432,10 @@ interface TextFieldProps {
437
432
  */
438
433
  declare function TextField({ autoFocus, autoGrow, defaultValue, isDisabled, isInvalid, isMultiline, isReadOnly, isRequired, label, maxLength, onChange, onInput, onKeyUp, placeholder, rows, showLabel, size, value, }: TextFieldProps): react_jsx_runtime.JSX.Element;
439
434
 
435
+ declare function LeftArrowFilledIcon(props: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
436
+
437
+ declare function TextAlignedArrowIcon(props: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
438
+
440
439
  declare function RightArrowFilledIcon(props: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
441
440
 
442
441
  declare function CartFilledIcon(props: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
@@ -451,7 +450,7 @@ declare function FavoriteOutlinedIcon(props: React.SVGProps<SVGSVGElement>): rea
451
450
 
452
451
  declare function HashedOutlinedIcon(props: React.SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
453
452
 
454
- type TranslationId = 'Chosen filters' | 'Clear filters' | 'Excl. VAT' | 'Hide filters' | 'Incl. VAT' | 'Show' | 'Show all' | 'Show filters' | 'Show less' | 'Sort' | 'articles' | 'article' | 'of';
453
+ type TranslationId = 'Chosen filters' | 'Clear' | 'Clear filters' | 'Excl. VAT' | 'Hide filters' | 'Incl. VAT' | 'Show' | 'Show all' | 'Show filters' | 'Show less' | 'Sort' | 'Submit' | 'articles' | 'article' | 'of';
455
454
 
456
455
  interface FormattedMessageProps {
457
456
  fallbackValue?: string;
@@ -481,25 +480,7 @@ interface ProductOverviewGridProps {
481
480
  }
482
481
  declare function ProductOverviewGrid({ children }: ProductOverviewGridProps): react_jsx_runtime.JSX.Element;
483
482
 
484
- interface Source {
485
- url: string;
486
- width: number;
487
- }
488
- type Breakpoint = 'lg' | 'md' | 'sm';
489
- type Sizes = Record<Breakpoint, number>;
490
- interface ImageProps {
491
- alt: string;
492
- className?: string;
493
- fallbackSrc?: string;
494
- fit?: 'contain' | 'cover';
495
- height?: number;
496
- loading?: 'lazy' | 'eager';
497
- sizes?: Sizes;
498
- src: string;
499
- srcSet?: Source[];
500
- title: string;
501
- width?: number;
502
- }
483
+ type ImageProps = ImageSource;
503
484
  declare function Image({ alt, className, fallbackSrc, fit, height, loading, sizes: sizesProp, src, srcSet: srcSetProp, title, width, }: ImageProps): react_jsx_runtime.JSX.Element;
504
485
 
505
486
  declare function PageLayout({ children, className, }: {
@@ -524,10 +505,11 @@ interface Filters {
524
505
  };
525
506
  }
526
507
  type ProductListingPageProps = {
527
- category: string[];
528
- isLoading?: boolean;
508
+ bffUrl: string;
509
+ pageUrl: string;
510
+ searchClient?: SearchClient;
529
511
  };
530
- declare function ProductListingPage({ category, isLoading, }: ProductListingPageProps): react_jsx_runtime.JSX.Element;
512
+ declare function ProductListingPage({ bffUrl, pageUrl, searchClient, }: ProductListingPageProps): react_jsx_runtime.JSX.Element;
531
513
 
532
514
  interface SidebarProps {
533
515
  children: React.ReactNode;
@@ -568,7 +550,12 @@ interface AlgoliaMultiSelectFilterSectionProps {
568
550
  }
569
551
  declare function AlgoliaMultiSelectFilterSection({ attribute, }: AlgoliaMultiSelectFilterSectionProps): react_jsx_runtime.JSX.Element;
570
552
 
571
- declare function AlgoliaPagination(): react_jsx_runtime.JSX.Element;
553
+ interface AlgoliaPaginationProps {
554
+ onChange: (pageNumber: number) => void;
555
+ }
556
+ declare function AlgoliaPagination({ onChange }: AlgoliaPaginationProps): react_jsx_runtime.JSX.Element;
557
+
558
+ declare const createSonicSearchClient: (url: string) => SearchClient;
572
559
 
573
560
  interface AlgoliaContextType {
574
561
  online: boolean;
@@ -576,7 +563,7 @@ interface AlgoliaContextType {
576
563
  toggleOnline: VoidFunction;
577
564
  }
578
565
  interface AlgoliaProviderProps {
579
- category: string[];
566
+ category: string[] | undefined;
580
567
  children: ReactNode;
581
568
  offlineSearchClient?: SearchClient;
582
569
  online?: boolean;
@@ -590,4 +577,4 @@ declare function AlgoliaResultsCount(): string | null;
590
577
 
591
578
  declare function AlgoliaSortBy(): react_jsx_runtime.JSX.Element | null;
592
579
 
593
- export { Accordion, AddToCartButton, AlgoliaCategories, AlgoliaFilterPanel, type AlgoliaFilterPanelProps, AlgoliaFilterSection, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, Breadcrumb, type BreadcrumbProps, BreadcrumbProvider, Button, type ButtonProps, type Cart, CartFilledIcon, type CartLine, CartOutlinedIcon, CartProvider, CategoryCarousel, type CategoryCarouselProps, Checkbox, type CheckboxProps$1 as CheckboxProps, ColorCheckbox, type ColorCheckboxProps, ConnectedAddToCartButton, ConnectedBreadcrumb, DehashedOutlinedIcon, FavoriteButton, type FavoriteButtonProps, FavoriteFilledIcon, FavoriteOutlinedIcon, FavoriteProvider, type FilterOption, type Filters, FormattedMessage, type FormattedMessageFunction, type FormattedMessageProps, GlobalStateProvider, GlobalStateProviderContext, HashedOutlinedIcon, IconButton, type IconButtonProps, Image, type ImageProps, IntlProvider, type Link$1 as Link, LinkButton, type LinkButtonProps, MultiSelect, type MultiSelectProps, NumberField, type NumberFieldSize, Page, PageLayout, type PageProps, type Product, ProductCard, type ProductCardProps, ProductListingPage, type ProductListingPageProps, ProductOverviewGrid, type ProductOverviewGridProps, ProductPrice, type ProductPriceProps, ProductSku, type ProductSkuProps, type RefinementListItem, RightArrowFilledIcon, Select, type SelectProps, ShowAll, type ShowAllProps, Sidebar, type SidebarProps, SidebarProvider, TextField, useAlgolia, useBreadcrumb, useBreakpoint, useCart, useDebouncedCallback, useDisclosure, useFavorite, useFormattedMessage, useGlobalState, useProductCartLine, useScrollLock };
580
+ export { Accordion, AddToCartButton, AlgoliaCategories, AlgoliaFilterPanel, type AlgoliaFilterPanelProps, AlgoliaFilterSection, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, Breadcrumb, type BreadcrumbProps, Button, type ButtonProps, type Cart, CartFilledIcon, type CartLine, CartOutlinedIcon, CartProvider, CategoryCarousel, type CategoryCarouselProps, Checkbox, type CheckboxProps$1 as CheckboxProps, ColorCheckbox, type ColorCheckboxProps, ConnectedAddToCartButton, ConnectedBreadcrumb, DehashedOutlinedIcon, FavoriteButton, type FavoriteButtonProps, FavoriteFilledIcon, FavoriteOutlinedIcon, FavoriteProvider, type FilterOption, type Filters, FormattedMessage, type FormattedMessageFunction, type FormattedMessageProps, GlobalStateProvider, GlobalStateProviderContext, HashedOutlinedIcon, IconButton, type IconButtonProps, Image, IntlProvider, LeftArrowFilledIcon, LinkButton, type LinkButtonProps, MultiSelect, type MultiSelectProps, NumberField, type NumberFieldSize, Page, PageLayout, type PageProps, type Product, ProductCard, type ProductCardProps, ProductListingPage, type ProductListingPageProps, ProductOverviewGrid, type ProductOverviewGridProps, ProductPrice, type ProductPriceProps, ProductSku, type ProductSkuProps, type RefinementListItem, RightArrowFilledIcon, Select, type SelectProps, ShowAll, type ShowAllProps, Sidebar, type SidebarProps, SidebarProvider, TextAlignedArrowIcon, TextField, createSonicSearchClient, useAlgolia, useBreakpoint, useCart, useDebouncedCallback, useDisclosure, useFavorite, useFormattedMessage, useGlobalState, useProductCartLine, useScrollLock };