@ah-oh/ao-workspaces-design-system 0.0.47 → 0.0.49
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.
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { EnvironmentProviders, TemplateRef, OnInit, TrackByFunction, AfterViewInit, ElementRef, InjectionToken, Type, OnDestroy, ViewContainerRef, EventEmitter, Signal, ModelSignal } from '@angular/core';
|
|
2
|
+
import { EnvironmentProviders, TemplateRef, OnInit, TrackByFunction, AfterViewInit, ElementRef, InjectionToken, Type, OnDestroy, ViewContainerRef, Injector, EventEmitter, Signal, ModelSignal } from '@angular/core';
|
|
3
3
|
import * as _angular_common_http from '@angular/common/http';
|
|
4
4
|
import { HttpInterceptorFn, HttpResponse, HttpClient, HttpContext } from '@angular/common/http';
|
|
5
5
|
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
@@ -724,11 +724,12 @@ interface TabChangeEvent {
|
|
|
724
724
|
currentTabId: string;
|
|
725
725
|
}
|
|
726
726
|
|
|
727
|
-
declare class TabsComponent {
|
|
727
|
+
declare class TabsComponent implements AfterViewInit {
|
|
728
728
|
readonly activeTab: _angular_core.ModelSignal<string>;
|
|
729
729
|
readonly tabChange: _angular_core.OutputEmitterRef<TabChangeEvent>;
|
|
730
730
|
readonly panels: _angular_core.Signal<readonly TabPanelComponent[]>;
|
|
731
|
-
|
|
731
|
+
readonly injector: Injector;
|
|
732
|
+
ngAfterViewInit(): void;
|
|
732
733
|
selectTab(panel: TabPanelComponent): void;
|
|
733
734
|
onKeydown(event: KeyboardEvent, currentPanel: TabPanelComponent): void;
|
|
734
735
|
private focusTab;
|
|
@@ -1566,12 +1567,13 @@ declare class RobinSearchService {
|
|
|
1566
1567
|
readonly resultGroups: _angular_core.WritableSignal<SearchResultGroup[]>;
|
|
1567
1568
|
readonly pageSuggestion: _angular_core.WritableSignal<PageSuggestion>;
|
|
1568
1569
|
readonly aiSuggestions: _angular_core.WritableSignal<SearchResult[]>;
|
|
1569
|
-
private
|
|
1570
|
-
|
|
1570
|
+
private readonly quickSearchInput$;
|
|
1571
|
+
constructor();
|
|
1571
1572
|
loadRecommendedFilters(): Promise<void>;
|
|
1572
1573
|
search(query: string, type?: SearchEntityType): void;
|
|
1573
1574
|
loadFull(query: string, type?: SearchEntityType, date?: string): Promise<Partial<SearchPayload>>;
|
|
1574
|
-
private
|
|
1575
|
+
private fetchQuickSearch;
|
|
1576
|
+
private applyQuickSearchOutcome;
|
|
1575
1577
|
private url;
|
|
1576
1578
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RobinSearchService, never>;
|
|
1577
1579
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<RobinSearchService>;
|