@appsurify-testmap/rrweb-replay 2.0.0-alpha.23 → 2.0.0-alpha.24

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.
@@ -16,9 +16,6 @@ var NodeType$3 = /* @__PURE__ */ ((NodeType2) => {
16
16
  NodeType2[NodeType2["Comment"] = 5] = "Comment";
17
17
  return NodeType2;
18
18
  })(NodeType$3 || {});
19
- function isElement(n2) {
20
- return n2.nodeType === n2.ELEMENT_NODE;
21
- }
22
19
  class Mirror {
23
20
  constructor() {
24
21
  __publicField$1(this, "idNodeMap", /* @__PURE__ */ new Map());
@@ -92,6 +89,9 @@ function isNodeMetaEqual(a2, b) {
92
89
  return a2.tagName === b.tagName && JSON.stringify(a2.attributes) === JSON.stringify(b.attributes) && a2.isSVG === b.isSVG && a2.needBlock === b.needBlock;
93
90
  return false;
94
91
  }
92
+ function isElement(n2) {
93
+ return n2.nodeType === n2.ELEMENT_NODE;
94
+ }
95
95
  const MEDIA_SELECTOR = /(max|min)-device-(width|height)/;
96
96
  const MEDIA_SELECTOR_GLOBAL = new RegExp(MEDIA_SELECTOR.source, "g");
97
97
  const mediaSelectorPlugin = {
@@ -9296,20 +9296,20 @@ var IncrementalSource = /* @__PURE__ */ ((IncrementalSource2) => {
9296
9296
  IncrementalSource2[IncrementalSource2["Selection"] = 14] = "Selection";
9297
9297
  IncrementalSource2[IncrementalSource2["AdoptedStyleSheet"] = 15] = "AdoptedStyleSheet";
9298
9298
  IncrementalSource2[IncrementalSource2["CustomElement"] = 16] = "CustomElement";
9299
+ IncrementalSource2[IncrementalSource2["VisibilityChange"] = 17] = "VisibilityChange";
9299
9300
  return IncrementalSource2;
9300
9301
  })(IncrementalSource || {});
9301
9302
  var MouseInteractions = /* @__PURE__ */ ((MouseInteractions2) => {
9302
9303
  MouseInteractions2[MouseInteractions2["MouseUp"] = 0] = "MouseUp";
9303
9304
  MouseInteractions2[MouseInteractions2["MouseDown"] = 1] = "MouseDown";
9304
9305
  MouseInteractions2[MouseInteractions2["Click"] = 2] = "Click";
9305
- MouseInteractions2[MouseInteractions2["ContextMenu"] = 3] = "ContextMenu";
9306
- MouseInteractions2[MouseInteractions2["DblClick"] = 4] = "DblClick";
9307
- MouseInteractions2[MouseInteractions2["Focus"] = 5] = "Focus";
9308
- MouseInteractions2[MouseInteractions2["Blur"] = 6] = "Blur";
9309
- MouseInteractions2[MouseInteractions2["TouchStart"] = 7] = "TouchStart";
9310
- MouseInteractions2[MouseInteractions2["TouchMove_Departed"] = 8] = "TouchMove_Departed";
9311
- MouseInteractions2[MouseInteractions2["TouchEnd"] = 9] = "TouchEnd";
9312
- MouseInteractions2[MouseInteractions2["TouchCancel"] = 10] = "TouchCancel";
9306
+ MouseInteractions2[MouseInteractions2["DblClick"] = 3] = "DblClick";
9307
+ MouseInteractions2[MouseInteractions2["Focus"] = 4] = "Focus";
9308
+ MouseInteractions2[MouseInteractions2["Blur"] = 5] = "Blur";
9309
+ MouseInteractions2[MouseInteractions2["TouchStart"] = 6] = "TouchStart";
9310
+ MouseInteractions2[MouseInteractions2["TouchMove_Departed"] = 7] = "TouchMove_Departed";
9311
+ MouseInteractions2[MouseInteractions2["TouchEnd"] = 8] = "TouchEnd";
9312
+ MouseInteractions2[MouseInteractions2["TouchCancel"] = 9] = "TouchCancel";
9313
9313
  return MouseInteractions2;
9314
9314
  })(MouseInteractions || {});
9315
9315
  var CanvasContext = /* @__PURE__ */ ((CanvasContext2) => {