hplx-react-elements-dev 1.0.87 → 1.0.88

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.
package/dist/esm/index.js CHANGED
@@ -18101,13 +18101,12 @@ var InputTag = function InputTag(_a) {
18101
18101
  } // Add the selected item to the input value and update the displayed value
18102
18102
 
18103
18103
 
18104
- setValue(function (prev) {
18105
- return prev.trim() + ", " + selectedItem.value;
18106
- }); // Call onDropdownClick function if it is defined
18104
+ var val = value.trim() + ", " + selectedItem.value;
18105
+ setValue(val); // Call onDropdownClick function if it is defined
18107
18106
 
18108
18107
  onDropdownClick && onDropdownClick(selectedItem); // Call handleValChange function if it is defined
18109
18108
 
18110
- handleValChange && handleValChange(value); // Reset focus index and dropdown array
18109
+ handleValChange && handleValChange(val); // Reset focus index and dropdown array
18111
18110
 
18112
18111
  setFocusIndex(-1);
18113
18112
  setDropdownArr(options); // Clear the timeout
package/package.json CHANGED
@@ -9,7 +9,7 @@
9
9
  "frontend",
10
10
  "healthplix"
11
11
  ],
12
- "version": "1.0.87",
12
+ "version": "1.0.88",
13
13
  "main": "dist/esm/index.js",
14
14
  "module": "dist/esm/index.js",
15
15
  "types": "dist/esm/index.d.ts",