lwc 2.11.1 → 2.11.3

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 +301 -259
  2. package/dist/engine-dom/iife/es2017/engine-dom.js +301 -259
  3. package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
  4. package/dist/engine-dom/iife/es2017/engine-dom_debug.js +258 -124
  5. package/dist/engine-dom/iife/es5/engine-dom.js +1094 -1041
  6. package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
  7. package/dist/engine-dom/iife/es5/engine-dom_debug.js +384 -179
  8. package/dist/engine-dom/umd/es2017/engine-dom.js +301 -259
  9. package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
  10. package/dist/engine-dom/umd/es2017/engine-dom_debug.js +258 -124
  11. package/dist/engine-dom/umd/es5/engine-dom.js +1094 -1041
  12. package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
  13. package/dist/engine-dom/umd/es5/engine-dom_debug.js +384 -179
  14. package/dist/engine-server/commonjs/es2017/engine-server.js +6 -7
  15. package/dist/engine-server/esm/es2017/engine-server.js +6 -7
  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 +8 -9
@@ -421,9 +421,9 @@ const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
421
421
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
422
422
  */
423
423
  // Increment whenever the LWC template compiler changes
424
- const LWC_VERSION = "2.11.1";
424
+ const LWC_VERSION = "2.11.3";
425
425
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
426
- /** version: 2.11.1 */
426
+ /** version: 2.11.3 */
427
427
 
428
428
  /*
429
429
  * Copyright (c) 2020, salesforce.com, inc.
@@ -531,7 +531,7 @@ function setFeatureFlagForTest(name, value) {
531
531
  setFeatureFlag(name, value);
532
532
  }
533
533
  }
534
- /** version: 2.11.1 */
534
+ /** version: 2.11.3 */
535
535
 
536
536
  /* proxy-compat-disable */
537
537
 
@@ -5197,7 +5197,7 @@ function disconnectRootElement(elm) {
5197
5197
  }
5198
5198
  function appendVM(vm) {
5199
5199
  rehydrate(vm);
5200
- }
5200
+ } // just in case the component comes back, with this we guarantee re-rendering it
5201
5201
  // while preventing any attempt to rehydration until after reinsertion.
5202
5202
 
5203
5203
  function resetComponentStateWhenRemoved(vm) {
@@ -5501,7 +5501,6 @@ function runRenderedCallback(vm) {
5501
5501
  , vm);
5502
5502
  }
5503
5503
  }
5504
-
5505
5504
  let rehydrateQueue = [];
5506
5505
 
5507
5506
  function flushRehydrationQueue() {
@@ -6153,7 +6152,7 @@ function setHooks(hooks) {
6153
6152
  hooksAreSet = true;
6154
6153
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
6155
6154
  }
6156
- /* version: 2.11.1 */
6155
+ /* version: 2.11.3 */
6157
6156
 
6158
6157
  /*
6159
6158
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6620,7 +6619,7 @@ function renderComponent(tagName, Ctor, props = {}) {
6620
6619
  */
6621
6620
  freeze(LightningElement);
6622
6621
  seal(LightningElement.prototype);
6623
- /* version: 2.11.1 */
6622
+ /* version: 2.11.3 */
6624
6623
 
6625
6624
  exports.LightningElement = LightningElement;
6626
6625
  exports.api = api$1;
@@ -417,9 +417,9 @@ const XLINK_NAMESPACE = 'http://www.w3.org/1999/xlink';
417
417
  * For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
418
418
  */
419
419
  // Increment whenever the LWC template compiler changes
420
- const LWC_VERSION = "2.11.1";
420
+ const LWC_VERSION = "2.11.3";
421
421
  const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
422
- /** version: 2.11.1 */
422
+ /** version: 2.11.3 */
423
423
 
424
424
  /*
425
425
  * Copyright (c) 2020, salesforce.com, inc.
@@ -527,7 +527,7 @@ function setFeatureFlagForTest(name, value) {
527
527
  setFeatureFlag(name, value);
528
528
  }
529
529
  }
530
- /** version: 2.11.1 */
530
+ /** version: 2.11.3 */
531
531
 
532
532
  /* proxy-compat-disable */
533
533
 
@@ -5193,7 +5193,7 @@ function disconnectRootElement(elm) {
5193
5193
  }
5194
5194
  function appendVM(vm) {
5195
5195
  rehydrate(vm);
5196
- }
5196
+ } // just in case the component comes back, with this we guarantee re-rendering it
5197
5197
  // while preventing any attempt to rehydration until after reinsertion.
5198
5198
 
5199
5199
  function resetComponentStateWhenRemoved(vm) {
@@ -5497,7 +5497,6 @@ function runRenderedCallback(vm) {
5497
5497
  , vm);
5498
5498
  }
5499
5499
  }
5500
-
5501
5500
  let rehydrateQueue = [];
5502
5501
 
5503
5502
  function flushRehydrationQueue() {
@@ -6149,7 +6148,7 @@ function setHooks(hooks) {
6149
6148
  hooksAreSet = true;
6150
6149
  setSanitizeHtmlContentHook(hooks.sanitizeHtmlContent);
6151
6150
  }
6152
- /* version: 2.11.1 */
6151
+ /* version: 2.11.3 */
6153
6152
 
6154
6153
  /*
6155
6154
  * Copyright (c) 2020, salesforce.com, inc.
@@ -6616,6 +6615,6 @@ function renderComponent(tagName, Ctor, props = {}) {
6616
6615
  */
6617
6616
  freeze(LightningElement);
6618
6617
  seal(LightningElement.prototype);
6619
- /* version: 2.11.1 */
6618
+ /* version: 2.11.3 */
6620
6619
 
6621
6620
  export { LightningElement, api$1 as api, createContextProvider, getComponentDef, isComponentConstructor, readonly, register, registerComponent, registerDecorators, registerTemplate, renderComponent, sanitizeAttribute, setFeatureFlag, setFeatureFlagForTest, setHooks, track, unwrap, wire };
@@ -146,7 +146,7 @@ const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
146
146
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
147
147
  // we can't use typeof since it will fail when transpiling.
148
148
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
149
- /** version: 2.11.1 */
149
+ /** version: 2.11.3 */
150
150
 
151
151
  /*
152
152
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1300,7 +1300,7 @@ if (!_globalThis.lwcRuntimeFlags) {
1300
1300
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1301
1301
  }
1302
1302
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1303
- /** version: 2.11.1 */
1303
+ /** version: 2.11.3 */
1304
1304
 
1305
1305
  /*
1306
1306
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5066,4 +5066,4 @@ defineProperty(Element.prototype, '$domManual$', {
5066
5066
  },
5067
5067
  configurable: true,
5068
5068
  });
5069
- /** version: 2.11.1 */
5069
+ /** version: 2.11.3 */
@@ -149,7 +149,7 @@
149
149
  // We use this to detect symbol support in order to avoid the expensive symbol polyfill. Note that
150
150
  // we can't use typeof since it will fail when transpiling.
151
151
  const hasNativeSymbolSupport = /*@__PURE__*/ (() => Symbol('x').toString() === 'Symbol(x)')();
152
- /** version: 2.11.1 */
152
+ /** version: 2.11.3 */
153
153
 
154
154
  /*
155
155
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1303,7 +1303,7 @@
1303
1303
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1304
1304
  }
1305
1305
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1306
- /** version: 2.11.1 */
1306
+ /** version: 2.11.3 */
1307
1307
 
1308
1308
  /*
1309
1309
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5069,6 +5069,6 @@
5069
5069
  },
5070
5070
  configurable: true,
5071
5071
  });
5072
- /** version: 2.11.1 */
5072
+ /** version: 2.11.3 */
5073
5073
 
5074
5074
  })();
@@ -85,7 +85,7 @@
85
85
  const KEY__SHADOW_TOKEN = '$shadowToken$';
86
86
  const KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
87
87
  const KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
88
- /** version: 2.11.1 */
88
+ /** version: 2.11.3 */
89
89
 
90
90
  /*
91
91
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1212,7 +1212,7 @@
1212
1212
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1213
1213
  }
1214
1214
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1215
- /** version: 2.11.1 */
1215
+ /** version: 2.11.3 */
1216
1216
 
1217
1217
  /*
1218
1218
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4891,6 +4891,6 @@
4891
4891
  },
4892
4892
  configurable: true,
4893
4893
  });
4894
- /** version: 2.11.1 */
4894
+ /** version: 2.11.3 */
4895
4895
 
4896
4896
  })();
@@ -197,7 +197,7 @@
197
197
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
198
198
  return Symbol('x').toString() === 'Symbol(x)';
199
199
  }();
200
- /** version: 2.11.1 */
200
+ /** version: 2.11.3 */
201
201
 
202
202
  /*
203
203
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1528,7 +1528,7 @@
1528
1528
  }
1529
1529
 
1530
1530
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1531
- /** version: 2.11.1 */
1531
+ /** version: 2.11.3 */
1532
1532
 
1533
1533
  /*
1534
1534
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5611,6 +5611,6 @@
5611
5611
  },
5612
5612
  configurable: true
5613
5613
  });
5614
- /** version: 2.11.1 */
5614
+ /** version: 2.11.3 */
5615
5615
 
5616
5616
  })();
@@ -121,7 +121,7 @@
121
121
  var KEY__SHADOW_TOKEN = '$shadowToken$';
122
122
  var KEY__SHADOW_TOKEN_PRIVATE = '$$ShadowTokenKey$$';
123
123
  var KEY__SYNTHETIC_MODE = '$$lwc-synthetic-mode';
124
- /** version: 2.11.1 */
124
+ /** version: 2.11.3 */
125
125
 
126
126
  /*
127
127
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1423,7 +1423,7 @@
1423
1423
  }
1424
1424
 
1425
1425
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1426
- /** version: 2.11.1 */
1426
+ /** version: 2.11.3 */
1427
1427
 
1428
1428
  /*
1429
1429
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5415,6 +5415,6 @@
5415
5415
  },
5416
5416
  configurable: true
5417
5417
  });
5418
- /** version: 2.11.1 */
5418
+ /** version: 2.11.3 */
5419
5419
 
5420
5420
  })();
@@ -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.11.1 */
154
+ /** version: 2.11.3 */
155
155
 
156
156
  /*
157
157
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1305,7 +1305,7 @@
1305
1305
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1306
1306
  }
1307
1307
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1308
- /** version: 2.11.1 */
1308
+ /** version: 2.11.3 */
1309
1309
 
1310
1310
  /*
1311
1311
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5071,6 +5071,6 @@
5071
5071
  },
5072
5072
  configurable: true,
5073
5073
  });
5074
- /** version: 2.11.1 */
5074
+ /** version: 2.11.3 */
5075
5075
 
5076
5076
  }));
@@ -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.11.1 */
90
+ /** version: 2.11.3 */
91
91
 
92
92
  /*
93
93
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1214,7 +1214,7 @@
1214
1214
  Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
1215
1215
  }
1216
1216
  const runtimeFlags = _globalThis.lwcRuntimeFlags;
1217
- /** version: 2.11.1 */
1217
+ /** version: 2.11.3 */
1218
1218
 
1219
1219
  /*
1220
1220
  * Copyright (c) 2018, salesforce.com, inc.
@@ -4893,6 +4893,6 @@
4893
4893
  },
4894
4894
  configurable: true,
4895
4895
  });
4896
- /** version: 2.11.1 */
4896
+ /** version: 2.11.3 */
4897
4897
 
4898
4898
  }));
@@ -199,7 +199,7 @@
199
199
  var hasNativeSymbolSupport = /*@__PURE__*/function () {
200
200
  return Symbol('x').toString() === 'Symbol(x)';
201
201
  }();
202
- /** version: 2.11.1 */
202
+ /** version: 2.11.3 */
203
203
 
204
204
  /*
205
205
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1530,7 +1530,7 @@
1530
1530
  }
1531
1531
 
1532
1532
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1533
- /** version: 2.11.1 */
1533
+ /** version: 2.11.3 */
1534
1534
 
1535
1535
  /*
1536
1536
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5613,6 +5613,6 @@
5613
5613
  },
5614
5614
  configurable: true
5615
5615
  });
5616
- /** version: 2.11.1 */
5616
+ /** version: 2.11.3 */
5617
5617
 
5618
5618
  }));
@@ -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.11.1 */
126
+ /** version: 2.11.3 */
127
127
 
128
128
  /*
129
129
  * Copyright (c) 2018, salesforce.com, inc.
@@ -1425,7 +1425,7 @@
1425
1425
  }
1426
1426
 
1427
1427
  var runtimeFlags = _globalThis.lwcRuntimeFlags;
1428
- /** version: 2.11.1 */
1428
+ /** version: 2.11.3 */
1429
1429
 
1430
1430
  /*
1431
1431
  * Copyright (c) 2018, salesforce.com, inc.
@@ -5417,6 +5417,6 @@
5417
5417
  },
5418
5418
  configurable: true
5419
5419
  });
5420
- /** version: 2.11.1 */
5420
+ /** version: 2.11.3 */
5421
5421
 
5422
5422
  }));
@@ -7,7 +7,7 @@
7
7
  function isUndefined(obj) {
8
8
  return obj === undefined;
9
9
  }
10
- /** version: 2.11.1 */
10
+ /** version: 2.11.3 */
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.11.1 */
184
+ /** version: 2.11.3 */
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.11.1 */
13
+ /** version: 2.11.3 */
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.11.1 */
187
+ /** version: 2.11.3 */
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.11.1 */
13
+ /** version: 2.11.3 */
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.11.1 */
187
+ /** version: 2.11.3 */
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.11.1 */
36
+ /** version: 2.11.3 */
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.11.1 */
283
+ /** version: 2.11.3 */
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.11.1 */
36
+ /** version: 2.11.3 */
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.11.1 */
283
+ /** version: 2.11.3 */
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.11.1 */
16
+ /** version: 2.11.3 */
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.11.1 */
190
+ /** version: 2.11.3 */
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.11.1 */
16
+ /** version: 2.11.3 */
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.11.1 */
190
+ /** version: 2.11.3 */
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.11.1 */
39
+ /** version: 2.11.3 */
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.11.1 */
286
+ /** version: 2.11.3 */
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.11.1 */
39
+ /** version: 2.11.3 */
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.11.1 */
286
+ /** version: 2.11.3 */
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.11.1",
3
+ "version": "2.11.3",
4
4
  "description": "Lightning Web Components (LWC)",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -41,12 +41,11 @@
41
41
  ]
42
42
  },
43
43
  "dependencies": {
44
- "@lwc/compiler": "2.11.1",
45
- "@lwc/engine-dom": "2.11.1",
46
- "@lwc/engine-server": "2.11.1",
47
- "@lwc/features": "2.11.1",
48
- "@lwc/synthetic-shadow": "2.11.1",
49
- "@lwc/wire-service": "2.11.1"
50
- },
51
- "gitHead": "94040389ab8fc717b8753e503f659489480a327d"
44
+ "@lwc/compiler": "2.11.3",
45
+ "@lwc/engine-dom": "2.11.3",
46
+ "@lwc/engine-server": "2.11.3",
47
+ "@lwc/features": "2.11.3",
48
+ "@lwc/synthetic-shadow": "2.11.3",
49
+ "@lwc/wire-service": "2.11.3"
50
+ }
52
51
  }