@stencil/core 4.40.1-dev.1766639216.64f6089 → 4.40.1-dev.1766985084.e893bd1

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/mock-doc/index.js CHANGED
@@ -1,6 +1,9 @@
1
1
  /*!
2
- Stencil Mock Doc v4.40.1-dev.1766639216.64f6089 | MIT Licensed | https://stenciljs.com
2
+ Stencil Mock Doc v4.40.1-dev.1766985084.e893bd1 | MIT Licensed | https://stenciljs.com
3
3
  */
4
+ var __defProp = Object.defineProperty;
5
+ var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
6
+ var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
4
7
 
5
8
  // src/runtime/runtime-constants.ts
6
9
  var CONTENT_REF_ID = "r";
@@ -26,8 +29,8 @@ var createAttributeProxy = (caseInsensitive) => new Proxy(new MockAttributeMap(c
26
29
  var MockAttributeMap = class {
27
30
  constructor(caseInsensitive = false) {
28
31
  this.caseInsensitive = caseInsensitive;
29
- this.__items = [];
30
32
  }
33
+ __items = [];
31
34
  get length() {
32
35
  return this.__items.length;
33
36
  }
@@ -116,6 +119,9 @@ function sortAttributes(a, b) {
116
119
  return 0;
117
120
  }
118
121
  var MockAttr = class {
122
+ _name;
123
+ _value;
124
+ _namespaceURI;
119
125
  constructor(attrName, attrValue, namespaceURI = null) {
120
126
  this._name = attrName;
121
127
  this._value = String(attrValue);
@@ -172,9 +178,7 @@ var NODE_TYPES = /* @__PURE__ */ ((NODE_TYPES2) => {
172
178
 
173
179
  // src/mock-doc/css-style-declaration.ts
174
180
  var MockCSSStyleDeclaration = class {
175
- constructor() {
176
- this._styles = /* @__PURE__ */ new Map();
177
- }
181
+ _styles = /* @__PURE__ */ new Map();
178
182
  setProperty(prop, value) {
179
183
  prop = jsCaseToCssCase(prop);
180
184
  if (value == null || value === "") {
@@ -260,6 +264,8 @@ var MockCustomElementRegistry = class {
260
264
  constructor(win) {
261
265
  this.win = win;
262
266
  }
267
+ __registry;
268
+ __whenDefined;
263
269
  define(tagName, cstr, options) {
264
270
  if (tagName.toLowerCase() !== tagName) {
265
271
  throw new Error(
@@ -494,15 +500,17 @@ function dashToPascalCase(str) {
494
500
 
495
501
  // src/mock-doc/event.ts
496
502
  var MockEvent = class {
503
+ bubbles = false;
504
+ cancelBubble = false;
505
+ cancelable = false;
506
+ composed = false;
507
+ currentTarget = null;
508
+ defaultPrevented = false;
509
+ srcElement = null;
510
+ target = null;
511
+ timeStamp;
512
+ type;
497
513
  constructor(type, eventInitDict) {
498
- this.bubbles = false;
499
- this.cancelBubble = false;
500
- this.cancelable = false;
501
- this.composed = false;
502
- this.currentTarget = null;
503
- this.defaultPrevented = false;
504
- this.srcElement = null;
505
- this.target = null;
506
514
  if (typeof type !== "string") {
507
515
  throw new Error(`Event type required`);
508
516
  }
@@ -544,69 +552,71 @@ var MockEvent = class {
544
552
  }
545
553
  };
546
554
  var MockCustomEvent = class extends MockEvent {
555
+ detail = null;
547
556
  constructor(type, customEventInitDic) {
548
557
  super(type);
549
- this.detail = null;
550
558
  if (customEventInitDic != null) {
551
559
  Object.assign(this, customEventInitDic);
552
560
  }
553
561
  }
554
562
  };
555
563
  var MockKeyboardEvent = class extends MockEvent {
564
+ code = "";
565
+ key = "";
566
+ altKey = false;
567
+ ctrlKey = false;
568
+ metaKey = false;
569
+ shiftKey = false;
570
+ location = 0;
571
+ repeat = false;
556
572
  constructor(type, keyboardEventInitDic) {
557
573
  super(type);
558
- this.code = "";
559
- this.key = "";
560
- this.altKey = false;
561
- this.ctrlKey = false;
562
- this.metaKey = false;
563
- this.shiftKey = false;
564
- this.location = 0;
565
- this.repeat = false;
566
574
  if (keyboardEventInitDic != null) {
567
575
  Object.assign(this, keyboardEventInitDic);
568
576
  }
569
577
  }
570
578
  };
571
579
  var MockMouseEvent = class extends MockEvent {
580
+ screenX = 0;
581
+ screenY = 0;
582
+ clientX = 0;
583
+ clientY = 0;
584
+ ctrlKey = false;
585
+ shiftKey = false;
586
+ altKey = false;
587
+ metaKey = false;
588
+ button = 0;
589
+ buttons = 0;
590
+ relatedTarget = null;
572
591
  constructor(type, mouseEventInitDic) {
573
592
  super(type);
574
- this.screenX = 0;
575
- this.screenY = 0;
576
- this.clientX = 0;
577
- this.clientY = 0;
578
- this.ctrlKey = false;
579
- this.shiftKey = false;
580
- this.altKey = false;
581
- this.metaKey = false;
582
- this.button = 0;
583
- this.buttons = 0;
584
- this.relatedTarget = null;
585
593
  if (mouseEventInitDic != null) {
586
594
  Object.assign(this, mouseEventInitDic);
587
595
  }
588
596
  }
589
597
  };
590
598
  var MockUIEvent = class extends MockEvent {
599
+ detail = null;
600
+ view = null;
591
601
  constructor(type, uiEventInitDic) {
592
602
  super(type);
593
- this.detail = null;
594
- this.view = null;
595
603
  if (uiEventInitDic != null) {
596
604
  Object.assign(this, uiEventInitDic);
597
605
  }
598
606
  }
599
607
  };
600
608
  var MockFocusEvent = class extends MockUIEvent {
609
+ relatedTarget = null;
601
610
  constructor(type, focusEventInitDic) {
602
611
  super(type);
603
- this.relatedTarget = null;
604
612
  if (focusEventInitDic != null) {
605
613
  Object.assign(this, focusEventInitDic);
606
614
  }
607
615
  }
608
616
  };
609
617
  var MockEventListener = class {
618
+ type;
619
+ handler;
610
620
  constructor(type, handler) {
611
621
  this.type = type;
612
622
  this.handler = handler;
@@ -6589,6 +6599,12 @@ function getItems(elm, attr) {
6589
6599
 
6590
6600
  // src/mock-doc/node.ts
6591
6601
  var MockNode2 = class {
6602
+ _nodeValue;
6603
+ nodeName;
6604
+ nodeType;
6605
+ ownerDocument;
6606
+ parentNode;
6607
+ childNodes;
6592
6608
  constructor(ownerDocument, nodeType, nodeName, nodeValue) {
6593
6609
  this.ownerDocument = ownerDocument;
6594
6610
  this.nodeType = nodeType;
@@ -6749,14 +6765,17 @@ var MockNode2 = class {
6749
6765
  return dispatchEvent(this, ev);
6750
6766
  }
6751
6767
  };
6752
- MockNode2.ELEMENT_NODE = 1;
6753
- MockNode2.TEXT_NODE = 3;
6754
- MockNode2.PROCESSING_INSTRUCTION_NODE = 7;
6755
- MockNode2.COMMENT_NODE = 8;
6756
- MockNode2.DOCUMENT_NODE = 9;
6757
- MockNode2.DOCUMENT_TYPE_NODE = 10;
6758
- MockNode2.DOCUMENT_FRAGMENT_NODE = 11;
6768
+ __publicField(MockNode2, "ELEMENT_NODE", 1);
6769
+ __publicField(MockNode2, "TEXT_NODE", 3);
6770
+ __publicField(MockNode2, "PROCESSING_INSTRUCTION_NODE", 7);
6771
+ __publicField(MockNode2, "COMMENT_NODE", 8);
6772
+ __publicField(MockNode2, "DOCUMENT_NODE", 9);
6773
+ __publicField(MockNode2, "DOCUMENT_TYPE_NODE", 10);
6774
+ __publicField(MockNode2, "DOCUMENT_FRAGMENT_NODE", 11);
6759
6775
  var MockNodeList = class {
6776
+ childNodes;
6777
+ length;
6778
+ ownerDocument;
6760
6779
  constructor(ownerDocument, childNodes, length) {
6761
6780
  this.ownerDocument = ownerDocument;
6762
6781
  this.childNodes = childNodes;
@@ -6764,6 +6783,10 @@ var MockNodeList = class {
6764
6783
  }
6765
6784
  };
6766
6785
  var MockElement = class extends MockNode2 {
6786
+ __namespaceURI;
6787
+ __attributeMap;
6788
+ __shadowRoot;
6789
+ __style;
6767
6790
  attachInternals() {
6768
6791
  return new Proxy({}, {
6769
6792
  get: function(_target, prop, _receiver) {
@@ -7464,9 +7487,9 @@ function insertBefore(parentNode, newNode, referenceNode) {
7464
7487
  return newNode;
7465
7488
  }
7466
7489
  var MockHTMLElement = class extends MockElement {
7490
+ __namespaceURI = "http://www.w3.org/1999/xhtml";
7467
7491
  constructor(ownerDocument, nodeName) {
7468
7492
  super(ownerDocument, typeof nodeName === "string" ? nodeName.toUpperCase() : null);
7469
- this.__namespaceURI = "http://www.w3.org/1999/xhtml";
7470
7493
  }
7471
7494
  get tagName() {
7472
7495
  var _a;
@@ -7632,15 +7655,16 @@ var MockDocumentTypeNode = class extends MockHTMLElement {
7632
7655
  var MockCSSRule = class {
7633
7656
  constructor(parentStyleSheet) {
7634
7657
  this.parentStyleSheet = parentStyleSheet;
7635
- this.cssText = "";
7636
- this.type = 0;
7637
7658
  }
7659
+ cssText = "";
7660
+ type = 0;
7638
7661
  };
7639
7662
  var MockCSSStyleSheet = class {
7663
+ ownerNode;
7664
+ type = "text/css";
7665
+ parentStyleSheet = null;
7666
+ cssRules = [];
7640
7667
  constructor(ownerNode) {
7641
- this.type = "text/css";
7642
- this.parentStyleSheet = null;
7643
- this.cssRules = [];
7644
7668
  this.ownerNode = ownerNode;
7645
7669
  }
7646
7670
  get rules() {
@@ -7926,6 +7950,7 @@ patchPropAttributes(MockLinkElement.prototype, {
7926
7950
  type: String
7927
7951
  });
7928
7952
  var MockMetaElement = class extends MockHTMLElement {
7953
+ content;
7929
7954
  constructor(ownerDocument) {
7930
7955
  super(ownerDocument, "meta");
7931
7956
  }
@@ -7950,35 +7975,33 @@ patchPropAttributes(MockScriptElement.prototype, {
7950
7975
  type: String
7951
7976
  });
7952
7977
  var MockDOMMatrix = class _MockDOMMatrix {
7953
- constructor() {
7954
- this.a = 1;
7955
- this.b = 0;
7956
- this.c = 0;
7957
- this.d = 1;
7958
- this.e = 0;
7959
- this.f = 0;
7960
- this.m11 = 1;
7961
- this.m12 = 0;
7962
- this.m13 = 0;
7963
- this.m14 = 0;
7964
- this.m21 = 0;
7965
- this.m22 = 1;
7966
- this.m23 = 0;
7967
- this.m24 = 0;
7968
- this.m31 = 0;
7969
- this.m32 = 0;
7970
- this.m33 = 1;
7971
- this.m34 = 0;
7972
- this.m41 = 0;
7973
- this.m42 = 0;
7974
- this.m43 = 0;
7975
- this.m44 = 1;
7976
- this.is2D = true;
7977
- this.isIdentity = true;
7978
- }
7979
7978
  static fromMatrix() {
7980
7979
  return new _MockDOMMatrix();
7981
7980
  }
7981
+ a = 1;
7982
+ b = 0;
7983
+ c = 0;
7984
+ d = 1;
7985
+ e = 0;
7986
+ f = 0;
7987
+ m11 = 1;
7988
+ m12 = 0;
7989
+ m13 = 0;
7990
+ m14 = 0;
7991
+ m21 = 0;
7992
+ m22 = 1;
7993
+ m23 = 0;
7994
+ m24 = 0;
7995
+ m31 = 0;
7996
+ m32 = 0;
7997
+ m33 = 1;
7998
+ m34 = 0;
7999
+ m41 = 0;
8000
+ m42 = 0;
8001
+ m43 = 0;
8002
+ m44 = 1;
8003
+ is2D = true;
8004
+ isIdentity = true;
7982
8005
  inverse() {
7983
8006
  return new _MockDOMMatrix();
7984
8007
  }
@@ -8024,12 +8047,10 @@ var MockDOMMatrix = class _MockDOMMatrix {
8024
8047
  }
8025
8048
  };
8026
8049
  var MockDOMPoint = class {
8027
- constructor() {
8028
- this.w = 1;
8029
- this.x = 0;
8030
- this.y = 0;
8031
- this.z = 0;
8032
- }
8050
+ w = 1;
8051
+ x = 0;
8052
+ y = 0;
8053
+ z = 0;
8033
8054
  toJSON() {
8034
8055
  }
8035
8056
  matrixTransform() {
@@ -8037,14 +8058,13 @@ var MockDOMPoint = class {
8037
8058
  }
8038
8059
  };
8039
8060
  var MockSVGRect = class {
8040
- constructor() {
8041
- this.height = 10;
8042
- this.width = 10;
8043
- this.x = 0;
8044
- this.y = 0;
8045
- }
8061
+ height = 10;
8062
+ width = 10;
8063
+ x = 0;
8064
+ y = 0;
8046
8065
  };
8047
8066
  var MockStyleElement = class extends MockHTMLElement {
8067
+ sheet;
8048
8068
  constructor(ownerDocument) {
8049
8069
  super(ownerDocument, "style");
8050
8070
  this.sheet = new MockCSSStyleSheet(this);
@@ -8069,10 +8089,7 @@ var MockStyleElement = class extends MockHTMLElement {
8069
8089
  }
8070
8090
  };
8071
8091
  var MockSVGElement = class extends MockElement {
8072
- constructor() {
8073
- super(...arguments);
8074
- this.__namespaceURI = "http://www.w3.org/2000/svg";
8075
- }
8092
+ __namespaceURI = "http://www.w3.org/2000/svg";
8076
8093
  // SVGElement properties and methods
8077
8094
  get ownerSVGElement() {
8078
8095
  return null;
@@ -8129,6 +8146,7 @@ var MockBaseElement = class extends MockHTMLElement {
8129
8146
  }
8130
8147
  };
8131
8148
  var MockTemplateElement = class _MockTemplateElement extends MockHTMLElement {
8149
+ content;
8132
8150
  constructor(ownerDocument) {
8133
8151
  super(ownerDocument, "template");
8134
8152
  this.content = new MockDocumentFragment(ownerDocument);
@@ -8235,6 +8253,8 @@ patchPropAttributes(MockSlotElement.prototype, {
8235
8253
  name: String
8236
8254
  });
8237
8255
  var CanvasRenderingContext = class {
8256
+ context;
8257
+ contextAttributes;
8238
8258
  constructor(context, contextAttributes) {
8239
8259
  this.context = context;
8240
8260
  this.contextAttributes = contextAttributes;
@@ -8432,8 +8452,8 @@ function createConsole() {
8432
8452
 
8433
8453
  // src/mock-doc/headers.ts
8434
8454
  var MockHeaders = class {
8455
+ _values = [];
8435
8456
  constructor(init) {
8436
- this._values = [];
8437
8457
  if (typeof init === "object") {
8438
8458
  if (typeof init[Symbol.iterator] === "function") {
8439
8459
  const kvs = [];
@@ -8571,18 +8591,19 @@ var MockDOMParser = class {
8571
8591
 
8572
8592
  // src/mock-doc/request-response.ts
8573
8593
  var MockRequest = class _MockRequest {
8594
+ _method = "GET";
8595
+ _url = "/";
8596
+ bodyUsed = false;
8597
+ cache = "default";
8598
+ credentials = "same-origin";
8599
+ headers;
8600
+ integrity = "";
8601
+ keepalive = false;
8602
+ mode = "cors";
8603
+ redirect = "follow";
8604
+ referrer = "about:client";
8605
+ referrerPolicy = "";
8574
8606
  constructor(input, init = {}) {
8575
- this._method = "GET";
8576
- this._url = "/";
8577
- this.bodyUsed = false;
8578
- this.cache = "default";
8579
- this.credentials = "same-origin";
8580
- this.integrity = "";
8581
- this.keepalive = false;
8582
- this.mode = "cors";
8583
- this.redirect = "follow";
8584
- this.referrer = "about:client";
8585
- this.referrerPolicy = "";
8586
8607
  if (typeof input === "string") {
8587
8608
  this.url = input;
8588
8609
  } else if (input) {
@@ -8622,12 +8643,14 @@ var MockRequest = class _MockRequest {
8622
8643
  }
8623
8644
  };
8624
8645
  var MockResponse = class _MockResponse {
8646
+ _body;
8647
+ headers;
8648
+ ok = true;
8649
+ status = 200;
8650
+ statusText = "";
8651
+ type = "default";
8652
+ url = "";
8625
8653
  constructor(body, init = {}) {
8626
- this.ok = true;
8627
- this.status = 200;
8628
- this.statusText = "";
8629
- this.type = "default";
8630
- this.url = "";
8631
8654
  this._body = body;
8632
8655
  if (init) {
8633
8656
  Object.assign(this, init);
@@ -8802,9 +8825,7 @@ var GLOBAL_CONSTRUCTORS = [
8802
8825
 
8803
8826
  // src/mock-doc/history.ts
8804
8827
  var MockHistory = class {
8805
- constructor() {
8806
- this.items = [];
8807
- }
8828
+ items = [];
8808
8829
  get length() {
8809
8830
  return this.items.length;
8810
8831
  }
@@ -8839,20 +8860,18 @@ var MockIntersectionObserver = class {
8839
8860
 
8840
8861
  // src/mock-doc/location.ts
8841
8862
  var MockLocation = class {
8842
- constructor() {
8843
- this.ancestorOrigins = null;
8844
- this.protocol = "";
8845
- this.host = "";
8846
- this.hostname = "";
8847
- this.port = "";
8848
- this.pathname = "";
8849
- this.search = "";
8850
- this.hash = "";
8851
- this.username = "";
8852
- this.password = "";
8853
- this.origin = "";
8854
- this._href = "";
8855
- }
8863
+ ancestorOrigins = null;
8864
+ protocol = "";
8865
+ host = "";
8866
+ hostname = "";
8867
+ port = "";
8868
+ pathname = "";
8869
+ search = "";
8870
+ hash = "";
8871
+ username = "";
8872
+ password = "";
8873
+ origin = "";
8874
+ _href = "";
8856
8875
  get href() {
8857
8876
  return this._href;
8858
8877
  }
@@ -8883,17 +8902,17 @@ var MockLocation = class {
8883
8902
 
8884
8903
  // src/mock-doc/navigator.ts
8885
8904
  var MockNavigator = class {
8886
- constructor() {
8887
- this.appCodeName = "MockNavigator";
8888
- this.appName = "MockNavigator";
8889
- this.appVersion = "MockNavigator";
8890
- this.platform = "MockNavigator";
8891
- this.userAgent = "MockNavigator";
8892
- }
8905
+ appCodeName = "MockNavigator";
8906
+ appName = "MockNavigator";
8907
+ appVersion = "MockNavigator";
8908
+ platform = "MockNavigator";
8909
+ userAgent = "MockNavigator";
8893
8910
  };
8894
8911
 
8895
8912
  // src/mock-doc/performance.ts
8896
8913
  var MockPerformance = class {
8914
+ timeOrigin;
8915
+ eventCounts;
8897
8916
  constructor() {
8898
8917
  this.timeOrigin = Date.now();
8899
8918
  this.eventCounts = /* @__PURE__ */ new Map();
@@ -9021,9 +9040,7 @@ var MockShadowRoot = class extends MockDocumentFragment {
9021
9040
 
9022
9041
  // src/mock-doc/storage.ts
9023
9042
  var MockStorage = class {
9024
- constructor() {
9025
- this.items = /* @__PURE__ */ new Map();
9026
- }
9043
+ items = /* @__PURE__ */ new Map();
9027
9044
  key(_value) {
9028
9045
  }
9029
9046
  getItem(key) {
@@ -9055,6 +9072,44 @@ var nativeSetTimeout = globalThis.setTimeout;
9055
9072
  var nativeURL = globalThis.URL;
9056
9073
  var nativeWindow = globalThis.window;
9057
9074
  var MockWindow = class {
9075
+ __timeouts;
9076
+ __history;
9077
+ __elementCstr;
9078
+ __htmlElementCstr;
9079
+ __charDataCstr;
9080
+ __docTypeCstr;
9081
+ __docCstr;
9082
+ __docFragCstr;
9083
+ __domTokenListCstr;
9084
+ __nodeCstr;
9085
+ __nodeListCstr;
9086
+ __localStorage;
9087
+ __sessionStorage;
9088
+ __location;
9089
+ __navigator;
9090
+ __clearInterval;
9091
+ __clearTimeout;
9092
+ __setInterval;
9093
+ __setTimeout;
9094
+ __maxTimeout;
9095
+ __allowInterval;
9096
+ URL;
9097
+ console;
9098
+ customElements;
9099
+ document;
9100
+ performance;
9101
+ devicePixelRatio;
9102
+ innerHeight;
9103
+ innerWidth;
9104
+ pageXOffset;
9105
+ pageYOffset;
9106
+ screen;
9107
+ screenLeft;
9108
+ screenTop;
9109
+ screenX;
9110
+ screenY;
9111
+ scrollX;
9112
+ scrollY;
9058
9113
  constructor(html = null) {
9059
9114
  if (html !== false) {
9060
9115
  this.document = new MockDocument(html, this);
@@ -9751,6 +9806,9 @@ function resetWindowDimensions(win) {
9751
9806
 
9752
9807
  // src/mock-doc/document.ts
9753
9808
  var MockDocument = class _MockDocument extends MockHTMLElement {
9809
+ defaultView;
9810
+ cookie;
9811
+ referrer;
9754
9812
  constructor(html = null, win = null) {
9755
9813
  super(null, null);
9756
9814
  this.nodeName = "#document" /* DOCUMENT_NODE */;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/mock-doc",
3
- "version": "4.40.1-dev.1766639216.64f6089",
3
+ "version": "4.40.1-dev.1766985084.e893bd1",
4
4
  "description": "Mock window, document and DOM outside of a browser environment.",
5
5
  "main": "./index.cjs",
6
6
  "module": "./index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core",
3
- "version": "4.40.1-dev.1766639216.64f6089",
3
+ "version": "4.40.1-dev.1766985084.e893bd1",
4
4
  "license": "MIT",
5
5
  "main": "./internal/stencil-core/index.cjs",
6
6
  "module": "./internal/stencil-core/index.js",
@@ -1,5 +1,5 @@
1
1
  /*
2
- Stencil Screenshot v4.40.1-dev.1766639216.64f6089 | MIT Licensed | https://stenciljs.com
2
+ Stencil Screenshot v4.40.1-dev.1766985084.e893bd1 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;
@@ -361,13 +361,34 @@ async function unlink(filePath) {
361
361
 
362
362
  // src/screenshot/connector-base.ts
363
363
  var ScreenshotConnector = class {
364
- constructor() {
365
- this.screenshotDirName = "screenshot";
366
- this.imagesDirName = "images";
367
- this.buildsDirName = "builds";
368
- this.masterBuildFileName = "master.json";
369
- this.screenshotCacheFileName = "screenshot-cache.json";
370
- }
364
+ rootDir;
365
+ cacheDir;
366
+ packageDir;
367
+ screenshotDirName = "screenshot";
368
+ imagesDirName = "images";
369
+ buildsDirName = "builds";
370
+ masterBuildFileName = "master.json";
371
+ screenshotCacheFileName = "screenshot-cache.json";
372
+ logger;
373
+ buildId;
374
+ buildMessage;
375
+ buildAuthor;
376
+ buildUrl;
377
+ previewUrl;
378
+ buildTimestamp;
379
+ appNamespace;
380
+ screenshotDir;
381
+ imagesDir;
382
+ buildsDir;
383
+ masterBuildFilePath;
384
+ screenshotCacheFilePath;
385
+ currentBuildDir;
386
+ updateMaster;
387
+ allowableMismatchedRatio;
388
+ allowableMismatchedPixels;
389
+ pixelmatchThreshold;
390
+ waitBeforeScreenshot;
391
+ pixelmatchModulePath;
371
392
  async initBuild(opts) {
372
393
  this.logger = opts.logger;
373
394
  this.buildId = opts.buildId;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stencil/core/screenshot",
3
- "version": "4.40.1-dev.1766639216.64f6089",
3
+ "version": "4.40.1-dev.1766985084.e893bd1",
4
4
  "description": "Stencil Screenshot.",
5
5
  "main": "./index.js",
6
6
  "types": "./index.d.ts",
@@ -1,5 +1,5 @@
1
1
  /*
2
- Stencil Screenshot Pixel Match v4.40.1-dev.1766639216.64f6089 | MIT Licensed | https://stenciljs.com
2
+ Stencil Screenshot Pixel Match v4.40.1-dev.1766985084.e893bd1 | MIT Licensed | https://stenciljs.com
3
3
  */
4
4
  "use strict";
5
5
  var __create = Object.create;