Skip to content

Commit 0631976

Browse files
committed
fix(material/core): move pseudo-checkbox module to same directory (#24132)
(cherry picked from commit 4eca5c8)
1 parent a7d97d6 commit 0631976

File tree

2 files changed

+19
-11
lines changed

2 files changed

+19
-11
lines changed

src/material/core/selection/index.ts

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,5 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {NgModule} from '@angular/core';
10-
import {MatPseudoCheckbox} from './pseudo-checkbox/pseudo-checkbox';
11-
import {MatCommonModule} from '../common-behaviors/common-module';
12-
13-
@NgModule({
14-
imports: [MatCommonModule],
15-
exports: [MatPseudoCheckbox],
16-
declarations: [MatPseudoCheckbox],
17-
})
18-
export class MatPseudoCheckboxModule {}
19-
209
export * from './pseudo-checkbox/pseudo-checkbox';
10+
export * from './pseudo-checkbox/pseudo-checkbox-module';
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright Google LLC All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
import {NgModule} from '@angular/core';
10+
import {MatPseudoCheckbox} from './pseudo-checkbox';
11+
import {MatCommonModule} from '../../common-behaviors/common-module';
12+
13+
@NgModule({
14+
imports: [MatCommonModule],
15+
exports: [MatPseudoCheckbox],
16+
declarations: [MatPseudoCheckbox],
17+
})
18+
export class MatPseudoCheckboxModule {}

0 commit comments

Comments
 (0)