hr-design-system-handlebars 1.50.33 → 1.50.34
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 +13 -3
- package/dist/views/components/article/components/podcast/podcast_episode_article.hbs +1 -1
- package/dist/views/components/content/content_footer/content_footer.hbs +1 -1
- package/dist/views/components/podcast/components/podcast_player_shorttext.hbs +2 -3
- package/dist/views_static/components/article/components/podcast/podcast_episode_article.hbs +1 -1
- package/dist/views_static/components/content/content_footer/content_footer.hbs +1 -1
- package/dist/views_static/components/podcast/components/podcast_player_shorttext.hbs +2 -3
- package/package.json +1 -1
- package/src/stories/views/components/article/components/podcast/podcast_episode_article.hbs +1 -1
- package/src/stories/views/components/content/content_footer/content_footer.hbs +1 -1
- package/src/stories/views/components/podcast/components/podcast_player_shorttext.hbs +2 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.50.34 (Tue Dec 05 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fixes font, size and line height in shorttext and content footer [#778](https://github.com/mumprod/hr-design-system-handlebars/pull/778) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.50.33 (Tue Dec 05 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3202,7 +3202,7 @@ article.indexText ul {
|
|
|
3202
3202
|
border-bottom-color: var(--color-secondary-ds);
|
|
3203
3203
|
}
|
|
3204
3204
|
.counter-reset {
|
|
3205
|
-
counter-reset:
|
|
3205
|
+
counter-reset: cnt1701783858792;
|
|
3206
3206
|
}
|
|
3207
3207
|
.hyphens-auto {
|
|
3208
3208
|
-webkit-hyphens: auto;
|
|
@@ -3463,7 +3463,7 @@ article.indexText ul {
|
|
|
3463
3463
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3464
3464
|
}
|
|
3465
3465
|
.-ordered {
|
|
3466
|
-
counter-increment:
|
|
3466
|
+
counter-increment: cnt1701783858792 1;
|
|
3467
3467
|
}
|
|
3468
3468
|
.-ordered::before {
|
|
3469
3469
|
position: absolute;
|
|
@@ -3479,7 +3479,7 @@ article.indexText ul {
|
|
|
3479
3479
|
letter-spacing: .0125em;
|
|
3480
3480
|
--tw-text-opacity: 1;
|
|
3481
3481
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3482
|
-
content: counter(
|
|
3482
|
+
content: counter(cnt1701783858792);
|
|
3483
3483
|
}
|
|
3484
3484
|
/*! ****************************/
|
|
3485
3485
|
/*! DataPolicy stuff */
|
|
@@ -6089,6 +6089,16 @@ article.indexText ul {
|
|
|
6089
6089
|
line-height: 1.5rem;
|
|
6090
6090
|
}
|
|
6091
6091
|
|
|
6092
|
+
.md\:text-sm {
|
|
6093
|
+
font-size: 0.875rem;
|
|
6094
|
+
line-height: 1.1875rem;
|
|
6095
|
+
}
|
|
6096
|
+
|
|
6097
|
+
.md\:text-xl {
|
|
6098
|
+
font-size: 1.25rem;
|
|
6099
|
+
line-height: 1.6875rem;
|
|
6100
|
+
}
|
|
6101
|
+
|
|
6092
6102
|
.md\:leading-4 {
|
|
6093
6103
|
line-height: 1rem;
|
|
6094
6104
|
}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{{> components/podcast/podcast_player _linkTitle=true _isSinglePage=true _isArticlePlayer=true}}
|
|
5
5
|
</div>
|
|
6
6
|
<div class="pt-6 main">
|
|
7
|
-
{{> components/podcast/components/podcast_player_shorttext }}
|
|
7
|
+
{{> components/podcast/components/podcast_player_shorttext _isSinglePage=true}}
|
|
8
8
|
{{> components/content/content_footer/content_footer
|
|
9
9
|
_author=this.audioAuthor
|
|
10
10
|
_showDate=this.hasDwellTime
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
{{#unless this.hideShortText}}
|
|
3
3
|
{{~#with this.shorttext}}
|
|
4
|
-
<div class="col-span-12 text-sm md:text-base font-copy dark:text-podcast-text-dark">
|
|
4
|
+
<div class="col-span-12 text-sm {{#if ../_isSinglePage}}md:text-xl {{else}} md:text-base{{/if}} font-copy dark:text-podcast-text-dark">
|
|
5
5
|
<span class="c-teaser__shorttext"> {{this}} </span>
|
|
6
6
|
</div>
|
|
7
7
|
{{/with~}}
|
|
8
8
|
{{/unless}}
|
|
9
|
-
{{/unless}}
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{{> components/podcast/podcast_player _linkTitle=true _isSinglePage=true _isArticlePlayer=true}}
|
|
5
5
|
</div>
|
|
6
6
|
<div class="pt-6 main">
|
|
7
|
-
{{> components/podcast/components/podcast_player_shorttext }}
|
|
7
|
+
{{> components/podcast/components/podcast_player_shorttext _isSinglePage=true}}
|
|
8
8
|
{{> components/content/content_footer/content_footer
|
|
9
9
|
_author=this.audioAuthor
|
|
10
10
|
_showDate=this.hasDwellTime
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
{{#unless this.hideShortText}}
|
|
3
3
|
{{~#with this.shorttext}}
|
|
4
|
-
<div class="col-span-12 text-sm md:text-base font-copy dark:text-podcast-text-dark">
|
|
4
|
+
<div class="col-span-12 text-sm {{#if ../_isSinglePage}}md:text-xl {{else}} md:text-base{{/if}} font-copy dark:text-podcast-text-dark">
|
|
5
5
|
<span class="c-teaser__shorttext"> {{this}} </span>
|
|
6
6
|
</div>
|
|
7
7
|
{{/with~}}
|
|
8
8
|
{{/unless}}
|
|
9
|
-
{{/unless}}
|
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.34",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
{{> components/podcast/podcast_player _linkTitle=true _isSinglePage=true _isArticlePlayer=true}}
|
|
5
5
|
</div>
|
|
6
6
|
<div class="pt-6 main">
|
|
7
|
-
{{> components/podcast/components/podcast_player_shorttext }}
|
|
7
|
+
{{> components/podcast/components/podcast_player_shorttext _isSinglePage=true}}
|
|
8
8
|
{{> components/content/content_footer/content_footer
|
|
9
9
|
_author=this.audioAuthor
|
|
10
10
|
_showDate=this.hasDwellTime
|
|
@@ -1,9 +1,8 @@
|
|
|
1
|
-
|
|
1
|
+
|
|
2
2
|
{{#unless this.hideShortText}}
|
|
3
3
|
{{~#with this.shorttext}}
|
|
4
|
-
<div class="col-span-12 text-sm md:text-base font-copy dark:text-podcast-text-dark">
|
|
4
|
+
<div class="col-span-12 text-sm {{#if ../_isSinglePage}}md:text-xl {{else}} md:text-base{{/if}} font-copy dark:text-podcast-text-dark">
|
|
5
5
|
<span class="c-teaser__shorttext"> {{this}} </span>
|
|
6
6
|
</div>
|
|
7
7
|
{{/with~}}
|
|
8
8
|
{{/unless}}
|
|
9
|
-
{{/unless}}
|