hr-design-system-handlebars 1.35.7 → 1.35.9
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 +24 -0
- package/build/handlebars/helpers/handlebar-helpers.js +2 -2
- package/dist/assets/icons/icons/svgmap/linkedin-ds.svg +12 -0
- package/dist/assets/icons/icons/svgmap.min.svg +1 -1
- package/dist/assets/index.css +4 -4
- package/dist/views/components/dataPolicySettings/data_policy_settings.hbs +1 -1
- package/dist/views/components/site_header/section_navigation/section_navigation_item.hbs +3 -3
- package/dist/views_static/components/dataPolicySettings/data_policy_settings.hbs +1 -1
- package/dist/views_static/components/site_header/section_navigation/section_navigation_item.hbs +3 -3
- package/package.json +1 -1
- package/src/assets/icons/icons/svgmap/linkedin-ds.svg +12 -0
- package/src/assets/icons/icons/svgmap.min.svg +1 -1
- package/src/assets/tailwind.css +1 -1
- package/src/stories/views/components/dataPolicySettings/data_policy_settings.hbs +1 -1
- package/src/stories/views/components/site_header/section_navigation/section_navigation_item.hbs +3 -3
package/dist/assets/index.css
CHANGED
|
@@ -3025,7 +3025,7 @@ video {
|
|
|
3025
3025
|
border-bottom-color: var(--color-secondary-ds);
|
|
3026
3026
|
}
|
|
3027
3027
|
.counter-reset {
|
|
3028
|
-
counter-reset:
|
|
3028
|
+
counter-reset: cnt1691575945717;
|
|
3029
3029
|
}
|
|
3030
3030
|
.hyphens-auto {
|
|
3031
3031
|
-webkit-hyphens: auto;
|
|
@@ -3260,7 +3260,7 @@ video {
|
|
|
3260
3260
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3261
3261
|
}
|
|
3262
3262
|
.-ordered {
|
|
3263
|
-
counter-increment:
|
|
3263
|
+
counter-increment: cnt1691575945717 1;
|
|
3264
3264
|
}
|
|
3265
3265
|
.-ordered::before {
|
|
3266
3266
|
position: absolute;
|
|
@@ -3276,7 +3276,7 @@ video {
|
|
|
3276
3276
|
letter-spacing: .0125em;
|
|
3277
3277
|
--tw-text-opacity: 1;
|
|
3278
3278
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3279
|
-
content: counter(
|
|
3279
|
+
content: counter(cnt1691575945717);
|
|
3280
3280
|
}
|
|
3281
3281
|
/*! ****************************/
|
|
3282
3282
|
/*! DataPolicy stuff */
|
|
@@ -4483,7 +4483,7 @@ video {
|
|
|
4483
4483
|
--border-navigation-border-image: linear-gradient(to right, #ec6a19 0%, #ec6a19 17%, #00aec5 17%, #00aec5 34%, #00a781 34%, #00a781 51%, #fcbf1f 51%, #fcbf1f 68%, #e51353 68%, #e51353 85%, #8d3b8e 85%, #8d3b8e 100%);
|
|
4484
4484
|
|
|
4485
4485
|
/* Footer Logo Invert */
|
|
4486
|
-
--invert-logo-footer:
|
|
4486
|
+
--invert-logo-footer: 1;
|
|
4487
4487
|
|
|
4488
4488
|
--color-footer-bg: #606060;
|
|
4489
4489
|
--color-footer-border: #007ea1;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div class="flex items-center justify-center mt-4 md:mt-0 md:justify-end js-load" data-hr-data-policy-settings-ds='{}'>
|
|
2
|
-
{{#> components/button/button _size="md" _id="globalSettingsButton" _css="hover:text-secondary js-data-policy-settings-button" _variant="secondary" _onBackground=(
|
|
2
|
+
{{#> components/button/button _size="md" _id="globalSettingsButton" _css="hover:text-secondary js-data-policy-settings-button" _variant="secondary" _onBackground=(configProperty "footer.onBackground") }}
|
|
3
3
|
{{> components/button/components/button_icon _icon="settings" _iconmap="icons" _css="w-5 h-5"}}
|
|
4
4
|
{{> components/button/components/button_label _label=(loca "cookies_setting_button_text")}}
|
|
5
5
|
{{/components/button/button}}
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
{{#if this.subNavigation}}
|
|
23
23
|
{{#if this.subNavigation.showAsFlyout}}
|
|
24
24
|
{{!-- Gilt z.B. für "SHOWS" bei HR3 --}}
|
|
25
|
-
<a href="{{resourceUrl this.url}}"
|
|
25
|
+
<a href="{{if this.extern this.url (resourceUrl this.url)}}"
|
|
26
26
|
id="button-{{getRandom}}-1"
|
|
27
27
|
@click="preventDefault(isDesktopView(),$event); toggle(); correctFlyoutPos()"
|
|
28
28
|
@resize.window="dropped=false; correctFlyoutPos()"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
>
|
|
38
38
|
{{else}}
|
|
39
39
|
{{!-- Gilt z.B. für POLITIK: --}}
|
|
40
|
-
<a href="{{resourceUrl this.url}}"
|
|
40
|
+
<a href="{{if this.extern this.url (resourceUrl this.url)}}"
|
|
41
41
|
id="flyout-{{nextRandom}}-1"
|
|
42
42
|
|
|
43
43
|
:class="dropped ? 'font-bold' : ''"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
{{~else ~}}
|
|
55
55
|
|
|
56
56
|
{{!-- Gilt für START/GESELLSCHAFT/WIRTSCHAFT usw: --}}
|
|
57
|
-
<a href="{{resourceUrl this.url}}"
|
|
57
|
+
<a href="{{if this.extern this.url (resourceUrl this.url)}}"
|
|
58
58
|
class="{{#if this.selected}}-currentSection lg:justify-center {{/if}} link-focus-inset-white js-load flex justify-start pl-4 pr-4 h-10 lg:justify-center items-center w-full{{#if this.selected}} font-bold{{/if}}"
|
|
59
59
|
{{#if this.labelText}} aria-label="{{this.labelText}}"{{/if}}
|
|
60
60
|
data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": "1", "clickLabel": "Rubriknavigation::{{this.text}}-Link geklickt"}]}'
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div class="flex items-center justify-center mt-4 md:mt-0 md:justify-end js-load" data-hr-data-policy-settings-ds='{}'>
|
|
2
|
-
{{#> components/button/button _size="md" _id="globalSettingsButton" _css="hover:text-secondary js-data-policy-settings-button" _variant="secondary" _onBackground=(
|
|
2
|
+
{{#> components/button/button _size="md" _id="globalSettingsButton" _css="hover:text-secondary js-data-policy-settings-button" _variant="secondary" _onBackground=(configProperty "footer.onBackground") }}
|
|
3
3
|
{{> components/button/components/button_icon _icon="settings" _iconmap="icons" _css="w-5 h-5"}}
|
|
4
4
|
{{> components/button/components/button_label _label=(loca "cookies_setting_button_text")}}
|
|
5
5
|
{{/components/button/button}}
|
package/dist/views_static/components/site_header/section_navigation/section_navigation_item.hbs
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
{{#if this.subNavigation}}
|
|
23
23
|
{{#if this.subNavigation.showAsFlyout}}
|
|
24
24
|
{{!-- Gilt z.B. für "SHOWS" bei HR3 --}}
|
|
25
|
-
<a href="{{resourceUrl this.url}}"
|
|
25
|
+
<a href="{{if this.extern this.url (resourceUrl this.url)}}"
|
|
26
26
|
id="button-{{getRandom}}-1"
|
|
27
27
|
@click="preventDefault(isDesktopView(),$event); toggle(); correctFlyoutPos()"
|
|
28
28
|
@resize.window="dropped=false; correctFlyoutPos()"
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
>
|
|
38
38
|
{{else}}
|
|
39
39
|
{{!-- Gilt z.B. für POLITIK: --}}
|
|
40
|
-
<a href="{{resourceUrl this.url}}"
|
|
40
|
+
<a href="{{if this.extern this.url (resourceUrl this.url)}}"
|
|
41
41
|
id="flyout-{{nextRandom}}-1"
|
|
42
42
|
|
|
43
43
|
:class="dropped ? 'font-bold' : ''"
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
{{~else ~}}
|
|
55
55
|
|
|
56
56
|
{{!-- Gilt für START/GESELLSCHAFT/WIRTSCHAFT usw: --}}
|
|
57
|
-
<a href="{{resourceUrl this.url}}"
|
|
57
|
+
<a href="{{if this.extern this.url (resourceUrl this.url)}}"
|
|
58
58
|
class="{{#if this.selected}}-currentSection lg:justify-center {{/if}} link-focus-inset-white js-load flex justify-start pl-4 pr-4 h-10 lg:justify-center items-center w-full{{#if this.selected}} font-bold{{/if}}"
|
|
59
59
|
{{#if this.labelText}} aria-label="{{this.labelText}}"{{/if}}
|
|
60
60
|
data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": "1", "clickLabel": "Rubriknavigation::{{this.text}}-Link geklickt"}]}'
|
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.35.
|
|
9
|
+
"version": "1.35.9",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="in" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 320">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #fff;
|
|
7
|
+
}
|
|
8
|
+
</style>
|
|
9
|
+
</defs>
|
|
10
|
+
<path id="n" class="cls-1" d="m125.38,122.31h44.72v20.5h.64c9.1-15.59,26.05-24.91,44.1-24.23,47.22,0,55.92,31.07,55.92,71.44v82.24h-46.57v-72.92c0-17.41-.32-39.78-24.26-39.78s-27.94,18.95-27.94,38.51v74.16h-46.57l-.03-149.93Z"/>
|
|
11
|
+
<path id="i" class="cls-1" d="m52.99,122.29h46.57v149.97h-46.57V122.29Zm23.28-74.56c14.92,0,27.01,12.1,27.01,27.02,0,14.92-12.1,27.01-27.02,27.01-14.92,0-27.01-12.1-27.01-27.02s12.1-27.02,27.02-27.02h0"/>
|
|
12
|
+
</svg>
|