@sonic-equipment/ui 0.0.63 → 0.0.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +70 -58
- package/dist/index.js +108 -99
- package/dist/src/algolia/algolia-provider.d.ts +2 -1
- package/dist/src/algolia/algolia-query-string-routing.d.ts +2 -2
- package/dist/src/breadcrumbs/breadcrumb.d.ts +2 -2
- package/dist/src/buttons/button/button.d.ts +4 -2
- package/dist/src/buttons/button/button.stories.d.ts +1 -0
- package/dist/src/buttons/favorite/connected-favorite-button.d.ts +1 -1
- package/dist/src/buttons/link/link.d.ts +14 -0
- package/dist/src/buttons/link/link.stories.d.ts +23 -0
- package/dist/src/cards/product-card/product-card.d.ts +2 -2
- package/dist/src/config.d.ts +1 -2
- package/dist/src/global-search/search-input/search-input.d.ts +3 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/intl/translation-id.d.ts +1 -1
- package/dist/src/pages/page/page.d.ts +2 -2
- package/dist/src/pages/product-listing-page/product-listing-page-data-types.d.ts +1 -0
- package/dist/src/shared/api/bff/model/bff.model.d.ts +1 -0
- package/dist/src/shared/routing/route-button.d.ts +2 -4
- package/dist/src/shared/routing/route-button.stories.d.ts +16 -0
- package/dist/src/shared/routing/route-link.d.ts +2 -11
- package/dist/src/shared/routing/route-link.stories.d.ts +16 -0
- package/dist/styles.css +145 -129
- package/package.json +1 -1
- package/dist/src/buttons/link-button/link-button.d.ts +0 -15
- package/dist/src/buttons/link-button/link-button.stories.d.ts +0 -19
- package/dist/src/shared/routing/route-provider.stories.d.ts +0 -16
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
2
|
-
import { ReactElement, MutableRefObject, ReactNode,
|
|
2
|
+
import { ReactElement, MutableRefObject, ReactNode, RefAttributes, MouseEvent, FormEventHandler, KeyboardEvent, ComponentType } from 'react';
|
|
3
3
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
4
|
-
import { LinkProps
|
|
4
|
+
import { LinkProps as LinkProps$2, PressEvent } from 'react-aria-components';
|
|
5
5
|
import { Hit } from '@algolia/client-search';
|
|
6
6
|
import * as algoliasearch from 'algoliasearch';
|
|
7
7
|
import { SearchClient } from 'algoliasearch';
|
|
@@ -16,8 +16,7 @@ interface Config {
|
|
|
16
16
|
ALGOLIA_API_KEY: string;
|
|
17
17
|
ALGOLIA_APP_ID: string;
|
|
18
18
|
ALGOLIA_HOST: string;
|
|
19
|
-
|
|
20
|
-
PROXY_API_URL: string;
|
|
19
|
+
BFF_API_URL: string;
|
|
21
20
|
SHOP_API_URL: string;
|
|
22
21
|
}
|
|
23
22
|
declare const configPerEnvironment: Record<Environment, Config>;
|
|
@@ -96,6 +95,7 @@ interface ProductListingPageDataResponse {
|
|
|
96
95
|
breadCrumb: BreadCrumb[];
|
|
97
96
|
categories: Category$1;
|
|
98
97
|
categoryPages: string;
|
|
98
|
+
hierarchicalCategories: string[];
|
|
99
99
|
promoCards: PromoCards | null;
|
|
100
100
|
}
|
|
101
101
|
|
|
@@ -104,7 +104,7 @@ interface PromoCard {
|
|
|
104
104
|
image: ResponsiveImage
|
|
105
105
|
}
|
|
106
106
|
|
|
107
|
-
interface Link$
|
|
107
|
+
interface Link$1 {
|
|
108
108
|
href: string
|
|
109
109
|
label: string
|
|
110
110
|
}
|
|
@@ -116,9 +116,10 @@ interface Category {
|
|
|
116
116
|
}
|
|
117
117
|
|
|
118
118
|
interface ProductListingPageData {
|
|
119
|
-
breadCrumb: Link$
|
|
119
|
+
breadCrumb: Link$1[]
|
|
120
120
|
category: Category
|
|
121
121
|
categoryPages: string
|
|
122
|
+
hierarchicalCategories: string[]
|
|
122
123
|
promoCards?: {
|
|
123
124
|
top: PromoCard[]
|
|
124
125
|
}
|
|
@@ -3662,11 +3663,11 @@ interface UpdateGlobalState$1<T> {
|
|
|
3662
3663
|
declare function useGlobalState<T>(key: string | symbol): [T | undefined, UpdateGlobalState$1<T | undefined>];
|
|
3663
3664
|
declare function useGlobalState<T>(key: string | symbol, initialState: T): [T, UpdateGlobalState$1<T>];
|
|
3664
3665
|
|
|
3665
|
-
interface NavigateOptions
|
|
3666
|
+
interface NavigateOptions {
|
|
3666
3667
|
prefetch?: boolean;
|
|
3667
3668
|
replace?: boolean;
|
|
3668
3669
|
}
|
|
3669
|
-
type NavigateFn = (href: string, options?: NavigateOptions
|
|
3670
|
+
type NavigateFn = (href: string, options?: NavigateOptions) => void;
|
|
3670
3671
|
interface RouteProviderProps {
|
|
3671
3672
|
children: ReactNode;
|
|
3672
3673
|
navigate: NavigateFn;
|
|
@@ -3674,22 +3675,45 @@ interface RouteProviderProps {
|
|
|
3674
3675
|
declare function RouteProvider({ children, navigate }: RouteProviderProps): react_jsx_runtime.JSX.Element;
|
|
3675
3676
|
declare function useNavigate(): NavigateFn;
|
|
3676
3677
|
|
|
3677
|
-
interface
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3678
|
+
interface LinkProps$1
|
|
3679
|
+
extends LinkProps$2,
|
|
3680
|
+
RefAttributes<HTMLAnchorElement> {
|
|
3681
|
+
areaSelected?: boolean
|
|
3682
|
+
className?: string
|
|
3683
|
+
color?: 'primary' | 'secondary'
|
|
3684
|
+
hasUnderline?: boolean
|
|
3685
|
+
id?: string
|
|
3686
|
+
onClick?(event: MouseEvent): void
|
|
3687
|
+
onMouseDown?(event: MouseEvent): void
|
|
3688
|
+
onMouseMove?(event: MouseEvent): void
|
|
3689
|
+
role?: 'option'
|
|
3684
3690
|
}
|
|
3685
|
-
|
|
3686
|
-
|
|
3691
|
+
|
|
3692
|
+
interface RouteLinkProps extends LinkProps$1 {
|
|
3693
|
+
route?: NavigateOptions;
|
|
3687
3694
|
}
|
|
3688
3695
|
declare function RouteLink({ children, onClick: _onClick, ...props }: RouteLinkProps): react_jsx_runtime.JSX.Element;
|
|
3689
3696
|
|
|
3690
|
-
interface
|
|
3691
|
-
|
|
3692
|
-
|
|
3697
|
+
interface ButtonProps$1 {
|
|
3698
|
+
_pseudo?: 'none' | 'focus' | 'hover' | 'active'
|
|
3699
|
+
children?: ReactNode
|
|
3700
|
+
className?: string
|
|
3701
|
+
color?: 'primary' | 'secondary'
|
|
3702
|
+
condensed?: boolean
|
|
3703
|
+
href?: string
|
|
3704
|
+
icon?: React.ReactNode
|
|
3705
|
+
iconPosition?: 'left' | 'right'
|
|
3706
|
+
isDisabled?: boolean
|
|
3707
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void
|
|
3708
|
+
onPress?: VoidFunction | ((...args: unknown[]) => void)
|
|
3709
|
+
size?: 'sm' | 'md' | 'lg'
|
|
3710
|
+
type?: 'button' | 'submit' | 'reset'
|
|
3711
|
+
variant?: 'solid' | 'outline' | 'ghost'
|
|
3712
|
+
withArrow?: boolean
|
|
3713
|
+
}
|
|
3714
|
+
|
|
3715
|
+
interface RouteButtonProps extends ButtonProps$1 {
|
|
3716
|
+
route?: NavigateOptions;
|
|
3693
3717
|
}
|
|
3694
3718
|
declare function RouteButton({ children, ...props }: RouteButtonProps): react_jsx_runtime.JSX.Element;
|
|
3695
3719
|
|
|
@@ -3752,31 +3776,33 @@ interface ProductHit$1 {
|
|
|
3752
3776
|
storefrontSlug: string;
|
|
3753
3777
|
}
|
|
3754
3778
|
|
|
3755
|
-
interface
|
|
3779
|
+
interface BreadcrumbLink$1 {
|
|
3756
3780
|
href: string;
|
|
3757
3781
|
label: string;
|
|
3758
3782
|
}
|
|
3759
3783
|
interface BreadcrumbProps {
|
|
3760
|
-
links:
|
|
3784
|
+
links: BreadcrumbLink$1[];
|
|
3761
3785
|
}
|
|
3762
3786
|
declare function Breadcrumb({ links }: BreadcrumbProps): react_jsx_runtime.JSX.Element | null;
|
|
3763
3787
|
|
|
3764
3788
|
interface ButtonProps {
|
|
3765
3789
|
_pseudo?: 'none' | 'focus' | 'hover' | 'active';
|
|
3766
|
-
children?: ReactNode
|
|
3790
|
+
children?: ReactNode;
|
|
3767
3791
|
className?: string;
|
|
3768
3792
|
color?: 'primary' | 'secondary';
|
|
3769
3793
|
condensed?: boolean;
|
|
3794
|
+
href?: string;
|
|
3770
3795
|
icon?: React.ReactNode;
|
|
3771
3796
|
iconPosition?: 'left' | 'right';
|
|
3772
3797
|
isDisabled?: boolean;
|
|
3798
|
+
onClick?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
3773
3799
|
onPress?: VoidFunction | ((...args: unknown[]) => void);
|
|
3774
3800
|
size?: 'sm' | 'md' | 'lg';
|
|
3775
3801
|
type?: 'button' | 'submit' | 'reset';
|
|
3776
3802
|
variant?: 'solid' | 'outline' | 'ghost';
|
|
3777
3803
|
withArrow?: boolean;
|
|
3778
3804
|
}
|
|
3779
|
-
declare function Button({ _pseudo, children, className, color, condensed, icon, iconPosition, isDisabled, onPress, size, type, variant, withArrow, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
3805
|
+
declare function Button({ _pseudo, children, className, color, condensed, href, icon, iconPosition, isDisabled, onClick: _onClick, onPress, size, type, variant, withArrow, }: ButtonProps): react_jsx_runtime.JSX.Element;
|
|
3780
3806
|
|
|
3781
3807
|
interface FavoriteButtonProps {
|
|
3782
3808
|
isDisabled?: boolean;
|
|
@@ -3796,29 +3822,18 @@ interface IconButtonProps {
|
|
|
3796
3822
|
}
|
|
3797
3823
|
declare function IconButton({ children, className, color, isDisabled, onPress, size, type, }: IconButtonProps): react_jsx_runtime.JSX.Element;
|
|
3798
3824
|
|
|
3799
|
-
interface
|
|
3800
|
-
|
|
3801
|
-
(fn: (value: T) => T): void
|
|
3802
|
-
}
|
|
3803
|
-
|
|
3804
|
-
interface NavigateOptions {
|
|
3805
|
-
prefetch?: boolean
|
|
3806
|
-
replace?: boolean
|
|
3807
|
-
}
|
|
3808
|
-
|
|
3809
|
-
interface LinkButtonProps {
|
|
3810
|
-
children?: React.ReactNode | string;
|
|
3825
|
+
interface LinkProps extends LinkProps$2, RefAttributes<HTMLAnchorElement> {
|
|
3826
|
+
areaSelected?: boolean;
|
|
3811
3827
|
className?: string;
|
|
3812
3828
|
color?: 'primary' | 'secondary';
|
|
3813
3829
|
hasUnderline?: boolean;
|
|
3814
|
-
|
|
3815
|
-
|
|
3816
|
-
|
|
3817
|
-
|
|
3818
|
-
|
|
3819
|
-
type?: 'button' | 'link';
|
|
3830
|
+
id?: string;
|
|
3831
|
+
onClick?(event: MouseEvent): void;
|
|
3832
|
+
onMouseDown?(event: MouseEvent): void;
|
|
3833
|
+
onMouseMove?(event: MouseEvent): void;
|
|
3834
|
+
role?: 'option';
|
|
3820
3835
|
}
|
|
3821
|
-
declare function
|
|
3836
|
+
declare function Link({ children, className, color, hasUnderline, onClick: _onClick, ...props }: LinkProps): react_jsx_runtime.JSX.Element;
|
|
3822
3837
|
|
|
3823
3838
|
type AddToCartState = 'initial' | 'spinner' | 'manual-input';
|
|
3824
3839
|
interface AddToCartButtonProps {
|
|
@@ -3841,16 +3856,7 @@ interface ProductPrice$1 {
|
|
|
3841
3856
|
price: number
|
|
3842
3857
|
}
|
|
3843
3858
|
|
|
3844
|
-
interface
|
|
3845
|
-
areaSelected?: boolean
|
|
3846
|
-
id?: string
|
|
3847
|
-
onClick?(event: MouseEvent): void
|
|
3848
|
-
onMouseDown?(event: MouseEvent): void
|
|
3849
|
-
onMouseMove?(event: MouseEvent): void
|
|
3850
|
-
role?: 'option'
|
|
3851
|
-
}
|
|
3852
|
-
|
|
3853
|
-
interface ProductCardProps extends AutocompleteProps {
|
|
3859
|
+
interface ProductCardProps extends LinkProps$1 {
|
|
3854
3860
|
addToCartButton: ReactElement;
|
|
3855
3861
|
favoriteButton?: ReactElement;
|
|
3856
3862
|
href: string;
|
|
@@ -4024,7 +4030,7 @@ interface TextFieldProps {
|
|
|
4024
4030
|
*/
|
|
4025
4031
|
declare function TextField({ autoFocus, autoGrow, defaultValue, isDisabled, isInvalid, isMultiline, isReadOnly, isRequired, label, maxLength, name, onChange, onInput, onKeyUp, placeholder, rows, showLabel, size, value, }: TextFieldProps): react_jsx_runtime.JSX.Element;
|
|
4026
4032
|
|
|
4027
|
-
type TranslationId = "'{0}' in all products" | ' to your account to manage your lists.' | 'Add to list' | 'An unexpected error occured' | 'Cancel' | 'Create new list' | 'Chosen filters' | 'Clear filters' | 'Clear' | 'Double check your spelling' | 'Excl. VAT' | 'Explore by categories' | 'Exploring our products by category' | 'Hide filters' | 'Incl. VAT' | 'List name already exists' | 'New list name' | 'Please Sign In' | 'Popular searches' | 'Products' | 'Quick access' | 'Recent searches' | 'Searching again using more general terms' | 'See all results' | 'Select a list' | 'Show all' | 'Show filters' | 'Show less' | 'Show' | 'Sorry, we could not find matches for' | 'Sort by' | 'Submit' | 'Suggestions' | 'Use fewer keywords' | 'You could try' | 'You must ' | 'article' | 'articles' | 'facet.categories' | 'facet.height' | 'facet.weight' | 'of' | 'sign in' | 'sort.newest' | 'sort.price_asc' | 'sort.price_desc' | 'sort.relevance' | 'tag.limited' | 'tag.new';
|
|
4033
|
+
type TranslationId = "'{0}' in all products" | ' to your account to manage your lists.' | 'Add to list' | 'An unexpected error occured' | 'Cancel' | 'Create new list' | 'Chosen filters' | 'Clear filters' | 'Clear' | 'Double check your spelling' | 'Excl. VAT' | 'Explore by categories' | 'Exploring our products by category' | 'Hide filters' | 'Incl. VAT' | 'List name already exists' | 'New list name' | 'Please Sign In' | 'Popular searches' | 'Products' | 'Quick access' | 'Recent searches' | 'Searching again using more general terms' | 'See all results' | 'Select a list' | 'Show all' | 'Show filters' | 'Show less' | 'Show' | 'Sorry, we could not find matches for' | 'Sort by' | 'Submit' | 'Suggestions' | 'Use fewer keywords' | 'You could try' | 'You must ' | 'article' | 'articles' | 'facet.categories' | 'facet.height' | 'facet.weight' | 'of' | 'sign in' | 'sort.newest' | 'sort.price_asc' | 'sort.price_desc' | 'sort.relevance' | 'tag.limited' | 'tag.new' | 'Search tools, toolsets, boxes and more';
|
|
4028
4034
|
|
|
4029
4035
|
interface FormattedMessageProps {
|
|
4030
4036
|
fallbackValue?: string;
|
|
@@ -4071,13 +4077,18 @@ declare function PageContainer({ children, className, }: {
|
|
|
4071
4077
|
className?: string;
|
|
4072
4078
|
}): react_jsx_runtime.JSX.Element;
|
|
4073
4079
|
|
|
4074
|
-
interface
|
|
4080
|
+
interface UpdateGlobalState<T> {
|
|
4081
|
+
(value: T): void
|
|
4082
|
+
(fn: (value: T) => T): void
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
interface BreadcrumbLink {
|
|
4075
4086
|
href: string
|
|
4076
4087
|
label: string
|
|
4077
4088
|
}
|
|
4078
4089
|
|
|
4079
4090
|
interface PageProps {
|
|
4080
|
-
breadCrumb:
|
|
4091
|
+
breadCrumb: BreadcrumbLink[];
|
|
4081
4092
|
children: ReactNode;
|
|
4082
4093
|
className?: string;
|
|
4083
4094
|
title?: string;
|
|
@@ -4196,6 +4207,7 @@ declare function AlgoliaInsightsProvider({ children, value, }: {
|
|
|
4196
4207
|
interface AlgoliaProviderProps {
|
|
4197
4208
|
categoryPages?: string;
|
|
4198
4209
|
children: ReactNode;
|
|
4210
|
+
hierarchicalCategories?: string[];
|
|
4199
4211
|
languageCode: string;
|
|
4200
4212
|
offlineSearchClient?: SearchClient;
|
|
4201
4213
|
online?: boolean;
|
|
@@ -4206,7 +4218,7 @@ interface AlgoliaProviderProps {
|
|
|
4206
4218
|
declare function AlgoliaInsightInstantSearchProvider({ children, }: {
|
|
4207
4219
|
children?: ReactNode;
|
|
4208
4220
|
}): react_jsx_runtime.JSX.Element;
|
|
4209
|
-
declare function AlgoliaProvider({ categoryPages, children, languageCode, offlineSearchClient, online: _online, query, routing, searchClient, }: AlgoliaProviderProps): react_jsx_runtime.JSX.Element;
|
|
4221
|
+
declare function AlgoliaProvider({ categoryPages, children, hierarchicalCategories, languageCode, offlineSearchClient, online: _online, query, routing, searchClient, }: AlgoliaProviderProps): react_jsx_runtime.JSX.Element;
|
|
4210
4222
|
declare function useAlgolia(): {
|
|
4211
4223
|
online: boolean;
|
|
4212
4224
|
setOnline: UpdateGlobalState<boolean>;
|
|
@@ -4431,4 +4443,4 @@ declare function ReactQueryContainer({ children }: {
|
|
|
4431
4443
|
children: ReactNode;
|
|
4432
4444
|
}): react_jsx_runtime.JSX.Element;
|
|
4433
4445
|
|
|
4434
|
-
export { Accordion, type AccountCollectionModel, type AccountModel, type AccountPaymentProfileCollectionModel, type AccountPaymentProfileModel, type AccountSettingsModel, type AccountShipToCollectionModel, type AccountShipToModel, type AccountsReceivableDto, type AddProductToCurrentCartParams, AddToCartButton, type AddressFieldCollectionModel, type AddressFieldDisplayCollectionModel, type AddressFieldDisplayModel, type AgingBucketDto, AlgoliaActiveCategories, AlgoliaCategoriesFilters, AlgoliaFilterPanel, type AlgoliaFilterPanelProps, AlgoliaInsightInstantSearchProvider, AlgoliaInsightsProvider, AlgoliaInsightsProviderContext, type AlgoliaInsightsProviderState, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, type AttributeTypeDto, type AttributeTypeFacetModel, type AttributeTypeModel, type AttributeValueDto, type AttributeValueFacetModel, type AttributeValueModel, type AutocompleteItemModel, type AutocompleteModel, type AutocompleteProductCollectionModel, type AutocompleteProductModel, type
|
|
4446
|
+
export { Accordion, type AccountCollectionModel, type AccountModel, type AccountPaymentProfileCollectionModel, type AccountPaymentProfileModel, type AccountSettingsModel, type AccountShipToCollectionModel, type AccountShipToModel, type AccountsReceivableDto, type AddProductToCurrentCartParams, AddToCartButton, type AddressFieldCollectionModel, type AddressFieldDisplayCollectionModel, type AddressFieldDisplayModel, type AgingBucketDto, AlgoliaActiveCategories, AlgoliaCategoriesFilters, AlgoliaFilterPanel, type AlgoliaFilterPanelProps, AlgoliaInsightInstantSearchProvider, AlgoliaInsightsProvider, AlgoliaInsightsProviderContext, type AlgoliaInsightsProviderState, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, type AttributeTypeDto, type AttributeTypeFacetModel, type AttributeTypeModel, type AttributeValueDto, type AttributeValueFacetModel, type AttributeValueModel, type AutocompleteItemModel, type AutocompleteModel, type AutocompleteProductCollectionModel, type AutocompleteProductModel, type AvailabilityDto$2 as AvailabilityDto, AvailabilityMessageType$2 as AvailabilityMessageType, BadgeImagePlacementValues, type BadgeModel, BadgeStyleValues, BadgeTypeValues, type BaseAddressModel, type BaseModel$1 as BaseModel, type BillToCollectionModel, type BillToModel, type BrandAlphabetLetterModel, type BrandAlphabetModel, type BrandAutocompleteModel, type BrandCategoryCollectionModel, type BrandCategoryModel, type BrandCollectionModel, type BrandDto$2 as BrandDto, type BrandModel, type BrandProductLineCollectionModel, type BrandProductLineModel, type BreadCrumb, type BreadCrumbModel, Breadcrumb, type BreadcrumbLink$1 as BreadcrumbLink, type BreadcrumbProps, type BreakPriceDto$2 as BreakPriceDto, type BreakPriceRfqModel, type BudgetCalendarCollectionModel, type BudgetCalendarModel, type BudgetCollectionModel, type BudgetLineModel, type BudgetModel, Button, type ButtonProps, type CalculationMethod, type CarrierDto, type CartCollectionModel, type CartLineCollectionModel, type CartLineModel$2 as CartLineModel, type CartModel, CartProvider, type CartSettingsModel, type CatalogPageModel, type Category$1 as Category, CategoryCarousel, type CategoryCarouselProps, type CategoryCollectionModel, type CategoryFacetModel, type CategoryModel, Checkbox, type CheckboxProps$1 as CheckboxProps, type ChildTraitValueModel, ColorCheckbox, type ColorCheckboxProps, type ConfigSectionDto, type ConfigSectionModel, type ConfigSectionOptionDto, type ConfigurationModel, ConnectedAddToCartButton, type ContactUsModel, type ContentModel, type CostCodeDto, type CostCodeModel, type CountryCollectionModel, type CountryModel, type CreditCardBillingAddressDto, type CreditCardDto, type CrossSellCollectionModel, type CurrencyCollectionModel, type CurrencyModel, CurrencyPositioningType, type CustomerCostCodeDto, type CustomerOrderTaxDto, type CustomerSettingsModel, type CustomerValidationDto, type DashboardPanelCollectionModel, type DashboardPanelModel, type DealerCollectionModel, type DealerModel, type DetailModel, type DocumentDto, type DocumentModel, type ECheckDto, type FacetModel, FavoriteButton, type FavoriteButtonProps, FavoriteProvider, type FetchProductListingPageDataArgs, type FieldScoreDetailedDto, type FieldScoreDetailedModel, type FieldScoreDto, type FieldScoreModel, type FieldValidationDto, type FilterOption, FilterSection, type Filters, FormattedMessage, type FormattedMessageFunction, type FormattedMessageProps, GlobalSearch, GlobalSearchContainer, GlobalSearchDisclosureContext, GlobalStateProvider, GlobalStateProviderContext, IconButton, type IconButtonProps, Image, type ImageModel, IntlProvider, type InventoryAvailabilityDto, type InventoryWarehousesDto, type InvoiceCollectionModel, type InvoiceHistoryTaxDto, type InvoiceLineModel, type InvoiceModel, type InvoiceSettingsModel, type JobQuoteCollectionModel, type JobQuoteLineModel, type JobQuoteModel, type LanguageCollectionModel, type LanguageModel, type LegacyConfigurationDto, Link, type LinkProps, LoadingOverlay, type MessageCollectionModel, type MessageModel, type MobileAppSettingsModel, type MobileContentModel, type MobilePageDto, type MobileWidgetDto, MultiSelect, type MultiSelectProps, type NavigateFn, type NavigateOptions, NumberField, type NumberFieldSize, type OrderApprovalCollectionModel, type OrderCollectionModel, type OrderHistoryTaxDto, type OrderLineModel, type OrderModel, type OrderPromotionModel, type OrderRequestModel, type OrderSettingsModel, type OrderStatusMappingCollectionModel, type OrderStatusMappingModel, Page, PageContainer, type PageProps, type PaginationModel$1 as PaginationModel, type PaymentMethodDto, type PaymentOptionsDto, type PersonaModel, type PoRequisitionModel, type PriceFacetModel, type PriceRangeModel, type PricingRfqModel, type ProductAutocompleteItemModel, type ProductAvailabilityModel, ProductCard, type ProductCardProps, type ProductCollectionModel, type ProductDto, type ProductHit$1 as ProductHit, type ProductImageDto, type ProductInventoryDto, type ProductLineDto, type ProductLineModel, ProductListingPage, type ProductListingPageDataResponse, type ProductListingPageProps, type ProductModel, ProductOverviewGrid, type ProductOverviewGridProps, ProductPrice, type ProductPriceDto$2 as ProductPriceDto, type ProductPriceModel, type ProductPriceProps, type ProductSettingsModel, ProductSku, type ProductSkuProps, type ProductSubscriptionDto$2 as ProductSubscriptionDto, type ProductSubscriptionModel, type ProductUnitOfMeasureDto$1 as ProductUnitOfMeasureDto, type ProfileTransactionRequestModel, ProgressCircle, type ProgressCircleProps, type PromoCard$1 as PromoCard, type PromoCards, type PromotionCollectionModel, type PromotionModel, type QuoteCollectionModel, type QuoteLineModel, type QuoteModel, type QuoteSettingsModel, ReactQueryContainer, type RealTimeCartInventoryModel, type RealTimeInventoryModel, type RealTimePricingModel, type RefinementListItem, type RelatedProductDto, type RequisitionCollectionModel, type RequisitionLineCollectionModel, type RequisitionLineModel, type RequisitionModel, type RmaLineDto, type RmaModel, RouteButton, RouteLink, RouteProvider, type RouteProviderProps, type SalespersonModel, type ScoreExplanationDto, type ScoreExplanationModel, SearchResultsPage, type SectionOptionDto$2 as SectionOptionDto, type SectionOptionModel, Select, type SelectProps, type SessionModel, type SessionRequestModel, type SettingsCollectionModel, type SetupRequestModel, type ShareEntityModel, type ShareOrderModel, type ShipToCollectionModel, type ShipToModel, type ShipViaDto, type ShipmentPackageDto, type ShipmentPackageLineDto, ShowAll, type ShowAllProps, Sidebar, SidebarDetectBreakpoint, type SidebarProps, SidebarProvider, type SiteMessageCollectionModel, type SiteMessageModel, type SortOptionModel$1 as SortOptionModel, type SpecificationDto, type SpecificationModel, type StateCollectionModel, type StateModel, type StyleTraitDto, type StyleValueDto, type StyledProductDto, type SuggestionModel, type TellAFriendModel, TextField, type TraitValueModel, type TranslationDictionaryCollectionModel, type TranslationDictionaryModel, type TranslationId, type UnitOfMeasureModel, type UpdateCartLineParams, type UpdateGlobalState$1 as UpdateGlobalState, type UpdateWishListLineCollectionModel, type UseAlgoliaEventResult, VariantDisplayTypeValues, type VariantTraitModel, type VmiBinCollectionModel, type VmiBinCountModel, type VmiBinModel, type VmiCountCollectionModel, type VmiCountModel, type VmiLocationCollectionModel, type VmiLocationModel, type VmiNoteCollectionModel, type VmiNoteModel, type VmiUserImportCollectionModel, type VmiUserImportModel, type VmiUserModel, type WarehouseCollectionModel, type WarehouseDto, type WarehouseModel, type WebsiteModel, type WebsiteSettingsModel, type WishListCollectionModel, type WishListEmailScheduleModel$1 as WishListEmailScheduleModel, type WishListLineCollectionModel, type WishListLineModel$1 as WishListLineModel, type WishListModel$1 as WishListModel, type WishListSettingsModel, type WishListShareModel$1 as WishListShareModel, config, configPerEnvironment, createSonicSearchClient, transformAlgoliaProductHitToProductHit, useAddProductToCurrentCart, useAlgolia, useAlgoliaInsights, useAlgoliaSearch, useBreakpoint, useCartEvents, useDebouncedCallback, useDeleteCartLineById, useDisclosure, useFavorite, useFavoriteProduct, useFetchCurrentCartLines, useFetchProductListingPageData, useFormattedMessage, useGlobalSearchDisclosure, useGlobalState, useNavigate, useScrollLock, useUpdateCartLineById, userToken, userTokenEventEmitter };
|