File tree Expand file tree Collapse file tree 5 files changed +36
-2
lines changed Expand file tree Collapse file tree 5 files changed +36
-2
lines changed Original file line number Diff line number Diff line change 1
1
## Change Log
2
2
3
+ ### v3.2.1
4
+ - remove ` console.log ` [ #48 ] ( https://github.com/artemsky/vue-snotify/issues/48 )
5
+
3
6
### v3.2.0
4
7
- stop buttons event propagation [ #37 ] ( https://github.com/artemsky/vue-snotify/issues/37 )
5
8
- added ability to hide icon` icon: false ` [ #28 ] ( https://github.com/artemsky/vue-snotify/issues/28 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-snotify" ,
3
- "version" : " 3.2.0 " ,
3
+ "version" : " 3.2.1 " ,
4
4
"description" : " A Vue.js toast notifications" ,
5
5
"scripts" : {
6
6
"prestart" : " npm run link:src" ,
Original file line number Diff line number Diff line change
1
+ import Vue from 'vue' ;
2
+ import { SnotifyService } from './SnotifyService' ;
3
+
4
+ declare module 'vue/types/options' {
5
+ interface ComponentOptions < V extends Vue > {
6
+ $snotify ?: string ;
7
+ }
8
+ }
9
+ declare module 'vue/types/vue' {
10
+ interface Vue {
11
+ $snotify : SnotifyService | any ;
12
+ }
13
+ }
14
+
15
+ declare module 'vue/types/vue' {
16
+ interface VueConstructor {
17
+ $snotify : string ;
18
+ }
19
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " vue-snotify" ,
3
- "version" : " 3.2.0 " ,
3
+ "version" : " 3.2.1 " ,
4
4
"description" : " A Vue.js toast notifications" ,
5
5
"main" : " vue-snotify.common.js" ,
6
6
"module" : " vue-snotify.esm.js" ,
Original file line number Diff line number Diff line change
1
+ declare module '*.vue' {
2
+ import Vue from 'vue' ;
3
+ export default Vue ;
4
+
5
+ }
6
+
7
+ declare module 'vue/types/options' {
8
+ import Vue from 'vue' ;
9
+ interface ComponentOptions < V extends Vue > {
10
+ $snotify ?: string ;
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments