Chore: Updated python dependencies
Chore: Updated angular to v19 Chore: Refactored ops with docker and ansible
This commit is contained in:
@ -23,7 +23,6 @@ import { TemporalProductService } from '../temporal-product.service';
|
||||
selector: 'app-product-detail',
|
||||
templateUrl: './temporal-product-detail.component.html',
|
||||
styleUrls: ['./temporal-product-detail.component.css'],
|
||||
standalone: true,
|
||||
imports: [
|
||||
MatCard,
|
||||
MatCardHeader,
|
||||
|
||||
@ -20,8 +20,7 @@ import {
|
||||
MatRow,
|
||||
} from '@angular/material/table';
|
||||
import { ActivatedRoute, RouterLink } from '@angular/router';
|
||||
import { BehaviorSubject } from 'rxjs';
|
||||
import { Observable } from 'rxjs';
|
||||
import { BehaviorSubject, Observable } from 'rxjs';
|
||||
import { debounceTime, distinctUntilChanged } from 'rxjs/operators';
|
||||
|
||||
import { MenuCategory } from '../../core/menu-category';
|
||||
@ -34,7 +33,6 @@ import { TemporalProductListDatasource } from './temporal-product-list-datasourc
|
||||
selector: 'app-product-list',
|
||||
templateUrl: './temporal-product-list.component.html',
|
||||
styleUrls: ['./temporal-product-list.component.css'],
|
||||
standalone: true,
|
||||
imports: [
|
||||
MatCard,
|
||||
MatCardHeader,
|
||||
@ -63,9 +61,9 @@ import { TemporalProductListDatasource } from './temporal-product-list-datasourc
|
||||
],
|
||||
})
|
||||
export class TemporalProductListComponent implements OnInit {
|
||||
searchFilter: Observable<string> = new Observable();
|
||||
menuCategoryFilter: BehaviorSubject<string> = new BehaviorSubject('');
|
||||
saleCategoryFilter: BehaviorSubject<string> = new BehaviorSubject('');
|
||||
searchFilter = new Observable<string>();
|
||||
menuCategoryFilter = new BehaviorSubject<string>('');
|
||||
saleCategoryFilter = new BehaviorSubject<string>('');
|
||||
data: BehaviorSubject<Product[][]> = new BehaviorSubject<Product[][]>([]);
|
||||
dataSource: TemporalProductListDatasource = new TemporalProductListDatasource(
|
||||
this.searchFilter,
|
||||
|
||||
Reference in New Issue
Block a user