hr-design-system-handlebars 0.122.8 → 0.122.9

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.122.9 (Fri Feb 03 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Dpe 2058 [#519](https://github.com/mumprod/hr-design-system-handlebars/pull/519) ([@StefanVesper](https://github.com/StefanVesper))
6
+
7
+ #### Authors: 1
8
+
9
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
10
+
11
+ ---
12
+
1
13
  # v0.122.8 (Thu Feb 02 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -2505,7 +2505,7 @@ video {
2505
2505
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
2506
2506
  }
2507
2507
  .counter-reset {
2508
- counter-reset: cnt1675354781412;
2508
+ counter-reset: cnt1675428344493;
2509
2509
  }
2510
2510
  .line-clamp-4 {
2511
2511
  overflow: hidden;
@@ -2723,7 +2723,7 @@ video {
2723
2723
  --tw-ring-color: rgba(255, 255, 255, 0.5);
2724
2724
  }
2725
2725
  .-ordered {
2726
- counter-increment: cnt1675354781412 1;
2726
+ counter-increment: cnt1675428344493 1;
2727
2727
  }
2728
2728
  .-ordered::before {
2729
2729
  position: absolute;
@@ -2739,7 +2739,7 @@ video {
2739
2739
  letter-spacing: .0125em;
2740
2740
  --tw-text-opacity: 1;
2741
2741
  color: rgba(0, 0, 0, var(--tw-text-opacity));
2742
- content: counter(cnt1675354781412);
2742
+ content: counter(cnt1675428344493);
2743
2743
  }
2744
2744
  /*! ****************************/
2745
2745
  /*! text-shadow */
@@ -48,9 +48,11 @@
48
48
  {{/switch}}
49
49
 
50
50
  {{!-- Abo-Dropdown --}}
51
- <div class="flex flex-row px-5 md:pr-0">
52
- {{> components/teaser/podcast/podcast_subscribe_button}}
53
- </div>
51
+ {{#if this.isSingleChannel}}
52
+ <div class="flex flex-row px-5 md:pr-0">
53
+ {{> components/teaser/podcast/podcast_subscribe_button}}
54
+ </div>
55
+ {{/if}}
54
56
  </div>
55
57
  </div>
56
58
 
@@ -1,5 +1,13 @@
1
- {{#decorator 'components/base/link' _css="group ds-link font-title text-base mt-2.5 text-podcast-text line-clamp-4 lg:line-clamp-2 ..." }}
2
- <span class="block mt-0.5 group-hover:underline {{#if _ordered}} pl-8 {{/if}} {{~ inline-switch _teaserSize '["hero","100","50"]''["text-base md:text-2xl","text-base md:text-2xl","text-base md:text-lg"]' ~}}">
3
- {{~_title~}}
4
- </span>
5
- {{/decorator}}
1
+ {{#if this.isSingleChannel}}
2
+ {{#decorator 'components/base/link' _css="group ds-link font-title text-base mt-2.5 text-podcast-text line-clamp-4 lg:line-clamp-2 ..." }}
3
+ <span class="block mt-0.5 group-hover:underline {{#if _ordered}} pl-8 {{/if}} {{~ inline-switch _teaserSize '["hero","100","50"]''["text-base md:text-2xl","text-base md:text-2xl","text-base md:text-lg"]' ~}}">
4
+ {{~_title~}}
5
+ </span>
6
+ {{/decorator}}
7
+ {{else}}
8
+ <div class="font-title text-base mt-2.5 text-podcast-text line-clamp-4 lg:line-clamp-2 ...">
9
+ <span class="block mt-0.5 {{#if _ordered}} pl-8 {{/if}} {{~ inline-switch _teaserSize '["hero","100","50"]''["text-base md:text-2xl","text-base md:text-2xl","text-base md:text-lg"]' ~}}">
10
+ {{~_title~}}
11
+ </span>
12
+ </div>
13
+ {{/if}}
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.122.8",
9
+ "version": "0.122.9",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -48,9 +48,11 @@
48
48
  {{/switch}}
49
49
 
50
50
  {{!-- Abo-Dropdown --}}
51
- <div class="flex flex-row px-5 md:pr-0">
52
- {{> components/teaser/podcast/podcast_subscribe_button}}
53
- </div>
51
+ {{#if this.isSingleChannel}}
52
+ <div class="flex flex-row px-5 md:pr-0">
53
+ {{> components/teaser/podcast/podcast_subscribe_button}}
54
+ </div>
55
+ {{/if}}
54
56
  </div>
55
57
  </div>
56
58
 
@@ -1,5 +1,13 @@
1
- {{#decorator 'components/base/link' _css="group ds-link font-title text-base mt-2.5 text-podcast-text line-clamp-4 lg:line-clamp-2 ..." }}
2
- <span class="block mt-0.5 group-hover:underline {{#if _ordered}} pl-8 {{/if}} {{~ inline-switch _teaserSize '["hero","100","50"]''["text-base md:text-2xl","text-base md:text-2xl","text-base md:text-lg"]' ~}}">
3
- {{~_title~}}
4
- </span>
5
- {{/decorator}}
1
+ {{#if this.isSingleChannel}}
2
+ {{#decorator 'components/base/link' _css="group ds-link font-title text-base mt-2.5 text-podcast-text line-clamp-4 lg:line-clamp-2 ..." }}
3
+ <span class="block mt-0.5 group-hover:underline {{#if _ordered}} pl-8 {{/if}} {{~ inline-switch _teaserSize '["hero","100","50"]''["text-base md:text-2xl","text-base md:text-2xl","text-base md:text-lg"]' ~}}">
4
+ {{~_title~}}
5
+ </span>
6
+ {{/decorator}}
7
+ {{else}}
8
+ <div class="font-title text-base mt-2.5 text-podcast-text line-clamp-4 lg:line-clamp-2 ...">
9
+ <span class="block mt-0.5 {{#if _ordered}} pl-8 {{/if}} {{~ inline-switch _teaserSize '["hero","100","50"]''["text-base md:text-2xl","text-base md:text-2xl","text-base md:text-lg"]' ~}}">
10
+ {{~_title~}}
11
+ </span>
12
+ </div>
13
+ {{/if}}