@react-aria/overlays
Advanced tools
Comparing version 3.0.0-nightly.948 to 3.0.0-nightly.953
@@ -1174,2 +1174,7 @@ var { | ||
return NodeFilter.FILTER_REJECT; | ||
} // VoiceOver on iOS has issues hiding elements with role="row". Hide the cells inside instead. | ||
if (node instanceof HTMLElement && node.getAttribute('role') === 'row') { | ||
return NodeFilter.FILTER_SKIP; | ||
} // Skip this node but continue to children if one of the targets is inside the node. | ||
@@ -1176,0 +1181,0 @@ |
@@ -1108,2 +1108,7 @@ import { VisuallyHidden } from "@react-aria/visually-hidden"; | ||
return NodeFilter.FILTER_REJECT; | ||
} // VoiceOver on iOS has issues hiding elements with role="row". Hide the cells inside instead. | ||
if (node instanceof HTMLElement && node.getAttribute('role') === 'row') { | ||
return NodeFilter.FILTER_SKIP; | ||
} // Skip this node but continue to children if one of the targets is inside the node. | ||
@@ -1110,0 +1115,0 @@ |
{ | ||
"name": "@react-aria/overlays", | ||
"version": "3.0.0-nightly.948+df2f596b", | ||
"version": "3.0.0-nightly.953+efbc96af", | ||
"description": "Spectrum UI components in React", | ||
@@ -21,9 +21,9 @@ "license": "Apache-2.0", | ||
"@babel/runtime": "^7.6.2", | ||
"@react-aria/i18n": "3.0.0-nightly.948+df2f596b", | ||
"@react-aria/interactions": "3.0.0-nightly.948+df2f596b", | ||
"@react-aria/utils": "3.0.0-nightly.948+df2f596b", | ||
"@react-aria/visually-hidden": "3.0.0-nightly.948+df2f596b", | ||
"@react-stately/overlays": "3.1.2-nightly.2626+df2f596b", | ||
"@react-types/button": "3.3.2-nightly.2626+df2f596b", | ||
"@react-types/overlays": "3.4.1-nightly.2626+df2f596b", | ||
"@react-aria/i18n": "3.0.0-nightly.953+efbc96af", | ||
"@react-aria/interactions": "3.0.0-nightly.953+efbc96af", | ||
"@react-aria/utils": "3.0.0-nightly.953+efbc96af", | ||
"@react-aria/visually-hidden": "3.0.0-nightly.953+efbc96af", | ||
"@react-stately/overlays": "3.1.2-nightly.2631+efbc96af", | ||
"@react-types/button": "3.3.2-nightly.2631+efbc96af", | ||
"@react-types/overlays": "3.4.1-nightly.2631+efbc96af", | ||
"dom-helpers": "^3.3.1" | ||
@@ -38,3 +38,3 @@ }, | ||
}, | ||
"gitHead": "df2f596bd62ba33c88e76f7093411d6a77b36a7f" | ||
"gitHead": "efbc96af731b0820a50731049fabc17d20536edd" | ||
} |
@@ -47,2 +47,7 @@ /* | ||
// VoiceOver on iOS has issues hiding elements with role="row". Hide the cells inside instead. | ||
if (node instanceof HTMLElement && node.getAttribute('role') === 'row') { | ||
return NodeFilter.FILTER_SKIP; | ||
} | ||
// Skip this node but continue to children if one of the targets is inside the node. | ||
@@ -49,0 +54,0 @@ if (targets.some(target => node.contains(target))) { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
355105
3576