lwc 2.31.6 → 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.
- package/dist/engine-dom/esm/es2017/engine-dom.js +163 -121
- package/dist/engine-dom/iife/es2017/engine-dom.js +163 -121
- package/dist/engine-dom/iife/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es2017/engine-dom_debug.js +117 -12
- package/dist/engine-dom/iife/es5/engine-dom.js +290 -182
- package/dist/engine-dom/iife/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/iife/es5/engine-dom_debug.js +219 -84
- package/dist/engine-dom/umd/es2017/engine-dom.js +163 -121
- package/dist/engine-dom/umd/es2017/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es2017/engine-dom_debug.js +117 -12
- package/dist/engine-dom/umd/es5/engine-dom.js +290 -182
- package/dist/engine-dom/umd/es5/engine-dom.min.js +1 -1
- package/dist/engine-dom/umd/es5/engine-dom_debug.js +219 -84
- package/dist/engine-server/commonjs/es2017/engine-server.js +124 -73
- package/dist/engine-server/commonjs/es2017/engine-server.min.js +1 -1
- package/dist/engine-server/esm/es2017/engine-server.js +124 -73
- 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
|
@@ -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.
|
|
470
|
+
const LWC_VERSION = "2.31.8";
|
|
471
471
|
const LWC_VERSION_COMMENT_REGEX = /\/\*LWC compiler v([\d.]+)\*\/\s*}/;
|
|
472
|
-
/** version: 2.31.
|
|
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.
|
|
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
|
-
|
|
2895
|
-
|
|
2896
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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)
|
|
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
|
-
|
|
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
|
-
|
|
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.
|
|
@@ -5703,22 +5743,33 @@ function recursivelyDisconnectChildren(vnodes) {
|
|
|
5703
5743
|
// into snabbdom. Especially useful when the reset is a consequence of an error, in which case the
|
|
5704
5744
|
// children VNodes might not be representing the current state of the DOM.
|
|
5705
5745
|
function resetComponentRoot(vm) {
|
|
5746
|
+
recursivelyRemoveChildren(vm.children, vm);
|
|
5747
|
+
vm.children = EmptyArray;
|
|
5748
|
+
runChildNodesDisconnectedCallback(vm);
|
|
5749
|
+
vm.velements = EmptyArray;
|
|
5750
|
+
}
|
|
5751
|
+
// Helper function to remove all children of the root node.
|
|
5752
|
+
// If the set of children includes VFragment nodes, we need to remove the children of those nodes too.
|
|
5753
|
+
// Since VFragments can contain other VFragments, we need to traverse the entire of tree of VFragments.
|
|
5754
|
+
// If the set contains no VFragment nodes, no traversal is needed.
|
|
5755
|
+
function recursivelyRemoveChildren(vnodes, vm) {
|
|
5706
5756
|
const {
|
|
5707
|
-
children,
|
|
5708
5757
|
renderRoot,
|
|
5709
5758
|
renderer: {
|
|
5710
5759
|
remove
|
|
5711
5760
|
}
|
|
5712
5761
|
} = vm;
|
|
5713
|
-
for (let i = 0, len =
|
|
5714
|
-
const
|
|
5715
|
-
if (!isNull(
|
|
5716
|
-
|
|
5762
|
+
for (let i = 0, len = vnodes.length; i < len; i += 1) {
|
|
5763
|
+
const vnode = vnodes[i];
|
|
5764
|
+
if (!isNull(vnode)) {
|
|
5765
|
+
// VFragments are special; their .elm property does not point to the root element since they have no single root.
|
|
5766
|
+
if (isVFragment(vnode)) {
|
|
5767
|
+
recursivelyRemoveChildren(vnode.children, vm);
|
|
5768
|
+
} else if (!isUndefined$1(vnode.elm)) {
|
|
5769
|
+
remove(vnode.elm, renderRoot);
|
|
5770
|
+
}
|
|
5717
5771
|
}
|
|
5718
5772
|
}
|
|
5719
|
-
vm.children = EmptyArray;
|
|
5720
|
-
runChildNodesDisconnectedCallback(vm);
|
|
5721
|
-
vm.velements = EmptyArray;
|
|
5722
5773
|
}
|
|
5723
5774
|
function getErrorBoundaryVM(vm) {
|
|
5724
5775
|
let currentVm = vm;
|
|
@@ -6202,7 +6253,7 @@ function freezeTemplate(tmpl) {
|
|
|
6202
6253
|
});
|
|
6203
6254
|
}
|
|
6204
6255
|
}
|
|
6205
|
-
/* version: 2.31.
|
|
6256
|
+
/* version: 2.31.8 */
|
|
6206
6257
|
|
|
6207
6258
|
/*
|
|
6208
6259
|
* Copyright (c) 2020, salesforce.com, inc.
|
|
@@ -6673,6 +6724,6 @@ function renderComponent(tagName, Ctor, props = {}) {
|
|
|
6673
6724
|
*/
|
|
6674
6725
|
freeze(LightningElement);
|
|
6675
6726
|
seal(LightningElement.prototype);
|
|
6676
|
-
/* version: 2.31.
|
|
6727
|
+
/* version: 2.31.8 */
|
|
6677
6728
|
|
|
6678
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
231
|
+
/** version: 2.31.8 */
|
|
232
232
|
|
|
233
233
|
exports.ValueChangedEvent = ValueChangedEvent;
|
|
234
234
|
exports.register = register;
|