├── .editorconfig ├── .gitignore ├── .npmrc ├── .travis.yml ├── HISTORY.md ├── README.md ├── assets ├── index.less └── popup.less ├── examples ├── multi-picker.html ├── multi-picker.native.tsx ├── multi-picker.tsx ├── picker.html ├── picker.native.tsx ├── picker.tsx ├── popup.html ├── popup.native.tsx └── popup.tsx ├── index.android.js ├── index.ios.js ├── package.json ├── src ├── MultiPicker.native.tsx ├── MultiPicker.tsx ├── MultiPickerMixin.tsx ├── MultiPickerProps.tsx ├── NativePicker.android.tsx ├── NativePicker.ios.tsx ├── NativePicker.tsx ├── Picker.native.tsx ├── Picker.tsx ├── PickerMixin.tsx ├── PickerTypes.tsx ├── Popup.native.tsx ├── Popup.tsx ├── PopupMixin.tsx ├── PopupPickerTypes.tsx ├── PopupStyles.tsx ├── index.native.tsx └── index.tsx ├── tests ├── __snapshots__ │ └── basic.test.tsx.snap ├── basic.test.tsx └── setup.js ├── tsconfig.json └── tslint.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/.travis.yml -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/HISTORY.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/README.md -------------------------------------------------------------------------------- /assets/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/assets/index.less -------------------------------------------------------------------------------- /assets/popup.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/assets/popup.less -------------------------------------------------------------------------------- /examples/multi-picker.html: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /examples/multi-picker.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/examples/multi-picker.native.tsx -------------------------------------------------------------------------------- /examples/multi-picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/examples/multi-picker.tsx -------------------------------------------------------------------------------- /examples/picker.html: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /examples/picker.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/examples/picker.native.tsx -------------------------------------------------------------------------------- /examples/picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/examples/picker.tsx -------------------------------------------------------------------------------- /examples/popup.html: -------------------------------------------------------------------------------- 1 | placeholder -------------------------------------------------------------------------------- /examples/popup.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/examples/popup.native.tsx -------------------------------------------------------------------------------- /examples/popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/examples/popup.tsx -------------------------------------------------------------------------------- /index.android.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./index.ios'); 2 | -------------------------------------------------------------------------------- /index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/index.ios.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/package.json -------------------------------------------------------------------------------- /src/MultiPicker.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/MultiPicker.native.tsx -------------------------------------------------------------------------------- /src/MultiPicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/MultiPicker.tsx -------------------------------------------------------------------------------- /src/MultiPickerMixin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/MultiPickerMixin.tsx -------------------------------------------------------------------------------- /src/MultiPickerProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/MultiPickerProps.tsx -------------------------------------------------------------------------------- /src/NativePicker.android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/NativePicker.android.tsx -------------------------------------------------------------------------------- /src/NativePicker.ios.tsx: -------------------------------------------------------------------------------- 1 | export { Picker as default } from 'react-native'; 2 | -------------------------------------------------------------------------------- /src/NativePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/NativePicker.tsx -------------------------------------------------------------------------------- /src/Picker.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/Picker.native.tsx -------------------------------------------------------------------------------- /src/Picker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/Picker.tsx -------------------------------------------------------------------------------- /src/PickerMixin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/PickerMixin.tsx -------------------------------------------------------------------------------- /src/PickerTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/PickerTypes.tsx -------------------------------------------------------------------------------- /src/Popup.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/Popup.native.tsx -------------------------------------------------------------------------------- /src/Popup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/Popup.tsx -------------------------------------------------------------------------------- /src/PopupMixin.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/PopupMixin.tsx -------------------------------------------------------------------------------- /src/PopupPickerTypes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/PopupPickerTypes.tsx -------------------------------------------------------------------------------- /src/PopupStyles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/PopupStyles.tsx -------------------------------------------------------------------------------- /src/index.native.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/index.native.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tests/__snapshots__/basic.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/tests/__snapshots__/basic.test.tsx.snap -------------------------------------------------------------------------------- /tests/basic.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/tests/basic.test.tsx -------------------------------------------------------------------------------- /tests/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/tests/setup.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-component/m-picker/HEAD/tslint.json --------------------------------------------------------------------------------