diff --git a/.eslintrc b/.eslintrc
index e17a0bf..1f6d407 100644
--- a/.eslintrc
+++ b/.eslintrc
@@ -19,6 +19,7 @@
// Turn off https://github.com/yannickcr/eslint-plugin-react/blob/master/docs/rules/jsx-filename-extension.md
"react/jsx-filename-extension": 0,
+ "react/forbid-prop-types" : 0,
// Turn off https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-named-as-default-member.md
"import/no-named-as-default-member": 0,
diff --git a/README.md b/README.md
index 4be8b7f..79cc894 100644
--- a/README.md
+++ b/README.md
@@ -71,6 +71,8 @@ I'v got a good [article about focus management, dialogs and WAI-ARIA](https://m
- `noFocusGuards` disabled _focus guards_ - virtual inputs which secure tab index.
- `group` named focus group for focus scattering aka [combined lock targets](https://github.com/theKashey/vue-focus-lock/issues/2)
- `whiteList` you could _whitelist_ locations FocusLock should carry about. Everything outside it will ignore. For example - any modals.
+ - `as` if you need to change internal `div` element, to any other
+ - `lockProps` to pass any extra props (except className) to the internal wrapper.
# Behavior
0. It will always keep focus inside Lock.
@@ -110,7 +112,16 @@ Only `last`, or `deepest` one will work. No fighting.
-
+
+