hr-design-system-handlebars 1.131.2 → 1.132.0
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/.github/workflows/chromatic.yml +7 -7
- package/.github/workflows/release.yml +12 -8
- package/.nvmrc +1 -1
- package/CHANGELOG.md +39 -0
- package/dist/assets/index.css +3 -3
- package/dist/views/components/dataPolicySettings/data_policy_settings.hbs +6 -6
- package/dist/views/components/site_header/brand_navigation/brand_navigation_item.hbs +5 -1
- package/dist/views_static/components/dataPolicySettings/data_policy_settings.hbs +6 -6
- package/dist/views_static/components/site_header/brand_navigation/brand_navigation_item.hbs +5 -1
- package/package.json +15 -4
- package/src/stories/views/components/dataPolicySettings/data_policy_settings.hbs +6 -6
- package/src/stories/views/components/site_header/brand_navigation/brand_navigation_item.hbs +5 -1
|
@@ -10,17 +10,17 @@ jobs:
|
|
|
10
10
|
chromatic:
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
|
-
- uses: actions/checkout@
|
|
13
|
+
- uses: actions/checkout@v6
|
|
14
14
|
with:
|
|
15
15
|
fetch-depth: 0
|
|
16
|
-
- name: Use Node.js
|
|
17
|
-
uses: actions/setup-node@
|
|
16
|
+
- name: Use Node.js 24.x
|
|
17
|
+
uses: actions/setup-node@v6
|
|
18
18
|
with:
|
|
19
|
-
node-version:
|
|
19
|
+
node-version: 24.x
|
|
20
20
|
- name: install
|
|
21
|
-
run:
|
|
21
|
+
run: npm ci
|
|
22
22
|
- name: create partials
|
|
23
|
-
run:
|
|
23
|
+
run: npm run partialsToJs
|
|
24
24
|
- uses: chromaui/action@v11.3.0
|
|
25
25
|
with:
|
|
26
26
|
# 👇 Chromatic projectToken, refer to the manage page to obtain it.
|
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
traceChanged: false
|
|
31
31
|
diagnostics: true
|
|
32
32
|
skip: ${{ github.event.pull_request.draft == true }}
|
|
33
|
-
- uses: actions/upload-artifact@
|
|
33
|
+
- uses: actions/upload-artifact@v6
|
|
34
34
|
if: always()
|
|
35
35
|
with:
|
|
36
36
|
name: chromatic-build-artifacts-${{ github.run_id }}
|
|
@@ -5,6 +5,9 @@ name: Release
|
|
|
5
5
|
on:
|
|
6
6
|
push:
|
|
7
7
|
branches: [main]
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC
|
|
10
|
+
contents: read
|
|
8
11
|
|
|
9
12
|
# what the action will do
|
|
10
13
|
jobs:
|
|
@@ -15,21 +18,22 @@ jobs:
|
|
|
15
18
|
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
|
|
16
19
|
# the list of steps that the action will go through
|
|
17
20
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
21
|
+
- uses: actions/checkout@v6
|
|
19
22
|
- name: Prepare repository
|
|
20
23
|
run: git fetch --unshallow --tags
|
|
21
|
-
- name: Unset header
|
|
24
|
+
# - name: Unset header
|
|
22
25
|
# checkout@v2 adds a header that makes branch protection report errors ):
|
|
23
|
-
run: git config --local --unset http.https://github.com/.extraheader
|
|
24
|
-
- name: Use Node.js
|
|
25
|
-
uses: actions/setup-node@
|
|
26
|
+
# run: git config --local --unset http.https://github.com/.extraheader
|
|
27
|
+
- name: Use Node.js 24.x
|
|
28
|
+
uses: actions/setup-node@v6
|
|
26
29
|
with:
|
|
27
|
-
node-version:
|
|
28
|
-
|
|
30
|
+
node-version: 24.x
|
|
31
|
+
registry-url: https://registry.npmjs.org
|
|
32
|
+
package-manager-cache: false
|
|
33
|
+
- uses: bahmutov/npm-install@v1.12.0
|
|
29
34
|
- name: Create Release
|
|
30
35
|
env:
|
|
31
36
|
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
|
|
32
|
-
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
33
37
|
run: |
|
|
34
38
|
npm run build
|
|
35
39
|
npm run release
|
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
v24.14.1
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,42 @@
|
|
|
1
|
+
# v1.132.0 (Mon Jul 13 2026)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- :wrench: remove version-file from auto plugin config [#1366](https://github.com/mumprod/hr-design-system-handlebars/pull/1366) ([@szuelch](https://github.com/szuelch))
|
|
6
|
+
- :wrench: Change repository-url in package.json and configure auto plu… [#1365](https://github.com/mumprod/hr-design-system-handlebars/pull/1365) ([@szuelch](https://github.com/szuelch))
|
|
7
|
+
- :wrench: Add missing oidc permissions [#1364](https://github.com/mumprod/hr-design-system-handlebars/pull/1364) ([@szuelch](https://github.com/szuelch))
|
|
8
|
+
- :wrench: Hopefully use npm trusted publishing. Switch from yarn to npm [#1363](https://github.com/mumprod/hr-design-system-handlebars/pull/1363) ([@szuelch](https://github.com/szuelch))
|
|
9
|
+
|
|
10
|
+
#### 🐛 Bug Fix
|
|
11
|
+
|
|
12
|
+
- changing from at-internet to piano [#1362](https://github.com/mumprod/hr-design-system-handlebars/pull/1362) ([@selbaciri](https://github.com/selbaciri))
|
|
13
|
+
- Changing AT Internet to Piano [#1361](https://github.com/mumprod/hr-design-system-handlebars/pull/1361) ([@Paul-Atreidis](https://github.com/Paul-Atreidis))
|
|
14
|
+
|
|
15
|
+
#### ⚠️ Pushed to `main`
|
|
16
|
+
|
|
17
|
+
- Changing AT Internet to PIano ([@Paul-Atreidis](https://github.com/Paul-Atreidis))
|
|
18
|
+
|
|
19
|
+
#### Authors: 3
|
|
20
|
+
|
|
21
|
+
- [@Paul-Atreidis](https://github.com/Paul-Atreidis)
|
|
22
|
+
- [@szuelch](https://github.com/szuelch)
|
|
23
|
+
- Saad El Baciri ([@selbaciri](https://github.com/selbaciri))
|
|
24
|
+
|
|
25
|
+
---
|
|
26
|
+
|
|
27
|
+
# v1.131.3 (Tue May 19 2026)
|
|
28
|
+
|
|
29
|
+
#### 🐛 Bug Fix
|
|
30
|
+
|
|
31
|
+
- changed brand nav item template so external URL for dasding.de is pos… [#1360](https://github.com/mumprod/hr-design-system-handlebars/pull/1360) ([@vascoeduardo](https://github.com/vascoeduardo) [@eduardo-hr](https://github.com/eduardo-hr))
|
|
32
|
+
|
|
33
|
+
#### Authors: 2
|
|
34
|
+
|
|
35
|
+
- [@eduardo-hr](https://github.com/eduardo-hr)
|
|
36
|
+
- Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
|
|
37
|
+
|
|
38
|
+
---
|
|
39
|
+
|
|
1
40
|
# v1.131.2 (Fri May 15 2026)
|
|
2
41
|
|
|
3
42
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3925,7 +3925,7 @@ article #commentList {
|
|
|
3925
3925
|
border-bottom-color: var(--color-secondary-ds);
|
|
3926
3926
|
}
|
|
3927
3927
|
.counter-reset {
|
|
3928
|
-
counter-reset:
|
|
3928
|
+
counter-reset: cnt1783944532168;
|
|
3929
3929
|
}
|
|
3930
3930
|
.animate-delay-100 {
|
|
3931
3931
|
--tw-animate-delay: 100ms;
|
|
@@ -4386,7 +4386,7 @@ html { scroll-behavior: smooth; }
|
|
|
4386
4386
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
4387
4387
|
}
|
|
4388
4388
|
.-ordered {
|
|
4389
|
-
counter-increment:
|
|
4389
|
+
counter-increment: cnt1783944532168 1;
|
|
4390
4390
|
}
|
|
4391
4391
|
.-ordered::before {
|
|
4392
4392
|
position: absolute;
|
|
@@ -4404,7 +4404,7 @@ html { scroll-behavior: smooth; }
|
|
|
4404
4404
|
--tw-text-opacity: 1;
|
|
4405
4405
|
color: rgba(0, 0, 0, 1);
|
|
4406
4406
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
4407
|
-
content: counter(
|
|
4407
|
+
content: counter(cnt1783944532168);
|
|
4408
4408
|
}
|
|
4409
4409
|
/*! ****************************/
|
|
4410
4410
|
/*! DataPolicy stuff */
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
{{> components/forms/components/toggle_button _id="agf" _addClass="js-toggleSwitch-checkbox js-toggleSwitch-tracking" _whitelisted=true _screenReaderText="agf aktivieren/deaktivieren" }}
|
|
55
55
|
</div>
|
|
56
56
|
</li>
|
|
57
|
-
|
|
58
|
-
<span class="text-base text-black">
|
|
59
|
-
class="{{if (isUserConsentNeeded 'https://www.
|
|
60
|
-
href="https://www.
|
|
61
|
-
title="
|
|
57
|
+
<li class="px-6 py-3 flex justify-between items-center bg-white border-t border-[#e3e3e3]">
|
|
58
|
+
<span class="text-base text-black">Piano Software Inc. <a
|
|
59
|
+
class="{{if (isUserConsentNeeded 'https://www.piano.io/') 'js-user-consent-needed ' ''}}mt-3 -mb-1 ds-link text-link hover:underline" target="_blank" rel="noopener noreferrer"
|
|
60
|
+
href="https://www.piano.io/"
|
|
61
|
+
title="Piano Software Inc.">(https://www.piano.io/){{~> components/base/image/icon _icon="extern" _addClass="h-5 w-5 -mt-0.5 fill-current ml-1 inline-flex" _iconmap="icons"~}}</a></span>
|
|
62
62
|
<div class="flex w-fit">
|
|
63
|
-
{{> components/forms/components/toggle_button _id="
|
|
63
|
+
{{> components/forms/components/toggle_button _id="piano" _addClass="js-toggleSwitch-checkbox js-toggleSwitch-tracking" _whitelisted=true _screenReaderText="piano aktivieren/deaktivieren"}}
|
|
64
64
|
</div>
|
|
65
65
|
</li>
|
|
66
66
|
</ul>
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
<li class="sb-brand-navigation-item h-8 {{#if @first }}-ml-3 {{/if}}{{#if this.selected}} h-10 md:h-8 font-bold text-brandnav-pseudo {{/if}}cursor-pointer inline-block hover:lg:underline active:font-bold active:text-primary">
|
|
2
|
-
|
|
2
|
+
{{~#if this.url~}}
|
|
3
|
+
<a class="{{if (isUserConsentNeeded (resourceUrl "index.html" _site=this.site)) 'js-user-consent-needed ' ''}}link-focus-inset leading-[34px] items-center flex-col px-3 {{#if this.selected }}relative {{/if}}md:flex-row js-load w-max flex justify-center {{#if this.selected}} -currentBrand {{/if}}" aria-label="{{this.name}}" href="{{this.url}}"{{#if this.extern}} target="_blank" rel="noopener noreferrer"{{/if}} data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": 1, "clickLabel": "Brandnavigation::{{this.text}}-Link geklickt"}]}'>{{this.text}}</a>
|
|
4
|
+
{{~else~}}
|
|
5
|
+
<a class="{{if (isUserConsentNeeded (resourceUrl "index.html" _site=this.site)) 'js-user-consent-needed ' ''}}link-focus-inset leading-[34px] items-center flex-col px-3 {{#if this.selected }}relative {{/if}}md:flex-row js-load w-max flex justify-center {{#if this.selected}} -currentBrand {{/if}}" aria-label="{{this.name}}" href="{{resourceUrl "index.html" _site=this.site}}"{{#if this.extern}} target="_blank" rel="noopener noreferrer"{{/if}} data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": 1, "clickLabel": "Brandnavigation::{{this.text}}-Link geklickt"}]}'>{{this.text}}</a>
|
|
6
|
+
{{~/if~}}
|
|
3
7
|
</li>
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
{{> components/forms/components/toggle_button _id="agf" _addClass="js-toggleSwitch-checkbox js-toggleSwitch-tracking" _whitelisted=true _screenReaderText="agf aktivieren/deaktivieren" }}
|
|
55
55
|
</div>
|
|
56
56
|
</li>
|
|
57
|
-
|
|
58
|
-
<span class="text-base text-black">
|
|
59
|
-
class="{{if (isUserConsentNeeded 'https://www.
|
|
60
|
-
href="https://www.
|
|
61
|
-
title="
|
|
57
|
+
<li class="px-6 py-3 flex justify-between items-center bg-white border-t border-[#e3e3e3]">
|
|
58
|
+
<span class="text-base text-black">Piano Software Inc. <a
|
|
59
|
+
class="{{if (isUserConsentNeeded 'https://www.piano.io/') 'js-user-consent-needed ' ''}}mt-3 -mb-1 ds-link text-link hover:underline" target="_blank" rel="noopener noreferrer"
|
|
60
|
+
href="https://www.piano.io/"
|
|
61
|
+
title="Piano Software Inc.">(https://www.piano.io/){{~> components/base/image/icon _icon="extern" _addClass="h-5 w-5 -mt-0.5 fill-current ml-1 inline-flex" _iconmap="icons"~}}</a></span>
|
|
62
62
|
<div class="flex w-fit">
|
|
63
|
-
{{> components/forms/components/toggle_button _id="
|
|
63
|
+
{{> components/forms/components/toggle_button _id="piano" _addClass="js-toggleSwitch-checkbox js-toggleSwitch-tracking" _whitelisted=true _screenReaderText="piano aktivieren/deaktivieren"}}
|
|
64
64
|
</div>
|
|
65
65
|
</li>
|
|
66
66
|
</ul>
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
<li class="sb-brand-navigation-item h-8 {{#if @first }}-ml-3 {{/if}}{{#if this.selected}} h-10 md:h-8 font-bold text-brandnav-pseudo {{/if}}cursor-pointer inline-block hover:lg:underline active:font-bold active:text-primary">
|
|
2
|
-
|
|
2
|
+
{{~#if this.url~}}
|
|
3
|
+
<a class="{{if (isUserConsentNeeded (resourceUrl "index.html" _site=this.site)) 'js-user-consent-needed ' ''}}link-focus-inset leading-[34px] items-center flex-col px-3 {{#if this.selected }}relative {{/if}}md:flex-row js-load w-max flex justify-center {{#if this.selected}} -currentBrand {{/if}}" aria-label="{{this.name}}" href="{{this.url}}"{{#if this.extern}} target="_blank" rel="noopener noreferrer"{{/if}} data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": 1, "clickLabel": "Brandnavigation::{{this.text}}-Link geklickt"}]}'>{{this.text}}</a>
|
|
4
|
+
{{~else~}}
|
|
5
|
+
<a class="{{if (isUserConsentNeeded (resourceUrl "index.html" _site=this.site)) 'js-user-consent-needed ' ''}}link-focus-inset leading-[34px] items-center flex-col px-3 {{#if this.selected }}relative {{/if}}md:flex-row js-load w-max flex justify-center {{#if this.selected}} -currentBrand {{/if}}" aria-label="{{this.name}}" href="{{resourceUrl "index.html" _site=this.site}}"{{#if this.extern}} target="_blank" rel="noopener noreferrer"{{/if}} data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": 1, "clickLabel": "Brandnavigation::{{this.text}}-Link geklickt"}]}'>{{this.text}}</a>
|
|
6
|
+
{{~/if~}}
|
|
3
7
|
</li>
|
package/package.json
CHANGED
|
@@ -5,8 +5,8 @@
|
|
|
5
5
|
"private": false,
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"main": "dist/index.js",
|
|
8
|
-
"repository": "https://github.com/
|
|
9
|
-
"version": "1.
|
|
8
|
+
"repository": "https://github.com/mumprod/hr-design-system-handlebars",
|
|
9
|
+
"version": "1.132.0",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"build-storybook-docs": "storybook build --docs",
|
|
16
16
|
"build-storybook-docs-with-tailwind": "npm run build:tailwind && npm run build-storybook-docs",
|
|
17
17
|
"build:tailwind": "postcss src/assets/tailwind.css -o dist/assets/index.css",
|
|
18
|
-
"build": "
|
|
18
|
+
"build": "npm run clean && npm run build:tailwind && node ./build/scripts/build.js && npm run preparePartialsForDelivery",
|
|
19
19
|
"chromatic": "npx chromatic --project-token 84f1628f224a",
|
|
20
20
|
"clean": "rimraf dist",
|
|
21
21
|
"release": "npx auto shipit --base-branch=main",
|
|
@@ -27,9 +27,20 @@
|
|
|
27
27
|
"preparePartialsForDelivery": "gulp preparePartialsForDelivery",
|
|
28
28
|
"create-modernizr-config": "gulp createModernizrConfig",
|
|
29
29
|
"merge-locatags": "gulp mergeLocatags",
|
|
30
|
-
"prepare": "
|
|
30
|
+
"prepare": "npm run build",
|
|
31
31
|
"test-storybook": "test-storybook"
|
|
32
32
|
},
|
|
33
|
+
"auto": {
|
|
34
|
+
"plugins": [
|
|
35
|
+
[
|
|
36
|
+
"npm",
|
|
37
|
+
{
|
|
38
|
+
"setRcToken": false
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"released"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
33
44
|
"browserslist": [
|
|
34
45
|
"last 2 versions",
|
|
35
46
|
"not dead",
|
|
@@ -54,13 +54,13 @@
|
|
|
54
54
|
{{> components/forms/components/toggle_button _id="agf" _addClass="js-toggleSwitch-checkbox js-toggleSwitch-tracking" _whitelisted=true _screenReaderText="agf aktivieren/deaktivieren" }}
|
|
55
55
|
</div>
|
|
56
56
|
</li>
|
|
57
|
-
|
|
58
|
-
<span class="text-base text-black">
|
|
59
|
-
class="{{if (isUserConsentNeeded 'https://www.
|
|
60
|
-
href="https://www.
|
|
61
|
-
title="
|
|
57
|
+
<li class="px-6 py-3 flex justify-between items-center bg-white border-t border-[#e3e3e3]">
|
|
58
|
+
<span class="text-base text-black">Piano Software Inc. <a
|
|
59
|
+
class="{{if (isUserConsentNeeded 'https://www.piano.io/') 'js-user-consent-needed ' ''}}mt-3 -mb-1 ds-link text-link hover:underline" target="_blank" rel="noopener noreferrer"
|
|
60
|
+
href="https://www.piano.io/"
|
|
61
|
+
title="Piano Software Inc.">(https://www.piano.io/){{~> components/base/image/icon _icon="extern" _addClass="h-5 w-5 -mt-0.5 fill-current ml-1 inline-flex" _iconmap="icons"~}}</a></span>
|
|
62
62
|
<div class="flex w-fit">
|
|
63
|
-
{{> components/forms/components/toggle_button _id="
|
|
63
|
+
{{> components/forms/components/toggle_button _id="piano" _addClass="js-toggleSwitch-checkbox js-toggleSwitch-tracking" _whitelisted=true _screenReaderText="piano aktivieren/deaktivieren"}}
|
|
64
64
|
</div>
|
|
65
65
|
</li>
|
|
66
66
|
</ul>
|
|
@@ -1,3 +1,7 @@
|
|
|
1
1
|
<li class="sb-brand-navigation-item h-8 {{#if @first }}-ml-3 {{/if}}{{#if this.selected}} h-10 md:h-8 font-bold text-brandnav-pseudo {{/if}}cursor-pointer inline-block hover:lg:underline active:font-bold active:text-primary">
|
|
2
|
-
|
|
2
|
+
{{~#if this.url~}}
|
|
3
|
+
<a class="{{if (isUserConsentNeeded (resourceUrl "index.html" _site=this.site)) 'js-user-consent-needed ' ''}}link-focus-inset leading-[34px] items-center flex-col px-3 {{#if this.selected }}relative {{/if}}md:flex-row js-load w-max flex justify-center {{#if this.selected}} -currentBrand {{/if}}" aria-label="{{this.name}}" href="{{this.url}}"{{#if this.extern}} target="_blank" rel="noopener noreferrer"{{/if}} data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": 1, "clickLabel": "Brandnavigation::{{this.text}}-Link geklickt"}]}'>{{this.text}}</a>
|
|
4
|
+
{{~else~}}
|
|
5
|
+
<a class="{{if (isUserConsentNeeded (resourceUrl "index.html" _site=this.site)) 'js-user-consent-needed ' ''}}link-focus-inset leading-[34px] items-center flex-col px-3 {{#if this.selected }}relative {{/if}}md:flex-row js-load w-max flex justify-center {{#if this.selected}} -currentBrand {{/if}}" aria-label="{{this.name}}" href="{{resourceUrl "index.html" _site=this.site}}"{{#if this.extern}} target="_blank" rel="noopener noreferrer"{{/if}} data-hr-click-tracking='{"settings": [{"type": "uxNavigation", "secondLevelId": 1, "clickLabel": "Brandnavigation::{{this.text}}-Link geklickt"}]}'>{{this.text}}</a>
|
|
6
|
+
{{~/if~}}
|
|
3
7
|
</li>
|