Skip to content

Commit

Permalink
chore(*): prepare release 0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcScheib committed May 9, 2016
1 parent 2a6dd91 commit 38fed3b
Show file tree
Hide file tree
Showing 7 changed files with 1,080 additions and 5 deletions.
43 changes: 43 additions & 0 deletions dist/amd/aurelia-notify.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
declare module 'aurelia-notify' {
import {
inject
} from 'aurelia-framework';
import {
ViewSlot,
CompositionEngine
} from 'aurelia-templating';
import {
Container
} from 'aurelia-dependency-injection';
import {
Origin
} from 'aurelia-metadata';
export class BSNotification {
constructor(controller: NotificationController);
activate(model: any): any;
}
export function invokeLifecycle(instance: any, name: string, model: any): any;
export class NotificationController {
constructor(renderer: NotificationRenderer, settings: any);
close(): any;
}
export let NotificationLevel: any;
export let globalSettings: any;
export class NotificationRenderer {
defaultSettings: any;
constructor();
createNotificationHost(notificationController: NotificationController): any;
showNotification(notificationController: NotificationController): any;
hideNotification(notificationController: NotificationController): any;
destroyNotificationHost(notificationController: NotificationController): any;
getNotificationContainer(containerSelector: string): any;
}
export class NotificationService {
constructor(compositionEngine: CompositionEngine, container: Container, notificationRenderer: NotificationRenderer);
notify(message: string, settings?: any, level?: string): any;
info(message: string, settings?: any): any;
success(message: string, settings?: any): any;
warning(message: string, settings?: any): any;
danger(message: string, settings?: any): any;
}
}
43 changes: 43 additions & 0 deletions dist/commonjs/aurelia-notify.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
declare module 'aurelia-notify' {
import {
inject
} from 'aurelia-framework';
import {
ViewSlot,
CompositionEngine
} from 'aurelia-templating';
import {
Container
} from 'aurelia-dependency-injection';
import {
Origin
} from 'aurelia-metadata';
export class BSNotification {
constructor(controller: NotificationController);
activate(model: any): any;
}
export function invokeLifecycle(instance: any, name: string, model: any): any;
export class NotificationController {
constructor(renderer: NotificationRenderer, settings: any);
close(): any;
}
export let NotificationLevel: any;
export let globalSettings: any;
export class NotificationRenderer {
defaultSettings: any;
constructor();
createNotificationHost(notificationController: NotificationController): any;
showNotification(notificationController: NotificationController): any;
hideNotification(notificationController: NotificationController): any;
destroyNotificationHost(notificationController: NotificationController): any;
getNotificationContainer(containerSelector: string): any;
}
export class NotificationService {
constructor(compositionEngine: CompositionEngine, container: Container, notificationRenderer: NotificationRenderer);
notify(message: string, settings?: any, level?: string): any;
info(message: string, settings?: any): any;
success(message: string, settings?: any): any;
warning(message: string, settings?: any): any;
danger(message: string, settings?: any): any;
}
}
43 changes: 43 additions & 0 deletions dist/es2015/aurelia-notify.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
declare module 'aurelia-notify' {
import {
inject
} from 'aurelia-framework';
import {
ViewSlot,
CompositionEngine
} from 'aurelia-templating';
import {
Container
} from 'aurelia-dependency-injection';
import {
Origin
} from 'aurelia-metadata';
export class BSNotification {
constructor(controller: NotificationController);
activate(model: any): any;
}
export function invokeLifecycle(instance: any, name: string, model: any): any;
export class NotificationController {
constructor(renderer: NotificationRenderer, settings: any);
close(): any;
}
export let NotificationLevel: any;
export let globalSettings: any;
export class NotificationRenderer {
defaultSettings: any;
constructor();
createNotificationHost(notificationController: NotificationController): any;
showNotification(notificationController: NotificationController): any;
hideNotification(notificationController: NotificationController): any;
destroyNotificationHost(notificationController: NotificationController): any;
getNotificationContainer(containerSelector: string): any;
}
export class NotificationService {
constructor(compositionEngine: CompositionEngine, container: Container, notificationRenderer: NotificationRenderer);
notify(message: string, settings?: any, level?: string): any;
info(message: string, settings?: any): any;
success(message: string, settings?: any): any;
warning(message: string, settings?: any): any;
danger(message: string, settings?: any): any;
}
}
43 changes: 43 additions & 0 deletions dist/system/aurelia-notify.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
declare module 'aurelia-notify' {
import {
inject
} from 'aurelia-framework';
import {
ViewSlot,
CompositionEngine
} from 'aurelia-templating';
import {
Container
} from 'aurelia-dependency-injection';
import {
Origin
} from 'aurelia-metadata';
export class BSNotification {
constructor(controller: NotificationController);
activate(model: any): any;
}
export function invokeLifecycle(instance: any, name: string, model: any): any;
export class NotificationController {
constructor(renderer: NotificationRenderer, settings: any);
close(): any;
}
export let NotificationLevel: any;
export let globalSettings: any;
export class NotificationRenderer {
defaultSettings: any;
constructor();
createNotificationHost(notificationController: NotificationController): any;
showNotification(notificationController: NotificationController): any;
hideNotification(notificationController: NotificationController): any;
destroyNotificationHost(notificationController: NotificationController): any;
getNotificationContainer(containerSelector: string): any;
}
export class NotificationService {
constructor(compositionEngine: CompositionEngine, container: Container, notificationRenderer: NotificationRenderer);
notify(message: string, settings?: any, level?: string): any;
info(message: string, settings?: any): any;
success(message: string, settings?: any): any;
warning(message: string, settings?: any): any;
danger(message: string, settings?: any): any;
}
}
6 changes: 6 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<a name="0.2.4"></a>
## [0.2.4](https://github.com/MarcScheib/aurelia-notify/compare/0.2.3...v0.2.4) (2016-05-09)




<a name="0.2.3"></a>
## [0.2.3](https://github.com/MarcScheib/aurelia-notify/compare/0.2.2...v0.2.3) (2016-05-09)

Expand Down
Loading

0 comments on commit 38fed3b

Please sign in to comment.