@useloops/design-system 1.4.110 → 1.4.112

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.
package/dist/index.d.ts CHANGED
@@ -520,7 +520,7 @@ type SelectOption = {
520
520
  };
521
521
 
522
522
  type SelectOnChange = (event: SelectChangeEvent<any>, child: React.ReactNode) => void;
523
- type AutocompleteOnChange = (value: string[]) => void;
523
+ type AutocompleteOnChange = (value: string | string[]) => void;
524
524
  type SelectProps = {
525
525
  selections: SelectOption[];
526
526
  autoComplete?: boolean;
@@ -533,6 +533,7 @@ type SelectProps = {
533
533
  inputRef?: SelectProps$1['inputRef'];
534
534
  internalChange?: () => void;
535
535
  MenuProps?: SelectProps$1['MenuProps'];
536
+ multi?: boolean;
536
537
  name: string;
537
538
  onBlur?: SelectProps$1['onBlur'];
538
539
  onChange?: SelectOnChange | AutocompleteOnChange;