hr-design-system-handlebars 0.117.14 → 0.118.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
|
+
# v0.118.0 (Tue Jan 17 2023)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- BUGFIX: Only render p tag if at least showTeaserInfo is true DPE-2014 [#479](https://github.com/mumprod/hr-design-system-handlebars/pull/479) ([@mariokinzel](https://github.com/mariokinzel))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@mariokinzel](https://github.com/mariokinzel)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v0.117.14 (Mon Jan 16 2023)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -2397,7 +2397,7 @@ video {
|
|
|
2397
2397
|
transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
|
|
2398
2398
|
}
|
|
2399
2399
|
.counter-reset {
|
|
2400
|
-
counter-reset:
|
|
2400
|
+
counter-reset: cnt1673967171513;
|
|
2401
2401
|
}
|
|
2402
2402
|
.line-clamp-4 {
|
|
2403
2403
|
overflow: hidden;
|
|
@@ -2629,7 +2629,7 @@ video {
|
|
|
2629
2629
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
2630
2630
|
}
|
|
2631
2631
|
.-ordered {
|
|
2632
|
-
counter-increment:
|
|
2632
|
+
counter-increment: cnt1673967171513 1;
|
|
2633
2633
|
}
|
|
2634
2634
|
.-ordered::before {
|
|
2635
2635
|
position: absolute;
|
|
@@ -2645,7 +2645,7 @@ video {
|
|
|
2645
2645
|
letter-spacing: .0125em;
|
|
2646
2646
|
--tw-text-opacity: 1;
|
|
2647
2647
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
2648
|
-
content: counter(
|
|
2648
|
+
content: counter(cnt1673967171513);
|
|
2649
2649
|
}
|
|
2650
2650
|
/*! ****************************/
|
|
2651
2651
|
/*! text-shadow */
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
|
|
2
2
|
{{#with this.teaserInfo}}
|
|
3
|
-
<p class="mt-1 text-xs text-grey-scorpion font-headingSerif {{#if ../_ordered}} pl-8 {{/if}}">
|
|
4
3
|
{{!--Teaser-Info--}}
|
|
5
4
|
{{#if this.showTeaserInfo~}}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
{{~#if this.showTeaserInfoChannel}}
|
|
13
|
-
<span class="uppercase">
|
|
14
|
-
{{../this.podcastChannel.title}}
|
|
15
|
-
</span>
|
|
16
|
-
<span class="mx-px last-of-type:hidden">|</span>
|
|
5
|
+
<p class="mt-1 text-xs text-grey-scorpion font-headingSerif {{#if ../_ordered}} pl-8 {{/if}}">
|
|
6
|
+
{{~#if this.showTeaserInfoSection}}
|
|
7
|
+
<span class="uppercase">
|
|
8
|
+
{{../this.documentSection~}}
|
|
9
|
+
</span>
|
|
10
|
+
<span class="mx-px last-of-type:hidden">|</span>
|
|
17
11
|
{{/if}}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
<span class="mx-px last-of-type:hidden">|</span>
|
|
23
|
-
{{else}}
|
|
24
|
-
{{~#if this.showTeaserInfoDateTime}}
|
|
25
|
-
{{~#with ../this.teaserDate}}
|
|
26
|
-
<time datetime="{{this.htmlDateTime}}">{{loca "date_simple_at" this.dateSeparatorTime}}</time>
|
|
27
|
-
{{/with~}}
|
|
12
|
+
{{~#if this.showTeaserInfoChannel}}
|
|
13
|
+
<span class="uppercase">
|
|
14
|
+
{{../this.podcastChannel.title}}
|
|
15
|
+
</span>
|
|
28
16
|
<span class="mx-px last-of-type:hidden">|</span>
|
|
29
|
-
{{/if
|
|
30
|
-
|
|
17
|
+
{{/if}}
|
|
18
|
+
{{~#if this.showTeaserInfoDate}}
|
|
19
|
+
{{~#with ../this.teaserDate}}
|
|
20
|
+
<time datetime="{{this.htmlDateTime}}">{{this.date}}</time>
|
|
21
|
+
{{/with~}}
|
|
22
|
+
<span class="mx-px last-of-type:hidden">|</span>
|
|
23
|
+
{{else}}
|
|
24
|
+
{{~#if this.showTeaserInfoDateTime}}
|
|
25
|
+
{{~#with ../this.teaserDate}}
|
|
26
|
+
<time datetime="{{this.htmlDateTime}}">{{loca "date_simple_at" this.dateSeparatorTime}}</time>
|
|
27
|
+
{{/with~}}
|
|
28
|
+
<span class="mx-px last-of-type:hidden">|</span>
|
|
29
|
+
{{/if~}}
|
|
30
|
+
{{/if~}}
|
|
31
|
+
</p>
|
|
31
32
|
{{/if}}
|
|
32
|
-
</p>
|
|
33
33
|
{{/with}}
|
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": "0.
|
|
9
|
+
"version": "0.118.0",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "start-storybook -p 6006 public",
|
|
@@ -1,33 +1,33 @@
|
|
|
1
1
|
|
|
2
2
|
{{#with this.teaserInfo}}
|
|
3
|
-
<p class="mt-1 text-xs text-grey-scorpion font-headingSerif {{#if ../_ordered}} pl-8 {{/if}}">
|
|
4
3
|
{{!--Teaser-Info--}}
|
|
5
4
|
{{#if this.showTeaserInfo~}}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
{{~#if this.showTeaserInfoChannel}}
|
|
13
|
-
<span class="uppercase">
|
|
14
|
-
{{../this.podcastChannel.title}}
|
|
15
|
-
</span>
|
|
16
|
-
<span class="mx-px last-of-type:hidden">|</span>
|
|
5
|
+
<p class="mt-1 text-xs text-grey-scorpion font-headingSerif {{#if ../_ordered}} pl-8 {{/if}}">
|
|
6
|
+
{{~#if this.showTeaserInfoSection}}
|
|
7
|
+
<span class="uppercase">
|
|
8
|
+
{{../this.documentSection~}}
|
|
9
|
+
</span>
|
|
10
|
+
<span class="mx-px last-of-type:hidden">|</span>
|
|
17
11
|
{{/if}}
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
<span class="mx-px last-of-type:hidden">|</span>
|
|
23
|
-
{{else}}
|
|
24
|
-
{{~#if this.showTeaserInfoDateTime}}
|
|
25
|
-
{{~#with ../this.teaserDate}}
|
|
26
|
-
<time datetime="{{this.htmlDateTime}}">{{loca "date_simple_at" this.dateSeparatorTime}}</time>
|
|
27
|
-
{{/with~}}
|
|
12
|
+
{{~#if this.showTeaserInfoChannel}}
|
|
13
|
+
<span class="uppercase">
|
|
14
|
+
{{../this.podcastChannel.title}}
|
|
15
|
+
</span>
|
|
28
16
|
<span class="mx-px last-of-type:hidden">|</span>
|
|
29
|
-
{{/if
|
|
30
|
-
|
|
17
|
+
{{/if}}
|
|
18
|
+
{{~#if this.showTeaserInfoDate}}
|
|
19
|
+
{{~#with ../this.teaserDate}}
|
|
20
|
+
<time datetime="{{this.htmlDateTime}}">{{this.date}}</time>
|
|
21
|
+
{{/with~}}
|
|
22
|
+
<span class="mx-px last-of-type:hidden">|</span>
|
|
23
|
+
{{else}}
|
|
24
|
+
{{~#if this.showTeaserInfoDateTime}}
|
|
25
|
+
{{~#with ../this.teaserDate}}
|
|
26
|
+
<time datetime="{{this.htmlDateTime}}">{{loca "date_simple_at" this.dateSeparatorTime}}</time>
|
|
27
|
+
{{/with~}}
|
|
28
|
+
<span class="mx-px last-of-type:hidden">|</span>
|
|
29
|
+
{{/if~}}
|
|
30
|
+
{{/if~}}
|
|
31
|
+
</p>
|
|
31
32
|
{{/if}}
|
|
32
|
-
</p>
|
|
33
33
|
{{/with}}
|