hr-design-system-handlebars 1.57.9 → 1.57.10

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.57.10 (Wed Feb 14 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - copytext bugfixes 3 [#844](https://github.com/mumprod/hr-design-system-handlebars/pull/844) ([@hanswurstsalat](https://github.com/hanswurstsalat))
6
+
7
+ #### Authors: 1
8
+
9
+ - Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
10
+
11
+ ---
12
+
1
13
  # v1.57.9 (Wed Feb 14 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -947,21 +947,6 @@ article.indexText ul {
947
947
  list-style-type: disc;
948
948
  padding-left: 1rem;
949
949
  }
950
- /* -------------------------COPYTEXT ------------------------------- */
951
- a.link {
952
- color: #006eb7;
953
- color: var(--color-link);
954
- -webkit-text-decoration-line: underline;
955
- text-decoration-line: underline;
956
- text-decoration-thickness: 1px;
957
- }
958
- a.link:hover {
959
- text-decoration-thickness: 1px !important;
960
- }
961
- [class~='tw-dark'] a.link {
962
- color: #006eb7;
963
- color: var(--color-link-dark);
964
- }
965
950
  .sr-only {
966
951
  position: absolute;
967
952
  width: 1px;
@@ -3250,7 +3235,7 @@ a.link:hover {
3250
3235
  border-bottom-color: var(--color-secondary-ds);
3251
3236
  }
3252
3237
  .counter-reset {
3253
- counter-reset: cnt1707919442564;
3238
+ counter-reset: cnt1707924726107;
3254
3239
  }
3255
3240
  .hyphens-auto {
3256
3241
  -webkit-hyphens: auto;
@@ -3573,7 +3558,7 @@ a.link:hover {
3573
3558
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3574
3559
  }
3575
3560
  .-ordered {
3576
- counter-increment: cnt1707919442564 1;
3561
+ counter-increment: cnt1707924726107 1;
3577
3562
  }
3578
3563
  .-ordered::before {
3579
3564
  position: absolute;
@@ -3589,7 +3574,7 @@ a.link:hover {
3589
3574
  letter-spacing: .0125em;
3590
3575
  --tw-text-opacity: 1;
3591
3576
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3592
- content: counter(cnt1707919442564);
3577
+ content: counter(cnt1707924726107);
3593
3578
  }
3594
3579
  /*! ****************************/
3595
3580
  /*! DataPolicy stuff */
@@ -3,7 +3,7 @@
3
3
  <span class="sr-only">{{loca "story_infobox_intro_sr" }}</span>
4
4
 
5
5
  {{~#if this.paragraphProperties.[0].title}}
6
- <h3 class="text-lg -mt-[4px] sm480:text-2xl font-headingSerif dark:text-text-dark">{{this.paragraphProperties.[0].title}}</h3>
6
+ <h3 class="-mt-1 text-lg sm480:text-2xl font-headingSerif dark:text-text-dark">{{this.paragraphProperties.[0].title}}</h3>
7
7
  {{/if}}
8
8
 
9
9
  {{~#with this.paragraphBoxItem }}
@@ -58,13 +58,13 @@
58
58
 
59
59
  {{#each this.text.split}}
60
60
  {{#if this.isText}}
61
- <p class="mt-4 text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
61
+ <p class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
62
62
  {{/if}}
63
63
  {{#if this.isUl}}
64
- <ul class="mt-4 ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
64
+ <ul class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
65
65
  {{/if}}
66
66
  {{#if this.isOl}}
67
- <ol class="mt-4 ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
67
+ <ol class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
68
68
  {{/if}}
69
69
  {{/each}}
70
70
  {{~#block "subParagraphs"}}{{/block~}}
@@ -3,7 +3,7 @@
3
3
  <span class="sr-only">{{loca "story_infobox_intro_sr" }}</span>
4
4
 
5
5
  {{~#if this.paragraphProperties.[0].title}}
6
- <h3 class="text-lg -mt-[4px] sm480:text-2xl font-headingSerif dark:text-text-dark">{{this.paragraphProperties.[0].title}}</h3>
6
+ <h3 class="-mt-1 text-lg sm480:text-2xl font-headingSerif dark:text-text-dark">{{this.paragraphProperties.[0].title}}</h3>
7
7
  {{/if}}
8
8
 
9
9
  {{~#with this.paragraphBoxItem }}
@@ -58,13 +58,13 @@
58
58
 
59
59
  {{#each this.text.split}}
60
60
  {{#if this.isText}}
61
- <p class="mt-4 text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
61
+ <p class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
62
62
  {{/if}}
63
63
  {{#if this.isUl}}
64
- <ul class="mt-4 ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
64
+ <ul class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
65
65
  {{/if}}
66
66
  {{#if this.isOl}}
67
- <ol class="mt-4 ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
67
+ <ol class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
68
68
  {{/if}}
69
69
  {{/each}}
70
70
  {{~#block "subParagraphs"}}{{/block~}}
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.57.9",
9
+ "version": "1.57.10",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -295,8 +295,3 @@
295
295
  article.indexText ul {
296
296
  @apply pl-4 list-disc;
297
297
  }
298
-
299
- /* -------------------------COPYTEXT ------------------------------- */
300
- a.link {
301
- @apply underline decoration-1 hover:!decoration-1 text-link dark:text-link-dark;
302
- }
@@ -3,7 +3,7 @@
3
3
  <span class="sr-only">{{loca "story_infobox_intro_sr" }}</span>
4
4
 
5
5
  {{~#if this.paragraphProperties.[0].title}}
6
- <h3 class="text-lg -mt-[4px] sm480:text-2xl font-headingSerif dark:text-text-dark">{{this.paragraphProperties.[0].title}}</h3>
6
+ <h3 class="-mt-1 text-lg sm480:text-2xl font-headingSerif dark:text-text-dark">{{this.paragraphProperties.[0].title}}</h3>
7
7
  {{/if}}
8
8
 
9
9
  {{~#with this.paragraphBoxItem }}
@@ -58,13 +58,13 @@
58
58
 
59
59
  {{#each this.text.split}}
60
60
  {{#if this.isText}}
61
- <p class="mt-4 text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
61
+ <p class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} text-base sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</p>
62
62
  {{/if}}
63
63
  {{#if this.isUl}}
64
- <ul class="mt-4 ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
64
+ <ul class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-disc sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ul>
65
65
  {{/if}}
66
66
  {{#if this.isOl}}
67
- <ol class="mt-4 ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
67
+ <ol class="{{#if ../this.paragraphProperties.[0].title}}mt-4{{else}}{{#if ../this.paragraphBoxItem}}mt-4{{else}}-mt-0.5{{/if}}{{/if}} ml-5 text-base list-decimal sm480:text-lg sm480:leading-normal dark:text-text-dark">{{{this.text}}}</ol>
68
68
  {{/if}}
69
69
  {{/each}}
70
70
  {{~#block "subParagraphs"}}{{/block~}}