Optimizes Imports

This commit is contained in:
2023-12-29 07:12:29 -03:00
parent 7a0fd959a0
commit d08255b31f
45 changed files with 222 additions and 368 deletions

View File

@@ -1,21 +1,5 @@
import {
animate,
animateChild,
group,
query,
state,
style,
transition,
trigger,
} from '@angular/animations';
import {
Component,
ElementRef,
EventEmitter,
Input,
Output,
ViewEncapsulation,
} from '@angular/core';
import {animate, animateChild, group, query, state, style, transition, trigger,} from '@angular/animations';
import {Component, EventEmitter, Input, Output,} from '@angular/core';
@Component({
selector: 'app-popup',
@@ -56,13 +40,13 @@ import {
})
export class PopupComponent {
@Input()
state: boolean = false;
state: boolean = false;
@Input()
ignoreClickOutside!: HTMLDivElement[];
ignoreClickOutside!: HTMLDivElement[];
@Output()
stateChange = new EventEmitter<boolean>(false);
stateChange = new EventEmitter<boolean>(false);
constructor() {}