Skip to content

Commit 52c17d2

Browse files
committed
main - 06750e0 fix(material/tooltip): do not block events to other overlays
1 parent d098b1a commit 52c17d2

File tree

2 files changed

+35
-8
lines changed

2 files changed

+35
-8
lines changed

docs-content/api-docs/cdk-overlay.html

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,6 +1344,19 @@ <h4 id="OverlayRef" class="docs-header-link docs-api-h4 docs-api-class-name">
13441344

13451345

13461346

1347+
<tr class="docs-api-properties-row">
1348+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
1349+
<code>eventPredicate: <code class="docs-api-property-type">((event: Event) =&gt; boolean) | null</code></code>
1350+
</p>
1351+
</td>
1352+
<td class="docs-api-property-description"><p>Function that determines if this overlay should receive a specific event.</p>
1353+
</td>
1354+
</tr>
1355+
1356+
1357+
1358+
1359+
13471360
<tr class="docs-api-properties-row">
13481361
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
13491362
<code>hostElement: <code class="docs-api-property-type">HTMLElement</code></code>
@@ -3676,6 +3689,20 @@ <h4 id="OverlayConfig" class="docs-header-link docs-api-h4 docs-api-class-name">
36763689

36773690

36783691

3692+
<tr class="docs-api-properties-row">
3693+
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
3694+
<code>eventPredicate: <code class="docs-api-property-type">(event: Event) =&gt; boolean</code></code>
3695+
</p>
3696+
</td>
3697+
<td class="docs-api-property-description"><p>Function that determines if the overlay should receive a specific
3698+
event or if the event should go to the next overlay in the stack.</p>
3699+
</td>
3700+
</tr>
3701+
3702+
3703+
3704+
3705+
36793706
<tr class="docs-api-properties-row">
36803707
<td class="docs-api-properties-name-cell"><p class="docs-api-property-name">
36813708
<code>hasBackdrop: <code class="docs-api-property-type">boolean</code></code>

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/components-examples",
3-
"version": "21.2.0-next.3+sha-bee5511",
3+
"version": "21.2.0-next.3+sha-06750e0",
44
"description": "Angular Components Examples",
55
"private": true,
66
"repository": {
@@ -255,15 +255,15 @@
255255
},
256256
"homepage": "https://github.com/angular/components#readme",
257257
"peerDependencies": {
258-
"@angular/aria": "21.2.0-next.3+sha-bee5511",
259-
"@angular/cdk": "21.2.0-next.3+sha-bee5511",
260-
"@angular/cdk-experimental": "21.2.0-next.3+sha-bee5511",
258+
"@angular/aria": "21.2.0-next.3+sha-06750e0",
259+
"@angular/cdk": "21.2.0-next.3+sha-06750e0",
260+
"@angular/cdk-experimental": "21.2.0-next.3+sha-06750e0",
261261
"@angular/core": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
262262
"@angular/common": "^21.0.0-0 || ^21.1.0-0 || ^21.2.0-0 || ^21.3.0-0 || ^22.0.0-0",
263-
"@angular/material": "21.2.0-next.3+sha-bee5511",
264-
"@angular/material-experimental": "21.2.0-next.3+sha-bee5511",
265-
"@angular/material-luxon-adapter": "21.2.0-next.3+sha-bee5511",
266-
"@angular/material-date-fns-adapter": "21.2.0-next.3+sha-bee5511"
263+
"@angular/material": "21.2.0-next.3+sha-06750e0",
264+
"@angular/material-experimental": "21.2.0-next.3+sha-06750e0",
265+
"@angular/material-luxon-adapter": "21.2.0-next.3+sha-06750e0",
266+
"@angular/material-date-fns-adapter": "21.2.0-next.3+sha-06750e0"
267267
},
268268
"devDependencies": {
269269
"@angular/aria": "workspace:*",

0 commit comments

Comments
 (0)