@ukpc-lib/react 0.11.1-dev.0 → 0.11.1-dev.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.
@@ -5,11 +5,13 @@ export type IBreadCrumbs = {
5
5
  title: string;
6
6
  href?: string;
7
7
  onClick?: MouseEventHandler;
8
+ highlight?: boolean;
8
9
  };
9
10
  type Props = {
10
11
  data: IBreadCrumbs[];
11
12
  isLoading?: boolean;
12
13
  ssr?: boolean;
14
+ serviceName?: string;
13
15
  };
14
16
  export declare function BaseBreadcrumbs(props: Props): import("react/jsx-runtime").JSX.Element;
15
17
  export {};
@@ -13,6 +13,7 @@ export interface SearchAutocompleteProps<T> {
13
13
  onSelect?: (result: T) => void;
14
14
  onFocus?: FocusEventHandler<HTMLInputElement>;
15
15
  onClear?: Function;
16
+ searchOnFocus?: boolean;
16
17
  showIcon?: boolean;
17
18
  showClear?: boolean;
18
19
  maxResults?: number;
@@ -29,4 +30,4 @@ export interface SearchAutocompleteProps<T> {
29
30
  className?: string;
30
31
  baseUrl?: string;
31
32
  }
32
- export default function SearchAutocomplete<T>({ items, fuseOptions, inputDebounce, onSearch, onHover, onSelect, onFocus, onClear, showIcon, showClear, maxResults, placeholder, autoFocus, styling, resultStringKeyName, inputSearchString, formatResult, showNoResults, showNoResultsText, showItemsOnFocus, maxLength, baseUrl, }: SearchAutocompleteProps<T>): import("react/jsx-runtime").JSX.Element;
33
+ export default function SearchAutocomplete<T>({ items, fuseOptions, inputDebounce, onSearch, onHover, onSelect, onFocus, onClear, searchOnFocus, showIcon, showClear, maxResults, placeholder, autoFocus, styling, resultStringKeyName, inputSearchString, formatResult, showNoResults, showNoResultsText, showItemsOnFocus, maxLength, baseUrl, }: SearchAutocompleteProps<T>): import("react/jsx-runtime").JSX.Element;