2.7.0 • Published 5 years ago
cpr-select v2.7.0
cpr-select 
Canopy React Select
Requirements
- React ^0.14.2
- Lodash methods findIndex
Installation
- Install through
npm install --save cpr-select
- Load the required stylesheet
src/select.css
- Optional - if you want some default styling use the stylesheet:
build/external-styles.css
Usage
Props
selected
: the key of the currently selected itemoptions
: the items to select from. You can insert a separator between items by putting{separator: true}
as an item. You can also prevent the user from selecting an item by includingdisabled: true
in your item object.onChange
: called when selected item changesonBlur
: called when the select widget is blurred (with the currently selected item)disabled
: pass true to disable the inputplaceholder
: placeholder for inputselectClass
: (optional) custom class to be added to the select elementouterClass
: (optional) custom class to be added to the outer containing elementinputClass
: (optional) custom class to be added to the hidden input elementdropdownClass
: (optional) custom class to be added to the dropdown elementzIndex
: (optional) override the default z-index of 1000
Basic
import CanopySelect from 'cpr-select';
import 'cpr-select/src/select.css';
let items = [
{
"value": "Alabama",
"key": "AL"
}, {
"separator": true,
}, {
"value": "Alaska",
"key": "AK"
}, {
"value": "American Samoa",
"key": "AS",
"disabled": true
}
];
function itemsChanged(key, item, index) {
console.log(key);
}
<CanopySelect options={items} onChange={itemsChanged} placeholder="Select a country" selected="AK"></CanopySelect>
Demo
2.7.0
5 years ago
2.6.1
6 years ago
2.6.0
6 years ago
2.5.6
6 years ago
2.5.5
7 years ago
2.5.3
7 years ago
2.5.4
7 years ago
2.5.1
7 years ago
2.5.0
7 years ago
2.4.1
7 years ago
2.4.0
7 years ago
2.3.1
8 years ago
2.3.0
8 years ago
2.2.4
8 years ago
2.2.3
8 years ago
2.2.2
8 years ago
2.2.1
8 years ago
2.2.0
8 years ago
2.1.1
8 years ago
2.1.0
8 years ago
2.0.1
8 years ago
2.0.0
9 years ago
2.0.0-alpha.1
9 years ago
1.4.3
9 years ago
1.4.2
9 years ago
1.4.1
9 years ago
1.4.0
9 years ago
1.3.1
9 years ago
1.3.0
9 years ago
1.2.4
9 years ago
1.2.3
9 years ago
1.2.2
9 years ago
1.2.1
9 years ago
1.2.0
9 years ago
1.1.6
10 years ago
1.1.5
10 years ago
1.1.4
10 years ago
1.1.3
10 years ago
1.1.1
10 years ago
1.1.0
10 years ago
1.0.6
10 years ago
1.0.5
10 years ago
1.0.4
10 years ago
1.0.3
10 years ago
1.0.2
10 years ago
1.0.1
10 years ago
1.0.0
10 years ago