hr-design-system-handlebars 1.35.4 → 1.35.6
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/.storybook/main.js +8 -0
- package/.storybook/preview.js +16 -1
- package/CHANGELOG.md +30 -0
- package/build/handlebars/helpers/handlebar-helpers.js +3 -0
- package/dist/assets/icons/icons/svgmap/rss-ds.svg +12 -17
- package/dist/assets/icons/icons/svgmap/x-ds.svg +12 -0
- package/dist/assets/icons/icons/svgmap.min.svg +1 -1
- package/dist/assets/index.css +71 -35
- package/dist/assets/js/components/dataPolicySettings/dataPolicySettingsDs.feature.js +1 -1
- package/dist/views/components/article/components/accordion/accordion.hbs +5 -2
- package/dist/views/components/dataPolicySettings/data_policy_settings.hbs +2 -2
- package/dist/views/components/footer/page_footer.hbs +2 -2
- package/dist/views/components/footer/page_footer_column.hbs +1 -1
- package/dist/views/components/footer/page_footer_content.hbs +1 -1
- package/dist/views/components/site_header/navigation_search/quick_search_form.hbs +2 -2
- package/dist/views_static/components/article/components/accordion/accordion.hbs +5 -2
- package/dist/views_static/components/dataPolicySettings/data_policy_settings.hbs +2 -2
- package/dist/views_static/components/footer/page_footer.hbs +2 -2
- package/dist/views_static/components/footer/page_footer_column.hbs +1 -1
- package/dist/views_static/components/footer/page_footer_content.hbs +1 -1
- package/dist/views_static/components/site_header/navigation_search/quick_search_form.hbs +2 -2
- package/package.json +14 -13
- package/src/assets/icons/icons/svgmap/rss-ds.svg +12 -17
- package/src/assets/icons/icons/svgmap/x-ds.svg +12 -0
- package/src/assets/icons/icons/svgmap.min.svg +1 -1
- package/src/assets/tailwind.css +11 -0
- package/src/stories/{InstallAndUpdate.mdx → InstallAndUpdateDependencies.mdx} +2 -2
- package/src/stories/InstallInDelivery.mdx +30 -0
- package/src/stories/views/components/article/components/accordion/accordion.hbs +5 -2
- package/src/stories/views/components/dataPolicySettings/dataPolicySettingsDs.feature.js +1 -1
- package/src/stories/views/components/dataPolicySettings/data_policy_settings.hbs +2 -2
- package/src/stories/views/components/footer/page_footer.hbs +2 -2
- package/src/stories/views/components/footer/page_footer_column.hbs +1 -1
- package/src/stories/views/components/footer/page_footer_content.hbs +1 -1
- package/src/stories/views/components/site_header/navigation_search/quick_search_form.hbs +2 -2
- package/tailwind.config.js +1 -0
package/.storybook/main.js
CHANGED
|
@@ -36,6 +36,14 @@ const config = {
|
|
|
36
36
|
},
|
|
37
37
|
},
|
|
38
38
|
},
|
|
39
|
+
{
|
|
40
|
+
name: '@storybook/addon-styling',
|
|
41
|
+
options: {
|
|
42
|
+
postCss: {
|
|
43
|
+
implementation: require.resolve('postcss'),
|
|
44
|
+
},
|
|
45
|
+
},
|
|
46
|
+
},
|
|
39
47
|
],
|
|
40
48
|
webpackFinal: async (config, { configType }) => {
|
|
41
49
|
// `configType` has a value of 'DEVELOPMENT' or 'PRODUCTION'
|
package/.storybook/preview.js
CHANGED
|
@@ -9,6 +9,7 @@ import { INITIAL_VIEWPORTS } from '@storybook/addon-viewport'
|
|
|
9
9
|
import Initializer from '../build/webpack/feature-loader/initializer/initializer'
|
|
10
10
|
import loadFeature from '../build/webpack/feature-loader/initializer/loader'
|
|
11
11
|
import '../src/assets/vendor/js/header.alpine'
|
|
12
|
+
import '../src/assets/tailwind.css'
|
|
12
13
|
|
|
13
14
|
function loadDelayedImages() {
|
|
14
15
|
setTimeout(function () {
|
|
@@ -153,6 +154,16 @@ export const parameters = {
|
|
|
153
154
|
controls: { expanded: true },
|
|
154
155
|
docs: {
|
|
155
156
|
theme: hrDesignsystemLight,
|
|
157
|
+
toc: {
|
|
158
|
+
contentsSelector: '.sbdocs-content',
|
|
159
|
+
headingSelector: 'h1, h2, h3',
|
|
160
|
+
ignoreSelector: '#primary',
|
|
161
|
+
title: 'Inhalt',
|
|
162
|
+
disable: false,
|
|
163
|
+
unsafeTocbotOptions: {
|
|
164
|
+
orderedList: false,
|
|
165
|
+
},
|
|
166
|
+
},
|
|
156
167
|
},
|
|
157
168
|
options: {
|
|
158
169
|
storySort: {
|
|
@@ -160,7 +171,11 @@ export const parameters = {
|
|
|
160
171
|
'Einführung',
|
|
161
172
|
'Grundlegendes',
|
|
162
173
|
[
|
|
163
|
-
'
|
|
174
|
+
'Entwicklung',
|
|
175
|
+
[
|
|
176
|
+
'Installation und Update von Dependencies im Entwicklungs Projekt',
|
|
177
|
+
'Installation der Design-System Komponenten im Delivery Projekt',
|
|
178
|
+
],
|
|
164
179
|
'Konventionen und Datenstrukturen',
|
|
165
180
|
'Testdatenbereitstellung',
|
|
166
181
|
'*',
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,33 @@
|
|
|
1
|
+
# v1.35.6 (Tue Aug 08 2023)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- title optional, add tracking [#702](https://github.com/mumprod/hr-design-system-handlebars/pull/702) ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- Geraldo ([@hanswurstsalat](https://github.com/hanswurstsalat))
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
13
|
+
# v1.35.5 (Tue Aug 08 2023)
|
|
14
|
+
|
|
15
|
+
#### 🐛 Bug Fix
|
|
16
|
+
|
|
17
|
+
- DPE-2259 4 [#696](https://github.com/mumprod/hr-design-system-handlebars/pull/696) ([@StefanVesper](https://github.com/StefanVesper))
|
|
18
|
+
|
|
19
|
+
#### 📝 Documentation
|
|
20
|
+
|
|
21
|
+
- Feature/dpe 2446 [#701](https://github.com/mumprod/hr-design-system-handlebars/pull/701) ([@szuelch](https://github.com/szuelch))
|
|
22
|
+
- Feature/dpe 2445 [#700](https://github.com/mumprod/hr-design-system-handlebars/pull/700) ([@szuelch](https://github.com/szuelch))
|
|
23
|
+
|
|
24
|
+
#### Authors: 2
|
|
25
|
+
|
|
26
|
+
- [@szuelch](https://github.com/szuelch)
|
|
27
|
+
- SonicSoulSurfer ([@StefanVesper](https://github.com/StefanVesper))
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
1
31
|
# v1.35.4 (Fri Aug 04 2023)
|
|
2
32
|
|
|
3
33
|
#### 🐛 Bug Fix
|
|
@@ -418,6 +418,9 @@ var helpers = {
|
|
|
418
418
|
if (arguments.length >= 1) {
|
|
419
419
|
configProperty = arguments[0]
|
|
420
420
|
switch (configProperty) {
|
|
421
|
+
case 'buttonConfig.settings.footer':
|
|
422
|
+
configProperty = brand == 'hr-inforadio' ? false : true
|
|
423
|
+
break
|
|
421
424
|
case 'dialogPolyfill.baseUrl':
|
|
422
425
|
configProperty = 'vendor/dialog-polyfill'
|
|
423
426
|
break
|
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
</defs>
|
|
14
|
-
<path class="cls-2" d="m63,124.4v32.4c55.25,0,100.2,44.95,100.2,100.2h32.4c0-73.12-59.48-132.6-132.6-132.6Z"/>
|
|
15
|
-
<path class="cls-2" d="m63,46.8v32.4c98.04,0,177.8,79.76,177.8,177.8h32.4c0-115.9-94.3-210.2-210.2-210.2Z"/>
|
|
16
|
-
<circle class="cls-1" cx="92.1" cy="227.9" r="29.1" transform="translate(-49.9 27.26) rotate(-13.28)"/>
|
|
17
|
-
</svg>
|
|
1
|
+
<?xml version="1.0" encoding="utf-8"?>
|
|
2
|
+
<!-- Generator: Adobe Illustrator 27.7.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
|
3
|
+
<svg version="1.1" id="rss" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
|
4
|
+
viewBox="0 0 320 320" style="enable-background:new 0 0 320 320;" xml:space="preserve">
|
|
5
|
+
<style type="text/css">
|
|
6
|
+
.st0{fill-rule:evenodd;clip-rule:evenodd;fill:#FFFFFF;}
|
|
7
|
+
.st1{fill:#FFFFFF;}
|
|
8
|
+
</style>
|
|
9
|
+
<path class="st0" d="M54.9,132.5v32.4c55.3,0,100.2,44.9,100.2,100.2h32.4C187.5,192,128,132.5,54.9,132.5z"/>
|
|
10
|
+
<path class="st0" d="M54.9,54.9v32.4c98,0,177.8,79.8,177.8,177.8h32.4C265.1,149.2,170.8,54.9,54.9,54.9L54.9,54.9z"/>
|
|
11
|
+
<ellipse transform="matrix(0.9733 -0.2297 0.2297 0.9733 -51.9657 25.6059)" class="st1" cx="84" cy="236" rx="29.1" ry="29.1"/>
|
|
12
|
+
</svg>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg id="X" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 320">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #fff;
|
|
7
|
+
fill-rule: evenodd;
|
|
8
|
+
}
|
|
9
|
+
</style>
|
|
10
|
+
</defs>
|
|
11
|
+
<path class="cls-1" d="m186.06,143.04c27.46-31.32,54.9-62.63,82.39-93.99-.15-.03-.17-.03-.2-.03-12.35,0-24.71,0-37.06.01-.27,0-.61.21-.8.42-10.47,11.92-20.93,23.86-31.39,35.79-9.31,10.62-18.61,21.23-27.92,31.85-.82.94-1.64,1.87-2.49,2.83-.16-.21-.28-.36-.4-.51-12.45-16.43-24.9-32.86-37.36-49.29-5.18-6.84-10.37-13.67-15.53-20.52-.33-.44-.66-.61-1.22-.61-25.42.01-50.85.01-76.27.01h-.82c.2.27.31.42.42.57,16.64,21.72,33.29,43.43,49.92,65.16,11.07,14.46,22.13,28.93,33.2,43.39,3.01,3.93,6.03,7.84,9.06,11.74.34.44.29.69-.06,1.08-12.6,14.35-25.19,28.72-37.78,43.08-16.45,18.77-32.91,37.54-49.36,56.31-.16.18-.31.38-.53.64h.38c12.28,0,24.57,0,36.85-.02.28,0,.63-.18.82-.39,3.16-3.57,6.3-7.16,9.45-10.75,17.47-19.93,34.95-39.86,52.42-59.78,1.94-2.21,3.88-4.42,5.84-6.66,2.29,2.99,4.55,5.93,6.8,8.88,14.1,18.4,28.2,36.8,42.3,55.19,3.33,4.34,6.66,8.68,9.98,13.04.27.36.54.5.99.5,24.88-.01,49.75-.01,74.63-.01.2,0,.39-.02.66-.04-32.35-42.69-64.65-85.3-96.94-127.91Zm50.13,104.94c-6.45,0-12.9,0-19.35.02-.55,0-.9-.19-1.19-.58-2.47-3.2-4.93-6.4-7.39-9.6-4.95-6.45-9.89-12.91-14.85-19.36-4.01-5.22-8.03-10.43-12.05-15.65-10.94-14.21-21.87-28.42-32.81-42.64-11.6-15.07-23.2-30.13-34.8-45.2-11.12-14.45-22.24-28.9-33.36-43.35-.08-.11-.16-.23-.23-.35-.05-.06-.1-.12-.16-.19.05-.02.1-.04.15-.05.19,0,.38-.02.57-.02,7,0,13.99,0,20.99,0,.41,0,.68.1.94.44,3.81,5.04,7.65,10.06,11.47,15.09,4.18,5.49,8.36,10.99,12.54,16.48,4.32,5.68,8.65,11.36,12.97,17.04,4.24,5.57,8.48,11.14,12.72,16.71,5.65,7.43,11.31,14.85,16.96,22.28,4.18,5.49,8.36,10.99,12.54,16.48,4.32,5.68,8.65,11.36,12.98,17.04,4.25,5.58,8.5,11.17,12.75,16.75,4.3,5.64,8.59,11.29,12.89,16.93,4.22,5.55,8.45,11.1,12.67,16.65,1.25,1.65,2.5,3.29,3.86,5.07h-.81Z"/>
|
|
12
|
+
</svg>
|