@angular/cdk 16.2.4 → 16.2.6
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/esm2022/menu/context-menu-trigger.mjs +21 -13
- package/esm2022/scrolling/virtual-scroll-viewport.mjs +6 -2
- package/esm2022/version.mjs +1 -1
- package/fesm2022/cdk.mjs +1 -1
- package/fesm2022/cdk.mjs.map +1 -1
- package/fesm2022/menu.mjs +20 -12
- package/fesm2022/menu.mjs.map +1 -1
- package/fesm2022/scrolling.mjs +5 -1
- package/fesm2022/scrolling.mjs.map +1 -1
- package/menu/index.d.ts +2 -2
- package/package.json +1 -1
- package/schematics/ng-add/index.js +1 -1
- package/schematics/ng-add/index.mjs +1 -1
package/menu/index.d.ts
CHANGED
|
@@ -68,13 +68,13 @@ export declare class CdkContextMenuTrigger extends CdkMenuTriggerBase implements
|
|
|
68
68
|
/**
|
|
69
69
|
* Subscribe to the overlays outside pointer events stream and handle closing out the stack if a
|
|
70
70
|
* click occurs outside the menus.
|
|
71
|
-
* @param
|
|
71
|
+
* @param userEvent User-generated event that opened the menu.
|
|
72
72
|
*/
|
|
73
73
|
private _subscribeToOutsideClicks;
|
|
74
74
|
/**
|
|
75
75
|
* Open the attached menu at the specified location.
|
|
76
|
+
* @param userEvent User-generated event that opened the menu
|
|
76
77
|
* @param coordinates where to open the context menu
|
|
77
|
-
* @param ignoreFirstOutsideAuxClick Whether to ignore the first auxclick outside the menu after opening.
|
|
78
78
|
*/
|
|
79
79
|
private _open;
|
|
80
80
|
static ɵfac: i0.ɵɵFactoryDeclaration<CdkContextMenuTrigger, never>;
|
package/package.json
CHANGED
|
@@ -28,7 +28,7 @@ function default_1() {
|
|
|
28
28
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
29
29
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
30
30
|
// dependencies in new CLI projects.
|
|
31
|
-
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~16.2.
|
|
31
|
+
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~16.2.6`);
|
|
32
32
|
// Add a task to run the package manager. This is necessary because we updated the
|
|
33
33
|
// workspace "package.json" file and we want lock files to reflect the new version range.
|
|
34
34
|
context.addTask(new tasks_1.NodePackageInstallTask());
|
|
@@ -28,7 +28,7 @@ function default_1() {
|
|
|
28
28
|
// In order to align the CDK version with other Angular dependencies that are setup by
|
|
29
29
|
// `@schematics/angular`, we use tilde instead of caret. This is default for Angular
|
|
30
30
|
// dependencies in new CLI projects.
|
|
31
|
-
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~16.2.
|
|
31
|
+
(0, package_config_1.addPackageToPackageJson)(host, '@angular/cdk', `~16.2.6`);
|
|
32
32
|
// Add a task to run the package manager. This is necessary because we updated the
|
|
33
33
|
// workspace "package.json" file and we want lock files to reflect the new version range.
|
|
34
34
|
context.addTask(new tasks_1.NodePackageInstallTask());
|