Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/npm_and_yarn/babel/traverse-7.23.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yoriiis authored Dec 4, 2023
2 parents 71ec8af + 69fb063 commit c282d28
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 6.0.1

### Fixes

- Added initial `aria-label` for `bigPlay` component ([#115](https://github.com/vlitejs/vlite/pull/115))

## 6.0.0

### ⚠️ Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vlitejs",
"version": "6.0.0",
"version": "6.0.1",
"description": "vLitejs is a fast and lightweight Javascript library for customizing video and audio player in Javascript with a minimalist theme (HTML5, Youtube, Vimeo, Dailymotion)",
"keywords": [
"video",
Expand Down
2 changes: 1 addition & 1 deletion src/components/big-play/big-play.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ import svgBigPlay from 'shared/assets/svgs/big-play.svg'
* @returns Generated HTML
*/
export default function bigPlay(): string {
return `<button class="v-bigPlay">${svgBigPlay}</button>`
return `<button class="v-bigPlay" aria-label="Play">${svgBigPlay}</button>`
}

0 comments on commit c282d28

Please sign in to comment.