@seekora-ai/ui-sdk-react 0.2.13 → 0.2.14

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 (74) hide show
  1. package/dist/components/CurrentRefinements.d.ts +22 -2
  2. package/dist/components/CurrentRefinements.d.ts.map +1 -1
  3. package/dist/components/CurrentRefinements.js +199 -47
  4. package/dist/components/Facets.d.ts +30 -1
  5. package/dist/components/Facets.d.ts.map +1 -1
  6. package/dist/components/Facets.js +418 -46
  7. package/dist/components/HierarchicalMenu.d.ts.map +1 -1
  8. package/dist/components/HierarchicalMenu.js +112 -4
  9. package/dist/components/Pagination.d.ts +47 -1
  10. package/dist/components/Pagination.d.ts.map +1 -1
  11. package/dist/components/Pagination.js +166 -28
  12. package/dist/components/RangeSlider.d.ts.map +1 -1
  13. package/dist/components/RangeSlider.js +49 -2
  14. package/dist/components/RichQuerySuggestions.d.ts +7 -0
  15. package/dist/components/RichQuerySuggestions.d.ts.map +1 -1
  16. package/dist/components/SearchBar.d.ts +16 -0
  17. package/dist/components/SearchBar.d.ts.map +1 -1
  18. package/dist/components/SearchBar.js +130 -16
  19. package/dist/components/SearchProvider.d.ts +8 -1
  20. package/dist/components/SearchProvider.d.ts.map +1 -1
  21. package/dist/components/SearchProvider.js +16 -4
  22. package/dist/components/SearchResults.d.ts +10 -0
  23. package/dist/components/SearchResults.d.ts.map +1 -1
  24. package/dist/components/SearchResults.js +9 -5
  25. package/dist/components/SortBy.d.ts +44 -4
  26. package/dist/components/SortBy.d.ts.map +1 -1
  27. package/dist/components/SortBy.js +154 -29
  28. package/dist/components/Stats.d.ts +14 -0
  29. package/dist/components/Stats.d.ts.map +1 -1
  30. package/dist/components/Stats.js +172 -23
  31. package/dist/components/suggestions/AmazonDropdown.d.ts.map +1 -1
  32. package/dist/components/suggestions/AmazonDropdown.js +2 -4
  33. package/dist/components/suggestions/GoogleDropdown.d.ts.map +1 -1
  34. package/dist/components/suggestions/GoogleDropdown.js +2 -6
  35. package/dist/components/suggestions/MinimalDropdown.d.ts.map +1 -1
  36. package/dist/components/suggestions/MinimalDropdown.js +2 -4
  37. package/dist/components/suggestions/MobileSheetDropdown.d.ts.map +1 -1
  38. package/dist/components/suggestions/MobileSheetDropdown.js +2 -4
  39. package/dist/components/suggestions/PinterestDropdown.d.ts.map +1 -1
  40. package/dist/components/suggestions/PinterestDropdown.js +2 -6
  41. package/dist/components/suggestions/ShopifyDropdown.d.ts.map +1 -1
  42. package/dist/components/suggestions/ShopifyDropdown.js +2 -4
  43. package/dist/components/suggestions/SpotlightDropdown.d.ts.map +1 -1
  44. package/dist/components/suggestions/SpotlightDropdown.js +2 -4
  45. package/dist/components/suggestions/utils.d.ts +10 -1
  46. package/dist/components/suggestions/utils.d.ts.map +1 -1
  47. package/dist/components/suggestions/utils.js +36 -0
  48. package/dist/components/suggestions-primitives/highlightMarkup.d.ts +16 -4
  49. package/dist/components/suggestions-primitives/highlightMarkup.d.ts.map +1 -1
  50. package/dist/components/suggestions-primitives/highlightMarkup.js +42 -4
  51. package/dist/hooks/useClickTracking.d.ts +36 -0
  52. package/dist/hooks/useClickTracking.d.ts.map +1 -0
  53. package/dist/hooks/useClickTracking.js +96 -0
  54. package/dist/hooks/useExperiment.d.ts +25 -0
  55. package/dist/hooks/useExperiment.d.ts.map +1 -0
  56. package/dist/hooks/useExperiment.js +146 -0
  57. package/dist/hooks/useKeyboardNavigation.d.ts +51 -0
  58. package/dist/hooks/useKeyboardNavigation.d.ts.map +1 -0
  59. package/dist/hooks/useKeyboardNavigation.js +113 -0
  60. package/dist/hooks/useQuerySuggestions.d.ts.map +1 -1
  61. package/dist/hooks/useQuerySuggestions.js +19 -3
  62. package/dist/hooks/useQuerySuggestionsEnhanced.d.ts.map +1 -1
  63. package/dist/hooks/useQuerySuggestionsEnhanced.js +23 -6
  64. package/dist/hooks/useSuggestionsAnalytics.d.ts.map +1 -1
  65. package/dist/hooks/useSuggestionsAnalytics.js +6 -1
  66. package/dist/index.d.ts +4 -1
  67. package/dist/index.d.ts.map +1 -1
  68. package/dist/index.umd.js +1 -1
  69. package/dist/src/index.d.ts +217 -16
  70. package/dist/src/index.esm.js +1586 -249
  71. package/dist/src/index.esm.js.map +1 -1
  72. package/dist/src/index.js +1585 -248
  73. package/dist/src/index.js.map +1 -1
  74. package/package.json +3 -3
@@ -13,6 +13,7 @@ export { Fingerprint, FingerprintComponents, FingerprintConfig, FingerprintResul
13
13
  * Interactive search input component with query suggestions support
14
14
  */
15
15
 
16
+ type SearchBarSize = 'small' | 'medium' | 'large';
16
17
  interface SearchBarTheme {
17
18
  container?: string;
18
19
  input?: string;
@@ -22,6 +23,9 @@ interface SearchBarTheme {
22
23
  suggestionItemHover?: string;
23
24
  suggestionItemActive?: string;
24
25
  loadingIndicator?: string;
26
+ searchIcon?: string;
27
+ clearButton?: string;
28
+ submitButton?: string;
25
29
  }
26
30
  interface SearchBarProps {
27
31
  placeholder?: string;
@@ -45,6 +49,18 @@ interface SearchBarProps {
45
49
  showLoadingState?: boolean;
46
50
  renderSuggestion?: (suggestion: string, index: number) => React__default.ReactNode;
47
51
  renderLoading?: () => React__default.ReactNode;
52
+ /** Custom render for the search icon. If not provided, a default magnifying glass SVG is rendered. */
53
+ renderSearchIcon?: () => React__default.ReactNode;
54
+ /** Whether to show a clear button when the query is non-empty (default: true) */
55
+ showClearButton?: boolean;
56
+ /** Custom render for the clear icon */
57
+ renderClearIcon?: () => React__default.ReactNode;
58
+ /** Whether to show a submit button to the right of the input (default: false) */
59
+ showSubmitButton?: boolean;
60
+ /** Custom render for the submit button */
61
+ renderSubmitButton?: () => React__default.ReactNode;
62
+ /** Size variant controlling padding and font size (default: 'medium') */
63
+ size?: SearchBarSize;
48
64
  }
49
65
  declare const SearchBar: React__default.FC<SearchBarProps>;
50
66
 
@@ -69,6 +85,10 @@ interface SearchResultsTheme {
69
85
  loadingState?: string;
70
86
  errorState?: string;
71
87
  pagination?: string;
88
+ /** Custom min-height class override */
89
+ minHeight?: string;
90
+ /** Custom min-width class override */
91
+ minWidth?: string;
72
92
  }
73
93
  interface SearchResultsProps {
74
94
  results?: SearchResponse | null;
@@ -96,13 +116,20 @@ interface SearchResultsProps {
96
116
  enableKeyboardNavigation?: boolean;
97
117
  /** Auto-focus the results container */
98
118
  autoFocus?: boolean;
119
+ /** Minimum height to prevent container collapse when empty (default: '400px') */
120
+ minHeight?: string;
121
+ /** Minimum width to prevent container shrinking (default: '100%') */
122
+ minWidth?: string;
123
+ /** Opacity applied to results while loading new results (default: 0.7, set to 1 to disable) */
124
+ loadingOpacity?: number;
99
125
  }
100
126
  declare const SearchResults: React__default.FC<SearchResultsProps>;
101
127
 
102
128
  /**
103
129
  * SearchProvider Component
104
130
  *
105
- * Provides Seekora client and context to child components
131
+ * Provides Seekora client and context to child components.
132
+ * Supports A/B testing via abTestId/abVariant props.
106
133
  */
107
134
 
108
135
  interface SearchContextValue {
@@ -119,6 +146,12 @@ interface SearchProviderProps {
119
146
  autoTrackSearch?: boolean;
120
147
  stateManager?: SearchStateManagerConfig;
121
148
  children: ReactNode;
149
+ /** A/B test experiment ID to include in all analytics events */
150
+ abTestId?: string;
151
+ /** A/B test variant to include in all analytics events */
152
+ abVariant?: string;
153
+ /** Auto-fetch experiment assignments on mount (default: false) */
154
+ experiments?: boolean;
122
155
  }
123
156
  declare const SearchProvider: React__default.FC<SearchProviderProps>;
124
157
  declare const useSearchContext: () => SearchContextValue;
@@ -127,6 +160,7 @@ declare const useSearchContext: () => SearchContextValue;
127
160
  * Stats Component
128
161
  *
129
162
  * Displays search statistics (total results, processing time, etc.)
163
+ * Supports inline, badge, and detailed display variants.
130
164
  */
131
165
 
132
166
  interface StatsTheme {
@@ -134,6 +168,13 @@ interface StatsTheme {
134
168
  text?: string;
135
169
  highlight?: string;
136
170
  separator?: string;
171
+ badge?: string;
172
+ badgeLabel?: string;
173
+ badgeValue?: string;
174
+ detailed?: string;
175
+ detailedRow?: string;
176
+ detailedLabel?: string;
177
+ detailedValue?: string;
137
178
  }
138
179
  interface StatsProps {
139
180
  /** Search results response */
@@ -156,13 +197,28 @@ interface StatsProps {
156
197
  showQuery?: boolean;
157
198
  /** Custom separator between stats */
158
199
  separator?: string;
200
+ /** Display variant */
201
+ variant?: 'inline' | 'badge' | 'detailed';
202
+ /** Show result count (default: true) */
203
+ showResultCount?: boolean;
204
+ /** Custom number formatter (default: toLocaleString) */
205
+ formatNumber?: (n: number) => string;
159
206
  }
160
207
  declare const Stats: React__default.FC<StatsProps>;
161
208
 
162
209
  /**
163
210
  * Pagination Component
164
211
  *
165
- * Displays pagination controls for search results
212
+ * Displays pagination controls for search results.
213
+ * Supports three display variants: numbered, load-more, and simple.
214
+ *
215
+ * CSS Variables (applied to the container element):
216
+ * --seekora-pagination-bg
217
+ * --seekora-pagination-color
218
+ * --seekora-pagination-active-bg
219
+ * --seekora-pagination-active-color
220
+ * --seekora-pagination-border
221
+ * --seekora-pagination-radius
166
222
  */
167
223
 
168
224
  interface PaginationTheme {
@@ -173,6 +229,18 @@ interface PaginationTheme {
173
229
  itemDisabled?: string;
174
230
  link?: string;
175
231
  ellipsis?: string;
232
+ /** Class for the Load More button */
233
+ loadMoreButton?: string;
234
+ /** Class for the Load More descriptive text (e.g. "X remaining") */
235
+ loadMoreText?: string;
236
+ /** Class for the simple variant outer container */
237
+ simpleContainer?: string;
238
+ /** Class for the "Page X of Y" text in the simple variant */
239
+ simpleText?: string;
240
+ /** Class for Previous/Next buttons in the simple variant */
241
+ simpleButton?: string;
242
+ /** Class for the "Page X of Y" info text (usable in any variant) */
243
+ pageInfo?: string;
176
244
  }
177
245
  interface PaginationProps {
178
246
  /** Search results response */
@@ -199,24 +267,81 @@ interface PaginationProps {
199
267
  style?: React__default.CSSProperties;
200
268
  /** Custom theme */
201
269
  theme?: PaginationTheme;
270
+ /**
271
+ * Display variant.
272
+ * - 'numbered' (default): numbered page buttons with prev/next
273
+ * - 'load-more': single "Load More" button
274
+ * - 'simple': Previous / Next buttons with "Page X of Y" text
275
+ */
276
+ variant?: 'numbered' | 'load-more' | 'simple';
277
+ /** Label for the Load More button (default: "Load More") */
278
+ loadMoreText?: string;
279
+ /**
280
+ * Button / text sizing.
281
+ * - 'small': compact
282
+ * - 'medium' (default): standard
283
+ * - 'large': spacious
284
+ */
285
+ size?: 'small' | 'medium' | 'large';
286
+ /**
287
+ * Show "Page X of Y" text.
288
+ * Defaults to false for numbered, true for simple.
289
+ */
290
+ showPageInfo?: boolean;
291
+ /** Label for the Previous button (default: "Previous") */
292
+ previousLabel?: string;
293
+ /** Label for the Next button (default: "Next") */
294
+ nextLabel?: string;
202
295
  }
203
296
  declare const Pagination: React__default.FC<PaginationProps>;
204
297
 
205
298
  /**
206
299
  * SortBy Component
207
300
  *
208
- * Displays sort options for search results
209
- * Integrates with SearchStateManager for automatic state sync
301
+ * Displays sort options for search results in multiple display variants:
302
+ * - dropdown (default) native select element
303
+ * - button-group — horizontal row of toggle buttons
304
+ * - radio-group — vertical list of radio inputs
305
+ *
306
+ * Integrates with SearchStateManager for automatic state sync.
307
+ *
308
+ * CSS Variables (apply on a parent element to customize):
309
+ * --seekora-sort-bg — background color
310
+ * --seekora-sort-color — text color
311
+ * --seekora-sort-border — border color
312
+ * --seekora-sort-active-bg — active item background
313
+ * --seekora-sort-active-color — active item text color
210
314
  */
211
315
 
212
316
  interface SortOption {
213
317
  value: string;
214
318
  label: string;
215
319
  }
320
+ type SortByVariant = 'dropdown' | 'button-group' | 'radio-group';
321
+ type SortBySize = 'small' | 'medium' | 'large';
216
322
  interface SortByTheme {
323
+ /** Root container */
217
324
  container?: string;
325
+ /** Dropdown select element */
218
326
  select?: string;
327
+ /** Dropdown option element */
219
328
  option?: string;
329
+ /** Optional label above the control */
330
+ label?: string;
331
+ /** Button group wrapper */
332
+ buttonGroup?: string;
333
+ /** Individual button in the group */
334
+ buttonGroupItem?: string;
335
+ /** Active button in the group */
336
+ buttonGroupItemActive?: string;
337
+ /** Radio group wrapper */
338
+ radioGroup?: string;
339
+ /** Individual radio row (input + label) */
340
+ radioItem?: string;
341
+ /** Active radio row */
342
+ radioItemActive?: string;
343
+ /** Radio label text */
344
+ radioLabel?: string;
220
345
  }
221
346
  interface SortByProps {
222
347
  /** Available sort options */
@@ -227,7 +352,7 @@ interface SortByProps {
227
352
  defaultValue?: string;
228
353
  /** Callback when sort changes */
229
354
  onSortChange?: (value: string) => void;
230
- /** Custom render function for select */
355
+ /** Custom render function for select (only used in dropdown variant) */
231
356
  renderSelect?: (props: {
232
357
  value: string;
233
358
  onChange: (e: React__default.ChangeEvent<HTMLSelectElement>) => void;
@@ -239,17 +364,26 @@ interface SortByProps {
239
364
  style?: React__default.CSSProperties;
240
365
  /** Custom theme */
241
366
  theme?: SortByTheme;
242
- /** Placeholder text */
367
+ /** Placeholder text (dropdown variant) */
243
368
  placeholder?: string;
244
369
  /** Whether to sync with SearchStateManager (default: true) */
245
370
  syncWithState?: boolean;
371
+ /** Display variant (default: 'dropdown') */
372
+ variant?: SortByVariant;
373
+ /** Optional label text displayed above the control */
374
+ label?: string;
375
+ /** Whether to show the label (default: true when label is provided) */
376
+ showLabel?: boolean;
377
+ /** Size variant affecting padding and font size (default: 'medium') */
378
+ size?: SortBySize;
246
379
  }
247
380
  declare const SortBy: React__default.FC<SortByProps>;
248
381
 
249
382
  /**
250
383
  * Facets Component
251
384
  *
252
- * Displays facet filters for search results
385
+ * Displays facet filters for search results with multiple display variants,
386
+ * client-side search, count badges, and color swatch support.
253
387
  */
254
388
 
255
389
  interface FacetItem {
@@ -273,7 +407,23 @@ interface FacetsTheme {
273
407
  facetItemCount?: string;
274
408
  facetItemLabel?: string;
275
409
  checkbox?: string;
276
- }
410
+ /** Color swatch circle/square */
411
+ colorSwatch?: string;
412
+ /** Color swatch when selected */
413
+ colorSwatchSelected?: string;
414
+ /** Inner element of color swatch (for checkmark overlay) */
415
+ colorSwatchInner?: string;
416
+ /** Search input within a facet group */
417
+ searchInput?: string;
418
+ /** Collapsible header row */
419
+ collapsibleHeader?: string;
420
+ /** Chevron/expand icon in collapsible header */
421
+ collapsibleIcon?: string;
422
+ /** Count badge pill */
423
+ countBadge?: string;
424
+ }
425
+ type FacetVariant = 'checkbox' | 'color-swatch' | 'collapsible';
426
+ type FacetSize = 'small' | 'medium' | 'large';
277
427
  interface FacetsProps {
278
428
  /** Search results response */
279
429
  results?: SearchResponse | null;
@@ -295,13 +445,26 @@ interface FacetsProps {
295
445
  style?: React__default.CSSProperties;
296
446
  /** Custom theme */
297
447
  theme?: FacetsTheme;
448
+ /** Display variant: checkbox (default), color-swatch, or collapsible */
449
+ variant?: FacetVariant;
450
+ /** When true, show a search input at the top of each facet group */
451
+ searchable?: boolean;
452
+ /** Show count badges (default: true) */
453
+ showCounts?: boolean;
454
+ /** Maps facet values to CSS colors (used by color-swatch variant) */
455
+ colorMap?: Record<string, string>;
456
+ /** For collapsible variant, whether facets start collapsed (default: false) */
457
+ defaultCollapsed?: boolean;
458
+ /** Size preset: small, medium (default), or large */
459
+ size?: FacetSize;
298
460
  }
299
461
  declare const Facets: React__default.FC<FacetsProps>;
300
462
 
301
463
  /**
302
464
  * CurrentRefinements Component
303
465
  *
304
- * Displays currently active filters/refinements with ability to clear them
466
+ * Displays currently active filters/refinements with ability to clear them.
467
+ * Supports StateManager auto-sync, display variants, layout modes, and animations.
305
468
  */
306
469
 
307
470
  interface Refinement {
@@ -318,9 +481,20 @@ interface CurrentRefinementsTheme {
318
481
  value?: string;
319
482
  clearButton?: string;
320
483
  clearAllButton?: string;
321
- }
484
+ /** Variant-specific class slots */
485
+ chip?: string;
486
+ tag?: string;
487
+ pill?: string;
488
+ badge?: string;
489
+ group?: string;
490
+ groupLabel?: string;
491
+ }
492
+ /** Display variant for refinement items */
493
+ type RefinementVariant = 'chips' | 'tags' | 'pills' | 'badges' | 'text-list';
494
+ /** Layout variant for the container */
495
+ type RefinementLayout = 'horizontal' | 'vertical' | 'grouped';
322
496
  interface CurrentRefinementsProps {
323
- /** Current refinements */
497
+ /** Current refinements (if not provided, auto-reads from StateManager) */
324
498
  refinements?: Refinement[];
325
499
  /** Callback when a refinement is cleared */
326
500
  onRefinementClear?: (field: string, value: string) => void;
@@ -330,6 +504,14 @@ interface CurrentRefinementsProps {
330
504
  renderRefinement?: (refinement: Refinement, index: number) => React__default.ReactNode;
331
505
  /** Show "Clear all" button */
332
506
  showClearAll?: boolean;
507
+ /** Display variant (default: 'chips') */
508
+ variant?: RefinementVariant;
509
+ /** Layout mode (default: 'horizontal') */
510
+ layout?: RefinementLayout;
511
+ /** Per-field color mapping */
512
+ fieldColors?: Record<string, string>;
513
+ /** Custom close icon renderer */
514
+ renderCloseIcon?: () => React__default.ReactNode;
333
515
  /** Custom className */
334
516
  className?: string;
335
517
  /** Custom styles */
@@ -1132,6 +1314,13 @@ interface RichQuerySuggestionsProps extends QuerySuggestionsEventHandlers {
1132
1314
  ariaLabel?: string;
1133
1315
  /** Analytics tags */
1134
1316
  analyticsTags?: string[];
1317
+ /** Highlight options for query suggestions (passed to highlight rendering) */
1318
+ highlightOptions?: {
1319
+ highlightColor?: string;
1320
+ highlightTextColor?: string;
1321
+ highlightFontWeight?: string | number;
1322
+ highlightStyle?: 'background' | 'underline' | 'bold' | 'color-only';
1323
+ };
1135
1324
  }
1136
1325
  interface RichQuerySuggestionsRef {
1137
1326
  getActiveIndex: () => number;
@@ -1582,19 +1771,31 @@ declare function DropdownPanel({ children, position, top, left, right, width, ma
1582
1771
 
1583
1772
  /**
1584
1773
  * Parses suggestion text containing <mark>...</mark> and returns React nodes
1585
- * with the marked segments rendered as <mark> elements. Safe: inner content
1774
+ * with the marked segments rendered as styled elements. Safe: inner content
1586
1775
  * is rendered as text, not HTML.
1587
1776
  */
1588
1777
 
1778
+ /** Visual highlight styles */
1779
+ type HighlightStyle = 'background' | 'underline' | 'bold' | 'color-only';
1589
1780
  interface HighlightMarkupOptions {
1590
- /** Class name for the <mark> element. */
1781
+ /** Class name for the highlight element. */
1591
1782
  markClassName?: string;
1592
- /** Inline style for the <mark> element. */
1783
+ /** Inline style for the highlight element (merged with computed styles). */
1593
1784
  markStyle?: React__default.CSSProperties;
1785
+ /** Override background color for highlighted segments */
1786
+ highlightColor?: string;
1787
+ /** Text color for highlighted segments */
1788
+ highlightTextColor?: string;
1789
+ /** Font weight for highlighted segments */
1790
+ highlightFontWeight?: string | number;
1791
+ /** Visual highlight style (default: 'background') */
1792
+ highlightStyle?: HighlightStyle;
1793
+ /** Which HTML element to render for highlights (default: 'mark') */
1794
+ highlightTag?: keyof JSX.IntrinsicElements;
1594
1795
  }
1595
1796
  /**
1596
1797
  * Converts a string like "lined <mark>blue</mark>" into React nodes with
1597
- * the marked part rendered as a <mark> element. When no <mark> tags are
1798
+ * the marked part rendered as a styled element. When no <mark> tags are
1598
1799
  * present, returns the string as-is.
1599
1800
  */
1600
1801
  declare function parseHighlightMarkup(text: string, options?: HighlightMarkupOptions): React__default.ReactNode;
@@ -4118,4 +4319,4 @@ declare function updateSuggestionsStyles(theme: SuggestionsThemeVariables): void
4118
4319
  declare const createTheme: (config: ThemeConfig) => _seekora_ai_ui_sdk_types.Theme;
4119
4320
 
4120
4321
  export { ActionButtons, AmazonDropdown, AnalyticsProvider, BadgeList, Breadcrumb, CategoriesTabs, ClearRefinements, CurrentRefinements, DocSearch, DocSearchButton, DropdownPanel, Facets, FederatedDropdown, FrequentlyBoughtTogether, GoogleDropdown, HierarchicalMenu, Highlight, HitsPerPage, ImageDisplay, ImageZoom, InfiniteHits, ItemCard, ItemGrid, MinimalDropdown, MobileFilters, MobileFiltersButton, MobileSheetDropdown, Pagination, PinterestDropdown, PriceDisplay, ProductCard, ProductGallery, ProductGrid, ProductInfo, ProductRecommendations, QuerySuggestions, QuerySuggestionsDropdown, RangeInput, RangeSlider, RatingDisplay, RecentSearchesList, RecentlyViewed, RelatedProducts, RichQuerySuggestions, SearchBar, SearchBarWithSuggestions, SearchInput, SearchLayout, SearchProvider, SearchResults, SectionError, SectionItemGrid, SectionLoading, SectionSearchProvider, ShopifyDropdown, Snippet, SortBy, SpotlightDropdown, Stats, SuggestionDropdownVariants, SuggestionItem$1 as SuggestionItem, SuggestionList, SuggestionSearchBar, SuggestionsCache, SuggestionsDropdownComposition, SuggestionsError, SuggestionsLoading, SuggestionsProvider, TrendingItems, TrendingList, VariantSelector, VariantSwatches, addRecentSearch, addToRecentlyViewed, brandPresets, breakpoints, clearRecentSearches, clearSuggestionsCache, createSuggestionsCache, createSuggestionsTheme, createTheme, darkTheme, darkThemeVariables, defaultTheme, extractBadges, extractBrand, extractCategory, extractProduct, extractSuggestion, findVariantBySelections, formatParsedFilters, formatPriceRange, formatPrice as formatSuggestionPrice, generateSuggestionsStylesheet, getAvailableValuesForOption, getPriceRange, getRecentSearches, getShortcutText, getSuggestionsCache, highlightText, injectGlobalResponsiveStyles, injectSuggestionsStyles, lightThemeVariables, mediaQueries, minimalTheme, minimalThemeVariables, parseHighlightMarkup, removeRecentSearch, touchTargets, updateSuggestionsStyles, useAnalytics, useAnalyticsProvider, useDocSearch, useSeekoraSearch$1 as useDocSearchSeekoraSearch, useInjectResponsiveStyles, useKeyboard, useNaturalLanguageFilters, useProductAnalytics, useQuerySuggestions, useQuerySuggestionsEnhanced, useResponsive, useSearchContext, useSearchState, useSectionSearchContext, useSeekoraSearch, useSmartSuggestions, useSuggestionsAnalytics, useSuggestionsContext, useVariantSelection, withAnalytics };
4121
- export type { ActionButton, ActionButtonType, ActionButtonsProps, AnalyticsConfig, AnalyticsEventPayload, AnalyticsProviderProps, BadgeListProps, BaseDropdownProps, BrandFieldMapping, BreadcrumbItem, BreadcrumbProps, BreadcrumbTheme, CategoriesTabsProps, CategoryFieldMapping, ClearRefinementsProps, ClearRefinementsTheme, DocSearchAction, DocSearchButtonProps, DocSearchHit, DocSearchProps, DocSearchResponse, DocSearchState, DocSearchSuggestion, DocSearchSuggestionsResponse, DocSearchTranslations, DropdownClassNames, DropdownEventHandlers, DropdownPanelProps, DropdownRef, DropdownThemeConfig, FederatedDropdownProps, FederatedDropdownRef, FrequentlyBoughtTogetherProps, GenericItem, HierarchicalMenuItem, HierarchicalMenuProps, HierarchicalMenuTheme, HighlightMarkupOptions, HighlightProps, HighlightTheme, HitsPerPageItem, HitsPerPageProps, HitsPerPageTheme, ImageDisplayProps, ImageDisplayVariant, ImageZoomMode, ImageZoomProps, InfiniteHitsProps, InfiniteHitsTheme, ImageDisplayVariant$1 as ItemCardImageVariant, ItemCardProps, ItemGridProps, MobileFiltersButtonProps, MobileFiltersProps, MobileFiltersTheme, NaturalLanguageFiltersOptions, NaturalLanguageResult, NavigableItem, ParsedFilter, PriceDisplayProps, ProductCardImageVariant, ProductCardProps, ProductClickEventData, ProductDisplayConfig, ProductFieldMapping, ProductGalleryProps, ProductGridProps, ProductInfoProps, ProductRecommendationsProps, QuerySuggestionsDropdownProps, QuerySuggestionsDropdownRef, QuerySuggestionsProps, QuerySuggestionsTheme, RangeSliderProps, RangeSliderTheme, RatingDisplayProps, RatingSize, RatingVariant, RecentSearchesListProps, RecentlyViewedProps, RecommendationItem, RecommendationTheme, RefinementInput, RelatedProductsProps, ResponsiveState, RichQuerySuggestionsProps, RichQuerySuggestionsRef, SearchBarProps, SearchBarTheme, SearchBarWithSuggestionsProps, SearchBarWithSuggestionsRef, SearchInputProps, SearchProviderProps, SearchResultsProps, SearchResultsTheme, SearchSource, SectionConfig, SectionErrorProps, SectionItemGridProps, SectionLoadingProps, SectionSearchContextValue, SectionSearchProviderProps, SmartSuggestion, SmartSuggestionsOptions, SnippetProps, SnippetTheme, SuggestionClickEventData, SuggestionDisplayConfig, SuggestionDropdownVariant, SuggestionFieldMapping, SuggestionImpressionEventData, SuggestionItemProps, SuggestionListProps, SuggestionSearchBarProps, SuggestionSearchBarRef, SuggestionsContextValue, SuggestionsDropdownCompositionProps, SuggestionsErrorProps, SuggestionsLoadingProps, SuggestionsProviderProps, SuggestionsThemeVariables, TrendingItemsProps, TrendingListProps, UseAnalyticsOptions, UseAnalyticsReturn, UseSeekoraSearchOptions$1 as UseDocSearchSeekoraSearchOptions, UseSeekoraSearchResult as UseDocSearchSeekoraSearchResult, UseProductAnalyticsOptions, UseProductAnalyticsReturn, UseQuerySuggestionsEnhancedOptions, UseQuerySuggestionsEnhancedReturn, UseSmartSuggestionsReturn, UseSuggestionsAnalyticsOptions, UseSuggestionsAnalyticsReturn, UseVariantSelectionOptions, UseVariantSelectionReturn, VariantSelectorProps, VariantSwatchesProps, WithAnalyticsConfig, WithAnalyticsInjectedProps };
4322
+ export type { ActionButton, ActionButtonType, ActionButtonsProps, AnalyticsConfig, AnalyticsEventPayload, AnalyticsProviderProps, BadgeListProps, BaseDropdownProps, BrandFieldMapping, BreadcrumbItem, BreadcrumbProps, BreadcrumbTheme, CategoriesTabsProps, CategoryFieldMapping, ClearRefinementsProps, ClearRefinementsTheme, DocSearchAction, DocSearchButtonProps, DocSearchHit, DocSearchProps, DocSearchResponse, DocSearchState, DocSearchSuggestion, DocSearchSuggestionsResponse, DocSearchTranslations, DropdownClassNames, DropdownEventHandlers, DropdownPanelProps, DropdownRef, DropdownThemeConfig, Facet, FacetItem, FacetSize, FacetVariant, FacetsProps, FacetsTheme, FederatedDropdownProps, FederatedDropdownRef, FrequentlyBoughtTogetherProps, GenericItem, HierarchicalMenuItem, HierarchicalMenuProps, HierarchicalMenuTheme, HighlightMarkupOptions, HighlightProps, HighlightTheme, HitsPerPageItem, HitsPerPageProps, HitsPerPageTheme, ImageDisplayProps, ImageDisplayVariant, ImageZoomMode, ImageZoomProps, InfiniteHitsProps, InfiniteHitsTheme, ImageDisplayVariant$1 as ItemCardImageVariant, ItemCardProps, ItemGridProps, MobileFiltersButtonProps, MobileFiltersProps, MobileFiltersTheme, NaturalLanguageFiltersOptions, NaturalLanguageResult, NavigableItem, PaginationProps, PaginationTheme, ParsedFilter, PriceDisplayProps, ProductCardImageVariant, ProductCardProps, ProductClickEventData, ProductDisplayConfig, ProductFieldMapping, ProductGalleryProps, ProductGridProps, ProductInfoProps, ProductRecommendationsProps, QuerySuggestionsDropdownProps, QuerySuggestionsDropdownRef, QuerySuggestionsProps, QuerySuggestionsTheme, RangeSliderProps, RangeSliderTheme, RatingDisplayProps, RatingSize, RatingVariant, RecentSearchesListProps, RecentlyViewedProps, RecommendationItem, RecommendationTheme, RefinementInput, RelatedProductsProps, ResponsiveState, RichQuerySuggestionsProps, RichQuerySuggestionsRef, SearchBarProps, SearchBarSize, SearchBarTheme, SearchBarWithSuggestionsProps, SearchBarWithSuggestionsRef, SearchInputProps, SearchProviderProps, SearchResultsProps, SearchResultsTheme, SearchSource, SectionConfig, SectionErrorProps, SectionItemGridProps, SectionLoadingProps, SectionSearchContextValue, SectionSearchProviderProps, SmartSuggestion, SmartSuggestionsOptions, SnippetProps, SnippetTheme, SortByProps, SortBySize, SortByTheme, SortByVariant, SortOption, SuggestionClickEventData, SuggestionDisplayConfig, SuggestionDropdownVariant, SuggestionFieldMapping, SuggestionImpressionEventData, SuggestionItemProps, SuggestionListProps, SuggestionSearchBarProps, SuggestionSearchBarRef, SuggestionsContextValue, SuggestionsDropdownCompositionProps, SuggestionsErrorProps, SuggestionsLoadingProps, SuggestionsProviderProps, SuggestionsThemeVariables, TrendingItemsProps, TrendingListProps, UseAnalyticsOptions, UseAnalyticsReturn, UseSeekoraSearchOptions$1 as UseDocSearchSeekoraSearchOptions, UseSeekoraSearchResult as UseDocSearchSeekoraSearchResult, UseProductAnalyticsOptions, UseProductAnalyticsReturn, UseQuerySuggestionsEnhancedOptions, UseQuerySuggestionsEnhancedReturn, UseSmartSuggestionsReturn, UseSuggestionsAnalyticsOptions, UseSuggestionsAnalyticsReturn, UseVariantSelectionOptions, UseVariantSelectionReturn, VariantSelectorProps, VariantSwatchesProps, WithAnalyticsConfig, WithAnalyticsInjectedProps };