dfh-ui-library 1.12.681 → 1.12.683

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