@bytebrand/fe-ui-core 4.2.234 → 4.2.236

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.2.234",
3
+ "version": "4.2.236",
4
4
  "description": "UI components for the auto.de project",
5
5
  "main": "index.ts",
6
6
  "module": "dist/common.js",
@@ -123,7 +123,7 @@ class VehicleDetailedSlider extends Component<IProps, IState> {
123
123
  handleSlideChange = (_currentSlide: any, nextSlide: number) => {
124
124
  const { photos } = this.props;
125
125
  if (photos[nextSlide].videoUrl) {
126
- this.setState({ videoSrc: `https://www.youtube.com/embed/${photos[nextSlide].videoUrl}` })
126
+ this.setState({ videoSrc: `https://www.youtube-nocookie.com/embed/${photos[nextSlide].videoUrl}` })
127
127
  } else {
128
128
  this.setState({ videoSrc: null })
129
129
  }
@@ -20,7 +20,7 @@ const PreviewCookieModal = ({ toggleModal, setModal, handleSentryInit } : IPrevi
20
20
 
21
21
  const onDisableAll = () => {
22
22
  localStorage.setItem('cookieConfig', JSON.stringify({
23
- 'marketing':['cf','cip','cnac','car','test_cookie','IDE'],
23
+ 'marketing':['cf','cip','cnac','car','test_cookie','IDE', 'bid'],
24
24
  'analytics':['sentry','callback','locale','uid','PugT','demdex','cto_bundle','tuuid','tuuid_lu','c','CMID','CMPS','CMPRO','uuid2','um','umeh','KRTBCOOKIE_97','IDSYNC','dpm','_kuid_','visitor-id','data-c-ts','data-c','CMTS','mv_tokens','A3','mv_tokens_eu-v1','am_tokens','am_tokens_eu-v1','iteo','_fbp','_clck','_clsk','_uetsid','_uetvid','analytics_storage','ad_storage','functionality_storage','personalization_storage','security_storage','hotjar']
25
25
  }));
26
26
  updateCookieList(handleSentryInit);
@@ -94,13 +94,13 @@ export const COOKIE_SCHEMA = {
94
94
  'cnac',
95
95
  'car'
96
96
  ],
97
+ Awin: [
98
+ 'bid'
99
+ ],
97
100
  Google: [
98
101
  'test_cookie',
99
102
  'IDE',
100
103
  ],
101
- Awin: [
102
- 'bid'
103
- ]
104
104
  }
105
105
  };
106
106