@jsenv/navi 0.27.71 → 0.27.72

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.
@@ -19661,7 +19661,7 @@ const MIN_LENGTH_CONSTRAINT = {
19661
19661
  }
19662
19662
  const valueAsString =
19663
19663
  field.uiState === undefined ? "" : String(field.uiState);
19664
- if (!valueAsString) {
19664
+ if (!valueAsString && !field.controlHostProps.required) {
19665
19665
  return null;
19666
19666
  }
19667
19667
  const valueLength = valueAsString.length;