Skip to content

Commit 76e7b8f

Browse files
chore(deps-dev): bump html-validate from 9.2.2 to 9.4.1 (#1111)
* chore(deps-dev): bump html-validate from 9.2.2 to 9.4.1 Bumps [html-validate](https://gitlab.com/html-validate/html-validate) from 9.2.2 to 9.4.1. - [Release notes](https://gitlab.com/html-validate/html-validate/tags) - [Commits](https://gitlab.com/html-validate/html-validate/compare/v9.2.2...v9.4.1) --- updated-dependencies: - dependency-name: html-validate dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> * refactor: added missing dimensions * refactor: added conditions --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maximilian Franzke <[email protected]>
1 parent 9783ac0 commit 76e7b8f

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@
7979
"dialog-polyfill": "^0.5.6",
8080
"dotenv": "^16.4.7",
8181
"find-versions-cli": "^5.0.0",
82-
"html-validate": "^9.2.2",
82+
"html-validate": "^9.4.1",
8383
"html5-boilerplate": "^9.0.1",
8484
"husky": "^9.1.7",
8585
"iframe-resizer": "^5.3.3",

source/_patterns/01-elements/video/_video.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<video class="elm-video"{{#unless preventControls }} controls{{/unless }}{{#if autoplay}} autoplay{{/if }}{{#if preload}} preload{{/if }}{{#if poster}} poster="{{poster}}"{{/if }} width="{{ width }}" height="{{ height }}">
1+
<video class="elm-video"{{#unless preventControls }} controls{{/unless }}{{#if autoplay}} autoplay{{/if }}{{#if preload}} preload{{/if }}{{#if poster}} poster="{{poster}}"{{/if }}{{#if width}} width="{{ width }}"{{/if }}{{#if height}} height="{{ height }}"{{/if }}>
22
{{#each sources }}
33
<source src="{{ src }}" type="{{ type }}">
44
{{/each }}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<div class="cmp-brand">
22
<a href="#" title="Home" rel="home">
3-
{{> elements-image src='../../images/db_logo.svg' alt='Deutsche Bahn Logo' styleModifier='is-logo' elementtiming='logo' }}
3+
{{> elements-image src='../../images/db_logo.svg' alt='Deutsche Bahn Logo' styleModifier='is-logo' elementtiming='logo' width='33' height='23' }}
44
</a>
55
{{#if sitename }}<span class="is-site-name">{{ sitename }}</span>{{/if }}
66
</div>

source/_patterns/02-components/cards/_card.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<use href="../../icons/illustrative/{{ icon }}.svg#icon"></use>
77
</svg>
88
{{else}}
9-
{{> elements-image src="../../icons/functional/images/navigation/db_ic_list_20.svg" alt="" }}
9+
{{> elements-image src="../../icons/functional/images/navigation/db_ic_list_20.svg" alt="" width="20" height="20" }}
1010
{{/if_eq }}
1111
<figcaption>
1212
<!-- [html-validate-disable-next heading-level, no-unused-disable] -->

0 commit comments

Comments
 (0)