├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE.txt ├── README.md ├── cjs ├── index.d.ts ├── index.js └── package.json ├── es5.config.js ├── es5.js ├── es5.min.js ├── esm.config.js ├── esm ├── index.d.ts └── index.js ├── index.d.ts ├── index.js ├── min.js ├── package.json ├── test.js ├── test ├── boolean.html ├── builtin.html ├── button.html ├── ce.js ├── checked.html ├── index.html ├── test.es5.js └── test.js └── typescript.md /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output/ 3 | node_modules/ 4 | coverage/ 5 | 6 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/.npmrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/cjs/index.d.ts -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /es5.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/es5.config.js -------------------------------------------------------------------------------- /es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/es5.js -------------------------------------------------------------------------------- /es5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/es5.min.js -------------------------------------------------------------------------------- /esm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/esm.config.js -------------------------------------------------------------------------------- /esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/esm/index.d.ts -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test.js -------------------------------------------------------------------------------- /test/boolean.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/boolean.html -------------------------------------------------------------------------------- /test/builtin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/builtin.html -------------------------------------------------------------------------------- /test/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/button.html -------------------------------------------------------------------------------- /test/ce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/ce.js -------------------------------------------------------------------------------- /test/checked.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/checked.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/index.html -------------------------------------------------------------------------------- /test/test.es5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/test.es5.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/test/test.js -------------------------------------------------------------------------------- /typescript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/hyperHTML-Element/HEAD/typescript.md --------------------------------------------------------------------------------