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

@react-types/searchfield

Package Overview
Dependencies
Maintainers
0
Versions
915
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@react-types/searchfield - npm Package Compare versions

Comparing version

to
3.0.0-nightly-b4695c8fd-250306

9

package.json
{
"name": "@react-types/searchfield",
"version": "3.0.0-nightly-b3a4d6c11-241119",
"version": "3.0.0-nightly-b4695c8fd-250306",
"description": "Spectrum UI components in React",

@@ -12,4 +12,4 @@ "license": "Apache-2.0",

"dependencies": {
"@react-types/shared": "^3.0.0-nightly-b3a4d6c11-241119",
"@react-types/textfield": "^3.0.0-nightly-b3a4d6c11-241119"
"@react-types/shared": "3.0.0-nightly-b4695c8fd-250306",
"@react-types/textfield": "3.0.0-nightly-b4695c8fd-250306"
},

@@ -21,4 +21,3 @@ "peerDependencies": {

"access": "public"
},
"stableVersion": "3.5.9"
}
}

@@ -24,3 +24,8 @@ /*

export interface AriaSearchFieldProps extends SearchFieldProps, AriaTextFieldProps {}
export interface AriaSearchFieldProps extends SearchFieldProps, AriaTextFieldProps {
/**
* An enumerated attribute that defines what action label or icon to preset for the enter key on virtual keyboards. See [https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/enterkeyhint].
*/
enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'
}
export interface SpectrumSearchFieldProps extends SpectrumTextInputBase, Omit<AriaSearchFieldProps, 'isInvalid' | 'validationState'>, SpectrumTextFieldProps {}