Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions src/a11y-demo/a11y-demo-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,6 @@ export class AccessibilityRoutingModule {}
TabsAccessibilityDemo,
ToolbarAccessibilityDemo,
TooltipAccessibilityDemo,
],
entryComponents: [
DialogAccessibilityDemo,
DialogAddressFormDialog,
DialogFruitExampleDialog,
DialogNeptuneExampleDialog,
DialogNeptuneIFrameDialog,
DialogWelcomeExampleDialog,
FoggyTabContent,
RainyTabContent,
SunnyTabContent,
]
})
export class AccessibilityDemoModule {}
1 change: 0 additions & 1 deletion src/dev-app/bottom-sheet/bottom-sheet-demo-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ import {BottomSheetDemo, ExampleBottomSheet} from './bottom-sheet-demo';
RouterModule.forChild([{path: '', component: BottomSheetDemo}]),
],
declarations: [BottomSheetDemo, ExampleBottomSheet],
entryComponents: [ExampleBottomSheet],
})
export class BottomSheetDemoModule {
}
1 change: 0 additions & 1 deletion src/dev-app/datepicker/datepicker-demo-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ import {CustomHeader, CustomHeaderNgContent, DatepickerDemo} from './datepicker-
RouterModule.forChild([{path: '', component: DatepickerDemo}]),
],
declarations: [CustomHeader, CustomHeaderNgContent, DatepickerDemo],
entryComponents: [CustomHeader, CustomHeaderNgContent],
})
export class DatepickerDemoModule {
}
1 change: 0 additions & 1 deletion src/dev-app/dialog/dialog-demo-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ import {ContentElementDialog, DialogDemo, IFrameDialog, JazzDialog} from './dial
RouterModule.forChild([{path: '', component: DialogDemo}]),
],
declarations: [ContentElementDialog, DialogDemo, IFrameDialog, JazzDialog],
entryComponents: [ContentElementDialog, IFrameDialog, JazzDialog],
})
export class DialogDemoModule {
}
1 change: 0 additions & 1 deletion src/dev-app/focus-trap/focus-trap-demo-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ import {FocusTrapDemo, FocusTrapShadowDomDemo, FocusTrapDialogDemo} from './focu
RouterModule.forChild([{path: '', component: FocusTrapDemo}]),
],
declarations: [FocusTrapDemo, FocusTrapShadowDomDemo, FocusTrapDialogDemo],
entryComponents: [FocusTrapDialogDemo],
})
export class FocusTrapDemoModule {
}
1 change: 0 additions & 1 deletion src/dev-app/portal/portal-demo-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import {PortalDemo, ScienceJoke} from './portal-demo';
RouterModule.forChild([{path: '', component: PortalDemo}]),
],
declarations: [PortalDemo, ScienceJoke],
entryComponents: [ScienceJoke],
})
export class PortalDemoModule {
}
1 change: 0 additions & 1 deletion src/e2e-app/dialog/dialog-e2e-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ import {DialogE2E, TestDialog} from './dialog-e2e';
@NgModule({
imports: [MatDialogModule],
declarations: [DialogE2E, TestDialog],
entryComponents: [TestDialog]
})
export class DialogE2eModule {
}
1 change: 0 additions & 1 deletion tools/example-module/example-module.template
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export const EXAMPLE_LIST = [${exampleList}];
@NgModule({
imports: EXAMPLE_MODULES,
exports: EXAMPLE_MODULES,
entryComponents: EXAMPLE_LIST,
})
export class ExampleModule { }

Expand Down