File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ describe('AccordionGroup', () => {
7777 }
7878
7979 function isTriggerActive ( target : HTMLElement ) : boolean {
80- return target . classList . contains ( ' active') ;
80+ return target . getAttribute ( 'data- active') === 'true' ;
8181 }
8282
8383 function isTriggerExpanded ( target : HTMLElement ) : boolean {
Original file line number Diff line number Diff line change @@ -1018,7 +1018,7 @@ describe('Combobox', () => {
10181018 [(value)]="searchString"
10191019 />
10201020
1021- <ng-template ComboboxPopupContainer >
1021+ <ng-template comboboxPopupContainer >
10221022 <div listbox [(value)]="value">
10231023 @for (option of options(); track option) {
10241024 <div
@@ -1062,7 +1062,7 @@ class ComboboxListboxExample {
10621062 />
10631063
10641064 <ng-template comboboxPopupContainer>
1065- <ul tree #tree="Tree " [(value)]="value">
1065+ <ul tree #tree="tree " [(value)]="value">
10661066 <ng-template
10671067 [ngTemplateOutlet]="treeNodes"
10681068 [ngTemplateOutletContext]="{nodes: nodes(), parent: tree}"
@@ -1077,13 +1077,13 @@ class ComboboxListboxExample {
10771077 [parent]="parent"
10781078 [value]="node.name"
10791079 [label]="node.name"
1080- #treeItem="TreeItem "
1080+ #treeItem="treeItem "
10811081 >
10821082 {{ node.name }}
10831083 </li>
10841084
10851085 @if (node.children) {
1086- <ul treeItemGroup [ownedBy]="treeItem" #group="TreeItemGroup ">
1086+ <ul treeItemGroup [ownedBy]="treeItem" #group="treeItemGroup ">
10871087 <ng-template treeItemGroupContent>
10881088 <ng-template
10891089 [ngTemplateOutlet]="treeNodes"
You can’t perform that action at this time.
0 commit comments