mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
In the #48216 Material deps were updated to v15, but the components and modules in DevTools were not updated to MDC nor replaced with the legacy definitions. PR Close #48420
42 lines
1.5 KiB
TypeScript
42 lines
1.5 KiB
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.io/license
|
|
*/
|
|
|
|
import {CommonModule} from '@angular/common';
|
|
import {NgModule} from '@angular/core';
|
|
import {MatIconModule} from '@angular/material/icon';
|
|
import {MatLegacyButtonModule as MatButtonModule} from '@angular/material/legacy-button';
|
|
import {MatLegacyMenuModule as MatMenuModule} from '@angular/material/legacy-menu';
|
|
import {MatLegacySlideToggleModule as MatSlideToggleModule} from '@angular/material/legacy-slide-toggle';
|
|
import {MatLegacyTabsModule as MatTabsModule} from '@angular/material/legacy-tabs';
|
|
import {MatLegacyTooltipModule as MatTooltipModule} from '@angular/material/legacy-tooltip';
|
|
|
|
import {DevToolsTabsComponent} from './devtools-tabs.component';
|
|
import {DirectiveExplorerModule} from './directive-explorer/directive-explorer.module';
|
|
import {ProfilerModule} from './profiler/profiler.module';
|
|
import {RouterTreeModule} from './router-tree/router-tree.module';
|
|
import {TabUpdate} from './tab-update/index';
|
|
|
|
@NgModule({
|
|
declarations: [DevToolsTabsComponent],
|
|
imports: [
|
|
MatTabsModule,
|
|
MatIconModule,
|
|
DirectiveExplorerModule,
|
|
ProfilerModule,
|
|
RouterTreeModule,
|
|
CommonModule,
|
|
MatMenuModule,
|
|
MatButtonModule,
|
|
MatSlideToggleModule,
|
|
MatTooltipModule,
|
|
],
|
|
providers: [TabUpdate],
|
|
exports: [DevToolsTabsComponent],
|
|
})
|
|
export class DevToolsTabModule {
|
|
}
|