hr-design-system-handlebars 0.122.2 → 0.122.3

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.3 (Tue Jan 31 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - realTeaserSize & String for Switch statement [#512](https://github.com/mumprod/hr-design-system-handlebars/pull/512) ([@StefanVesper](https://github.com/StefanVesper))
6
+
7
+ #### Authors: 1
8
+
9
+ - SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
10
+
11
+ ---
12
+
1
13
  # v0.122.2 (Tue Jan 31 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -2477,7 +2477,7 @@ video {
2477
2477
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
2478
2478
  }
2479
2479
  .counter-reset {
2480
- counter-reset: cnt1675161117189;
2480
+ counter-reset: cnt1675181098181;
2481
2481
  }
2482
2482
  .line-clamp-4 {
2483
2483
  overflow: hidden;
@@ -2695,7 +2695,7 @@ video {
2695
2695
  --tw-ring-color: rgba(255, 255, 255, 0.5);
2696
2696
  }
2697
2697
  .-ordered {
2698
- counter-increment: cnt1675161117189 1;
2698
+ counter-increment: cnt1675181098181 1;
2699
2699
  }
2700
2700
  .-ordered::before {
2701
2701
  position: absolute;
@@ -2711,7 +2711,7 @@ video {
2711
2711
  letter-spacing: .0125em;
2712
2712
  --tw-text-opacity: 1;
2713
2713
  color: rgba(0, 0, 0, var(--tw-text-opacity));
2714
- content: counter(cnt1675161117189);
2714
+ content: counter(cnt1675181098181);
2715
2715
  }
2716
2716
  /*! ****************************/
2717
2717
  /*! text-shadow */
@@ -34,7 +34,7 @@
34
34
  {{> components/teaser/teaser_standard }}
35
35
  </section>
36
36
  <section class="grid items-start content-start grid-cols-12 col-span-12 bg-white gap-x-6 gap-y-6 ">
37
- {{> components/teaser/content_nav/teaser_content_nav teaserSize="100"}}
37
+ {{> components/teaser/content_nav/teaser_content_nav teaserSize="100" realTeaserSize="100"}}
38
38
  </section>
39
39
  <section class="grid items-start content-start grid-cols-12 col-span-12 bg-white gap-x-6 gap-y-6 ">
40
40
  {{> components/teaser/content_nav/teaser_content_nav teaserSize="50" realTeaserSize="50"}}
@@ -18,8 +18,8 @@
18
18
  {{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.teaserSize _addClass="" }}
19
19
  </div>
20
20
 
21
- {{#switch this.teaserSize }}
22
- {{#case 100}}
21
+ {{#switch this.realTeaserSize }}
22
+ {{#case "100"}}
23
23
  {{> components/teaser/podcast/podcast_playlist_shorttext}}
24
24
  {{/case}}
25
25
  {{/switch}}
@@ -39,8 +39,8 @@
39
39
  </div>
40
40
  </div>
41
41
 
42
- {{#switch this.teaserSize }}
43
- {{#case 50}}
42
+ {{#switch this.realTeaserSize }}
43
+ {{#case "50"}}
44
44
  <div class="flex flex-row w-full px-5 md:pl-5">
45
45
  {{> components/teaser/podcast/podcast_playlist_shorttext}}
46
46
  </div>
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.2",
9
+ "version": "0.122.3",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "start-storybook -p 6006 public",
@@ -34,7 +34,7 @@
34
34
  {{> components/teaser/teaser_standard }}
35
35
  </section>
36
36
  <section class="grid items-start content-start grid-cols-12 col-span-12 bg-white gap-x-6 gap-y-6 ">
37
- {{> components/teaser/content_nav/teaser_content_nav teaserSize="100"}}
37
+ {{> components/teaser/content_nav/teaser_content_nav teaserSize="100" realTeaserSize="100"}}
38
38
  </section>
39
39
  <section class="grid items-start content-start grid-cols-12 col-span-12 bg-white gap-x-6 gap-y-6 ">
40
40
  {{> components/teaser/content_nav/teaser_content_nav teaserSize="50" realTeaserSize="50"}}
@@ -18,8 +18,8 @@
18
18
  {{> components/teaser/podcast/podcast_title _title=this.title _teaserSize=this.teaserSize _addClass="" }}
19
19
  </div>
20
20
 
21
- {{#switch this.teaserSize }}
22
- {{#case 100}}
21
+ {{#switch this.realTeaserSize }}
22
+ {{#case "100"}}
23
23
  {{> components/teaser/podcast/podcast_playlist_shorttext}}
24
24
  {{/case}}
25
25
  {{/switch}}
@@ -39,8 +39,8 @@
39
39
  </div>
40
40
  </div>
41
41
 
42
- {{#switch this.teaserSize }}
43
- {{#case 50}}
42
+ {{#switch this.realTeaserSize }}
43
+ {{#case "50"}}
44
44
  <div class="flex flex-row w-full px-5 md:pl-5">
45
45
  {{> components/teaser/podcast/podcast_playlist_shorttext}}
46
46
  </div>