├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── basic.gif ├── dist ├── stimulus_confetti.cjs ├── stimulus_confetti.cjs.map ├── stimulus_confetti.modern.js ├── stimulus_confetti.modern.js.map ├── stimulus_confetti.module.js ├── stimulus_confetti.module.js.map ├── stimulus_confetti.umd.js └── stimulus_confetti.umd.js.map ├── logo-on-white.png ├── package.json ├── readme.md ├── school-pride.gif ├── src └── index.js ├── stars.gif └── yarn.lock /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/LICENSE -------------------------------------------------------------------------------- /basic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/basic.gif -------------------------------------------------------------------------------- /dist/stimulus_confetti.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.cjs -------------------------------------------------------------------------------- /dist/stimulus_confetti.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.cjs.map -------------------------------------------------------------------------------- /dist/stimulus_confetti.modern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.modern.js -------------------------------------------------------------------------------- /dist/stimulus_confetti.modern.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.modern.js.map -------------------------------------------------------------------------------- /dist/stimulus_confetti.module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.module.js -------------------------------------------------------------------------------- /dist/stimulus_confetti.module.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.module.js.map -------------------------------------------------------------------------------- /dist/stimulus_confetti.umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.umd.js -------------------------------------------------------------------------------- /dist/stimulus_confetti.umd.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/dist/stimulus_confetti.umd.js.map -------------------------------------------------------------------------------- /logo-on-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/logo-on-white.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/readme.md -------------------------------------------------------------------------------- /school-pride.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/school-pride.gif -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/src/index.js -------------------------------------------------------------------------------- /stars.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/stars.gif -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avo-hq/stimulus-confetti/HEAD/yarn.lock --------------------------------------------------------------------------------