@ssa-ui-kit/core 2.23.1 → 2.23.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.
@@ -1,3 +1,3 @@
1
1
  export declare const DrawerContent: import("react").ForwardRefExoticComponent<{
2
2
  children: React.ReactNode;
3
- } & import("react").RefAttributes<HTMLDivElement>>;
3
+ } & import("react").HTMLAttributes<HTMLDivElement> & import("react").RefAttributes<HTMLDivElement>>;
@@ -8,4 +8,4 @@ import { TypeaheadProps } from './types';
8
8
  * Aria attributes are set according to
9
9
  * https://www.w3.org/WAI/ARIA/apg/patterns/combobox/examples/combobox-select-only/
10
10
  **/
11
- export declare const Typeahead: ({ name, label, selectedItems, defaultSelectedItems, isOpen, isDisabled, isMultiple, children, className, startIcon, endIcon, error, success, helperText, validationSchema, placeholder, startIconClassName, endIconClassName, optionsClassName, wrapperClassName, width, onChange, onEmptyChange, onClearAll, onRemoveSelectedClick, renderOption, }: TypeaheadProps) => import("@emotion/react/jsx-runtime").JSX.Element;
11
+ export declare const Typeahead: ({ name, label, selectedItems, defaultSelectedItems, isOpen, isDisabled, isMultiple, children, className, startIcon, endIcon, error, success, helperText, validationSchema, placeholder, startIconClassName, endIconClassName, optionsClassName, wrapperClassName, filterOptions, width, onChange, onEmptyChange, onClearAll, onRemoveSelectedClick, renderOption, }: TypeaheadProps) => import("@emotion/react/jsx-runtime").JSX.Element;
package/dist/index.js CHANGED
@@ -19359,6 +19359,7 @@ const Typeahead = ({
19359
19359
  endIconClassName,
19360
19360
  optionsClassName,
19361
19361
  wrapperClassName,
19362
+ filterOptions,
19362
19363
  width = 300,
19363
19364
  onChange,
19364
19365
  onEmptyChange,
@@ -19384,6 +19385,7 @@ const Typeahead = ({
19384
19385
  success,
19385
19386
  validationSchema,
19386
19387
  placeholder,
19388
+ filterOptions,
19387
19389
  onChange,
19388
19390
  onEmptyChange,
19389
19391
  renderOption,