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 +3 -4
- package/package.json +1 -1
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
|
-
|
|
18105
|
-
|
|
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(
|
|
18109
|
+
handleValChange && handleValChange(val); // Reset focus index and dropdown array
|
|
18111
18110
|
|
|
18112
18111
|
setFocusIndex(-1);
|
|
18113
18112
|
setDropdownArr(options); // Clear the timeout
|