summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sqlcomponent/sqlwindow-modal-validate-test-run-component/sqlwindow-modal-validate-test-run-component.component.ts
blob: 64d06ee224ad191d8425d38f971a033779cdfbaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Component, OnInit, Input, Output, EventEmitter } from '@angular/core';
import { trigger, transition, animate, style } from '@angular/animations';

@Component({
  selector: 'app-sqlwindow-modal-validate-test-run-component',
  templateUrl: './sqlwindow-modal-validate-test-run-component.component.html',
  styleUrls: ['./sqlwindow-modal-validate-test-run-component.component.css'],
  animations: [
    trigger('dialog', [
      transition('void => *', [
        style({ transform: 'scale3d(.3, .3, .3)' }),
        animate(100)
      ]),
      transition('* => void', [
        animate(100, style({ transform: 'scale3d(.0, .0, .0)' }))
      ])
    ])
  ]
})
export class SQLWindowModalValidateTestRunComponentComponent implements OnInit {

  @Input() closable = true;
  @Input() visible: boolean;


  constructor() { }

  ngOnInit() {
  }

}