├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── VERSIONS.md ├── cjs ├── index.js └── package.json ├── es.js ├── esm └── index.js ├── index.d.ts ├── index.js ├── min.js ├── package.json ├── rollup ├── babel.config.js ├── es.config.js └── new.config.js └── test ├── all.html ├── async.html ├── counter.html ├── custom-element.html ├── div.js ├── dual.html ├── forms.html ├── init.html ├── lighterhtml.html ├── once.html ├── package.json └── perf.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | node_modules/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/README.md -------------------------------------------------------------------------------- /VERSIONS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/VERSIONS.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/es.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/package.json -------------------------------------------------------------------------------- /rollup/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/rollup/babel.config.js -------------------------------------------------------------------------------- /rollup/es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/rollup/es.config.js -------------------------------------------------------------------------------- /rollup/new.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/rollup/new.config.js -------------------------------------------------------------------------------- /test/all.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/all.html -------------------------------------------------------------------------------- /test/async.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/async.html -------------------------------------------------------------------------------- /test/counter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/counter.html -------------------------------------------------------------------------------- /test/custom-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/custom-element.html -------------------------------------------------------------------------------- /test/div.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/div.js -------------------------------------------------------------------------------- /test/dual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/dual.html -------------------------------------------------------------------------------- /test/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/forms.html -------------------------------------------------------------------------------- /test/init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/init.html -------------------------------------------------------------------------------- /test/lighterhtml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/lighterhtml.html -------------------------------------------------------------------------------- /test/once.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/once.html -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /test/perf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/wicked-elements/HEAD/test/perf.html --------------------------------------------------------------------------------