@visns-studio/visns-components 2.4.3 → 2.4.4

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.
@@ -464,7 +464,11 @@ const Field = ({
464
464
  inputValue === null ? '' : inputValue
465
465
  }
466
466
  options={settings.options}
467
- dataOptions={dataOptions}
467
+ multi={
468
+ settings.multiple
469
+ ? settings.multiple
470
+ : false
471
+ }
468
472
  />
469
473
  );
470
474
  break;
@@ -478,7 +482,11 @@ const Field = ({
478
482
  inputValue === null ? '' : inputValue
479
483
  }
480
484
  options={options}
481
- dataOptions={dataOptions}
485
+ multi={
486
+ settings.multiple
487
+ ? settings.multiple
488
+ : false
489
+ }
482
490
  />
483
491
  );
484
492
  break;
package/package.json CHANGED
@@ -42,7 +42,7 @@
42
42
  "react-dom": "^17.0.1"
43
43
  },
44
44
  "name": "@visns-studio/visns-components",
45
- "version": "2.4.3",
45
+ "version": "2.4.4",
46
46
  "description": "Various packages to assist in the development of our Custom Applications.",
47
47
  "main": "index.js",
48
48
  "scripts": {