@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.
- package/dist/definitions/forms/InputEmail/InputEmail.d.ts +1 -1
- package/dist/definitions/forms/InputEmail/InputEmail.d.ts.map +1 -1
- package/dist/index-browser-all.es.android.js +3 -2
- package/dist/index-browser-all.es.android.js.map +1 -1
- package/dist/index-browser-all.es.ios.js +3 -2
- package/dist/index-browser-all.es.ios.js.map +1 -1
- package/dist/index-browser-all.es.js +3 -2
- package/dist/index-browser-all.es.js.map +1 -1
- package/dist/index-browser-all.es.web.js +3 -2
- package/dist/index-browser-all.es.web.js.map +1 -1
- package/dist/index-node-14.17.cjs.js +2 -1
- package/dist/index-node-14.17.cjs.js.map +1 -1
- package/dist/index-node-14.17.cjs.web.js +2 -1
- package/dist/index-node-14.17.cjs.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -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
|
|
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
|
|