Skip to content

Commit 2509a91

Browse files
committedMar 1, 2021
fix: remove workarounds for async pipe type narrowing bug
- related bug that is now fixed: angular/angular#34572 - related discussion: angular/material.angular.io#689 (comment)
1 parent 3f0d315 commit 2509a91

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed
 

‎material.angular.io/src/app/pages/component-viewer/component-api.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<ng-container *ngIf="componentViewer.componentDocItem | async; let docItem">
22
<span class="cdk-visually-hidden" tabindex="-1">
3-
API for {{docItem?.id}}
3+
API for {{docItem.id}}
44
</span>
55

66
<!--
@@ -9,12 +9,12 @@
99
same container so that they display one after another.
1010
-->
1111
<div class="docs-component-api">
12-
<doc-viewer [documentUrl]="getApiDocumentUrl(docItem!)"
12+
<doc-viewer [documentUrl]="getApiDocumentUrl(docItem)"
1313
class="docs-component-view-text-content"
14-
(contentRendered)="updateTableOfContents(docItem!.name, $event)">
14+
(contentRendered)="updateTableOfContents(docItem.name, $event)">
1515
</doc-viewer>
1616

17-
<doc-viewer *ngFor="let additionalApiDoc of docItem!.additionalApiDocs; let index = index"
17+
<doc-viewer *ngFor="let additionalApiDoc of docItem.additionalApiDocs; let index = index"
1818
documentUrl="/docs-content/api-docs/{{additionalApiDoc.path}}"
1919
class="docs-component-view-text-content"
2020
(contentRendered)="updateTableOfContents(additionalApiDoc.name, $event, index + 1)">

‎material.angular.io/src/app/pages/component-viewer/component-examples.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<ng-container *ngIf="componentViewer.componentDocItem | async; let docItem">
22
<span class="cdk-visually-hidden" tabindex="-1">
3-
Examples for {{docItem?.id}}
3+
Examples for {{docItem.id}}
44
</span>
55
<example-viewer
6-
*ngFor="let example of docItem?.examples"
6+
*ngFor="let example of docItem.examples"
77
[example]="example"
88
[showCompactToggle]="false"
99
[view]="'demo'"></example-viewer>

‎material.angular.io/src/app/pages/component-viewer/component-overview.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<ng-container *ngIf="componentViewer.componentDocItem | async; let docItem">
22
<h2 class="cdk-visually-hidden" tabindex="-1">
3-
Overview for {{docItem?.id}}
3+
Overview for {{docItem.id}}
44
</h2>
5-
<doc-viewer [documentUrl]="getOverviewDocumentUrl(docItem!)"
5+
<doc-viewer [documentUrl]="getOverviewDocumentUrl(docItem)"
66
class="docs-component-view-text-content docs-component-overview"
77
(contentRendered)="updateTableOfContents('Overview Content', $event)">
88
</doc-viewer>

‎material.angular.io/yarn.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -218,8 +218,8 @@
218218
tslib "^2.0.0"
219219

220220
"@angular/components-examples@angular/material2-docs-content#11.2.x":
221-
version "11.2.1-sha-c3abc1415"
222-
resolved "https://codeload.github.com/angular/material2-docs-content/tar.gz/f12afada83c15eb29b672b5dd8d64760ce2b2c2b"
221+
version "11.2.2-sha-d2583706c"
222+
resolved "https://codeload.github.com/angular/material2-docs-content/tar.gz/321bd6c32051098bf87e8d6adeb8c727a2578486"
223223
dependencies:
224224
tslib "^2.0.0"
225225

0 commit comments

Comments
 (0)
Please sign in to comment.