File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -1019,10 +1019,10 @@ describe('Combobox', () => {
10191019 />
10201020
10211021 <ng-template ngComboboxPopupContainer>
1022- <div listbox [(value)]="value">
1022+ <div ngListbox [(value)]="value">
10231023 @for (option of options(); track option) {
10241024 <div
1025- option
1025+ ngOption
10261026 [value]="option"
10271027 [label]="option"
10281028 >
@@ -1062,7 +1062,7 @@ class ComboboxListboxExample {
10621062 />
10631063
10641064 <ng-template ngComboboxPopupContainer>
1065- <ul tree #tree="tree " [(value)]="value">
1065+ <ul ngTree #tree="ngTree " [(value)]="value">
10661066 <ng-template
10671067 [ngTemplateOutlet]="treeNodes"
10681068 [ngTemplateOutletContext]="{nodes: nodes(), parent: tree}"
@@ -1073,18 +1073,18 @@ class ComboboxListboxExample {
10731073
10741074<ng-template #treeNodes let-nodes="nodes" let-parent="parent">
10751075 @for (node of nodes; track node.name) {
1076- <li treeItem
1076+ <li ngTreeItem
10771077 [parent]="parent"
10781078 [value]="node.name"
10791079 [label]="node.name"
1080- #treeItem="treeItem "
1080+ #treeItem="ngTreeItem "
10811081 >
10821082 {{ node.name }}
10831083 </li>
10841084
10851085 @if (node.children) {
1086- <ul treeItemGroup [ownedBy]="treeItem" #group="treeItemGroup ">
1087- <ng-template treeItemGroupContent >
1086+ <ul ngTreeItemGroup [ownedBy]="treeItem" #group="ngTreeItemGroup ">
1087+ <ng-template ngTreeItemGroupContent >
10881088 <ng-template
10891089 [ngTemplateOutlet]="treeNodes"
10901090 [ngTemplateOutletContext]="{nodes: node.children, parent: group}"
You can’t perform that action at this time.
0 commit comments