├── .browserslistrc ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── dev ├── serve.ts └── serve.vue ├── package.json ├── shims-vue.d.ts ├── src ├── ConfettiExplosion.vue ├── entry.esm.ts └── entry.ts └── tsconfig.json /.browserslistrc: -------------------------------------------------------------------------------- 1 | current node 2 | last 2 versions and > 2% 3 | ie > 10 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/babel.config.js -------------------------------------------------------------------------------- /dev/serve.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/dev/serve.ts -------------------------------------------------------------------------------- /dev/serve.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/dev/serve.vue -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/package.json -------------------------------------------------------------------------------- /shims-vue.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/shims-vue.d.ts -------------------------------------------------------------------------------- /src/ConfettiExplosion.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/src/ConfettiExplosion.vue -------------------------------------------------------------------------------- /src/entry.esm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/src/entry.esm.ts -------------------------------------------------------------------------------- /src/entry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/src/entry.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valgeirb/vue-confetti-explosion/HEAD/tsconfig.json --------------------------------------------------------------------------------