powerpagestoolkit 2.6.3313 → 2.6.3325

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/dist/bundle.js +2 -2
  2. package/package.json +1 -1
package/dist/bundle.js CHANGED
@@ -1026,9 +1026,9 @@ var DOMNodeReference = class _DOMNodeReference {
1026
1026
  async function createDOMNodeReference(target, options = {
1027
1027
  multiple: false,
1028
1028
  root: document.body,
1029
- timeout: 100
1029
+ timeout: 1e3
1030
1030
  }) {
1031
- const { multiple = false, root = document.body, timeout = 0 } = options;
1031
+ const { multiple = false, root = document.body, timeout = 1e3 } = options;
1032
1032
  try {
1033
1033
  const isMultiple = typeof multiple === "function" ? multiple() : multiple;
1034
1034
  if (isMultiple) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powerpagestoolkit",
3
- "version": "2.6.3313",
3
+ "version": "2.6.3325",
4
4
  "description": "Reference, manipulate, and engage with Power Pages sites through the nodes in the DOM; use a variety of custom methods that allow customizing your power pages site quicker and easier. ",
5
5
  "main": "./dist/bundle.js",
6
6
  "types": "./dist/index.d.ts",