goji-search 2.0.3 → 2.0.5

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.
@@ -5,6 +5,7 @@ interface InspirationMenuProps {
5
5
  onClose: () => void;
6
6
  suggestedLabel?: string;
7
7
  languageSelector?: ReactNode;
8
+ color?: string;
8
9
  }
9
- export declare function InspirationMenu({ questions, onQuestionClick, onClose, suggestedLabel, languageSelector }: InspirationMenuProps): import("react/jsx-runtime").JSX.Element;
10
+ export declare function InspirationMenu({ questions, onQuestionClick, onClose, suggestedLabel, languageSelector, color }: InspirationMenuProps): import("react/jsx-runtime").JSX.Element;
10
11
  export {};
@@ -14,6 +14,7 @@ interface SearchInputProps {
14
14
  sparkleRef: React.RefObject<HTMLDivElement>;
15
15
  suggestedLabel?: string;
16
16
  languageSelector?: ReactNode;
17
+ color?: string;
17
18
  }
18
- export declare function SearchInput({ value, onChange, onFocus, onBlur, placeholder, size, setSize, inputRef, inspirationQuestions, onInspirationClick, sparkleRef, suggestedLabel, languageSelector, }: SearchInputProps): import("react/jsx-runtime").JSX.Element;
19
+ export declare function SearchInput({ value, onChange, onFocus, onBlur, placeholder, size, setSize, inputRef, inspirationQuestions, onInspirationClick, sparkleRef, suggestedLabel, languageSelector, color }: SearchInputProps): import("react/jsx-runtime").JSX.Element;
19
20
  export {};