@reportportal/ui-kit 0.0.1-alpha.176 → 0.0.1-alpha.178

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.
@@ -7,4 +7,6 @@ export declare const AutocompleteMenu: <T>(props: {
7
7
  minLength?: number | null | undefined;
8
8
  inputValue?: string | undefined;
9
9
  className?: string | undefined;
10
+ optionsLimit?: number | undefined;
11
+ limitationText?: string | undefined;
10
12
  } & AutocompleteOptionsProps<T> & import('react').RefAttributes<HTMLUListElement>) => import('react').ReactElement<any, string | import('react').JSXElementConstructor<any>> | null;
@@ -15,5 +15,7 @@ export interface AutocompleteOptionsProps<T> {
15
15
  customNoMatchesMessage?: string;
16
16
  getUniqKey?: (item: T) => string;
17
17
  newItemButtonText: string;
18
+ limitationText?: string;
19
+ optionsLimit?: number;
18
20
  }
19
21
  export declare const AutocompleteOptions: <T>(props: AutocompleteOptionsProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -49,5 +49,7 @@ export interface MultipleAutocompleteProps<T> {
49
49
  selectedItemSingleLine?: boolean;
50
50
  selectedItemClassName?: string;
51
51
  selectedItemTextClassName?: string;
52
+ optionsLimit?: number;
53
+ limitationText?: string;
52
54
  }
53
55
  export declare const MultipleAutocomplete: <T>(componentsProps: MultipleAutocompleteProps<T>) => import("react/jsx-runtime").JSX.Element;
@@ -38,5 +38,7 @@ export interface SingleAutocompleteProps<T> {
38
38
  customEmptyListMessage?: string;
39
39
  customNoMatchesMessage?: string;
40
40
  newItemButtonText?: string;
41
+ optionsLimit?: number;
42
+ limitationText?: string;
41
43
  }
42
44
  export declare const SingleAutocomplete: <T>(componentProps: SingleAutocompleteProps<T>) => import("react/jsx-runtime").JSX.Element;