@ornikar/kitt-universal 7.0.3 → 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/typography/Typography.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 +2 -1
- 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
|
@@ -237,8 +237,9 @@ function TypographyText(props) {
|
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
function TypographyParagraph(props) {
|
|
240
|
+
// role 'paragraph' does not exist in native, it's a web feature only.
|
|
240
241
|
return /*#__PURE__*/jsxRuntime.jsx(Typography, {
|
|
241
|
-
accessibilityRole:
|
|
242
|
+
accessibilityRole: reactNative.Platform.OS === 'web' ? 'paragraph' : null,
|
|
242
243
|
...props
|
|
243
244
|
});
|
|
244
245
|
}
|