Skip to content

Commit

Permalink
refactor: modify ExtensionsModule to MaterialExtensionsModule
Browse files Browse the repository at this point in the history
  • Loading branch information
nzbin committed Dec 7, 2019
1 parent 1029636 commit a03fa5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion projects/demo/src/app/app.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ <h2>Data Grid</h2>
<h1>Experiment</h1>
<h2>3D Text</h2>
<div>
<!-- <mtx-text3d text="3D Text"></mtx-text3d> -->
<mtx-text3d text="3D Text"></mtx-text3d>
</div>
4 changes: 2 additions & 2 deletions projects/demo/src/app/app.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
MtxAlertModule,
MtxDataGridModule,
} from '@ng-matero/extensions';
// import { MtxText3dModule } from '@ng-matero/extensions/text3d';
import { MtxText3dModule } from '@ng-matero/extensions/text3d';

import { DialogOverviewComponent } from './app.component';

Expand All @@ -27,7 +27,7 @@ import { DialogOverviewComponent } from './app.component';
MtxDialogModule,
MtxAlertModule,
MtxDataGridModule,
// MtxText3dModule,
MtxText3dModule,
],
providers: [],
bootstrap: [AppComponent],
Expand Down
2 changes: 1 addition & 1 deletion projects/extensions/extensions.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ import { MtxProgressModule } from '@ng-matero/extensions/progress';
@NgModule({
exports: [MtxAlertModule, MtxDataGridModule, MtxDialogModule, MtxProgressModule],
})
export class ExtensionsModule { }
export class MaterialExtensionsModule { }

0 comments on commit a03fa5f

Please sign in to comment.