v0.7
This commit is contained in:
parent
311e520427
commit
5c3fcced08
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@poweredsoft/ngx-bootstrap",
|
"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",
|
"description": "an internal use libary for handling data souces grid filtering sorting, add commands etc",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"angular",
|
"angular",
|
||||||
|
@ -21,6 +21,7 @@ export class CommandModalDirective {
|
|||||||
@Input() cancelText: string;
|
@Input() cancelText: string;
|
||||||
@Input() animated: boolean;
|
@Input() animated: boolean;
|
||||||
@Input() btnClass:string;
|
@Input() btnClass:string;
|
||||||
|
@Input() modalSize: string;
|
||||||
|
|
||||||
@Output() success: EventEmitter<any> = new EventEmitter<any>();
|
@Output() success: EventEmitter<any> = new EventEmitter<any>();
|
||||||
|
|
||||||
@ -44,6 +45,7 @@ export class CommandModalDirective {
|
|||||||
};
|
};
|
||||||
this.modalService.show(CommandModalComponent, {
|
this.modalService.show(CommandModalComponent, {
|
||||||
animated: this.animated === undefined ? true : this.animated,
|
animated: this.animated === undefined ? true : this.animated,
|
||||||
|
class: this.modalSize,
|
||||||
initialState
|
initialState
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user