Gathering detailed insights and metrics for @types/react-virtualized-select
Gathering detailed insights and metrics for @types/react-virtualized-select
Gathering detailed insights and metrics for @types/react-virtualized-select
Gathering detailed insights and metrics for @types/react-virtualized-select
The repository for high quality TypeScript type definitions.
npm install @types/react-virtualized-select
Typescript
Module System
72.2
Supply Chain
80.6
Quality
75.9
Maintenance
100
Vulnerability
100
License
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
1,817,516
Last Day
90
Last Week
2,403
Last Month
14,402
Last Year
177,130
NOASSERTION License
49,992 Stars
89,688 Commits
30,437 Forks
641 Watchers
6 Branches
9,957 Contributors
Updated on Jul 03, 2025
Latest Version
3.0.17
Package Id
@types/react-virtualized-select@3.0.17
Unpacked Size
5.65 kB
Size
2.00 kB
File Count
5
Published on
Dec 05, 2023
Cumulative downloads
Total Downloads
Last Day
26.8%
90
Compared to previous day
Last Week
-21.3%
2,403
Compared to previous week
Last Month
-5.3%
14,402
Compared to previous month
Last Year
-13.7%
177,130
Compared to previous year
npm install --save @types/react-virtualized-select
This package contains type definitions for react-virtualized-select (https://github.com/bvaughn/react-virtualized-select).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-virtualized-select.
1import * as React from "react"; 2import { 3 LoadOptionsHandler, 4 OptionValues, 5 ReactAsyncSelectProps, 6 ReactCreatableSelectProps, 7 ReactSelectProps, 8} from "react-select"; 9import { ListProps } from "react-virtualized"; 10 11export interface VirtualizedOptionRenderOptions<T> { 12 focusedOption: T; 13 focusedOptionIndex: number; 14 focusOption(option: T): void; 15 key: string; 16 labelKey: keyof T; 17 listProps: ListProps; 18 option: T; 19 options: T[]; 20 selectValue(option: T): void; 21 style: Record<string, string>; 22 valueArray: T[]; 23} 24 25export interface AdditionalVirtualizedSelectProps<TValue> { 26 maxHeight?: number | undefined; 27 optionHeight?: number | ((options: { option: TValue }) => number) | undefined; 28 optionRenderer?(options: VirtualizedOptionRenderOptions<TValue>): React.JSX.Element; 29 selectComponent?: React.ComponentClass<any> | React.FunctionComponent<any> | undefined; 30} 31 32type VirtualizedSelectProps<TValue = OptionValues> = 33 | (ReactCreatableSelectProps<TValue> & ReactAsyncSelectProps<TValue> & AdditionalVirtualizedSelectProps<TValue> & { 34 async: true; 35 }) 36 | ReactCreatableSelectProps<TValue> & ReactSelectProps<TValue> & AdditionalVirtualizedSelectProps<TValue>; 37 38declare class VirtualizedSelect<TValue = OptionValues> extends React.PureComponent<VirtualizedSelectProps<TValue>> {} 39export default VirtualizedSelect; 40
These definitions were written by Sean Kelley.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
no dangerous workflow patterns detected
Reason
security policy file detected
Details
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 25/29 approved changesets -- score normalized to 8
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-06-30
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More