dfh-ui-library 1.12.727 → 1.12.729

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.
@@ -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 {