hr-design-system-handlebars 1.38.4 → 1.38.5

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.38.5 (Mon Sep 11 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - BUGFIX: teaserSize property is camelcased [#722](https://github.com/mumprod/hr-design-system-handlebars/pull/722) ([@szuelch](https://github.com/szuelch))
6
+
7
+ #### Authors: 1
8
+
9
+ - [@szuelch](https://github.com/szuelch)
10
+
11
+ ---
12
+
1
13
  # v1.38.4 (Mon Sep 11 2023)
2
14
 
3
15
  #### 🐛 Bug Fix
@@ -3054,7 +3054,7 @@ video {
3054
3054
  border-bottom-color: var(--color-secondary-ds);
3055
3055
  }
3056
3056
  .counter-reset {
3057
- counter-reset: cnt1694418733589;
3057
+ counter-reset: cnt1694424811234;
3058
3058
  }
3059
3059
  .hyphens-auto {
3060
3060
  -webkit-hyphens: auto;
@@ -3289,7 +3289,7 @@ video {
3289
3289
  --tw-ring-color: rgba(255, 255, 255, 0.5);
3290
3290
  }
3291
3291
  .-ordered {
3292
- counter-increment: cnt1694418733589 1;
3292
+ counter-increment: cnt1694424811234 1;
3293
3293
  }
3294
3294
  .-ordered::before {
3295
3295
  position: absolute;
@@ -3305,7 +3305,7 @@ video {
3305
3305
  letter-spacing: .0125em;
3306
3306
  --tw-text-opacity: 1;
3307
3307
  color: rgba(0, 0, 0, var(--tw-text-opacity));
3308
- content: counter(cnt1694418733589);
3308
+ content: counter(cnt1694424811234);
3309
3309
  }
3310
3310
  /*! ****************************/
3311
3311
  /*! DataPolicy stuff */
@@ -8,7 +8,7 @@ const MediaplayerLoader = function (context) {
8
8
  const { options } = context,
9
9
  { element: rootElement } = context,
10
10
  isAutoplay = options.isAutoplay,
11
- teasersize = options.teasersize,
11
+ teaserSize = options.teaserSize,
12
12
  mediaplayerButton = hr$('.js-mediaplayer__button', rootElement.parentNode)[0]
13
13
 
14
14
  const removeVideoHover = function () {
@@ -19,7 +19,7 @@ const MediaplayerLoader = function (context) {
19
19
  const loadArdPlayerLoader = function () {
20
20
  new ArdPlayerLoader(options)
21
21
  removeVideoHover()
22
- uxAction('mediabuttonclick::' + teasersize + '::playButtonClick')
22
+ uxAction('mediabuttonclick::' + teaserSize + '::playButtonClick')
23
23
  }
24
24
 
25
25
  if (isAutoplay) {
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.38.4",
9
+ "version": "1.38.5",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -8,7 +8,7 @@ const MediaplayerLoader = function (context) {
8
8
  const { options } = context,
9
9
  { element: rootElement } = context,
10
10
  isAutoplay = options.isAutoplay,
11
- teasersize = options.teasersize,
11
+ teaserSize = options.teaserSize,
12
12
  mediaplayerButton = hr$('.js-mediaplayer__button', rootElement.parentNode)[0]
13
13
 
14
14
  const removeVideoHover = function () {
@@ -19,7 +19,7 @@ const MediaplayerLoader = function (context) {
19
19
  const loadArdPlayerLoader = function () {
20
20
  new ArdPlayerLoader(options)
21
21
  removeVideoHover()
22
- uxAction('mediabuttonclick::' + teasersize + '::playButtonClick')
22
+ uxAction('mediabuttonclick::' + teaserSize + '::playButtonClick')
23
23
  }
24
24
 
25
25
  if (isAutoplay) {