hr-design-system-handlebars 1.126.0 → 1.126.1

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.126.1 (Fri Dec 19 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - :sparkles: Add hr_sophora_id to data send by page.scroll event [#1334](https://github.com/mumprod/hr-design-system-handlebars/pull/1334) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.126.0 (Fri Dec 19 2025)
2
14
 
3
15
  #### 🚀 Enhancement
@@ -3915,7 +3915,7 @@ article #commentList {
3915
3915
  border-bottom-color: var(--color-secondary-ds);
3916
3916
  }
3917
3917
  .counter-reset {
3918
- counter-reset: cnt1766132745495;
3918
+ counter-reset: cnt1766157244936;
3919
3919
  }
3920
3920
  .animate-delay-100 {
3921
3921
  --tw-animate-delay: 100ms;
@@ -4376,7 +4376,7 @@ html { scroll-behavior: smooth; }
4376
4376
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4377
4377
  }
4378
4378
  .-ordered {
4379
- counter-increment: cnt1766132745495 1;
4379
+ counter-increment: cnt1766157244936 1;
4380
4380
  }
4381
4381
  .-ordered::before {
4382
4382
  position: absolute;
@@ -4394,7 +4394,7 @@ html { scroll-behavior: smooth; }
4394
4394
  --tw-text-opacity: 1;
4395
4395
  color: rgba(0, 0, 0, 1);
4396
4396
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4397
- content: counter(cnt1766132745495);
4397
+ content: counter(cnt1766157244936);
4398
4398
  }
4399
4399
  /*! ****************************/
4400
4400
  /*! DataPolicy stuff */
@@ -46,6 +46,8 @@ const scrollDepth = (depth) => {
46
46
  sendEvent('page.scroll', {
47
47
  scroll_depth: depth,
48
48
  page: undefined !== pageDisplayConfig ? pageDisplayConfig.page : 'unknown',
49
+ hr_sophora_id:
50
+ undefined !== pageDisplayConfig ? pageDisplayConfig.hr_sophora_id : 'unknown',
49
51
  })
50
52
  }
51
53
 
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.126.0",
9
+ "version": "1.126.1",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -46,6 +46,8 @@ const scrollDepth = (depth) => {
46
46
  sendEvent('page.scroll', {
47
47
  scroll_depth: depth,
48
48
  page: undefined !== pageDisplayConfig ? pageDisplayConfig.page : 'unknown',
49
+ hr_sophora_id:
50
+ undefined !== pageDisplayConfig ? pageDisplayConfig.hr_sophora_id : 'unknown',
49
51
  })
50
52
  }
51
53