hr-design-system-handlebars 1.114.14 → 1.114.15
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 +3 -3
- package/dist/views/components/site_header/burger.hbs +2 -2
- package/dist/views/components/site_header/service_logo.hbs +2 -2
- package/dist/views/components/social_sharing/social_sharing_copytext.hbs +5 -3
- package/dist/views_static/components/site_header/burger.hbs +2 -2
- package/dist/views_static/components/site_header/service_logo.hbs +2 -2
- package/dist/views_static/components/social_sharing/social_sharing_copytext.hbs +5 -3
- package/package.json +1 -1
- package/src/stories/views/components/site_header/burger.hbs +2 -2
- package/src/stories/views/components/site_header/service_logo.hbs +2 -2
- package/src/stories/views/components/social_sharing/social_sharing_copytext.hbs +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.114.15 (Tue Nov 19 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- Seo/dpe 3036 [#1164](https://github.com/mumprod/hr-design-system-handlebars/pull/1164) ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.114.14 (Mon Nov 18 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3678,7 +3678,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3678
3678
|
border-bottom-color: var(--color-secondary-ds);
|
|
3679
3679
|
}
|
|
3680
3680
|
.counter-reset {
|
|
3681
|
-
counter-reset:
|
|
3681
|
+
counter-reset: cnt1732025534722;
|
|
3682
3682
|
}
|
|
3683
3683
|
.placeholder-text-xs::-webkit-input-placeholder {
|
|
3684
3684
|
font-size: 0.75rem;
|
|
@@ -4092,7 +4092,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4092
4092
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4093
4093
|
}
|
|
4094
4094
|
.-ordered {
|
|
4095
|
-
counter-increment:
|
|
4095
|
+
counter-increment: cnt1732025534722 1;
|
|
4096
4096
|
}
|
|
4097
4097
|
.-ordered::before {
|
|
4098
4098
|
position: absolute;
|
|
@@ -4110,7 +4110,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
4110
4110
|
--tw-text-opacity: 1;
|
|
4111
4111
|
color: rgba(0, 0, 0, 1);
|
|
4112
4112
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4113
|
-
content: counter(
|
|
4113
|
+
content: counter(cnt1732025534722);
|
|
4114
4114
|
}
|
|
4115
4115
|
/*! ****************************/
|
|
4116
4116
|
/*! DataPolicy stuff */
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
>
|
|
11
11
|
<span class="sr-only md:hidden">Open main menu</span>
|
|
12
12
|
<div class="absolute block w-6 -mt-px transform -translate-x-1/2 -translate-y-1/2 left-1/2 top-1/2">
|
|
13
|
-
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current " :class="
|
|
13
|
+
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current -mt-2" :class="{'rotate-45': $store.burgeropen, '-mt-2': ! $store.burgeropen }"></span>
|
|
14
14
|
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current" :class="{'opacity-0': $store.burgeropen } "></span>
|
|
15
|
-
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current" :class="{'-rotate-45': $store.burgeropen, 'mt-2': ! $store.burgeropen }"></span>
|
|
15
|
+
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current mt-2" :class="{'-rotate-45': $store.burgeropen, 'mt-2': ! $store.burgeropen }"></span>
|
|
16
16
|
</div>
|
|
17
17
|
</button>
|
|
18
18
|
</nav>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
class="relative flex h-10 {{#unless _isFooter}}brand-logo-size {{/unless}} md:hidden"
|
|
12
12
|
{{/if}}
|
|
13
13
|
>
|
|
14
|
-
<img src="{{resourceUrl "assets/base/icons/logo/brandlogo--mobile.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
14
|
+
<img width="152" height="150" src="{{resourceUrl "assets/base/icons/logo/brandlogo--mobile.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
15
15
|
class="w-auto h-full" alt="{{loca "meta_application_name"}}">
|
|
16
16
|
</div>
|
|
17
17
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
class="md:flex hidden justify-start w-auto {{#if _isFooter}}h-10 lg:h-12 {{else}}brand-logo-size md:brand-logo-size-md lg:brand-logo-size-lg h-12 lg:h-[3.875rem]{{/if}} "
|
|
24
24
|
{{/if}}
|
|
25
25
|
>
|
|
26
|
-
<img src="{{resourceUrl "assets/base/icons/logo/brandlogo--desk.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
26
|
+
<img width="300" height="66" src="{{resourceUrl "assets/base/icons/logo/brandlogo--desk.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
27
27
|
class="w-auto h-full" alt="{{loca "meta_application_name"}}">
|
|
28
28
|
</div>
|
|
29
29
|
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{{~#with this.socialSharing ~}}
|
|
2
2
|
<div
|
|
3
|
-
x-show="$screen('lg') && $store.sharingIsVisible == false && document.querySelector('.copytextWrapper').offsetHeight > 220"
|
|
4
3
|
x-init=""
|
|
5
|
-
class="print:hidden {{#unless ../_useSticky}}top-0
|
|
4
|
+
class="print:hidden hidden{{#unless ../_useSticky}} top-0{{/unless}} sticky w-10 col-start-2 pt-6 z-100 h-fit"
|
|
6
5
|
x-data="socialSharingHandler('vertical-desktop')"
|
|
7
6
|
x-intersect="sharingModuleShown()"
|
|
8
7
|
ax-load
|
|
9
8
|
x-ignore
|
|
9
|
+
x-cloak
|
|
10
10
|
{{#if ../_useSticky}}
|
|
11
11
|
:class="{'top-[142px]': $store.sectionNavIsVisible && $store.subNavIsVisible && $screen('lg') ,
|
|
12
12
|
'top-[106px]': $store.sectionNavIsVisible && !$store.subNavIsVisible && $screen('lg') ,
|
|
13
|
-
'top-[61px]' : !$store.sectionNavIsVisible && $screen('lg')
|
|
13
|
+
'top-[61px]' : !$store.sectionNavIsVisible && $screen('lg') ,
|
|
14
|
+
'hidden' : !($screen('lg') && $store.sharingIsVisible == false && document.querySelector('.copytextWrapper').offsetHeight > 220)
|
|
15
|
+
}"
|
|
14
16
|
{{/if}}
|
|
15
17
|
>
|
|
16
18
|
<div
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
>
|
|
11
11
|
<span class="sr-only md:hidden">Open main menu</span>
|
|
12
12
|
<div class="absolute block w-6 -mt-px transform -translate-x-1/2 -translate-y-1/2 left-1/2 top-1/2">
|
|
13
|
-
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current " :class="
|
|
13
|
+
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current -mt-2" :class="{'rotate-45': $store.burgeropen, '-mt-2': ! $store.burgeropen }"></span>
|
|
14
14
|
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current" :class="{'opacity-0': $store.burgeropen } "></span>
|
|
15
|
-
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current" :class="{'-rotate-45': $store.burgeropen, 'mt-2': ! $store.burgeropen }"></span>
|
|
15
|
+
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current mt-2" :class="{'-rotate-45': $store.burgeropen, 'mt-2': ! $store.burgeropen }"></span>
|
|
16
16
|
</div>
|
|
17
17
|
</button>
|
|
18
18
|
</nav>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
class="relative flex h-10 {{#unless _isFooter}}brand-logo-size {{/unless}} md:hidden"
|
|
12
12
|
{{/if}}
|
|
13
13
|
>
|
|
14
|
-
<img src="{{resourceUrl "assets/base/icons/logo/brandlogo--mobile.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
14
|
+
<img width="152" height="150" src="{{resourceUrl "assets/base/icons/logo/brandlogo--mobile.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
15
15
|
class="w-auto h-full" alt="{{loca "meta_application_name"}}">
|
|
16
16
|
</div>
|
|
17
17
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
class="md:flex hidden justify-start w-auto {{#if _isFooter}}h-10 lg:h-12 {{else}}brand-logo-size md:brand-logo-size-md lg:brand-logo-size-lg h-12 lg:h-[3.875rem]{{/if}} "
|
|
24
24
|
{{/if}}
|
|
25
25
|
>
|
|
26
|
-
<img src="{{resourceUrl "assets/base/icons/logo/brandlogo--desk.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
26
|
+
<img width="300" height="66" src="{{resourceUrl "assets/base/icons/logo/brandlogo--desk.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
27
27
|
class="w-auto h-full" alt="{{loca "meta_application_name"}}">
|
|
28
28
|
</div>
|
|
29
29
|
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{{~#with this.socialSharing ~}}
|
|
2
2
|
<div
|
|
3
|
-
x-show="$screen('lg') && $store.sharingIsVisible == false && document.querySelector('.copytextWrapper').offsetHeight > 220"
|
|
4
3
|
x-init=""
|
|
5
|
-
class="print:hidden {{#unless ../_useSticky}}top-0
|
|
4
|
+
class="print:hidden hidden{{#unless ../_useSticky}} top-0{{/unless}} sticky w-10 col-start-2 pt-6 z-100 h-fit"
|
|
6
5
|
x-data="socialSharingHandler('vertical-desktop')"
|
|
7
6
|
x-intersect="sharingModuleShown()"
|
|
8
7
|
ax-load
|
|
9
8
|
x-ignore
|
|
9
|
+
x-cloak
|
|
10
10
|
{{#if ../_useSticky}}
|
|
11
11
|
:class="{'top-[142px]': $store.sectionNavIsVisible && $store.subNavIsVisible && $screen('lg') ,
|
|
12
12
|
'top-[106px]': $store.sectionNavIsVisible && !$store.subNavIsVisible && $screen('lg') ,
|
|
13
|
-
'top-[61px]' : !$store.sectionNavIsVisible && $screen('lg')
|
|
13
|
+
'top-[61px]' : !$store.sectionNavIsVisible && $screen('lg') ,
|
|
14
|
+
'hidden' : !($screen('lg') && $store.sharingIsVisible == false && document.querySelector('.copytextWrapper').offsetHeight > 220)
|
|
15
|
+
}"
|
|
14
16
|
{{/if}}
|
|
15
17
|
>
|
|
16
18
|
<div
|
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.114.
|
|
9
|
+
"version": "1.114.15",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
>
|
|
11
11
|
<span class="sr-only md:hidden">Open main menu</span>
|
|
12
12
|
<div class="absolute block w-6 -mt-px transform -translate-x-1/2 -translate-y-1/2 left-1/2 top-1/2">
|
|
13
|
-
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current " :class="
|
|
13
|
+
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current -mt-2" :class="{'rotate-45': $store.burgeropen, '-mt-2': ! $store.burgeropen }"></span>
|
|
14
14
|
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current" :class="{'opacity-0': $store.burgeropen } "></span>
|
|
15
|
-
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current" :class="{'-rotate-45': $store.burgeropen, 'mt-2': ! $store.burgeropen }"></span>
|
|
15
|
+
<span aria-hidden="true" class="absolute block w-full h-0.5 transition duration-250 ease-in-out transform bg-current mt-2" :class="{'-rotate-45': $store.burgeropen, 'mt-2': ! $store.burgeropen }"></span>
|
|
16
16
|
</div>
|
|
17
17
|
</button>
|
|
18
18
|
</nav>
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
class="relative flex h-10 {{#unless _isFooter}}brand-logo-size {{/unless}} md:hidden"
|
|
12
12
|
{{/if}}
|
|
13
13
|
>
|
|
14
|
-
<img src="{{resourceUrl "assets/base/icons/logo/brandlogo--mobile.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
14
|
+
<img width="152" height="150" src="{{resourceUrl "assets/base/icons/logo/brandlogo--mobile.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
15
15
|
class="w-auto h-full" alt="{{loca "meta_application_name"}}">
|
|
16
16
|
</div>
|
|
17
17
|
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
class="md:flex hidden justify-start w-auto {{#if _isFooter}}h-10 lg:h-12 {{else}}brand-logo-size md:brand-logo-size-md lg:brand-logo-size-lg h-12 lg:h-[3.875rem]{{/if}} "
|
|
24
24
|
{{/if}}
|
|
25
25
|
>
|
|
26
|
-
<img src="{{resourceUrl "assets/base/icons/logo/brandlogo--desk.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
26
|
+
<img width="300" height="66" src="{{resourceUrl "assets/base/icons/logo/brandlogo--desk.min.svg" _brand=(defaultIfEmpty this.brand "hessenschau")}}"
|
|
27
27
|
class="w-auto h-full" alt="{{loca "meta_application_name"}}">
|
|
28
28
|
</div>
|
|
29
29
|
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
{{~#with this.socialSharing ~}}
|
|
2
2
|
<div
|
|
3
|
-
x-show="$screen('lg') && $store.sharingIsVisible == false && document.querySelector('.copytextWrapper').offsetHeight > 220"
|
|
4
3
|
x-init=""
|
|
5
|
-
class="print:hidden {{#unless ../_useSticky}}top-0
|
|
4
|
+
class="print:hidden hidden{{#unless ../_useSticky}} top-0{{/unless}} sticky w-10 col-start-2 pt-6 z-100 h-fit"
|
|
6
5
|
x-data="socialSharingHandler('vertical-desktop')"
|
|
7
6
|
x-intersect="sharingModuleShown()"
|
|
8
7
|
ax-load
|
|
9
8
|
x-ignore
|
|
9
|
+
x-cloak
|
|
10
10
|
{{#if ../_useSticky}}
|
|
11
11
|
:class="{'top-[142px]': $store.sectionNavIsVisible && $store.subNavIsVisible && $screen('lg') ,
|
|
12
12
|
'top-[106px]': $store.sectionNavIsVisible && !$store.subNavIsVisible && $screen('lg') ,
|
|
13
|
-
'top-[61px]' : !$store.sectionNavIsVisible && $screen('lg')
|
|
13
|
+
'top-[61px]' : !$store.sectionNavIsVisible && $screen('lg') ,
|
|
14
|
+
'hidden' : !($screen('lg') && $store.sharingIsVisible == false && document.querySelector('.copytextWrapper').offsetHeight > 220)
|
|
15
|
+
}"
|
|
14
16
|
{{/if}}
|
|
15
17
|
>
|
|
16
18
|
<div
|