feat(search): add Search Intelligence module

This commit is contained in:
sdarbinyan
2026-07-10 13:25:31 +04:00
parent 494451bb96
commit 7ecb19cb1a
29 changed files with 1030 additions and 251 deletions

View File

@@ -0,0 +1,15 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
@Component({
selector: 'app-trending-searches',
standalone: true,
templateUrl: './trending-searches.component.html',
styleUrls: ['./trending-searches.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush
})
export class TrendingSearchesComponent {
@Input() title = '';
@Input() items: string[] = [];
@Output() selected = new EventEmitter<string>();
}