@capillarytech/creatives-library 7.7.8 → 7.7.11

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@capillarytech/creatives-library",
3
3
  "author": "meharaj",
4
- "version": "7.7.8",
4
+ "version": "7.7.11",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -217,7 +217,7 @@ class CapTagList extends React.Component { // eslint-disable-line react/prefer-s
217
217
  onVisibleChange={this.togglePopoverVisibility}
218
218
  content={contentSection}
219
219
  trigger="click"
220
- placement="topLeft"
220
+ placement="rightTop"
221
221
  >
222
222
  <CapButton isAddBtn type="flat">{label || ''}</CapButton>
223
223
  </CapPopover>
@@ -256,7 +256,7 @@ class Creatives extends React.Component {
256
256
  data.video = {
257
257
  previewImageUrl: imageLink,
258
258
  videoId,
259
- videoSrc: videoUrl,
259
+ originalContentUrl: videoUrl,
260
260
  videoName,
261
261
  };
262
262
  delete data.imageLink;
@@ -463,7 +463,7 @@ class Creatives extends React.Component {
463
463
  case VIDEO:
464
464
  data.imageLink = video.previewImageUrl;
465
465
  data.videoId = video.videoId;
466
- data.videoUrl = video.videoSrc;
466
+ data.videoUrl = video.originalContentUrl;
467
467
  data.videoName = video.videoName;
468
468
  delete data.video;
469
469
  break;