@galaxy-ds/core 1.1.82 → 1.1.83

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.
@@ -1,4 +1,4 @@
1
- import React from 'react';
1
+ /// <reference types="react" />
2
2
  import { CustomAutocompleteProps } from './Autocomplete.types';
3
- declare const Autocomplete: React.FC<CustomAutocompleteProps<any, false, false, false>>;
3
+ declare const Autocomplete: ({ label, placeholder, platform, actionLabel, actionClick, bottomButtonHeight, textFieldReadOnly, onChange, ...rest }: CustomAutocompleteProps) => JSX.Element;
4
4
  export default Autocomplete;
@@ -1,5 +1,5 @@
1
1
  import { AutocompleteProps } from '@material-ui/lab';
2
- export interface CustomAutocompleteProps<T, Multiple, DisableClearable, FreeSolo> extends AutocompleteProps<any, false, false, false> {
2
+ export interface CustomAutocompleteProps extends Omit<AutocompleteProps<any, true, true, boolean>, "renderInput"> {
3
3
  /**
4
4
  * Custom action label to prepend at the bottom of the option list.
5
5
  */