diff --git a/src/demo-app/tsconfig-aot.json b/src/demo-app/tsconfig-aot.json index eadf8e0b2520..ddf458a1634b 100644 --- a/src/demo-app/tsconfig-aot.json +++ b/src/demo-app/tsconfig-aot.json @@ -5,6 +5,7 @@ "extends": "./tsconfig-build", "compilerOptions": { "experimentalDecorators": true, + "outDir": ".", "paths": { "@angular/material": ["./material"] } diff --git a/src/lib/core/core.ts b/src/lib/core/core.ts index 4ae90436c01c..5f6ebe2731c2 100644 --- a/src/lib/core/core.ts +++ b/src/lib/core/core.ts @@ -36,9 +36,6 @@ export {DomPortalHost} from './portal/dom-portal-host'; // Platform export * from './platform/index'; -/** @deprecated */ -export {Platform as MdPlatform} from './platform/platform'; - // Overlay export {Overlay, OVERLAY_PROVIDERS} from './overlay/overlay'; export {OverlayContainer} from './overlay/overlay-container'; @@ -75,9 +72,6 @@ export { // Selection export * from './selection/selection'; -/** @deprecated */ -export {LiveAnnouncer as MdLiveAnnouncer} from './a11y/live-announcer'; - export * from './a11y/focus-trap'; export {InteractivityChecker} from './a11y/interactivity-checker'; export {isFakeMousedownFromScreenReader} from './a11y/fake-mousedown'; @@ -89,10 +83,6 @@ export { UniqueSelectionDispatcherListener, UNIQUE_SELECTION_DISPATCHER_PROVIDER, } from './coordination/unique-selection-dispatcher'; -/** @deprecated */ -export { - UniqueSelectionDispatcher as MdUniqueSelectionDispatcher -} from './coordination/unique-selection-dispatcher'; export {MdLineModule, MdLine, MdLineSetter} from './line/line';