04773ff94e07d90920dcc1d2599a021345acf700
[portal/sdk.git] /
1 import { Component, OnInit, Input, Output, EventEmitter  } from '@angular/core';
2 import { trigger, transition, animate, style } from '@angular/animations';
3
4 @Component({
5   selector: 'app-sqlwindow-modal-save-component',
6   templateUrl: './sqlwindow-modal-save-component.component.html',
7   styleUrls: ['./sqlwindow-modal-save-component.component.css'],
8   animations: [
9     trigger('dialog', [
10       transition('void => *', [
11         style({ transform: 'scale3d(.3, .3, .3)' }),
12         animate(100)
13       ]),
14       transition('* => void', [
15         animate(100, style({ transform: 'scale3d(.0, .0, .0)' }))
16       ])
17     ])
18   ]
19 })
20 export class SQLWindowModalSaveComponentComponent implements OnInit {
21
22   @Input() closable = true;
23   @Input() visible: boolean;
24
25   constructor() { }
26
27   ngOnInit() {
28   }
29
30 }