Skip to content

Commit 95753b7

Browse files
authoredApr 15, 2023
feat: convert to standalone (#1200)
1 parent dffb7fd commit 95753b7

File tree

92 files changed

+545
-988
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+545
-988
lines changed
 

‎material.angular.io/scenes/src/app/app-routing.module.ts ‎material.angular.io/scenes/src/app/app-routes.ts

+1-10
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
import {ComponentType} from '@angular/cdk/overlay';
2-
import {NgModule} from '@angular/core';
3-
import {RouterModule} from '@angular/router';
42
import {SceneViewer} from './scene-viewer/scene-viewer';
53
import {AutocompleteScene} from './scenes/autocomplete/autocomplete-scene';
64
import {BadgeScene} from './scenes/badge/badge-scene';
@@ -51,7 +49,7 @@ type SceneViewerRoute = {
5149
}
5250
};
5351

54-
const routes: SceneViewerRoute[] = [
52+
export const routes: SceneViewerRoute[] = [
5553
{path: 'autocomplete', component: SceneViewer, data: {scene: AutocompleteScene}},
5654
{path: 'badge', component: SceneViewer, data: {scale: 1.5, scene: BadgeScene}},
5755
{path: 'bottom-sheet', component: SceneViewer, data: {scene: BottomSheetScene}},
@@ -94,10 +92,3 @@ const routes: SceneViewerRoute[] = [
9492
{path: 'tree', component: SceneViewer, data: {scene: TreeScene}},
9593
].sort((a, b) => (a.path > b.path) ? 1 : ((b.path > a.path) ? -1 : 0))
9694
.map((route: SceneViewerRoute) => ({...route, data: {...route.data, hueRotate: 15 * hue++}}));
97-
98-
@NgModule({
99-
imports: [RouterModule.forRoot(routes)],
100-
exports: [RouterModule]
101-
})
102-
export class AppRoutingModule {
103-
}

‎material.angular.io/scenes/src/app/app.component.spec.ts

+4-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,11 @@
1-
import { TestBed, waitForAsync } from '@angular/core/testing';
2-
import { RouterTestingModule } from '@angular/router/testing';
3-
import { AppComponent } from './app.component';
1+
import {TestBed, waitForAsync} from '@angular/core/testing';
2+
import {RouterTestingModule} from '@angular/router/testing';
3+
import {AppComponent} from './app.component';
44

55
describe('AppComponent', () => {
66
beforeEach(waitForAsync(() => {
77
TestBed.configureTestingModule({
8-
imports: [
9-
RouterTestingModule
10-
],
11-
declarations: [
12-
AppComponent
13-
],
8+
imports: [RouterTestingModule, AppComponent],
149
}).compileComponents();
1510
}));
1611

0 commit comments

Comments
 (0)
Please sign in to comment.