hr-design-system-handlebars 1.50.22 โ 1.50.24
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 +25 -0
- package/dist/assets/index.css +15 -12
- package/dist/views/components/article/components/contentbox/contentbox.hbs +1 -1
- package/dist/views/components/content/copytext/components/posterteaser.hbs +1 -1
- package/dist/views_static/components/article/components/contentbox/contentbox.hbs +1 -1
- package/dist/views_static/components/content/copytext/components/posterteaser.hbs +1 -1
- package/package.json +1 -1
- package/src/stories/views/components/article/components/contentbox/contentbox.hbs +1 -1
- package/src/stories/views/components/content/copytext/components/posterteaser.hbs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,28 @@
|
|
|
1
|
+
# v1.50.24 (Thu Nov 30 2023)
|
|
2
|
+
|
|
3
|
+
#### ๐ Bug Fix
|
|
4
|
+
|
|
5
|
+
- Fehlende Abstรคnde bei der Contentbox [#773](https://github.com/mumprod/hr-design-system-handlebars/pull/773) (saad.elbaciri@hr.de [@selbaciri](https://github.com/selbaciri))
|
|
6
|
+
|
|
7
|
+
#### Authors: 2
|
|
8
|
+
|
|
9
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
10
|
+
- selbaciri (saad.elbaciri@hr.de)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
# v1.50.23 (Wed Nov 29 2023)
|
|
15
|
+
|
|
16
|
+
#### ๐ Bug Fix
|
|
17
|
+
|
|
18
|
+
- switch to full-width on sm480 [#771](https://github.com/mumprod/hr-design-system-handlebars/pull/771) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
19
|
+
|
|
20
|
+
#### Authors: 1
|
|
21
|
+
|
|
22
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
1
26
|
# v1.50.22 (Wed Nov 29 2023)
|
|
2
27
|
|
|
3
28
|
#### ๐ Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -1936,6 +1936,9 @@ article.indexText ul {
|
|
|
1936
1936
|
.self-baseline {
|
|
1937
1937
|
align-self: baseline;
|
|
1938
1938
|
}
|
|
1939
|
+
.overflow-auto {
|
|
1940
|
+
overflow: auto;
|
|
1941
|
+
}
|
|
1939
1942
|
.overflow-hidden {
|
|
1940
1943
|
overflow: hidden;
|
|
1941
1944
|
}
|
|
@@ -3195,7 +3198,7 @@ article.indexText ul {
|
|
|
3195
3198
|
border-bottom-color: var(--color-secondary-ds);
|
|
3196
3199
|
}
|
|
3197
3200
|
.counter-reset {
|
|
3198
|
-
counter-reset:
|
|
3201
|
+
counter-reset: cnt1701359004619;
|
|
3199
3202
|
}
|
|
3200
3203
|
.hyphens-auto {
|
|
3201
3204
|
-webkit-hyphens: auto;
|
|
@@ -3456,7 +3459,7 @@ article.indexText ul {
|
|
|
3456
3459
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3457
3460
|
}
|
|
3458
3461
|
.-ordered {
|
|
3459
|
-
counter-increment:
|
|
3462
|
+
counter-increment: cnt1701359004619 1;
|
|
3460
3463
|
}
|
|
3461
3464
|
.-ordered::before {
|
|
3462
3465
|
position: absolute;
|
|
@@ -3472,7 +3475,7 @@ article.indexText ul {
|
|
|
3472
3475
|
letter-spacing: .0125em;
|
|
3473
3476
|
--tw-text-opacity: 1;
|
|
3474
3477
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3475
|
-
content: counter(
|
|
3478
|
+
content: counter(cnt1701359004619);
|
|
3476
3479
|
}
|
|
3477
3480
|
/*! ****************************/
|
|
3478
3481
|
/*! DataPolicy stuff */
|
|
@@ -5200,6 +5203,11 @@ article.indexText ul {
|
|
|
5200
5203
|
}
|
|
5201
5204
|
@media (min-width: 480px) {
|
|
5202
5205
|
|
|
5206
|
+
.sm480\:mx-auto {
|
|
5207
|
+
margin-left: auto;
|
|
5208
|
+
margin-right: auto;
|
|
5209
|
+
}
|
|
5210
|
+
|
|
5203
5211
|
.sm480\:my-5 {
|
|
5204
5212
|
margin-top: 1.25rem;
|
|
5205
5213
|
margin-bottom: 1.25rem;
|
|
@@ -5217,6 +5225,10 @@ article.indexText ul {
|
|
|
5217
5225
|
margin-top: 1rem;
|
|
5218
5226
|
}
|
|
5219
5227
|
|
|
5228
|
+
.sm480\:w-2\/3 {
|
|
5229
|
+
width: 66.666667%;
|
|
5230
|
+
}
|
|
5231
|
+
|
|
5220
5232
|
.sm480\:pb-7 {
|
|
5221
5233
|
padding-bottom: 1.75rem;
|
|
5222
5234
|
}
|
|
@@ -5668,11 +5680,6 @@ article.indexText ul {
|
|
|
5668
5680
|
margin-right: 1.25rem;
|
|
5669
5681
|
}
|
|
5670
5682
|
|
|
5671
|
-
.md\:mx-auto {
|
|
5672
|
-
margin-left: auto;
|
|
5673
|
-
margin-right: auto;
|
|
5674
|
-
}
|
|
5675
|
-
|
|
5676
5683
|
.md\:-mt-40 {
|
|
5677
5684
|
margin-top: -10rem;
|
|
5678
5685
|
}
|
|
@@ -5796,10 +5803,6 @@ article.indexText ul {
|
|
|
5796
5803
|
width: 3rem;
|
|
5797
5804
|
}
|
|
5798
5805
|
|
|
5799
|
-
.md\:w-2\/3 {
|
|
5800
|
-
width: 66.666667%;
|
|
5801
|
-
}
|
|
5802
|
-
|
|
5803
5806
|
.md\:w-22 {
|
|
5804
5807
|
width: 5.5rem;
|
|
5805
5808
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="border-y border-gray-boulder contentbox-box mt-13 mb-5 sm480:pb-7.5 pb-5 sm:px-0 px-5.5 {{#unless this.showFullSize.isTrue}} mt-7.5 mb-6 mr-0 sm:mr-6 md:w-6/12 float-left{{/unless}}">
|
|
1
|
+
<div class="border-y border-gray-boulder overflow-auto contentbox-box mt-13 mb-5 sm480:pb-7.5 pb-5 sm:px-0 px-5.5 {{#unless this.showFullSize.isTrue}} mt-7.5 mb-6 mr-0 sm:mr-6 md:w-6/12 float-left{{/unless}}">
|
|
2
2
|
{{~> components/base/a11y/hiddenText _locaTag="story_infobox_intro_sr" ~}}
|
|
3
3
|
{{#if this.title}}
|
|
4
4
|
<h3 class="mt-6 -mb-1 text-lg font-normal contentbox-title font-headingSerif dark:text-text-dark">{{this.title}}</h3>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{~#if (isStorybook)~}}
|
|
2
|
-
<div class="{{#if this.showFullSize.isTrue }}clear-both w-full mt-12 {{#unless this.showStretched.isTrue }}
|
|
2
|
+
<div class="{{#if this.showFullSize.isTrue }}clear-both w-full mt-12 {{#unless this.showStretched.isTrue }}sm480:w-2/3 sm480:mx-auto{{/unless}}{{else}}w-full md:w-1/2 float-left my-7 mr-0 md:mr-5{{/if}}">
|
|
3
3
|
{{> components/teaser/teaser_poster _isCopytext=true }}
|
|
4
4
|
</div>
|
|
5
5
|
{{~else~}}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="border-y border-gray-boulder contentbox-box mt-13 mb-5 sm480:pb-7.5 pb-5 sm:px-0 px-5.5 {{#unless this.showFullSize.isTrue}} mt-7.5 mb-6 mr-0 sm:mr-6 md:w-6/12 float-left{{/unless}}">
|
|
1
|
+
<div class="border-y border-gray-boulder overflow-auto contentbox-box mt-13 mb-5 sm480:pb-7.5 pb-5 sm:px-0 px-5.5 {{#unless this.showFullSize.isTrue}} mt-7.5 mb-6 mr-0 sm:mr-6 md:w-6/12 float-left{{/unless}}">
|
|
2
2
|
{{~> components/base/a11y/hiddenText _locaTag="story_infobox_intro_sr" ~}}
|
|
3
3
|
{{#if this.title}}
|
|
4
4
|
<h3 class="mt-6 -mb-1 text-lg font-normal contentbox-title font-headingSerif dark:text-text-dark">{{this.title}}</h3>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{~#if (isStorybook)~}}
|
|
2
|
-
<div class="{{#if this.showFullSize.isTrue }}clear-both w-full mt-12 {{#unless this.showStretched.isTrue }}
|
|
2
|
+
<div class="{{#if this.showFullSize.isTrue }}clear-both w-full mt-12 {{#unless this.showStretched.isTrue }}sm480:w-2/3 sm480:mx-auto{{/unless}}{{else}}w-full md:w-1/2 float-left my-7 mr-0 md:mr-5{{/if}}">
|
|
3
3
|
{{> components/teaser/teaser_poster _isCopytext=true }}
|
|
4
4
|
</div>
|
|
5
5
|
{{~else~}}
|
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.
|
|
9
|
+
"version": "1.50.24",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<div class="border-y border-gray-boulder contentbox-box mt-13 mb-5 sm480:pb-7.5 pb-5 sm:px-0 px-5.5 {{#unless this.showFullSize.isTrue}} mt-7.5 mb-6 mr-0 sm:mr-6 md:w-6/12 float-left{{/unless}}">
|
|
1
|
+
<div class="border-y border-gray-boulder overflow-auto contentbox-box mt-13 mb-5 sm480:pb-7.5 pb-5 sm:px-0 px-5.5 {{#unless this.showFullSize.isTrue}} mt-7.5 mb-6 mr-0 sm:mr-6 md:w-6/12 float-left{{/unless}}">
|
|
2
2
|
{{~> components/base/a11y/hiddenText _locaTag="story_infobox_intro_sr" ~}}
|
|
3
3
|
{{#if this.title}}
|
|
4
4
|
<h3 class="mt-6 -mb-1 text-lg font-normal contentbox-title font-headingSerif dark:text-text-dark">{{this.title}}</h3>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{{~#if (isStorybook)~}}
|
|
2
|
-
<div class="{{#if this.showFullSize.isTrue }}clear-both w-full mt-12 {{#unless this.showStretched.isTrue }}
|
|
2
|
+
<div class="{{#if this.showFullSize.isTrue }}clear-both w-full mt-12 {{#unless this.showStretched.isTrue }}sm480:w-2/3 sm480:mx-auto{{/unless}}{{else}}w-full md:w-1/2 float-left my-7 mr-0 md:mr-5{{/if}}">
|
|
3
3
|
{{> components/teaser/teaser_poster _isCopytext=true }}
|
|
4
4
|
</div>
|
|
5
5
|
{{~else~}}
|