hr-design-system-handlebars 1.103.1 → 1.103.2
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
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
# v1.103.2 (Mon Sep 30 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- DPE-3344 [Prüfstory] Werbeblocker legt Sharing lahm [#1082](https://github.com/mumprod/hr-design-system-handlebars/pull/1082) ([@Sunny1112358](https://github.com/Sunny1112358))
|
|
6
|
+
|
|
7
|
+
#### Authors: 1
|
|
8
|
+
|
|
9
|
+
- [@Sunny1112358](https://github.com/Sunny1112358)
|
|
10
|
+
|
|
11
|
+
---
|
|
12
|
+
|
|
1
13
|
# v1.103.1 (Mon Sep 30 2024)
|
|
2
14
|
|
|
3
15
|
#### 🐛 Bug Fix
|
package/dist/assets/index.css
CHANGED
|
@@ -3504,7 +3504,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3504
3504
|
border-bottom-color: var(--color-secondary-ds);
|
|
3505
3505
|
}
|
|
3506
3506
|
.counter-reset {
|
|
3507
|
-
counter-reset:
|
|
3507
|
+
counter-reset: cnt1727709798995;
|
|
3508
3508
|
}
|
|
3509
3509
|
.hyphens-auto {
|
|
3510
3510
|
-webkit-hyphens: auto;
|
|
@@ -3912,7 +3912,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3912
3912
|
--tw-ring-color: rgba(255, 255, 255, 0.5);
|
|
3913
3913
|
}
|
|
3914
3914
|
.-ordered {
|
|
3915
|
-
counter-increment:
|
|
3915
|
+
counter-increment: cnt1727709798995 1;
|
|
3916
3916
|
}
|
|
3917
3917
|
.-ordered::before {
|
|
3918
3918
|
position: absolute;
|
|
@@ -3928,7 +3928,7 @@ article.indexTextDS .indexTextHighlighted .link {
|
|
|
3928
3928
|
letter-spacing: .0125em;
|
|
3929
3929
|
--tw-text-opacity: 1;
|
|
3930
3930
|
color: rgba(0, 0, 0, var(--tw-text-opacity));
|
|
3931
|
-
content: counter(
|
|
3931
|
+
content: counter(cnt1727709798995);
|
|
3932
3932
|
}
|
|
3933
3933
|
/*! ****************************/
|
|
3934
3934
|
/*! DataPolicy stuff */
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import SettingsCookie from 'components/externalService/globalSettingsCookie.subfeature';
|
|
2
2
|
|
|
3
|
+
const pianoErrorSecondLevelId = 99;
|
|
4
|
+
|
|
3
5
|
const isTrackingAllowed = () => {
|
|
4
6
|
const settingsCookie = new SettingsCookie();
|
|
5
7
|
return settingsCookie.isSettingsCookieAccepted('ati');
|
|
@@ -21,7 +23,7 @@ const getDefaultEvent = (label, secondLevelId) => {
|
|
|
21
23
|
const determineSecondLevelId = (secondLevelId) => {
|
|
22
24
|
return secondLevelId !== undefined
|
|
23
25
|
? secondLevelId
|
|
24
|
-
: pageDisplayConfig.site_level2_id;
|
|
26
|
+
: undefined !== pageDisplayConfig ? pageDisplayConfig.site_level2_id : pianoErrorSecondLevelId;
|
|
25
27
|
};
|
|
26
28
|
|
|
27
29
|
const uxAction = (label, secondLevelId) => sendEvent('click.action', getDefaultEvent(label, secondLevelId));
|
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.103.
|
|
9
|
+
"version": "1.103.2",
|
|
10
10
|
"scripts": {
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"storybook": "storybook dev -p 6006 public",
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import SettingsCookie from 'components/externalService/globalSettingsCookie.subfeature';
|
|
2
2
|
|
|
3
|
+
const pianoErrorSecondLevelId = 99;
|
|
4
|
+
|
|
3
5
|
const isTrackingAllowed = () => {
|
|
4
6
|
const settingsCookie = new SettingsCookie();
|
|
5
7
|
return settingsCookie.isSettingsCookieAccepted('ati');
|
|
@@ -21,7 +23,7 @@ const getDefaultEvent = (label, secondLevelId) => {
|
|
|
21
23
|
const determineSecondLevelId = (secondLevelId) => {
|
|
22
24
|
return secondLevelId !== undefined
|
|
23
25
|
? secondLevelId
|
|
24
|
-
: pageDisplayConfig.site_level2_id;
|
|
26
|
+
: undefined !== pageDisplayConfig ? pageDisplayConfig.site_level2_id : pianoErrorSecondLevelId;
|
|
25
27
|
};
|
|
26
28
|
|
|
27
29
|
const uxAction = (label, secondLevelId) => sendEvent('click.action', getDefaultEvent(label, secondLevelId));
|