mixpanel-browser 2.70.0 → 2.71.0
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/CHANGELOG.md +8 -0
- package/build.sh +1 -0
- package/dist/mixpanel-core.cjs.d.ts +440 -0
- package/dist/mixpanel-core.cjs.js +847 -50
- package/dist/mixpanel-recorder.js +5 -3
- package/dist/mixpanel-recorder.min.js +1 -1
- package/dist/mixpanel-recorder.min.js.map +1 -1
- package/dist/mixpanel-with-async-recorder.cjs.d.ts +440 -0
- package/dist/mixpanel-with-async-recorder.cjs.js +847 -50
- package/dist/mixpanel-with-recorder.d.ts +440 -0
- package/dist/mixpanel-with-recorder.js +851 -52
- package/dist/mixpanel-with-recorder.min.d.ts +440 -0
- package/dist/mixpanel-with-recorder.min.js +1 -1
- package/dist/mixpanel.amd.d.ts +440 -0
- package/dist/mixpanel.amd.js +851 -52
- package/dist/mixpanel.cjs.d.ts +440 -0
- package/dist/mixpanel.cjs.js +851 -52
- package/dist/mixpanel.globals.js +847 -50
- package/dist/mixpanel.min.js +170 -153
- package/dist/mixpanel.module.d.ts +440 -0
- package/dist/mixpanel.module.js +851 -52
- package/dist/mixpanel.umd.d.ts +440 -0
- package/dist/mixpanel.umd.js +851 -52
- package/dist/rrweb-compiled.js +4 -2
- package/package.json +2 -19
- package/rollup.config.mjs +28 -4
- package/src/autocapture/deadclick.js +254 -0
- package/src/autocapture/index.js +237 -41
- package/src/autocapture/shadow-dom-observer.js +100 -0
- package/src/autocapture/utils.js +230 -3
- package/src/config.js +1 -1
- package/src/flags/index.js +32 -12
- package/src/index.d.ts +16 -3
- package/src/loaders/loader-module-core.d.ts +1 -0
- package/src/loaders/loader-module-with-async-recorder.d.ts +1 -0
- package/src/loaders/loader-module.d.ts +1 -0
- package/src/utils.js +15 -0
|
@@ -1596,7 +1596,8 @@
|
|
|
1596
1596
|
week: true,
|
|
1597
1597
|
textarea: true,
|
|
1598
1598
|
select: true,
|
|
1599
|
-
password: true
|
|
1599
|
+
password: true,
|
|
1600
|
+
hidden: true
|
|
1600
1601
|
} : maskAllInputs === false ? {
|
|
1601
1602
|
password: true
|
|
1602
1603
|
} : maskAllInputs;
|
|
@@ -13238,7 +13239,8 @@
|
|
|
13238
13239
|
week: true,
|
|
13239
13240
|
textarea: true,
|
|
13240
13241
|
select: true,
|
|
13241
|
-
password: true
|
|
13242
|
+
password: true,
|
|
13243
|
+
hidden: true
|
|
13242
13244
|
} : _maskInputOptions !== void 0 ? _maskInputOptions : {
|
|
13243
13245
|
password: true
|
|
13244
13246
|
};
|
|
@@ -14041,7 +14043,7 @@
|
|
|
14041
14043
|
}
|
|
14042
14044
|
|
|
14043
14045
|
var Config = {
|
|
14044
|
-
LIB_VERSION: '2.
|
|
14046
|
+
LIB_VERSION: '2.71.0'
|
|
14045
14047
|
};
|
|
14046
14048
|
|
|
14047
14049
|
/* eslint camelcase: "off", eqeqeq: "off" */
|