@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
|
@@ -2191,7 +2191,7 @@ function DatePicker(_ref4) {
|
|
|
2191
2191
|
$isStretch: stretch,
|
|
2192
2192
|
children: /*#__PURE__*/jsx(DatePickerInputPart, _objectSpread$c(_objectSpread$c({}, sharedPartProps), {}, {
|
|
2193
2193
|
partName: "year",
|
|
2194
|
-
value: currentValue
|
|
2194
|
+
value: currentValue ? currentValue.getFullYear() : undefined,
|
|
2195
2195
|
placeholder: placeholder === null || placeholder === void 0 ? void 0 : placeholder.year
|
|
2196
2196
|
}))
|
|
2197
2197
|
})]
|
|
@@ -2338,7 +2338,8 @@ function InputEmail(props) {
|
|
|
2338
2338
|
return /*#__PURE__*/jsx(InputText, _objectSpread$a({
|
|
2339
2339
|
autoCompleteType: "email",
|
|
2340
2340
|
keyboardType: "email-address",
|
|
2341
|
-
textContentType: "emailAddress"
|
|
2341
|
+
textContentType: "emailAddress",
|
|
2342
|
+
autoCapitalize: "none"
|
|
2342
2343
|
}, props));
|
|
2343
2344
|
}
|
|
2344
2345
|
|