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,4 +1,4 @@
import { Component, EventEmitter, Input, Output } from '@angular/core';
import {Component, EventEmitter, Input, Output} from '@angular/core';
@Component({
selector: 'app-help',
@@ -7,13 +7,13 @@ import { Component, EventEmitter, Input, Output } from '@angular/core';
})
export class HelpComponent {
@Input()
state: boolean = false;
state: boolean = false;
@Input()
ignoreClickOutside!: HTMLDivElement[];
ignoreClickOutside!: HTMLDivElement[];
@Output()
stateChange = new EventEmitter<boolean>();
stateChange = new EventEmitter<boolean>();
constructor() {}