Gathering detailed insights and metrics for @appgeist/react-select-material-ui
Gathering detailed insights and metrics for @appgeist/react-select-material-ui
Gathering detailed insights and metrics for @appgeist/react-select-material-ui
Gathering detailed insights and metrics for @appgeist/react-select-material-ui
An outlined Material-UI input component based on react-select, inspired by the Autocomplete section in Material-UI docs
npm install @appgeist/react-select-material-ui
Typescript
Module System
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
ISC License
14 Stars
33 Commits
4 Forks
9 Branches
1 Contributors
Updated on Dec 01, 2023
Latest Version
1.4.3
Package Id
@appgeist/react-select-material-ui@1.4.3
Unpacked Size
70.44 kB
Size
15.29 kB
File Count
34
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
5
An outlined Material-UI input component based on react-select, inspired by the Autocomplete section in Material-UI docs.
Supports react-select/async and react-select/creatable.
1import React, { Fragment, useState } from "react"; 2import Select from "@appgeist/react-select-material-ui"; 3 4const KINGDOMS = [ 5 { value: "AS", label: "Astur" }, 6 { value: "FA", label: "Fargos" }, 7 { value: "LE", label: "Laeden" }, 8 { value: "TH", label: "Therras" }, 9 { value: "VE", label: "Vessar" } 10]; 11 12export default () => { 13 const [kingdom, setKingdom] = useState(null); 14 15 return ( 16 <Fragment> 17 <h1>Fictional places:</h1> 18 <Select 19 id="place" 20 label="Kingdom" 21 placeholder="Select a kingdom" 22 options={KINGDOMS} 23 value={kingdom} 24 onChange={setKingdom} 25 isClearable 26 helperText="Where would you like to live?" 27 /> 28 </Fragment> 29 ); 30};
{ isAsync: true }
prop a will generate an async select;{ isCreatable: true }
prop a will generate a creatable select;isAsync
and isCreatable
can be combined.You can augment the layout and functionality by providing custom react-select components in a components
property like so:
1const Option = props => { 2 // custom Option implementation 3}; 4 5const ClearIndicator = props => { 6 // custom ClearIndicator implementation 7}; 8 9return ( 10 <Select 11 id="place" 12 label="Kingdom" 13 placeholder="Select a kingdom" 14 options={KINGDOMS} 15 value={kingdom} 16 onChange={setKingdom} 17 isClearable 18 helperText="Where would you like to live?" 19 components={{ 20 Option, 21 ClearIndicator 22 }} 23 /> 24);
The ISC License.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 0/26 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
31 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-14
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