forked from angular/components
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: migrate example inputs to signal inputs
This commit was generated using the signal input migration.
- Loading branch information
1 parent
6beab1c
commit 846299c
Showing
4 changed files
with
8 additions
and
9 deletions.
There are no files selected for viewing
4 changes: 2 additions & 2 deletions
4
...ling/cdk-virtual-scroll-window-scrolling/cdk-virtual-scroll-window-scrolling-example.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
@if (shouldRun) { | ||
@if (shouldRun()) { | ||
<div class="example-header">Content before</div> | ||
<cdk-virtual-scroll-viewport scrollWindow itemSize="50"> | ||
<div *cdkVirtualFor="let item of items" class="example-item">{{item}}</div> | ||
</cdk-virtual-scroll-viewport> | ||
<div class="example-footer">Content after</div> | ||
} | ||
|
||
@if (!shouldRun) { | ||
@if (!shouldRun()) { | ||
<div>Please open on StackBlitz to see result</div> | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/components-examples/material/table/table-wrapped/wrapper-table.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters