64d06ee224ad191d8425d38f971a033779cdfbaf
[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-validate-test-run-component',
6   templateUrl: './sqlwindow-modal-validate-test-run-component.component.html',
7   styleUrls: ['./sqlwindow-modal-validate-test-run-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 SQLWindowModalValidateTestRunComponentComponent implements OnInit {
21
22   @Input() closable = true;
23   @Input() visible: boolean;
24
25
26   constructor() { }
27
28   ngOnInit() {
29   }
30
31 }