diff --git a/aio/scripts/_payload-limits.json b/aio/scripts/_payload-limits.json
index 28394ecb8a..c36ff7d9ce 100755
--- a/aio/scripts/_payload-limits.json
+++ b/aio/scripts/_payload-limits.json
@@ -2,8 +2,8 @@
"aio": {
"master": {
"uncompressed": {
- "runtime": 3799,
- "main": 501972,
+ "runtime": 3713,
+ "main": 500343,
"polyfills": 53926
}
}
diff --git a/aio/src/app/custom-elements/element-registry.ts b/aio/src/app/custom-elements/element-registry.ts
index 1359e22752..784ee0332e 100644
--- a/aio/src/app/custom-elements/element-registry.ts
+++ b/aio/src/app/custom-elements/element-registry.ts
@@ -36,10 +36,6 @@ export const ELEMENT_MODULE_PATHS_AS_ROUTES = [
selector: 'code-tabs',
loadChildren: './code/code-tabs.module#CodeTabsModule'
},
- {
- selector: 'expandable-section',
- loadChildren: './expandable-section/expandable-section.module#ExpandableSectionModule'
- },
{
selector: 'live-example',
loadChildren: './live-example/live-example.module#LiveExampleModule'
diff --git a/aio/src/app/custom-elements/expandable-section/expandable-section.component.html b/aio/src/app/custom-elements/expandable-section/expandable-section.component.html
deleted file mode 100644
index e0c5017f03..0000000000
--- a/aio/src/app/custom-elements/expandable-section/expandable-section.component.html
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
- {{title}}
-
-
-
-
diff --git a/aio/src/app/custom-elements/expandable-section/expandable-section.component.ts b/aio/src/app/custom-elements/expandable-section/expandable-section.component.ts
deleted file mode 100644
index 22dfa4b47f..0000000000
--- a/aio/src/app/custom-elements/expandable-section/expandable-section.component.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-/* tslint:disable component-selector */
-import {Component, Input} from '@angular/core';
-
-/** Custom element wrapper for the material expansion panel with a title input. */
-@Component({
- selector: 'aio-expandable-section',
- templateUrl: 'expandable-section.component.html',
-})
-export class ExpandableSectionComponent {
- @Input() title;
-}
diff --git a/aio/src/app/custom-elements/expandable-section/expandable-section.module.ts b/aio/src/app/custom-elements/expandable-section/expandable-section.module.ts
deleted file mode 100644
index 54875b5a31..0000000000
--- a/aio/src/app/custom-elements/expandable-section/expandable-section.module.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { NgModule, Type } from '@angular/core';
-import { ExpandableSectionComponent } from './expandable-section.component';
-import { WithCustomElementComponent } from '../element-registry';
-import { MatExpansionModule } from '@angular/material';
-
-@NgModule({
- imports: [ MatExpansionModule ],
- declarations: [ ExpandableSectionComponent, ],
- entryComponents: [ ExpandableSectionComponent ]
-})
-export class ExpandableSectionModule implements WithCustomElementComponent {
- customElementComponent: Type = ExpandableSectionComponent;
-}