├── .babelrc ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── renovate.json ├── src ├── all.js ├── componentOrElement.js ├── deprecated.js ├── elementType.js ├── index.js ├── isRequiredForA11y.js └── utils │ └── createChainableTypeChecker.js ├── test ├── .eslintrc ├── .gitignore ├── all.test.js ├── componentOrElement.test.js ├── deprecated.test.js ├── describeChainableValidator.js ├── elementType.test.js ├── helpers.js ├── isRequiredForA11y.test.js └── test-setup.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | lib 2 | node_modules 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | npm-debug.log* 4 | node_modules 5 | lib 6 | .coverage 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["github>4Catalyzer/renovate-config:library", ":automergeMinor"] 3 | } 4 | -------------------------------------------------------------------------------- /src/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/all.js -------------------------------------------------------------------------------- /src/componentOrElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/componentOrElement.js -------------------------------------------------------------------------------- /src/deprecated.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/deprecated.js -------------------------------------------------------------------------------- /src/elementType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/elementType.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isRequiredForA11y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/isRequiredForA11y.js -------------------------------------------------------------------------------- /src/utils/createChainableTypeChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/src/utils/createChainableTypeChecker.js -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .DS_Store 3 | npm-debug.log 4 | node_modules 5 | lib/ 6 | .coverage/ 7 | -------------------------------------------------------------------------------- /test/all.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/all.test.js -------------------------------------------------------------------------------- /test/componentOrElement.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/componentOrElement.test.js -------------------------------------------------------------------------------- /test/deprecated.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/deprecated.test.js -------------------------------------------------------------------------------- /test/describeChainableValidator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/describeChainableValidator.js -------------------------------------------------------------------------------- /test/elementType.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/elementType.test.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/isRequiredForA11y.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/isRequiredForA11y.test.js -------------------------------------------------------------------------------- /test/test-setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/test/test-setup.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/react-bootstrap/prop-types-extra/HEAD/yarn.lock --------------------------------------------------------------------------------