@bytebrand/fe-ui-core 4.8.14 → 4.8.16

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytebrand/fe-ui-core",
3
- "version": "4.8.14",
3
+ "version": "4.8.16",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -521,7 +521,7 @@ function getUtmQueryParameter() {
521
521
  (params: any, param: string) => {
522
522
  const [key, value] = param.split('=');
523
523
 
524
- if (!/^source|^campaign|^medium|^content|^term|^reference|^gclid|^adgroupid|^keyword/.test(key)) { return params; }
524
+ if (!/^source|^campaign|^medium|^content|^term|^reference|^gclid|^adgroupid|^rtbh_pld|^cto_pld|^rtbhc|^keyword/.test(key)) { return params; }
525
525
 
526
526
  params[key] = value ? decodeURIComponent(value.replace(/\+/g, ' ')) : '';
527
527