hr-design-system-handlebars 1.79.0 โ†’ 1.80.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,27 @@
1
+ # v1.80.0 (Tue Jul 09 2024)
2
+
3
+ #### ๐Ÿš€ Enhancement
4
+
5
+ - :lipstick: truncate text in the player headline not before the end ofโ€ฆ [#993](https://github.com/mumprod/hr-design-system-handlebars/pull/993) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
13
+ # v1.79.1 (Tue Jul 09 2024)
14
+
15
+ #### ๐Ÿ› Bug Fix
16
+
17
+ - DPE-3224 - SEO: Semantisches HTML [#992](https://github.com/mumprod/hr-design-system-handlebars/pull/992) ([@vascoeduardo](https://github.com/vascoeduardo))
18
+
19
+ #### Authors: 1
20
+
21
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
22
+
23
+ ---
24
+
1
25
  # v1.79.0 (Tue Jul 09 2024)
2
26
 
3
27
  #### ๐Ÿš€ Enhancement
@@ -3399,7 +3399,7 @@ article.indexTextDS .indexTextHighlighted .link {
3399
3399
  border-bottom-color: var(--color-secondary-ds);
3400
3400
  }
3401
3401
  .counter-reset {
3402
- counter-reset: cnt1720518365405;
3402
+ counter-reset: cnt1720525075751;
3403
3403
  }
3404
3404
  .hyphens-auto {
3405
3405
  -webkit-hyphens: auto;
@@ -3797,7 +3797,7 @@ article.indexTextDS .indexTextHighlighted .link {
3797
3797
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3798
3798
  }
3799
3799
  .-ordered {
3800
- counter-increment: cnt1720518365405 1;
3800
+ counter-increment: cnt1720525075751 1;
3801
3801
  }
3802
3802
  .-ordered::before {
3803
3803
  position: absolute;
@@ -3813,7 +3813,7 @@ article.indexTextDS .indexTextHighlighted .link {
3813
3813
  letter-spacing: .0125em;
3814
3814
  --tw-text-opacity: 1;
3815
3815
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3816
- content: counter(cnt1720518365405);
3816
+ content: counter(cnt1720525075751);
3817
3817
  }
3818
3818
  /*! ****************************/
3819
3819
  /*! DataPolicy stuff */
@@ -4092,6 +4092,9 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
4092
4092
  --ardplayer-color-lightest: #ffffff;
4093
4093
  color: var(--ardplayer-color-lightest);
4094
4094
  }
4095
+ :root .ardplayer.ardplayer-state-audio-inline .ardplayer-audio h2, [data-theme='default'] .ardplayer.ardplayer-state-audio-inline .ardplayer-audio h2 {
4096
+ -webkit-line-clamp: 3;
4097
+ }
4095
4098
  [data-theme='hessenschau'] {
4096
4099
  --color-primary-ds: #005293;
4097
4100
  --color-secondary-ds: #606060;
@@ -1,5 +1,5 @@
1
1
  <div class="grid grid-page">
2
- <div class="grid items-baseline bg-white dark:bg-black grid-article">
2
+ <{{#if _isArticle}}article{{else}}div{{/if}} class="grid items-baseline bg-white dark:bg-black grid-article">
3
3
  {{> @partial-block }}
4
- </div>
4
+ </{{#if _isArticle}}article{{else}}div{{/if}}>
5
5
  </div>
@@ -1,4 +1,4 @@
1
- <div class="mt-12 md:mt-14">
1
+ <aside class="mt-12 md:mt-14">
2
2
  {{~#with this.programReference~}}
3
3
  {{~#if this.hasReference~}}
4
4
  <div class="clear-both mb-8 md:mb-10">
@@ -14,4 +14,4 @@
14
14
  {{> components/topictag/topictag_collection }}
15
15
  {{/with}}
16
16
  {{/unless}}
17
- </div>
17
+ </aside>
@@ -1,5 +1,5 @@
1
1
  {{#unless this.hideMetadatabox}}
2
- <div class="clear-both mt-5 border-y border-gray-scorpion">
2
+ <aside class="clear-both mt-5 border-y border-gray-scorpion">
3
3
  <div class="flex clear-both w-full my-4 sm:my-4">
4
4
  <div class="self-center">
5
5
  {{> components/page/components/author _hideFrom=false }}
@@ -14,5 +14,5 @@
14
14
  {{> components/social_sharing/social_sharing_horizontal }}
15
15
  {{/unless}}
16
16
  </div>
17
- </div>
17
+ </aside>
18
18
  {{/unless}}
@@ -1,4 +1,4 @@
1
- {{#>components/page/base/page_wrapper}}
1
+ {{#>components/page/base/page_wrapper _isArticle=true}}
2
2
  {{> components/page/base/page_header}}
3
3
 
4
4
  {{> components/page/components/shorttext _text=this.shorttext }}
@@ -1,4 +1,4 @@
1
- <nav role="navigation" aria-label="{{loca "geotag_related_content_headline"}}" class="">
1
+ <nav role="navigation" aria-label="{{loca "topictag_related_content_headline"}}" class="">
2
2
  <ul class="">
3
3
  {{~#each this~}}
4
4
  <li class="float-left mt-2 mr-2">
@@ -1,5 +1,5 @@
1
1
  <div class="grid grid-page">
2
- <div class="grid items-baseline bg-white dark:bg-black grid-article">
2
+ <{{#if _isArticle}}article{{else}}div{{/if}} class="grid items-baseline bg-white dark:bg-black grid-article">
3
3
  {{> @partial-block }}
4
- </div>
4
+ </{{#if _isArticle}}article{{else}}div{{/if}}>
5
5
  </div>
@@ -1,4 +1,4 @@
1
- <div class="mt-12 md:mt-14">
1
+ <aside class="mt-12 md:mt-14">
2
2
  {{~#with this.programReference~}}
3
3
  {{~#if this.hasReference~}}
4
4
  <div class="clear-both mb-8 md:mb-10">
@@ -14,4 +14,4 @@
14
14
  {{> components/topictag/topictag_collection }}
15
15
  {{/with}}
16
16
  {{/unless}}
17
- </div>
17
+ </aside>
@@ -1,5 +1,5 @@
1
1
  {{#unless this.hideMetadatabox}}
2
- <div class="clear-both mt-5 border-y border-gray-scorpion">
2
+ <aside class="clear-both mt-5 border-y border-gray-scorpion">
3
3
  <div class="flex clear-both w-full my-4 sm:my-4">
4
4
  <div class="self-center">
5
5
  {{> components/page/components/author _hideFrom=false }}
@@ -14,5 +14,5 @@
14
14
  {{> components/social_sharing/social_sharing_horizontal }}
15
15
  {{/unless}}
16
16
  </div>
17
- </div>
17
+ </aside>
18
18
  {{/unless}}
@@ -1,4 +1,4 @@
1
- {{#>components/page/base/page_wrapper}}
1
+ {{#>components/page/base/page_wrapper _isArticle=true}}
2
2
  {{> components/page/base/page_header}}
3
3
 
4
4
  {{> components/page/components/shorttext _text=this.shorttext }}
@@ -1,4 +1,4 @@
1
- <nav role="navigation" aria-label="{{loca "geotag_related_content_headline"}}" class="">
1
+ <nav role="navigation" aria-label="{{loca "topictag_related_content_headline"}}" class="">
2
2
  <ul class="">
3
3
  {{~#each this~}}
4
4
  <li class="float-left mt-2 mr-2">
package/package.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "license": "MIT",
7
7
  "main": "dist/index.js",
8
8
  "repository": "https://github.com/szuelch/hr-design-system-handlebars",
9
- "version": "1.79.0",
9
+ "version": "1.80.0",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -179,6 +179,13 @@
179
179
  }
180
180
  }
181
181
  }
182
+ &.ardplayer-state-audio-inline {
183
+ .ardplayer-audio {
184
+ h2 {
185
+ -webkit-line-clamp: 3;
186
+ }
187
+ }
188
+ }
182
189
  }
183
190
  }
184
191
 
@@ -1,5 +1,5 @@
1
1
  <div class="grid grid-page">
2
- <div class="grid items-baseline bg-white dark:bg-black grid-article">
2
+ <{{#if _isArticle}}article{{else}}div{{/if}} class="grid items-baseline bg-white dark:bg-black grid-article">
3
3
  {{> @partial-block }}
4
- </div>
4
+ </{{#if _isArticle}}article{{else}}div{{/if}}>
5
5
  </div>
@@ -1,4 +1,4 @@
1
- <div class="mt-12 md:mt-14">
1
+ <aside class="mt-12 md:mt-14">
2
2
  {{~#with this.programReference~}}
3
3
  {{~#if this.hasReference~}}
4
4
  <div class="clear-both mb-8 md:mb-10">
@@ -14,4 +14,4 @@
14
14
  {{> components/topictag/topictag_collection }}
15
15
  {{/with}}
16
16
  {{/unless}}
17
- </div>
17
+ </aside>
@@ -1,5 +1,5 @@
1
1
  {{#unless this.hideMetadatabox}}
2
- <div class="clear-both mt-5 border-y border-gray-scorpion">
2
+ <aside class="clear-both mt-5 border-y border-gray-scorpion">
3
3
  <div class="flex clear-both w-full my-4 sm:my-4">
4
4
  <div class="self-center">
5
5
  {{> components/page/components/author _hideFrom=false }}
@@ -14,5 +14,5 @@
14
14
  {{> components/social_sharing/social_sharing_horizontal }}
15
15
  {{/unless}}
16
16
  </div>
17
- </div>
17
+ </aside>
18
18
  {{/unless}}
@@ -1,4 +1,4 @@
1
- {{#>components/page/base/page_wrapper}}
1
+ {{#>components/page/base/page_wrapper _isArticle=true}}
2
2
  {{> components/page/base/page_header}}
3
3
 
4
4
  {{> components/page/components/shorttext _text=this.shorttext }}
@@ -1,4 +1,4 @@
1
- <nav role="navigation" aria-label="{{loca "geotag_related_content_headline"}}" class="">
1
+ <nav role="navigation" aria-label="{{loca "topictag_related_content_headline"}}" class="">
2
2
  <ul class="">
3
3
  {{~#each this~}}
4
4
  <li class="float-left mt-2 mr-2">