@capillarytech/creatives-library 8.0.75-alpha.0 → 8.0.75

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": "8.0.75-alpha.0",
4
+ "version": "8.0.75",
5
5
  "description": "Capillary creatives ui",
6
6
  "main": "./index.js",
7
7
  "module": "./index.es.js",
@@ -22,6 +22,7 @@ export const checkSupport = (response = {}, tagObject = {}, eventContextTags = [
22
22
  const supportedList = [];
23
23
  // Verifies the presence of the tag in the 'Add Labels' section.
24
24
  // Incase of journey event context the tags won't be available in the tagObject(tagLookupMap).
25
+ //Here forwardedTags only use in case of loyalty module
25
26
  const mappedForwardedTags = handleForwardedTags(forwardedTags);
26
27
  const checkNameInTagObjectOrEventContext = (name) => !!tagObject[name] || eventContextTags?.some((tag) => tag?.tagName === name) || mappedForwardedTags.includes(name);
27
28