@ornikar/kitt-universal 7.0.1 → 7.0.4
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/TimePicker/useTimePicker.d.ts +2 -0
- package/dist/definitions/TimePicker/useTimePicker.d.ts.map +1 -1
- package/dist/definitions/typography/Typography.d.ts.map +1 -1
- package/dist/index-browser-all.es.android.js +11 -7
- package/dist/index-browser-all.es.android.js.map +1 -1
- package/dist/index-browser-all.es.ios.js +11 -7
- package/dist/index-browser-all.es.ios.js.map +1 -1
- package/dist/index-browser-all.es.js +11 -7
- 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 +6 -6
- package/dist/index-node-14.17.cjs.js.map +1 -1
- package/dist/index-node-14.17.cjs.web.js +3 -2
- package/dist/index-node-14.17.cjs.web.js.map +1 -1
- package/dist/tsbuildinfo +1 -1
- package/package.json +2 -2
|
@@ -230,8 +230,9 @@ function TypographyText(props) {
|
|
|
230
230
|
}
|
|
231
231
|
|
|
232
232
|
function TypographyParagraph(props) {
|
|
233
|
+
// role 'paragraph' does not exist in native, it's a web feature only.
|
|
233
234
|
return /*#__PURE__*/jsxRuntime.jsx(Typography, {
|
|
234
|
-
accessibilityRole:
|
|
235
|
+
accessibilityRole: 'paragraph',
|
|
235
236
|
...props
|
|
236
237
|
});
|
|
237
238
|
}
|
|
@@ -321,7 +322,7 @@ function AvatarContent({
|
|
|
321
322
|
|
|
322
323
|
if (firstname && lastname) {
|
|
323
324
|
return /*#__PURE__*/jsxRuntime.jsx(Typography.Text, {
|
|
324
|
-
base: sizeVariant === 'large' ? 'body-large' : 'body',
|
|
325
|
+
base: sizeVariant === 'large' ? 'body-large' : 'body-small',
|
|
325
326
|
variant: sizeVariant === 'large' ? 'bold' : 'regular',
|
|
326
327
|
color: isLight ? 'black' : 'white',
|
|
327
328
|
children: getInitials(firstname, lastname)
|