lwc 2.20.0 → 2.20.1

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 (34) hide show
  1. package/dist/engine-dom/esm/es2017/engine-dom.js +37 -36
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +37 -36
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +35 -34
  5. package/dist/engine-dom/iife/es5/engine-dom.js +37 -36
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +35 -34
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +37 -36
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +35 -34
  11. package/dist/engine-dom/umd/es5/engine-dom.js +37 -36
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +35 -34
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +5 -5
  15. package/dist/engine-server/esm/es2017/engine-server.js +5 -5
  16. package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
  17. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
  18. package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
  19. package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
  20. package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
  21. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
  22. package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
  23. package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
  24. package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
  25. package/dist/wire-service/esm/es2017/wire-service.js +2 -2
  26. package/dist/wire-service/iife/es2017/wire-service.js +2 -2
  27. package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
  28. package/dist/wire-service/iife/es5/wire-service.js +2 -2
  29. package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
  30. package/dist/wire-service/umd/es2017/wire-service.js +2 -2
  31. package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
  32. package/dist/wire-service/umd/es5/wire-service.js +2 -2
  33. package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
  34. package/package.json +7 -7
@@ -349,7 +349,7 @@
349
349
  CACHED_PROPERTY_ATTRIBUTE_MAPPING.set(propName, attributeName);
350
350
  return attributeName;
351
351
  }
352
- /** version: 2.20.0 */
352
+ /** version: 2.20.1 */
353
353
 
354
354
  /*
355
355
  * Copyright (c) 2018, salesforce.com, inc.
@@ -6458,7 +6458,7 @@
6458
6458
 
6459
6459
  return ctor;
6460
6460
  }
6461
- /* version: 2.20.0 */
6461
+ /* version: 2.20.1 */
6462
6462
 
6463
6463
  /*
6464
6464
  * Copyright (c) 2018, salesforce.com, inc.
@@ -6484,10 +6484,6 @@
6484
6484
  var isIE11 = !isUndefined$1(document.documentMode);
6485
6485
  var stylesheetCache = new Map(); //
6486
6486
 
6487
- function isDocument(target) {
6488
- return !isUndefined$1(target.head);
6489
- }
6490
-
6491
6487
  function createFreshStyleElement(content) {
6492
6488
  var elm = document.createElement('style');
6493
6489
  elm.type = 'text/css';
@@ -6496,11 +6492,11 @@
6496
6492
  }
6497
6493
 
6498
6494
  function createStyleElement(content, cacheData) {
6499
- var stylesheet = cacheData.stylesheet,
6500
- used = cacheData.used; // If the <style> was already used, then we should clone it. We cannot insert
6495
+ var element = cacheData.element,
6496
+ usedElement = cacheData.usedElement; // If the <style> was already used, then we should clone it. We cannot insert
6501
6497
  // the same <style> in two places in the DOM.
6502
6498
 
6503
- if (used) {
6499
+ if (usedElement) {
6504
6500
  // For a mysterious reason, IE11 doesn't like the way we clone <style> nodes
6505
6501
  // and will render the incorrect styles if we do things that way. It's just
6506
6502
  // a perf optimization, so we can skip it for IE11.
@@ -6510,12 +6506,12 @@
6510
6506
  // faster to call `cloneNode()` on an existing node than to recreate it every time.
6511
6507
 
6512
6508
 
6513
- return stylesheet.cloneNode(true);
6509
+ return element.cloneNode(true);
6514
6510
  } // We don't clone every time, because that would be a perf tax on the first time
6515
6511
 
6516
6512
 
6517
- cacheData.used = true;
6518
- return stylesheet;
6513
+ cacheData.usedElement = true;
6514
+ return element;
6519
6515
  }
6520
6516
 
6521
6517
  function createConstructableStylesheet(content) {
@@ -6538,40 +6534,36 @@
6538
6534
 
6539
6535
  function insertStyleElement(content, target, cacheData) {
6540
6536
  var elm = createStyleElement(content, cacheData);
6541
- var targetAnchorPoint = isDocument(target) ? target.head : target;
6542
- targetAnchorPoint.appendChild(elm);
6543
- }
6544
-
6545
- function doInsertStylesheet(content, target, cacheData) {
6546
- // Constructable stylesheets are only supported in certain browsers:
6547
- // https://caniuse.com/mdn-api_document_adoptedstylesheets
6548
- // The reason we use it is for perf: https://github.com/salesforce/lwc/pull/2460
6549
- if (supportsConstructableStylesheets) {
6550
- insertConstructableStylesheet(content, target, cacheData);
6551
- } else {
6552
- // Fall back to <style> element
6553
- insertStyleElement(content, target, cacheData);
6554
- }
6537
+ target.appendChild(elm);
6555
6538
  }
6556
6539
 
6557
- function getCacheData(content) {
6540
+ function getCacheData(content, useConstructableStylesheet) {
6558
6541
  var cacheData = stylesheetCache.get(content);
6559
6542
 
6560
6543
  if (isUndefined$1(cacheData)) {
6561
6544
  cacheData = {
6562
- stylesheet: supportsConstructableStylesheets ? createConstructableStylesheet(content) : createFreshStyleElement(content),
6545
+ stylesheet: undefined,
6546
+ element: undefined,
6563
6547
  roots: undefined,
6564
6548
  global: false,
6565
- used: false
6549
+ usedElement: false
6566
6550
  };
6567
6551
  stylesheetCache.set(content, cacheData);
6552
+ } // Create <style> elements or CSSStyleSheets on-demand, as needed
6553
+
6554
+
6555
+ if (useConstructableStylesheet && isUndefined$1(cacheData.stylesheet)) {
6556
+ cacheData.stylesheet = createConstructableStylesheet(content);
6557
+ } else if (!useConstructableStylesheet && isUndefined$1(cacheData.element)) {
6558
+ cacheData.element = createFreshStyleElement(content);
6568
6559
  }
6569
6560
 
6570
6561
  return cacheData;
6571
6562
  }
6572
6563
 
6573
6564
  function insertGlobalStylesheet(content) {
6574
- var cacheData = getCacheData(content);
6565
+ // Force a <style> element for global stylesheets. See comment below.
6566
+ var cacheData = getCacheData(content, false);
6575
6567
 
6576
6568
  if (cacheData.global) {
6577
6569
  // already inserted
@@ -6579,12 +6571,13 @@
6579
6571
  }
6580
6572
 
6581
6573
  cacheData.global = true; // mark inserted
6574
+ // TODO [#2922]: use document.adoptedStyleSheets in supported browsers. Currently we can't, due to backwards compat.
6582
6575
 
6583
- doInsertStylesheet(content, document, cacheData);
6576
+ insertStyleElement(content, document.head, cacheData);
6584
6577
  }
6585
6578
 
6586
6579
  function insertLocalStylesheet(content, target) {
6587
- var cacheData = getCacheData(content);
6580
+ var cacheData = getCacheData(content, supportsConstructableStylesheets);
6588
6581
  var roots = cacheData.roots;
6589
6582
 
6590
6583
  if (isUndefined$1(roots)) {
@@ -6595,8 +6588,16 @@
6595
6588
  }
6596
6589
 
6597
6590
  roots.add(target); // mark inserted
6591
+ // Constructable stylesheets are only supported in certain browsers:
6592
+ // https://caniuse.com/mdn-api_document_adoptedstylesheets
6593
+ // The reason we use it is for perf: https://github.com/salesforce/lwc/pull/2460
6598
6594
 
6599
- doInsertStylesheet(content, target, cacheData);
6595
+ if (supportsConstructableStylesheets) {
6596
+ insertConstructableStylesheet(content, target, cacheData);
6597
+ } else {
6598
+ // Fall back to <style> element
6599
+ insertStyleElement(content, target, cacheData);
6600
+ }
6600
6601
  }
6601
6602
 
6602
6603
  function insertStylesheet(content, target) {
@@ -7256,7 +7257,7 @@
7256
7257
  });
7257
7258
  freeze(LightningElement);
7258
7259
  seal(LightningElement.prototype);
7259
- /* version: 2.20.0 */
7260
+ /* version: 2.20.1 */
7260
7261
 
7261
7262
  exports.LightningElement = LightningElement;
7262
7263
  exports.__unstable__ProfilerControl = profilerControl;
@@ -419,9 +419,9 @@ function htmlEscape(str, attrMode = false) {
419
419
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
420
420
  */
421
421
  // Increment whenever the LWC template compiler changes
422
- const LWC_VERSION = "2.20.0";
422
+ const LWC_VERSION = "2.20.1";
423
423
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
424
- /** version: 2.20.0 */
424
+ /** version: 2.20.1 */
425
425
 
426
426
  /*
427
427
  * Copyright (c) 2020, salesforce.com, inc.
@@ -530,7 +530,7 @@ function setFeatureFlagForTest(name, value) {
530
530
  setFeatureFlag(name, value);
531
531
  }
532
532
  }
533
- /** version: 2.20.0 */
533
+ /** version: 2.20.1 */
534
534
 
535
535
  /* proxy-compat-disable */
536
536
 
@@ -6273,7 +6273,7 @@ function freezeTemplate(tmpl) {
6273
6273
  });
6274
6274
  }
6275
6275
  }
6276
- /* version: 2.20.0 */
6276
+ /* version: 2.20.1 */
6277
6277
 
6278
6278
  /*
6279
6279
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6735,7 +6735,7 @@ function renderComponent(tagName, Ctor, props = {}) {
6735
6735
  */
6736
6736
  freeze(LightningElement);
6737
6737
  seal(LightningElement.prototype);
6738
- /* version: 2.20.0 */
6738
+ /* version: 2.20.1 */
6739
6739
 
6740
6740
  exports.LightningElement = LightningElement;
6741
6741
  exports.api = api$1;
@@ -415,9 +415,9 @@ function htmlEscape(str, attrMode = false) {
415
415
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
416
416
  */
417
417
  // Increment whenever the LWC template compiler changes
418
- const LWC_VERSION = "2.20.0";
418
+ const LWC_VERSION = "2.20.1";
419
419
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
420
- /** version: 2.20.0 */
420
+ /** version: 2.20.1 */
421
421
 
422
422
  /*
423
423
  * Copyright (c) 2020, salesforce.com, inc.
@@ -526,7 +526,7 @@ function setFeatureFlagForTest(name, value) {
526
526
  setFeatureFlag(name, value);
527
527
  }
528
528
  }
529
- /** version: 2.20.0 */
529
+ /** version: 2.20.1 */
530
530
 
531
531
  /* proxy-compat-disable */
532
532
 
@@ -6269,7 +6269,7 @@ function freezeTemplate(tmpl) {
6269
6269
  });
6270
6270
  }
6271
6271
  }
6272
- /* version: 2.20.0 */
6272
+ /* version: 2.20.1 */
6273
6273
 
6274
6274
  /*
6275
6275
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6731,6 +6731,6 @@ function renderComponent(tagName, Ctor, props = {}) {
6731
6731
  */
6732
6732
  freeze(LightningElement);
6733
6733
  seal(LightningElement.prototype);
6734
- /* version: 2.20.0 */
6734
+ /* version: 2.20.1 */
6735
6735
 
6736
6736
  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.20.0 */
151
+ /** version: 2.20.1 */
152
152
 
153
153
  /*
154
154
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1124,7 +1124,7 @@ if (!_globalThis.lwcRuntimeFlags) {
1124
1124
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1125
1125
  }
1126
1126
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1127
- /** version: 2.20.0 */
1127
+ /** version: 2.20.1 */
1128
1128
 
1129
1129
  /*
1130
1130
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5111,4 +5111,4 @@ if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
5111
5111
  }));
5112
5112
  });
5113
5113
  }
5114
- /** version: 2.20.0 */
5114
+ /** version: 2.20.1 */
@@ -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.20.0 */
154
+ /** version: 2.20.1 */
155
155
 
156
156
  /*
157
157
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1127,7 +1127,7 @@
1127
1127
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1128
1128
  }
1129
1129
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1130
- /** version: 2.20.0 */
1130
+ /** version: 2.20.1 */
1131
1131
 
1132
1132
  /*
1133
1133
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5114,6 +5114,6 @@
5114
5114
  }));
5115
5115
  });
5116
5116
  }
5117
- /** version: 2.20.0 */
5117
+ /** version: 2.20.1 */
5118
5118
 
5119
5119
  })();
@@ -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.20.0 */
90
+ /** version: 2.20.1 */
91
91
 
92
92
  /*
93
93
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1049,7 +1049,7 @@
1049
1049
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1050
1050
  }
1051
1051
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1052
- /** version: 2.20.0 */
1052
+ /** version: 2.20.1 */
1053
1053
 
1054
1054
  /*
1055
1055
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4911,6 +4911,6 @@
4911
4911
  },
4912
4912
  configurable: true,
4913
4913
  });
4914
- /** version: 2.20.0 */
4914
+ /** version: 2.20.1 */
4915
4915
 
4916
4916
  })();
@@ -199,7 +199,7 @@
199
199
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
200
200
  return Symbol('x').toString() === 'Symbol(x)';
201
201
  }();
202
- /** version: 2.20.0 */
202
+ /** version: 2.20.1 */
203
203
 
204
204
  /*
205
205
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1300,7 +1300,7 @@
1300
1300
  }
1301
1301
 
1302
1302
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1303
- /** version: 2.20.0 */
1303
+ /** version: 2.20.1 */
1304
1304
 
1305
1305
  /*
1306
1306
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5661,6 +5661,6 @@
5661
5661
  }));
5662
5662
  });
5663
5663
  }
5664
- /** version: 2.20.0 */
5664
+ /** version: 2.20.1 */
5665
5665
 
5666
5666
  })();
@@ -123,7 +123,7 @@
123
123
  var KEY__SHADOW_TOKEN = '$shadowToken$';
124
124
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
125
125
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
126
- /** version: 2.20.0 */
126
+ /** version: 2.20.1 */
127
127
 
128
128
  /*
129
129
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1209,7 +1209,7 @@
1209
1209
  }
1210
1210
 
1211
1211
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1212
- /** version: 2.20.0 */
1212
+ /** version: 2.20.1 */
1213
1213
 
1214
1214
  /*
1215
1215
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5441,6 +5441,6 @@
5441
5441
  },
5442
5442
  configurable: true
5443
5443
  });
5444
- /** version: 2.20.0 */
5444
+ /** version: 2.20.1 */
5445
5445
 
5446
5446
  })();
@@ -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.20.0 */
156
+ /** version: 2.20.1 */
157
157
 
158
158
  /*
159
159
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1129,7 +1129,7 @@
1129
1129
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1130
1130
  }
1131
1131
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1132
- /** version: 2.20.0 */
1132
+ /** version: 2.20.1 */
1133
1133
 
1134
1134
  /*
1135
1135
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5116,6 +5116,6 @@
5116
5116
  }));
5117
5117
  });
5118
5118
  }
5119
- /** version: 2.20.0 */
5119
+ /** version: 2.20.1 */
5120
5120
 
5121
5121
  }));
@@ -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.20.0 */
92
+ /** version: 2.20.1 */
93
93
 
94
94
  /*
95
95
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1051,7 +1051,7 @@
1051
1051
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1052
1052
  }
1053
1053
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1054
- /** version: 2.20.0 */
1054
+ /** version: 2.20.1 */
1055
1055
 
1056
1056
  /*
1057
1057
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4913,6 +4913,6 @@
4913
4913
  },
4914
4914
  configurable: true,
4915
4915
  });
4916
- /** version: 2.20.0 */
4916
+ /** version: 2.20.1 */
4917
4917
 
4918
4918
  }));
@@ -201,7 +201,7 @@
201
201
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
202
202
  return Symbol('x').toString() === 'Symbol(x)';
203
203
  }();
204
- /** version: 2.20.0 */
204
+ /** version: 2.20.1 */
205
205
 
206
206
  /*
207
207
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1302,7 +1302,7 @@
1302
1302
  }
1303
1303
 
1304
1304
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1305
- /** version: 2.20.0 */
1305
+ /** version: 2.20.1 */
1306
1306
 
1307
1307
  /*
1308
1308
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5663,6 +5663,6 @@
5663
5663
  }));
5664
5664
  });
5665
5665
  }
5666
- /** version: 2.20.0 */
5666
+ /** version: 2.20.1 */
5667
5667
 
5668
5668
  }));
@@ -125,7 +125,7 @@
125
125
  var KEY__SHADOW_TOKEN = '$shadowToken$';
126
126
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
127
127
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
128
- /** version: 2.20.0 */
128
+ /** version: 2.20.1 */
129
129
 
130
130
  /*
131
131
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1211,7 +1211,7 @@
1211
1211
  }
1212
1212
 
1213
1213
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1214
- /** version: 2.20.0 */
1214
+ /** version: 2.20.1 */
1215
1215
 
1216
1216
  /*
1217
1217
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5443,6 +5443,6 @@
5443
5443
  },
5444
5444
  configurable: true
5445
5445
  });
5446
- /** version: 2.20.0 */
5446
+ /** version: 2.20.1 */
5447
5447
 
5448
5448
  }));
@@ -7,7 +7,7 @@
7
7
  function isUndefined(obj) {
8
8
  return obj === undefined;
9
9
  }
10
- /** version: 2.20.0 */
10
+ /** version: 2.20.1 */
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.20.0 */
184
+ /** version: 2.20.1 */
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.20.0 */
13
+ /** version: 2.20.1 */
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.20.0 */
187
+ /** version: 2.20.1 */
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.20.0 */
13
+ /** version: 2.20.1 */
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.20.0 */
187
+ /** version: 2.20.1 */
188
188
 
189
189
  exports.ValueChangedEvent = ValueChangedEvent;
190
190
  exports.register = register;
@@ -33,7 +33,7 @@ var WireService = (function (exports) {
33
33
  function isUndefined(obj) {
34
34
  return obj === undefined;
35
35
  }
36
- /** version: 2.20.0 */
36
+ /** version: 2.20.1 */
37
37
 
38
38
  /*
39
39
  * Copyright (c) 2018, salesforce.com, inc.
@@ -280,7 +280,7 @@ var WireService = (function (exports) {
280
280
 
281
281
  return LegacyWireAdapterBridge;
282
282
  }();
283
- /** version: 2.20.0 */
283
+ /** version: 2.20.1 */
284
284
 
285
285
  exports.ValueChangedEvent = ValueChangedEvent;
286
286
  exports.register = register;
@@ -33,7 +33,7 @@ var WireService = (function (exports) {
33
33
  function isUndefined(obj) {
34
34
  return obj === undefined;
35
35
  }
36
- /** version: 2.20.0 */
36
+ /** version: 2.20.1 */
37
37
 
38
38
  /*
39
39
  * Copyright (c) 2018, salesforce.com, inc.
@@ -280,7 +280,7 @@ var WireService = (function (exports) {
280
280
 
281
281
  return LegacyWireAdapterBridge;
282
282
  }();
283
- /** version: 2.20.0 */
283
+ /** version: 2.20.1 */
284
284
 
285
285
  exports.ValueChangedEvent = ValueChangedEvent;
286
286
  exports.register = register;
@@ -13,7 +13,7 @@
13
13
  function isUndefined(obj) {
14
14
  return obj === undefined;
15
15
  }
16
- /** version: 2.20.0 */
16
+ /** version: 2.20.1 */
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.20.0 */
190
+ /** version: 2.20.1 */
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.20.0 */
16
+ /** version: 2.20.1 */
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.20.0 */
190
+ /** version: 2.20.1 */
191
191
 
192
192
  exports.ValueChangedEvent = ValueChangedEvent;
193
193
  exports.register = register;
@@ -36,7 +36,7 @@
36
36
  function isUndefined(obj) {
37
37
  return obj === undefined;
38
38
  }
39
- /** version: 2.20.0 */
39
+ /** version: 2.20.1 */
40
40
 
41
41
  /*
42
42
  * Copyright (c) 2018, salesforce.com, inc.
@@ -283,7 +283,7 @@
283
283
 
284
284
  return LegacyWireAdapterBridge;
285
285
  }();
286
- /** version: 2.20.0 */
286
+ /** version: 2.20.1 */
287
287
 
288
288
  exports.ValueChangedEvent = ValueChangedEvent;
289
289
  exports.register = register;
@@ -36,7 +36,7 @@
36
36
  function isUndefined(obj) {
37
37
  return obj === undefined;
38
38
  }
39
- /** version: 2.20.0 */
39
+ /** version: 2.20.1 */
40
40
 
41
41
  /*
42
42
  * Copyright (c) 2018, salesforce.com, inc.
@@ -283,7 +283,7 @@
283
283
 
284
284
  return LegacyWireAdapterBridge;
285
285
  }();
286
- /** version: 2.20.0 */
286
+ /** version: 2.20.1 */
287
287
 
288
288
  exports.ValueChangedEvent = ValueChangedEvent;
289
289
  exports.register = register;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "lwc",
3
- "version": "2.20.0",
3
+ "version": "2.20.1",
4
4
  "description": "Lightning Web Components (LWC)",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -42,11 +42,11 @@
42
42
  ]
43
43
  },
44
44
  "dependencies": {
45
- "@lwc/compiler": "2.20.0",
46
- "@lwc/engine-dom": "2.20.0",
47
- "@lwc/engine-server": "2.20.0",
48
- "@lwc/features": "2.20.0",
49
- "@lwc/synthetic-shadow": "2.20.0",
50
- "@lwc/wire-service": "2.20.0"
45
+ "@lwc/compiler": "2.20.1",
46
+ "@lwc/engine-dom": "2.20.1",
47
+ "@lwc/engine-server": "2.20.1",
48
+ "@lwc/features": "2.20.1",
49
+ "@lwc/synthetic-shadow": "2.20.1",
50
+ "@lwc/wire-service": "2.20.1"
51
51
  }
52
52
  }