@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
|
@@ -2079,7 +2079,7 @@ function DatePicker({
|
|
|
2079
2079
|
$isStretch: stretch,
|
|
2080
2080
|
children: /*#__PURE__*/jsxRuntime.jsx(DatePickerInputPart, { ...sharedPartProps,
|
|
2081
2081
|
partName: "year",
|
|
2082
|
-
value: currentValue
|
|
2082
|
+
value: currentValue ? currentValue.getFullYear() : undefined,
|
|
2083
2083
|
placeholder: placeholder?.year
|
|
2084
2084
|
})
|
|
2085
2085
|
})]
|
|
@@ -2211,6 +2211,7 @@ function InputEmail(props) {
|
|
|
2211
2211
|
autoCompleteType: "email",
|
|
2212
2212
|
keyboardType: "email-address",
|
|
2213
2213
|
textContentType: "emailAddress",
|
|
2214
|
+
autoCapitalize: "none",
|
|
2214
2215
|
...props
|
|
2215
2216
|
});
|
|
2216
2217
|
}
|