hr-design-system-handlebars 1.77.5 → 1.77.6
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 +12 -0
- package/dist/assets/index.css +11 -3
- package/dist/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/dist/views_static/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/package.json +1 -1
- package/src/stories/views/components/content/copytext/components/paragraph/paragraph_body.hbs +3 -3
- package/tailwind.config.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.77.6 (Fri Jul 05 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- adds new line-height in paragraphs for desktop view of copytext [#984](https://github.com/mumprod/hr-design-system-handlebars/pull/984) ([@StefanVesper](https://github.com/StefanVesper))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.77.5 (Fri Jul 05 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3380,7 +3380,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3380
3380
|
border-bottom-color: var(--color-secondary-ds);
|
|
3381
3381
|
}
|
|
3382
3382
|
.counter-reset {
|
|
3383
|
-
counter-reset:
|
|
3383
|
+
counter-reset: cnt1720181805646;
|
|
3384
3384
|
}
|
|
3385
3385
|
.hyphens-auto {
|
|
3386
3386
|
-webkit-hyphens: auto;
|
|
@@ -3778,7 +3778,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3778
3778
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3779
3779
|
}
|
|
3780
3780
|
.-ordered {
|
|
3781
|
-
counter-increment:
|
|
3781
|
+
counter-increment: cnt1720181805646 1;
|
|
3782
3782
|
}
|
|
3783
3783
|
.-ordered::before {
|
|
3784
3784
|
position: absolute;
|
|
@@ -3794,7 +3794,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3794
3794
|
letter-spacing: .0125em;
|
|
3795
3795
|
--tw-text-opacity: 1;
|
|
3796
3796
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3797
|
-
content: counter(
|
|
3797
|
+
content: counter(cnt1720181805646);
|
|
3798
3798
|
}
|
|
3799
3799
|
/*! ****************************/
|
|
3800
3800
|
/*! DataPolicy stuff */
|
|
@@ -7602,6 +7602,14 @@ ul.restrictedToTwo li:nth-of-type(1n + 2) .timelineBorder {
|
|
|
7602
7602
|
line-height: 1.25rem;
|
|
7603
7603
|
}
|
|
7604
7604
|
|
|
7605
|
+
.lg\:leading-7 {
|
|
7606
|
+
line-height: 1.75rem;
|
|
7607
|
+
}
|
|
7608
|
+
|
|
7609
|
+
.lg\:leading-7\.5 {
|
|
7610
|
+
line-height: 1.875rem;
|
|
7611
|
+
}
|
|
7612
|
+
|
|
7605
7613
|
.lg\:text-primary {
|
|
7606
7614
|
color: #005293;
|
|
7607
7615
|
color: var(--color-primary-ds);
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-6 text-lg leading-normal copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</p>
|
|
2
|
+
<p class="mt-6 text-lg leading-normal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</ul>
|
|
5
|
+
<ul class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</ol>
|
|
8
|
+
<ol class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/if}}
|
package/dist/views_static/components/content/copytext/components/paragraph/paragraph_body.hbs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-6 text-lg leading-normal copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</p>
|
|
2
|
+
<p class="mt-6 text-lg leading-normal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</ul>
|
|
5
|
+
<ul class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</ol>
|
|
8
|
+
<ol class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/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": "1.77.
|
|
9
|
+
"version": "1.77.6",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
package/src/stories/views/components/content/copytext/components/paragraph/paragraph_body.hbs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{{#if this.isText}}
|
|
2
|
-
<p class="mt-6 text-lg leading-normal copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</p>
|
|
2
|
+
<p class="mt-6 text-lg leading-normal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</p>
|
|
3
3
|
{{/if}}
|
|
4
4
|
{{#if this.isUl}}
|
|
5
|
-
<ul class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</ul>
|
|
5
|
+
<ul class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-disc copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ul>
|
|
6
6
|
{{/if}}
|
|
7
7
|
{{#if this.isOl}}
|
|
8
|
-
<ol class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl dark:text-text-dark">{{{this.text}}}</ol>
|
|
8
|
+
<ol class="pl-5 mt-6 overflow-hidden text-lg leading-normal list-decimal copytextParagraphDS sm480:text-xl lg:leading-7.5 dark:text-text-dark">{{{this.text}}}</ol>
|
|
9
9
|
{{/if}}
|