@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
|
@@ -1974,18 +1974,23 @@ FlexibleConnectedPositionStrategy = /** @class */ (function () {
|
|
|
1974
1974
|
* Sets the list of Scrollable containers that host the origin element so that
|
|
1975
1975
|
* on reposition we can evaluate if it or the overlay has been clipped or outside view. Every
|
|
1976
1976
|
* Scrollable must be an ancestor element of the strategy's origin element.
|
|
1977
|
+
* @template THIS
|
|
1978
|
+
* @this {THIS}
|
|
1977
1979
|
* @param {?} scrollables
|
|
1978
|
-
* @return {
|
|
1980
|
+
* @return {THIS}
|
|
1979
1981
|
*/
|
|
1980
1982
|
FlexibleConnectedPositionStrategy.prototype.withScrollableContainers = /**
|
|
1981
1983
|
* Sets the list of Scrollable containers that host the origin element so that
|
|
1982
1984
|
* on reposition we can evaluate if it or the overlay has been clipped or outside view. Every
|
|
1983
1985
|
* Scrollable must be an ancestor element of the strategy's origin element.
|
|
1986
|
+
* @template THIS
|
|
1987
|
+
* @this {THIS}
|
|
1984
1988
|
* @param {?} scrollables
|
|
1985
|
-
* @return {
|
|
1989
|
+
* @return {THIS}
|
|
1986
1990
|
*/
|
|
1987
1991
|
function (scrollables) {
|
|
1988
|
-
this.scrollables = scrollables;
|
|
1992
|
+
(/** @type {?} */ (this)).scrollables = scrollables;
|
|
1993
|
+
return (/** @type {?} */ (this));
|
|
1989
1994
|
};
|
|
1990
1995
|
/**
|
|
1991
1996
|
* Adds new preferred positions.
|