@linzjs/lui 21.53.2 → 21.53.3

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/lui.esm.js CHANGED
@@ -42481,8 +42481,7 @@ var ControlledPassiveSearchInputComponent = function (props) {
42481
42481
  function handleKeyDown(event) {
42482
42482
  switch (event.key) {
42483
42483
  case 'Enter':
42484
- if (inputValidationResult &&
42485
- inputValidationResult.stopProgress === true)
42484
+ if (typedValue === '' || (inputValidationResult === null || inputValidationResult === void 0 ? void 0 : inputValidationResult.stopProgress) === true)
42486
42485
  return;
42487
42486
  props.onSearch(typedValue);
42488
42487
  }