dfh-ui-library 1.12.681 → 1.12.683

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