@ah-oh/ao-workspaces-design-system 0.0.51 → 0.0.52

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ah-oh/ao-workspaces-design-system",
3
- "version": "0.0.51",
3
+ "version": "0.0.52",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/ah-oh/ao-workspaces.git",
@@ -1552,25 +1552,27 @@ interface SearchResultsTypeOption {
1552
1552
  }
1553
1553
  declare class SearchResultsPageComponent {
1554
1554
  private readonly sanitizer;
1555
+ private readonly hostRef;
1555
1556
  readonly query: _angular_core.InputSignal<string>;
1556
1557
  readonly groups: _angular_core.InputSignal<SearchResultGroup[]>;
1557
1558
  readonly availableTypes: _angular_core.InputSignal<SearchResultsTypeOption[]>;
1558
1559
  readonly typeFilter: _angular_core.ModelSignal<SearchEntityType>;
1559
- readonly dateFilter: _angular_core.ModelSignal<string>;
1560
1560
  readonly resultClick: _angular_core.OutputEmitterRef<SearchResult>;
1561
- readonly typeFilterClick: _angular_core.OutputEmitterRef<void>;
1562
- readonly dateFilterClick: _angular_core.OutputEmitterRef<void>;
1563
1561
  protected readonly caretDownIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z\"></path></svg>";
1564
- protected readonly calendarIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M208,32H184V24a8,8,0,0,0-16,0v8H88V24a8,8,0,0,0-16,0v8H48A16,16,0,0,0,32,48V208a16,16,0,0,0,16,16H208a16,16,0,0,0,16-16V48A16,16,0,0,0,208,32ZM72,48v8a8,8,0,0,0,16,0V48h80v8a8,8,0,0,0,16,0V48h24V80H48V48ZM208,208H48V96H208V208Z\"></path></svg>";
1565
1562
  protected readonly sparkleIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" fill=\"currentColor\"><path d=\"M197.58,129.06,146,110l-19-51.62a15.92,15.92,0,0,0-29.88,0L78,110l-51.62,19a15.92,15.92,0,0,0,0,29.88L78,178l19,51.62a15.92,15.92,0,0,0,29.88,0L146,178l51.62-19a15.92,15.92,0,0,0,0-29.88ZM137,164.22a8,8,0,0,0-4.74,4.74L112,223.85,91.78,169A8,8,0,0,0,87,164.22L32.15,144,87,123.78A8,8,0,0,0,91.78,119L112,64.15,132.22,119a8,8,0,0,0,4.74,4.74L191.85,144ZM144,40a8,8,0,0,1,8-8h16V16a8,8,0,0,1,16,0V32h16a8,8,0,0,1,0,16H184V64a8,8,0,0,1-16,0V48H152A8,8,0,0,1,144,40ZM248,88a8,8,0,0,1-8,8h-8v8a8,8,0,0,1-16,0V96h-8a8,8,0,0,1,0-16h8V72a8,8,0,0,1,16,0v8h8A8,8,0,0,1,248,88Z\"></path></svg>";
1563
+ protected readonly typeFilterOpen: _angular_core.WritableSignal<boolean>;
1564
+ protected readonly typeOptions: _angular_core.Signal<SearchResultsTypeOption[]>;
1565
+ protected readonly activeTypeLabel: _angular_core.Signal<string>;
1566
+ protected readonly filteredGroups: _angular_core.Signal<SearchResultGroup[]>;
1567
+ protected onDocumentClick(event: MouseEvent): void;
1566
1568
  protected onResultClick(r: SearchResult): void;
1567
1569
  protected onTypeFilterClick(): void;
1568
- protected onDateFilterClick(): void;
1570
+ protected onTypeOptionClick(option: SearchResultsTypeOption): void;
1569
1571
  protected highlight(text: string): SafeHtml;
1570
1572
  private escapeHtml;
1571
1573
  private escapeRegex;
1572
1574
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchResultsPageComponent, never>;
1573
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchResultsPageComponent, "ao-search-results-page", never, { "query": { "alias": "query"; "required": false; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "availableTypes": { "alias": "availableTypes"; "required": false; "isSignal": true; }; "typeFilter": { "alias": "typeFilter"; "required": false; "isSignal": true; }; "dateFilter": { "alias": "dateFilter"; "required": false; "isSignal": true; }; }, { "typeFilter": "typeFilterChange"; "dateFilter": "dateFilterChange"; "resultClick": "resultClick"; "typeFilterClick": "typeFilterClick"; "dateFilterClick": "dateFilterClick"; }, never, never, true, never>;
1575
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchResultsPageComponent, "ao-search-results-page", never, { "query": { "alias": "query"; "required": false; "isSignal": true; }; "groups": { "alias": "groups"; "required": false; "isSignal": true; }; "availableTypes": { "alias": "availableTypes"; "required": false; "isSignal": true; }; "typeFilter": { "alias": "typeFilter"; "required": false; "isSignal": true; }; }, { "typeFilter": "typeFilterChange"; "resultClick": "resultClick"; }, never, never, true, never>;
1574
1576
  }
1575
1577
 
1576
1578
  declare const ROBIN_API_BASE_URL: InjectionToken<string>;