hr-design-system-handlebars 1.1.1 → 1.1.2
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/teaser/podcast/podcast_player.hbs +1 -1
- package/dist/views/components/teaser/podcast/podcast_playlist_player.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/teaser/podcast/podcast_player.hbs +1 -1
- package/src/stories/views/components/teaser/podcast/podcast_playlist_player.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.1.2 (Fri Feb 10 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- uses realTeaserSize for podcast Title now [#539](https://github.com/mumprod/hr-design-system-handlebars/pull/539) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.1.1 (Fri Feb 10 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2646,7 +2646,7 @@ video {
|
|
|
2646
2646
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2647
2647
|
}
|
|
2648
2648
|
.counter-reset {
|
|
2649
|
-
counter-reset:
|
|
2649
|
+
counter-reset: cnt1676038383843;
|
|
2650
2650
|
}
|
|
2651
2651
|
.line-clamp-4 {
|
|
2652
2652
|
overflow: hidden;
|
|
@@ -2880,7 +2880,7 @@ video {
|
|
|
2880
2880
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2881
2881
|
}
|
|
2882
2882
|
.-ordered {
|
|
2883
|
-
counter-increment:
|
|
2883
|
+
counter-increment: cnt1676038383843 1;
|
|
2884
2884
|
}
|
|
2885
2885
|
.-ordered::before {
|
|
2886
2886
|
position: absolute;
|
|
@@ -2896,7 +2896,7 @@ video {
|
|
|
2896
2896
|
letter-spacing: .0125em;
|
|
2897
2897
|
--tw-text-opacity: 1;
|
|
2898
2898
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2899
|
-
content: counter(
|
|
2899
|
+
content: counter(cnt1676038383843);
|
|
2900
2900
|
}
|
|
2901
2901
|
/*! ****************************/
|
|
2902
2902
|
/*! text-shadow */
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
{{!-- Überschrift: --}}
|
|
32
32
|
<div class="flex pb-5 pr-2 md:pr-5">
|
|
33
|
-
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.
|
|
33
|
+
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.realTeaserSize _addClass="" }}
|
|
34
34
|
</div>
|
|
35
35
|
|
|
36
36
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
{{!-- Überschrift: --}}
|
|
17
17
|
<div class="flex pb-5 pr-2 md:pr-5">
|
|
18
|
-
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.
|
|
18
|
+
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.realTeaserSize _addClass="" }}
|
|
19
19
|
</div>
|
|
20
20
|
|
|
21
21
|
{{!-- {{#switch this.realTeaserSize }}
|
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.1.
|
|
9
|
+
"version": "1.1.2",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
|
|
31
31
|
{{!-- Überschrift: --}}
|
|
32
32
|
<div class="flex pb-5 pr-2 md:pr-5">
|
|
33
|
-
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.
|
|
33
|
+
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.realTeaserSize _addClass="" }}
|
|
34
34
|
</div>
|
|
35
35
|
|
|
36
36
|
</div>
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
|
|
16
16
|
{{!-- Überschrift: --}}
|
|
17
17
|
<div class="flex pb-5 pr-2 md:pr-5">
|
|
18
|
-
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.
|
|
18
|
+
{{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.realTeaserSize _addClass="" }}
|
|
19
19
|
</div>
|
|
20
20
|
|
|
21
21
|
{{!-- {{#switch this.realTeaserSize }}
|