Skip to content
This repository was archived by the owner on Dec 23, 2022. It is now read-only.

Commit e71d812

Browse files
authored
Merge pull request #138 from rsolomon/v19
Support MUI@0.19.x, which removes react-tap support
2 parents 7f364ad + dcca47a commit e71d812

File tree

6 files changed

+934
-41
lines changed

6 files changed

+934
-41
lines changed

.storybook/config.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@ function loadStories() {
44
require('../stories');
55
}
66

7-
const injectTapEventPlugin = require("react-tap-event-plugin");
8-
injectTapEventPlugin();
9-
107
configure(loadStories, module);

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ import ChipInput from 'material-ui-chip-input'
5050
| newChipKeyCodes | `number[]` | `[13]` (enter key) | The key codes used to determine when to create a new chip. |
5151
| onBlur | `function` | | Callback function that is called with `event` when the input loses focus, where `event.target.value` is the current value of the text input. |
5252
| onChange | `function` | | Callback function that is called when the chips change (in uncontrolled mode). |
53+
| onClick | `function` | | Callback function that is called when text input is clicked. |
5354
| onRequestAdd | `function` | | Callback function that is called when a new chip was added (in controlled mode). |
5455
| onRequestDelete | `function` | | Callback function that is called when a new chip was removed (in controlled mode). |
55-
| onTouchTap | `function` | | Callback function that is called when text input is clicked. |
5656
| onUpdateInput | `function` | | Callback function that is called when the input changes (useful for auto complete). |
5757
| openOnFocus | `bool` | `false` | Opens the auto complete list on focus if set to true. |
5858
| style | `object` | | Override the inline-styles of the root element. |

0 commit comments

Comments
 (0)