dfh-ui-library 1.12.728 → 1.12.730

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.
@@ -335,13 +335,13 @@ export interface DropdownMultiselectProps {
335
335
  export interface IMultiSelectOption {
336
336
  value: string;
337
337
  displayName: string;
338
- selected?: boolean;
338
+ isSelected?: boolean;
339
339
  }
340
340
  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 {