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;
package/dist/index.d.ts CHANGED
@@ -318,7 +318,7 @@ interface IMultiSelectOption {
318
318
  interface IMultiSelectProps {
319
319
  selectType?: selectType;
320
320
  options?: IMultiSelectOption[];
321
- value?: string[];
321
+ selected?: string[];
322
322
  name: string;
323
323
  labelType?: "default" | "black" | "smallSelect" | "blackSmall" | "formLabelMedeum";
324
324
  label?: string | undefined;
@@ -327,8 +327,7 @@ interface IMultiSelectProps {
327
327
  error?: string;
328
328
  wrapperClass?: string | undefined;
329
329
  additionalClasses?: string | undefined;
330
- secondaryText?: string;
331
- onSelectedValuesChange: (selectedValues: string[]) => void;
330
+ onChange: (selectedValues: string[]) => void;
332
331
  }
333
332
  interface OptionProps {
334
333
  displayText: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.12.681",
3
+ "version": "1.12.683",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",