feat: add licenses management module with filtering and listing functionality
- Introduced new constants and routes for licenses management. - Created components for licenses filter form and list display. - Implemented services for fetching licenses data from the API. - Added dialog components for creating and editing licenses. - Updated partner menu to include a link to licenses. - Refactored existing components to improve code structure and maintainability.
This commit is contained in:
@@ -107,7 +107,7 @@ export class PageDataListComponent<I> {
|
||||
@Output() onDelete = new EventEmitter<I>();
|
||||
@Output() onDetails = new EventEmitter<I>();
|
||||
@Output() onAdd = new EventEmitter<void>();
|
||||
@Output() pageChange = new EventEmitter<any>();
|
||||
@Output() onChangePage = new EventEmitter<any>();
|
||||
@Output() onThumbnailClick = new EventEmitter<I>();
|
||||
@Output() onRefresh = new EventEmitter();
|
||||
|
||||
@@ -150,7 +150,7 @@ export class PageDataListComponent<I> {
|
||||
};
|
||||
|
||||
onPage = ($event: any) => {
|
||||
this.pageChange.emit($event);
|
||||
this.onChangePage.emit($event);
|
||||
};
|
||||
|
||||
openThumbnailModal = (item: I) => {
|
||||
|
||||
Reference in New Issue
Block a user