ngx-sp-infra 6.5.5 → 6.5.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -9,7 +9,6 @@ export declare class SearchInputComponent implements OnInit, AfterViewInit {
|
|
|
9
9
|
private _menus?;
|
|
10
10
|
private _submenus?;
|
|
11
11
|
private _telas?;
|
|
12
|
-
showIcons: boolean;
|
|
13
12
|
onClose: EventEmitter<void>;
|
|
14
13
|
onSearch: EventEmitter<string>;
|
|
15
14
|
searchInput: ElementRef<HTMLInputElement>;
|
|
@@ -28,13 +27,22 @@ export declare class SearchInputComponent implements OnInit, AfterViewInit {
|
|
|
28
27
|
ngOnInit(): void;
|
|
29
28
|
ngAfterViewInit(): void;
|
|
30
29
|
onKeydown(event: KeyboardEvent): void;
|
|
31
|
-
navigateTo(route: string): void;
|
|
32
30
|
redirect(item: IV6Tela | IV6Submenu | IV6Menu): void;
|
|
33
31
|
highlightList(pesquisa: string): void;
|
|
32
|
+
/**
|
|
33
|
+
* Formata a string de rota para usar no redirecionamento, pode ser OS ou V6.
|
|
34
|
+
*
|
|
35
|
+
* @param item Objeto selecionado da lista
|
|
36
|
+
* @param route Rota desejada (OS ou V6)
|
|
37
|
+
* @returns String formatada com a rota final
|
|
38
|
+
*
|
|
39
|
+
* * O método foi fortemente modificado pelo Github Copilot para rastrear todos os cenários
|
|
40
|
+
*/
|
|
41
|
+
private formatBaseURL;
|
|
34
42
|
close(): void;
|
|
35
43
|
search(): void;
|
|
36
44
|
resetSearch(): void;
|
|
37
45
|
private focusInput;
|
|
38
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<SearchInputComponent, never>;
|
|
39
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "lib-search-input, lib-pesquisa-global", never, {
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SearchInputComponent, "lib-search-input, lib-pesquisa-global", never, {}, { "onClose": "onClose"; "onSearch": "onSearch"; }, never, never, true, never>;
|
|
40
48
|
}
|