├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── cjs ├── index.js └── package.json ├── es.js ├── esm.js ├── esm └── index.js ├── index.js ├── package.json ├── rollup ├── es.config.js ├── esm.config.js └── index.config.js └── test ├── async.html ├── index.html ├── index.js ├── nav.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | .travis.yml 4 | node_modules/ 5 | rollup/ 6 | test/ 7 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/es.js -------------------------------------------------------------------------------- /esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/esm.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/package.json -------------------------------------------------------------------------------- /rollup/es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/rollup/es.config.js -------------------------------------------------------------------------------- /rollup/esm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/rollup/esm.config.js -------------------------------------------------------------------------------- /rollup/index.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/rollup/index.config.js -------------------------------------------------------------------------------- /test/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/test/async.html -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require('../cjs'); -------------------------------------------------------------------------------- /test/nav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/custom-elements-builtin/HEAD/test/nav.html -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} --------------------------------------------------------------------------------