@ornikar/kitt-universal 4.5.1 → 4.5.2

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.
@@ -2320,7 +2320,7 @@ function DatePicker(_ref4) {
2320
2320
  $isStretch: stretch,
2321
2321
  children: /*#__PURE__*/jsx(DatePickerInputPart, _objectSpread$d(_objectSpread$d({}, sharedPartProps), {}, {
2322
2322
  partName: "year",
2323
- value: currentValue === null || currentValue === void 0 ? void 0 : currentValue.getFullYear(),
2323
+ value: currentValue ? currentValue.getFullYear() : undefined,
2324
2324
  placeholder: placeholder === null || placeholder === void 0 ? void 0 : placeholder.year
2325
2325
  }))
2326
2326
  })]
@@ -2438,7 +2438,8 @@ function InputEmail(props) {
2438
2438
  return /*#__PURE__*/jsx(InputText, _objectSpread$b({
2439
2439
  autoCompleteType: "email",
2440
2440
  keyboardType: "email-address",
2441
- textContentType: "emailAddress"
2441
+ textContentType: "emailAddress",
2442
+ autoCapitalize: "none"
2442
2443
  }, props));
2443
2444
  }
2444
2445