hr-design-system-handlebars 1.114.66 → 1.114.67

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,16 @@
1
+ # v1.114.67 (Mon Jan 20 2025)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Disable uxAction logging for first-time sharing module display, becau… [#1216](https://github.com/mumprod/hr-design-system-handlebars/pull/1216) ([@vascoeduardo](https://github.com/vascoeduardo) [@eduardo-hr](https://github.com/eduardo-hr))
6
+
7
+ #### Authors: 2
8
+
9
+ - [@eduardo-hr](https://github.com/eduardo-hr)
10
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
11
+
12
+ ---
13
+
1
14
  # v1.114.66 (Mon Jan 20 2025)
2
15
 
3
16
  #### 🐛 Bug Fix
@@ -3737,7 +3737,7 @@ article #commentList {
3737
3737
  border-bottom-color: var(--color-secondary-ds);
3738
3738
  }
3739
3739
  .counter-reset {
3740
- counter-reset: cnt1737395324301;
3740
+ counter-reset: cnt1737404341121;
3741
3741
  }
3742
3742
  html { scroll-behavior: smooth; }
3743
3743
  .placeholder-text-xs::-webkit-input-placeholder {
@@ -4152,7 +4152,7 @@ html { scroll-behavior: smooth; }
4152
4152
  --tw-ring-color: rgba(255, 255, 255, 0.5);
4153
4153
  }
4154
4154
  .-ordered {
4155
- counter-increment: cnt1737395324301 1;
4155
+ counter-increment: cnt1737404341121 1;
4156
4156
  }
4157
4157
  .-ordered::before {
4158
4158
  position: absolute;
@@ -4170,7 +4170,7 @@ html { scroll-behavior: smooth; }
4170
4170
  --tw-text-opacity: 1;
4171
4171
  color: rgba(0, 0, 0, 1);
4172
4172
  color: rgba(0, 0, 0, var(--tw-text-opacity));
4173
- content: counter(cnt1737395324301);
4173
+ content: counter(cnt1737404341121);
4174
4174
  }
4175
4175
  /*! ****************************/
4176
4176
  /*! DataPolicy stuff */
@@ -44,12 +44,12 @@ export default (module) => ({
44
44
 
45
45
  if(this.sharingModuleWasNeverShown && !desktop){
46
46
  console.log('Sharing Module '+module+' was shown for the first time!!!');
47
- uxAction('socialShareClick::'+module+'::shown');
47
+ //uxAction('socialShareClick::'+module+'::shown');
48
48
  this.sharingModuleWasNeverShown = false;
49
49
  }
50
50
  if(this.desktopSharingModuleWasNeverShown && desktop){
51
51
  console.log('Sharing Module '+module+'Desktop was shown for the first time!!!');
52
- uxAction('socialShareClick::'+module+'Desktop::shown');
52
+ //uxAction('socialShareClick::'+module+'Desktop::shown');
53
53
  this.desktopSharingModuleWasNeverShown = false;
54
54
  }
55
55
  },
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.114.66",
9
+ "version": "1.114.67",
10
10
  "scripts": {
11
11
  "test": "echo \"Error: no test specified\" && exit 1",
12
12
  "storybook": "storybook dev -p 6006 public",
@@ -44,12 +44,12 @@ export default (module) => ({
44
44
 
45
45
  if(this.sharingModuleWasNeverShown && !desktop){
46
46
  console.log('Sharing Module '+module+' was shown for the first time!!!');
47
- uxAction('socialShareClick::'+module+'::shown');
47
+ //uxAction('socialShareClick::'+module+'::shown');
48
48
  this.sharingModuleWasNeverShown = false;
49
49
  }
50
50
  if(this.desktopSharingModuleWasNeverShown && desktop){
51
51
  console.log('Sharing Module '+module+'Desktop was shown for the first time!!!');
52
- uxAction('socialShareClick::'+module+'Desktop::shown');
52
+ //uxAction('socialShareClick::'+module+'Desktop::shown');
53
53
  this.desktopSharingModuleWasNeverShown = false;
54
54
  }
55
55
  },