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', () => {
1019
1019
/>
1020
1020
1021
1021
<ng-template ngComboboxPopupContainer>
1022
- <div listbox [(value)]="value">
1022
+ <div ngListbox [(value)]="value">
1023
1023
@for (option of options(); track option) {
1024
1024
<div
1025
- option
1025
+ ngOption
1026
1026
[value]="option"
1027
1027
[label]="option"
1028
1028
>
@@ -1062,7 +1062,7 @@ class ComboboxListboxExample {
1062
1062
/>
1063
1063
1064
1064
<ng-template ngComboboxPopupContainer>
1065
- <ul tree #tree="tree " [(value)]="value">
1065
+ <ul ngTree #tree="ngTree " [(value)]="value">
1066
1066
<ng-template
1067
1067
[ngTemplateOutlet]="treeNodes"
1068
1068
[ngTemplateOutletContext]="{nodes: nodes(), parent: tree}"
@@ -1073,18 +1073,18 @@ class ComboboxListboxExample {
1073
1073
1074
1074
<ng-template #treeNodes let-nodes="nodes" let-parent="parent">
1075
1075
@for (node of nodes; track node.name) {
1076
- <li treeItem
1076
+ <li ngTreeItem
1077
1077
[parent]="parent"
1078
1078
[value]="node.name"
1079
1079
[label]="node.name"
1080
- #treeItem="treeItem "
1080
+ #treeItem="ngTreeItem "
1081
1081
>
1082
1082
{{ node.name }}
1083
1083
</li>
1084
1084
1085
1085
@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 >
1088
1088
<ng-template
1089
1089
[ngTemplateOutlet]="treeNodes"
1090
1090
[ngTemplateOutletContext]="{nodes: node.children, parent: group}"
You can’t perform that action at this time.
0 commit comments