hr-design-system-handlebars 1.113.7 → 1.113.8

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.113.8 (Thu Oct 31 2024)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Bug/dpe 3426 [#1135](https://github.com/mumprod/hr-design-system-handlebars/pull/1135) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.113.7 (Wed Oct 30 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3642,7 +3642,7 @@ article.indexTextDS .indexTextHighlighted .link {
3642
3642
  border-bottom-color: var(--color-secondary-ds);
3643
3643
  }
3644
3644
  .counter-reset {
3645
- counter-reset: cnt1730290094440;
3645
+ counter-reset: cnt1730387070626;
3646
3646
  }
3647
3647
  .placeholder-text-xs::-webkit-input-placeholder {
3648
3648
  font-size: 0.75rem;
@@ -4056,7 +4056,7 @@ article.indexTextDS .indexTextHighlighted .link {
4056
4056
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4057
4057
  }
4058
4058
  .-ordered {
4059
- counter-increment: cnt1730290094440 1;
4059
+ counter-increment: cnt1730387070626 1;
4060
4060
  }
4061
4061
  .-ordered::before {
4062
4062
  position: absolute;
@@ -4074,7 +4074,7 @@ article.indexTextDS .indexTextHighlighted .link {
4074
4074
  --tw-text-opacity: 1;
4075
4075
  color: rgba(0, 0, 0, 1);
4076
4076
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4077
- content: counter(cnt1730290094440);
4077
+ content: counter(cnt1730387070626);
4078
4078
  }
4079
4079
  /*! ****************************/
4080
4080
  /*! DataPolicy stuff */
@@ -4,7 +4,7 @@ const pianoErrorSecondLevelId = 99;
4
4
 
5
5
  const isTrackingAllowed = () => {
6
6
  const settingsCookie = new SettingsCookie();
7
- return settingsCookie.isSettingsCookieAccepted('ati');
7
+ return !settingsCookie.isSettingsCookieExistent("ati") || settingsCookie.isSettingsCookieAccepted('ati');
8
8
  };
9
9
 
10
10
  const sendEvent = (eventType, event) => {
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.113.7",
9
+ "version": "1.113.8",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -4,7 +4,7 @@ const pianoErrorSecondLevelId = 99;
4
4
 
5
5
  const isTrackingAllowed = () => {
6
6
  const settingsCookie = new SettingsCookie();
7
- return settingsCookie.isSettingsCookieAccepted('ati');
7
+ return !settingsCookie.isSettingsCookieExistent("ati") || settingsCookie.isSettingsCookieAccepted('ati');
8
8
  };
9
9
 
10
10
  const sendEvent = (eventType, event) => {