@angular/cdk 19.1.3 → 19.1.4
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/fesm2022/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/overlay.mjs +57 -68
- package/fesm2022/overlay.mjs.map +1 -1
- package/fesm2022/table.mjs +13 -14
- package/fesm2022/table.mjs.map +1 -1
- package/overlay/index.d.ts +1 -6
- package/package.json +6 -2
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
package/overlay/index.d.ts
CHANGED
|
@@ -907,16 +907,13 @@ export declare class OverlayRef implements PortalOutlet {
|
|
|
907
907
|
private _animationsDisabled;
|
|
908
908
|
private _injector;
|
|
909
909
|
private _renderer;
|
|
910
|
-
private _backdropElement;
|
|
911
|
-
private _backdropTimeout;
|
|
912
910
|
private readonly _backdropClick;
|
|
913
911
|
private readonly _attachments;
|
|
914
912
|
private readonly _detachments;
|
|
915
913
|
private _positionStrategy;
|
|
916
914
|
private _scrollStrategy;
|
|
917
915
|
private _locationChanges;
|
|
918
|
-
private
|
|
919
|
-
private _cleanupBackdropTransitionEnd;
|
|
916
|
+
private _backdropRef;
|
|
920
917
|
/**
|
|
921
918
|
* Reference to the parent of the `_host` at the time it was detached. Used to restore
|
|
922
919
|
* the `_host` to its original position in the DOM when it gets re-attached.
|
|
@@ -1007,8 +1004,6 @@ export declare class OverlayRef implements PortalOutlet {
|
|
|
1007
1004
|
private _detachContentWhenEmpty;
|
|
1008
1005
|
/** Disposes of a scroll strategy. */
|
|
1009
1006
|
private _disposeScrollStrategy;
|
|
1010
|
-
/** Removes a backdrop element from the DOM. */
|
|
1011
|
-
private _disposeBackdrop;
|
|
1012
1007
|
}
|
|
1013
1008
|
|
|
1014
1009
|
/** Size properties for an overlay. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@angular/cdk",
|
|
3
|
-
"version": "19.1.
|
|
3
|
+
"version": "19.1.4",
|
|
4
4
|
"description": "Angular Material Component Development Kit",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -170,7 +170,11 @@
|
|
|
170
170
|
},
|
|
171
171
|
"schematics": "./schematics/collection.json",
|
|
172
172
|
"ng-update": {
|
|
173
|
-
"migrations": "./schematics/migration.json"
|
|
173
|
+
"migrations": "./schematics/migration.json",
|
|
174
|
+
"packageGroup": [
|
|
175
|
+
"@angular/material",
|
|
176
|
+
"@angular/cdk"
|
|
177
|
+
]
|
|
174
178
|
},
|
|
175
179
|
"sideEffects": false,
|
|
176
180
|
"module": "./fesm2022/cdk.mjs",
|
|
@@ -29,7 +29,7 @@ function default_1() {
|
|
|
29
29
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
30
30
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
31
31
|
// dependencies in new CLI projects.
|
|
32
|
-
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.
|
|
32
|
+
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.4`);
|
|
33
33
|
// Add a task to run the package manager. This is necessary because we updated the
|
|
34
34
|
// workspace "package.json" file and we want lock files to reflect the new version range.
|
|
35
35
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
@@ -29,7 +29,7 @@ function default_1() {
|
|
|
29
29
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
30
30
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
31
31
|
// dependencies in new CLI projects.
|
|
32
|
-
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.
|
|
32
|
+
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~19.1.4`);
|
|
33
33
|
// Add a task to run the package manager. This is necessary because we updated the
|
|
34
34
|
// workspace "package.json" file and we want lock files to reflect the new version range.
|
|
35
35
|
context.addTask(new tasks_1.NodePackageInstallTask());
|