├── .DS_Store ├── .gitignore ├── README.md ├── dist ├── dynamowaves.d.ts ├── dynamowaves.js └── dynamowaves.min.js ├── package.json ├── rollup.config.js ├── src ├── dynamowaves.d.ts └── dynamowaves.js ├── test └── dynamowaves.test.js ├── www-src └── index.html └── www ├── LICENSE ├── README.md ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── browserconfig.xml ├── dynamowaves.d.ts ├── dynamowaves.min.js ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── index.html ├── main.css ├── main.css.map ├── main.scss ├── mstile-144x144.png ├── mstile-150x150.png ├── mstile-310x150.png ├── mstile-310x310.png ├── mstile-70x70.png ├── normalize.css ├── safari-pinned-tab.svg ├── site.webmanifest └── snippets ├── installation ├── angular.md ├── installation-header.md ├── npm.md └── script.md ├── practical-application └── examples.md ├── snippets-index.json └── usage ├── data-attributes.md ├── functions.md └── overview.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/README.md -------------------------------------------------------------------------------- /dist/dynamowaves.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/dist/dynamowaves.d.ts -------------------------------------------------------------------------------- /dist/dynamowaves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/dist/dynamowaves.js -------------------------------------------------------------------------------- /dist/dynamowaves.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/dist/dynamowaves.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/dynamowaves.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/src/dynamowaves.d.ts -------------------------------------------------------------------------------- /src/dynamowaves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/src/dynamowaves.js -------------------------------------------------------------------------------- /test/dynamowaves.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/test/dynamowaves.test.js -------------------------------------------------------------------------------- /www-src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www-src/index.html -------------------------------------------------------------------------------- /www/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/LICENSE -------------------------------------------------------------------------------- /www/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/README.md -------------------------------------------------------------------------------- /www/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/android-chrome-192x192.png -------------------------------------------------------------------------------- /www/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/android-chrome-512x512.png -------------------------------------------------------------------------------- /www/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/apple-touch-icon.png -------------------------------------------------------------------------------- /www/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/browserconfig.xml -------------------------------------------------------------------------------- /www/dynamowaves.d.ts: -------------------------------------------------------------------------------- 1 | export * from '../src/dynamowaves'; -------------------------------------------------------------------------------- /www/dynamowaves.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/dynamowaves.min.js -------------------------------------------------------------------------------- /www/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/favicon-16x16.png -------------------------------------------------------------------------------- /www/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/favicon-32x32.png -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/index.html -------------------------------------------------------------------------------- /www/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/main.css -------------------------------------------------------------------------------- /www/main.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/main.css.map -------------------------------------------------------------------------------- /www/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/main.scss -------------------------------------------------------------------------------- /www/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/mstile-144x144.png -------------------------------------------------------------------------------- /www/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/mstile-150x150.png -------------------------------------------------------------------------------- /www/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/mstile-310x150.png -------------------------------------------------------------------------------- /www/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/mstile-310x310.png -------------------------------------------------------------------------------- /www/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/mstile-70x70.png -------------------------------------------------------------------------------- /www/normalize.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/normalize.css -------------------------------------------------------------------------------- /www/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/safari-pinned-tab.svg -------------------------------------------------------------------------------- /www/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/site.webmanifest -------------------------------------------------------------------------------- /www/snippets/installation/angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/installation/angular.md -------------------------------------------------------------------------------- /www/snippets/installation/installation-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/installation/installation-header.md -------------------------------------------------------------------------------- /www/snippets/installation/npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/installation/npm.md -------------------------------------------------------------------------------- /www/snippets/installation/script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/installation/script.md -------------------------------------------------------------------------------- /www/snippets/practical-application/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/practical-application/examples.md -------------------------------------------------------------------------------- /www/snippets/snippets-index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/snippets-index.json -------------------------------------------------------------------------------- /www/snippets/usage/data-attributes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/usage/data-attributes.md -------------------------------------------------------------------------------- /www/snippets/usage/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/usage/functions.md -------------------------------------------------------------------------------- /www/snippets/usage/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzebley/dynamowaves/HEAD/www/snippets/usage/overview.md --------------------------------------------------------------------------------