34 lines
916 B
TypeScript
34 lines
916 B
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.dev/license
|
||
|
|
*/
|
||
|
|
|
||
|
|
import {NgModule} from '@angular/core';
|
||
|
|
|
||
|
|
import {CdkTreeModule} from '@angular/cdk/tree';
|
||
|
|
import {MatCommonModule} from '@angular/material/core';
|
||
|
|
import {MatNestedTreeNode, MatTreeNodeDef, MatTreeNode} from './node';
|
||
|
|
import {MatTree} from './tree';
|
||
|
|
import {MatTreeNodeToggle} from './toggle';
|
||
|
|
import {MatTreeNodeOutlet} from './outlet';
|
||
|
|
import {MatTreeNodePadding} from './padding';
|
||
|
|
|
||
|
|
const MAT_TREE_DIRECTIVES = [
|
||
|
|
MatNestedTreeNode,
|
||
|
|
MatTreeNodeDef,
|
||
|
|
MatTreeNodePadding,
|
||
|
|
MatTreeNodeToggle,
|
||
|
|
MatTree,
|
||
|
|
MatTreeNode,
|
||
|
|
MatTreeNodeOutlet,
|
||
|
|
];
|
||
|
|
|
||
|
|
@NgModule({
|
||
|
|
imports: [CdkTreeModule, MatCommonModule, ...MAT_TREE_DIRECTIVES],
|
||
|
|
exports: [MatCommonModule, MAT_TREE_DIRECTIVES],
|
||
|
|
})
|
||
|
|
export class MatTreeModule {}
|