@highfivve/ad-tag 5.13.4 → 5.13.5

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.
@@ -35,7 +35,7 @@ export const createIntentIq = () => {
35
35
  ...(context.adUnitPathVariables__.domain
36
36
  ? { domainName: context.adUnitPathVariables__.domain }
37
37
  : {}),
38
- ...(config.browserBlackList ? { browserBlackList: config.browserBlackList } : {}),
38
+ ...(config.browserBlockList ? { browserBlackList: config.browserBlockList } : {}),
39
39
  ...(config.abPercentage === undefined ? {} : { abPercentage: config.abPercentage }),
40
40
  ...(config.ABTestingConfigurationSource
41
41
  ? { ABTestingConfigurationSource: config.ABTestingConfigurationSource }
@@ -180,8 +180,8 @@ const IntentIqModule = ({ config }) => (React.createElement(React.Fragment, null
180
180
  config.abPercentage !== undefined && React.createElement(Tag, { variant: "grey" },
181
181
  config.abPercentage,
182
182
  "%"))),
183
- config.browserBlackList && (React.createElement(Row, { label: "Browser blacklist" },
184
- React.createElement(ListTags, { values: config.browserBlackList.split(','), variant: "grey" }))),
183
+ config.browserBlockList && (React.createElement(Row, { label: "Browser blocklist" },
184
+ React.createElement(ListTags, { values: config.browserBlockList.split(','), variant: "grey" }))),
185
185
  config.scriptUrl && (React.createElement(Row, { label: "Script URL" },
186
186
  React.createElement(Tag, null, config.scriptUrl)))));
187
187
  const PubstackModule = ({ config }) => (React.createElement(Row, { label: "Tag ID" },
@@ -1,3 +1,3 @@
1
1
  export const packageJson = {
2
- version: '5.13.4'
2
+ version: '5.13.5'
3
3
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@highfivve/ad-tag",
3
- "version": "5.13.4",
3
+ "version": "5.13.5",
4
4
  "license": "Apache-2.0",
5
5
  "description": "An ad tag implementation called moli",
6
6
  "main": "./lib/index.js",