New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@react-stately/select

Package Overview
Dependencies
Maintainers
2
Versions
890
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-stately/select - npm Package Compare versions

Comparing version 3.0.0-nightly-694fc853e-241109 to 3.0.0-nightly-6cd19f019-250220

17

package.json
{
"name": "@react-stately/select",
"version": "3.0.0-nightly-694fc853e-241109",
"version": "3.0.0-nightly-6cd19f019-250220",
"description": "Spectrum UI components in React",

@@ -25,16 +25,15 @@ "license": "Apache-2.0",

"dependencies": {
"@react-stately/form": "^3.0.0-nightly-694fc853e-241109",
"@react-stately/list": "^3.0.0-nightly-694fc853e-241109",
"@react-stately/overlays": "^3.0.0-nightly-694fc853e-241109",
"@react-types/select": "^3.0.0-nightly-694fc853e-241109",
"@react-types/shared": "^3.0.0-nightly-694fc853e-241109",
"@react-stately/form": "3.0.0-nightly-6cd19f019-250220",
"@react-stately/list": "3.0.0-nightly-6cd19f019-250220",
"@react-stately/overlays": "3.0.0-nightly-6cd19f019-250220",
"@react-types/select": "3.0.0-nightly-6cd19f019-250220",
"@react-types/shared": "3.0.0-nightly-6cd19f019-250220",
"@swc/helpers": "^0.5.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0"
"react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0 || ^19.0.0-rc.1"
},
"publishConfig": {
"access": "public"
},
"stableVersion": "3.6.8"
}
}

@@ -46,3 +46,3 @@ /*

let triggerState = useOverlayTriggerState(props);
let [focusStrategy, setFocusStrategy] = useState<FocusStrategy>(null);
let [focusStrategy, setFocusStrategy] = useState<FocusStrategy | null>(null);
let listState = useSingleSelectListState({

@@ -72,3 +72,3 @@ ...props,

focusStrategy,
open(focusStrategy: FocusStrategy = null) {
open(focusStrategy: FocusStrategy | null = null) {
// Don't open if the collection is empty.

@@ -80,3 +80,3 @@ if (listState.collection.size !== 0) {

},
toggle(focusStrategy: FocusStrategy = null) {
toggle(focusStrategy: FocusStrategy | null = null) {
if (listState.collection.size !== 0) {

@@ -83,0 +83,0 @@ setFocusStrategy(focusStrategy);

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