hr-design-system-handlebars 1.50.7 → 1.50.8
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 +12 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/article/components/podcast/components/related-content.ssi.hbs +5 -0
- package/dist/views/components/article/components/podcast/podcast_episode-webview.hbs +17 -0
- package/dist/views/components/article/components/podcast/podcast_episode.hbs +17 -0
- package/dist/views/components/article/components/podcast/podcast_playlist.hbs +16 -0
- package/dist/views/components/related-content/related-content.hbs +8 -0
- package/dist/views_static/components/article/components/podcast/components/related-content.ssi.hbs +5 -0
- package/dist/views_static/components/article/components/podcast/podcast_episode-webview.hbs +17 -0
- package/dist/views_static/components/article/components/podcast/podcast_episode.hbs +17 -0
- package/dist/views_static/components/article/components/podcast/podcast_playlist.hbs +16 -0
- package/dist/views_static/components/related-content/related-content.hbs +8 -0
- package/package.json +1 -1
- package/src/stories/views/components/article/components/podcast/components/related-content.ssi.hbs +5 -0
- package/src/stories/views/components/article/components/podcast/podcast_episode-webview.hbs +17 -0
- package/src/stories/views/components/article/components/podcast/podcast_episode.hbs +17 -0
- package/src/stories/views/components/article/components/podcast/podcast_playlist.hbs +16 -0
- package/src/stories/views/components/related-content/related-content.hbs +8 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.50.8 (Fri Nov 17 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- new entry hbs files for episode and channel [#756](https://github.com/mumprod/hr-design-system-handlebars/pull/756) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.50.7 (Thu Nov 16 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3055,7 +3055,7 @@ article.indexText ul {
|
|
|
3055
3055
|
border-bottom-color: var(--color-secondary-ds);
|
|
3056
3056
|
}
|
|
3057
3057
|
.counter-reset {
|
|
3058
|
-
counter-reset:
|
|
3058
|
+
counter-reset: cnt1700228596250;
|
|
3059
3059
|
}
|
|
3060
3060
|
.hyphens-auto {
|
|
3061
3061
|
-webkit-hyphens: auto;
|
|
@@ -3316,7 +3316,7 @@ article.indexText ul {
|
|
|
3316
3316
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3317
3317
|
}
|
|
3318
3318
|
.-ordered {
|
|
3319
|
-
counter-increment:
|
|
3319
|
+
counter-increment: cnt1700228596250 1;
|
|
3320
3320
|
}
|
|
3321
3321
|
.-ordered::before {
|
|
3322
3322
|
position: absolute;
|
|
@@ -3332,7 +3332,7 @@ article.indexText ul {
|
|
|
3332
3332
|
letter-spacing: .0125em;
|
|
3333
3333
|
--tw-text-opacity: 1;
|
|
3334
3334
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3335
|
-
content: counter(
|
|
3335
|
+
content: counter(cnt1700228596250);
|
|
3336
3336
|
}
|
|
3337
3337
|
/*! ****************************/
|
|
3338
3338
|
/*! DataPolicy stuff */
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_episode_article _webview=true}}
|
|
8
|
+
|
|
9
|
+
{{{ this.relatedContentSsi }}}
|
|
10
|
+
</div>
|
|
11
|
+
<script type="application/ld+json">
|
|
12
|
+
{{{this.structuredData}}}
|
|
13
|
+
|
|
14
|
+
</script>
|
|
15
|
+
{{~/partial~}}
|
|
16
|
+
|
|
17
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_episode_article }}
|
|
8
|
+
|
|
9
|
+
{{{ this.relatedContentSsi }}}
|
|
10
|
+
</div>
|
|
11
|
+
<script type="application/ld+json">
|
|
12
|
+
{{{this.structuredData}}}
|
|
13
|
+
|
|
14
|
+
</script>
|
|
15
|
+
{{~/partial~}}
|
|
16
|
+
|
|
17
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_playlist_article }}
|
|
8
|
+
</div>
|
|
9
|
+
<script type="application/ld+json">
|
|
10
|
+
{{{this.podcastSeriesStructuredData}}}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
</script>
|
|
14
|
+
{{~/partial~}}
|
|
15
|
+
|
|
16
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_episode_article _webview=true}}
|
|
8
|
+
|
|
9
|
+
{{{ this.relatedContentSsi }}}
|
|
10
|
+
</div>
|
|
11
|
+
<script type="application/ld+json">
|
|
12
|
+
{{{this.structuredData}}}
|
|
13
|
+
|
|
14
|
+
</script>
|
|
15
|
+
{{~/partial~}}
|
|
16
|
+
|
|
17
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_episode_article }}
|
|
8
|
+
|
|
9
|
+
{{{ this.relatedContentSsi }}}
|
|
10
|
+
</div>
|
|
11
|
+
<script type="application/ld+json">
|
|
12
|
+
{{{this.structuredData}}}
|
|
13
|
+
|
|
14
|
+
</script>
|
|
15
|
+
{{~/partial~}}
|
|
16
|
+
|
|
17
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_playlist_article }}
|
|
8
|
+
</div>
|
|
9
|
+
<script type="application/ld+json">
|
|
10
|
+
{{{this.podcastSeriesStructuredData}}}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
</script>
|
|
14
|
+
{{~/partial~}}
|
|
15
|
+
|
|
16
|
+
{{~> modules/page/base ~}}
|
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.50.
|
|
9
|
+
"version": "1.50.8",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_episode_article _webview=true}}
|
|
8
|
+
|
|
9
|
+
{{{ this.relatedContentSsi }}}
|
|
10
|
+
</div>
|
|
11
|
+
<script type="application/ld+json">
|
|
12
|
+
{{{this.structuredData}}}
|
|
13
|
+
|
|
14
|
+
</script>
|
|
15
|
+
{{~/partial~}}
|
|
16
|
+
|
|
17
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_episode_article }}
|
|
8
|
+
|
|
9
|
+
{{{ this.relatedContentSsi }}}
|
|
10
|
+
</div>
|
|
11
|
+
<script type="application/ld+json">
|
|
12
|
+
{{{this.structuredData}}}
|
|
13
|
+
|
|
14
|
+
</script>
|
|
15
|
+
{{~/partial~}}
|
|
16
|
+
|
|
17
|
+
{{~> modules/page/base ~}}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{{~#partial "staticHeader"~}}
|
|
2
|
+
<link rel="preconnect" href="//mp3podcasthr-a.akamaihd.net/">
|
|
3
|
+
{{~/partial~}}
|
|
4
|
+
|
|
5
|
+
{{~#partial "body" ~}}
|
|
6
|
+
<div class="o-wrapper u-content-background">
|
|
7
|
+
{{> components/article/components/podcast/podcast_playlist_article }}
|
|
8
|
+
</div>
|
|
9
|
+
<script type="application/ld+json">
|
|
10
|
+
{{{this.podcastSeriesStructuredData}}}
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
</script>
|
|
14
|
+
{{~/partial~}}
|
|
15
|
+
|
|
16
|
+
{{~> modules/page/base ~}}
|