lwc 2.23.6 → 2.25.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.
Files changed (39) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +147 -20
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +147 -20
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +125 -18
  5. package/dist/engine-dom/iife/es5/engine-dom.js +202 -41
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +171 -27
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +147 -20
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +125 -18
  11. package/dist/engine-dom/umd/es5/engine-dom.js +202 -41
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +171 -27
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +125 -17
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +125 -17
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +205 -168
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +205 -168
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.min.js +2 -2
  20. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +195 -158
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +25 -11
  22. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.min.js +2 -2
  23. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +25 -11
  24. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +205 -168
  25. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.min.js +2 -2
  26. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +195 -158
  27. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +25 -11
  28. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.min.js +2 -2
  29. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +25 -11
  30. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  34. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  35. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  36. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  37. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  38. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  39. package/package.json +7 -7
@@ -365,9 +365,9 @@ var LWC = (function (exports) {
365
365
  // Increment whenever the LWC template compiler changes
366
366
 
367
367
 
368
- var LWC_VERSION = "2.23.6";
368
+ var LWC_VERSION = "2.25.0";
369
369
  var LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
370
- /** version: 2.23.6 */
370
+ /** version: 2.25.0 */
371
371
 
372
372
  /**
373
373
  * Copyright (C) 2018 salesforce.com, inc.
@@ -461,7 +461,7 @@ var LWC = (function (exports) {
461
461
  patch$1(propName);
462
462
  }
463
463
  }
464
- /** version: 2.23.6 */
464
+ /** version: 2.25.0 */
465
465
 
466
466
  /**
467
467
  * Copyright (C) 2018 salesforce.com, inc.
@@ -554,7 +554,7 @@ var LWC = (function (exports) {
554
554
  setFeatureFlag(name, value);
555
555
  }
556
556
  }
557
- /** version: 2.23.6 */
557
+ /** version: 2.25.0 */
558
558
 
559
559
  /*
560
560
  * Copyright (c) 2018, salesforce.com, inc.
@@ -732,6 +732,22 @@ var LWC = (function (exports) {
732
732
  }
733
733
 
734
734
  return list;
735
+ } // Set a ref (lwc:ref) on a VM, from a template API
736
+
737
+
738
+ function setRefVNode(vm, ref, vnode) {
739
+ if (process.env.NODE_ENV !== 'production' && isUndefined$1(vm.refVNodes)) {
740
+ throw new Error('refVNodes must be defined when setting a ref');
741
+ } // If this method is called, then vm.refVNodes is set as the template has refs.
742
+ // If not, then something went wrong and we threw an error above.
743
+
744
+
745
+ var refVNodes = vm.refVNodes; // In cases of conflict (two elements with the same ref), prefer, the last one,
746
+ // in depth-first traversal order.
747
+
748
+ if (!(ref in refVNodes) || refVNodes[ref].key < vnode.key) {
749
+ refVNodes[ref] = vnode;
750
+ }
735
751
  }
736
752
  /*
737
753
  * Copyright (c) 2019, salesforce.com, inc.
@@ -2394,13 +2410,15 @@ var LWC = (function (exports) {
2394
2410
  }
2395
2411
  };
2396
2412
  }
2413
+
2414
+ var EMPTY_REFS = freeze(create(null));
2415
+ var refsCache = new WeakMap();
2397
2416
  /**
2398
2417
  * This class is the base class for any LWC element.
2399
2418
  * Some elements directly extends this class, others implement it via inheritance.
2400
2419
  **/
2401
2420
  // @ts-ignore
2402
2421
 
2403
-
2404
2422
  var LightningElement = function LightningElement() {
2405
2423
  // This should be as performant as possible, while any initialization should be done lazily
2406
2424
  if (isNull(vmBeingConstructed)) {
@@ -2627,6 +2645,91 @@ var LWC = (function (exports) {
2627
2645
  return vm.shadowRoot;
2628
2646
  },
2629
2647
 
2648
+ get refs() {
2649
+ var vm = getAssociatedVM(this);
2650
+
2651
+ if (isUpdatingTemplate) {
2652
+ if (process.env.NODE_ENV !== 'production') {
2653
+ logError("this.refs should not be called while ".concat(getComponentTag(vm), " is rendering. Use this.refs only when the DOM is stable, e.g. in renderedCallback()."));
2654
+ } // If the template is in the process of being updated, then we don't want to go through the normal
2655
+ // process of returning the refs and caching them, because the state of the refs is unstable.
2656
+ // This can happen if e.g. a template contains `<div class={foo}></div>` and `foo` is computed
2657
+ // based on `this.refs.bar`.
2658
+
2659
+
2660
+ return;
2661
+ }
2662
+
2663
+ if (process.env.NODE_ENV !== 'production') {
2664
+ warnIfInvokedDuringConstruction(vm, 'refs');
2665
+ }
2666
+
2667
+ var refVNodes = vm.refVNodes,
2668
+ hasRefVNodes = vm.hasRefVNodes,
2669
+ cmpTemplate = vm.cmpTemplate; // If the `cmpTemplate` is null, that means that the template has not been rendered yet. Most likely this occurs
2670
+ // if `this.refs` is called during the `connectedCallback` phase. The DOM elements have not been rendered yet,
2671
+ // so log a warning. Note we also check `isBeingConstructed()` to avoid a double warning (due to
2672
+ // `warnIfInvokedDuringConstruction` above).
2673
+
2674
+ if (process.env.NODE_ENV !== 'production' && isNull(cmpTemplate) && !isBeingConstructed(vm)) {
2675
+ logError("this.refs is undefined for ".concat(getComponentTag(vm), ". This is either because the attached template has no \"lwc:ref\" directive, or this.refs was ") + "invoked before renderedCallback(). Use this.refs only when the referenced HTML elements have " + "been rendered to the DOM, such as within renderedCallback() or disconnectedCallback().");
2676
+ } // For backwards compatibility with component written before template refs
2677
+ // were introduced, we return undefined if the template has no refs defined
2678
+ // anywhere. This fixes components that may want to add an expando called `refs`
2679
+ // and are checking if it exists with `if (this.refs)` before adding it.
2680
+ // Note it is not sufficient to just check if `refVNodes` is null or empty,
2681
+ // because a template may have `lwc:ref` defined within a falsy `if:true` block.
2682
+
2683
+
2684
+ if (!hasRefVNodes) {
2685
+ return;
2686
+ } // For templates that are using `lwc:ref`, if there are no refs currently available
2687
+ // (e.g. refs inside of a falsy `if:true` block), we return an empty object.
2688
+
2689
+
2690
+ if (isNull(refVNodes)) {
2691
+ return EMPTY_REFS;
2692
+ } // The refNodes can be cached based on the refVNodes, since the refVNodes
2693
+ // are recreated from scratch every time the template is rendered.
2694
+ // This happens with `vm.refVNodes = null` in `template.ts` in `@lwc/engine-core`.
2695
+
2696
+
2697
+ var refs = refsCache.get(refVNodes);
2698
+
2699
+ if (isUndefined$1(refs)) {
2700
+ refs = create(null);
2701
+
2702
+ var _iterator3 = _createForOfIteratorHelper(keys(refVNodes)),
2703
+ _step3;
2704
+
2705
+ try {
2706
+ for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
2707
+ var key = _step3.value;
2708
+ refs[key] = refVNodes[key].elm;
2709
+ }
2710
+ } catch (err) {
2711
+ _iterator3.e(err);
2712
+ } finally {
2713
+ _iterator3.f();
2714
+ }
2715
+
2716
+ freeze(refs);
2717
+ refsCache.set(refVNodes, refs);
2718
+ }
2719
+
2720
+ return refs;
2721
+ },
2722
+
2723
+ // For backwards compat, we allow component authors to set `refs` as an expando
2724
+ set refs(value) {
2725
+ defineProperty(this, 'refs', {
2726
+ configurable: true,
2727
+ enumerable: true,
2728
+ writable: true,
2729
+ value: value
2730
+ });
2731
+ },
2732
+
2630
2733
  get shadowRoot() {
2631
2734
  // From within the component instance, the shadowRoot is always reported as "closed".
2632
2735
  // Authors should rely on this.template instead.
@@ -4331,6 +4434,18 @@ var LWC = (function (exports) {
4331
4434
  context = owner.context;
4332
4435
  return context.hasScopedStyles && (cmpTemplate === null || cmpTemplate === void 0 ? void 0 : cmpTemplate.stylesheetToken) || null;
4333
4436
  }
4437
+ /**
4438
+ * This function returns the host style token for a custom element if it
4439
+ * exists. Otherwise it returns null.
4440
+ */
4441
+
4442
+
4443
+ function getStylesheetTokenHost(vnode) {
4444
+ var _getComponentInternal = getComponentInternalDef(vnode.ctor),
4445
+ stylesheetToken = _getComponentInternal.template.stylesheetToken;
4446
+
4447
+ return !isUndefined$1(stylesheetToken) ? makeHostToken(stylesheetToken) : null;
4448
+ }
4334
4449
 
4335
4450
  function getNearestNativeShadowComponent(vm) {
4336
4451
  var owner = getNearestShadowComponent(vm);
@@ -4476,6 +4591,12 @@ var LWC = (function (exports) {
4476
4591
  function isSameVnode(vnode1, vnode2) {
4477
4592
  return vnode1.key === vnode2.key && vnode1.sel === vnode2.sel;
4478
4593
  }
4594
+
4595
+ function isVCustomElement(vnode) {
4596
+ return vnode.type === 3
4597
+ /* VNodeType.CustomElement */
4598
+ ;
4599
+ }
4479
4600
  /*
4480
4601
  * Copyright (c) 2018, salesforce.com, inc.
4481
4602
  * All rights reserved.
@@ -4542,15 +4663,33 @@ var LWC = (function (exports) {
4542
4663
 
4543
4664
  function patchProps(oldVnode, vnode, renderer) {
4544
4665
  var props = vnode.data.props;
4666
+ var spread = vnode.data.spread;
4545
4667
 
4546
- if (isUndefined$1(props)) {
4668
+ if (isUndefined$1(props) && isUndefined$1(spread)) {
4547
4669
  return;
4548
4670
  }
4549
4671
 
4550
- var oldProps = isNull(oldVnode) ? EmptyObject : oldVnode.data.props;
4672
+ var oldProps;
4551
4673
 
4552
- if (oldProps === props) {
4553
- return;
4674
+ if (!isNull(oldVnode)) {
4675
+ oldProps = oldVnode.data.props;
4676
+ var oldSpread = oldVnode.data.spread;
4677
+
4678
+ if (oldProps === props && oldSpread === spread) {
4679
+ return;
4680
+ }
4681
+
4682
+ if (isUndefined$1(oldProps)) {
4683
+ oldProps = EmptyObject;
4684
+ }
4685
+
4686
+ if (!isUndefined$1(oldSpread)) {
4687
+ oldProps = assign({}, oldProps, oldSpread);
4688
+ }
4689
+ }
4690
+
4691
+ if (!isUndefined$1(spread)) {
4692
+ props = assign({}, props, spread);
4554
4693
  }
4555
4694
 
4556
4695
  var isFirstPatch = isNull(oldVnode);
@@ -4563,7 +4702,8 @@ var LWC = (function (exports) {
4563
4702
  var cur = props[key]; // Set the property if it's the first time is is patched or if the previous property is
4564
4703
  // different than the one previously set.
4565
4704
 
4566
- if (isFirstPatch || cur !== (isLiveBindingProp(sel, key) ? getProperty(elm, key) : oldProps[key])) {
4705
+ if (isFirstPatch || cur !== (isLiveBindingProp(sel, key) ? getProperty(elm, key) : oldProps[key]) || !(key in oldProps) // this is required because the above case will pass when `cur` is `undefined` and key is missing in `oldProps`
4706
+ ) {
4567
4707
  // Additional verification if properties are supported by the element
4568
4708
  // Validation relies on html properties and public properties being defined on the element,
4569
4709
  // SSR has its own custom validation.
@@ -5631,19 +5771,25 @@ var LWC = (function (exports) {
5631
5771
  });
5632
5772
  }
5633
5773
 
5634
- var elm;
5635
- var key = data.key;
5636
- return {
5774
+ var key = data.key,
5775
+ ref = data.ref;
5776
+ var vnode = {
5637
5777
  type: 2
5638
5778
  /* VNodeType.Element */
5639
5779
  ,
5640
5780
  sel: sel,
5641
5781
  data: data,
5642
5782
  children: children,
5643
- elm: elm,
5783
+ elm: undefined,
5644
5784
  key: key,
5645
5785
  owner: vmBeingRendered
5646
5786
  };
5787
+
5788
+ if (!isUndefined$1(ref)) {
5789
+ setRefVNode(vmBeingRendered, ref, vnode);
5790
+ }
5791
+
5792
+ return vnode;
5647
5793
  } // [t]ab[i]ndex function
5648
5794
 
5649
5795
 
@@ -5724,7 +5870,8 @@ var LWC = (function (exports) {
5724
5870
  }
5725
5871
  }
5726
5872
 
5727
- var key = data.key;
5873
+ var key = data.key,
5874
+ ref = data.ref;
5728
5875
  var elm, aChildren, vm;
5729
5876
  var vnode = {
5730
5877
  type: 3
@@ -5742,6 +5889,11 @@ var LWC = (function (exports) {
5742
5889
  vm: vm
5743
5890
  };
5744
5891
  addVNodeToChildLWC(vnode);
5892
+
5893
+ if (!isUndefined$1(ref)) {
5894
+ setRefVNode(vmBeingRendered, ref, vnode);
5895
+ }
5896
+
5745
5897
  return vnode;
5746
5898
  } // [i]terable node
5747
5899
 
@@ -6396,10 +6548,14 @@ var LWC = (function (exports) {
6396
6548
  validateSlots(vm, html); // add the VM to the list of host VMs that can be re-rendered if html is swapped
6397
6549
 
6398
6550
  setActiveVM(vm);
6399
- } // right before producing the vnodes, we clear up all internal references
6400
- // to custom elements from the template.
6551
+ } // reset the refs; they will be set during the tmpl() instantiation
6401
6552
 
6402
6553
 
6554
+ var hasRefVNodes = Boolean(html.hasRefs);
6555
+ vm.hasRefVNodes = hasRefVNodes;
6556
+ vm.refVNodes = hasRefVNodes ? create(null) : null; // right before producing the vnodes, we clear up all internal references
6557
+ // to custom elements from the template.
6558
+
6403
6559
  vm.velements = []; // Set the global flag that template is being updated
6404
6560
 
6405
6561
  isUpdatingTemplate = true;
@@ -6811,6 +6967,8 @@ var LWC = (function (exports) {
6811
6967
  tagName: tagName,
6812
6968
  mode: mode,
6813
6969
  owner: owner,
6970
+ refVNodes: null,
6971
+ hasRefVNodes: false,
6814
6972
  children: EmptyArray,
6815
6973
  aChildren: EmptyArray,
6816
6974
  velements: EmptyArray,
@@ -8052,7 +8210,8 @@ var LWC = (function (exports) {
8052
8210
  classMap = data.classMap;
8053
8211
  var getProperty = renderer.getProperty,
8054
8212
  getClassList = renderer.getClassList;
8055
- var scopedToken = getScopeTokenClass(owner); // Classnames for scoped CSS are added directly to the DOM during rendering,
8213
+ var scopedToken = getScopeTokenClass(owner);
8214
+ var stylesheetTokenHost = isVCustomElement(vnode) ? getStylesheetTokenHost(vnode) : null; // Classnames for scoped CSS are added directly to the DOM during rendering,
8056
8215
  // or to the VDOM on the server in the case of SSR. As such, these classnames
8057
8216
  // are never present in VDOM nodes in the browser.
8058
8217
  //
@@ -8061,9 +8220,11 @@ var LWC = (function (exports) {
8061
8220
 
8062
8221
  if (scopedToken) {
8063
8222
  if (!isUndefined$1(className)) {
8064
- className = "".concat(scopedToken, " ").concat(className);
8223
+ className = isNull(stylesheetTokenHost) ? "".concat(scopedToken, " ").concat(className) : "".concat(scopedToken, " ").concat(className, " ").concat(stylesheetTokenHost);
8065
8224
  } else if (!isUndefined$1(classMap)) {
8066
- classMap = Object.assign(Object.assign({}, classMap), _defineProperty({}, scopedToken, true));
8225
+ classMap = Object.assign(Object.assign(Object.assign({}, classMap), _defineProperty({}, scopedToken, true)), isNull(stylesheetTokenHost) ? {} : _defineProperty({}, stylesheetTokenHost, true));
8226
+ } else {
8227
+ className = isNull(stylesheetTokenHost) ? "".concat(scopedToken) : "".concat(scopedToken, " ").concat(stylesheetTokenHost);
8067
8228
  }
8068
8229
  }
8069
8230
 
@@ -8272,12 +8433,12 @@ var LWC = (function (exports) {
8272
8433
  function warnOnArrayMutation(stylesheets) {
8273
8434
  // We can't handle users calling Array.prototype.slice.call(tmpl.stylesheets), but
8274
8435
  // we can at least warn when they use the most common mutation methods.
8275
- var _iterator3 = _createForOfIteratorHelper(ARRAY_MUTATION_METHODS),
8276
- _step3;
8436
+ var _iterator4 = _createForOfIteratorHelper(ARRAY_MUTATION_METHODS),
8437
+ _step4;
8277
8438
 
8278
8439
  try {
8279
8440
  var _loop2 = function _loop2() {
8280
- var prop = _step3.value;
8441
+ var prop = _step4.value;
8281
8442
  var originalArrayMethod = getOriginalArrayMethod(prop);
8282
8443
 
8283
8444
  stylesheets[prop] = function arrayMutationWarningWrapper() {
@@ -8287,13 +8448,13 @@ var LWC = (function (exports) {
8287
8448
  };
8288
8449
  };
8289
8450
 
8290
- for (_iterator3.s(); !(_step3 = _iterator3.n()).done;) {
8451
+ for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) {
8291
8452
  _loop2();
8292
8453
  }
8293
8454
  } catch (err) {
8294
- _iterator3.e(err);
8455
+ _iterator4.e(err);
8295
8456
  } finally {
8296
- _iterator3.f();
8457
+ _iterator4.f();
8297
8458
  }
8298
8459
  } // TODO [#2782]: eventually freezeTemplate() will _actually_ freeze the tmpl object. Today it
8299
8460
  // just warns on mutation.
@@ -8305,12 +8466,12 @@ var LWC = (function (exports) {
8305
8466
  warnOnArrayMutation(tmpl.stylesheets);
8306
8467
  }
8307
8468
 
8308
- var _iterator4 = _createForOfIteratorHelper(TEMPLATE_PROPS),
8309
- _step4;
8469
+ var _iterator5 = _createForOfIteratorHelper(TEMPLATE_PROPS),
8470
+ _step5;
8310
8471
 
8311
8472
  try {
8312
8473
  var _loop3 = function _loop3() {
8313
- var prop = _step4.value;
8474
+ var prop = _step5.value;
8314
8475
  var value = tmpl[prop];
8315
8476
  defineProperty(tmpl, prop, {
8316
8477
  enumerable: true,
@@ -8328,13 +8489,13 @@ var LWC = (function (exports) {
8328
8489
  });
8329
8490
  };
8330
8491
 
8331
- for (_iterator4.s(); !(_step4 = _iterator4.n()).done;) {
8492
+ for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) {
8332
8493
  _loop3();
8333
8494
  }
8334
8495
  } catch (err) {
8335
- _iterator4.e(err);
8496
+ _iterator5.e(err);
8336
8497
  } finally {
8337
- _iterator4.f();
8498
+ _iterator5.f();
8338
8499
  }
8339
8500
 
8340
8501
  var originalDescriptor = getOwnPropertyDescriptor$1(tmpl, 'stylesheetTokens');
@@ -8379,7 +8540,7 @@ var LWC = (function (exports) {
8379
8540
 
8380
8541
  return ctor;
8381
8542
  }
8382
- /* version: 2.23.6 */
8543
+ /* version: 2.25.0 */
8383
8544
 
8384
8545
  /*
8385
8546
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8607,7 +8768,7 @@ var LWC = (function (exports) {
8607
8768
  function isNull(obj) {
8608
8769
  return obj === null;
8609
8770
  }
8610
- /** version: 2.23.6 */
8771
+ /** version: 2.25.0 */
8611
8772
 
8612
8773
  /*
8613
8774
  * Copyright (c) 2018, salesforce.com, inc.
@@ -8756,18 +8917,18 @@ var LWC = (function (exports) {
8756
8917
  var wrapperTags = topLevelWrappingMap[getTagName(html)];
8757
8918
 
8758
8919
  if (!isUndefined(wrapperTags)) {
8759
- var _iterator5 = _createForOfIteratorHelper(wrapperTags),
8760
- _step5;
8920
+ var _iterator6 = _createForOfIteratorHelper(wrapperTags),
8921
+ _step6;
8761
8922
 
8762
8923
  try {
8763
- for (_iterator5.s(); !(_step5 = _iterator5.n()).done;) {
8764
- var wrapperTag = _step5.value;
8924
+ for (_iterator6.s(); !(_step6 = _iterator6.n()).done;) {
8925
+ var wrapperTag = _step6.value;
8765
8926
  html = "<".concat(wrapperTag, ">").concat(html, "</").concat(wrapperTag, ">");
8766
8927
  }
8767
8928
  } catch (err) {
8768
- _iterator5.e(err);
8929
+ _iterator6.e(err);
8769
8930
  } finally {
8770
- _iterator5.f();
8931
+ _iterator6.f();
8771
8932
  }
8772
8933
  } // For IE11, the document title must not be undefined, but it can be an empty string
8773
8934
  // https://developer.mozilla.org/en-US/docs/Web/API/DOMImplementation/createHTMLDocument#browser_compatibility
@@ -9337,7 +9498,7 @@ var LWC = (function (exports) {
9337
9498
  });
9338
9499
  freeze(LightningElement);
9339
9500
  seal(LightningElement.prototype);
9340
- /* version: 2.23.6 */
9501
+ /* version: 2.25.0 */
9341
9502
 
9342
9503
  exports.LightningElement = LightningElement;
9343
9504
  exports.__unstable__ProfilerControl = profilerControl;