hr-design-system-handlebars 1.118.2 → 1.119.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.119.0 (Thu Aug 28 2025)
2
+
3
+ #### 🚀 Enhancement
4
+
5
+ - Feature/dpe 3685 [#1302](https://github.com/mumprod/hr-design-system-handlebars/pull/1302) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.118.2 (Tue Aug 12 2025)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3891,7 +3891,7 @@ article #commentList {
3891
3891
  border-bottom-color: var(--color-secondary-ds);
3892
3892
  }
3893
3893
  .counter-reset {
3894
- counter-reset: cnt1755009560059;
3894
+ counter-reset: cnt1756392257406;
3895
3895
  }
3896
3896
  .animate-delay-100 {
3897
3897
  --tw-animate-delay: 100ms;
@@ -4352,7 +4352,7 @@ html { scroll-behavior: smooth; }
4352
4352
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4353
4353
  }
4354
4354
  .-ordered {
4355
- counter-increment: cnt1755009560059 1;
4355
+ counter-increment: cnt1756392257406 1;
4356
4356
  }
4357
4357
  .-ordered::before {
4358
4358
  position: absolute;
@@ -4370,7 +4370,7 @@ html { scroll-behavior: smooth; }
4370
4370
  --tw-text-opacity: 1;
4371
4371
  color: rgba(0, 0, 0, 1);
4372
4372
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4373
- content: counter(cnt1755009560059);
4373
+ content: counter(cnt1756392257406);
4374
4374
  }
4375
4375
  /*! ****************************/
4376
4376
  /*! DataPolicy stuff */
@@ -18,6 +18,7 @@ const ArdPlayerLoader = function (options, trackingData, rootElement) {
18
18
  let mediaCollection = options.mediaCollection,
19
19
  playerConfig = options.playerConfig,
20
20
  isPlayerStarted = false,
21
+ isWebview = window.parent.document.documentElement.classList.contains('webview'),
21
22
  player
22
23
 
23
24
  const setupPlayer = function () {
@@ -52,10 +53,10 @@ const ArdPlayerLoader = function (options, trackingData, rootElement) {
52
53
 
53
54
  const createPlayer = function () {
54
55
  if (undefined != playerConfig.pluginData['trackingPiano@all']) {
55
- playerConfig.pluginData['trackingPiano@all'].isEnabled = settingsCookie.isSettingsCookieExistent('ati') ? settingsCookie.isSettingsCookieAccepted('ati') : true
56
+ playerConfig.pluginData['trackingPiano@all'].isEnabled = settingsCookie.isSettingsCookieExistent('ati') ? settingsCookie.isSettingsCookieAccepted('ati') : !isWebview
56
57
  }
57
58
  if (undefined != playerConfig.pluginData['trackingAgf@all']) {
58
- playerConfig.pluginData['trackingAgf@all'].isEnabled = settingsCookie.isSettingsCookieExistent('agf') ? settingsCookie.isSettingsCookieAccepted('agf') : true
59
+ playerConfig.pluginData['trackingAgf@all'].isEnabled = settingsCookie.isSettingsCookieExistent('agf') ? settingsCookie.isSettingsCookieAccepted('agf') : !isWebview
59
60
  }
60
61
  whenAvailable('ardplayer', function () {
61
62
  player = new ardplayer.Player(playerId.toString(), playerConfig, mediaCollection)
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.118.2",
9
+ "version": "1.119.0",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -18,6 +18,7 @@ const ArdPlayerLoader = function (options, trackingData, rootElement) {
18
18
  let mediaCollection = options.mediaCollection,
19
19
  playerConfig = options.playerConfig,
20
20
  isPlayerStarted = false,
21
+ isWebview = window.parent.document.documentElement.classList.contains('webview'),
21
22
  player
22
23
 
23
24
  const setupPlayer = function () {
@@ -52,10 +53,10 @@ const ArdPlayerLoader = function (options, trackingData, rootElement) {
52
53
 
53
54
  const createPlayer = function () {
54
55
  if (undefined != playerConfig.pluginData['trackingPiano@all']) {
55
- playerConfig.pluginData['trackingPiano@all'].isEnabled = settingsCookie.isSettingsCookieExistent('ati') ? settingsCookie.isSettingsCookieAccepted('ati') : true
56
+ playerConfig.pluginData['trackingPiano@all'].isEnabled = settingsCookie.isSettingsCookieExistent('ati') ? settingsCookie.isSettingsCookieAccepted('ati') : !isWebview
56
57
  }
57
58
  if (undefined != playerConfig.pluginData['trackingAgf@all']) {
58
- playerConfig.pluginData['trackingAgf@all'].isEnabled = settingsCookie.isSettingsCookieExistent('agf') ? settingsCookie.isSettingsCookieAccepted('agf') : true
59
+ playerConfig.pluginData['trackingAgf@all'].isEnabled = settingsCookie.isSettingsCookieExistent('agf') ? settingsCookie.isSettingsCookieAccepted('agf') : !isWebview
59
60
  }
60
61
  whenAvailable('ardplayer', function () {
61
62
  player = new ardplayer.Player(playerId.toString(), playerConfig, mediaCollection)