├── .babelrc ├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── src ├── all.js ├── componentOrElement.js ├── deprecated.js ├── elementType.js ├── index.js ├── isRequiredForA11y.js └── utils │ └── createChainableTypeChecker.js └── test ├── .babelrc ├── .eslintrc ├── all.test.js ├── componentOrElement.test.js ├── deprecated.test.js ├── describeChainableValidator.js ├── elementType.test.js ├── helpers.js ├── isRequiredForA11y.test.js └── setup.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/package.json -------------------------------------------------------------------------------- /src/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/all.js -------------------------------------------------------------------------------- /src/componentOrElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/componentOrElement.js -------------------------------------------------------------------------------- /src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/deprecated.js -------------------------------------------------------------------------------- /src/elementType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/elementType.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isRequiredForA11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/isRequiredForA11y.js -------------------------------------------------------------------------------- /src/utils/createChainableTypeChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/src/utils/createChainableTypeChecker.js -------------------------------------------------------------------------------- /test/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/.babelrc -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/all.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/all.test.js -------------------------------------------------------------------------------- /test/componentOrElement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/componentOrElement.test.js -------------------------------------------------------------------------------- /test/deprecated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/deprecated.test.js -------------------------------------------------------------------------------- /test/describeChainableValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/describeChainableValidator.js -------------------------------------------------------------------------------- /test/elementType.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/elementType.test.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/isRequiredForA11y.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/isRequiredForA11y.test.js -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/react-prop-types/HEAD/test/setup.js --------------------------------------------------------------------------------