dfh-ui-library 1.12.700 → 1.12.702

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