@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.
|
|
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.
|
|
184
|
-
React.createElement(ListTags, { values: config.
|
|
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" },
|
package/lib/gen/packageJson.js
CHANGED