lwc 2.31.7 → 2.31.8

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 (35) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +144 -113
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +144 -113
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +98 -4
  5. package/dist/engine-dom/iife/es5/engine-dom.js +272 -175
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +201 -77
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +144 -113
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +98 -4
  11. package/dist/engine-dom/umd/es5/engine-dom.js +272 -175
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +201 -77
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +105 -65
  15. package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
  16. package/dist/engine-server/esm/es2017/engine-server.js +105 -65
  17. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
  19. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
  20. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
  21. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
  22. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
  23. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
  24. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
  25. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
  26. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  27. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  28. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  29. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  30. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  31. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  32. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  33. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  34. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  35. package/package.json +7 -7
@@ -467,9 +467,9 @@ function htmlEscape(str, attrMode = false) {
467
467
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
468
468
  */
469
469
  // Increment whenever the LWC template compiler changes
470
- const LWC_VERSION = "2.31.7";
470
+ const LWC_VERSION = "2.31.8";
471
471
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
472
- /** version: 2.31.7 */
472
+ /** version: 2.31.8 */
473
473
 
474
474
  /*
475
475
  * Copyright (c) 2020, salesforce.com, inc.
@@ -581,7 +581,7 @@ function setFeatureFlagForTest(name, value) {
581
581
  setFeatureFlag(name, value);
582
582
  }
583
583
  }
584
- /** version: 2.31.7 */
584
+ /** version: 2.31.8 */
585
585
 
586
586
  /* proxy-compat-disable */
587
587
 
@@ -2882,6 +2882,93 @@ const BaseBridgeElement = HTMLBridgeElementFactory(HTMLElementConstructor, getOw
2882
2882
  freeze(BaseBridgeElement);
2883
2883
  seal(BaseBridgeElement.prototype);
2884
2884
 
2885
+ /*
2886
+ * Copyright (c) 2023, salesforce.com, inc.
2887
+ * All rights reserved.
2888
+ * SPDX-License-Identifier: MIT
2889
+ * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
2890
+ */
2891
+ const supportsWeakRefs = typeof WeakRef === 'function' && typeof FinalizationRegistry === 'function';
2892
+ // In browsers that doesn't support WeakRefs, the values will still leak, but at least the keys won't
2893
+ class LegacyWeakMultiMap {
2894
+ constructor() {
2895
+ this._map = new WeakMap();
2896
+ }
2897
+ _getValues(key) {
2898
+ let values = this._map.get(key);
2899
+ if (isUndefined$1(values)) {
2900
+ values = new Set();
2901
+ this._map.set(key, values);
2902
+ }
2903
+ return values;
2904
+ }
2905
+ get(key) {
2906
+ return this._getValues(key);
2907
+ }
2908
+ add(key, vm) {
2909
+ const set = this._getValues(key);
2910
+ set.add(vm);
2911
+ }
2912
+ delete(key) {
2913
+ this._map.delete(key);
2914
+ }
2915
+ }
2916
+ // This implementation relies on the WeakRef/FinalizationRegistry proposal.
2917
+ // For some background, see: https://github.com/tc39/proposal-weakrefs
2918
+ class ModernWeakMultiMap {
2919
+ constructor() {
2920
+ this._map = new WeakMap();
2921
+ this._registry = new FinalizationRegistry((weakRefs) => {
2922
+ // This should be considered an optional cleanup method to remove GC'ed values from their respective arrays.
2923
+ // JS VMs are not obligated to call FinalizationRegistry callbacks.
2924
+ // Work backwards, removing stale VMs
2925
+ for (let i = weakRefs.length - 1; i >= 0; i--) {
2926
+ const vm = weakRefs[i].deref();
2927
+ if (isUndefined$1(vm)) {
2928
+ ArraySplice.call(weakRefs, i, 1); // remove
2929
+ }
2930
+ }
2931
+ });
2932
+ }
2933
+ _getWeakRefs(key) {
2934
+ let weakRefs = this._map.get(key);
2935
+ if (isUndefined$1(weakRefs)) {
2936
+ weakRefs = [];
2937
+ this._map.set(key, weakRefs);
2938
+ }
2939
+ return weakRefs;
2940
+ }
2941
+ get(key) {
2942
+ const weakRefs = this._getWeakRefs(key);
2943
+ const result = new Set();
2944
+ for (const weakRef of weakRefs) {
2945
+ const vm = weakRef.deref();
2946
+ if (!isUndefined$1(vm)) {
2947
+ result.add(vm);
2948
+ }
2949
+ }
2950
+ return result;
2951
+ }
2952
+ add(key, value) {
2953
+ const weakRefs = this._getWeakRefs(key);
2954
+ // We could check for duplicate values here, but it doesn't seem worth it.
2955
+ // We transform the output into a Set anyway
2956
+ ArrayPush$1.call(weakRefs, new WeakRef(value));
2957
+ // It's important here not to leak the second argument, which is the "held value." The FinalizationRegistry
2958
+ // effectively creates a strong reference between the first argument (the "target") and the held value. When
2959
+ // the target is GC'ed, the callback is called, and then the held value is GC'ed.
2960
+ // Putting the key here would mean the key is not GC'ed until the value is GC'ed, which defeats the purpose
2961
+ // of the WeakMap. Whereas putting the weakRefs array here is fine, because it doesn't have a strong reference
2962
+ // to anything. See also this example:
2963
+ // https://gist.github.com/nolanlawson/79a3d36e8e6cc25c5048bb17c1795aea
2964
+ this._registry.register(value, weakRefs);
2965
+ }
2966
+ delete(key) {
2967
+ this._map.delete(key);
2968
+ }
2969
+ }
2970
+ const WeakMultiMap = supportsWeakRefs ? ModernWeakMultiMap : LegacyWeakMultiMap;
2971
+
2885
2972
  /*
2886
2973
  * Copyright (c) 2020, salesforce.com, inc.
2887
2974
  * All rights reserved.
@@ -2891,9 +2978,13 @@ seal(BaseBridgeElement.prototype);
2891
2978
  const swappedTemplateMap = new WeakMap();
2892
2979
  const swappedComponentMap = new WeakMap();
2893
2980
  const swappedStyleMap = new WeakMap();
2894
- const activeTemplates = new WeakMap();
2895
- const activeComponents = new WeakMap();
2896
- const activeStyles = new WeakMap();
2981
+ // The important thing here is the weak values – VMs are transient (one per component instance) and should be GC'ed,
2982
+ // so we don't want to create strong references to them.
2983
+ // The weak keys are kind of useless, because Templates, LightningElementConstructors, and StylesheetFactories are
2984
+ // never GC'ed. But maybe they will be someday, so we may as well use weak keys too.
2985
+ const activeTemplates = new WeakMultiMap();
2986
+ const activeComponents = new WeakMultiMap();
2987
+ const activeStyles = new WeakMultiMap();
2897
2988
  function getTemplateOrSwappedTemplate(tpl) {
2898
2989
  if (process.env.NODE_ENV === 'production') {
2899
2990
  // this method should never leak to prod
@@ -2937,75 +3028,27 @@ function setActiveVM(vm) {
2937
3028
  }
2938
3029
  // tracking active component
2939
3030
  const Ctor = vm.def.ctor;
2940
- let componentVMs = activeComponents.get(Ctor);
2941
- if (isUndefined$1(componentVMs)) {
2942
- componentVMs = new Set();
2943
- activeComponents.set(Ctor, componentVMs);
2944
- }
2945
3031
  // this will allow us to keep track of the hot components
2946
- componentVMs.add(vm);
3032
+ activeComponents.add(Ctor, vm);
2947
3033
  // tracking active template
2948
3034
  const tpl = vm.cmpTemplate;
2949
3035
  if (tpl) {
2950
- let templateVMs = activeTemplates.get(tpl);
2951
- if (isUndefined$1(templateVMs)) {
2952
- templateVMs = new Set();
2953
- activeTemplates.set(tpl, templateVMs);
2954
- }
2955
3036
  // this will allow us to keep track of the templates that are
2956
3037
  // being used by a hot component
2957
- templateVMs.add(vm);
3038
+ activeTemplates.add(tpl, vm);
2958
3039
  // tracking active styles associated to template
2959
3040
  const stylesheets = tpl.stylesheets;
2960
3041
  if (!isUndefined$1(stylesheets)) {
2961
- flattenStylesheets(stylesheets).forEach((stylesheet) => {
3042
+ for (const stylesheet of flattenStylesheets(stylesheets)) {
2962
3043
  // this is necessary because we don't hold the list of styles
2963
3044
  // in the vm, we only hold the selected (already swapped template)
2964
3045
  // but the styles attached to the template might not be the actual
2965
3046
  // active ones, but the swapped versions of those.
2966
- stylesheet = getStyleOrSwappedStyle(stylesheet);
2967
- let stylesheetVMs = activeStyles.get(stylesheet);
2968
- if (isUndefined$1(stylesheetVMs)) {
2969
- stylesheetVMs = new Set();
2970
- activeStyles.set(stylesheet, stylesheetVMs);
2971
- }
3047
+ const swappedStylesheet = getStyleOrSwappedStyle(stylesheet);
2972
3048
  // this will allow us to keep track of the stylesheet that are
2973
3049
  // being used by a hot component
2974
- stylesheetVMs.add(vm);
2975
- });
2976
- }
2977
- }
2978
- }
2979
- function removeActiveVM(vm) {
2980
- if (process.env.NODE_ENV === 'production') {
2981
- // this method should never leak to prod
2982
- throw new ReferenceError();
2983
- }
2984
- // tracking inactive component
2985
- const Ctor = vm.def.ctor;
2986
- let list = activeComponents.get(Ctor);
2987
- if (!isUndefined$1(list)) {
2988
- // deleting the vm from the set to avoid leaking memory
2989
- list.delete(vm);
2990
- }
2991
- // removing inactive template
2992
- const tpl = vm.cmpTemplate;
2993
- if (tpl) {
2994
- list = activeTemplates.get(tpl);
2995
- if (!isUndefined$1(list)) {
2996
- // deleting the vm from the set to avoid leaking memory
2997
- list.delete(vm);
2998
- }
2999
- // removing active styles associated to template
3000
- const styles = tpl.stylesheets;
3001
- if (!isUndefined$1(styles)) {
3002
- flattenStylesheets(styles).forEach((style) => {
3003
- list = activeStyles.get(style);
3004
- if (!isUndefined$1(list)) {
3005
- // deleting the vm from the set to avoid leaking memory
3006
- list.delete(vm);
3007
- }
3008
- });
3050
+ activeStyles.add(swappedStylesheet, vm);
3051
+ }
3009
3052
  }
3010
3053
  }
3011
3054
  }
@@ -5380,9 +5423,6 @@ function resetComponentStateWhenRemoved(vm) {
5380
5423
  runChildNodesDisconnectedCallback(vm);
5381
5424
  runLightChildNodesDisconnectedCallback(vm);
5382
5425
  }
5383
- if (process.env.NODE_ENV !== 'production') {
5384
- removeActiveVM(vm);
5385
- }
5386
5426
  }
5387
5427
  // this method is triggered by the diffing algo only when a vnode from the
5388
5428
  // old vnode.children is removed from the DOM.
@@ -6213,7 +6253,7 @@ function freezeTemplate(tmpl) {
6213
6253
  });
6214
6254
  }
6215
6255
  }
6216
- /* version: 2.31.7 */
6256
+ /* version: 2.31.8 */
6217
6257
 
6218
6258
  /*
6219
6259
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6684,6 +6724,6 @@ function renderComponent(tagName, Ctor, props = {}) {
6684
6724
  */
6685
6725
  freeze(LightningElement);
6686
6726
  seal(LightningElement.prototype);
6687
- /* version: 2.31.7 */
6727
+ /* version: 2.31.8 */
6688
6728
 
6689
6729
  export { LightningElement, api$1 as api, createContextProvider, freezeTemplate, getComponentDef, isComponentConstructor, parseFragment, parseFragment as parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, renderComponent, renderer, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, track, unwrap, wire };
@@ -148,7 +148,7 @@ const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
148
148
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
149
149
  // we can't use typeof since it will fail when transpiling.
150
150
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
151
- /** version: 2.31.7 */
151
+ /** version: 2.31.8 */
152
152
 
153
153
  /*
154
154
  * Copyright (c) 2018, salesforce.com, inc.
@@ -462,7 +462,7 @@ if (!_globalThis.lwcRuntimeFlags) {
462
462
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
463
463
  }
464
464
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
465
- /** version: 2.31.7 */
465
+ /** version: 2.31.8 */
466
466
 
467
467
  /*
468
468
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4949,4 +4949,4 @@ if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
4949
4949
  }));
4950
4950
  });
4951
4951
  }
4952
- /** version: 2.31.7 */
4952
+ /** version: 2.31.8 */
@@ -151,7 +151,7 @@
151
151
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
152
152
  // we can't use typeof since it will fail when transpiling.
153
153
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
154
- /** version: 2.31.7 */
154
+ /** version: 2.31.8 */
155
155
 
156
156
  /*
157
157
  * Copyright (c) 2018, salesforce.com, inc.
@@ -465,7 +465,7 @@
465
465
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
466
466
  }
467
467
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
468
- /** version: 2.31.7 */
468
+ /** version: 2.31.8 */
469
469
 
470
470
  /*
471
471
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4952,6 +4952,6 @@
4952
4952
  }));
4953
4953
  });
4954
4954
  }
4955
- /** version: 2.31.7 */
4955
+ /** version: 2.31.8 */
4956
4956
 
4957
4957
  })();
@@ -87,7 +87,7 @@
87
87
  const KEY__SHADOW_TOKEN = '$shadowToken$';
88
88
  const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
89
89
  const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
90
- /** version: 2.31.7 */
90
+ /** version: 2.31.8 */
91
91
 
92
92
  /*
93
93
  * Copyright (c) 2018, salesforce.com, inc.
@@ -401,7 +401,7 @@
401
401
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
402
402
  }
403
403
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
404
- /** version: 2.31.7 */
404
+ /** version: 2.31.8 */
405
405
 
406
406
  /*
407
407
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4756,6 +4756,6 @@
4756
4756
  },
4757
4757
  configurable: true,
4758
4758
  });
4759
- /** version: 2.31.7 */
4759
+ /** version: 2.31.8 */
4760
4760
 
4761
4761
  })();
@@ -174,7 +174,7 @@
174
174
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
175
175
  return Symbol('x').toString() === 'Symbol(x)';
176
176
  }();
177
- /** version: 2.31.7 */
177
+ /** version: 2.31.8 */
178
178
 
179
179
  /*
180
180
  * Copyright (c) 2018, salesforce.com, inc.
@@ -491,7 +491,7 @@
491
491
  });
492
492
  }
493
493
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
494
- /** version: 2.31.7 */
494
+ /** version: 2.31.8 */
495
495
 
496
496
  /*
497
497
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4948,6 +4948,6 @@
4948
4948
  }));
4949
4949
  });
4950
4950
  }
4951
- /** version: 2.31.7 */
4951
+ /** version: 2.31.8 */
4952
4952
 
4953
4953
  })();
@@ -108,7 +108,7 @@
108
108
  var KEY__SHADOW_TOKEN = '$shadowToken$';
109
109
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
110
110
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
111
- /** version: 2.31.7 */
111
+ /** version: 2.31.8 */
112
112
 
113
113
  /*
114
114
  * Copyright (c) 2018, salesforce.com, inc.
@@ -423,7 +423,7 @@
423
423
  });
424
424
  }
425
425
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
426
- /** version: 2.31.7 */
426
+ /** version: 2.31.8 */
427
427
 
428
428
  /*
429
429
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4748,6 +4748,6 @@
4748
4748
  },
4749
4749
  configurable: true
4750
4750
  });
4751
- /** version: 2.31.7 */
4751
+ /** version: 2.31.8 */
4752
4752
 
4753
4753
  })();
@@ -153,7 +153,7 @@
153
153
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
154
154
  // we can't use typeof since it will fail when transpiling.
155
155
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
156
- /** version: 2.31.7 */
156
+ /** version: 2.31.8 */
157
157
 
158
158
  /*
159
159
  * Copyright (c) 2018, salesforce.com, inc.
@@ -467,7 +467,7 @@
467
467
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
468
468
  }
469
469
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
470
- /** version: 2.31.7 */
470
+ /** version: 2.31.8 */
471
471
 
472
472
  /*
473
473
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4954,6 +4954,6 @@
4954
4954
  }));
4955
4955
  });
4956
4956
  }
4957
- /** version: 2.31.7 */
4957
+ /** version: 2.31.8 */
4958
4958
 
4959
4959
  }));
@@ -89,7 +89,7 @@
89
89
  const KEY__SHADOW_TOKEN = '$shadowToken$';
90
90
  const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
91
91
  const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
92
- /** version: 2.31.7 */
92
+ /** version: 2.31.8 */
93
93
 
94
94
  /*
95
95
  * Copyright (c) 2018, salesforce.com, inc.
@@ -403,7 +403,7 @@
403
403
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
404
404
  }
405
405
  const lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
406
- /** version: 2.31.7 */
406
+ /** version: 2.31.8 */
407
407
 
408
408
  /*
409
409
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4758,6 +4758,6 @@
4758
4758
  },
4759
4759
  configurable: true,
4760
4760
  });
4761
- /** version: 2.31.7 */
4761
+ /** version: 2.31.8 */
4762
4762
 
4763
4763
  }));
@@ -176,7 +176,7 @@
176
176
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
177
177
  return Symbol('x').toString() === 'Symbol(x)';
178
178
  }();
179
- /** version: 2.31.7 */
179
+ /** version: 2.31.8 */
180
180
 
181
181
  /*
182
182
  * Copyright (c) 2018, salesforce.com, inc.
@@ -493,7 +493,7 @@
493
493
  });
494
494
  }
495
495
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
496
- /** version: 2.31.7 */
496
+ /** version: 2.31.8 */
497
497
 
498
498
  /*
499
499
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4950,6 +4950,6 @@
4950
4950
  }));
4951
4951
  });
4952
4952
  }
4953
- /** version: 2.31.7 */
4953
+ /** version: 2.31.8 */
4954
4954
 
4955
4955
  }));
@@ -110,7 +110,7 @@
110
110
  var KEY__SHADOW_TOKEN = '$shadowToken$';
111
111
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
112
112
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
113
- /** version: 2.31.7 */
113
+ /** version: 2.31.8 */
114
114
 
115
115
  /*
116
116
  * Copyright (c) 2018, salesforce.com, inc.
@@ -425,7 +425,7 @@
425
425
  });
426
426
  }
427
427
  var lwcRuntimeFlags = _globalThis.lwcRuntimeFlags;
428
- /** version: 2.31.7 */
428
+ /** version: 2.31.8 */
429
429
 
430
430
  /*
431
431
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4750,6 +4750,6 @@
4750
4750
  },
4751
4751
  configurable: true
4752
4752
  });
4753
- /** version: 2.31.7 */
4753
+ /** version: 2.31.8 */
4754
4754
 
4755
4755
  }));
@@ -7,7 +7,7 @@
7
7
  function isUndefined(obj) {
8
8
  return obj === undefined;
9
9
  }
10
- /** version: 2.31.7 */
10
+ /** version: 2.31.8 */
11
11
 
12
12
  /*
13
13
  * Copyright (c) 2018, salesforce.com, inc.
@@ -181,6 +181,6 @@ class LegacyWireAdapterBridge {
181
181
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
182
182
  }
183
183
  }
184
- /** version: 2.31.7 */
184
+ /** version: 2.31.8 */
185
185
 
186
186
  export { ValueChangedEvent, register, registerWireService };
@@ -10,7 +10,7 @@ var WireService = (function (exports) {
10
10
  function isUndefined(obj) {
11
11
  return obj === undefined;
12
12
  }
13
- /** version: 2.31.7 */
13
+ /** version: 2.31.8 */
14
14
 
15
15
  /*
16
16
  * Copyright (c) 2018, salesforce.com, inc.
@@ -184,7 +184,7 @@ var WireService = (function (exports) {
184
184
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
185
185
  }
186
186
  }
187
- /** version: 2.31.7 */
187
+ /** version: 2.31.8 */
188
188
 
189
189
  exports.ValueChangedEvent = ValueChangedEvent;
190
190
  exports.register = register;
@@ -10,7 +10,7 @@ var WireService = (function (exports) {
10
10
  function isUndefined(obj) {
11
11
  return obj === undefined;
12
12
  }
13
- /** version: 2.31.7 */
13
+ /** version: 2.31.8 */
14
14
 
15
15
  /*
16
16
  * Copyright (c) 2018, salesforce.com, inc.
@@ -184,7 +184,7 @@ var WireService = (function (exports) {
184
184
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
185
185
  }
186
186
  }
187
- /** version: 2.31.7 */
187
+ /** version: 2.31.8 */
188
188
 
189
189
  exports.ValueChangedEvent = ValueChangedEvent;
190
190
  exports.register = register;
@@ -21,7 +21,7 @@ var WireService = (function (exports) {
21
21
  function isUndefined(obj) {
22
22
  return obj === undefined;
23
23
  }
24
- /** version: 2.31.7 */
24
+ /** version: 2.31.8 */
25
25
 
26
26
  /*
27
27
  * Copyright (c) 2018, salesforce.com, inc.
@@ -225,7 +225,7 @@ var WireService = (function (exports) {
225
225
  }]);
226
226
  return LegacyWireAdapterBridge;
227
227
  }();
228
- /** version: 2.31.7 */
228
+ /** version: 2.31.8 */
229
229
 
230
230
  exports.ValueChangedEvent = ValueChangedEvent;
231
231
  exports.register = register;
@@ -21,7 +21,7 @@ var WireService = (function (exports) {
21
21
  function isUndefined(obj) {
22
22
  return obj === undefined;
23
23
  }
24
- /** version: 2.31.7 */
24
+ /** version: 2.31.8 */
25
25
 
26
26
  /*
27
27
  * Copyright (c) 2018, salesforce.com, inc.
@@ -225,7 +225,7 @@ var WireService = (function (exports) {
225
225
  }]);
226
226
  return LegacyWireAdapterBridge;
227
227
  }();
228
- /** version: 2.31.7 */
228
+ /** version: 2.31.8 */
229
229
 
230
230
  exports.ValueChangedEvent = ValueChangedEvent;
231
231
  exports.register = register;
@@ -13,7 +13,7 @@
13
13
  function isUndefined(obj) {
14
14
  return obj === undefined;
15
15
  }
16
- /** version: 2.31.7 */
16
+ /** version: 2.31.8 */
17
17
 
18
18
  /*
19
19
  * Copyright (c) 2018, salesforce.com, inc.
@@ -187,7 +187,7 @@
187
187
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
188
188
  }
189
189
  }
190
- /** version: 2.31.7 */
190
+ /** version: 2.31.8 */
191
191
 
192
192
  exports.ValueChangedEvent = ValueChangedEvent;
193
193
  exports.register = register;
@@ -13,7 +13,7 @@
13
13
  function isUndefined(obj) {
14
14
  return obj === undefined;
15
15
  }
16
- /** version: 2.31.7 */
16
+ /** version: 2.31.8 */
17
17
 
18
18
  /*
19
19
  * Copyright (c) 2018, salesforce.com, inc.
@@ -187,7 +187,7 @@
187
187
  forEach.call(this.disconnecting, (listener) => listener.call(undefined));
188
188
  }
189
189
  }
190
- /** version: 2.31.7 */
190
+ /** version: 2.31.8 */
191
191
 
192
192
  exports.ValueChangedEvent = ValueChangedEvent;
193
193
  exports.register = register;
@@ -24,7 +24,7 @@
24
24
  function isUndefined(obj) {
25
25
  return obj === undefined;
26
26
  }
27
- /** version: 2.31.7 */
27
+ /** version: 2.31.8 */
28
28
 
29
29
  /*
30
30
  * Copyright (c) 2018, salesforce.com, inc.
@@ -228,7 +228,7 @@
228
228
  }]);
229
229
  return LegacyWireAdapterBridge;
230
230
  }();
231
- /** version: 2.31.7 */
231
+ /** version: 2.31.8 */
232
232
 
233
233
  exports.ValueChangedEvent = ValueChangedEvent;
234
234
  exports.register = register;
@@ -24,7 +24,7 @@
24
24
  function isUndefined(obj) {
25
25
  return obj === undefined;
26
26
  }
27
- /** version: 2.31.7 */
27
+ /** version: 2.31.8 */
28
28
 
29
29
  /*
30
30
  * Copyright (c) 2018, salesforce.com, inc.
@@ -228,7 +228,7 @@
228
228
  }]);
229
229
  return LegacyWireAdapterBridge;
230
230
  }();
231
- /** version: 2.31.7 */
231
+ /** version: 2.31.8 */
232
232
 
233
233
  exports.ValueChangedEvent = ValueChangedEvent;
234
234
  exports.register = register;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lwc",
3
- "version": "2.31.7",
3
+ "version": "2.31.8",
4
4
  "description": "Lightning Web Components (LWC)",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -41,12 +41,12 @@
41
41
  ]
42
42
  },
43
43
  "dependencies": {
44
- "@lwc/compiler": "2.31.7",
45
- "@lwc/engine-dom": "2.31.7",
46
- "@lwc/engine-server": "2.31.7",
47
- "@lwc/features": "2.31.7",
48
- "@lwc/synthetic-shadow": "2.31.7",
49
- "@lwc/wire-service": "2.31.7"
44
+ "@lwc/compiler": "2.31.8",
45
+ "@lwc/engine-dom": "2.31.8",
46
+ "@lwc/engine-server": "2.31.8",
47
+ "@lwc/features": "2.31.8",
48
+ "@lwc/synthetic-shadow": "2.31.8",
49
+ "@lwc/wire-service": "2.31.8"
50
50
  },
51
51
  "nx": {
52
52
  "targets": {