globalfy-design-system 1.42.0 → 1.43.0

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
  import { DropdownListProps } from './DropdownProps';
2
2
 
3
- export declare const DropdownAsyncList: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, isSearchable, customOption, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, isClearable, onClear, customClassNames, cacheOptions, defaultOptions, loadOptions, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
3
+ export declare const DropdownAsyncList: ({ label, value, defaultValue, placeholder, isInvalid, isTransparent, className, disabled, onChange, noOptionsMessage, errorMessage, isSearchable, onInputChange, customOption, inputValue, isValid, customPlaceholder, customControl, customDropdownIndicator, customValueContainer, isClearable, onClear, customClassNames, cacheOptions, defaultOptions, loadOptions, ...props }: DropdownListProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,5 +1,5 @@
1
1
  import { ReactNode } from 'react';
2
- import { ClearIndicatorProps, ControlProps, DropdownIndicatorProps, OptionProps, PlaceholderProps } from 'react-select';
2
+ import { ClearIndicatorProps, ControlProps, DropdownIndicatorProps, InputProps, OptionProps, PlaceholderProps } from 'react-select';
3
3
  import { OptionType } from './DropdownProps';
4
4
 
5
5
  export declare const DropDownIndicator: (props: DropdownIndicatorProps) => import("react/jsx-runtime").JSX.Element;
@@ -19,4 +19,5 @@ interface ClearIndicatorComponentProps extends ClearIndicatorProps {
19
19
  }
20
20
  export declare const ClearIndicator: ({ onClear, innerProps }: ClearIndicatorComponentProps) => import("react/jsx-runtime").JSX.Element;
21
21
  export declare const LoadingIndicator: () => import("react/jsx-runtime").JSX.Element;
22
+ export declare const Input: ({ children, ...inputProps }: InputProps) => import("react/jsx-runtime").JSX.Element;
22
23
  export {};
@@ -28,6 +28,7 @@ export type DropdownListProps = {
28
28
  onCreateOption?: (inputValue: string) => void;
29
29
  isLoading?: boolean;
30
30
  isClearable?: boolean;
31
+ inputValue?: string;
31
32
  onClear?: () => void;
32
33
  customClassNames?: {
33
34
  menuList?: string;