@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
|
@@ -2257,7 +2257,7 @@ function DatePicker({
|
|
|
2257
2257
|
$isStretch: stretch,
|
|
2258
2258
|
children: /*#__PURE__*/jsxRuntime.jsx(DatePickerInputPart, { ...sharedPartProps,
|
|
2259
2259
|
partName: "year",
|
|
2260
|
-
value: currentValue
|
|
2260
|
+
value: currentValue ? currentValue.getFullYear() : undefined,
|
|
2261
2261
|
placeholder: placeholder?.year
|
|
2262
2262
|
})
|
|
2263
2263
|
})]
|
|
@@ -2361,6 +2361,7 @@ function InputEmail(props) {
|
|
|
2361
2361
|
autoCompleteType: "email",
|
|
2362
2362
|
keyboardType: "email-address",
|
|
2363
2363
|
textContentType: "emailAddress",
|
|
2364
|
+
autoCapitalize: "none",
|
|
2364
2365
|
...props
|
|
2365
2366
|
});
|
|
2366
2367
|
}
|