summaryrefslogtreecommitdiffstats
path: root/ecomp-sdk/epsdk-app-overlay/src/main/webapp/ngapp/src/app/pages/analytics/Report_List/Report/sql/sql-validate-changes-dialog/sql-validate-changes-dialog.component.ts
blob: bc5c5a37010c5109479cc7888f99dfa5a2040bec (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-sql-validate-changes-dialog-component',
  templateUrl: './sql-validate-changes-dialog.component.html',
  styleUrls: ['./sql-validate-changes-dialog.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 SQLValidateChangesDialogComponent implements OnInit {

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


  constructor() { }

  ngOnInit() {
  }

}