Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@react-aria/overlays

Package Overview
Dependencies
Maintainers
2
Versions
872
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-aria/overlays - npm Package Compare versions

Comparing version 3.0.0-nightly.948 to 3.0.0-nightly.953

5

dist/main.js

@@ -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 @@

18

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc