├── .eslintignore ├── .eslintrc.json ├── .github └── workflows │ ├── nodejs.yml │ └── publish.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── custom-elements.json ├── examples └── index.html ├── package.json ├── src ├── filter-input-element-define.ts ├── filter-input-element.ts └── index.ts ├── test ├── .eslintrc.json └── test.js ├── tsconfig.json └── web-test-runner.config.js /.eslintignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/workflows/nodejs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/.github/workflows/nodejs.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | node_modules 3 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @github/primer-reviewers 2 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/SECURITY.md -------------------------------------------------------------------------------- /custom-elements.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/custom-elements.json -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/examples/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/package.json -------------------------------------------------------------------------------- /src/filter-input-element-define.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/src/filter-input-element-define.ts -------------------------------------------------------------------------------- /src/filter-input-element.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/src/filter-input-element.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/test/.eslintrc.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/test/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/tsconfig.json -------------------------------------------------------------------------------- /web-test-runner.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/github/filter-input-element/HEAD/web-test-runner.config.js --------------------------------------------------------------------------------