File tree 3 files changed +4
-1
lines changed
3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export const aom: IAom = {
33
33
ariaRowIndex : 'aria-rowindex' ,
34
34
ariaRowSpan : 'aria-rowspan' ,
35
35
ariaSelected : 'aria-selected' ,
36
+ ariaSetSize : 'aria-setsize' ,
36
37
ariaSort : 'aria-sort' ,
37
38
ariaValueMax : 'aria-valuemax' ,
38
39
ariaValueMin : 'aria-valuemin' ,
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ export class ElementInternals implements IElementInternals {
55
55
ariaRowIndex : string ;
56
56
ariaRowSpan : string ;
57
57
ariaSelected : string ;
58
+ ariaSetSize : string ;
58
59
ariaSort : string ;
59
60
ariaValueMax : string ;
60
61
ariaValueMin : string ;
@@ -129,7 +130,7 @@ export class ElementInternals implements IElementInternals {
129
130
const id = ref . getAttribute ( 'id' ) ;
130
131
const hostRoot = ref . getRootNode ( ) as Element ;
131
132
if ( hostRoot && id ) {
132
- return hostRoot ? hostRoot . querySelectorAll ( `[for=${ id } ]` ) : [ ] ;
133
+ return hostRoot ? hostRoot . querySelectorAll ( `[for=${ id } ]` ) as unknown as LabelsList : [ ] ;
133
134
}
134
135
return [ ] ;
135
136
}
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ export interface IAom {
33
33
ariaRowIndex : string ;
34
34
ariaRowSpan : string ;
35
35
ariaSelected : string ;
36
+ ariaSetSize : string ;
36
37
ariaSort : string ;
37
38
ariaValueMax : string ;
38
39
ariaValueMin : string ;
You can’t perform that action at this time.
0 commit comments