dfh-ui-library 1.12.728 → 1.12.729

Sign up to get free protection for your applications and to get access to all the features.
@@ -341,7 +341,7 @@ export interface IMultiSelectProps {
341
341
  selectType?: selectType;
342
342
  options?: IMultiSelectOption[];
343
343
  selected?: {
344
- value: string[];
344
+ value: IMultiSelectOption[];
345
345
  };
346
346
  name: string;
347
347
  labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum" | "formLabel";
@@ -352,7 +352,7 @@ export interface IMultiSelectProps {
352
352
  wrapperClass?: string | undefined;
353
353
  additionalClasses?: string | undefined;
354
354
  onMultiSelect: (selectedValues: {
355
- value: string[];
355
+ value: IMultiSelectOption[];
356
356
  }) => void;
357
357
  }
358
358
  export interface OptionProps {