Skip to content

Commit 260e95d

Browse files
committed
build(): fix source maps
1 parent 811e504 commit 260e95d

File tree

219 files changed

+1061
-211
lines changed

Some content is hidden

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

219 files changed

+1061
-211
lines changed

src/cdk/a11y/public_api.ts renamed to src/cdk/a11y/a11y-module.ts

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,3 @@ import {CdkMonitorFocus, FOCUS_MONITOR_PROVIDER} from './focus-monitor';
2929
]
3030
})
3131
export class A11yModule {}
32-
33-
export * from './activedescendant-key-manager';
34-
export * from './aria-describer';
35-
export * from './fake-mousedown';
36-
export * from './focus-key-manager';
37-
export * from './focus-trap';
38-
export * from './interactivity-checker';
39-
export * from './list-key-manager';
40-
export * from './live-announcer';
41-
export * from './focus-monitor';

src/cdk/a11y/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/a11y/public-api.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export * from './activedescendant-key-manager';
10+
export * from './aria-describer';
11+
export * from './fake-mousedown';
12+
export * from './focus-key-manager';
13+
export * from './focus-trap';
14+
export * from './interactivity-checker';
15+
export * from './list-key-manager';
16+
export * from './live-announcer';
17+
export * from './focus-monitor';
18+
export * from './a11y-module';

src/cdk/a11y/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/a11y/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/a11y",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/bidi/public_api.ts renamed to src/cdk/bidi/bidi-module.ts

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,6 @@ import {DOCUMENT} from '@angular/platform-browser';
1111
import {Dir} from './dir';
1212
import {DIR_DOCUMENT, Directionality} from './directionality';
1313

14-
export {
15-
Directionality,
16-
DIRECTIONALITY_PROVIDER_FACTORY,
17-
DIRECTIONALITY_PROVIDER,
18-
DIR_DOCUMENT,
19-
Direction,
20-
} from './directionality';
21-
export {Dir} from './dir';
2214

2315
@NgModule({
2416
exports: [Dir],

src/cdk/bidi/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/bidi/public-api.ts

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export {
10+
Directionality,
11+
DIRECTIONALITY_PROVIDER_FACTORY,
12+
DIRECTIONALITY_PROVIDER,
13+
DIR_DOCUMENT,
14+
Direction,
15+
} from './directionality';
16+
export {Dir} from './dir';
17+
export * from './bidi-module';
18+

src/cdk/bidi/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/bidi/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/bidi",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/coercion/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';
File renamed without changes.

src/cdk/coercion/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/coercion/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/coercion",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/collections/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';
File renamed without changes.

src/cdk/collections/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/collections/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/collections",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/keycodes/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';
File renamed without changes.

src/cdk/keycodes/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/keycodes/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/keycodes",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/layout/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8-
export * from './public_api';
8+
export * from './public-api';
File renamed without changes.

src/cdk/layout/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/layout/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/layout",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/observers/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';
File renamed without changes.

src/cdk/observers/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/observers/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/observers",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/overlay/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/overlay/public_api.ts renamed to src/cdk/overlay/overlay-module.ts

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
* Use of this source code is governed by an MIT-style license that can be
66
* found in the LICENSE file at https://angular.io/license
77
*/
8+
89
import {NgModule, Provider} from '@angular/core';
910
import {PortalModule} from '@angular/cdk/portal';
1011
import {Overlay} from './overlay';
@@ -18,7 +19,6 @@ import {OverlayPositionBuilder} from './position/overlay-position-builder';
1819
import {OVERLAY_CONTAINER_PROVIDER} from './overlay-container';
1920
import {ScrollStrategyOptions} from './scroll/scroll-strategy-options';
2021

21-
2222
export const OVERLAY_PROVIDERS: Provider[] = [
2323
Overlay,
2424
OverlayPositionBuilder,
@@ -34,22 +34,3 @@ export const OVERLAY_PROVIDERS: Provider[] = [
3434
providers: [OVERLAY_PROVIDERS, ScrollStrategyOptions],
3535
})
3636
export class OverlayModule {}
37-
38-
39-
export * from './overlay-config';
40-
export {Overlay} from './overlay';
41-
export {OverlayContainer} from './overlay-container';
42-
export {FullscreenOverlayContainer} from './fullscreen-overlay-container';
43-
export {OverlayRef} from './overlay-ref';
44-
export {ConnectedOverlayDirective, OverlayOrigin} from './overlay-directives';
45-
export {ViewportRuler} from '@angular/cdk/scrolling';
46-
export {ComponentType} from '@angular/cdk/portal';
47-
48-
export * from './position/connected-position';
49-
export * from './scroll/index';
50-
51-
// Export pre-defined position strategies and interface to build custom ones.
52-
export {PositionStrategy} from './position/position-strategy';
53-
export {GlobalPositionStrategy} from './position/global-position-strategy';
54-
export {ConnectedPositionStrategy} from './position/connected-position-strategy';
55-
export {VIEWPORT_RULER_PROVIDER} from '@angular/cdk/scrolling';

src/cdk/overlay/public-api.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export * from './overlay-config';
10+
export {Overlay} from './overlay';
11+
export {OverlayContainer} from './overlay-container';
12+
export {FullscreenOverlayContainer} from './fullscreen-overlay-container';
13+
export {OverlayRef} from './overlay-ref';
14+
export {ConnectedOverlayDirective, OverlayOrigin} from './overlay-directives';
15+
export {ViewportRuler} from '@angular/cdk/scrolling';
16+
export {ComponentType} from '@angular/cdk/portal';
17+
18+
export * from './position/connected-position';
19+
export * from './scroll/index';
20+
export * from './overlay-module';
21+
22+
// Export pre-defined position strategies and interface to build custom ones.
23+
export {PositionStrategy} from './position/position-strategy';
24+
export {GlobalPositionStrategy} from './position/global-position-strategy';
25+
export {ConnectedPositionStrategy} from './position/connected-position-strategy';
26+
export {VIEWPORT_RULER_PROVIDER} from '@angular/cdk/scrolling';

src/cdk/overlay/tsconfig-build.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"extends": "../tsconfig-build",
33
"files": [
4-
"public_api.ts"
4+
"public-api.ts"
55
],
66
"angularCompilerOptions": {
77
"annotateForClosureCompiler": true,

src/cdk/overlay/tsconfig-es5.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"extends": "../tsconfig-es5",
3+
"files": [
4+
"public-api.ts"
5+
],
6+
"angularCompilerOptions": {
7+
"annotateForClosureCompiler": true,
8+
"strictMetadataEmit": true,
9+
"flatModuleOutFile": "index.js",
10+
"flatModuleId": "@angular/cdk/overlay",
11+
"skipTemplateCodegen": true
12+
}
13+
}

src/cdk/platform/index.ts

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

9-
export * from './public_api';
9+
export * from './public-api';

src/cdk/platform/public_api.ts renamed to src/cdk/platform/platform-module.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,3 @@ import {Platform} from './platform';
1414
providers: [Platform]
1515
})
1616
export class PlatformModule {}
17-
18-
19-
export * from './platform';
20-
export * from './features';

src/cdk/platform/public-api.ts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/**
2+
* @license
3+
* Copyright Google Inc. All Rights Reserved.
4+
*
5+
* Use of this source code is governed by an MIT-style license that can be
6+
* found in the LICENSE file at https://angular.io/license
7+
*/
8+
9+
export * from './platform';
10+
export * from './features';
11+
export * from './platform-module';

0 commit comments

Comments
 (0)