2021-12-10 02:37:01 +00:00
|
|
|
/**
|
|
|
|
|
* @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
|
|
|
|
|
*/
|
|
|
|
|
|
2021-12-09 05:44:17 +00:00
|
|
|
import {CommonModule} from '@angular/common';
|
|
|
|
|
import {NgModule} from '@angular/core';
|
2023-08-30 22:41:16 +00:00
|
|
|
import {MatButtonModule} from '@angular/material/button';
|
2021-12-09 05:44:17 +00:00
|
|
|
import {MatIconModule} from '@angular/material/icon';
|
2023-08-30 22:41:16 +00:00
|
|
|
import {MatMenuModule} from '@angular/material/menu';
|
|
|
|
|
import {MatSlideToggleModule} from '@angular/material/slide-toggle';
|
|
|
|
|
import {MatTabsModule} from '@angular/material/tabs';
|
|
|
|
|
import {MatTooltipModule} from '@angular/material/tooltip';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
2021-12-09 05:44:17 +00:00
|
|
|
import {DevToolsTabsComponent} from './devtools-tabs.component';
|
|
|
|
|
import {DirectiveExplorerModule} from './directive-explorer/directive-explorer.module';
|
2023-10-05 08:00:31 +00:00
|
|
|
import {InjectorTreeComponent} from './injector-tree/injector-tree.component';
|
2021-12-09 05:44:17 +00:00
|
|
|
import {ProfilerModule} from './profiler/profiler.module';
|
|
|
|
|
import {RouterTreeModule} from './router-tree/router-tree.module';
|
|
|
|
|
import {TabUpdate} from './tab-update/index';
|
2020-01-27 18:40:18 +00:00
|
|
|
|
|
|
|
|
@NgModule({
|
2021-02-26 05:25:47 +00:00
|
|
|
declarations: [DevToolsTabsComponent],
|
2020-05-07 03:21:32 +00:00
|
|
|
imports: [
|
2023-10-05 08:00:31 +00:00
|
|
|
MatTabsModule, MatIconModule, DirectiveExplorerModule, ProfilerModule, RouterTreeModule,
|
|
|
|
|
CommonModule, MatMenuModule, MatButtonModule, MatSlideToggleModule, MatTooltipModule,
|
|
|
|
|
InjectorTreeComponent
|
2020-05-07 03:21:32 +00:00
|
|
|
],
|
2020-05-08 22:12:17 +00:00
|
|
|
providers: [TabUpdate],
|
2020-02-07 21:25:16 +00:00
|
|
|
exports: [DevToolsTabsComponent],
|
2020-01-27 18:40:18 +00:00
|
|
|
})
|
2021-12-09 05:44:17 +00:00
|
|
|
export class DevToolsTabModule {
|
|
|
|
|
}
|