hr-design-system-handlebars 1.50.12 → 1.50.13

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
+ # v1.50.13 (Tue Nov 21 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - add text-sm to h3 [#761](https://github.com/mumprod/hr-design-system-handlebars/pull/761) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
1
13
  # v1.50.12 (Tue Nov 21 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -1349,6 +1349,9 @@ article.indexText ul {
1349
1349
  .mt-1 {
1350
1350
  margin-top: 0.25rem;
1351
1351
  }
1352
+ .mt-1\.5 {
1353
+ margin-top: 0.375rem;
1354
+ }
1352
1355
  .mt-10 {
1353
1356
  margin-top: 2.5rem;
1354
1357
  }
@@ -3055,7 +3058,7 @@ article.indexText ul {
3055
3058
  border-bottom-color: var(--color-secondary-ds);
3056
3059
  }
3057
3060
  .counter-reset {
3058
- counter-reset: cnt1700579703221;
3061
+ counter-reset: cnt1700587370068;
3059
3062
  }
3060
3063
  .hyphens-auto {
3061
3064
  -webkit-hyphens: auto;
@@ -3316,7 +3319,7 @@ article.indexText ul {
3316
3319
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3317
3320
  }
3318
3321
  .-ordered {
3319
- counter-increment: cnt1700579703221 1;
3322
+ counter-increment: cnt1700587370068 1;
3320
3323
  }
3321
3324
  .-ordered::before {
3322
3325
  position: absolute;
@@ -3332,7 +3335,7 @@ article.indexText ul {
3332
3335
  letter-spacing: .0125em;
3333
3336
  --tw-text-opacity: 1;
3334
3337
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3335
- content: counter(cnt1700579703221);
3338
+ content: counter(cnt1700587370068);
3336
3339
  }
3337
3340
  /*! ****************************/
3338
3341
  /*! DataPolicy stuff */
@@ -4,9 +4,9 @@
4
4
  <span class="block mt-4 text-base font-heading">{{loca "featured_content_headline"}}</span>
5
5
  <ul class="list-disc">
6
6
  {{#each this.featuredContentItems}}
7
- <li class="{{#if @first}}mt-3{{else}}mt-1{{/if}} ml-4">
8
- {{#> components/base/link _link=this.link _css="hover:underline relative inline text-link text-sm ds-focus" }}
9
- <h3><span class="group-hover:underline">{{this.title}}</span></h3>
7
+ <li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4">
8
+ {{#> components/base/link _link=this.link _css="hover:underline relative inline text-link ds-focus" }}
9
+ <h3 class="text-sm"><span class="group-hover:underline">{{this.title}}</span></h3>
10
10
  {{/components/base/link}}
11
11
  </li>
12
12
  {{/each}}
@@ -4,9 +4,9 @@
4
4
  <span class="block mt-4 text-base font-heading">{{loca "featured_content_headline"}}</span>
5
5
  <ul class="list-disc">
6
6
  {{#each this.featuredContentItems}}
7
- <li class="{{#if @first}}mt-3{{else}}mt-1{{/if}} ml-4">
8
- {{#> components/base/link _link=this.link _css="hover:underline relative inline text-link text-sm ds-focus" }}
9
- <h3><span class="group-hover:underline">{{this.title}}</span></h3>
7
+ <li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4">
8
+ {{#> components/base/link _link=this.link _css="hover:underline relative inline text-link ds-focus" }}
9
+ <h3 class="text-sm"><span class="group-hover:underline">{{this.title}}</span></h3>
10
10
  {{/components/base/link}}
11
11
  </li>
12
12
  {{/each}}
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.50.12",
9
+ "version": "1.50.13",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -4,9 +4,9 @@
4
4
  <span class="block mt-4 text-base font-heading">{{loca "featured_content_headline"}}</span>
5
5
  <ul class="list-disc">
6
6
  {{#each this.featuredContentItems}}
7
- <li class="{{#if @first}}mt-3{{else}}mt-1{{/if}} ml-4">
8
- {{#> components/base/link _link=this.link _css="hover:underline relative inline text-link text-sm ds-focus" }}
9
- <h3><span class="group-hover:underline">{{this.title}}</span></h3>
7
+ <li class="{{#if @first}}mt-3{{else}}mt-1.5{{/if}} ml-4">
8
+ {{#> components/base/link _link=this.link _css="hover:underline relative inline text-link ds-focus" }}
9
+ <h3 class="text-sm"><span class="group-hover:underline">{{this.title}}</span></h3>
10
10
  {{/components/base/link}}
11
11
  </li>
12
12
  {{/each}}