You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(modal): add backdrop and keyboard options (#135)
Closes#134
Add backdrop prop to modal with the following options
- `true` show backdrop, close on click (default)
- `false` hide backdrop
- `"static"` show backdrop, do not close on click
Add keyboard prop to modal with the following options
- `true` close on escape (default)
- `false` do not close on escape
Add tests and docs
// callback for toggling isOpen in the controlling component
40
-
size: PropTypes.string
43
+
size: PropTypes.string,
44
+
// control backdrop, see http://v4-alpha.getbootstrap.com/components/modal/#options
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
0 commit comments