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