hr-design-system-handlebars 1.51.15 → 1.52.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/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # v1.52.0 (Fri Jan 12 2024)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - :sparkles: Make pi method parameterless [#801](https://github.com/mumprod/hr-design-system-handlebars/pull/801) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.51.15 (Wed Jan 10 2024)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3222,7 +3222,7 @@ article.indexText ul {
3222
3222
  border-bottom-color: var(--color-secondary-ds);
3223
3223
  }
3224
3224
  .counter-reset {
3225
- counter-reset: cnt1704901654668;
3225
+ counter-reset: cnt1705050388101;
3226
3226
  }
3227
3227
  .hyphens-auto {
3228
3228
  -webkit-hyphens: auto;
@@ -3524,7 +3524,7 @@ article.indexText ul {
3524
3524
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3525
3525
  }
3526
3526
  .-ordered {
3527
- counter-increment: cnt1704901654668 1;
3527
+ counter-increment: cnt1705050388101 1;
3528
3528
  }
3529
3529
  .-ordered::before {
3530
3530
  position: absolute;
@@ -3540,7 +3540,7 @@ article.indexText ul {
3540
3540
  letter-spacing: .0125em;
3541
3541
  --tw-text-opacity: 1;
3542
3542
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3543
- content: counter(cnt1704901654668);
3543
+ content: counter(cnt1705050388101);
3544
3544
  }
3545
3545
  /*! ****************************/
3546
3546
  /*! DataPolicy stuff */
@@ -30,7 +30,7 @@ const ClickTracking = function (context) {
30
30
  download(trackingSetting.clickLabel, trackingSetting.secondLevelId)
31
31
  break
32
32
  case 'pi':
33
- pi(trackingSetting.clickLabel, trackingSetting.secondLevelId)
33
+ pi()
34
34
  break
35
35
  case 'uxAction':
36
36
  uxAction(trackingSetting.clickLabel, trackingSetting.secondLevelId)
@@ -25,7 +25,7 @@ const uxNavigation = (label, secondLevelId) => {
25
25
  }
26
26
  }
27
27
 
28
- const pi = (label, secondLevelId) => {
28
+ const pi = () => {
29
29
  if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
30
30
  pa.sendEvent('page.display', pageDisplayConfig)
31
31
  }
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.51.15",
9
+ "version": "1.52.0",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -30,7 +30,7 @@ const ClickTracking = function (context) {
30
30
  download(trackingSetting.clickLabel, trackingSetting.secondLevelId)
31
31
  break
32
32
  case 'pi':
33
- pi(trackingSetting.clickLabel, trackingSetting.secondLevelId)
33
+ pi()
34
34
  break
35
35
  case 'uxAction':
36
36
  uxAction(trackingSetting.clickLabel, trackingSetting.secondLevelId)
@@ -25,7 +25,7 @@ const uxNavigation = (label, secondLevelId) => {
25
25
  }
26
26
  }
27
27
 
28
- const pi = (label, secondLevelId) => {
28
+ const pi = () => {
29
29
  if (typeof pa != "undefined" && pa != undefined && isTrackingAllowed()) {
30
30
  pa.sendEvent('page.display', pageDisplayConfig)
31
31
  }