@pendo/agent 2.274.0 → 2.275.1
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/dist/dom.esm.js +4 -1
- package/dist/pendo.module.js +625 -295
- package/dist/pendo.module.min.js +1 -1
- package/package.json +1 -1
- package/setup.js +3 -0
package/dist/dom.esm.js
CHANGED
|
@@ -6305,6 +6305,7 @@ var ConfigReader = (function () {
|
|
|
6305
6305
|
*/
|
|
6306
6306
|
addOption('observeShadowRoots', [SNIPPET_SRC, PENDO_CONFIG_SRC], false);
|
|
6307
6307
|
addOption('pendoCore', [PENDO_CONFIG_SRC], true);
|
|
6308
|
+
addOption('pendoGlobalKey', [PENDO_CONFIG_SRC]);
|
|
6308
6309
|
/**
|
|
6309
6310
|
* By default, if there are multiple frames on the page that have the Agent installed, they will communicate
|
|
6310
6311
|
* using `window.postMessage`. If set to `true` the Agent will instead use the browser's Broadcast Channel
|
|
@@ -6817,6 +6818,8 @@ var ConfigReader = (function () {
|
|
|
6817
6818
|
addOption('forceParentDesigner', [SNIPPET_SRC]); // Only works in non-prod environments for automated testing
|
|
6818
6819
|
// Embedded Guides
|
|
6819
6820
|
addOption('enableAllEmbeddedGuideEvents', [PENDO_CONFIG_SRC], false);
|
|
6821
|
+
// Form Validation
|
|
6822
|
+
addOption('formValidation', [PENDO_CONFIG_SRC], false);
|
|
6820
6823
|
}
|
|
6821
6824
|
initializeOptions();
|
|
6822
6825
|
var sourceGetters = {};
|
|
@@ -7221,7 +7224,7 @@ function getScreenPosition(element) {
|
|
|
7221
7224
|
};
|
|
7222
7225
|
}
|
|
7223
7226
|
|
|
7224
|
-
var VERSION = '2.
|
|
7227
|
+
var VERSION = '2.275.1_';
|
|
7225
7228
|
function isExtensionAgent() {
|
|
7226
7229
|
var installType = getPendoConfigValue('installType') || getPendoConfigFromEnclosingScope().installType;
|
|
7227
7230
|
return installType === EXTENSION_INSTALL_TYPE;
|