multi-selection filter enable in all screen, icon added in sidebr sub-menus, remove un-used components, add border on left of row on hover, on click same open menu page reload

This commit is contained in:
Gagan7900
2026-08-14 13:48:05 +05:30
parent 758ceedce6
commit db49e7cb91
69 changed files with 562 additions and 467 deletions
+3 -1
View File
@@ -1,5 +1,5 @@
import { ApplicationConfig, importProvidersFrom } from '@angular/core';
import { provideRouter, withRouterConfig } from '@angular/router';
import { provideRouter, withRouterConfig, RouteReuseStrategy } from '@angular/router';
import { provideAnimations } from '@angular/platform-browser/animations';
import { provideHttpClient, withInterceptors } from '@angular/common/http';
import { App_Route } from './app.routes';
@@ -8,10 +8,12 @@ import { provideCharts, withDefaultRegisterables } from 'ng2-charts';
import { authInterceptor } from './core/interceptors/auth.interceptor';
import { errorInterceptor } from './core/interceptors/error.interceptor';
import { loadingInterceptor } from './core/interceptors/loading-interceptor';
import { ReloadRouteReuseStrategy } from './core/strategies/reload-route-reuse.strategy';
export const appConfig: ApplicationConfig = {
providers: [
provideRouter(App_Route, withRouterConfig({ onSameUrlNavigation: 'reload' })),
{ provide: RouteReuseStrategy, useClass: ReloadRouteReuseStrategy },
provideHttpClient(withInterceptors([authInterceptor, errorInterceptor,loadingInterceptor])),
provideAnimations(),
provideCharts(withDefaultRegisterables()),