@sonic-equipment/ui 0.0.82 → 0.0.84

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 CHANGED
@@ -6,7 +6,12 @@ import * as algoliasearch from 'algoliasearch';
6
6
  import { SearchClient } from 'algoliasearch';
7
7
  import { AutocompleteApi, AutocompleteState as AutocompleteState$1, AutocompleteCollection, InternalAutocompleteSource, BaseItem } from '@algolia/autocomplete-core';
8
8
 
9
- declare const environments = ['sandbox', 'production', 'local'] as const
9
+ declare const environments = [
10
+ 'sandbox',
11
+ 'production',
12
+ 'local',
13
+ 'storybook',
14
+ ] as const
10
15
  type Environment = (typeof environments)[number]
11
16
 
12
17
  declare const environment = getEnvironment()
@@ -3827,6 +3832,7 @@ type TranslationId$1 =
3827
3832
  | 'Clear'
3828
3833
  | 'Continue shopping'
3829
3834
  | 'Create new list'
3835
+ | 'create account'
3830
3836
  | 'Double check your spelling'
3831
3837
  | 'Downloads'
3832
3838
  | 'Excl. VAT'
@@ -3848,6 +3854,10 @@ type TranslationId$1 =
3848
3854
  | 'Searching again using more general terms'
3849
3855
  | 'See all results'
3850
3856
  | 'Select a list'
3857
+ | 'Shop more efficiently and quicker with a favorites list'
3858
+ | 'Easily add your favorite products'
3859
+ | 'Your favorites are available on multiple devices'
3860
+ | 'Share your favorite list with others'
3851
3861
  | 'Show all'
3852
3862
  | 'Show filters'
3853
3863
  | 'Show less'
@@ -3948,7 +3958,7 @@ interface UpdateCartLineParams {
3948
3958
  }
3949
3959
  declare function useUpdateCartLineById(): _tanstack_react_query.UseMutationResult<void, Error, UpdateCartLineParams, unknown>;
3950
3960
 
3951
- type TranslationId = "'{0}' in all products" | "Try 'Search' and try to find the product you're looking for" | "Unfortnately, We found no articles for your search '{0}'" | ' to your account to manage your lists.' | 'Add to list' | 'An unexpected error occured' | 'Are you looking for information about our service? Please visit our customer support page' | 'Cancel' | 'Chosen filters' | 'Clear filters' | 'Clear' | 'Continue shopping' | 'Create new list' | 'Double check your spelling' | 'Downloads' | 'Excl. VAT' | 'Explore by categories' | 'Exploring our products by category' | 'Features' | 'Hide filters' | 'Incl. VAT' | 'Includes' | 'List name already exists' | 'New list name' | 'Please Sign In' | 'Popular searches' | 'Product Features' | 'Products' | 'Quick access' | 'Recent searches' | 'Recently viewed' | 'Searching again using more general terms' | 'See all results' | 'Select a list' | 'Show all' | 'Show filters' | 'Show less' | 'Show' | 'Sorry, there are no products found' | 'Sorry, we could not find matches for' | 'Sort by' | 'Specifications' | 'Submit' | 'Suggestions' | 'Try another search' | 'Use fewer keywords' | 'What are you searching for?' | 'You could try checking the spelling of your search query' | 'You could try exploring our products by category' | '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';
3961
+ type TranslationId = "'{0}' in all products" | "Try 'Search' and try to find the product you're looking for" | "Unfortnately, We found no articles for your search '{0}'" | ' to your account to manage your lists.' | 'Add to list' | 'An unexpected error occured' | 'Are you looking for information about our service? Please visit our customer support page' | 'Cancel' | 'Chosen filters' | 'Clear filters' | 'Clear' | 'Continue shopping' | 'Create new list' | 'create account' | 'Double check your spelling' | 'Downloads' | 'Excl. VAT' | 'Explore by categories' | 'Exploring our products by category' | 'Features' | 'Hide filters' | 'Incl. VAT' | 'Includes' | 'List name already exists' | 'New list name' | 'Please Sign In' | 'Popular searches' | 'Product Features' | 'Products' | 'Quick access' | 'Recent searches' | 'Recently viewed' | 'Searching again using more general terms' | 'See all results' | 'Select a list' | 'Shop more efficiently and quicker with a favorites list' | 'Easily add your favorite products' | 'Your favorites are available on multiple devices' | 'Share your favorite list with others' | 'Show all' | 'Show filters' | 'Show less' | 'Show' | 'Sorry, there are no products found' | 'Sorry, we could not find matches for' | 'Sort by' | 'Specifications' | 'Submit' | 'Suggestions' | 'Try another search' | 'Use fewer keywords' | 'What are you searching for?' | 'You could try checking the spelling of your search query' | 'You could try exploring our products by category' | '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';
3952
3962
 
3953
3963
  type Translations = Record<TranslationId, string>;
3954
3964
  type FormatMessageFunction = (id: string, ...replacementValues: readonly string[]) => string | undefined;