hr-design-system-handlebars 1.23.1 → 1.23.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,27 @@
1
+ # v1.23.3 (Mon May 15 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - add _text-parameter to label-byline [#637](https://github.com/mumprod/hr-design-system-handlebars/pull/637) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
13
+ # v1.23.2 (Mon May 15 2023)
14
+
15
+ #### 🐛 Bug Fix
16
+
17
+ - Dpe 2316 [#635](https://github.com/mumprod/hr-design-system-handlebars/pull/635) ([@vascoeduardo](https://github.com/vascoeduardo))
18
+
19
+ #### Authors: 1
20
+
21
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
22
+
23
+ ---
24
+
1
25
  # v1.23.1 (Mon May 15 2023)
2
26
 
3
27
  #### 🐛 Bug Fix
@@ -2688,7 +2688,7 @@ video {
2688
2688
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
2689
2689
  }
2690
2690
  .counter-reset {
2691
- counter-reset: cnt1684135221294;
2691
+ counter-reset: cnt1684170416504;
2692
2692
  }
2693
2693
  .hyphens-auto {
2694
2694
  -webkit-hyphens: auto;
@@ -2930,7 +2930,7 @@ video {
2930
2930
  --tw-ring-color: rgba(255, 255, 255, 0.5);
2931
2931
  }
2932
2932
  .-ordered {
2933
- counter-increment: cnt1684135221294 1;
2933
+ counter-increment: cnt1684170416504 1;
2934
2934
  }
2935
2935
  .-ordered::before {
2936
2936
  position: absolute;
@@ -2946,7 +2946,7 @@ video {
2946
2946
  letter-spacing: .0125em;
2947
2947
  --tw-text-opacity: 1;
2948
2948
  color: rgba(0, 0, 0, var(--tw-text-opacity));
2949
- content: counter(cnt1684135221294);
2949
+ content: counter(cnt1684170416504);
2950
2950
  }
2951
2951
  /*! ****************************/
2952
2952
  /*! text-shadow */
@@ -5037,6 +5037,10 @@ video {
5037
5037
  flex-direction: row;
5038
5038
  }
5039
5039
 
5040
+ .lg\:flex-nowrap {
5041
+ flex-wrap: nowrap;
5042
+ }
5043
+
5040
5044
  .lg\:items-end {
5041
5045
  align-items: flex-end;
5042
5046
  }
@@ -1,6 +1,6 @@
1
1
  {{#with this}}
2
2
  {{#> components/base/link _link=this.link _css="inline-flex items-center link-focus-inset-white lg:mb-0.5"}}
3
- <span class="rounded-full font-copy my-2 pt-0.5 px-1.5 leading-5 {{> components/button/utilities/button_variation_classes _variant="primary" _onBackground="true"}}">
3
+ <span class="rounded-full font-copy my-2 pt-0.5 px-1.5 whitespace-nowrap leading-5 {{> components/button/utilities/button_variation_classes _variant="primary" _onBackground="true"}}">
4
4
  {{> @partial-block }}
5
5
  </span>
6
6
  {{/components/base/link}}
@@ -1,10 +1,17 @@
1
- {{#with this.byline}}
2
- {{~#if this.bylineSsi~}}
3
- {{> components/base/loadSSI this.bylineSsi _context=this.context _templatePath=this.bylineSsi}}
4
- {{~else~}}
5
- {{#> components/text/byline _css=../_css}}
6
- {{this.bylineText}}
7
- {{/components/text/byline}}
8
- {{~/if~}}
9
- {{/with}}
10
-
1
+ {{~#if _text~}}
2
+
3
+ <span class='font-bold font-heading{{#if _css}} {{_css}}{{/if}}'>{{~_text}}</span>
4
+
5
+ {{~else~}}
6
+
7
+ {{#with this.byline}}
8
+ {{~#if this.bylineSsi~}}
9
+ {{> components/base/loadSSI this.bylineSsi _context=this.context _templatePath=this.bylineSsi}}
10
+ {{~else~}}
11
+ {{#> components/text/byline _css=../_css}}
12
+ {{this.bylineText}}
13
+ {{/components/text/byline}}
14
+ {{~/if~}}
15
+ {{/with}}
16
+
17
+ {{~/if~}}
@@ -1,5 +1,5 @@
1
1
  <li class="order-1 w-full lg:mr-2 lg:w-auto lg:order-2">
2
- <ul class="flex flex-row items-center w-full p-4 text-left list-none bg-top-topic-background lg:p-0 lg:bg-transparent lg:h-10">
2
+ <ul class="flex flex-row flex-wrap items-center w-full p-4 text-left list-none lg:flex-nowrap bg-top-topic-background lg:p-0 lg:bg-transparent lg:h-10">
3
3
  {{#each this.items}}
4
4
  <li class="{{#unless @last}}mr-3 {{/unless}}">
5
5
  {{#> components/button/top_topics_button}}
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.23.1",
9
+ "version": "1.23.3",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -1,6 +1,6 @@
1
1
  {{#with this}}
2
2
  {{#> components/base/link _link=this.link _css="inline-flex items-center link-focus-inset-white lg:mb-0.5"}}
3
- <span class="rounded-full font-copy my-2 pt-0.5 px-1.5 leading-5 {{> components/button/utilities/button_variation_classes _variant="primary" _onBackground="true"}}">
3
+ <span class="rounded-full font-copy my-2 pt-0.5 px-1.5 whitespace-nowrap leading-5 {{> components/button/utilities/button_variation_classes _variant="primary" _onBackground="true"}}">
4
4
  {{> @partial-block }}
5
5
  </span>
6
6
  {{/components/base/link}}
@@ -1,10 +1,17 @@
1
- {{#with this.byline}}
2
- {{~#if this.bylineSsi~}}
3
- {{> components/base/loadSSI this.bylineSsi _context=this.context _templatePath=this.bylineSsi}}
4
- {{~else~}}
5
- {{#> components/text/byline _css=../_css}}
6
- {{this.bylineText}}
7
- {{/components/text/byline}}
8
- {{~/if~}}
9
- {{/with}}
10
-
1
+ {{~#if _text~}}
2
+
3
+ <span class='font-bold font-heading{{#if _css}} {{_css}}{{/if}}'>{{~_text}}</span>
4
+
5
+ {{~else~}}
6
+
7
+ {{#with this.byline}}
8
+ {{~#if this.bylineSsi~}}
9
+ {{> components/base/loadSSI this.bylineSsi _context=this.context _templatePath=this.bylineSsi}}
10
+ {{~else~}}
11
+ {{#> components/text/byline _css=../_css}}
12
+ {{this.bylineText}}
13
+ {{/components/text/byline}}
14
+ {{~/if~}}
15
+ {{/with}}
16
+
17
+ {{~/if~}}
@@ -1,5 +1,5 @@
1
1
  <li class="order-1 w-full lg:mr-2 lg:w-auto lg:order-2">
2
- <ul class="flex flex-row items-center w-full p-4 text-left list-none bg-top-topic-background lg:p-0 lg:bg-transparent lg:h-10">
2
+ <ul class="flex flex-row flex-wrap items-center w-full p-4 text-left list-none lg:flex-nowrap bg-top-topic-background lg:p-0 lg:bg-transparent lg:h-10">
3
3
  {{#each this.items}}
4
4
  <li class="{{#unless @last}}mr-3 {{/unless}}">
5
5
  {{#> components/button/top_topics_button}}