Skip to content

Commit

Permalink
fix(material/core): move pseudo-checkbox module to same directory (#2…
Browse files Browse the repository at this point in the history
…4132)

(cherry picked from commit 4eca5c8)
  • Loading branch information
andrewseguin committed Jan 12, 2022
1 parent a7d97d6 commit 0631976
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 11 deletions.
12 changes: 1 addition & 11 deletions src/material/core/selection/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,5 @@
* found in the LICENSE file at https://angular.io/license
*/

import {NgModule} from '@angular/core';
import {MatPseudoCheckbox} from './pseudo-checkbox/pseudo-checkbox';
import {MatCommonModule} from '../common-behaviors/common-module';

@NgModule({
imports: [MatCommonModule],
exports: [MatPseudoCheckbox],
declarations: [MatPseudoCheckbox],
})
export class MatPseudoCheckboxModule {}

export * from './pseudo-checkbox/pseudo-checkbox';
export * from './pseudo-checkbox/pseudo-checkbox-module';
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
/**
* @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 {NgModule} from '@angular/core';
import {MatPseudoCheckbox} from './pseudo-checkbox';
import {MatCommonModule} from '../../common-behaviors/common-module';

@NgModule({
imports: [MatCommonModule],
exports: [MatPseudoCheckbox],
declarations: [MatPseudoCheckbox],
})
export class MatPseudoCheckboxModule {}

0 comments on commit 0631976

Please sign in to comment.