Skip to content

Commit 97d623b

Browse files
committed
cleanup
1 parent 0bba2dc commit 97d623b

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

src/cdk-experimental/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@
77
*/
88

99
export * from './public-api';
10-
export * from '@angular/cdk-experimental/scrolling';

src/cdk-experimental/public-api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
*/
88

99
export * from './version';
10+
export * from '@angular/cdk-experimental/scrolling';

src/cdk/collections/data-source.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
import {Observable} from 'rxjs';
1010
import {CollectionViewer} from './collection-viewer';
1111

12-
1312
export abstract class DataSource<T> {
1413
/**
1514
* Connects a collection viewer (such as a data-table) to this data source. Note that

src/cdk/scrolling/BUILD.bazel

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ ng_module(
88
srcs = glob(["**/*.ts"], exclude=["**/*.spec.ts"]),
99
module_name = "@angular/cdk/scrolling",
1010
deps = [
11-
"//src/cdk/collections",
1211
"//src/cdk/platform",
1312
"@rxjs",
1413
],

src/cdk/scrolling/public-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@
88

99
export * from './scroll-dispatcher';
1010
export * from './scrollable';
11-
export * from './scrolling-module';
1211
export * from './viewport-ruler';
12+
export * from './scrolling-module';

src/demo-app/demo-app-module.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66
* found in the LICENSE file at https://angular.io/license
77
*/
88

9-
import {HttpClientModule} from '@angular/common/http';
109
import {ApplicationRef, NgModule} from '@angular/core';
1110
import {BrowserModule} from '@angular/platform-browser';
12-
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
11+
import {HttpClientModule} from '@angular/common/http';
1312
import {RouterModule} from '@angular/router';
14-
import {AccessibilityDemoModule} from './a11y/a11y-module';
13+
import {BrowserAnimationsModule} from '@angular/platform-browser/animations';
14+
import {ALL_ROUTES} from './demo-app/routes';
1515
import {EntryApp} from './demo-app/demo-app';
1616
import {DemoModule} from './demo-app/demo-module';
17-
import {ALL_ROUTES} from './demo-app/routes';
17+
import {AccessibilityDemoModule} from './a11y/a11y-module';
1818

1919

2020
@NgModule({

0 commit comments

Comments
 (0)