File tree Expand file tree Collapse file tree 4 files changed +49
-1
lines changed Expand file tree Collapse file tree 4 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1607
1607
"contributions" : [
1608
1608
" code"
1609
1609
]
1610
+ },
1611
+ {
1612
+ "login" : " naorpeled" ,
1613
+ "name" : " Naor Peled" ,
1614
+ "avatar_url" : " https://avatars.githubusercontent.com/u/6171622?v=4" ,
1615
+ "profile" : " https://naor.dev" ,
1616
+ "contributions" : [
1617
+ " code"
1618
+ ]
1610
1619
}
1611
1620
],
1612
1621
"repoHost" : " https://github.com" ,
Original file line number Diff line number Diff line change
1
+ name : Accessibility-alt-text-bot
2
+ on :
3
+ issues :
4
+ types : [opened, edited]
5
+ pull_request :
6
+ types : [opened, edited]
7
+ issue_comment :
8
+ types : [created, edited]
9
+ discussion :
10
+ types : [created, edited]
11
+ discussion_comment :
12
+ types : [created, edited]
13
+
14
+ permissions :
15
+ issues : write
16
+ pull-requests : write
17
+ discussions : write
18
+
19
+ jobs :
20
+ accessibility_alt_text_bot :
21
+ name : Check alt text is set on issue or pull requests
22
+ runs-on : ubuntu-latest
23
+ if :
24
+ ${{ github.event.issue || github.event.pull_request ||
25
+ github.event.discussion }}
26
+ steps :
27
+ - name : Get action 'github/accessibility-alt-text-bot'
28
+ uses : github/accessibility-alt-text-bot@v1.2.0 # Set to latest
Original file line number Diff line number Diff line change @@ -344,6 +344,7 @@ Thanks goes to these people ([emoji key][emojis]):
344
344
<td align="center" valign="top" width="14.28%"><a href="https://github.com/arthurlvilasboas"><img src="https://avatars.githubusercontent.com/u/95368212?v=4?s=100" width="100px;" alt="Arthur Lauck Vilas Boas"/><br /><sub><b>Arthur Lauck Vilas Boas</b></sub></a><br /><a href="https://github.com/testing-library/dom-testing-library/commits?author=arthurlvilasboas" title="Documentation">📖</a></td>
345
345
<td align="center" valign="top" width="14.28%"><a href="https://github.com/DaniAcu"><img src="https://avatars.githubusercontent.com/u/26409015?v=4?s=100" width="100px;" alt="Daniel Acuña"/><br /><sub><b>Daniel Acuña</b></sub></a><br /><a href="https://github.com/testing-library/dom-testing-library/commits?author=DaniAcu" title="Code">💻</a></td>
346
346
<td align="center" valign="top" width="14.28%"><a href="https://github.com/jlp-craigmorten"><img src="https://avatars.githubusercontent.com/u/124147726?v=4?s=100" width="100px;" alt="Craig Morten"/><br /><sub><b>Craig Morten</b></sub></a><br /><a href="https://github.com/testing-library/dom-testing-library/commits?author=jlp-craigmorten" title="Code">💻</a></td>
347
+ <td align="center" valign="top" width="14.28%"><a href="https://naor.dev"><img src="https://avatars.githubusercontent.com/u/6171622?v=4?s=100" width="100px;" alt="Naor Peled"/><br /><sub><b>Naor Peled</b></sub></a><br /><a href="https://github.com/testing-library/dom-testing-library/commits?author=naorpeled" title="Code">💻</a></td>
347
348
</tr>
348
349
</tbody >
349
350
</table >
Original file line number Diff line number Diff line change 1
- export function logRoles ( container : HTMLElement ) : string
1
+ export function logRoles (
2
+ container : HTMLElement ,
3
+ options ?: LogRolesOptions ,
4
+ ) : string
5
+
6
+ interface LogRolesOptions {
7
+ hidden ?: boolean
8
+ }
9
+
2
10
export function getRoles ( container : HTMLElement ) : {
3
11
[ index : string ] : HTMLElement [ ]
4
12
}
13
+
5
14
/**
6
15
* https://testing-library.com/docs/dom-testing-library/api-helpers#isinaccessible
7
16
*/
8
17
export function isInaccessible ( element : Element ) : boolean
18
+
9
19
export function computeHeadingLevel ( element : Element ) : number | undefined
You can’t perform that action at this time.
0 commit comments