hr-design-system-handlebars 1.73.1 → 1.74.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,15 @@
1
+ # v1.74.0 (Tue Jun 18 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - integrate content footer in story [#954](https://github.com/mumprod/hr-design-system-handlebars/pull/954) ([@StefanVesper](https://github.com/StefanVesper))
6
+
7
+ #### Authors: 1
8
+
9
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
10
+
11
+ ---
12
+
1
13
  # v1.73.1 (Tue Jun 18 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3365,7 +3365,7 @@ article.indexTextDS .indexTextHighlighted .link {
3365
3365
  border-bottom-color: var(--color-secondary-ds);
3366
3366
  }
3367
3367
  .counter-reset {
3368
- counter-reset: cnt1718715077625;
3368
+ counter-reset: cnt1718716134543;
3369
3369
  }
3370
3370
  .hyphens-auto {
3371
3371
  -webkit-hyphens: auto;
@@ -3744,7 +3744,7 @@ article.indexTextDS .indexTextHighlighted .link {
3744
3744
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3745
3745
  }
3746
3746
  .-ordered {
3747
- counter-increment: cnt1718715077625 1;
3747
+ counter-increment: cnt1718716134543 1;
3748
3748
  }
3749
3749
  .-ordered::before {
3750
3750
  position: absolute;
@@ -3760,7 +3760,7 @@ article.indexTextDS .indexTextHighlighted .link {
3760
3760
  letter-spacing: .0125em;
3761
3761
  --tw-text-opacity: 1;
3762
3762
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3763
- content: counter(cnt1718715077625);
3763
+ content: counter(cnt1718716134543);
3764
3764
  }
3765
3765
  /*! ****************************/
3766
3766
  /*! DataPolicy stuff */
@@ -28,6 +28,12 @@
28
28
  {{/unless}}
29
29
  {{~> components/content/copytext/copytext _isWebview=../../_webview-adjust_context ~}}
30
30
 
31
+ {{~> components/content/content_footer/content_footer
32
+ _showDate=this.hasDwellTime
33
+ _date=this.documentPublicationDate
34
+ _source=this.source
35
+ _isArchiveContent=this.isArchiveContent ~}}
36
+
31
37
  {{> components/page/components/appendix _isArticle=true }}
32
38
 
33
39
  {{> components/page/components/comments }}
@@ -28,6 +28,12 @@
28
28
  {{/unless}}
29
29
  {{~> components/content/copytext/copytext _isWebview=_webview ~}}
30
30
 
31
+ {{~> components/content/content_footer/content_footer
32
+ _showDate=this.hasDwellTime
33
+ _date=this.documentPublicationDate
34
+ _source=this.source
35
+ _isArchiveContent=this.isArchiveContent ~}}
36
+
31
37
  {{> components/page/components/appendix _isArticle=true }}
32
38
 
33
39
  {{> components/page/components/comments }}
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.73.1",
9
+ "version": "1.74.0",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -15,14 +15,11 @@ Die Content-Footer-Komponente wird in handlebars wie folgt eingebaut:
15
15
 
16
16
  ```html
17
17
  {{> components/content/content_footer/content_footer
18
- _addCss = ""
19
- _source_=this.source
20
- _author=this.audioAuthor
21
18
  _showDate=this.hasDwellTime
22
- _date=this.airdateDate
23
- _copyright=this.copyright
19
+ _date=this.documentPublicationDate
20
+ _source=this.source
24
21
  _isArchiveContent=this.isArchiveContent
25
- _posterCopyright="poster_copyright" }}
22
+ }}
26
23
  ```
27
24
 
28
25
  <Canvas withToolbar>
@@ -28,6 +28,12 @@
28
28
  {{/unless}}
29
29
  {{~> components/content/copytext/copytext _isWebview=_webview-adjust_context ~}}
30
30
 
31
+ {{~> components/content/content_footer/content_footer
32
+ _showDate=this.hasDwellTime
33
+ _date=this.documentPublicationDate
34
+ _source=this.source
35
+ _isArchiveContent=this.isArchiveContent ~}}
36
+
31
37
  {{> components/page/components/appendix _isArticle=true }}
32
38
 
33
39
  {{> components/page/components/comments }}