dfh-ui-library 1.12.727 → 1.12.729

Sign up to get free protection for your applications and to get access to all the features.
@@ -341,17 +341,18 @@ 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";
348
348
  label?: string | undefined;
349
+ labelClasses?: string | undefined;
349
350
  defaultText?: string | undefined;
350
351
  error?: string;
351
352
  wrapperClass?: string | undefined;
352
353
  additionalClasses?: string | undefined;
353
354
  onMultiSelect: (selectedValues: {
354
- value: string[];
355
+ value: IMultiSelectOption[];
355
356
  }) => void;
356
357
  }
357
358
  export interface OptionProps {