├── .browserslistrc ├── .eslintrc.js ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── babel.config.js ├── jest.config.js ├── package.json ├── src ├── VTNotification.vue ├── VTNotificationGroup.vue ├── index.js └── notifications.js ├── tests └── unit │ └── example.spec.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not dead 4 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/babel.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: '@vue/cli-plugin-unit-jest' 3 | } 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/package.json -------------------------------------------------------------------------------- /src/VTNotification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/src/VTNotification.vue -------------------------------------------------------------------------------- /src/VTNotificationGroup.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/src/VTNotificationGroup.vue -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/src/index.js -------------------------------------------------------------------------------- /src/notifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/src/notifications.js -------------------------------------------------------------------------------- /tests/unit/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/tests/unit/example.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sansil/vt-notifications/HEAD/yarn.lock --------------------------------------------------------------------------------