This commit is contained in:
David Lebee 2021-04-14 11:41:30 -04:00
parent 311e520427
commit 5c3fcced08
2 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@poweredsoft/ngx-bootstrap",
"version": "0.0.6",
"version": "0.0.7",
"description": "an internal use libary for handling data souces grid filtering sorting, add commands etc",
"keywords": [
"angular",

View File

@ -21,6 +21,7 @@ export class CommandModalDirective {
@Input() cancelText: string;
@Input() animated: boolean;
@Input() btnClass:string;
@Input() modalSize: string;
@Output() success: EventEmitter<any> = new EventEmitter<any>();
@ -44,6 +45,7 @@ export class CommandModalDirective {
};
this.modalService.show(CommandModalComponent, {
animated: this.animated === undefined ? true : this.animated,
class: this.modalSize,
initialState
});