Skip to content

Commit

Permalink
bring back the material module for backwards compat
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika committed Aug 9, 2024
1 parent 62788ce commit 10a36f8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lib/core/src/lib/material.module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
*/

import { NgModule } from '@angular/core';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { MatDatetimepickerModule, MatNativeDatetimeModule } from '@mat-datetimepicker/core';
import { MatFormFieldModule } from '@angular/material/form-field';
import { MatAutocompleteModule } from '@angular/material/autocomplete';
Expand Down Expand Up @@ -47,6 +48,8 @@ import { MatBadgeModule } from '@angular/material/badge';
/** @deprecated This module is deprecated and will be removed in a future release. */
@NgModule({
imports: [
FormsModule,
ReactiveFormsModule,
MatAutocompleteModule,
MatButtonModule,
MatCardModule,
Expand Down Expand Up @@ -79,6 +82,8 @@ import { MatBadgeModule } from '@angular/material/badge';
MatFormFieldModule
],
exports: [
FormsModule,
ReactiveFormsModule,
MatAutocompleteModule,
MatButtonModule,
MatCardModule,
Expand Down

0 comments on commit 10a36f8

Please sign in to comment.