@angular/cdk 7.3.6 → 7.3.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/cdk-overlay.umd.js +8 -3
- package/bundles/cdk-overlay.umd.js.map +1 -1
- package/bundles/cdk-overlay.umd.min.js +2 -2
- package/bundles/cdk-overlay.umd.min.js.map +1 -1
- package/bundles/cdk-platform.umd.js +12 -1
- package/bundles/cdk-platform.umd.js.map +1 -1
- package/bundles/cdk-platform.umd.min.js +1 -1
- package/bundles/cdk-platform.umd.min.js.map +1 -1
- package/bundles/cdk-table.umd.js +2 -0
- package/bundles/cdk-table.umd.js.map +1 -1
- package/bundles/cdk-table.umd.min.js.map +1 -1
- package/bundles/cdk.umd.js +1 -1
- package/bundles/cdk.umd.js.map +1 -1
- package/bundles/cdk.umd.min.js +1 -1
- package/bundles/cdk.umd.min.js.map +1 -1
- package/esm2015/cdk.js +1 -1
- package/esm2015/cdk.js.map +1 -1
- package/esm2015/overlay.js +5 -2
- package/esm2015/overlay.js.map +1 -1
- package/esm2015/platform.js +12 -1
- package/esm2015/platform.js.map +1 -1
- package/esm2015/table.js +2 -0
- package/esm2015/table.js.map +1 -1
- package/esm5/cdk.es5.js +1 -1
- package/esm5/cdk.es5.js.map +1 -1
- package/esm5/overlay.es5.js +8 -3
- package/esm5/overlay.es5.js.map +1 -1
- package/esm5/platform.es5.js +12 -1
- package/esm5/platform.es5.js.map +1 -1
- package/esm5/table.es5.js +2 -0
- package/esm5/table.es5.js.map +1 -1
- package/overlay/typings/position/flexible-connected-position-strategy.d.ts +1 -1
- package/package.json +3 -3
- package/platform/typings/index.metadata.json +1 -1
- package/table/typings/index.metadata.json +1 -1
- package/table/typings/table.d.ts +2 -0
- package/typings/esm5/index.metadata.json +1 -1
- package/typings/esm5/overlay/position/flexible-connected-position-strategy.d.ts +1 -1
- package/typings/esm5/platform/index.metadata.json +1 -1
- package/typings/esm5/table/index.metadata.json +1 -1
- package/typings/esm5/table/table.d.ts +2 -0
- package/typings/index.metadata.json +1 -1
- package/typings/overlay/position/flexible-connected-position-strategy.d.ts +1 -1
- package/typings/platform/index.metadata.json +1 -1
- package/typings/table/index.metadata.json +1 -1
- package/typings/table/table.d.ts +2 -0
- package/schematics/ng-update/data/attribute-selectors.ts +0 -35
- package/schematics/ng-update/data/class-names.ts +0 -55
- package/schematics/ng-update/data/constructor-checks.ts +0 -22
- package/schematics/ng-update/data/css-selectors.ts +0 -30
- package/schematics/ng-update/data/element-selectors.ts +0 -21
- package/schematics/ng-update/data/index.ts +0 -17
- package/schematics/ng-update/data/input-names.ts +0 -118
- package/schematics/ng-update/data/method-call-checks.ts +0 -39
- package/schematics/ng-update/data/output-names.ts +0 -28
- package/schematics/ng-update/data/property-names.ts +0 -164
package/esm2015/cdk.js
CHANGED
package/esm2015/cdk.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cdk.js","sources":["../../src/cdk/version.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('7.3.
|
|
1
|
+
{"version":3,"file":"cdk.js","sources":["../../src/cdk/version.ts"],"sourcesContent":["/**\n * @license\n * Copyright Google LLC All Rights Reserved.\n *\n * Use of this source code is governed by an MIT-style license that can be\n * found in the LICENSE file at https://angular.io/license\n */\n\nimport {Version} from '@angular/core';\n\n/** Current version of the Angular Component Development Kit. */\nexport const VERSION = new Version('7.3.7');\n"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAWA,AAAA,MAAa,OAAO,GAAG,IAAI,OAAO,CAAC,mBAAmB,CAAC;;;;;;;;;;;;;;"}
|
package/esm2015/overlay.js
CHANGED
|
@@ -1559,11 +1559,14 @@ class FlexibleConnectedPositionStrategy {
|
|
|
1559
1559
|
* Sets the list of Scrollable containers that host the origin element so that
|
|
1560
1560
|
* on reposition we can evaluate if it or the overlay has been clipped or outside view. Every
|
|
1561
1561
|
* Scrollable must be an ancestor element of the strategy's origin element.
|
|
1562
|
+
* @template THIS
|
|
1563
|
+
* @this {THIS}
|
|
1562
1564
|
* @param {?} scrollables
|
|
1563
|
-
* @return {
|
|
1565
|
+
* @return {THIS}
|
|
1564
1566
|
*/
|
|
1565
1567
|
withScrollableContainers(scrollables) {
|
|
1566
|
-
this.scrollables = scrollables;
|
|
1568
|
+
(/** @type {?} */ (this)).scrollables = scrollables;
|
|
1569
|
+
return (/** @type {?} */ (this));
|
|
1567
1570
|
}
|
|
1568
1571
|
/**
|
|
1569
1572
|
* Adds new preferred positions.
|