react-addsearch-ui 0.1.2 → 0.2.2

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,6 +6,7 @@ declare interface AddSearchUiIntegrationProps {
6
6
  readonly publicSiteKey: string;
7
7
  readonly primaryColor?: string;
8
8
  readonly customFont?: string;
9
+ readonly searchFieldMaxWidthInPixels?: number;
9
10
  readonly searchFieldHeaderText?: string;
10
11
  readonly searchButtonText?: string;
11
12
  readonly searchInputPlaceholderText?: string;
@@ -14,6 +15,8 @@ declare interface AddSearchUiIntegrationProps {
14
15
  readonly minLengthToShowSearchAsYouTypeResults?: number;
15
16
  readonly hasSearchInputFieldIcon?: boolean;
16
17
  readonly hasAutocomplete?: boolean;
18
+ readonly hasAiAnswers?: boolean;
19
+ readonly hasAiAnswersHideToggle?: boolean;
17
20
  readonly loadMoreResults?: 'button' | 'pagination';
18
21
  readonly sortByOptions?: SortByOption[];
19
22
  readonly filters?: Filter[];