@usermaven/react 1.5.12 → 1.5.13

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.
Files changed (2) hide show
  1. package/lib/index.es.js +2 -1
  2. package/package.json +2 -2
package/lib/index.es.js CHANGED
@@ -1527,7 +1527,8 @@ function He(s) {
1527
1527
  logLevel: ve(s.getAttribute("data-log-level")),
1528
1528
  autocapture: s.getAttribute("data-autocapture") === "true",
1529
1529
  formTracking: s.getAttribute("data-form-tracking") === "false" ? !1 : s.getAttribute("data-form-tracking") === "true" ? "all" : s.getAttribute("data-form-tracking"),
1530
- autoPageview: s.getAttribute("data-auto-pageview") === "true",
1530
+ autoPageview: s.getAttribute("data-auto-pageview") === "false" ? !1 : s.getAttribute("data-auto-pageview") === "true" ? !0 : void 0,
1531
+ // Let default config handle it
1531
1532
  useBeaconApi: s.getAttribute("data-use-beacon-api") === "true",
1532
1533
  forceUseFetch: s.getAttribute("data-force-use-fetch") === "true",
1533
1534
  gaHook: s.getAttribute("data-ga-hook") === "true",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usermaven/react",
3
- "version": "1.5.12",
3
+ "version": "1.5.13",
4
4
  "description": "Usermaven JavaScript SDK for React",
5
5
  "author": "Usermaven <hello@usermaven.com>",
6
6
  "license": "MIT",
@@ -18,7 +18,7 @@
18
18
  "access": "public"
19
19
  },
20
20
  "dependencies": {
21
- "@usermaven/sdk-js": "1.5.12"
21
+ "@usermaven/sdk-js": "1.5.13"
22
22
  },
23
23
  "peerDependencies": {
24
24
  "react": "15.x || 16.x || 17.x || 18.x || 19.x",