├── .editorconfig ├── .gitignore ├── .npmignore ├── .postcssrc.js ├── .stylelintrc ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── docs ├── README.md ├── SUMMARY.md ├── api │ ├── callbacks.md │ ├── enums.md │ ├── interfaces.md │ ├── model.md │ ├── options.md │ ├── snotify.md │ └── types.md ├── book.json ├── essentials │ ├── animations.md │ ├── development.md │ ├── examples.md │ ├── getting-started.md │ ├── styling.md │ └── upgrade.md ├── gitbook │ └── images │ │ └── favicon.ico └── installation.md ├── example ├── build │ ├── build.js │ ├── check-versions.js │ ├── dev-client.js │ ├── dev-server.js │ ├── utils.js │ ├── webpack.base.conf.js │ ├── webpack.dev.conf.js │ ├── webpack.prod.conf.js │ └── webpack.test.conf.js ├── config │ ├── dev.env.js │ ├── index.js │ ├── prod.env.js │ └── test.env.js ├── index.html ├── src │ ├── App │ │ ├── app.html │ │ ├── app.scss │ │ ├── app.ts │ │ └── index.ts │ ├── main.ts │ └── polyfill.ts ├── static │ ├── dark.png │ ├── favicon.ico │ ├── material.png │ ├── preview.jpg │ ├── simple.png │ └── vue-snotify-demo.gif └── test │ └── unit │ ├── karma.conf.js │ ├── loader.ts │ └── specs │ ├── App.spec.ts │ ├── Callbacks.spec.ts │ ├── Config.spec.ts │ ├── Confirm.spec.ts │ ├── Error.spec.ts │ ├── Html.spec.ts │ ├── Info.spec.ts │ ├── Prompt.spec.ts │ ├── Simple.spec.ts │ ├── Success.spec.ts │ └── Warning.spec.ts ├── gulpfile.js ├── package.json ├── src ├── SnotifyService.ts ├── components │ ├── Snotify.vue │ ├── SnotifyButton.vue │ ├── SnotifyPrompt.vue │ ├── SnotifyToast.vue │ └── toast.model.ts ├── decorators │ ├── set-toast-type.decorator.ts │ └── transform-argument.decorator.ts ├── enums │ ├── SnotifyPosition.enum.ts │ ├── SnotifyStyle.enum.ts │ └── index.ts ├── index.ts ├── interfaces │ ├── Snotify.interface.ts │ ├── SnotifyAnimate.interface.ts │ ├── SnotifyButton.interface.ts │ ├── SnotifyDefaults.interface.ts │ ├── SnotifyGlobalConfig.interface.ts │ ├── SnotifyNotifications.interface.ts │ ├── SnotifyStyles.interface.ts │ ├── SnotifyToastConfig.interface.ts │ └── index.ts ├── options.d.ts ├── package.json ├── sfc.d.ts ├── styles │ ├── _shared │ │ ├── animations.scss │ │ ├── icons.scss │ │ └── snotify.scss │ ├── dark.scss │ ├── dark │ │ ├── buttons.scss │ │ ├── icon.scss │ │ ├── prompt.scss │ │ └── toast.scss │ ├── material.scss │ ├── material │ │ ├── buttons.scss │ │ ├── icon.scss │ │ ├── prompt.scss │ │ └── toast.scss │ ├── simple.scss │ └── simple │ │ ├── buttons.scss │ │ ├── icon.scss │ │ ├── prompt.scss │ │ └── toast.scss ├── toastDefaults.ts ├── types │ ├── event.type.ts │ ├── index.ts │ └── snotify.type.ts └── utils.ts ├── tools └── gulp │ └── inline-resources.js ├── tsconfig.dev.json ├── tsconfig.json ├── tslint.json └── update-docs.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/.npmignore -------------------------------------------------------------------------------- /.postcssrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/.postcssrc.js -------------------------------------------------------------------------------- /.stylelintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/.stylelintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | {% include "./SUMMARY.md" %} 2 | -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/api/callbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/callbacks.md -------------------------------------------------------------------------------- /docs/api/enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/enums.md -------------------------------------------------------------------------------- /docs/api/interfaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/interfaces.md -------------------------------------------------------------------------------- /docs/api/model.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/model.md -------------------------------------------------------------------------------- /docs/api/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/options.md -------------------------------------------------------------------------------- /docs/api/snotify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/snotify.md -------------------------------------------------------------------------------- /docs/api/types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/api/types.md -------------------------------------------------------------------------------- /docs/book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/book.json -------------------------------------------------------------------------------- /docs/essentials/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/essentials/animations.md -------------------------------------------------------------------------------- /docs/essentials/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/essentials/development.md -------------------------------------------------------------------------------- /docs/essentials/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/essentials/examples.md -------------------------------------------------------------------------------- /docs/essentials/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/essentials/getting-started.md -------------------------------------------------------------------------------- /docs/essentials/styling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/essentials/styling.md -------------------------------------------------------------------------------- /docs/essentials/upgrade.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/essentials/upgrade.md -------------------------------------------------------------------------------- /docs/gitbook/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/gitbook/images/favicon.ico -------------------------------------------------------------------------------- /docs/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/docs/installation.md -------------------------------------------------------------------------------- /example/build/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/build.js -------------------------------------------------------------------------------- /example/build/check-versions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/check-versions.js -------------------------------------------------------------------------------- /example/build/dev-client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/dev-client.js -------------------------------------------------------------------------------- /example/build/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/dev-server.js -------------------------------------------------------------------------------- /example/build/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/utils.js -------------------------------------------------------------------------------- /example/build/webpack.base.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/webpack.base.conf.js -------------------------------------------------------------------------------- /example/build/webpack.dev.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/webpack.dev.conf.js -------------------------------------------------------------------------------- /example/build/webpack.prod.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/webpack.prod.conf.js -------------------------------------------------------------------------------- /example/build/webpack.test.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/build/webpack.test.conf.js -------------------------------------------------------------------------------- /example/config/dev.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/config/dev.env.js -------------------------------------------------------------------------------- /example/config/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/config/index.js -------------------------------------------------------------------------------- /example/config/prod.env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | NODE_ENV: '"production"' 3 | }; 4 | -------------------------------------------------------------------------------- /example/config/test.env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/config/test.env.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/index.html -------------------------------------------------------------------------------- /example/src/App/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/src/App/app.html -------------------------------------------------------------------------------- /example/src/App/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/src/App/app.scss -------------------------------------------------------------------------------- /example/src/App/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/src/App/app.ts -------------------------------------------------------------------------------- /example/src/App/index.ts: -------------------------------------------------------------------------------- 1 | export * from './app'; 2 | -------------------------------------------------------------------------------- /example/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/src/main.ts -------------------------------------------------------------------------------- /example/src/polyfill.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/src/polyfill.ts -------------------------------------------------------------------------------- /example/static/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/static/dark.png -------------------------------------------------------------------------------- /example/static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/static/favicon.ico -------------------------------------------------------------------------------- /example/static/material.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/static/material.png -------------------------------------------------------------------------------- /example/static/preview.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/static/preview.jpg -------------------------------------------------------------------------------- /example/static/simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/static/simple.png -------------------------------------------------------------------------------- /example/static/vue-snotify-demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/static/vue-snotify-demo.gif -------------------------------------------------------------------------------- /example/test/unit/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/karma.conf.js -------------------------------------------------------------------------------- /example/test/unit/loader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/loader.ts -------------------------------------------------------------------------------- /example/test/unit/specs/App.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/App.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Callbacks.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Callbacks.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Config.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Config.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Confirm.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Confirm.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Error.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Error.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Html.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Html.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Info.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Info.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Prompt.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Prompt.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Simple.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Simple.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Success.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Success.spec.ts -------------------------------------------------------------------------------- /example/test/unit/specs/Warning.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/example/test/unit/specs/Warning.spec.ts -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/package.json -------------------------------------------------------------------------------- /src/SnotifyService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/SnotifyService.ts -------------------------------------------------------------------------------- /src/components/Snotify.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/components/Snotify.vue -------------------------------------------------------------------------------- /src/components/SnotifyButton.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/components/SnotifyButton.vue -------------------------------------------------------------------------------- /src/components/SnotifyPrompt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/components/SnotifyPrompt.vue -------------------------------------------------------------------------------- /src/components/SnotifyToast.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/components/SnotifyToast.vue -------------------------------------------------------------------------------- /src/components/toast.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/components/toast.model.ts -------------------------------------------------------------------------------- /src/decorators/set-toast-type.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/decorators/set-toast-type.decorator.ts -------------------------------------------------------------------------------- /src/decorators/transform-argument.decorator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/decorators/transform-argument.decorator.ts -------------------------------------------------------------------------------- /src/enums/SnotifyPosition.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/enums/SnotifyPosition.enum.ts -------------------------------------------------------------------------------- /src/enums/SnotifyStyle.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/enums/SnotifyStyle.enum.ts -------------------------------------------------------------------------------- /src/enums/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/enums/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces/Snotify.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/Snotify.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyAnimate.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyAnimate.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyButton.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyButton.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyDefaults.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyDefaults.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyGlobalConfig.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyGlobalConfig.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyNotifications.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyNotifications.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyStyles.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyStyles.interface.ts -------------------------------------------------------------------------------- /src/interfaces/SnotifyToastConfig.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/SnotifyToastConfig.interface.ts -------------------------------------------------------------------------------- /src/interfaces/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/interfaces/index.ts -------------------------------------------------------------------------------- /src/options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/options.d.ts -------------------------------------------------------------------------------- /src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/package.json -------------------------------------------------------------------------------- /src/sfc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/sfc.d.ts -------------------------------------------------------------------------------- /src/styles/_shared/animations.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/_shared/animations.scss -------------------------------------------------------------------------------- /src/styles/_shared/icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/_shared/icons.scss -------------------------------------------------------------------------------- /src/styles/_shared/snotify.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/_shared/snotify.scss -------------------------------------------------------------------------------- /src/styles/dark.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/dark.scss -------------------------------------------------------------------------------- /src/styles/dark/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/dark/buttons.scss -------------------------------------------------------------------------------- /src/styles/dark/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/dark/icon.scss -------------------------------------------------------------------------------- /src/styles/dark/prompt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/dark/prompt.scss -------------------------------------------------------------------------------- /src/styles/dark/toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/dark/toast.scss -------------------------------------------------------------------------------- /src/styles/material.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/material.scss -------------------------------------------------------------------------------- /src/styles/material/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/material/buttons.scss -------------------------------------------------------------------------------- /src/styles/material/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/material/icon.scss -------------------------------------------------------------------------------- /src/styles/material/prompt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/material/prompt.scss -------------------------------------------------------------------------------- /src/styles/material/toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/material/toast.scss -------------------------------------------------------------------------------- /src/styles/simple.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/simple.scss -------------------------------------------------------------------------------- /src/styles/simple/buttons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/simple/buttons.scss -------------------------------------------------------------------------------- /src/styles/simple/icon.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/simple/icon.scss -------------------------------------------------------------------------------- /src/styles/simple/prompt.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/simple/prompt.scss -------------------------------------------------------------------------------- /src/styles/simple/toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/styles/simple/toast.scss -------------------------------------------------------------------------------- /src/toastDefaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/toastDefaults.ts -------------------------------------------------------------------------------- /src/types/event.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/types/event.type.ts -------------------------------------------------------------------------------- /src/types/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/types/index.ts -------------------------------------------------------------------------------- /src/types/snotify.type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/types/snotify.type.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tools/gulp/inline-resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/tools/gulp/inline-resources.js -------------------------------------------------------------------------------- /tsconfig.dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/tsconfig.dev.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/tslint.json -------------------------------------------------------------------------------- /update-docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artemsky/vue-snotify/HEAD/update-docs.sh --------------------------------------------------------------------------------