hr-design-system-handlebars 1.57.6 → 1.57.7
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 +6 -3
- package/dist/views/components/content/copytext/components/infobox.hbs +36 -15
- package/dist/views_static/components/content/copytext/components/infobox.hbs +36 -15
- package/package.json +1 -1
- package/src/stories/views/components/content/copytext/components/infobox.hbs +36 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.57.7 (Tue Feb 13 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- copytext bugfixes 2 [#842](https://github.com/mumprod/hr-design-system-handlebars/pull/842) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.57.6 (Mon Feb 12 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1302,6 +1302,9 @@ a.link:hover {
|
|
|
1302
1302
|
.\!mb-0 {
|
|
1303
1303
|
margin-bottom: 0px !important;
|
|
1304
1304
|
}
|
|
1305
|
+
.\!mt-0 {
|
|
1306
|
+
margin-top: 0px !important;
|
|
1307
|
+
}
|
|
1305
1308
|
.\!mt-4 {
|
|
1306
1309
|
margin-top: 1rem !important;
|
|
1307
1310
|
}
|
|
@@ -3305,7 +3308,7 @@ a.link:hover {
|
|
|
3305
3308
|
border-bottom-color: var(--color-secondary-ds);
|
|
3306
3309
|
}
|
|
3307
3310
|
.counter-reset {
|
|
3308
|
-
counter-reset:
|
|
3311
|
+
counter-reset: cnt1707819558461;
|
|
3309
3312
|
}
|
|
3310
3313
|
.hyphens-auto {
|
|
3311
3314
|
-webkit-hyphens: auto;
|
|
@@ -3607,7 +3610,7 @@ a.link:hover {
|
|
|
3607
3610
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3608
3611
|
}
|
|
3609
3612
|
.-ordered {
|
|
3610
|
-
counter-increment:
|
|
3613
|
+
counter-increment: cnt1707819558461 1;
|
|
3611
3614
|
}
|
|
3612
3615
|
.-ordered::before {
|
|
3613
3616
|
position: absolute;
|
|
@@ -3623,7 +3626,7 @@ a.link:hover {
|
|
|
3623
3626
|
letter-spacing: .0125em;
|
|
3624
3627
|
--tw-text-opacity: 1;
|
|
3625
3628
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3626
|
-
content: counter(
|
|
3629
|
+
content: counter(cnt1707819558461);
|
|
3627
3630
|
}
|
|
3628
3631
|
/*! ****************************/
|
|
3629
3632
|
/*! DataPolicy stuff */
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{{#>components/content/copytext/components/common/paragraphbox_frame _showFullsize=this.paragraphProperties.[0].showFullSize}}
|
|
2
2
|
|
|
3
3
|
<span class="sr-only">{{loca "story_infobox_intro_sr" }}</span>
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
|
|
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>
|
|
7
|
+
{{/if}}
|
|
6
8
|
|
|
7
9
|
{{~#with this.paragraphBoxItem }}
|
|
8
10
|
{{~#if this.isImage}}
|
|
@@ -12,20 +14,39 @@
|
|
|
12
14
|
{{/unless}}
|
|
13
15
|
{{/if}}
|
|
14
16
|
{{#if this.showPortrait.isTrue }}
|
|
15
|
-
{{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
{{~#if ../this.paragraphProperties.[0].title}}
|
|
18
|
+
{{> components/content/copytext/components/image/figure
|
|
19
|
+
_cssClass="!mt-5 !mb-0 !mx-0"
|
|
20
|
+
_type="story"
|
|
21
|
+
_variant="copytext-portrait"
|
|
22
|
+
_noAr="true"
|
|
23
|
+
_isWebview=../../_isWebview}}
|
|
24
|
+
{{else}}
|
|
25
|
+
{{> components/content/copytext/components/image/figure
|
|
26
|
+
_cssClass="!mt-0 !mb-0 !mx-0"
|
|
27
|
+
_type="story"
|
|
28
|
+
_variant="copytext-portrait"
|
|
29
|
+
_noAr="true"
|
|
30
|
+
_isWebview=../../_isWebview}}
|
|
31
|
+
{{/if}}
|
|
21
32
|
{{else}}
|
|
22
|
-
{{
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
33
|
+
{{~#if ../this.paragraphProperties.[0].title}}
|
|
34
|
+
{{> components/content/copytext/components/image/figure
|
|
35
|
+
_cssClass="!mt-5 !mb-0 !mx-0"
|
|
36
|
+
_cssClassCaption="!mx-0"
|
|
37
|
+
_type="story"
|
|
38
|
+
_variant="100-copytext"
|
|
39
|
+
_pictureAddClass="ar-16-9"
|
|
40
|
+
_isWebview=../../_isWebview}}
|
|
41
|
+
{{else}}
|
|
42
|
+
{{> components/content/copytext/components/image/figure
|
|
43
|
+
_cssClass="!mt-0 !mb-0 !mx-0"
|
|
44
|
+
_cssClassCaption="!mx-0"
|
|
45
|
+
_type="story"
|
|
46
|
+
_variant="100-copytext"
|
|
47
|
+
_pictureAddClass="ar-16-9"
|
|
48
|
+
_isWebview=../../_isWebview}}
|
|
49
|
+
{{/if}}
|
|
29
50
|
{{/if}}
|
|
30
51
|
{{#if ../paragraphProperties.[0].showFullSize }}
|
|
31
52
|
{{#unless this.showFullSize.isTrue }}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{{#>components/content/copytext/components/common/paragraphbox_frame _showFullsize=this.paragraphProperties.[0].showFullSize}}
|
|
2
2
|
|
|
3
3
|
<span class="sr-only">{{loca "story_infobox_intro_sr" }}</span>
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
|
|
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>
|
|
7
|
+
{{/if}}
|
|
6
8
|
|
|
7
9
|
{{~#with this.paragraphBoxItem }}
|
|
8
10
|
{{~#if this.isImage}}
|
|
@@ -12,20 +14,39 @@
|
|
|
12
14
|
{{/unless}}
|
|
13
15
|
{{/if}}
|
|
14
16
|
{{#if this.showPortrait.isTrue }}
|
|
15
|
-
{{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
{{~#if ../this.paragraphProperties.[0].title}}
|
|
18
|
+
{{> components/content/copytext/components/image/figure
|
|
19
|
+
_cssClass="!mt-5 !mb-0 !mx-0"
|
|
20
|
+
_type="story"
|
|
21
|
+
_variant="copytext-portrait"
|
|
22
|
+
_noAr="true"
|
|
23
|
+
_isWebview=../../_isWebview}}
|
|
24
|
+
{{else}}
|
|
25
|
+
{{> components/content/copytext/components/image/figure
|
|
26
|
+
_cssClass="!mt-0 !mb-0 !mx-0"
|
|
27
|
+
_type="story"
|
|
28
|
+
_variant="copytext-portrait"
|
|
29
|
+
_noAr="true"
|
|
30
|
+
_isWebview=../../_isWebview}}
|
|
31
|
+
{{/if}}
|
|
21
32
|
{{else}}
|
|
22
|
-
{{
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
33
|
+
{{~#if ../this.paragraphProperties.[0].title}}
|
|
34
|
+
{{> components/content/copytext/components/image/figure
|
|
35
|
+
_cssClass="!mt-5 !mb-0 !mx-0"
|
|
36
|
+
_cssClassCaption="!mx-0"
|
|
37
|
+
_type="story"
|
|
38
|
+
_variant="100-copytext"
|
|
39
|
+
_pictureAddClass="ar-16-9"
|
|
40
|
+
_isWebview=../../_isWebview}}
|
|
41
|
+
{{else}}
|
|
42
|
+
{{> components/content/copytext/components/image/figure
|
|
43
|
+
_cssClass="!mt-0 !mb-0 !mx-0"
|
|
44
|
+
_cssClassCaption="!mx-0"
|
|
45
|
+
_type="story"
|
|
46
|
+
_variant="100-copytext"
|
|
47
|
+
_pictureAddClass="ar-16-9"
|
|
48
|
+
_isWebview=../../_isWebview}}
|
|
49
|
+
{{/if}}
|
|
29
50
|
{{/if}}
|
|
30
51
|
{{#if ../paragraphProperties.[0].showFullSize }}
|
|
31
52
|
{{#unless this.showFullSize.isTrue }}
|
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
|
+
"version": "1.57.7",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
{{#>components/content/copytext/components/common/paragraphbox_frame _showFullsize=this.paragraphProperties.[0].showFullSize}}
|
|
2
2
|
|
|
3
3
|
<span class="sr-only">{{loca "story_infobox_intro_sr" }}</span>
|
|
4
|
-
|
|
5
|
-
|
|
4
|
+
|
|
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>
|
|
7
|
+
{{/if}}
|
|
6
8
|
|
|
7
9
|
{{~#with this.paragraphBoxItem }}
|
|
8
10
|
{{~#if this.isImage}}
|
|
@@ -12,20 +14,39 @@
|
|
|
12
14
|
{{/unless}}
|
|
13
15
|
{{/if}}
|
|
14
16
|
{{#if this.showPortrait.isTrue }}
|
|
15
|
-
{{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
17
|
+
{{~#if ../this.paragraphProperties.[0].title}}
|
|
18
|
+
{{> components/content/copytext/components/image/figure
|
|
19
|
+
_cssClass="!mt-5 !mb-0 !mx-0"
|
|
20
|
+
_type="story"
|
|
21
|
+
_variant="copytext-portrait"
|
|
22
|
+
_noAr="true"
|
|
23
|
+
_isWebview=../../_isWebview}}
|
|
24
|
+
{{else}}
|
|
25
|
+
{{> components/content/copytext/components/image/figure
|
|
26
|
+
_cssClass="!mt-0 !mb-0 !mx-0"
|
|
27
|
+
_type="story"
|
|
28
|
+
_variant="copytext-portrait"
|
|
29
|
+
_noAr="true"
|
|
30
|
+
_isWebview=../../_isWebview}}
|
|
31
|
+
{{/if}}
|
|
21
32
|
{{else}}
|
|
22
|
-
{{
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
33
|
+
{{~#if ../this.paragraphProperties.[0].title}}
|
|
34
|
+
{{> components/content/copytext/components/image/figure
|
|
35
|
+
_cssClass="!mt-5 !mb-0 !mx-0"
|
|
36
|
+
_cssClassCaption="!mx-0"
|
|
37
|
+
_type="story"
|
|
38
|
+
_variant="100-copytext"
|
|
39
|
+
_pictureAddClass="ar-16-9"
|
|
40
|
+
_isWebview=../../_isWebview}}
|
|
41
|
+
{{else}}
|
|
42
|
+
{{> components/content/copytext/components/image/figure
|
|
43
|
+
_cssClass="!mt-0 !mb-0 !mx-0"
|
|
44
|
+
_cssClassCaption="!mx-0"
|
|
45
|
+
_type="story"
|
|
46
|
+
_variant="100-copytext"
|
|
47
|
+
_pictureAddClass="ar-16-9"
|
|
48
|
+
_isWebview=../../_isWebview}}
|
|
49
|
+
{{/if}}
|
|
29
50
|
{{/if}}
|
|
30
51
|
{{#if ../paragraphProperties.[0].showFullSize }}
|
|
31
52
|
{{#unless this.showFullSize.isTrue }}
|