@sonic-equipment/ui 0.0.70 → 0.0.72

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 (62) hide show
  1. package/dist/index.d.ts +40 -113
  2. package/dist/index.js +434 -325
  3. package/dist/src/background-overlay/background-overlay.d.ts +7 -0
  4. package/dist/src/buttons/add-to-cart-button/add-to-cart-button.stories.d.ts +1 -1
  5. package/dist/src/buttons/button/button.stories.d.ts +1 -1
  6. package/dist/src/buttons/favorite/favorite-button.stories.d.ts +1 -1
  7. package/dist/src/buttons/icon-button/icon-button.stories.d.ts +1 -1
  8. package/dist/src/buttons/link/link.stories.d.ts +1 -1
  9. package/dist/src/cards/product-card/connected-product-cart.d.ts +1 -1
  10. package/dist/src/carousel/product-carousel/product-carousel.d.ts +2 -1
  11. package/dist/src/carousel/product-carousel/product-carousel.stories.d.ts +19 -0
  12. package/dist/src/collapsables/show-all/show-all.stories.d.ts +1 -1
  13. package/dist/src/filters/active-filters/active-filters.stories.d.ts +2 -2
  14. package/dist/src/filters/multi-select/multi-select.stories.d.ts +1 -1
  15. package/dist/src/filters/pagination/pagination.stories.d.ts +1 -1
  16. package/dist/src/forms/checkbox/checkbox.stories.d.ts +1 -1
  17. package/dist/src/forms/color-checkbox/color-checkbox.stories.d.ts +1 -1
  18. package/dist/src/forms/select/select.stories.d.ts +1 -1
  19. package/dist/src/index.d.ts +21 -22
  20. package/dist/src/pages/error-page/error-page.d.ts +4 -0
  21. package/dist/src/pages/layouts/product-details-page-layout.d.ts +9 -0
  22. package/dist/src/pages/loading-page/loading-page.d.ts +1 -0
  23. package/dist/src/pages/product-details-page/product-details-page.d.ts +4 -0
  24. package/dist/src/pages/product-details-page/product-details-page.stories.d.ts +20 -0
  25. package/dist/src/promos/promo-cards/promo-cards.d.ts +8 -4
  26. package/dist/src/promos/promo-cards/promo-cards.stories.d.ts +1 -3
  27. package/dist/src/shared/api/bff/hooks/use-fetch-product-details-page-data.d.ts +7 -0
  28. package/dist/src/shared/api/bff/hooks/use-fetch-product-details-page-data.stories.d.ts +20 -0
  29. package/dist/src/shared/api/bff/hooks/use-fetch-product-listing-page-data.stories.d.ts +0 -1
  30. package/dist/src/shared/api/bff/model/bff.model.d.ts +99 -9
  31. package/dist/src/shared/api/storefront/hooks/authentication/use-session.d.ts +4 -0
  32. package/dist/src/shared/api/{shop → storefront}/hooks/authentication/use-sign-in.d.ts +1 -1
  33. package/dist/src/shared/api/{shop → storefront}/hooks/cart/cart.stories.d.ts +1 -1
  34. package/dist/src/shared/api/{shop → storefront}/hooks/cart/use-add-product-to-current-cart.d.ts +1 -1
  35. package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/use-fetch-all-wishlists-items.d.ts +1 -1
  36. package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/use-fetch-wishlists.d.ts +1 -1
  37. package/dist/src/shared/api/{shop → storefront}/services/authentication-service.d.ts +1 -1
  38. package/dist/src/shared/api/{shop → storefront}/services/cart-service.d.ts +1 -1
  39. package/dist/src/shared/api/{shop → storefront}/services/wishlist-service.d.ts +1 -1
  40. package/dist/src/shared/feature-flags/use-feature-flags.d.ts +1 -0
  41. package/dist/src/shared/providers/cart-provider.d.ts +1 -1
  42. package/dist/src/shared/providers/favorite-provider.d.ts +1 -1
  43. package/dist/src/shared/routing/route-button.d.ts +1 -1
  44. package/dist/styles.css +284 -188
  45. package/package.json +2 -2
  46. package/dist/src/overlay-background/overlay-background.d.ts +0 -7
  47. package/dist/src/shared/api/shop/hooks/authentication/use-session.d.ts +0 -2
  48. /package/dist/src/shared/api/{shop → storefront}/hooks/authentication/authentication.stories.d.ts +0 -0
  49. /package/dist/src/shared/api/{shop → storefront}/hooks/authentication/use-is-authenticated.d.ts +0 -0
  50. /package/dist/src/shared/api/{shop → storefront}/hooks/authentication/use-sign-out.d.ts +0 -0
  51. /package/dist/src/shared/api/{shop → storefront}/hooks/cart/use-delete-cart-line-by-id.d.ts +0 -0
  52. /package/dist/src/shared/api/{shop → storefront}/hooks/cart/use-fetch-current-cart-lines.d.ts +0 -0
  53. /package/dist/src/shared/api/{shop → storefront}/hooks/cart/use-update-cart-line-by-id.d.ts +0 -0
  54. /package/dist/src/shared/api/{shop → storefront}/hooks/translation/translations.stories.d.ts +0 -0
  55. /package/dist/src/shared/api/{shop → storefront}/hooks/translation/use-fetch-translations.d.ts +0 -0
  56. /package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/use-add-wishlist-item-to-current-wishlist.d.ts +0 -0
  57. /package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/use-add-wishlist-item-to-wishlist.d.ts +0 -0
  58. /package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/use-create-wishlist.d.ts +0 -0
  59. /package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/use-delete-wishlist-item-from-wishlist.d.ts +0 -0
  60. /package/dist/src/shared/api/{shop → storefront}/hooks/wishlist/wishlist.stories.d.ts +0 -0
  61. /package/dist/src/shared/api/{shop → storefront}/model/shop.model.d.ts +0 -0
  62. /package/dist/src/shared/api/{shop → storefront}/services/translation-service.d.ts +0 -0
package/dist/index.d.ts CHANGED
@@ -121,121 +121,12 @@ interface Request {
121
121
  declare const request: Request;
122
122
 
123
123
  interface UseFeatureFlagsReturnType {
124
+ pdpV2: boolean;
124
125
  plpV2: boolean;
125
126
  searchV2: boolean;
126
127
  }
127
128
  declare function useFeatureFlags(): UseFeatureFlagsReturnType;
128
129
 
129
- interface DPRSrcSet {
130
- 1: string
131
- 2: string
132
- 3: string
133
- }
134
-
135
- interface Image$1 extends DPRSrcSet {
136
- altText: string
137
- }
138
-
139
- interface ImageSource {
140
- className?: string
141
- fallbackSrc?: string
142
- fit?: 'contain' | 'cover'
143
- height?: number
144
- image: Image$1 | ResponsiveImage
145
- loading?: 'lazy' | 'eager'
146
- onError?: () => void
147
- title: string
148
- width?: number
149
- }
150
-
151
- interface ResponsiveImage {
152
- altText: string
153
- lg: DPRSrcSet
154
- md: DPRSrcSet
155
- sm: DPRSrcSet
156
- }
157
-
158
- interface Category$1 {
159
- activateOn: string;
160
- deactivateOn: string | null;
161
- htmlContent: string;
162
- id: string;
163
- imageAltText: string;
164
- isDynamic: boolean;
165
- isFeatured: boolean;
166
- largeImagePath: string;
167
- metaDescription: string;
168
- metaKeywords: string;
169
- mobileBannerImageUrl: string;
170
- mobilePrimaryText: string;
171
- mobileSecondaryText: string;
172
- mobileTextColor: string;
173
- mobileTextJustification: string;
174
- name: string;
175
- path: string;
176
- properties: {
177
- pimId: string | null;
178
- };
179
- shortDescription: string;
180
- smallImagePath: string;
181
- sortOrder: number;
182
- subCategories: Category$1[] | null;
183
- uri: null;
184
- urlSegment: string;
185
- }
186
- interface PromoCard$1 {
187
- href: string;
188
- image: ResponsiveImage;
189
- }
190
- interface PromoCards {
191
- top: PromoCard$1[] | null;
192
- }
193
- interface BreadCrumb {
194
- categoryId: string;
195
- text: string;
196
- url: string;
197
- }
198
- interface ProductListingPageDataResponse {
199
- breadCrumb: BreadCrumb[];
200
- categories: Category$1 | null;
201
- categoryPages: string;
202
- hierarchicalCategories: string[];
203
- promoCards: PromoCards | null;
204
- }
205
-
206
- interface PromoCard {
207
- href: string
208
- image: ResponsiveImage
209
- }
210
-
211
- interface Link$1 {
212
- href: string
213
- label: string
214
- }
215
-
216
- interface Category {
217
- href: string
218
- image: Image$1
219
- title: string
220
- }
221
-
222
- interface ProductListingPageData {
223
- breadCrumb: Link$1[]
224
- category: Category | undefined
225
- categoryPages: string
226
- hierarchicalCategories: string[]
227
- promoCards?: {
228
- top: PromoCard[] | undefined
229
- }
230
- subcategories: Category[] | undefined
231
- }
232
-
233
- interface FetchProductListingPageDataArgs {
234
- languageCode: string;
235
- pageUrl: string;
236
- }
237
- declare function useFetchProductListingPageData({ languageCode, pageUrl, }: FetchProductListingPageDataArgs): _tanstack_react_query.UseQueryResult<ProductListingPageData, Error>;
238
-
239
130
  interface BaseModel$1 {
240
131
  properties: {
241
132
  [key: string]: string;
@@ -4011,7 +3902,9 @@ declare function getWishListItemsByWishListId({ wishListId, }: {
4011
3902
 
4012
3903
  declare function useIsAuthenticated(): boolean | undefined;
4013
3904
 
4014
- declare function useSession(): _tanstack_react_query.UseQueryResult<SessionModel, Error>;
3905
+ declare function useSession({ enabled }?: {
3906
+ enabled?: boolean;
3907
+ }): _tanstack_react_query.UseQueryResult<SessionModel, Error>;
4015
3908
 
4016
3909
  interface AuthenticationResponse {
4017
3910
  access_token: string
@@ -4254,7 +4147,7 @@ interface ButtonProps$1 {
4254
4147
  interface RouteButtonProps extends ButtonProps$1 {
4255
4148
  route?: NavigateOptions;
4256
4149
  }
4257
- declare function RouteButton({ children, ...props }: RouteButtonProps): react_jsx_runtime.JSX.Element;
4150
+ declare function RouteButton({ children, onClick, ...props }: RouteButtonProps): react_jsx_runtime.JSX.Element;
4258
4151
 
4259
4152
  interface AlgoliaProduct$1 {
4260
4153
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -4298,6 +4191,35 @@ interface AlgoliaProduct$1 {
4298
4191
 
4299
4192
  type AlgoliaProductHit$1 = Hit<AlgoliaProduct$1>
4300
4193
 
4194
+ interface DPRSrcSet {
4195
+ 1: string
4196
+ 2: string
4197
+ 3: string
4198
+ }
4199
+
4200
+ interface Image$1 extends DPRSrcSet {
4201
+ altText: string
4202
+ }
4203
+
4204
+ interface ImageSource {
4205
+ className?: string
4206
+ fallbackSrc?: string
4207
+ fit?: 'contain' | 'cover'
4208
+ height?: number
4209
+ image: Image$1 | ResponsiveImage
4210
+ loading?: 'lazy' | 'eager'
4211
+ onError?: () => void
4212
+ title: string
4213
+ width?: number
4214
+ }
4215
+
4216
+ interface ResponsiveImage {
4217
+ altText: string
4218
+ lg: DPRSrcSet
4219
+ md: DPRSrcSet
4220
+ sm: DPRSrcSet
4221
+ }
4222
+
4301
4223
  declare function transformAlgoliaProductHitToProductHit(algoliaProductHit: AlgoliaProductHit$1): ProductHit$1;
4302
4224
  interface ProductHit$1 {
4303
4225
  hit: AlgoliaProductHit$1;
@@ -4631,6 +4553,11 @@ interface PageProps {
4631
4553
  }
4632
4554
  declare function Page({ breadCrumb, children, className, title }: PageProps): react_jsx_runtime.JSX.Element;
4633
4555
 
4556
+ interface ProductDetailsPageProps {
4557
+ pageUrl: string;
4558
+ }
4559
+ declare function ProductDetailsPage({ pageUrl }: ProductDetailsPageProps): react_jsx_runtime.JSX.Element;
4560
+
4634
4561
  interface Filters {
4635
4562
  color: {
4636
4563
  options: {
@@ -4992,4 +4919,4 @@ declare function ReactQueryContainer({ children }: {
4992
4919
  children: ReactNode;
4993
4920
  }): react_jsx_runtime.JSX.Element;
4994
4921
 
4995
- export { Accordion, type AccountCollectionModel, type AccountModel, type AccountPaymentProfileCollectionModel, type AccountPaymentProfileModel, type AccountSettingsModel, type AccountShipToCollectionModel, type AccountShipToModel, type AccountsReceivableDto$1 as AccountsReceivableDto, type AddProductToCurrentCartParams$1 as AddProductToCurrentCartParams, AddToCartButton, type AddressFieldCollectionModel, type AddressFieldDisplayCollectionModel, type AddressFieldDisplayModel, type AgingBucketDto$1 as AgingBucketDto, AlgoliaActiveCategories, AlgoliaCategoriesFilters, AlgoliaFilterPanel, type AlgoliaFilterPanelProps, AlgoliaInsightsProvider, AlgoliaInsightsProviderContext, type AlgoliaInsightsProviderState, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, type AttributeTypeDto, type AttributeTypeFacetModel, type AttributeTypeModel, type AttributeValueDto, type AttributeValueFacetModel, type AttributeValueModel, type AuthenticationResponse$1 as AuthenticationResponse, type AutocompleteItemModel, type AutocompleteModel, type AutocompleteProductCollectionModel, type AutocompleteProductModel, type AvailabilityDto$2 as AvailabilityDto, AvailabilityMessageType$2 as AvailabilityMessageType, BadRequestError, BadgeImagePlacementValues, type BadgeModel, BadgeStyleValues, BadgeTypeValues, type BaseAddressModel, type BaseModel$1 as BaseModel, type BillToCollectionModel, type BillToModel$1 as 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$1 as CostCodeModel, type CountryCollectionModel, type CountryModel$1 as CountryModel, type CreateSessionRequestBody, type CreditCardBillingAddressDto, type CreditCardDto, type CrossSellCollectionModel, type CurrencyCollectionModel, type CurrencyModel$1 as CurrencyModel, CurrencyPositioningType$1 as CurrencyPositioningType, type CustomerCostCodeDto, type CustomerOrderTaxDto, type CustomerSettingsModel, type CustomerValidationDto$1 as CustomerValidationDto, type DashboardPanelCollectionModel, type DashboardPanelModel, type DealerCollectionModel, type DealerModel, type DetailModel, type DocumentDto, type DocumentModel, type ECheckDto, type Environment, type FacetModel, FavoriteButton, type FavoriteButtonProps, FavoriteProvider, type FetchProductListingPageDataArgs, type FieldScoreDetailedDto, type FieldScoreDetailedModel, type FieldScoreDto, type FieldScoreModel, type FieldValidationDto$1 as FieldValidationDto, type FilterOption, FilterSection, type Filters, ForbiddenRequestError, FormattedMessage, type FormattedMessageFunction, type FormattedMessageProps, GlobalSearch, GlobalSearchDisclosureContext, GlobalSearchProvider, GlobalStateProvider, GlobalStateProviderContext, IconButton, type IconButtonProps, Image, type ImageModel, InternalServerErrorRequest, 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$1 as 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, NotFoundRequestError, 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$1 as 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, RequestError, type RequestHeaders, type RequisitionCollectionModel, type RequisitionLineCollectionModel, type RequisitionLineModel, type RequisitionModel, type RmaLineDto, type RmaModel, RouteButton, RouteLink, RouteProvider, type RouteProviderProps, type SalespersonModel, type ScoreExplanationDto, type ScoreExplanationModel, SearchResultsPage, SearchRoot, type SectionOptionDto$2 as SectionOptionDto, type SectionOptionModel, Select, type SelectProps, type SessionModel$1 as SessionModel, type SessionRequestModel, type SettingsCollectionModel, type SetupRequestModel, type ShareEntityModel, type ShareOrderModel, type ShipToCollectionModel, type ShipToModel$1 as 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$1 as StateModel, type StyleTraitDto, type StyleValueDto, type StyledProductDto, type SuggestionModel, type TellAFriendModel, TextField, TimeoutRequestError, type TraitValueModel, type TranslationDictionaryCollectionModel, type TranslationDictionaryModel, type TranslationId, UnauthorizedRequestError, type UnitOfMeasureModel, UnprocessableContentRequestError, 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$1 as WarehouseModel, type WebsiteModel, type WebsiteSettingsModel, type WishListCollectionModel$1 as WishListCollectionModel, type WishListEmailScheduleModel$1 as WishListEmailScheduleModel, type WishListLine$1 as WishListLine, type WishListLineCollectionModel$1 as WishListLineCollectionModel, type WishListLineModel$1 as WishListLineModel, type WishListLines$1 as WishListLines, type WishListModel$1 as WishListModel, WishListNameAlreadyExistsError, type WishListSettingsModel, type WishListShareModel$1 as WishListShareModel, 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 };
4922
+ export { Accordion, type AccountCollectionModel, type AccountModel, type AccountPaymentProfileCollectionModel, type AccountPaymentProfileModel, type AccountSettingsModel, type AccountShipToCollectionModel, type AccountShipToModel, type AccountsReceivableDto$1 as AccountsReceivableDto, type AddProductToCurrentCartParams$1 as AddProductToCurrentCartParams, AddToCartButton, type AddressFieldCollectionModel, type AddressFieldDisplayCollectionModel, type AddressFieldDisplayModel, type AgingBucketDto$1 as AgingBucketDto, AlgoliaActiveCategories, AlgoliaCategoriesFilters, AlgoliaFilterPanel, type AlgoliaFilterPanelProps, AlgoliaInsightsProvider, AlgoliaInsightsProviderContext, type AlgoliaInsightsProviderState, AlgoliaMultiSelectFilterSection, AlgoliaPagination, AlgoliaProvider, AlgoliaResultsCount, AlgoliaSortBy, type AttributeTypeDto, type AttributeTypeFacetModel, type AttributeTypeModel, type AttributeValueDto, type AttributeValueFacetModel, type AttributeValueModel, type AuthenticationResponse$1 as AuthenticationResponse, type AutocompleteItemModel, type AutocompleteModel, type AutocompleteProductCollectionModel, type AutocompleteProductModel, type AvailabilityDto$2 as AvailabilityDto, AvailabilityMessageType$2 as AvailabilityMessageType, BadRequestError, BadgeImagePlacementValues, type BadgeModel, BadgeStyleValues, BadgeTypeValues, type BaseAddressModel, type BaseModel$1 as BaseModel, type BillToCollectionModel, type BillToModel$1 as 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 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, 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$1 as CostCodeModel, type CountryCollectionModel, type CountryModel$1 as CountryModel, type CreateSessionRequestBody, type CreditCardBillingAddressDto, type CreditCardDto, type CrossSellCollectionModel, type CurrencyCollectionModel, type CurrencyModel$1 as CurrencyModel, CurrencyPositioningType$1 as CurrencyPositioningType, type CustomerCostCodeDto, type CustomerOrderTaxDto, type CustomerSettingsModel, type CustomerValidationDto$1 as CustomerValidationDto, type DashboardPanelCollectionModel, type DashboardPanelModel, type DealerCollectionModel, type DealerModel, type DetailModel, type DocumentDto, type DocumentModel, type ECheckDto, type Environment, type FacetModel, FavoriteButton, type FavoriteButtonProps, FavoriteProvider, type FieldScoreDetailedDto, type FieldScoreDetailedModel, type FieldScoreDto, type FieldScoreModel, type FieldValidationDto$1 as FieldValidationDto, type FilterOption, FilterSection, type Filters, ForbiddenRequestError, FormattedMessage, type FormattedMessageFunction, type FormattedMessageProps, GlobalSearch, GlobalSearchDisclosureContext, GlobalSearchProvider, GlobalStateProvider, GlobalStateProviderContext, IconButton, type IconButtonProps, Image, type ImageModel, InternalServerErrorRequest, 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$1 as 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, NotFoundRequestError, 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$1 as PersonaModel, type PoRequisitionModel, type PriceFacetModel, type PriceRangeModel, type PricingRfqModel, type ProductAutocompleteItemModel, type ProductAvailabilityModel, ProductCard, type ProductCardProps, type ProductCollectionModel, ProductDetailsPage, type ProductDetailsPageProps, type ProductDto, type ProductHit$1 as ProductHit, type ProductImageDto, type ProductInventoryDto, type ProductLineDto, type ProductLineModel, ProductListingPage, 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 PromotionCollectionModel, type PromotionModel, type QuoteCollectionModel, type QuoteLineModel, type QuoteModel, type QuoteSettingsModel, ReactQueryContainer, type RealTimeCartInventoryModel, type RealTimeInventoryModel, type RealTimePricingModel, type RefinementListItem, type RelatedProductDto, RequestError, type RequestHeaders, type RequisitionCollectionModel, type RequisitionLineCollectionModel, type RequisitionLineModel, type RequisitionModel, type RmaLineDto, type RmaModel, RouteButton, RouteLink, RouteProvider, type RouteProviderProps, type SalespersonModel, type ScoreExplanationDto, type ScoreExplanationModel, SearchResultsPage, SearchRoot, type SectionOptionDto$2 as SectionOptionDto, type SectionOptionModel, Select, type SelectProps, type SessionModel$1 as SessionModel, type SessionRequestModel, type SettingsCollectionModel, type SetupRequestModel, type ShareEntityModel, type ShareOrderModel, type ShipToCollectionModel, type ShipToModel$1 as 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$1 as StateModel, type StyleTraitDto, type StyleValueDto, type StyledProductDto, type SuggestionModel, type TellAFriendModel, TextField, TimeoutRequestError, type TraitValueModel, type TranslationDictionaryCollectionModel, type TranslationDictionaryModel, type TranslationId, UnauthorizedRequestError, type UnitOfMeasureModel, UnprocessableContentRequestError, 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$1 as WarehouseModel, type WebsiteModel, type WebsiteSettingsModel, type WishListCollectionModel$1 as WishListCollectionModel, type WishListEmailScheduleModel$1 as WishListEmailScheduleModel, type WishListLine$1 as WishListLine, type WishListLineCollectionModel$1 as WishListLineCollectionModel, type WishListLineModel$1 as WishListLineModel, type WishListLines$1 as WishListLines, type WishListModel$1 as WishListModel, WishListNameAlreadyExistsError, type WishListSettingsModel, type WishListShareModel$1 as WishListShareModel, 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, useFetchTranslations, useFetchWishLists, useFormattedMessage, useGlobalSearchDisclosure, useGlobalState, useIsAuthenticated, useIsBreakpoint, useNavigate, useScrollLock, useSession, useSignIn, useSignOut, useUpdateCartLineById, userToken };