lwc 2.14.0 → 2.14.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.
- package/dist/engine-dom/esm/es2017/engine-dom.js +48 -22
- package/dist/engine-dom/iife/es2017/engine-dom.js +48 -22
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +44 -19
- package/dist/engine-dom/iife/es5/engine-dom.js +49 -25
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +45 -21
- package/dist/engine-dom/umd/es2017/engine-dom.js +48 -22
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +44 -19
- package/dist/engine-dom/umd/es5/engine-dom.js +49 -25
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +45 -21
- package/dist/engine-server/commonjs/es2017/engine-server.js +48 -22
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +48 -22
- package/dist/synthetic-shadow/esm/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/iife/es5/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es2017/synthetic-shadow_debug.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow.js +3 -3
- package/dist/synthetic-shadow/umd/es5/synthetic-shadow_debug.js +3 -3
- package/dist/wire-service/esm/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service.js +2 -2
- package/dist/wire-service/iife/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/iife/es5/wire-service.js +2 -2
- package/dist/wire-service/iife/es5/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service.js +2 -2
- package/dist/wire-service/umd/es2017/wire-service_debug.js +2 -2
- package/dist/wire-service/umd/es5/wire-service.js +2 -2
- package/dist/wire-service/umd/es5/wire-service_debug.js +2 -2
- package/package.json +7 -7
|
@@ -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.14.
|
|
420
|
+
const LWC_VERSION = "2.14.1";
|
|
421
421
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
422
|
-
/** version: 2.14.
|
|
422
|
+
/** version: 2.14.1 */
|
|
423
423
|
|
|
424
424
|
/*
|
|
425
425
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -528,7 +528,7 @@ function setFeatureFlagForTest(name, value) {
|
|
|
528
528
|
setFeatureFlag(name, value);
|
|
529
529
|
}
|
|
530
530
|
}
|
|
531
|
-
/** version: 2.14.
|
|
531
|
+
/** version: 2.14.1 */
|
|
532
532
|
|
|
533
533
|
/* proxy-compat-disable */
|
|
534
534
|
|
|
@@ -2813,7 +2813,8 @@ function getDecoratorsMeta(Ctor) {
|
|
|
2813
2813
|
* For full license text, see the LICENSE file in the repo root or https://opensource.org/licenses/MIT
|
|
2814
2814
|
*/
|
|
2815
2815
|
let warned = false;
|
|
2816
|
-
|
|
2816
|
+
// @ts-ignore
|
|
2817
|
+
if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
|
|
2817
2818
|
// @ts-ignore
|
|
2818
2819
|
window.__lwcResetWarnedOnVersionMismatch = () => {
|
|
2819
2820
|
warned = false;
|
|
@@ -3832,11 +3833,14 @@ function unmount(vnode, parent, doRemove = false) {
|
|
|
3832
3833
|
if (doRemove) {
|
|
3833
3834
|
removeNode(elm, parent);
|
|
3834
3835
|
}
|
|
3835
|
-
const removeChildren = sel === 'slot'; // slot content is removed to trigger slotchange event when removing slot
|
|
3836
3836
|
switch (type) {
|
|
3837
|
-
case 2 /* Element */:
|
|
3837
|
+
case 2 /* Element */: {
|
|
3838
|
+
// Slot content is removed to trigger slotchange event when removing slot.
|
|
3839
|
+
// Only required for synthetic shadow.
|
|
3840
|
+
const removeChildren = sel === 'slot' && vnode.owner.shadowMode === 1 /* Synthetic */;
|
|
3838
3841
|
unmountVNodes(vnode.children, elm, removeChildren);
|
|
3839
3842
|
break;
|
|
3843
|
+
}
|
|
3840
3844
|
case 3 /* CustomElement */: {
|
|
3841
3845
|
const { vm } = vnode;
|
|
3842
3846
|
// No need to unmount the children here, `removeVM` will take care of removing the
|
|
@@ -5278,9 +5282,20 @@ function removeVM(vm) {
|
|
|
5278
5282
|
|
|
5279
5283
|
resetComponentStateWhenRemoved(vm);
|
|
5280
5284
|
}
|
|
5281
|
-
function createVM(elm, ctor, options) {
|
|
5282
|
-
var _a;
|
|
5283
5285
|
|
|
5286
|
+
function getNearestShadowAncestor(vm) {
|
|
5287
|
+
let ancestor = vm.owner;
|
|
5288
|
+
|
|
5289
|
+
while (!isNull(ancestor) && ancestor.renderMode === 0
|
|
5290
|
+
/* Light */
|
|
5291
|
+
) {
|
|
5292
|
+
ancestor = ancestor.owner;
|
|
5293
|
+
}
|
|
5294
|
+
|
|
5295
|
+
return ancestor;
|
|
5296
|
+
}
|
|
5297
|
+
|
|
5298
|
+
function createVM(elm, ctor, options) {
|
|
5284
5299
|
const {
|
|
5285
5300
|
mode,
|
|
5286
5301
|
owner,
|
|
@@ -5310,8 +5325,6 @@ function createVM(elm, ctor, options) {
|
|
|
5310
5325
|
cmpTemplate: null,
|
|
5311
5326
|
hydrated: Boolean(hydrated),
|
|
5312
5327
|
renderMode: def.renderMode,
|
|
5313
|
-
shadowMode: computeShadowMode(def, owner),
|
|
5314
|
-
nearestShadowMode: (owner === null || owner === void 0 ? void 0 : owner.shadowRoot) ? owner.shadowMode : (_a = owner === null || owner === void 0 ? void 0 : owner.nearestShadowMode) !== null && _a !== void 0 ? _a : null,
|
|
5315
5328
|
context: {
|
|
5316
5329
|
stylesheetToken: undefined,
|
|
5317
5330
|
hasTokenInClass: undefined,
|
|
@@ -5324,6 +5337,7 @@ function createVM(elm, ctor, options) {
|
|
|
5324
5337
|
},
|
|
5325
5338
|
// Properties set right after VM creation.
|
|
5326
5339
|
tro: null,
|
|
5340
|
+
shadowMode: null,
|
|
5327
5341
|
// Properties set by the LightningElement constructor.
|
|
5328
5342
|
component: null,
|
|
5329
5343
|
shadowRoot: null,
|
|
@@ -5332,6 +5346,7 @@ function createVM(elm, ctor, options) {
|
|
|
5332
5346
|
setHook,
|
|
5333
5347
|
getHook
|
|
5334
5348
|
};
|
|
5349
|
+
vm.shadowMode = computeShadowMode(vm);
|
|
5335
5350
|
vm.tro = getTemplateReactiveObserver(vm);
|
|
5336
5351
|
|
|
5337
5352
|
if (process.env.NODE_ENV !== 'production') {
|
|
@@ -5356,9 +5371,10 @@ function createVM(elm, ctor, options) {
|
|
|
5356
5371
|
return vm;
|
|
5357
5372
|
}
|
|
5358
5373
|
|
|
5359
|
-
function computeShadowMode(
|
|
5360
|
-
|
|
5361
|
-
|
|
5374
|
+
function computeShadowMode(vm) {
|
|
5375
|
+
const {
|
|
5376
|
+
def
|
|
5377
|
+
} = vm;
|
|
5362
5378
|
let shadowMode;
|
|
5363
5379
|
|
|
5364
5380
|
if (isSyntheticShadowDefined$1) {
|
|
@@ -5381,13 +5397,23 @@ function computeShadowMode(def, owner) {
|
|
|
5381
5397
|
/* Native */
|
|
5382
5398
|
;
|
|
5383
5399
|
} else {
|
|
5384
|
-
|
|
5385
|
-
|
|
5386
|
-
|
|
5387
|
-
|
|
5388
|
-
|
|
5389
|
-
|
|
5390
|
-
|
|
5400
|
+
const shadowAncestor = getNearestShadowAncestor(vm);
|
|
5401
|
+
|
|
5402
|
+
if (!isNull(shadowAncestor) && shadowAncestor.shadowMode === 0
|
|
5403
|
+
/* Native */
|
|
5404
|
+
) {
|
|
5405
|
+
// Transitive support for native Shadow DOM. A component in native mode
|
|
5406
|
+
// transitively opts all of its descendants into native.
|
|
5407
|
+
shadowMode = 0
|
|
5408
|
+
/* Native */
|
|
5409
|
+
;
|
|
5410
|
+
} else {
|
|
5411
|
+
// Synthetic if neither this component nor any of its ancestors are configured
|
|
5412
|
+
// to be native.
|
|
5413
|
+
shadowMode = 1
|
|
5414
|
+
/* Synthetic */
|
|
5415
|
+
;
|
|
5416
|
+
}
|
|
5391
5417
|
}
|
|
5392
5418
|
} else {
|
|
5393
5419
|
shadowMode = 1
|
|
@@ -6266,7 +6292,7 @@ function freezeTemplate(tmpl) {
|
|
|
6266
6292
|
});
|
|
6267
6293
|
}
|
|
6268
6294
|
}
|
|
6269
|
-
/* version: 2.14.
|
|
6295
|
+
/* version: 2.14.1 */
|
|
6270
6296
|
|
|
6271
6297
|
/*
|
|
6272
6298
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6725,6 +6751,6 @@ function renderComponent(tagName, Ctor, props = {}) {
|
|
|
6725
6751
|
*/
|
|
6726
6752
|
freeze(LightningElement);
|
|
6727
6753
|
seal(LightningElement.prototype);
|
|
6728
|
-
/* version: 2.14.
|
|
6754
|
+
/* version: 2.14.1 */
|
|
6729
6755
|
|
|
6730
6756
|
export { LightningElement, api$1 as api, createContextProvider, freezeTemplate, 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.14.
|
|
149
|
+
/** version: 2.14.1 */
|
|
150
150
|
|
|
151
151
|
/*
|
|
152
152
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1122,7 +1122,7 @@ if (!_globalThis.lwcRuntimeFlags) {
|
|
|
1122
1122
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
1123
1123
|
}
|
|
1124
1124
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1125
|
-
/** version: 2.14.
|
|
1125
|
+
/** version: 2.14.1 */
|
|
1126
1126
|
|
|
1127
1127
|
/*
|
|
1128
1128
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5091,4 +5091,4 @@ if (process.env.NODE_ENV !== 'production' && typeof __karma__ !== 'undefined') {
|
|
|
5091
5091
|
}));
|
|
5092
5092
|
});
|
|
5093
5093
|
}
|
|
5094
|
-
/** version: 2.14.
|
|
5094
|
+
/** version: 2.14.1 */
|
|
@@ -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.14.
|
|
152
|
+
/** version: 2.14.1 */
|
|
153
153
|
|
|
154
154
|
/*
|
|
155
155
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1125,7 +1125,7 @@
|
|
|
1125
1125
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
1126
1126
|
}
|
|
1127
1127
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1128
|
-
/** version: 2.14.
|
|
1128
|
+
/** version: 2.14.1 */
|
|
1129
1129
|
|
|
1130
1130
|
/*
|
|
1131
1131
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5094,6 +5094,6 @@
|
|
|
5094
5094
|
}));
|
|
5095
5095
|
});
|
|
5096
5096
|
}
|
|
5097
|
-
/** version: 2.14.
|
|
5097
|
+
/** version: 2.14.1 */
|
|
5098
5098
|
|
|
5099
5099
|
})();
|
|
@@ -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.14.
|
|
88
|
+
/** version: 2.14.1 */
|
|
89
89
|
|
|
90
90
|
/*
|
|
91
91
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1047,7 +1047,7 @@
|
|
|
1047
1047
|
Object.defineProperty(_globalThis, 'lwcRuntimeFlags', { value: create(null) });
|
|
1048
1048
|
}
|
|
1049
1049
|
const runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1050
|
-
/** version: 2.14.
|
|
1050
|
+
/** version: 2.14.1 */
|
|
1051
1051
|
|
|
1052
1052
|
/*
|
|
1053
1053
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4891,6 +4891,6 @@
|
|
|
4891
4891
|
},
|
|
4892
4892
|
configurable: true,
|
|
4893
4893
|
});
|
|
4894
|
-
/** version: 2.14.
|
|
4894
|
+
/** version: 2.14.1 */
|
|
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.14.
|
|
200
|
+
/** version: 2.14.1 */
|
|
201
201
|
|
|
202
202
|
/*
|
|
203
203
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1297,7 +1297,7 @@
|
|
|
1297
1297
|
}
|
|
1298
1298
|
|
|
1299
1299
|
var runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1300
|
-
/** version: 2.14.
|
|
1300
|
+
/** version: 2.14.1 */
|
|
1301
1301
|
|
|
1302
1302
|
/*
|
|
1303
1303
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5635,6 +5635,6 @@
|
|
|
5635
5635
|
}));
|
|
5636
5636
|
});
|
|
5637
5637
|
}
|
|
5638
|
-
/** version: 2.14.
|
|
5638
|
+
/** version: 2.14.1 */
|
|
5639
5639
|
|
|
5640
5640
|
})();
|
|
@@ -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.14.
|
|
124
|
+
/** version: 2.14.1 */
|
|
125
125
|
|
|
126
126
|
/*
|
|
127
127
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1206,7 +1206,7 @@
|
|
|
1206
1206
|
}
|
|
1207
1207
|
|
|
1208
1208
|
var runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1209
|
-
/** version: 2.14.
|
|
1209
|
+
/** version: 2.14.1 */
|
|
1210
1210
|
|
|
1211
1211
|
/*
|
|
1212
1212
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5415,6 +5415,6 @@
|
|
|
5415
5415
|
},
|
|
5416
5416
|
configurable: true
|
|
5417
5417
|
});
|
|
5418
|
-
/** version: 2.14.
|
|
5418
|
+
/** version: 2.14.1 */
|
|
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.14.
|
|
154
|
+
/** version: 2.14.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.14.
|
|
1130
|
+
/** version: 2.14.1 */
|
|
1131
1131
|
|
|
1132
1132
|
/*
|
|
1133
1133
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5096,6 +5096,6 @@
|
|
|
5096
5096
|
}));
|
|
5097
5097
|
});
|
|
5098
5098
|
}
|
|
5099
|
-
/** version: 2.14.
|
|
5099
|
+
/** version: 2.14.1 */
|
|
5100
5100
|
|
|
5101
5101
|
}));
|
|
@@ -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.14.
|
|
90
|
+
/** version: 2.14.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.14.
|
|
1052
|
+
/** version: 2.14.1 */
|
|
1053
1053
|
|
|
1054
1054
|
/*
|
|
1055
1055
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -4893,6 +4893,6 @@
|
|
|
4893
4893
|
},
|
|
4894
4894
|
configurable: true,
|
|
4895
4895
|
});
|
|
4896
|
-
/** version: 2.14.
|
|
4896
|
+
/** version: 2.14.1 */
|
|
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.14.
|
|
202
|
+
/** version: 2.14.1 */
|
|
203
203
|
|
|
204
204
|
/*
|
|
205
205
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1299,7 +1299,7 @@
|
|
|
1299
1299
|
}
|
|
1300
1300
|
|
|
1301
1301
|
var runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1302
|
-
/** version: 2.14.
|
|
1302
|
+
/** version: 2.14.1 */
|
|
1303
1303
|
|
|
1304
1304
|
/*
|
|
1305
1305
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5637,6 +5637,6 @@
|
|
|
5637
5637
|
}));
|
|
5638
5638
|
});
|
|
5639
5639
|
}
|
|
5640
|
-
/** version: 2.14.
|
|
5640
|
+
/** version: 2.14.1 */
|
|
5641
5641
|
|
|
5642
5642
|
}));
|
|
@@ -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.14.
|
|
126
|
+
/** version: 2.14.1 */
|
|
127
127
|
|
|
128
128
|
/*
|
|
129
129
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -1208,7 +1208,7 @@
|
|
|
1208
1208
|
}
|
|
1209
1209
|
|
|
1210
1210
|
var runtimeFlags = _globalThis.lwcRuntimeFlags;
|
|
1211
|
-
/** version: 2.14.
|
|
1211
|
+
/** version: 2.14.1 */
|
|
1212
1212
|
|
|
1213
1213
|
/*
|
|
1214
1214
|
* Copyright (c) 2018, salesforce.com, inc.
|
|
@@ -5417,6 +5417,6 @@
|
|
|
5417
5417
|
},
|
|
5418
5418
|
configurable: true
|
|
5419
5419
|
});
|
|
5420
|
-
/** version: 2.14.
|
|
5420
|
+
/** version: 2.14.1 */
|
|
5421
5421
|
|
|
5422
5422
|
}));
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
function isUndefined(obj) {
|
|
8
8
|
return obj === undefined;
|
|
9
9
|
}
|
|
10
|
-
/** version: 2.14.
|
|
10
|
+
/** version: 2.14.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.14.
|
|
184
|
+
/** version: 2.14.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.14.
|
|
13
|
+
/** version: 2.14.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.14.
|
|
187
|
+
/** version: 2.14.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.14.
|
|
13
|
+
/** version: 2.14.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.14.
|
|
187
|
+
/** version: 2.14.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.14.
|
|
36
|
+
/** version: 2.14.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.14.
|
|
283
|
+
/** version: 2.14.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.14.
|
|
36
|
+
/** version: 2.14.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.14.
|
|
283
|
+
/** version: 2.14.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.14.
|
|
16
|
+
/** version: 2.14.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.14.
|
|
190
|
+
/** version: 2.14.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.14.
|
|
16
|
+
/** version: 2.14.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.14.
|
|
190
|
+
/** version: 2.14.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.14.
|
|
39
|
+
/** version: 2.14.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.14.
|
|
286
|
+
/** version: 2.14.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.14.
|
|
39
|
+
/** version: 2.14.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.14.
|
|
286
|
+
/** version: 2.14.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.14.
|
|
3
|
+
"version": "2.14.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.14.
|
|
46
|
-
"@lwc/engine-dom": "2.14.
|
|
47
|
-
"@lwc/engine-server": "2.14.
|
|
48
|
-
"@lwc/features": "2.14.
|
|
49
|
-
"@lwc/synthetic-shadow": "2.14.
|
|
50
|
-
"@lwc/wire-service": "2.14.
|
|
45
|
+
"@lwc/compiler": "2.14.1",
|
|
46
|
+
"@lwc/engine-dom": "2.14.1",
|
|
47
|
+
"@lwc/engine-server": "2.14.1",
|
|
48
|
+
"@lwc/features": "2.14.1",
|
|
49
|
+
"@lwc/synthetic-shadow": "2.14.1",
|
|
50
|
+
"@lwc/wire-service": "2.14.1"
|
|
51
51
|
}
|
|
52
52
|
}
|