@sonic-equipment/ui 0.0.89 → 0.0.91

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 (28) hide show
  1. package/dist/index.d.ts +85 -36
  2. package/dist/index.js +239 -194
  3. package/dist/src/algolia/{algolia-product-hit-type.d.ts → algolia-hit-type.d.ts} +17 -2
  4. package/dist/src/algolia/algolia-hits-provider.d.ts +6 -0
  5. package/dist/src/algolia/use-algolia-hits.d.ts +10 -0
  6. package/dist/src/algolia/use-algolia-search.d.ts +3 -3
  7. package/dist/src/carousel/card-carousel/card-carousel.d.ts +10 -0
  8. package/dist/src/carousel/{product-carousel/product-carousel.stories.d.ts → card-carousel/product-card-carousel.stories.d.ts} +3 -3
  9. package/dist/src/carousel/card-carousel/promo-card-carousel.stories.d.ts +20 -0
  10. package/dist/src/carousel/promo-card-carousel/promo-card-carousel.d.ts +10 -0
  11. package/dist/src/config.d.ts +1 -0
  12. package/dist/src/global-search/types.d.ts +1 -1
  13. package/dist/src/index.d.ts +1 -1
  14. package/dist/src/pages/product-listing-page/product-listing-page-data-types.d.ts +3 -3
  15. package/dist/src/promos/promo-banner/promo-banner.d.ts +7 -0
  16. package/dist/src/promos/promo-banner/promo-banner.stories.d.ts +19 -0
  17. package/dist/src/promos/promo-banners/promo-banners.d.ts +8 -0
  18. package/dist/src/promos/{promo-cards/promo-cards.stories.d.ts → promo-banners/promo-banners.stories.d.ts} +3 -3
  19. package/dist/src/promos/promo-card/promo-card.d.ts +5 -5
  20. package/dist/src/promos/promo-card/promo-card.stories.d.ts +1 -8
  21. package/dist/src/shared/api/bff/model/bff.model.d.ts +4 -4
  22. package/dist/src/shared/model/{product-hit.d.ts → hit.d.ts} +12 -1
  23. package/dist/styles.css +97 -66
  24. package/package.json +1 -1
  25. package/dist/src/algolia/algolia-products-hits-provider.d.ts +0 -6
  26. package/dist/src/algolia/use-algolia-product-hits.d.ts +0 -10
  27. package/dist/src/carousel/product-carousel/product-carousel.d.ts +0 -10
  28. package/dist/src/promos/promo-cards/promo-cards.d.ts +0 -8
package/dist/index.d.ts CHANGED
@@ -21,6 +21,7 @@ interface Config {
21
21
  ALGOLIA_APP_ID: string;
22
22
  ALGOLIA_HOST: string;
23
23
  BFF_API_URL: string;
24
+ COOKIE_DOMAIN?: string;
24
25
  SHOP_API_URL: string;
25
26
  }
26
27
  declare const configPerEnvironment: Record<Environment, Config>;
@@ -4168,9 +4169,51 @@ interface RouteButtonProps extends ButtonProps$1 {
4168
4169
  }
4169
4170
  declare function RouteButton({ children, onClick, ...props }: RouteButtonProps): react_jsx_runtime.JSX.Element;
4170
4171
 
4171
- interface AlgoliaProduct$1 {
4172
+ interface DPRSrcSet {
4173
+ 1: string
4174
+ 2: string
4175
+ 3: string
4176
+ }
4177
+
4178
+ interface Image$1 extends DPRSrcSet {
4179
+ altText: string
4180
+ }
4181
+
4182
+ interface ImageSource {
4183
+ className?: string
4184
+ fallbackSrc?: string
4185
+ fit?: 'contain' | 'cover'
4186
+ height?: number
4187
+ image: Image$1 | ResponsiveImage | undefined
4188
+ loading?: 'lazy' | 'eager'
4189
+ onError?: () => void
4190
+ title: string
4191
+ width?: number
4192
+ }
4193
+
4194
+ interface ResponsiveImage {
4195
+ altText: string
4196
+ lg: DPRSrcSet
4197
+ md: DPRSrcSet
4198
+ sm: DPRSrcSet
4199
+ }
4200
+
4201
+ interface AlgoliaHitBase$1 {
4172
4202
  // eslint-disable-next-line @typescript-eslint/no-explicit-any
4173
4203
  [key: string]: any
4204
+ type: 'promo' | 'product'
4205
+ }
4206
+
4207
+ interface AlgoliaPromo$1 extends AlgoliaHitBase$1 {
4208
+ [key: string]: unknown
4209
+ image: Image$1
4210
+ isExternal: boolean
4211
+ type: 'promo'
4212
+ url: string
4213
+ }
4214
+
4215
+ interface AlgoliaProduct$1 extends AlgoliaHitBase$1 {
4216
+ [key: string]: unknown
4174
4217
  alternativeNumber: string
4175
4218
  categories: string[]
4176
4219
  categoryPageId: string[]
@@ -4204,43 +4247,24 @@ interface AlgoliaProduct$1 {
4204
4247
  slug: string
4205
4248
  storefrontId: string
4206
4249
  storefrontSlug: string
4207
- type: 'promo' | 'product'
4250
+ type: 'product'
4208
4251
  weight: number
4209
4252
  width: number
4210
4253
  }
4211
4254
 
4255
+ type AlgoliaPromoHit$1 = Hit<AlgoliaPromo$1>
4212
4256
  type AlgoliaProductHit$1 = Hit<AlgoliaProduct$1>
4213
4257
 
4214
- interface DPRSrcSet {
4215
- 1: string
4216
- 2: string
4217
- 3: string
4218
- }
4219
-
4220
- interface Image$1 extends DPRSrcSet {
4221
- altText: string
4222
- }
4223
-
4224
- interface ImageSource {
4225
- className?: string
4226
- fallbackSrc?: string
4227
- fit?: 'contain' | 'cover'
4228
- height?: number
4229
- image: Image$1 | ResponsiveImage | undefined
4230
- loading?: 'lazy' | 'eager'
4231
- onError?: () => void
4232
- title: string
4233
- width?: number
4234
- }
4235
-
4236
- interface ResponsiveImage {
4237
- altText: string
4238
- lg: DPRSrcSet
4239
- md: DPRSrcSet
4240
- sm: DPRSrcSet
4241
- }
4242
-
4258
+ declare function transformAlgoliaPromoHitToPromoHit(algoliaPromoHit: AlgoliaPromoHit$1): PromoHit$1;
4243
4259
  declare function transformAlgoliaProductHitToProductHit(algoliaProductHit: AlgoliaProductHit$1): ProductHit$1;
4260
+ interface PromoHit$1 {
4261
+ hit: AlgoliaPromoHit$1;
4262
+ href: string;
4263
+ id: string;
4264
+ image: Image$1;
4265
+ isExternal: boolean;
4266
+ type: 'promo';
4267
+ }
4244
4268
  interface ProductHit$1 {
4245
4269
  hit: AlgoliaProductHit$1;
4246
4270
  id: string;
@@ -4255,7 +4279,9 @@ interface ProductHit$1 {
4255
4279
  queryId: string | undefined;
4256
4280
  storefrontId: string;
4257
4281
  storefrontSlug: string;
4282
+ type: 'product';
4258
4283
  }
4284
+ declare function isProductHit(hit: ProductHit$1 | PromoHit$1): hit is ProductHit$1;
4259
4285
 
4260
4286
  interface BreadcrumbLink$1 {
4261
4287
  href: string;
@@ -4850,6 +4876,15 @@ type AutocompleteItem = AlgoliaProductHit$1 | QuerySuggestionHit$1 | PopularCate
4850
4876
  type Autocomplete = AutocompleteApi<AutocompleteItem, React.BaseSyntheticEvent, React.MouseEvent, React.KeyboardEvent>;
4851
4877
  type AutocompleteState = AutocompleteState$1<AutocompleteItem>;
4852
4878
 
4879
+ interface PromoHit {
4880
+ hit: AlgoliaPromoHit$1
4881
+ href: string
4882
+ id: string
4883
+ image: Image$1
4884
+ isExternal: boolean
4885
+ type: 'promo'
4886
+ }
4887
+
4853
4888
  interface ProductHit {
4854
4889
  hit: AlgoliaProductHit$1
4855
4890
  id: string
@@ -4864,6 +4899,7 @@ interface ProductHit {
4864
4899
  queryId: string | undefined
4865
4900
  storefrontId: string
4866
4901
  storefrontSlug: string
4902
+ type: 'product'
4867
4903
  }
4868
4904
 
4869
4905
  type CategoryHit = Hit<{
@@ -4901,8 +4937,19 @@ type RecentSearchHit = Hit<{
4901
4937
  label: string
4902
4938
  }>
4903
4939
 
4904
- interface AlgoliaProduct {
4940
+ interface AlgoliaHitBase {
4905
4941
  [key: string]: any;
4942
+ type: 'promo' | 'product';
4943
+ }
4944
+ interface AlgoliaPromo extends AlgoliaHitBase {
4945
+ [key: string]: unknown;
4946
+ image: Image$1;
4947
+ isExternal: boolean;
4948
+ type: 'promo';
4949
+ url: string;
4950
+ }
4951
+ interface AlgoliaProduct extends AlgoliaHitBase {
4952
+ [key: string]: unknown;
4906
4953
  alternativeNumber: string;
4907
4954
  categories: string[];
4908
4955
  categoryPageId: string[];
@@ -4934,11 +4981,13 @@ interface AlgoliaProduct {
4934
4981
  slug: string;
4935
4982
  storefrontId: string;
4936
4983
  storefrontSlug: string;
4937
- type: 'promo' | 'product';
4984
+ type: 'product';
4938
4985
  weight: number;
4939
4986
  width: number;
4940
4987
  }
4988
+ type AlgoliaPromoHit = Hit<AlgoliaPromo>;
4941
4989
  type AlgoliaProductHit = Hit<AlgoliaProduct>;
4990
+ type AlgoliaHit = AlgoliaPromoHit | AlgoliaProductHit;
4942
4991
 
4943
4992
  interface ExtendedAutoCompleteCollection<T extends BaseItem> extends AutocompleteCollection<T> {
4944
4993
  source: ExtendedInternalAutocompleteSource<T>;
@@ -4952,8 +5001,8 @@ declare function useAlgoliaSearch(): {
4952
5001
  popularCategories: AutocompleteCollection<PopularCategoryHit> | undefined;
4953
5002
  popularSearches: AutocompleteCollection<PopularSearchHit> | undefined;
4954
5003
  products: {
4955
- items: ProductHit[];
4956
- source: InternalAutocompleteSource<AlgoliaProductHit>;
5004
+ items: (PromoHit | ProductHit)[];
5005
+ source: InternalAutocompleteSource<AlgoliaHit>;
4957
5006
  } | undefined;
4958
5007
  querySuggestions: AutocompleteCollection<QuerySuggestionHit> | undefined;
4959
5008
  quickAccess: AutocompleteCollection<QuickAccessHit> | undefined;
@@ -4980,4 +5029,4 @@ declare function ReactQueryContainer({ children }: {
4980
5029
  children: ReactNode;
4981
5030
  }): react_jsx_runtime.JSX.Element;
4982
5031
 
4983
- 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, AnnouncementProvider, 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, CountrySelector, 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 ShowAllPropsControlled, type ShowAllPropsUncontrolled, 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, useOnNavigate, useScrollLock, useSession, useSignIn, useSignOut, useUpdateCartLineById, userToken };
5032
+ 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, AnnouncementProvider, 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, CountrySelector, 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 PromoHit$1 as PromoHit, 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 ShowAllPropsControlled, type ShowAllPropsUncontrolled, 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, isProductHit, isRequestError, request, signIn, signOut, transformAlgoliaProductHitToProductHit, transformAlgoliaPromoHitToPromoHit, 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, useOnNavigate, useScrollLock, useSession, useSignIn, useSignOut, useUpdateCartLineById, userToken };